kucoin-api 1.0.21 → 1.0.22
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.
|
@@ -25,11 +25,14 @@ export interface MarginAssetDetail {
|
|
|
25
25
|
maxBorrowSize: string;
|
|
26
26
|
}
|
|
27
27
|
export interface MarginAccountDetail {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
28
|
+
currency: string;
|
|
29
|
+
total: string;
|
|
30
|
+
available: string;
|
|
31
|
+
hold: string;
|
|
32
|
+
liability: string;
|
|
33
|
+
maxBorrowSize: string;
|
|
34
|
+
borrowEnabled: boolean;
|
|
35
|
+
transferInEnabled: boolean;
|
|
33
36
|
}
|
|
34
37
|
export interface IsolatedMarginAssetDetail {
|
|
35
38
|
symbol: string;
|
|
@@ -39,12 +42,11 @@ export interface IsolatedMarginAssetDetail {
|
|
|
39
42
|
quoteAsset: MarginAssetDetail;
|
|
40
43
|
}
|
|
41
44
|
export interface MarginBalance {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
items: MarginAccountDetail[];
|
|
45
|
+
totalAssetOfQuoteCurrency: string;
|
|
46
|
+
totalLiabilityOfQuoteCurrency: string;
|
|
47
|
+
debtRatio: string;
|
|
48
|
+
status: 'EFFECTIVE' | 'BANKRUPTCY' | 'LIQUIDATION' | 'REPAY' | 'BORROW';
|
|
49
|
+
accounts: MarginAccountDetail[];
|
|
48
50
|
}
|
|
49
51
|
export interface IsolatedMarginBalance {
|
|
50
52
|
totalAssetOfQuoteCurrency: string;
|
|
@@ -25,11 +25,14 @@ export interface MarginAssetDetail {
|
|
|
25
25
|
maxBorrowSize: string;
|
|
26
26
|
}
|
|
27
27
|
export interface MarginAccountDetail {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
28
|
+
currency: string;
|
|
29
|
+
total: string;
|
|
30
|
+
available: string;
|
|
31
|
+
hold: string;
|
|
32
|
+
liability: string;
|
|
33
|
+
maxBorrowSize: string;
|
|
34
|
+
borrowEnabled: boolean;
|
|
35
|
+
transferInEnabled: boolean;
|
|
33
36
|
}
|
|
34
37
|
export interface IsolatedMarginAssetDetail {
|
|
35
38
|
symbol: string;
|
|
@@ -39,12 +42,11 @@ export interface IsolatedMarginAssetDetail {
|
|
|
39
42
|
quoteAsset: MarginAssetDetail;
|
|
40
43
|
}
|
|
41
44
|
export interface MarginBalance {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
items: MarginAccountDetail[];
|
|
45
|
+
totalAssetOfQuoteCurrency: string;
|
|
46
|
+
totalLiabilityOfQuoteCurrency: string;
|
|
47
|
+
debtRatio: string;
|
|
48
|
+
status: 'EFFECTIVE' | 'BANKRUPTCY' | 'LIQUIDATION' | 'REPAY' | 'BORROW';
|
|
49
|
+
accounts: MarginAccountDetail[];
|
|
48
50
|
}
|
|
49
51
|
export interface IsolatedMarginBalance {
|
|
50
52
|
totalAssetOfQuoteCurrency: string;
|
package/package.json
CHANGED