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

    TokenResponse models RFC 6749 token endpoint response fields.

    interface TokenResponse {
        accessToken: string;
        tokenType: string;
        expiresIn: bigint;
        refreshToken: string;
        scope: string;
        grantId: string;
    }
    Index

    Properties

    accessToken: string
    tokenType: string
    expiresIn: bigint
    refreshToken: string
    scope: string
    grantId: string

    grant_id is the OIDF Grant Management extension when available.