@salesforce/b2c-tooling-sdk / auth / AuthSessionFlow
Type Alias: AuthSessionFlow
AuthSessionFlow =
"pkce"|"implicit"|"client-credentials"
Defined in: packages/b2c-tooling-sdk/src/auth/session-store.ts:46
The auth flow that produced a stored session.
pkce: Authorization Code + PKCE; has refresh tokens.implicit: legacy implicit grant; no refresh token.client-credentials: non-interactiveauth client; no refresh, no stored secret. When the access token expires, the user re-runsauth client --client-id <id> --client-secret <secret>.