@edgible-team/sdk
    Preparing search index...

    Interface AuthTokens

    Full Cognito token set returned by login (POST /auth/authenticate).

    interface AuthTokens {
        accessToken: string;
        idToken: string;
        refreshToken: string;
    }
    Index

    Properties

    accessToken: string

    Cognito access token.

    idToken: string

    Cognito ID token — the bearer token the platform accepts.

    refreshToken: string

    Long-lived token used to refresh the other two.