From cec6337bd52207c29beed92df848430e9cc3dac6 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Tue, 14 Jun 2022 22:42:49 -0600 Subject: [PATCH] Add missing `type` property on `IAuthData` 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 38bbcb04493..d5e10427e51 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[];