From d3ff7655f78e879eeeaa7e4fa951cf12011f9445 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Wed, 15 Jun 2022 00:37:02 -0600 Subject: [PATCH] Add missing `type` property on `IAuthData` (#2463) Per spec, for example: https://spec.matrix.org/v1.2/client-server-api/#dummy-auth --- src/interactive-auth.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/interactive-auth.ts b/src/interactive-auth.ts index 38bbcb044..d5e10427e 100644 --- a/src/interactive-auth.ts +++ b/src/interactive-auth.ts @@ -44,6 +44,7 @@ export interface IStageStatus { export interface IAuthData { session?: string; + type?: string; completed?: string[]; flows?: IFlow[]; available_flows?: IFlow[];