UNPKG

@authup/core-kit

Version:

Package containing global constants, types & interfaces.

27 lines 819 B
import type { Robot } from '../robot'; import type { User } from '../user'; import type { Client } from '../client'; import type { Realm } from '../realm'; export interface OAuth2AuthorizationCode { id: string; code_challenge?: string | null; code_challenge_method?: string | null; scope?: string | null; redirect_uri?: string | null; id_token?: string | null; client_id?: Client['id'] | null; user_id?: User['id'] | null; robot_id?: Robot['id'] | null; realm_id: Realm['id']; realm_name: Realm['name']; } export type OAuth2AuthorizationCodeRequest = { response_type?: string; client_id: string; redirect_uri?: string; scope?: string; state?: string; code_challenge?: string; code_challenge_method?: string; }; //# sourceMappingURL=entity.d.ts.map