Skip to main content
Defined in: server/auth/types.ts:1

Properties

claims

claims: Record<string, unknown>;
Defined in: server/auth/types.ts:11 All claims from the token payload.

clientId?

optional clientId?: string;
Defined in: server/auth/types.ts:5 The subject/client identifier from the token.

expiresAt?

optional expiresAt?: number;
Defined in: server/auth/types.ts:9 Unix timestamp (seconds) when the token expires.

scopes

scopes: string[];
Defined in: server/auth/types.ts:7 Scopes granted to the token.

token

token: string;
Defined in: server/auth/types.ts:3 The raw bearer token string.