@shopify/cli-kit
    Preparing search index...

    Interface StoredStoreAppSession

    interface StoredStoreAppSession {
        accessToken: string;
        acquiredAt: string;
        associatedUser?: {
            accountOwner?: boolean;
            email?: string;
            firstName?: string;
            id: number;
            lastName?: string;
        };
        clientId: string;
        expiresAt?: string;
        kind?: StoredStoreSessionKind;
        preview?: StoredPreviewStoreMetadata;
        refreshToken?: string;
        refreshTokenExpiresAt?: string;
        scopes: string[];
        store: string;
        userId: string;
    }
    Index

    Properties

    accessToken: string
    acquiredAt: string
    associatedUser?: {
        accountOwner?: boolean;
        email?: string;
        firstName?: string;
        id: number;
        lastName?: string;
    }
    clientId: string
    expiresAt?: string

    Discriminator. Optional in storage for back-compat with sessions written before the field existed; sessionKind() resolves missing values to 'standard'.

    Preview-store-only metadata. Set iff kind === 'preview'.

    refreshToken?: string
    refreshTokenExpiresAt?: string
    scopes: string[]
    store: string
    userId: string