Interface: IssuedTokens
Defined in: auth-core/src/oauthServerTypes.ts:251
Tokens returned by the app's OAuthServerOptions.issueTokens hook.
Properties
accessToken
accessToken:
string
Defined in: auth-core/src/oauthServerTypes.ts:253
The access token string (JWT, opaque, …).
expiresIn?
optionalexpiresIn?:number
Defined in: auth-core/src/oauthServerTypes.ts:257
Access token lifetime in seconds, surfaced as expires_in.
refreshToken?
optionalrefreshToken?:string
Defined in: auth-core/src/oauthServerTypes.ts:255
Optional refresh token enabling the refresh_token grant.
scope?
optionalscope?:string
Defined in: auth-core/src/oauthServerTypes.ts:259
Granted scopes as a space-separated string. Defaults to the bound scopes.