bybit-api 4.1.13 → 4.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -24,6 +24,10 @@ export interface WalletBalanceV5 {
|
|
|
24
24
|
accountLTV: string;
|
|
25
25
|
accountIMRate: string;
|
|
26
26
|
accountMMRate: string;
|
|
27
|
+
accountIMRateByMp: string;
|
|
28
|
+
accountMMRateByMp: string;
|
|
29
|
+
totalInitialMarginByMp: string;
|
|
30
|
+
totalMaintenanceMarginByMp: string;
|
|
27
31
|
totalEquity: string;
|
|
28
32
|
totalWalletBalance: string;
|
|
29
33
|
totalMarginBalance: string;
|
|
@@ -36,6 +36,8 @@ export interface PositionV5 {
|
|
|
36
36
|
leverageSysUpdatedTime: string | '';
|
|
37
37
|
createdTime: string;
|
|
38
38
|
updatedTime: string;
|
|
39
|
+
positionIMByMp: string;
|
|
40
|
+
positionMMByMp: string;
|
|
39
41
|
seq: number;
|
|
40
42
|
}
|
|
41
43
|
export interface SetRiskLimitResultV5 {
|
|
@@ -79,6 +81,7 @@ export interface ExecutionV5 {
|
|
|
79
81
|
orderType: OrderTypeV5;
|
|
80
82
|
stopOrderType?: StopOrderTypeV5;
|
|
81
83
|
execFee: string;
|
|
84
|
+
execFeeV2: string;
|
|
82
85
|
execId: string;
|
|
83
86
|
execPrice: string;
|
|
84
87
|
execQty: string;
|
|
@@ -171,6 +171,8 @@ export interface WSPositionV5 {
|
|
|
171
171
|
autoAddMargin: number;
|
|
172
172
|
positionMM: string;
|
|
173
173
|
positionIM: string;
|
|
174
|
+
positionIMByMp: string;
|
|
175
|
+
positionMMByMp: string;
|
|
174
176
|
liqPrice: string;
|
|
175
177
|
bustPrice: string;
|
|
176
178
|
tpslMode: string;
|
|
@@ -275,6 +277,7 @@ export interface WSExecutionV5 {
|
|
|
275
277
|
underlyingPrice: string;
|
|
276
278
|
blockTradeId: string;
|
|
277
279
|
closedSize: string;
|
|
280
|
+
extraFees: string;
|
|
278
281
|
seq: number;
|
|
279
282
|
marketUnit: string;
|
|
280
283
|
}
|
|
@@ -319,6 +322,10 @@ export interface WSWalletV5 {
|
|
|
319
322
|
accountLTV: string;
|
|
320
323
|
accountIMRate: string;
|
|
321
324
|
accountMMRate: string;
|
|
325
|
+
accountIMRateByMp: string;
|
|
326
|
+
accountMMRateByMp: string;
|
|
327
|
+
totalInitialMarginByMp: string;
|
|
328
|
+
totalMaintenanceMarginByMp: string;
|
|
322
329
|
totalEquity: string;
|
|
323
330
|
totalWalletBalance: string;
|
|
324
331
|
totalMarginBalance: string;
|
|
@@ -378,6 +385,8 @@ export interface WSSpreadExecutionV5 {
|
|
|
378
385
|
createType: OrderCreateTypeV5;
|
|
379
386
|
orderType: OrderTypeV5;
|
|
380
387
|
execFee: string;
|
|
388
|
+
execFeeV2: string;
|
|
389
|
+
feeCurrency: string;
|
|
381
390
|
parentExecId: string;
|
|
382
391
|
execId: string;
|
|
383
392
|
execPrice: string;
|
package/package.json
CHANGED