From 75d76c576607e5ddd550faa9b278838e2efecca1 Mon Sep 17 00:00:00 2001 From: Wonhee Lee Date: Thu, 7 Nov 2024 10:32:59 +0900 Subject: [PATCH] fix: update me of ResolvedFlow --- src/index.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 4b713e8..42a82df 100644 --- a/src/index.ts +++ b/src/index.ts @@ -45,13 +45,17 @@ export interface ResolvedFlow { sub: string; picture: string; account: string; - name?: string; - domain?: string; + name?: string | null; + domain?: string | null; blocked: boolean; source: string; kycApproved: boolean; proSubscription: boolean; profile?: XummProfile; + networkType?: string; + networkId?: number; + networkEndpoint?: string; + email?: string; }; }