From 9d591f5e2a32223fe86f3c86c9d6ad14ce672086 Mon Sep 17 00:00:00 2001 From: bludnic Date: Thu, 16 May 2024 18:35:36 +0100 Subject: [PATCH] feat(cli, ExchangeAccount): add "isDemoAccount" param --- packages/cli/src/types.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/cli/src/types.ts b/packages/cli/src/types.ts index e7076496..b3a4d199 100644 --- a/packages/cli/src/types.ts +++ b/packages/cli/src/types.ts @@ -8,5 +8,10 @@ export type CommandResult = { export type ExchangeConfig = Pick< ExchangeAccount, - "name" | "apiKey" | "secretKey" | "password" | "exchangeCode" + | "name" + | "apiKey" + | "secretKey" + | "password" + | "exchangeCode" + | "isDemoAccount" >;