17 lines
415 B
JavaScript
17 lines
415 B
JavaScript
/**
|
|
* @typedef {"authenticated" | "unauthenticated" | "recovery-pending" | "integration-failed"} SessionState
|
|
*/
|
|
|
|
/**
|
|
* The session is opaque: credentials are attached without exposing tokens.
|
|
*
|
|
* @typedef {{
|
|
* getState(): SessionState,
|
|
* attach(request: Request): Promise<Request>,
|
|
* recover(): Promise<"restored" | "no-session">,
|
|
* onUnauthenticated(): void
|
|
* }} AuthSessionPort
|
|
*/
|
|
|
|
export {};
|