From 866c555fd1dd148dbc3f4462882a637d94ed77b6 Mon Sep 17 00:00:00 2001 From: William Date: Sun, 28 Apr 2024 14:46:12 +0200 Subject: [PATCH] Update `PositionSideV5` type --- src/types/v5-shared.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/v5-shared.ts b/src/types/v5-shared.ts index 4677c9f..1eb3864 100644 --- a/src/types/v5-shared.ts +++ b/src/types/v5-shared.ts @@ -161,7 +161,7 @@ export type PositionIdx = 0 | 1 | 2; * - 'Adl' in the auto-deleverage progress */ export type PositionStatusV5 = 'Normal' | 'Liq' | 'Adl'; -export type PositionSideV5 = 'Buy' | 'Sell'; +export type PositionSideV5 = 'Buy' | 'Sell' | 'None' | ''; export type OptionTypeV5 = 'Call' | 'Put';