From 95e7a76ba9661895c28098f3324ca0fbcc50fecd Mon Sep 17 00:00:00 2001 From: Callum Brown Date: Thu, 9 Dec 2021 02:38:22 +0000 Subject: [PATCH] Finish adding registration token UIAA type (#2048) Signed-off-by: Callum Brown --- src/interactive-auth.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/interactive-auth.ts b/src/interactive-auth.ts index 161e85f8b..74d5d30ca 100644 --- a/src/interactive-auth.ts +++ b/src/interactive-auth.ts @@ -35,6 +35,7 @@ export interface IInputs { emailAddress?: string; phoneCountry?: string; phoneNumber?: string; + registrationToken?: string; } export interface IStageStatus { @@ -80,6 +81,7 @@ export interface IAuthDict { // eslint-disable-next-line camelcase threepid_creds?: any; threepidCreds?: any; + registrationToken?: string; } class NoAuthFlowFoundError extends Error {