@valon-technologies/gestalt
    Preparing search index...

    Host-managed connection payload passed into a provider post-connect hook.

    interface ConnectedToken {
        id: string;
        subjectId: string;
        integration: string;
        connection: string;
        instance: string;
        accessToken: string;
        refreshToken: string;
        scopes: string;
        expiresAt?: Date;
        lastRefreshedAt?: Date;
        refreshErrorCount: number;
        metadataJson: string;
        metadata: Record<string, string>;
        createdAt?: Date;
        updatedAt?: Date;
    }
    Index

    Properties

    id: string
    subjectId: string
    integration: string
    connection: string
    instance: string
    accessToken: string
    refreshToken: string
    scopes: string
    expiresAt?: Date
    lastRefreshedAt?: Date
    refreshErrorCount: number
    metadataJson: string
    metadata: Record<string, string>
    createdAt?: Date
    updatedAt?: Date