(data: Partial<AuthSessionData>)
| 527 | } |
| 528 | |
| 529 | private updateState(data: Partial<AuthSessionData>) { |
| 530 | this.state = { ...this.state, ...data }; |
| 531 | } |
| 532 | |
| 533 | private async authHandler(url: string, dataObject: AuthRequestPayload, popupTimeout = 1000 * 10): Promise<AuthFlowResult | null> { |
| 534 | const loginId = StorageManager.generateRandomSessionKey(); |
no outgoing calls
no test coverage detected