import type { OAuth2SubKind } from '@authup/common'; export type OAuth2AccessTokenBuildContext = { issuer: string; sub: string; subKind: `${OAuth2SubKind}`; realmId: string; realmName: string; scope?: string; clientId?: string; remoteAddress: string; }; export type OAuth2OpenIdTokenBuildContext = OAuth2AccessTokenBuildContext; export type OAuth2RefreshTokenBuildContext = Omit & { id?: string; }; //# sourceMappingURL=type.d.ts.map