auth.provider API
    Preparing search index...
    interface Token {
        audience?: string;
        confirmation?: Confirmation;
        expiresIn?: number;
        issuer?: string;
        scope?: string;
        subject?: string;
        token: string;
        tokenType?: "at+jwt" | "rt+jwt";
    }
    Index

    Properties

    audience?: string
    confirmation?: Confirmation

    Echo of GenerateTokenOptions.confirmation when set. Read-only informational field for callers (e.g. audit log); does NOT drive claim emission — that is GenerateTokenOptions.confirmation's job. See RFC 7800 §3 for the cnf claim structure and Wave 2 Token-binding Cluster spec §4.4 for the field's role here.

    expiresIn?: number
    issuer?: string
    scope?: string
    subject?: string
    token: string
    tokenType?: "at+jwt" | "rt+jwt"