From 21d65f62f430b4541016ed9dd15c331ea990a1cf Mon Sep 17 00:00:00 2001 From: Golan Weiss Date: Mon, 2 Dec 2024 14:18:50 +0200 Subject: [PATCH] WLT-1945 - [Fireblocks JS SDK] Fix missing field in return type of WalletSetupStatusResponse --- src/types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 8336e92..772c376 100644 --- a/src/types.ts +++ b/src/types.ts @@ -2371,7 +2371,7 @@ export namespace NCW { export class KeySetup { status: SetupStatus; - algorithmName: string; + algorithmName: SigningAlgorithm; confirmed: boolean; backedUp: boolean; } @@ -2384,6 +2384,7 @@ export namespace NCW { export class WalletSetupStatusResponse { status: SetupStatus; + requiredAlgorithms: Array; deviceSetupStatus: Array; }