| 336 | export type KeyMode = "v1" | "1/1" | "2/n"; |
| 337 | |
| 338 | export interface AuthSessionData { |
| 339 | privKey?: string; |
| 340 | coreKitKey?: string; |
| 341 | ed25519PrivKey?: string; |
| 342 | coreKitEd25519PrivKey?: string; |
| 343 | sessionId?: string; |
| 344 | oAuthPrivateKey?: string; |
| 345 | tKey?: string; |
| 346 | walletKey?: string; |
| 347 | userInfo?: AuthUserInfo; |
| 348 | keyMode?: KeyMode; |
| 349 | metadataNonce?: string; |
| 350 | authToken?: string; |
| 351 | signatures?: string[]; |
| 352 | useCoreKitKey?: boolean; |
| 353 | } |
| 354 | |
| 355 | export const MFA_FACTOR = { |
| 356 | DEVICE: "deviceShareFactor", |
nothing calls this directly
no outgoing calls
no test coverage detected