/** * Grant Type */ export type GrantType = 'authorization_code' | 'refresh_token' | 'client_credentials' | 'authorization_code_pkce' | 'session_bridge';