@binance/margin-trading 9.0.0 → 10.0.0
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.
- package/dist/index.d.mts +187 -582
- package/dist/index.d.ts +187 -582
- package/dist/index.js +126 -540
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +103 -520
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5238,58 +5238,6 @@ interface QuerySpecialKeyResponse {
|
|
|
5238
5238
|
permissionMode?: string;
|
|
5239
5239
|
}
|
|
5240
5240
|
|
|
5241
|
-
/**
|
|
5242
|
-
* Binance Margin Trading REST API
|
|
5243
|
-
*
|
|
5244
|
-
* OpenAPI Specification for the Binance Margin Trading REST API
|
|
5245
|
-
*
|
|
5246
|
-
* The version of the OpenAPI document: 1.0.0
|
|
5247
|
-
*
|
|
5248
|
-
*
|
|
5249
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5250
|
-
* https://openapi-generator.tech
|
|
5251
|
-
* Do not edit the class manually.
|
|
5252
|
-
*/
|
|
5253
|
-
/**
|
|
5254
|
-
*
|
|
5255
|
-
* @export
|
|
5256
|
-
* @interface StartIsolatedMarginUserDataStreamResponse
|
|
5257
|
-
*/
|
|
5258
|
-
interface StartIsolatedMarginUserDataStreamResponse {
|
|
5259
|
-
/**
|
|
5260
|
-
*
|
|
5261
|
-
* @type {string}
|
|
5262
|
-
* @memberof StartIsolatedMarginUserDataStreamResponse
|
|
5263
|
-
*/
|
|
5264
|
-
listenKey?: string;
|
|
5265
|
-
}
|
|
5266
|
-
|
|
5267
|
-
/**
|
|
5268
|
-
* Binance Margin Trading REST API
|
|
5269
|
-
*
|
|
5270
|
-
* OpenAPI Specification for the Binance Margin Trading REST API
|
|
5271
|
-
*
|
|
5272
|
-
* The version of the OpenAPI document: 1.0.0
|
|
5273
|
-
*
|
|
5274
|
-
*
|
|
5275
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5276
|
-
* https://openapi-generator.tech
|
|
5277
|
-
* Do not edit the class manually.
|
|
5278
|
-
*/
|
|
5279
|
-
/**
|
|
5280
|
-
*
|
|
5281
|
-
* @export
|
|
5282
|
-
* @interface StartMarginUserDataStreamResponse
|
|
5283
|
-
*/
|
|
5284
|
-
interface StartMarginUserDataStreamResponse {
|
|
5285
|
-
/**
|
|
5286
|
-
*
|
|
5287
|
-
* @type {string}
|
|
5288
|
-
* @memberof StartMarginUserDataStreamResponse
|
|
5289
|
-
*/
|
|
5290
|
-
listenKey?: string;
|
|
5291
|
-
}
|
|
5292
|
-
|
|
5293
5241
|
/**
|
|
5294
5242
|
* Binance Margin Trading REST API
|
|
5295
5243
|
*
|
|
@@ -5480,10 +5428,10 @@ interface AccountApiInterface {
|
|
|
5480
5428
|
interface AdjustCrossMarginMaxLeverageRequest {
|
|
5481
5429
|
/**
|
|
5482
5430
|
* Can only adjust 3 , 5 or 10,Example: maxLeverage = 5 or 3 for Cross Margin Classic; maxLeverage=10 for Cross Margin Pro 10x leverage or 20x if compliance allows.
|
|
5483
|
-
* @type {number}
|
|
5431
|
+
* @type {number | bigint}
|
|
5484
5432
|
* @memberof AccountApiAdjustCrossMarginMaxLeverage
|
|
5485
5433
|
*/
|
|
5486
|
-
readonly maxLeverage: number;
|
|
5434
|
+
readonly maxLeverage: number | bigint;
|
|
5487
5435
|
}
|
|
5488
5436
|
/**
|
|
5489
5437
|
* Request parameters for disableIsolatedMarginAccount operation in AccountApi.
|
|
@@ -5498,10 +5446,10 @@ interface DisableIsolatedMarginAccountRequest {
|
|
|
5498
5446
|
readonly symbol: string;
|
|
5499
5447
|
/**
|
|
5500
5448
|
* No more than 60000
|
|
5501
|
-
* @type {number}
|
|
5449
|
+
* @type {number | bigint}
|
|
5502
5450
|
* @memberof AccountApiDisableIsolatedMarginAccount
|
|
5503
5451
|
*/
|
|
5504
|
-
readonly recvWindow?: number;
|
|
5452
|
+
readonly recvWindow?: number | bigint;
|
|
5505
5453
|
}
|
|
5506
5454
|
/**
|
|
5507
5455
|
* Request parameters for enableIsolatedMarginAccount operation in AccountApi.
|
|
@@ -5516,10 +5464,10 @@ interface EnableIsolatedMarginAccountRequest {
|
|
|
5516
5464
|
readonly symbol: string;
|
|
5517
5465
|
/**
|
|
5518
5466
|
* No more than 60000
|
|
5519
|
-
* @type {number}
|
|
5467
|
+
* @type {number | bigint}
|
|
5520
5468
|
* @memberof AccountApiEnableIsolatedMarginAccount
|
|
5521
5469
|
*/
|
|
5522
|
-
readonly recvWindow?: number;
|
|
5470
|
+
readonly recvWindow?: number | bigint;
|
|
5523
5471
|
}
|
|
5524
5472
|
/**
|
|
5525
5473
|
* Request parameters for getBnbBurnStatus operation in AccountApi.
|
|
@@ -5528,10 +5476,10 @@ interface EnableIsolatedMarginAccountRequest {
|
|
|
5528
5476
|
interface GetBnbBurnStatusRequest {
|
|
5529
5477
|
/**
|
|
5530
5478
|
* No more than 60000
|
|
5531
|
-
* @type {number}
|
|
5479
|
+
* @type {number | bigint}
|
|
5532
5480
|
* @memberof AccountApiGetBnbBurnStatus
|
|
5533
5481
|
*/
|
|
5534
|
-
readonly recvWindow?: number;
|
|
5482
|
+
readonly recvWindow?: number | bigint;
|
|
5535
5483
|
}
|
|
5536
5484
|
/**
|
|
5537
5485
|
* Request parameters for getSummaryOfMarginAccount operation in AccountApi.
|
|
@@ -5540,10 +5488,10 @@ interface GetBnbBurnStatusRequest {
|
|
|
5540
5488
|
interface GetSummaryOfMarginAccountRequest {
|
|
5541
5489
|
/**
|
|
5542
5490
|
* No more than 60000
|
|
5543
|
-
* @type {number}
|
|
5491
|
+
* @type {number | bigint}
|
|
5544
5492
|
* @memberof AccountApiGetSummaryOfMarginAccount
|
|
5545
5493
|
*/
|
|
5546
|
-
readonly recvWindow?: number;
|
|
5494
|
+
readonly recvWindow?: number | bigint;
|
|
5547
5495
|
}
|
|
5548
5496
|
/**
|
|
5549
5497
|
* Request parameters for queryCrossIsolatedMarginCapitalFlow operation in AccountApi.
|
|
@@ -5570,34 +5518,34 @@ interface QueryCrossIsolatedMarginCapitalFlowRequest {
|
|
|
5570
5518
|
readonly type?: string;
|
|
5571
5519
|
/**
|
|
5572
5520
|
* 只支持查询最近90天的数据
|
|
5573
|
-
* @type {number}
|
|
5521
|
+
* @type {number | bigint}
|
|
5574
5522
|
* @memberof AccountApiQueryCrossIsolatedMarginCapitalFlow
|
|
5575
5523
|
*/
|
|
5576
|
-
readonly startTime?: number;
|
|
5524
|
+
readonly startTime?: number | bigint;
|
|
5577
5525
|
/**
|
|
5578
5526
|
*
|
|
5579
|
-
* @type {number}
|
|
5527
|
+
* @type {number | bigint}
|
|
5580
5528
|
* @memberof AccountApiQueryCrossIsolatedMarginCapitalFlow
|
|
5581
5529
|
*/
|
|
5582
|
-
readonly endTime?: number;
|
|
5530
|
+
readonly endTime?: number | bigint;
|
|
5583
5531
|
/**
|
|
5584
5532
|
* 如设置fromId, 将返回id > fromId的数据。否则将返回最新数据
|
|
5585
|
-
* @type {number}
|
|
5533
|
+
* @type {number | bigint}
|
|
5586
5534
|
* @memberof AccountApiQueryCrossIsolatedMarginCapitalFlow
|
|
5587
5535
|
*/
|
|
5588
|
-
readonly fromId?: number;
|
|
5536
|
+
readonly fromId?: number | bigint;
|
|
5589
5537
|
/**
|
|
5590
5538
|
* Default Value: 500; Max Value: 1000
|
|
5591
|
-
* @type {number}
|
|
5539
|
+
* @type {number | bigint}
|
|
5592
5540
|
* @memberof AccountApiQueryCrossIsolatedMarginCapitalFlow
|
|
5593
5541
|
*/
|
|
5594
|
-
readonly limit?: number;
|
|
5542
|
+
readonly limit?: number | bigint;
|
|
5595
5543
|
/**
|
|
5596
5544
|
* No more than 60000
|
|
5597
|
-
* @type {number}
|
|
5545
|
+
* @type {number | bigint}
|
|
5598
5546
|
* @memberof AccountApiQueryCrossIsolatedMarginCapitalFlow
|
|
5599
5547
|
*/
|
|
5600
|
-
readonly recvWindow?: number;
|
|
5548
|
+
readonly recvWindow?: number | bigint;
|
|
5601
5549
|
}
|
|
5602
5550
|
/**
|
|
5603
5551
|
* Request parameters for queryCrossMarginAccountDetails operation in AccountApi.
|
|
@@ -5606,10 +5554,10 @@ interface QueryCrossIsolatedMarginCapitalFlowRequest {
|
|
|
5606
5554
|
interface QueryCrossMarginAccountDetailsRequest {
|
|
5607
5555
|
/**
|
|
5608
5556
|
* No more than 60000
|
|
5609
|
-
* @type {number}
|
|
5557
|
+
* @type {number | bigint}
|
|
5610
5558
|
* @memberof AccountApiQueryCrossMarginAccountDetails
|
|
5611
5559
|
*/
|
|
5612
|
-
readonly recvWindow?: number;
|
|
5560
|
+
readonly recvWindow?: number | bigint;
|
|
5613
5561
|
}
|
|
5614
5562
|
/**
|
|
5615
5563
|
* Request parameters for queryCrossMarginFeeData operation in AccountApi.
|
|
@@ -5618,10 +5566,10 @@ interface QueryCrossMarginAccountDetailsRequest {
|
|
|
5618
5566
|
interface QueryCrossMarginFeeDataRequest {
|
|
5619
5567
|
/**
|
|
5620
5568
|
* User's current specific margin data will be returned if vipLevel is omitted
|
|
5621
|
-
* @type {number}
|
|
5569
|
+
* @type {number | bigint}
|
|
5622
5570
|
* @memberof AccountApiQueryCrossMarginFeeData
|
|
5623
5571
|
*/
|
|
5624
|
-
readonly vipLevel?: number;
|
|
5572
|
+
readonly vipLevel?: number | bigint;
|
|
5625
5573
|
/**
|
|
5626
5574
|
*
|
|
5627
5575
|
* @type {string}
|
|
@@ -5630,10 +5578,10 @@ interface QueryCrossMarginFeeDataRequest {
|
|
|
5630
5578
|
readonly coin?: string;
|
|
5631
5579
|
/**
|
|
5632
5580
|
* No more than 60000
|
|
5633
|
-
* @type {number}
|
|
5581
|
+
* @type {number | bigint}
|
|
5634
5582
|
* @memberof AccountApiQueryCrossMarginFeeData
|
|
5635
5583
|
*/
|
|
5636
|
-
readonly recvWindow?: number;
|
|
5584
|
+
readonly recvWindow?: number | bigint;
|
|
5637
5585
|
}
|
|
5638
5586
|
/**
|
|
5639
5587
|
* Request parameters for queryEnabledIsolatedMarginAccountLimit operation in AccountApi.
|
|
@@ -5642,10 +5590,10 @@ interface QueryCrossMarginFeeDataRequest {
|
|
|
5642
5590
|
interface QueryEnabledIsolatedMarginAccountLimitRequest {
|
|
5643
5591
|
/**
|
|
5644
5592
|
* No more than 60000
|
|
5645
|
-
* @type {number}
|
|
5593
|
+
* @type {number | bigint}
|
|
5646
5594
|
* @memberof AccountApiQueryEnabledIsolatedMarginAccountLimit
|
|
5647
5595
|
*/
|
|
5648
|
-
readonly recvWindow?: number;
|
|
5596
|
+
readonly recvWindow?: number | bigint;
|
|
5649
5597
|
}
|
|
5650
5598
|
/**
|
|
5651
5599
|
* Request parameters for queryIsolatedMarginAccountInfo operation in AccountApi.
|
|
@@ -5660,10 +5608,10 @@ interface QueryIsolatedMarginAccountInfoRequest {
|
|
|
5660
5608
|
readonly symbols?: string;
|
|
5661
5609
|
/**
|
|
5662
5610
|
* No more than 60000
|
|
5663
|
-
* @type {number}
|
|
5611
|
+
* @type {number | bigint}
|
|
5664
5612
|
* @memberof AccountApiQueryIsolatedMarginAccountInfo
|
|
5665
5613
|
*/
|
|
5666
|
-
readonly recvWindow?: number;
|
|
5614
|
+
readonly recvWindow?: number | bigint;
|
|
5667
5615
|
}
|
|
5668
5616
|
/**
|
|
5669
5617
|
* Request parameters for queryIsolatedMarginFeeData operation in AccountApi.
|
|
@@ -5672,10 +5620,10 @@ interface QueryIsolatedMarginAccountInfoRequest {
|
|
|
5672
5620
|
interface QueryIsolatedMarginFeeDataRequest {
|
|
5673
5621
|
/**
|
|
5674
5622
|
* User's current specific margin data will be returned if vipLevel is omitted
|
|
5675
|
-
* @type {number}
|
|
5623
|
+
* @type {number | bigint}
|
|
5676
5624
|
* @memberof AccountApiQueryIsolatedMarginFeeData
|
|
5677
5625
|
*/
|
|
5678
|
-
readonly vipLevel?: number;
|
|
5626
|
+
readonly vipLevel?: number | bigint;
|
|
5679
5627
|
/**
|
|
5680
5628
|
* isolated margin pair
|
|
5681
5629
|
* @type {string}
|
|
@@ -5684,10 +5632,10 @@ interface QueryIsolatedMarginFeeDataRequest {
|
|
|
5684
5632
|
readonly symbol?: string;
|
|
5685
5633
|
/**
|
|
5686
5634
|
* No more than 60000
|
|
5687
|
-
* @type {number}
|
|
5635
|
+
* @type {number | bigint}
|
|
5688
5636
|
* @memberof AccountApiQueryIsolatedMarginFeeData
|
|
5689
5637
|
*/
|
|
5690
|
-
readonly recvWindow?: number;
|
|
5638
|
+
readonly recvWindow?: number | bigint;
|
|
5691
5639
|
}
|
|
5692
5640
|
/**
|
|
5693
5641
|
* AccountApi - object-oriented interface
|
|
@@ -5997,34 +5945,34 @@ interface GetInterestHistoryRequest {
|
|
|
5997
5945
|
readonly isolatedSymbol?: string;
|
|
5998
5946
|
/**
|
|
5999
5947
|
* 只支持查询最近90天的数据
|
|
6000
|
-
* @type {number}
|
|
5948
|
+
* @type {number | bigint}
|
|
6001
5949
|
* @memberof BorrowRepayApiGetInterestHistory
|
|
6002
5950
|
*/
|
|
6003
|
-
readonly startTime?: number;
|
|
5951
|
+
readonly startTime?: number | bigint;
|
|
6004
5952
|
/**
|
|
6005
5953
|
*
|
|
6006
|
-
* @type {number}
|
|
5954
|
+
* @type {number | bigint}
|
|
6007
5955
|
* @memberof BorrowRepayApiGetInterestHistory
|
|
6008
5956
|
*/
|
|
6009
|
-
readonly endTime?: number;
|
|
5957
|
+
readonly endTime?: number | bigint;
|
|
6010
5958
|
/**
|
|
6011
5959
|
* Currently querying page. Start from 1. Default:1
|
|
6012
|
-
* @type {number}
|
|
5960
|
+
* @type {number | bigint}
|
|
6013
5961
|
* @memberof BorrowRepayApiGetInterestHistory
|
|
6014
5962
|
*/
|
|
6015
|
-
readonly current?: number;
|
|
5963
|
+
readonly current?: number | bigint;
|
|
6016
5964
|
/**
|
|
6017
5965
|
* Default:10 Max:100
|
|
6018
|
-
* @type {number}
|
|
5966
|
+
* @type {number | bigint}
|
|
6019
5967
|
* @memberof BorrowRepayApiGetInterestHistory
|
|
6020
5968
|
*/
|
|
6021
|
-
readonly size?: number;
|
|
5969
|
+
readonly size?: number | bigint;
|
|
6022
5970
|
/**
|
|
6023
5971
|
* No more than 60000
|
|
6024
|
-
* @type {number}
|
|
5972
|
+
* @type {number | bigint}
|
|
6025
5973
|
* @memberof BorrowRepayApiGetInterestHistory
|
|
6026
5974
|
*/
|
|
6027
|
-
readonly recvWindow?: number;
|
|
5975
|
+
readonly recvWindow?: number | bigint;
|
|
6028
5976
|
}
|
|
6029
5977
|
/**
|
|
6030
5978
|
* Request parameters for marginAccountBorrowRepay operation in BorrowRepayApi.
|
|
@@ -6063,10 +6011,10 @@ interface MarginAccountBorrowRepayRequest {
|
|
|
6063
6011
|
readonly type: string;
|
|
6064
6012
|
/**
|
|
6065
6013
|
* No more than 60000
|
|
6066
|
-
* @type {number}
|
|
6014
|
+
* @type {number | bigint}
|
|
6067
6015
|
* @memberof BorrowRepayApiMarginAccountBorrowRepay
|
|
6068
6016
|
*/
|
|
6069
|
-
readonly recvWindow?: number;
|
|
6017
|
+
readonly recvWindow?: number | bigint;
|
|
6070
6018
|
}
|
|
6071
6019
|
/**
|
|
6072
6020
|
* Request parameters for queryBorrowRepayRecordsInMarginAccount operation in BorrowRepayApi.
|
|
@@ -6093,40 +6041,40 @@ interface QueryBorrowRepayRecordsInMarginAccountRequest {
|
|
|
6093
6041
|
readonly isolatedSymbol?: string;
|
|
6094
6042
|
/**
|
|
6095
6043
|
* `tranId` in `POST /sapi/v1/margin/loan`
|
|
6096
|
-
* @type {number}
|
|
6044
|
+
* @type {number | bigint}
|
|
6097
6045
|
* @memberof BorrowRepayApiQueryBorrowRepayRecordsInMarginAccount
|
|
6098
6046
|
*/
|
|
6099
|
-
readonly txId?: number;
|
|
6047
|
+
readonly txId?: number | bigint;
|
|
6100
6048
|
/**
|
|
6101
6049
|
* 只支持查询最近90天的数据
|
|
6102
|
-
* @type {number}
|
|
6050
|
+
* @type {number | bigint}
|
|
6103
6051
|
* @memberof BorrowRepayApiQueryBorrowRepayRecordsInMarginAccount
|
|
6104
6052
|
*/
|
|
6105
|
-
readonly startTime?: number;
|
|
6053
|
+
readonly startTime?: number | bigint;
|
|
6106
6054
|
/**
|
|
6107
6055
|
*
|
|
6108
|
-
* @type {number}
|
|
6056
|
+
* @type {number | bigint}
|
|
6109
6057
|
* @memberof BorrowRepayApiQueryBorrowRepayRecordsInMarginAccount
|
|
6110
6058
|
*/
|
|
6111
|
-
readonly endTime?: number;
|
|
6059
|
+
readonly endTime?: number | bigint;
|
|
6112
6060
|
/**
|
|
6113
6061
|
* Currently querying page. Start from 1. Default:1
|
|
6114
|
-
* @type {number}
|
|
6062
|
+
* @type {number | bigint}
|
|
6115
6063
|
* @memberof BorrowRepayApiQueryBorrowRepayRecordsInMarginAccount
|
|
6116
6064
|
*/
|
|
6117
|
-
readonly current?: number;
|
|
6065
|
+
readonly current?: number | bigint;
|
|
6118
6066
|
/**
|
|
6119
6067
|
* Default:10 Max:100
|
|
6120
|
-
* @type {number}
|
|
6068
|
+
* @type {number | bigint}
|
|
6121
6069
|
* @memberof BorrowRepayApiQueryBorrowRepayRecordsInMarginAccount
|
|
6122
6070
|
*/
|
|
6123
|
-
readonly size?: number;
|
|
6071
|
+
readonly size?: number | bigint;
|
|
6124
6072
|
/**
|
|
6125
6073
|
* No more than 60000
|
|
6126
|
-
* @type {number}
|
|
6074
|
+
* @type {number | bigint}
|
|
6127
6075
|
* @memberof BorrowRepayApiQueryBorrowRepayRecordsInMarginAccount
|
|
6128
6076
|
*/
|
|
6129
|
-
readonly recvWindow?: number;
|
|
6077
|
+
readonly recvWindow?: number | bigint;
|
|
6130
6078
|
}
|
|
6131
6079
|
/**
|
|
6132
6080
|
* Request parameters for queryMarginInterestRateHistory operation in BorrowRepayApi.
|
|
@@ -6141,28 +6089,28 @@ interface QueryMarginInterestRateHistoryRequest {
|
|
|
6141
6089
|
readonly asset: string;
|
|
6142
6090
|
/**
|
|
6143
6091
|
* User's current specific margin data will be returned if vipLevel is omitted
|
|
6144
|
-
* @type {number}
|
|
6092
|
+
* @type {number | bigint}
|
|
6145
6093
|
* @memberof BorrowRepayApiQueryMarginInterestRateHistory
|
|
6146
6094
|
*/
|
|
6147
|
-
readonly vipLevel?: number;
|
|
6095
|
+
readonly vipLevel?: number | bigint;
|
|
6148
6096
|
/**
|
|
6149
6097
|
* 只支持查询最近90天的数据
|
|
6150
|
-
* @type {number}
|
|
6098
|
+
* @type {number | bigint}
|
|
6151
6099
|
* @memberof BorrowRepayApiQueryMarginInterestRateHistory
|
|
6152
6100
|
*/
|
|
6153
|
-
readonly startTime?: number;
|
|
6101
|
+
readonly startTime?: number | bigint;
|
|
6154
6102
|
/**
|
|
6155
6103
|
*
|
|
6156
|
-
* @type {number}
|
|
6104
|
+
* @type {number | bigint}
|
|
6157
6105
|
* @memberof BorrowRepayApiQueryMarginInterestRateHistory
|
|
6158
6106
|
*/
|
|
6159
|
-
readonly endTime?: number;
|
|
6107
|
+
readonly endTime?: number | bigint;
|
|
6160
6108
|
/**
|
|
6161
6109
|
* No more than 60000
|
|
6162
|
-
* @type {number}
|
|
6110
|
+
* @type {number | bigint}
|
|
6163
6111
|
* @memberof BorrowRepayApiQueryMarginInterestRateHistory
|
|
6164
6112
|
*/
|
|
6165
|
-
readonly recvWindow?: number;
|
|
6113
|
+
readonly recvWindow?: number | bigint;
|
|
6166
6114
|
}
|
|
6167
6115
|
/**
|
|
6168
6116
|
* Request parameters for queryMaxBorrow operation in BorrowRepayApi.
|
|
@@ -6183,10 +6131,10 @@ interface QueryMaxBorrowRequest {
|
|
|
6183
6131
|
readonly isolatedSymbol?: string;
|
|
6184
6132
|
/**
|
|
6185
6133
|
* No more than 60000
|
|
6186
|
-
* @type {number}
|
|
6134
|
+
* @type {number | bigint}
|
|
6187
6135
|
* @memberof BorrowRepayApiQueryMaxBorrow
|
|
6188
6136
|
*/
|
|
6189
|
-
readonly recvWindow?: number;
|
|
6137
|
+
readonly recvWindow?: number | bigint;
|
|
6190
6138
|
}
|
|
6191
6139
|
/**
|
|
6192
6140
|
* BorrowRepayApi - object-oriented interface
|
|
@@ -6475,10 +6423,10 @@ interface GetAllIsolatedMarginSymbolRequest {
|
|
|
6475
6423
|
readonly symbol?: string;
|
|
6476
6424
|
/**
|
|
6477
6425
|
* No more than 60000
|
|
6478
|
-
* @type {number}
|
|
6426
|
+
* @type {number | bigint}
|
|
6479
6427
|
* @memberof MarketDataApiGetAllIsolatedMarginSymbol
|
|
6480
6428
|
*/
|
|
6481
|
-
readonly recvWindow?: number;
|
|
6429
|
+
readonly recvWindow?: number | bigint;
|
|
6482
6430
|
}
|
|
6483
6431
|
/**
|
|
6484
6432
|
* Request parameters for getAllMarginAssets operation in MarketDataApi.
|
|
@@ -6499,10 +6447,10 @@ interface GetAllMarginAssetsRequest {
|
|
|
6499
6447
|
interface GetDelistScheduleRequest {
|
|
6500
6448
|
/**
|
|
6501
6449
|
* No more than 60000
|
|
6502
|
-
* @type {number}
|
|
6450
|
+
* @type {number | bigint}
|
|
6503
6451
|
* @memberof MarketDataApiGetDelistSchedule
|
|
6504
6452
|
*/
|
|
6505
|
-
readonly recvWindow?: number;
|
|
6453
|
+
readonly recvWindow?: number | bigint;
|
|
6506
6454
|
}
|
|
6507
6455
|
/**
|
|
6508
6456
|
* Request parameters for getListSchedule operation in MarketDataApi.
|
|
@@ -6511,10 +6459,10 @@ interface GetDelistScheduleRequest {
|
|
|
6511
6459
|
interface GetListScheduleRequest {
|
|
6512
6460
|
/**
|
|
6513
6461
|
* No more than 60000
|
|
6514
|
-
* @type {number}
|
|
6462
|
+
* @type {number | bigint}
|
|
6515
6463
|
* @memberof MarketDataApiGetListSchedule
|
|
6516
6464
|
*/
|
|
6517
|
-
readonly recvWindow?: number;
|
|
6465
|
+
readonly recvWindow?: number | bigint;
|
|
6518
6466
|
}
|
|
6519
6467
|
/**
|
|
6520
6468
|
* Request parameters for queryIsolatedMarginTierData operation in MarketDataApi.
|
|
@@ -6529,16 +6477,16 @@ interface QueryIsolatedMarginTierDataRequest {
|
|
|
6529
6477
|
readonly symbol: string;
|
|
6530
6478
|
/**
|
|
6531
6479
|
* All margin tier data will be returned if tier is omitted
|
|
6532
|
-
* @type {number}
|
|
6480
|
+
* @type {number | bigint}
|
|
6533
6481
|
* @memberof MarketDataApiQueryIsolatedMarginTierData
|
|
6534
6482
|
*/
|
|
6535
|
-
readonly tier?: number;
|
|
6483
|
+
readonly tier?: number | bigint;
|
|
6536
6484
|
/**
|
|
6537
6485
|
* No more than 60000
|
|
6538
|
-
* @type {number}
|
|
6486
|
+
* @type {number | bigint}
|
|
6539
6487
|
* @memberof MarketDataApiQueryIsolatedMarginTierData
|
|
6540
6488
|
*/
|
|
6541
|
-
readonly recvWindow?: number;
|
|
6489
|
+
readonly recvWindow?: number | bigint;
|
|
6542
6490
|
}
|
|
6543
6491
|
/**
|
|
6544
6492
|
* Request parameters for queryMarginAvailableInventory operation in MarketDataApi.
|
|
@@ -7267,10 +7215,10 @@ interface CreateSpecialKeyRequest {
|
|
|
7267
7215
|
readonly permissionMode?: string;
|
|
7268
7216
|
/**
|
|
7269
7217
|
* No more than 60000
|
|
7270
|
-
* @type {number}
|
|
7218
|
+
* @type {number | bigint}
|
|
7271
7219
|
* @memberof TradeApiCreateSpecialKey
|
|
7272
7220
|
*/
|
|
7273
|
-
readonly recvWindow?: number;
|
|
7221
|
+
readonly recvWindow?: number | bigint;
|
|
7274
7222
|
}
|
|
7275
7223
|
/**
|
|
7276
7224
|
* Request parameters for deleteSpecialKey operation in TradeApi.
|
|
@@ -7291,10 +7239,10 @@ interface DeleteSpecialKeyRequest {
|
|
|
7291
7239
|
readonly symbol?: string;
|
|
7292
7240
|
/**
|
|
7293
7241
|
* No more than 60000
|
|
7294
|
-
* @type {number}
|
|
7242
|
+
* @type {number | bigint}
|
|
7295
7243
|
* @memberof TradeApiDeleteSpecialKey
|
|
7296
7244
|
*/
|
|
7297
|
-
readonly recvWindow?: number;
|
|
7245
|
+
readonly recvWindow?: number | bigint;
|
|
7298
7246
|
}
|
|
7299
7247
|
/**
|
|
7300
7248
|
* Request parameters for editIpForSpecialKey operation in TradeApi.
|
|
@@ -7315,10 +7263,10 @@ interface EditIpForSpecialKeyRequest {
|
|
|
7315
7263
|
readonly symbol?: string;
|
|
7316
7264
|
/**
|
|
7317
7265
|
* No more than 60000
|
|
7318
|
-
* @type {number}
|
|
7266
|
+
* @type {number | bigint}
|
|
7319
7267
|
* @memberof TradeApiEditIpForSpecialKey
|
|
7320
7268
|
*/
|
|
7321
|
-
readonly recvWindow?: number;
|
|
7269
|
+
readonly recvWindow?: number | bigint;
|
|
7322
7270
|
}
|
|
7323
7271
|
/**
|
|
7324
7272
|
* Request parameters for getForceLiquidationRecord operation in TradeApi.
|
|
@@ -7327,16 +7275,16 @@ interface EditIpForSpecialKeyRequest {
|
|
|
7327
7275
|
interface GetForceLiquidationRecordRequest {
|
|
7328
7276
|
/**
|
|
7329
7277
|
* 只支持查询最近90天的数据
|
|
7330
|
-
* @type {number}
|
|
7278
|
+
* @type {number | bigint}
|
|
7331
7279
|
* @memberof TradeApiGetForceLiquidationRecord
|
|
7332
7280
|
*/
|
|
7333
|
-
readonly startTime?: number;
|
|
7281
|
+
readonly startTime?: number | bigint;
|
|
7334
7282
|
/**
|
|
7335
7283
|
*
|
|
7336
|
-
* @type {number}
|
|
7284
|
+
* @type {number | bigint}
|
|
7337
7285
|
* @memberof TradeApiGetForceLiquidationRecord
|
|
7338
7286
|
*/
|
|
7339
|
-
readonly endTime?: number;
|
|
7287
|
+
readonly endTime?: number | bigint;
|
|
7340
7288
|
/**
|
|
7341
7289
|
* isolated symbol
|
|
7342
7290
|
* @type {string}
|
|
@@ -7345,22 +7293,22 @@ interface GetForceLiquidationRecordRequest {
|
|
|
7345
7293
|
readonly isolatedSymbol?: string;
|
|
7346
7294
|
/**
|
|
7347
7295
|
* Currently querying page. Start from 1. Default:1
|
|
7348
|
-
* @type {number}
|
|
7296
|
+
* @type {number | bigint}
|
|
7349
7297
|
* @memberof TradeApiGetForceLiquidationRecord
|
|
7350
7298
|
*/
|
|
7351
|
-
readonly current?: number;
|
|
7299
|
+
readonly current?: number | bigint;
|
|
7352
7300
|
/**
|
|
7353
7301
|
* Default:10 Max:100
|
|
7354
|
-
* @type {number}
|
|
7302
|
+
* @type {number | bigint}
|
|
7355
7303
|
* @memberof TradeApiGetForceLiquidationRecord
|
|
7356
7304
|
*/
|
|
7357
|
-
readonly size?: number;
|
|
7305
|
+
readonly size?: number | bigint;
|
|
7358
7306
|
/**
|
|
7359
7307
|
* No more than 60000
|
|
7360
|
-
* @type {number}
|
|
7308
|
+
* @type {number | bigint}
|
|
7361
7309
|
* @memberof TradeApiGetForceLiquidationRecord
|
|
7362
7310
|
*/
|
|
7363
|
-
readonly recvWindow?: number;
|
|
7311
|
+
readonly recvWindow?: number | bigint;
|
|
7364
7312
|
}
|
|
7365
7313
|
/**
|
|
7366
7314
|
* Request parameters for getSmallLiabilityExchangeCoinList operation in TradeApi.
|
|
@@ -7369,10 +7317,10 @@ interface GetForceLiquidationRecordRequest {
|
|
|
7369
7317
|
interface GetSmallLiabilityExchangeCoinListRequest {
|
|
7370
7318
|
/**
|
|
7371
7319
|
* No more than 60000
|
|
7372
|
-
* @type {number}
|
|
7320
|
+
* @type {number | bigint}
|
|
7373
7321
|
* @memberof TradeApiGetSmallLiabilityExchangeCoinList
|
|
7374
7322
|
*/
|
|
7375
|
-
readonly recvWindow?: number;
|
|
7323
|
+
readonly recvWindow?: number | bigint;
|
|
7376
7324
|
}
|
|
7377
7325
|
/**
|
|
7378
7326
|
* Request parameters for getSmallLiabilityExchangeHistory operation in TradeApi.
|
|
@@ -7381,34 +7329,34 @@ interface GetSmallLiabilityExchangeCoinListRequest {
|
|
|
7381
7329
|
interface GetSmallLiabilityExchangeHistoryRequest {
|
|
7382
7330
|
/**
|
|
7383
7331
|
* Currently querying page. Start from 1. Default:1
|
|
7384
|
-
* @type {number}
|
|
7332
|
+
* @type {number | bigint}
|
|
7385
7333
|
* @memberof TradeApiGetSmallLiabilityExchangeHistory
|
|
7386
7334
|
*/
|
|
7387
|
-
readonly current: number;
|
|
7335
|
+
readonly current: number | bigint;
|
|
7388
7336
|
/**
|
|
7389
7337
|
* Default:10, Max:100
|
|
7390
|
-
* @type {number}
|
|
7338
|
+
* @type {number | bigint}
|
|
7391
7339
|
* @memberof TradeApiGetSmallLiabilityExchangeHistory
|
|
7392
7340
|
*/
|
|
7393
|
-
readonly size: number;
|
|
7341
|
+
readonly size: number | bigint;
|
|
7394
7342
|
/**
|
|
7395
7343
|
* 只支持查询最近90天的数据
|
|
7396
|
-
* @type {number}
|
|
7344
|
+
* @type {number | bigint}
|
|
7397
7345
|
* @memberof TradeApiGetSmallLiabilityExchangeHistory
|
|
7398
7346
|
*/
|
|
7399
|
-
readonly startTime?: number;
|
|
7347
|
+
readonly startTime?: number | bigint;
|
|
7400
7348
|
/**
|
|
7401
7349
|
*
|
|
7402
|
-
* @type {number}
|
|
7350
|
+
* @type {number | bigint}
|
|
7403
7351
|
* @memberof TradeApiGetSmallLiabilityExchangeHistory
|
|
7404
7352
|
*/
|
|
7405
|
-
readonly endTime?: number;
|
|
7353
|
+
readonly endTime?: number | bigint;
|
|
7406
7354
|
/**
|
|
7407
7355
|
* No more than 60000
|
|
7408
|
-
* @type {number}
|
|
7356
|
+
* @type {number | bigint}
|
|
7409
7357
|
* @memberof TradeApiGetSmallLiabilityExchangeHistory
|
|
7410
7358
|
*/
|
|
7411
|
-
readonly recvWindow?: number;
|
|
7359
|
+
readonly recvWindow?: number | bigint;
|
|
7412
7360
|
}
|
|
7413
7361
|
/**
|
|
7414
7362
|
* Request parameters for marginAccountCancelAllOpenOrdersOnASymbol operation in TradeApi.
|
|
@@ -7429,10 +7377,10 @@ interface MarginAccountCancelAllOpenOrdersOnASymbolRequest {
|
|
|
7429
7377
|
readonly isIsolated?: string;
|
|
7430
7378
|
/**
|
|
7431
7379
|
* No more than 60000
|
|
7432
|
-
* @type {number}
|
|
7380
|
+
* @type {number | bigint}
|
|
7433
7381
|
* @memberof TradeApiMarginAccountCancelAllOpenOrdersOnASymbol
|
|
7434
7382
|
*/
|
|
7435
|
-
readonly recvWindow?: number;
|
|
7383
|
+
readonly recvWindow?: number | bigint;
|
|
7436
7384
|
}
|
|
7437
7385
|
/**
|
|
7438
7386
|
* Request parameters for marginAccountCancelOco operation in TradeApi.
|
|
@@ -7453,10 +7401,10 @@ interface MarginAccountCancelOcoRequest {
|
|
|
7453
7401
|
readonly isIsolated?: string;
|
|
7454
7402
|
/**
|
|
7455
7403
|
* Either `orderListId` or `listClientOrderId` must be provided
|
|
7456
|
-
* @type {number}
|
|
7404
|
+
* @type {number | bigint}
|
|
7457
7405
|
* @memberof TradeApiMarginAccountCancelOco
|
|
7458
7406
|
*/
|
|
7459
|
-
readonly orderListId?: number;
|
|
7407
|
+
readonly orderListId?: number | bigint;
|
|
7460
7408
|
/**
|
|
7461
7409
|
* Either `orderListId` or `listClientOrderId` must be provided
|
|
7462
7410
|
* @type {string}
|
|
@@ -7471,10 +7419,10 @@ interface MarginAccountCancelOcoRequest {
|
|
|
7471
7419
|
readonly newClientOrderId?: string;
|
|
7472
7420
|
/**
|
|
7473
7421
|
* No more than 60000
|
|
7474
|
-
* @type {number}
|
|
7422
|
+
* @type {number | bigint}
|
|
7475
7423
|
* @memberof TradeApiMarginAccountCancelOco
|
|
7476
7424
|
*/
|
|
7477
|
-
readonly recvWindow?: number;
|
|
7425
|
+
readonly recvWindow?: number | bigint;
|
|
7478
7426
|
}
|
|
7479
7427
|
/**
|
|
7480
7428
|
* Request parameters for marginAccountCancelOrder operation in TradeApi.
|
|
@@ -7495,10 +7443,10 @@ interface MarginAccountCancelOrderRequest {
|
|
|
7495
7443
|
readonly isIsolated?: string;
|
|
7496
7444
|
/**
|
|
7497
7445
|
*
|
|
7498
|
-
* @type {number}
|
|
7446
|
+
* @type {number | bigint}
|
|
7499
7447
|
* @memberof TradeApiMarginAccountCancelOrder
|
|
7500
7448
|
*/
|
|
7501
|
-
readonly orderId?: number;
|
|
7449
|
+
readonly orderId?: number | bigint;
|
|
7502
7450
|
/**
|
|
7503
7451
|
*
|
|
7504
7452
|
* @type {string}
|
|
@@ -7513,10 +7461,10 @@ interface MarginAccountCancelOrderRequest {
|
|
|
7513
7461
|
readonly newClientOrderId?: string;
|
|
7514
7462
|
/**
|
|
7515
7463
|
* No more than 60000
|
|
7516
|
-
* @type {number}
|
|
7464
|
+
* @type {number | bigint}
|
|
7517
7465
|
* @memberof TradeApiMarginAccountCancelOrder
|
|
7518
7466
|
*/
|
|
7519
|
-
readonly recvWindow?: number;
|
|
7467
|
+
readonly recvWindow?: number | bigint;
|
|
7520
7468
|
}
|
|
7521
7469
|
/**
|
|
7522
7470
|
* Request parameters for marginAccountNewOco operation in TradeApi.
|
|
@@ -7627,10 +7575,10 @@ interface MarginAccountNewOcoRequest {
|
|
|
7627
7575
|
readonly autoRepayAtCancel?: boolean;
|
|
7628
7576
|
/**
|
|
7629
7577
|
* No more than 60000
|
|
7630
|
-
* @type {number}
|
|
7578
|
+
* @type {number | bigint}
|
|
7631
7579
|
* @memberof TradeApiMarginAccountNewOco
|
|
7632
7580
|
*/
|
|
7633
|
-
readonly recvWindow?: number;
|
|
7581
|
+
readonly recvWindow?: number | bigint;
|
|
7634
7582
|
}
|
|
7635
7583
|
/**
|
|
7636
7584
|
* Request parameters for marginAccountNewOrder operation in TradeApi.
|
|
@@ -7729,10 +7677,10 @@ interface MarginAccountNewOrderRequest {
|
|
|
7729
7677
|
readonly autoRepayAtCancel?: boolean;
|
|
7730
7678
|
/**
|
|
7731
7679
|
* No more than 60000
|
|
7732
|
-
* @type {number}
|
|
7680
|
+
* @type {number | bigint}
|
|
7733
7681
|
* @memberof TradeApiMarginAccountNewOrder
|
|
7734
7682
|
*/
|
|
7735
|
-
readonly recvWindow?: number;
|
|
7683
|
+
readonly recvWindow?: number | bigint;
|
|
7736
7684
|
}
|
|
7737
7685
|
/**
|
|
7738
7686
|
* Request parameters for marginAccountNewOto operation in TradeApi.
|
|
@@ -8083,10 +8031,10 @@ interface MarginManualLiquidationRequest {
|
|
|
8083
8031
|
readonly symbol?: string;
|
|
8084
8032
|
/**
|
|
8085
8033
|
* No more than 60000
|
|
8086
|
-
* @type {number}
|
|
8034
|
+
* @type {number | bigint}
|
|
8087
8035
|
* @memberof TradeApiMarginManualLiquidation
|
|
8088
8036
|
*/
|
|
8089
|
-
readonly recvWindow?: number;
|
|
8037
|
+
readonly recvWindow?: number | bigint;
|
|
8090
8038
|
}
|
|
8091
8039
|
/**
|
|
8092
8040
|
* Request parameters for queryCurrentMarginOrderCountUsage operation in TradeApi.
|
|
@@ -8107,10 +8055,10 @@ interface QueryCurrentMarginOrderCountUsageRequest {
|
|
|
8107
8055
|
readonly symbol?: string;
|
|
8108
8056
|
/**
|
|
8109
8057
|
* No more than 60000
|
|
8110
|
-
* @type {number}
|
|
8058
|
+
* @type {number | bigint}
|
|
8111
8059
|
* @memberof TradeApiQueryCurrentMarginOrderCountUsage
|
|
8112
8060
|
*/
|
|
8113
|
-
readonly recvWindow?: number;
|
|
8061
|
+
readonly recvWindow?: number | bigint;
|
|
8114
8062
|
}
|
|
8115
8063
|
/**
|
|
8116
8064
|
* Request parameters for queryMarginAccountsAllOco operation in TradeApi.
|
|
@@ -8131,34 +8079,34 @@ interface QueryMarginAccountsAllOcoRequest {
|
|
|
8131
8079
|
readonly symbol?: string;
|
|
8132
8080
|
/**
|
|
8133
8081
|
* 如设置fromId, 将返回id > fromId的数据。否则将返回最新数据
|
|
8134
|
-
* @type {number}
|
|
8082
|
+
* @type {number | bigint}
|
|
8135
8083
|
* @memberof TradeApiQueryMarginAccountsAllOco
|
|
8136
8084
|
*/
|
|
8137
|
-
readonly fromId?: number;
|
|
8085
|
+
readonly fromId?: number | bigint;
|
|
8138
8086
|
/**
|
|
8139
8087
|
* 只支持查询最近90天的数据
|
|
8140
|
-
* @type {number}
|
|
8088
|
+
* @type {number | bigint}
|
|
8141
8089
|
* @memberof TradeApiQueryMarginAccountsAllOco
|
|
8142
8090
|
*/
|
|
8143
|
-
readonly startTime?: number;
|
|
8091
|
+
readonly startTime?: number | bigint;
|
|
8144
8092
|
/**
|
|
8145
8093
|
*
|
|
8146
|
-
* @type {number}
|
|
8094
|
+
* @type {number | bigint}
|
|
8147
8095
|
* @memberof TradeApiQueryMarginAccountsAllOco
|
|
8148
8096
|
*/
|
|
8149
|
-
readonly endTime?: number;
|
|
8097
|
+
readonly endTime?: number | bigint;
|
|
8150
8098
|
/**
|
|
8151
8099
|
* Default Value: 500; Max Value: 1000
|
|
8152
|
-
* @type {number}
|
|
8100
|
+
* @type {number | bigint}
|
|
8153
8101
|
* @memberof TradeApiQueryMarginAccountsAllOco
|
|
8154
8102
|
*/
|
|
8155
|
-
readonly limit?: number;
|
|
8103
|
+
readonly limit?: number | bigint;
|
|
8156
8104
|
/**
|
|
8157
8105
|
* No more than 60000
|
|
8158
|
-
* @type {number}
|
|
8106
|
+
* @type {number | bigint}
|
|
8159
8107
|
* @memberof TradeApiQueryMarginAccountsAllOco
|
|
8160
8108
|
*/
|
|
8161
|
-
readonly recvWindow?: number;
|
|
8109
|
+
readonly recvWindow?: number | bigint;
|
|
8162
8110
|
}
|
|
8163
8111
|
/**
|
|
8164
8112
|
* Request parameters for queryMarginAccountsAllOrders operation in TradeApi.
|
|
@@ -8179,34 +8127,34 @@ interface QueryMarginAccountsAllOrdersRequest {
|
|
|
8179
8127
|
readonly isIsolated?: string;
|
|
8180
8128
|
/**
|
|
8181
8129
|
*
|
|
8182
|
-
* @type {number}
|
|
8130
|
+
* @type {number | bigint}
|
|
8183
8131
|
* @memberof TradeApiQueryMarginAccountsAllOrders
|
|
8184
8132
|
*/
|
|
8185
|
-
readonly orderId?: number;
|
|
8133
|
+
readonly orderId?: number | bigint;
|
|
8186
8134
|
/**
|
|
8187
8135
|
* 只支持查询最近90天的数据
|
|
8188
|
-
* @type {number}
|
|
8136
|
+
* @type {number | bigint}
|
|
8189
8137
|
* @memberof TradeApiQueryMarginAccountsAllOrders
|
|
8190
8138
|
*/
|
|
8191
|
-
readonly startTime?: number;
|
|
8139
|
+
readonly startTime?: number | bigint;
|
|
8192
8140
|
/**
|
|
8193
8141
|
*
|
|
8194
|
-
* @type {number}
|
|
8142
|
+
* @type {number | bigint}
|
|
8195
8143
|
* @memberof TradeApiQueryMarginAccountsAllOrders
|
|
8196
8144
|
*/
|
|
8197
|
-
readonly endTime?: number;
|
|
8145
|
+
readonly endTime?: number | bigint;
|
|
8198
8146
|
/**
|
|
8199
8147
|
* Default Value: 500; Max Value: 1000
|
|
8200
|
-
* @type {number}
|
|
8148
|
+
* @type {number | bigint}
|
|
8201
8149
|
* @memberof TradeApiQueryMarginAccountsAllOrders
|
|
8202
8150
|
*/
|
|
8203
|
-
readonly limit?: number;
|
|
8151
|
+
readonly limit?: number | bigint;
|
|
8204
8152
|
/**
|
|
8205
8153
|
* No more than 60000
|
|
8206
|
-
* @type {number}
|
|
8154
|
+
* @type {number | bigint}
|
|
8207
8155
|
* @memberof TradeApiQueryMarginAccountsAllOrders
|
|
8208
8156
|
*/
|
|
8209
|
-
readonly recvWindow?: number;
|
|
8157
|
+
readonly recvWindow?: number | bigint;
|
|
8210
8158
|
}
|
|
8211
8159
|
/**
|
|
8212
8160
|
* Request parameters for queryMarginAccountsOco operation in TradeApi.
|
|
@@ -8227,10 +8175,10 @@ interface QueryMarginAccountsOcoRequest {
|
|
|
8227
8175
|
readonly symbol?: string;
|
|
8228
8176
|
/**
|
|
8229
8177
|
* Either `orderListId` or `listClientOrderId` must be provided
|
|
8230
|
-
* @type {number}
|
|
8178
|
+
* @type {number | bigint}
|
|
8231
8179
|
* @memberof TradeApiQueryMarginAccountsOco
|
|
8232
8180
|
*/
|
|
8233
|
-
readonly orderListId?: number;
|
|
8181
|
+
readonly orderListId?: number | bigint;
|
|
8234
8182
|
/**
|
|
8235
8183
|
*
|
|
8236
8184
|
* @type {string}
|
|
@@ -8239,10 +8187,10 @@ interface QueryMarginAccountsOcoRequest {
|
|
|
8239
8187
|
readonly origClientOrderId?: string;
|
|
8240
8188
|
/**
|
|
8241
8189
|
* No more than 60000
|
|
8242
|
-
* @type {number}
|
|
8190
|
+
* @type {number | bigint}
|
|
8243
8191
|
* @memberof TradeApiQueryMarginAccountsOco
|
|
8244
8192
|
*/
|
|
8245
|
-
readonly recvWindow?: number;
|
|
8193
|
+
readonly recvWindow?: number | bigint;
|
|
8246
8194
|
}
|
|
8247
8195
|
/**
|
|
8248
8196
|
* Request parameters for queryMarginAccountsOpenOco operation in TradeApi.
|
|
@@ -8263,10 +8211,10 @@ interface QueryMarginAccountsOpenOcoRequest {
|
|
|
8263
8211
|
readonly symbol?: string;
|
|
8264
8212
|
/**
|
|
8265
8213
|
* No more than 60000
|
|
8266
|
-
* @type {number}
|
|
8214
|
+
* @type {number | bigint}
|
|
8267
8215
|
* @memberof TradeApiQueryMarginAccountsOpenOco
|
|
8268
8216
|
*/
|
|
8269
|
-
readonly recvWindow?: number;
|
|
8217
|
+
readonly recvWindow?: number | bigint;
|
|
8270
8218
|
}
|
|
8271
8219
|
/**
|
|
8272
8220
|
* Request parameters for queryMarginAccountsOpenOrders operation in TradeApi.
|
|
@@ -8287,10 +8235,10 @@ interface QueryMarginAccountsOpenOrdersRequest {
|
|
|
8287
8235
|
readonly isIsolated?: string;
|
|
8288
8236
|
/**
|
|
8289
8237
|
* No more than 60000
|
|
8290
|
-
* @type {number}
|
|
8238
|
+
* @type {number | bigint}
|
|
8291
8239
|
* @memberof TradeApiQueryMarginAccountsOpenOrders
|
|
8292
8240
|
*/
|
|
8293
|
-
readonly recvWindow?: number;
|
|
8241
|
+
readonly recvWindow?: number | bigint;
|
|
8294
8242
|
}
|
|
8295
8243
|
/**
|
|
8296
8244
|
* Request parameters for queryMarginAccountsOrder operation in TradeApi.
|
|
@@ -8311,10 +8259,10 @@ interface QueryMarginAccountsOrderRequest {
|
|
|
8311
8259
|
readonly isIsolated?: string;
|
|
8312
8260
|
/**
|
|
8313
8261
|
*
|
|
8314
|
-
* @type {number}
|
|
8262
|
+
* @type {number | bigint}
|
|
8315
8263
|
* @memberof TradeApiQueryMarginAccountsOrder
|
|
8316
8264
|
*/
|
|
8317
|
-
readonly orderId?: number;
|
|
8265
|
+
readonly orderId?: number | bigint;
|
|
8318
8266
|
/**
|
|
8319
8267
|
*
|
|
8320
8268
|
* @type {string}
|
|
@@ -8323,10 +8271,10 @@ interface QueryMarginAccountsOrderRequest {
|
|
|
8323
8271
|
readonly origClientOrderId?: string;
|
|
8324
8272
|
/**
|
|
8325
8273
|
* No more than 60000
|
|
8326
|
-
* @type {number}
|
|
8274
|
+
* @type {number | bigint}
|
|
8327
8275
|
* @memberof TradeApiQueryMarginAccountsOrder
|
|
8328
8276
|
*/
|
|
8329
|
-
readonly recvWindow?: number;
|
|
8277
|
+
readonly recvWindow?: number | bigint;
|
|
8330
8278
|
}
|
|
8331
8279
|
/**
|
|
8332
8280
|
* Request parameters for queryMarginAccountsTradeList operation in TradeApi.
|
|
@@ -8347,40 +8295,40 @@ interface QueryMarginAccountsTradeListRequest {
|
|
|
8347
8295
|
readonly isIsolated?: string;
|
|
8348
8296
|
/**
|
|
8349
8297
|
*
|
|
8350
|
-
* @type {number}
|
|
8298
|
+
* @type {number | bigint}
|
|
8351
8299
|
* @memberof TradeApiQueryMarginAccountsTradeList
|
|
8352
8300
|
*/
|
|
8353
|
-
readonly orderId?: number;
|
|
8301
|
+
readonly orderId?: number | bigint;
|
|
8354
8302
|
/**
|
|
8355
8303
|
* 只支持查询最近90天的数据
|
|
8356
|
-
* @type {number}
|
|
8304
|
+
* @type {number | bigint}
|
|
8357
8305
|
* @memberof TradeApiQueryMarginAccountsTradeList
|
|
8358
8306
|
*/
|
|
8359
|
-
readonly startTime?: number;
|
|
8307
|
+
readonly startTime?: number | bigint;
|
|
8360
8308
|
/**
|
|
8361
8309
|
*
|
|
8362
|
-
* @type {number}
|
|
8310
|
+
* @type {number | bigint}
|
|
8363
8311
|
* @memberof TradeApiQueryMarginAccountsTradeList
|
|
8364
8312
|
*/
|
|
8365
|
-
readonly endTime?: number;
|
|
8313
|
+
readonly endTime?: number | bigint;
|
|
8366
8314
|
/**
|
|
8367
8315
|
* 如设置fromId, 将返回id > fromId的数据。否则将返回最新数据
|
|
8368
|
-
* @type {number}
|
|
8316
|
+
* @type {number | bigint}
|
|
8369
8317
|
* @memberof TradeApiQueryMarginAccountsTradeList
|
|
8370
8318
|
*/
|
|
8371
|
-
readonly fromId?: number;
|
|
8319
|
+
readonly fromId?: number | bigint;
|
|
8372
8320
|
/**
|
|
8373
8321
|
* Default Value: 500; Max Value: 1000
|
|
8374
|
-
* @type {number}
|
|
8322
|
+
* @type {number | bigint}
|
|
8375
8323
|
* @memberof TradeApiQueryMarginAccountsTradeList
|
|
8376
8324
|
*/
|
|
8377
|
-
readonly limit?: number;
|
|
8325
|
+
readonly limit?: number | bigint;
|
|
8378
8326
|
/**
|
|
8379
8327
|
* No more than 60000
|
|
8380
|
-
* @type {number}
|
|
8328
|
+
* @type {number | bigint}
|
|
8381
8329
|
* @memberof TradeApiQueryMarginAccountsTradeList
|
|
8382
8330
|
*/
|
|
8383
|
-
readonly recvWindow?: number;
|
|
8331
|
+
readonly recvWindow?: number | bigint;
|
|
8384
8332
|
}
|
|
8385
8333
|
/**
|
|
8386
8334
|
* Request parameters for querySpecialKey operation in TradeApi.
|
|
@@ -8395,10 +8343,10 @@ interface QuerySpecialKeyRequest {
|
|
|
8395
8343
|
readonly symbol?: string;
|
|
8396
8344
|
/**
|
|
8397
8345
|
* No more than 60000
|
|
8398
|
-
* @type {number}
|
|
8346
|
+
* @type {number | bigint}
|
|
8399
8347
|
* @memberof TradeApiQuerySpecialKey
|
|
8400
8348
|
*/
|
|
8401
|
-
readonly recvWindow?: number;
|
|
8349
|
+
readonly recvWindow?: number | bigint;
|
|
8402
8350
|
}
|
|
8403
8351
|
/**
|
|
8404
8352
|
* Request parameters for querySpecialKeyList operation in TradeApi.
|
|
@@ -8413,10 +8361,10 @@ interface QuerySpecialKeyListRequest {
|
|
|
8413
8361
|
readonly symbol?: string;
|
|
8414
8362
|
/**
|
|
8415
8363
|
* No more than 60000
|
|
8416
|
-
* @type {number}
|
|
8364
|
+
* @type {number | bigint}
|
|
8417
8365
|
* @memberof TradeApiQuerySpecialKeyList
|
|
8418
8366
|
*/
|
|
8419
|
-
readonly recvWindow?: number;
|
|
8367
|
+
readonly recvWindow?: number | bigint;
|
|
8420
8368
|
}
|
|
8421
8369
|
/**
|
|
8422
8370
|
* Request parameters for smallLiabilityExchange operation in TradeApi.
|
|
@@ -8431,10 +8379,10 @@ interface SmallLiabilityExchangeRequest {
|
|
|
8431
8379
|
readonly assetNames: Array<string>;
|
|
8432
8380
|
/**
|
|
8433
8381
|
* No more than 60000
|
|
8434
|
-
* @type {number}
|
|
8382
|
+
* @type {number | bigint}
|
|
8435
8383
|
* @memberof TradeApiSmallLiabilityExchange
|
|
8436
8384
|
*/
|
|
8437
|
-
readonly recvWindow?: number;
|
|
8385
|
+
readonly recvWindow?: number | bigint;
|
|
8438
8386
|
}
|
|
8439
8387
|
/**
|
|
8440
8388
|
* TradeApi - object-oriented interface
|
|
@@ -8884,261 +8832,6 @@ declare enum MarginAccountNewOtocoNewOrderRespTypeEnum {
|
|
|
8884
8832
|
FULL = "FULL"
|
|
8885
8833
|
}
|
|
8886
8834
|
|
|
8887
|
-
/**
|
|
8888
|
-
* Binance Margin Trading REST API
|
|
8889
|
-
*
|
|
8890
|
-
* OpenAPI Specification for the Binance Margin Trading REST API
|
|
8891
|
-
*
|
|
8892
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8893
|
-
*
|
|
8894
|
-
*
|
|
8895
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8896
|
-
* https://openapi-generator.tech
|
|
8897
|
-
* Do not edit the class manually.
|
|
8898
|
-
*/
|
|
8899
|
-
|
|
8900
|
-
/**
|
|
8901
|
-
* TradeDataStreamApi - interface
|
|
8902
|
-
* @interface TradeDataStreamApi
|
|
8903
|
-
*/
|
|
8904
|
-
interface TradeDataStreamApiInterface {
|
|
8905
|
-
/**
|
|
8906
|
-
* Close out a isolated margin user data stream.
|
|
8907
|
-
*
|
|
8908
|
-
* Weight: 3000
|
|
8909
|
-
*
|
|
8910
|
-
* @summary Close Isolated Margin User Data Stream (USER_STREAM)
|
|
8911
|
-
* @param {CloseIsolatedMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
8912
|
-
*
|
|
8913
|
-
* @deprecated
|
|
8914
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
8915
|
-
* @memberof TradeDataStreamApiInterface
|
|
8916
|
-
*/
|
|
8917
|
-
closeIsolatedMarginUserDataStream(requestParameters: CloseIsolatedMarginUserDataStreamRequest): Promise<RestApiResponse<void>>;
|
|
8918
|
-
/**
|
|
8919
|
-
* Close out a Margin user data stream.
|
|
8920
|
-
*
|
|
8921
|
-
* Weight: 3000
|
|
8922
|
-
*
|
|
8923
|
-
* @summary Close Margin User Data Stream (USER_STREAM)
|
|
8924
|
-
* @param {CloseMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
8925
|
-
*
|
|
8926
|
-
* @deprecated
|
|
8927
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
8928
|
-
* @memberof TradeDataStreamApiInterface
|
|
8929
|
-
*/
|
|
8930
|
-
closeMarginUserDataStream(requestParameters: CloseMarginUserDataStreamRequest): Promise<RestApiResponse<void>>;
|
|
8931
|
-
/**
|
|
8932
|
-
* Keepalive an isolated margin user data stream to prevent a time out.
|
|
8933
|
-
*
|
|
8934
|
-
* Weight: 1
|
|
8935
|
-
*
|
|
8936
|
-
* @summary Keepalive Isolated Margin User Data Stream (USER_STREAM)
|
|
8937
|
-
* @param {KeepaliveIsolatedMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
8938
|
-
*
|
|
8939
|
-
* @deprecated
|
|
8940
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
8941
|
-
* @memberof TradeDataStreamApiInterface
|
|
8942
|
-
*/
|
|
8943
|
-
keepaliveIsolatedMarginUserDataStream(requestParameters: KeepaliveIsolatedMarginUserDataStreamRequest): Promise<RestApiResponse<void>>;
|
|
8944
|
-
/**
|
|
8945
|
-
* Keepalive a margin user data stream to prevent a time out.
|
|
8946
|
-
*
|
|
8947
|
-
* Weight: 1
|
|
8948
|
-
*
|
|
8949
|
-
* @summary Keepalive Margin User Data Stream (USER_STREAM)
|
|
8950
|
-
* @param {KeepaliveMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
8951
|
-
*
|
|
8952
|
-
* @deprecated
|
|
8953
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
8954
|
-
* @memberof TradeDataStreamApiInterface
|
|
8955
|
-
*/
|
|
8956
|
-
keepaliveMarginUserDataStream(requestParameters: KeepaliveMarginUserDataStreamRequest): Promise<RestApiResponse<void>>;
|
|
8957
|
-
/**
|
|
8958
|
-
* Start a new isolated margin user data stream. The stream will close after 60 minutes unless a keepalive is sent. If the account has an active listenKey, that listenKey will be returned and its validity will be extended for 60 minutes.
|
|
8959
|
-
*
|
|
8960
|
-
* Weight: 1
|
|
8961
|
-
*
|
|
8962
|
-
* @summary Start Isolated Margin User Data Stream (USER_STREAM)
|
|
8963
|
-
* @param {StartIsolatedMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
8964
|
-
*
|
|
8965
|
-
* @deprecated
|
|
8966
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
8967
|
-
* @memberof TradeDataStreamApiInterface
|
|
8968
|
-
*/
|
|
8969
|
-
startIsolatedMarginUserDataStream(requestParameters: StartIsolatedMarginUserDataStreamRequest): Promise<RestApiResponse<StartIsolatedMarginUserDataStreamResponse>>;
|
|
8970
|
-
/**
|
|
8971
|
-
* Start a new margin user data stream. The stream will close after 60 minutes unless a keepalive is sent. If the account has an active listenKey, that listenKey will be returned and its validity will be extended for 60 minutes.
|
|
8972
|
-
*
|
|
8973
|
-
* Weight: 1
|
|
8974
|
-
*
|
|
8975
|
-
* @summary Start Margin User Data Stream (USER_STREAM)
|
|
8976
|
-
*
|
|
8977
|
-
* @deprecated
|
|
8978
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
8979
|
-
* @memberof TradeDataStreamApiInterface
|
|
8980
|
-
*/
|
|
8981
|
-
startMarginUserDataStream(): Promise<RestApiResponse<StartMarginUserDataStreamResponse>>;
|
|
8982
|
-
}
|
|
8983
|
-
/**
|
|
8984
|
-
* Request parameters for closeIsolatedMarginUserDataStream operation in TradeDataStreamApi.
|
|
8985
|
-
* @interface CloseIsolatedMarginUserDataStreamRequest
|
|
8986
|
-
*/
|
|
8987
|
-
interface CloseIsolatedMarginUserDataStreamRequest {
|
|
8988
|
-
/**
|
|
8989
|
-
*
|
|
8990
|
-
* @type {string}
|
|
8991
|
-
* @memberof TradeDataStreamApiCloseIsolatedMarginUserDataStream
|
|
8992
|
-
*/
|
|
8993
|
-
readonly symbol: string;
|
|
8994
|
-
/**
|
|
8995
|
-
*
|
|
8996
|
-
* @type {string}
|
|
8997
|
-
* @memberof TradeDataStreamApiCloseIsolatedMarginUserDataStream
|
|
8998
|
-
*/
|
|
8999
|
-
readonly listenkey: string;
|
|
9000
|
-
}
|
|
9001
|
-
/**
|
|
9002
|
-
* Request parameters for closeMarginUserDataStream operation in TradeDataStreamApi.
|
|
9003
|
-
* @interface CloseMarginUserDataStreamRequest
|
|
9004
|
-
*/
|
|
9005
|
-
interface CloseMarginUserDataStreamRequest {
|
|
9006
|
-
/**
|
|
9007
|
-
*
|
|
9008
|
-
* @type {string}
|
|
9009
|
-
* @memberof TradeDataStreamApiCloseMarginUserDataStream
|
|
9010
|
-
*/
|
|
9011
|
-
readonly listenkey: string;
|
|
9012
|
-
}
|
|
9013
|
-
/**
|
|
9014
|
-
* Request parameters for keepaliveIsolatedMarginUserDataStream operation in TradeDataStreamApi.
|
|
9015
|
-
* @interface KeepaliveIsolatedMarginUserDataStreamRequest
|
|
9016
|
-
*/
|
|
9017
|
-
interface KeepaliveIsolatedMarginUserDataStreamRequest {
|
|
9018
|
-
/**
|
|
9019
|
-
*
|
|
9020
|
-
* @type {string}
|
|
9021
|
-
* @memberof TradeDataStreamApiKeepaliveIsolatedMarginUserDataStream
|
|
9022
|
-
*/
|
|
9023
|
-
readonly symbol: string;
|
|
9024
|
-
/**
|
|
9025
|
-
*
|
|
9026
|
-
* @type {string}
|
|
9027
|
-
* @memberof TradeDataStreamApiKeepaliveIsolatedMarginUserDataStream
|
|
9028
|
-
*/
|
|
9029
|
-
readonly listenKey: string;
|
|
9030
|
-
}
|
|
9031
|
-
/**
|
|
9032
|
-
* Request parameters for keepaliveMarginUserDataStream operation in TradeDataStreamApi.
|
|
9033
|
-
* @interface KeepaliveMarginUserDataStreamRequest
|
|
9034
|
-
*/
|
|
9035
|
-
interface KeepaliveMarginUserDataStreamRequest {
|
|
9036
|
-
/**
|
|
9037
|
-
*
|
|
9038
|
-
* @type {string}
|
|
9039
|
-
* @memberof TradeDataStreamApiKeepaliveMarginUserDataStream
|
|
9040
|
-
*/
|
|
9041
|
-
readonly listenKey: string;
|
|
9042
|
-
}
|
|
9043
|
-
/**
|
|
9044
|
-
* Request parameters for startIsolatedMarginUserDataStream operation in TradeDataStreamApi.
|
|
9045
|
-
* @interface StartIsolatedMarginUserDataStreamRequest
|
|
9046
|
-
*/
|
|
9047
|
-
interface StartIsolatedMarginUserDataStreamRequest {
|
|
9048
|
-
/**
|
|
9049
|
-
*
|
|
9050
|
-
* @type {string}
|
|
9051
|
-
* @memberof TradeDataStreamApiStartIsolatedMarginUserDataStream
|
|
9052
|
-
*/
|
|
9053
|
-
readonly symbol: string;
|
|
9054
|
-
}
|
|
9055
|
-
/**
|
|
9056
|
-
* TradeDataStreamApi - object-oriented interface
|
|
9057
|
-
* @class TradeDataStreamApi
|
|
9058
|
-
*/
|
|
9059
|
-
declare class TradeDataStreamApi implements TradeDataStreamApiInterface {
|
|
9060
|
-
private readonly configuration;
|
|
9061
|
-
private localVarAxiosParamCreator;
|
|
9062
|
-
constructor(configuration: ConfigurationRestAPI);
|
|
9063
|
-
/**
|
|
9064
|
-
* Close out a isolated margin user data stream.
|
|
9065
|
-
*
|
|
9066
|
-
* Weight: 3000
|
|
9067
|
-
*
|
|
9068
|
-
* @summary Close Isolated Margin User Data Stream (USER_STREAM)
|
|
9069
|
-
* @param {CloseIsolatedMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
9070
|
-
* @returns {Promise<RestApiResponse<void>>}
|
|
9071
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
9072
|
-
* @memberof TradeDataStreamApi
|
|
9073
|
-
* @see {@link https://developers.binance.com/docs/margin_trading/trade-data-stream/Close-Isolated-Margin-User-Data-Stream Binance API Documentation}
|
|
9074
|
-
*/
|
|
9075
|
-
closeIsolatedMarginUserDataStream(requestParameters: CloseIsolatedMarginUserDataStreamRequest): Promise<RestApiResponse<void>>;
|
|
9076
|
-
/**
|
|
9077
|
-
* Close out a Margin user data stream.
|
|
9078
|
-
*
|
|
9079
|
-
* Weight: 3000
|
|
9080
|
-
*
|
|
9081
|
-
* @summary Close Margin User Data Stream (USER_STREAM)
|
|
9082
|
-
* @param {CloseMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
9083
|
-
* @returns {Promise<RestApiResponse<void>>}
|
|
9084
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
9085
|
-
* @memberof TradeDataStreamApi
|
|
9086
|
-
* @see {@link https://developers.binance.com/docs/margin_trading/trade-data-stream/Close-Margin-User-Data-Stream Binance API Documentation}
|
|
9087
|
-
*/
|
|
9088
|
-
closeMarginUserDataStream(requestParameters: CloseMarginUserDataStreamRequest): Promise<RestApiResponse<void>>;
|
|
9089
|
-
/**
|
|
9090
|
-
* Keepalive an isolated margin user data stream to prevent a time out.
|
|
9091
|
-
*
|
|
9092
|
-
* Weight: 1
|
|
9093
|
-
*
|
|
9094
|
-
* @summary Keepalive Isolated Margin User Data Stream (USER_STREAM)
|
|
9095
|
-
* @param {KeepaliveIsolatedMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
9096
|
-
* @returns {Promise<RestApiResponse<void>>}
|
|
9097
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
9098
|
-
* @memberof TradeDataStreamApi
|
|
9099
|
-
* @see {@link https://developers.binance.com/docs/margin_trading/trade-data-stream/Keepalive-Isolated-Margin-User-Data-Stream Binance API Documentation}
|
|
9100
|
-
*/
|
|
9101
|
-
keepaliveIsolatedMarginUserDataStream(requestParameters: KeepaliveIsolatedMarginUserDataStreamRequest): Promise<RestApiResponse<void>>;
|
|
9102
|
-
/**
|
|
9103
|
-
* Keepalive a margin user data stream to prevent a time out.
|
|
9104
|
-
*
|
|
9105
|
-
* Weight: 1
|
|
9106
|
-
*
|
|
9107
|
-
* @summary Keepalive Margin User Data Stream (USER_STREAM)
|
|
9108
|
-
* @param {KeepaliveMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
9109
|
-
* @returns {Promise<RestApiResponse<void>>}
|
|
9110
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
9111
|
-
* @memberof TradeDataStreamApi
|
|
9112
|
-
* @see {@link https://developers.binance.com/docs/margin_trading/trade-data-stream/Keepalive-Margin-User-Data-Stream Binance API Documentation}
|
|
9113
|
-
*/
|
|
9114
|
-
keepaliveMarginUserDataStream(requestParameters: KeepaliveMarginUserDataStreamRequest): Promise<RestApiResponse<void>>;
|
|
9115
|
-
/**
|
|
9116
|
-
* Start a new isolated margin user data stream. The stream will close after 60 minutes unless a keepalive is sent. If the account has an active listenKey, that listenKey will be returned and its validity will be extended for 60 minutes.
|
|
9117
|
-
*
|
|
9118
|
-
* Weight: 1
|
|
9119
|
-
*
|
|
9120
|
-
* @summary Start Isolated Margin User Data Stream (USER_STREAM)
|
|
9121
|
-
* @param {StartIsolatedMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
9122
|
-
* @returns {Promise<RestApiResponse<StartIsolatedMarginUserDataStreamResponse>>}
|
|
9123
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
9124
|
-
* @memberof TradeDataStreamApi
|
|
9125
|
-
* @see {@link https://developers.binance.com/docs/margin_trading/trade-data-stream/Start-Isolated-Margin-User-Data-Stream Binance API Documentation}
|
|
9126
|
-
*/
|
|
9127
|
-
startIsolatedMarginUserDataStream(requestParameters: StartIsolatedMarginUserDataStreamRequest): Promise<RestApiResponse<StartIsolatedMarginUserDataStreamResponse>>;
|
|
9128
|
-
/**
|
|
9129
|
-
* Start a new margin user data stream. The stream will close after 60 minutes unless a keepalive is sent. If the account has an active listenKey, that listenKey will be returned and its validity will be extended for 60 minutes.
|
|
9130
|
-
*
|
|
9131
|
-
* Weight: 1
|
|
9132
|
-
*
|
|
9133
|
-
* @summary Start Margin User Data Stream (USER_STREAM)
|
|
9134
|
-
* @returns {Promise<RestApiResponse<StartMarginUserDataStreamResponse>>}
|
|
9135
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
9136
|
-
* @memberof TradeDataStreamApi
|
|
9137
|
-
* @see {@link https://developers.binance.com/docs/margin_trading/trade-data-stream/Start-Margin-User-Data-Stream Binance API Documentation}
|
|
9138
|
-
*/
|
|
9139
|
-
startMarginUserDataStream(): Promise<RestApiResponse<StartMarginUserDataStreamResponse>>;
|
|
9140
|
-
}
|
|
9141
|
-
|
|
9142
8835
|
/**
|
|
9143
8836
|
* Binance Margin Trading REST API
|
|
9144
8837
|
*
|
|
@@ -9207,28 +8900,28 @@ interface GetCrossMarginTransferHistoryRequest {
|
|
|
9207
8900
|
readonly type?: string;
|
|
9208
8901
|
/**
|
|
9209
8902
|
* 只支持查询最近90天的数据
|
|
9210
|
-
* @type {number}
|
|
8903
|
+
* @type {number | bigint}
|
|
9211
8904
|
* @memberof TransferApiGetCrossMarginTransferHistory
|
|
9212
8905
|
*/
|
|
9213
|
-
readonly startTime?: number;
|
|
8906
|
+
readonly startTime?: number | bigint;
|
|
9214
8907
|
/**
|
|
9215
8908
|
*
|
|
9216
|
-
* @type {number}
|
|
8909
|
+
* @type {number | bigint}
|
|
9217
8910
|
* @memberof TransferApiGetCrossMarginTransferHistory
|
|
9218
8911
|
*/
|
|
9219
|
-
readonly endTime?: number;
|
|
8912
|
+
readonly endTime?: number | bigint;
|
|
9220
8913
|
/**
|
|
9221
8914
|
* Currently querying page. Start from 1. Default:1
|
|
9222
|
-
* @type {number}
|
|
8915
|
+
* @type {number | bigint}
|
|
9223
8916
|
* @memberof TransferApiGetCrossMarginTransferHistory
|
|
9224
8917
|
*/
|
|
9225
|
-
readonly current?: number;
|
|
8918
|
+
readonly current?: number | bigint;
|
|
9226
8919
|
/**
|
|
9227
8920
|
* Default:10 Max:100
|
|
9228
|
-
* @type {number}
|
|
8921
|
+
* @type {number | bigint}
|
|
9229
8922
|
* @memberof TransferApiGetCrossMarginTransferHistory
|
|
9230
8923
|
*/
|
|
9231
|
-
readonly size?: number;
|
|
8924
|
+
readonly size?: number | bigint;
|
|
9232
8925
|
/**
|
|
9233
8926
|
* isolated symbol
|
|
9234
8927
|
* @type {string}
|
|
@@ -9237,10 +8930,10 @@ interface GetCrossMarginTransferHistoryRequest {
|
|
|
9237
8930
|
readonly isolatedSymbol?: string;
|
|
9238
8931
|
/**
|
|
9239
8932
|
* No more than 60000
|
|
9240
|
-
* @type {number}
|
|
8933
|
+
* @type {number | bigint}
|
|
9241
8934
|
* @memberof TransferApiGetCrossMarginTransferHistory
|
|
9242
8935
|
*/
|
|
9243
|
-
readonly recvWindow?: number;
|
|
8936
|
+
readonly recvWindow?: number | bigint;
|
|
9244
8937
|
}
|
|
9245
8938
|
/**
|
|
9246
8939
|
* Request parameters for queryMaxTransferOutAmount operation in TransferApi.
|
|
@@ -9261,10 +8954,10 @@ interface QueryMaxTransferOutAmountRequest {
|
|
|
9261
8954
|
readonly isolatedSymbol?: string;
|
|
9262
8955
|
/**
|
|
9263
8956
|
* No more than 60000
|
|
9264
|
-
* @type {number}
|
|
8957
|
+
* @type {number | bigint}
|
|
9265
8958
|
* @memberof TransferApiQueryMaxTransferOutAmount
|
|
9266
8959
|
*/
|
|
9267
|
-
readonly recvWindow?: number;
|
|
8960
|
+
readonly recvWindow?: number | bigint;
|
|
9268
8961
|
}
|
|
9269
8962
|
/**
|
|
9270
8963
|
* TransferApi - object-oriented interface
|
|
@@ -9328,7 +9021,6 @@ declare class RestAPI {
|
|
|
9328
9021
|
private marketDataApi;
|
|
9329
9022
|
private riskDataStreamApi;
|
|
9330
9023
|
private tradeApi;
|
|
9331
|
-
private tradeDataStreamApi;
|
|
9332
9024
|
private transferApi;
|
|
9333
9025
|
constructor(configuration: ConfigurationRestAPI);
|
|
9334
9026
|
/**
|
|
@@ -10184,83 +9876,6 @@ declare class RestAPI {
|
|
|
10184
9876
|
* @see {@link https://developers.binance.com/docs/margin_trading/trade/Small-Liability-Exchange Binance API Documentation}
|
|
10185
9877
|
*/
|
|
10186
9878
|
smallLiabilityExchange(requestParameters: SmallLiabilityExchangeRequest): Promise<RestApiResponse<void>>;
|
|
10187
|
-
/**
|
|
10188
|
-
* Close out a isolated margin user data stream.
|
|
10189
|
-
*
|
|
10190
|
-
* Weight: 3000
|
|
10191
|
-
*
|
|
10192
|
-
* @summary Close Isolated Margin User Data Stream (USER_STREAM)
|
|
10193
|
-
* @param {CloseIsolatedMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
10194
|
-
* @deprecated
|
|
10195
|
-
* @returns {Promise<RestApiResponse<void>>}
|
|
10196
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
10197
|
-
* @see {@link https://developers.binance.com/docs/margin_trading/trade-data-stream/Close-Isolated-Margin-User-Data-Stream Binance API Documentation}
|
|
10198
|
-
*/
|
|
10199
|
-
closeIsolatedMarginUserDataStream(requestParameters: CloseIsolatedMarginUserDataStreamRequest): Promise<RestApiResponse<void>>;
|
|
10200
|
-
/**
|
|
10201
|
-
* Close out a Margin user data stream.
|
|
10202
|
-
*
|
|
10203
|
-
* Weight: 3000
|
|
10204
|
-
*
|
|
10205
|
-
* @summary Close Margin User Data Stream (USER_STREAM)
|
|
10206
|
-
* @param {CloseMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
10207
|
-
* @deprecated
|
|
10208
|
-
* @returns {Promise<RestApiResponse<void>>}
|
|
10209
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
10210
|
-
* @see {@link https://developers.binance.com/docs/margin_trading/trade-data-stream/Close-Margin-User-Data-Stream Binance API Documentation}
|
|
10211
|
-
*/
|
|
10212
|
-
closeMarginUserDataStream(requestParameters: CloseMarginUserDataStreamRequest): Promise<RestApiResponse<void>>;
|
|
10213
|
-
/**
|
|
10214
|
-
* Keepalive an isolated margin user data stream to prevent a time out.
|
|
10215
|
-
*
|
|
10216
|
-
* Weight: 1
|
|
10217
|
-
*
|
|
10218
|
-
* @summary Keepalive Isolated Margin User Data Stream (USER_STREAM)
|
|
10219
|
-
* @param {KeepaliveIsolatedMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
10220
|
-
* @deprecated
|
|
10221
|
-
* @returns {Promise<RestApiResponse<void>>}
|
|
10222
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
10223
|
-
* @see {@link https://developers.binance.com/docs/margin_trading/trade-data-stream/Keepalive-Isolated-Margin-User-Data-Stream Binance API Documentation}
|
|
10224
|
-
*/
|
|
10225
|
-
keepaliveIsolatedMarginUserDataStream(requestParameters: KeepaliveIsolatedMarginUserDataStreamRequest): Promise<RestApiResponse<void>>;
|
|
10226
|
-
/**
|
|
10227
|
-
* Keepalive a margin user data stream to prevent a time out.
|
|
10228
|
-
*
|
|
10229
|
-
* Weight: 1
|
|
10230
|
-
*
|
|
10231
|
-
* @summary Keepalive Margin User Data Stream (USER_STREAM)
|
|
10232
|
-
* @param {KeepaliveMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
10233
|
-
* @deprecated
|
|
10234
|
-
* @returns {Promise<RestApiResponse<void>>}
|
|
10235
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
10236
|
-
* @see {@link https://developers.binance.com/docs/margin_trading/trade-data-stream/Keepalive-Margin-User-Data-Stream Binance API Documentation}
|
|
10237
|
-
*/
|
|
10238
|
-
keepaliveMarginUserDataStream(requestParameters: KeepaliveMarginUserDataStreamRequest): Promise<RestApiResponse<void>>;
|
|
10239
|
-
/**
|
|
10240
|
-
* Start a new isolated margin user data stream. The stream will close after 60 minutes unless a keepalive is sent. If the account has an active listenKey, that listenKey will be returned and its validity will be extended for 60 minutes.
|
|
10241
|
-
*
|
|
10242
|
-
* Weight: 1
|
|
10243
|
-
*
|
|
10244
|
-
* @summary Start Isolated Margin User Data Stream (USER_STREAM)
|
|
10245
|
-
* @param {StartIsolatedMarginUserDataStreamRequest} requestParameters Request parameters.
|
|
10246
|
-
* @deprecated
|
|
10247
|
-
* @returns {Promise<RestApiResponse<StartIsolatedMarginUserDataStreamResponse>>}
|
|
10248
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
10249
|
-
* @see {@link https://developers.binance.com/docs/margin_trading/trade-data-stream/Start-Isolated-Margin-User-Data-Stream Binance API Documentation}
|
|
10250
|
-
*/
|
|
10251
|
-
startIsolatedMarginUserDataStream(requestParameters: StartIsolatedMarginUserDataStreamRequest): Promise<RestApiResponse<StartIsolatedMarginUserDataStreamResponse>>;
|
|
10252
|
-
/**
|
|
10253
|
-
* Start a new margin user data stream. The stream will close after 60 minutes unless a keepalive is sent. If the account has an active listenKey, that listenKey will be returned and its validity will be extended for 60 minutes.
|
|
10254
|
-
*
|
|
10255
|
-
* Weight: 1
|
|
10256
|
-
*
|
|
10257
|
-
* @summary Start Margin User Data Stream (USER_STREAM)
|
|
10258
|
-
* @deprecated
|
|
10259
|
-
* @returns {Promise<RestApiResponse<StartMarginUserDataStreamResponse>>}
|
|
10260
|
-
* @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
|
|
10261
|
-
* @see {@link https://developers.binance.com/docs/margin_trading/trade-data-stream/Start-Margin-User-Data-Stream Binance API Documentation}
|
|
10262
|
-
*/
|
|
10263
|
-
startMarginUserDataStream(): Promise<RestApiResponse<StartMarginUserDataStreamResponse>>;
|
|
10264
9879
|
/**
|
|
10265
9880
|
* Get Cross Margin Transfer History
|
|
10266
9881
|
*
|
|
@@ -10316,8 +9931,6 @@ type index$1_AdjustCrossMarginMaxLeverageResponse = AdjustCrossMarginMaxLeverage
|
|
|
10316
9931
|
type index$1_BorrowRepayApi = BorrowRepayApi;
|
|
10317
9932
|
declare const index$1_BorrowRepayApi: typeof BorrowRepayApi;
|
|
10318
9933
|
type index$1_BorrowRepayApiInterface = BorrowRepayApiInterface;
|
|
10319
|
-
type index$1_CloseIsolatedMarginUserDataStreamRequest = CloseIsolatedMarginUserDataStreamRequest;
|
|
10320
|
-
type index$1_CloseMarginUserDataStreamRequest = CloseMarginUserDataStreamRequest;
|
|
10321
9934
|
type index$1_CreateSpecialKeyRequest = CreateSpecialKeyRequest;
|
|
10322
9935
|
type index$1_CreateSpecialKeyResponse = CreateSpecialKeyResponse;
|
|
10323
9936
|
type index$1_CrossMarginCollateralRatioResponse = CrossMarginCollateralRatioResponse;
|
|
@@ -10367,8 +9980,6 @@ type index$1_GetSmallLiabilityExchangeHistoryResponse = GetSmallLiabilityExchang
|
|
|
10367
9980
|
type index$1_GetSmallLiabilityExchangeHistoryResponseRowsInner = GetSmallLiabilityExchangeHistoryResponseRowsInner;
|
|
10368
9981
|
type index$1_GetSummaryOfMarginAccountRequest = GetSummaryOfMarginAccountRequest;
|
|
10369
9982
|
type index$1_GetSummaryOfMarginAccountResponse = GetSummaryOfMarginAccountResponse;
|
|
10370
|
-
type index$1_KeepaliveIsolatedMarginUserDataStreamRequest = KeepaliveIsolatedMarginUserDataStreamRequest;
|
|
10371
|
-
type index$1_KeepaliveMarginUserDataStreamRequest = KeepaliveMarginUserDataStreamRequest;
|
|
10372
9983
|
type index$1_KeepaliveUserDataStreamRequest = KeepaliveUserDataStreamRequest;
|
|
10373
9984
|
type index$1_MarginAccountBorrowRepayRequest = MarginAccountBorrowRepayRequest;
|
|
10374
9985
|
type index$1_MarginAccountBorrowRepayResponse = MarginAccountBorrowRepayResponse;
|
|
@@ -10494,21 +10105,15 @@ type index$1_RiskDataStreamApi = RiskDataStreamApi;
|
|
|
10494
10105
|
declare const index$1_RiskDataStreamApi: typeof RiskDataStreamApi;
|
|
10495
10106
|
type index$1_RiskDataStreamApiInterface = RiskDataStreamApiInterface;
|
|
10496
10107
|
type index$1_SmallLiabilityExchangeRequest = SmallLiabilityExchangeRequest;
|
|
10497
|
-
type index$1_StartIsolatedMarginUserDataStreamRequest = StartIsolatedMarginUserDataStreamRequest;
|
|
10498
|
-
type index$1_StartIsolatedMarginUserDataStreamResponse = StartIsolatedMarginUserDataStreamResponse;
|
|
10499
|
-
type index$1_StartMarginUserDataStreamResponse = StartMarginUserDataStreamResponse;
|
|
10500
10108
|
type index$1_StartUserDataStreamResponse = StartUserDataStreamResponse;
|
|
10501
10109
|
type index$1_TradeApi = TradeApi;
|
|
10502
10110
|
declare const index$1_TradeApi: typeof TradeApi;
|
|
10503
10111
|
type index$1_TradeApiInterface = TradeApiInterface;
|
|
10504
|
-
type index$1_TradeDataStreamApi = TradeDataStreamApi;
|
|
10505
|
-
declare const index$1_TradeDataStreamApi: typeof TradeDataStreamApi;
|
|
10506
|
-
type index$1_TradeDataStreamApiInterface = TradeDataStreamApiInterface;
|
|
10507
10112
|
type index$1_TransferApi = TransferApi;
|
|
10508
10113
|
declare const index$1_TransferApi: typeof TransferApi;
|
|
10509
10114
|
type index$1_TransferApiInterface = TransferApiInterface;
|
|
10510
10115
|
declare namespace index$1 {
|
|
10511
|
-
export { index$1_AccountApi as AccountApi, type index$1_AccountApiInterface as AccountApiInterface, type index$1_AdjustCrossMarginMaxLeverageRequest as AdjustCrossMarginMaxLeverageRequest, type index$1_AdjustCrossMarginMaxLeverageResponse as AdjustCrossMarginMaxLeverageResponse, index$1_BorrowRepayApi as BorrowRepayApi, type index$1_BorrowRepayApiInterface as BorrowRepayApiInterface, type index$1_CloseIsolatedMarginUserDataStreamRequest as CloseIsolatedMarginUserDataStreamRequest, type index$1_CloseMarginUserDataStreamRequest as CloseMarginUserDataStreamRequest, type index$1_CreateSpecialKeyRequest as CreateSpecialKeyRequest, type index$1_CreateSpecialKeyResponse as CreateSpecialKeyResponse, type index$1_CrossMarginCollateralRatioResponse as CrossMarginCollateralRatioResponse, type index$1_CrossMarginCollateralRatioResponseInner as CrossMarginCollateralRatioResponseInner, type index$1_CrossMarginCollateralRatioResponseInnerCollateralsInner as CrossMarginCollateralRatioResponseInnerCollateralsInner, type index$1_DeleteSpecialKeyRequest as DeleteSpecialKeyRequest, type index$1_DisableIsolatedMarginAccountRequest as DisableIsolatedMarginAccountRequest, type index$1_DisableIsolatedMarginAccountResponse as DisableIsolatedMarginAccountResponse, type index$1_EditIpForSpecialKeyRequest as EditIpForSpecialKeyRequest, type index$1_EnableIsolatedMarginAccountRequest as EnableIsolatedMarginAccountRequest, type index$1_EnableIsolatedMarginAccountResponse as EnableIsolatedMarginAccountResponse, type index$1_GetAllCrossMarginPairsRequest as GetAllCrossMarginPairsRequest, type index$1_GetAllCrossMarginPairsResponse as GetAllCrossMarginPairsResponse, type index$1_GetAllCrossMarginPairsResponseInner as GetAllCrossMarginPairsResponseInner, type index$1_GetAllIsolatedMarginSymbolRequest as GetAllIsolatedMarginSymbolRequest, type index$1_GetAllIsolatedMarginSymbolResponse as GetAllIsolatedMarginSymbolResponse, type index$1_GetAllIsolatedMarginSymbolResponseInner as GetAllIsolatedMarginSymbolResponseInner, type index$1_GetAllMarginAssetsRequest as GetAllMarginAssetsRequest, type index$1_GetAllMarginAssetsResponse as GetAllMarginAssetsResponse, type index$1_GetAllMarginAssetsResponseInner as GetAllMarginAssetsResponseInner, type index$1_GetBnbBurnStatusRequest as GetBnbBurnStatusRequest, type index$1_GetBnbBurnStatusResponse as GetBnbBurnStatusResponse, type index$1_GetCrossMarginTransferHistoryRequest as GetCrossMarginTransferHistoryRequest, type index$1_GetCrossMarginTransferHistoryResponse as GetCrossMarginTransferHistoryResponse, type index$1_GetCrossMarginTransferHistoryResponseRowsInner as GetCrossMarginTransferHistoryResponseRowsInner, type index$1_GetDelistScheduleRequest as GetDelistScheduleRequest, type index$1_GetDelistScheduleResponse as GetDelistScheduleResponse, type index$1_GetDelistScheduleResponseInner as GetDelistScheduleResponseInner, type index$1_GetForceLiquidationRecordRequest as GetForceLiquidationRecordRequest, type index$1_GetForceLiquidationRecordResponse as GetForceLiquidationRecordResponse, type index$1_GetForceLiquidationRecordResponseRowsInner as GetForceLiquidationRecordResponseRowsInner, type index$1_GetFutureHourlyInterestRateRequest as GetFutureHourlyInterestRateRequest, type index$1_GetFutureHourlyInterestRateResponse as GetFutureHourlyInterestRateResponse, type index$1_GetFutureHourlyInterestRateResponseInner as GetFutureHourlyInterestRateResponseInner, type index$1_GetInterestHistoryRequest as GetInterestHistoryRequest, type index$1_GetInterestHistoryResponse as GetInterestHistoryResponse, type index$1_GetInterestHistoryResponseRowsInner as GetInterestHistoryResponseRowsInner, type index$1_GetLimitPricePairsResponse as GetLimitPricePairsResponse, type index$1_GetListScheduleRequest as GetListScheduleRequest, type index$1_GetListScheduleResponse as GetListScheduleResponse, type index$1_GetListScheduleResponseInner as GetListScheduleResponseInner, type index$1_GetSmallLiabilityExchangeCoinListRequest as GetSmallLiabilityExchangeCoinListRequest, type index$1_GetSmallLiabilityExchangeCoinListResponse as GetSmallLiabilityExchangeCoinListResponse, type index$1_GetSmallLiabilityExchangeCoinListResponseInner as GetSmallLiabilityExchangeCoinListResponseInner, type index$1_GetSmallLiabilityExchangeHistoryRequest as GetSmallLiabilityExchangeHistoryRequest, type index$1_GetSmallLiabilityExchangeHistoryResponse as GetSmallLiabilityExchangeHistoryResponse, type index$1_GetSmallLiabilityExchangeHistoryResponseRowsInner as GetSmallLiabilityExchangeHistoryResponseRowsInner, type index$1_GetSummaryOfMarginAccountRequest as GetSummaryOfMarginAccountRequest, type index$1_GetSummaryOfMarginAccountResponse as GetSummaryOfMarginAccountResponse, type index$1_KeepaliveIsolatedMarginUserDataStreamRequest as KeepaliveIsolatedMarginUserDataStreamRequest, type index$1_KeepaliveMarginUserDataStreamRequest as KeepaliveMarginUserDataStreamRequest, type index$1_KeepaliveUserDataStreamRequest as KeepaliveUserDataStreamRequest, type index$1_MarginAccountBorrowRepayRequest as MarginAccountBorrowRepayRequest, type index$1_MarginAccountBorrowRepayResponse as MarginAccountBorrowRepayResponse, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolRequest as MarginAccountCancelAllOpenOrdersOnASymbolRequest, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponse as MarginAccountCancelAllOpenOrdersOnASymbolResponse, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInner, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrderReportsInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrderReportsInner, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrdersInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrdersInner, type index$1_MarginAccountCancelOcoRequest as MarginAccountCancelOcoRequest, type index$1_MarginAccountCancelOcoResponse as MarginAccountCancelOcoResponse, type index$1_MarginAccountCancelOcoResponseOrderReportsInner as MarginAccountCancelOcoResponseOrderReportsInner, type index$1_MarginAccountCancelOcoResponseOrdersInner as MarginAccountCancelOcoResponseOrdersInner, type index$1_MarginAccountCancelOrderRequest as MarginAccountCancelOrderRequest, type index$1_MarginAccountCancelOrderResponse as MarginAccountCancelOrderResponse, index$1_MarginAccountNewOcoNewOrderRespTypeEnum as MarginAccountNewOcoNewOrderRespTypeEnum, type index$1_MarginAccountNewOcoRequest as MarginAccountNewOcoRequest, type index$1_MarginAccountNewOcoResponse as MarginAccountNewOcoResponse, type index$1_MarginAccountNewOcoResponseOrderReportsInner as MarginAccountNewOcoResponseOrderReportsInner, type index$1_MarginAccountNewOcoResponseOrdersInner as MarginAccountNewOcoResponseOrdersInner, index$1_MarginAccountNewOcoSideEnum as MarginAccountNewOcoSideEnum, index$1_MarginAccountNewOrderNewOrderRespTypeEnum as MarginAccountNewOrderNewOrderRespTypeEnum, type index$1_MarginAccountNewOrderRequest as MarginAccountNewOrderRequest, type index$1_MarginAccountNewOrderResponse as MarginAccountNewOrderResponse, type index$1_MarginAccountNewOrderResponseFillsInner as MarginAccountNewOrderResponseFillsInner, index$1_MarginAccountNewOrderSideEnum as MarginAccountNewOrderSideEnum, index$1_MarginAccountNewOrderTimeInForceEnum as MarginAccountNewOrderTimeInForceEnum, index$1_MarginAccountNewOtoNewOrderRespTypeEnum as MarginAccountNewOtoNewOrderRespTypeEnum, type index$1_MarginAccountNewOtoRequest as MarginAccountNewOtoRequest, type index$1_MarginAccountNewOtoResponse as MarginAccountNewOtoResponse, type index$1_MarginAccountNewOtoResponseOrderReportsInner as MarginAccountNewOtoResponseOrderReportsInner, type index$1_MarginAccountNewOtoResponseOrdersInner as MarginAccountNewOtoResponseOrdersInner, index$1_MarginAccountNewOtocoNewOrderRespTypeEnum as MarginAccountNewOtocoNewOrderRespTypeEnum, type index$1_MarginAccountNewOtocoRequest as MarginAccountNewOtocoRequest, type index$1_MarginAccountNewOtocoResponse as MarginAccountNewOtocoResponse, type index$1_MarginAccountNewOtocoResponseOrderReportsInner as MarginAccountNewOtocoResponseOrderReportsInner, type index$1_MarginAccountNewOtocoResponseOrdersInner as MarginAccountNewOtocoResponseOrdersInner, type index$1_MarginManualLiquidationRequest as MarginManualLiquidationRequest, type index$1_MarginManualLiquidationResponse as MarginManualLiquidationResponse, index$1_MarketDataApi as MarketDataApi, type index$1_MarketDataApiInterface as MarketDataApiInterface, type index$1_QueryBorrowRepayRecordsInMarginAccountRequest as QueryBorrowRepayRecordsInMarginAccountRequest, type index$1_QueryBorrowRepayRecordsInMarginAccountResponse as QueryBorrowRepayRecordsInMarginAccountResponse, type index$1_QueryBorrowRepayRecordsInMarginAccountResponseRowsInner as QueryBorrowRepayRecordsInMarginAccountResponseRowsInner, type index$1_QueryCrossIsolatedMarginCapitalFlowRequest as QueryCrossIsolatedMarginCapitalFlowRequest, type index$1_QueryCrossIsolatedMarginCapitalFlowResponse as QueryCrossIsolatedMarginCapitalFlowResponse, type index$1_QueryCrossIsolatedMarginCapitalFlowResponseInner as QueryCrossIsolatedMarginCapitalFlowResponseInner, type index$1_QueryCrossMarginAccountDetailsRequest as QueryCrossMarginAccountDetailsRequest, type index$1_QueryCrossMarginAccountDetailsResponse as QueryCrossMarginAccountDetailsResponse, type index$1_QueryCrossMarginAccountDetailsResponseUserAssetsInner as QueryCrossMarginAccountDetailsResponseUserAssetsInner, type index$1_QueryCrossMarginFeeDataRequest as QueryCrossMarginFeeDataRequest, type index$1_QueryCrossMarginFeeDataResponse as QueryCrossMarginFeeDataResponse, type index$1_QueryCrossMarginFeeDataResponseInner as QueryCrossMarginFeeDataResponseInner, type index$1_QueryCurrentMarginOrderCountUsageRequest as QueryCurrentMarginOrderCountUsageRequest, type index$1_QueryCurrentMarginOrderCountUsageResponse as QueryCurrentMarginOrderCountUsageResponse, type index$1_QueryCurrentMarginOrderCountUsageResponseInner as QueryCurrentMarginOrderCountUsageResponseInner, type index$1_QueryEnabledIsolatedMarginAccountLimitRequest as QueryEnabledIsolatedMarginAccountLimitRequest, type index$1_QueryEnabledIsolatedMarginAccountLimitResponse as QueryEnabledIsolatedMarginAccountLimitResponse, type index$1_QueryIsolatedMarginAccountInfoRequest as QueryIsolatedMarginAccountInfoRequest, type index$1_QueryIsolatedMarginAccountInfoResponse as QueryIsolatedMarginAccountInfoResponse, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInner as QueryIsolatedMarginAccountInfoResponseAssetsInner, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInnerBaseAsset as QueryIsolatedMarginAccountInfoResponseAssetsInnerBaseAsset, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInnerQuoteAsset as QueryIsolatedMarginAccountInfoResponseAssetsInnerQuoteAsset, type index$1_QueryIsolatedMarginFeeDataRequest as QueryIsolatedMarginFeeDataRequest, type index$1_QueryIsolatedMarginFeeDataResponse as QueryIsolatedMarginFeeDataResponse, type index$1_QueryIsolatedMarginFeeDataResponseInner as QueryIsolatedMarginFeeDataResponseInner, type index$1_QueryIsolatedMarginFeeDataResponseInnerDataInner as QueryIsolatedMarginFeeDataResponseInnerDataInner, type index$1_QueryIsolatedMarginTierDataRequest as QueryIsolatedMarginTierDataRequest, type index$1_QueryIsolatedMarginTierDataResponse as QueryIsolatedMarginTierDataResponse, type index$1_QueryIsolatedMarginTierDataResponseInner as QueryIsolatedMarginTierDataResponseInner, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponse as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponse, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInner as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInner, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInnerBracketsInner as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInnerBracketsInner, type index$1_QueryMarginAccountsAllOcoRequest as QueryMarginAccountsAllOcoRequest, type index$1_QueryMarginAccountsAllOcoResponse as QueryMarginAccountsAllOcoResponse, type index$1_QueryMarginAccountsAllOcoResponseInner as QueryMarginAccountsAllOcoResponseInner, type index$1_QueryMarginAccountsAllOcoResponseInnerOrdersInner as QueryMarginAccountsAllOcoResponseInnerOrdersInner, type index$1_QueryMarginAccountsAllOrdersRequest as QueryMarginAccountsAllOrdersRequest, type index$1_QueryMarginAccountsAllOrdersResponse as QueryMarginAccountsAllOrdersResponse, type index$1_QueryMarginAccountsAllOrdersResponseInner as QueryMarginAccountsAllOrdersResponseInner, type index$1_QueryMarginAccountsOcoRequest as QueryMarginAccountsOcoRequest, type index$1_QueryMarginAccountsOcoResponse as QueryMarginAccountsOcoResponse, type index$1_QueryMarginAccountsOcoResponseOrdersInner as QueryMarginAccountsOcoResponseOrdersInner, type index$1_QueryMarginAccountsOpenOcoRequest as QueryMarginAccountsOpenOcoRequest, type index$1_QueryMarginAccountsOpenOcoResponse as QueryMarginAccountsOpenOcoResponse, type index$1_QueryMarginAccountsOpenOcoResponseInner as QueryMarginAccountsOpenOcoResponseInner, type index$1_QueryMarginAccountsOpenOcoResponseInnerOrdersInner as QueryMarginAccountsOpenOcoResponseInnerOrdersInner, type index$1_QueryMarginAccountsOpenOrdersRequest as QueryMarginAccountsOpenOrdersRequest, type index$1_QueryMarginAccountsOpenOrdersResponse as QueryMarginAccountsOpenOrdersResponse, type index$1_QueryMarginAccountsOpenOrdersResponseInner as QueryMarginAccountsOpenOrdersResponseInner, type index$1_QueryMarginAccountsOrderRequest as QueryMarginAccountsOrderRequest, type index$1_QueryMarginAccountsOrderResponse as QueryMarginAccountsOrderResponse, type index$1_QueryMarginAccountsTradeListRequest as QueryMarginAccountsTradeListRequest, type index$1_QueryMarginAccountsTradeListResponse as QueryMarginAccountsTradeListResponse, type index$1_QueryMarginAccountsTradeListResponseInner as QueryMarginAccountsTradeListResponseInner, type index$1_QueryMarginAvailableInventoryRequest as QueryMarginAvailableInventoryRequest, type index$1_QueryMarginAvailableInventoryResponse as QueryMarginAvailableInventoryResponse, type index$1_QueryMarginAvailableInventoryResponseAssets as QueryMarginAvailableInventoryResponseAssets, type index$1_QueryMarginInterestRateHistoryRequest as QueryMarginInterestRateHistoryRequest, type index$1_QueryMarginInterestRateHistoryResponse as QueryMarginInterestRateHistoryResponse, type index$1_QueryMarginInterestRateHistoryResponseInner as QueryMarginInterestRateHistoryResponseInner, type index$1_QueryMarginPriceindexRequest as QueryMarginPriceindexRequest, type index$1_QueryMarginPriceindexResponse as QueryMarginPriceindexResponse, type index$1_QueryMaxBorrowRequest as QueryMaxBorrowRequest, type index$1_QueryMaxBorrowResponse as QueryMaxBorrowResponse, type index$1_QueryMaxTransferOutAmountRequest as QueryMaxTransferOutAmountRequest, type index$1_QueryMaxTransferOutAmountResponse as QueryMaxTransferOutAmountResponse, type index$1_QuerySpecialKeyListRequest as QuerySpecialKeyListRequest, type index$1_QuerySpecialKeyListResponse as QuerySpecialKeyListResponse, type index$1_QuerySpecialKeyListResponseInner as QuerySpecialKeyListResponseInner, type index$1_QuerySpecialKeyRequest as QuerySpecialKeyRequest, type index$1_QuerySpecialKeyResponse as QuerySpecialKeyResponse, index$1_RestAPI as RestAPI, index$1_RiskDataStreamApi as RiskDataStreamApi, type index$1_RiskDataStreamApiInterface as RiskDataStreamApiInterface, type index$1_SmallLiabilityExchangeRequest as SmallLiabilityExchangeRequest, type index$1_StartIsolatedMarginUserDataStreamRequest as StartIsolatedMarginUserDataStreamRequest, type index$1_StartIsolatedMarginUserDataStreamResponse as StartIsolatedMarginUserDataStreamResponse, type index$1_StartMarginUserDataStreamResponse as StartMarginUserDataStreamResponse, type index$1_StartUserDataStreamResponse as StartUserDataStreamResponse, index$1_TradeApi as TradeApi, type index$1_TradeApiInterface as TradeApiInterface, index$1_TradeDataStreamApi as TradeDataStreamApi, type index$1_TradeDataStreamApiInterface as TradeDataStreamApiInterface, index$1_TransferApi as TransferApi, type index$1_TransferApiInterface as TransferApiInterface };
|
|
10116
|
+
export { index$1_AccountApi as AccountApi, type index$1_AccountApiInterface as AccountApiInterface, type index$1_AdjustCrossMarginMaxLeverageRequest as AdjustCrossMarginMaxLeverageRequest, type index$1_AdjustCrossMarginMaxLeverageResponse as AdjustCrossMarginMaxLeverageResponse, index$1_BorrowRepayApi as BorrowRepayApi, type index$1_BorrowRepayApiInterface as BorrowRepayApiInterface, type index$1_CreateSpecialKeyRequest as CreateSpecialKeyRequest, type index$1_CreateSpecialKeyResponse as CreateSpecialKeyResponse, type index$1_CrossMarginCollateralRatioResponse as CrossMarginCollateralRatioResponse, type index$1_CrossMarginCollateralRatioResponseInner as CrossMarginCollateralRatioResponseInner, type index$1_CrossMarginCollateralRatioResponseInnerCollateralsInner as CrossMarginCollateralRatioResponseInnerCollateralsInner, type index$1_DeleteSpecialKeyRequest as DeleteSpecialKeyRequest, type index$1_DisableIsolatedMarginAccountRequest as DisableIsolatedMarginAccountRequest, type index$1_DisableIsolatedMarginAccountResponse as DisableIsolatedMarginAccountResponse, type index$1_EditIpForSpecialKeyRequest as EditIpForSpecialKeyRequest, type index$1_EnableIsolatedMarginAccountRequest as EnableIsolatedMarginAccountRequest, type index$1_EnableIsolatedMarginAccountResponse as EnableIsolatedMarginAccountResponse, type index$1_GetAllCrossMarginPairsRequest as GetAllCrossMarginPairsRequest, type index$1_GetAllCrossMarginPairsResponse as GetAllCrossMarginPairsResponse, type index$1_GetAllCrossMarginPairsResponseInner as GetAllCrossMarginPairsResponseInner, type index$1_GetAllIsolatedMarginSymbolRequest as GetAllIsolatedMarginSymbolRequest, type index$1_GetAllIsolatedMarginSymbolResponse as GetAllIsolatedMarginSymbolResponse, type index$1_GetAllIsolatedMarginSymbolResponseInner as GetAllIsolatedMarginSymbolResponseInner, type index$1_GetAllMarginAssetsRequest as GetAllMarginAssetsRequest, type index$1_GetAllMarginAssetsResponse as GetAllMarginAssetsResponse, type index$1_GetAllMarginAssetsResponseInner as GetAllMarginAssetsResponseInner, type index$1_GetBnbBurnStatusRequest as GetBnbBurnStatusRequest, type index$1_GetBnbBurnStatusResponse as GetBnbBurnStatusResponse, type index$1_GetCrossMarginTransferHistoryRequest as GetCrossMarginTransferHistoryRequest, type index$1_GetCrossMarginTransferHistoryResponse as GetCrossMarginTransferHistoryResponse, type index$1_GetCrossMarginTransferHistoryResponseRowsInner as GetCrossMarginTransferHistoryResponseRowsInner, type index$1_GetDelistScheduleRequest as GetDelistScheduleRequest, type index$1_GetDelistScheduleResponse as GetDelistScheduleResponse, type index$1_GetDelistScheduleResponseInner as GetDelistScheduleResponseInner, type index$1_GetForceLiquidationRecordRequest as GetForceLiquidationRecordRequest, type index$1_GetForceLiquidationRecordResponse as GetForceLiquidationRecordResponse, type index$1_GetForceLiquidationRecordResponseRowsInner as GetForceLiquidationRecordResponseRowsInner, type index$1_GetFutureHourlyInterestRateRequest as GetFutureHourlyInterestRateRequest, type index$1_GetFutureHourlyInterestRateResponse as GetFutureHourlyInterestRateResponse, type index$1_GetFutureHourlyInterestRateResponseInner as GetFutureHourlyInterestRateResponseInner, type index$1_GetInterestHistoryRequest as GetInterestHistoryRequest, type index$1_GetInterestHistoryResponse as GetInterestHistoryResponse, type index$1_GetInterestHistoryResponseRowsInner as GetInterestHistoryResponseRowsInner, type index$1_GetLimitPricePairsResponse as GetLimitPricePairsResponse, type index$1_GetListScheduleRequest as GetListScheduleRequest, type index$1_GetListScheduleResponse as GetListScheduleResponse, type index$1_GetListScheduleResponseInner as GetListScheduleResponseInner, type index$1_GetSmallLiabilityExchangeCoinListRequest as GetSmallLiabilityExchangeCoinListRequest, type index$1_GetSmallLiabilityExchangeCoinListResponse as GetSmallLiabilityExchangeCoinListResponse, type index$1_GetSmallLiabilityExchangeCoinListResponseInner as GetSmallLiabilityExchangeCoinListResponseInner, type index$1_GetSmallLiabilityExchangeHistoryRequest as GetSmallLiabilityExchangeHistoryRequest, type index$1_GetSmallLiabilityExchangeHistoryResponse as GetSmallLiabilityExchangeHistoryResponse, type index$1_GetSmallLiabilityExchangeHistoryResponseRowsInner as GetSmallLiabilityExchangeHistoryResponseRowsInner, type index$1_GetSummaryOfMarginAccountRequest as GetSummaryOfMarginAccountRequest, type index$1_GetSummaryOfMarginAccountResponse as GetSummaryOfMarginAccountResponse, type index$1_KeepaliveUserDataStreamRequest as KeepaliveUserDataStreamRequest, type index$1_MarginAccountBorrowRepayRequest as MarginAccountBorrowRepayRequest, type index$1_MarginAccountBorrowRepayResponse as MarginAccountBorrowRepayResponse, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolRequest as MarginAccountCancelAllOpenOrdersOnASymbolRequest, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponse as MarginAccountCancelAllOpenOrdersOnASymbolResponse, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInner, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrderReportsInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrderReportsInner, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrdersInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrdersInner, type index$1_MarginAccountCancelOcoRequest as MarginAccountCancelOcoRequest, type index$1_MarginAccountCancelOcoResponse as MarginAccountCancelOcoResponse, type index$1_MarginAccountCancelOcoResponseOrderReportsInner as MarginAccountCancelOcoResponseOrderReportsInner, type index$1_MarginAccountCancelOcoResponseOrdersInner as MarginAccountCancelOcoResponseOrdersInner, type index$1_MarginAccountCancelOrderRequest as MarginAccountCancelOrderRequest, type index$1_MarginAccountCancelOrderResponse as MarginAccountCancelOrderResponse, index$1_MarginAccountNewOcoNewOrderRespTypeEnum as MarginAccountNewOcoNewOrderRespTypeEnum, type index$1_MarginAccountNewOcoRequest as MarginAccountNewOcoRequest, type index$1_MarginAccountNewOcoResponse as MarginAccountNewOcoResponse, type index$1_MarginAccountNewOcoResponseOrderReportsInner as MarginAccountNewOcoResponseOrderReportsInner, type index$1_MarginAccountNewOcoResponseOrdersInner as MarginAccountNewOcoResponseOrdersInner, index$1_MarginAccountNewOcoSideEnum as MarginAccountNewOcoSideEnum, index$1_MarginAccountNewOrderNewOrderRespTypeEnum as MarginAccountNewOrderNewOrderRespTypeEnum, type index$1_MarginAccountNewOrderRequest as MarginAccountNewOrderRequest, type index$1_MarginAccountNewOrderResponse as MarginAccountNewOrderResponse, type index$1_MarginAccountNewOrderResponseFillsInner as MarginAccountNewOrderResponseFillsInner, index$1_MarginAccountNewOrderSideEnum as MarginAccountNewOrderSideEnum, index$1_MarginAccountNewOrderTimeInForceEnum as MarginAccountNewOrderTimeInForceEnum, index$1_MarginAccountNewOtoNewOrderRespTypeEnum as MarginAccountNewOtoNewOrderRespTypeEnum, type index$1_MarginAccountNewOtoRequest as MarginAccountNewOtoRequest, type index$1_MarginAccountNewOtoResponse as MarginAccountNewOtoResponse, type index$1_MarginAccountNewOtoResponseOrderReportsInner as MarginAccountNewOtoResponseOrderReportsInner, type index$1_MarginAccountNewOtoResponseOrdersInner as MarginAccountNewOtoResponseOrdersInner, index$1_MarginAccountNewOtocoNewOrderRespTypeEnum as MarginAccountNewOtocoNewOrderRespTypeEnum, type index$1_MarginAccountNewOtocoRequest as MarginAccountNewOtocoRequest, type index$1_MarginAccountNewOtocoResponse as MarginAccountNewOtocoResponse, type index$1_MarginAccountNewOtocoResponseOrderReportsInner as MarginAccountNewOtocoResponseOrderReportsInner, type index$1_MarginAccountNewOtocoResponseOrdersInner as MarginAccountNewOtocoResponseOrdersInner, type index$1_MarginManualLiquidationRequest as MarginManualLiquidationRequest, type index$1_MarginManualLiquidationResponse as MarginManualLiquidationResponse, index$1_MarketDataApi as MarketDataApi, type index$1_MarketDataApiInterface as MarketDataApiInterface, type index$1_QueryBorrowRepayRecordsInMarginAccountRequest as QueryBorrowRepayRecordsInMarginAccountRequest, type index$1_QueryBorrowRepayRecordsInMarginAccountResponse as QueryBorrowRepayRecordsInMarginAccountResponse, type index$1_QueryBorrowRepayRecordsInMarginAccountResponseRowsInner as QueryBorrowRepayRecordsInMarginAccountResponseRowsInner, type index$1_QueryCrossIsolatedMarginCapitalFlowRequest as QueryCrossIsolatedMarginCapitalFlowRequest, type index$1_QueryCrossIsolatedMarginCapitalFlowResponse as QueryCrossIsolatedMarginCapitalFlowResponse, type index$1_QueryCrossIsolatedMarginCapitalFlowResponseInner as QueryCrossIsolatedMarginCapitalFlowResponseInner, type index$1_QueryCrossMarginAccountDetailsRequest as QueryCrossMarginAccountDetailsRequest, type index$1_QueryCrossMarginAccountDetailsResponse as QueryCrossMarginAccountDetailsResponse, type index$1_QueryCrossMarginAccountDetailsResponseUserAssetsInner as QueryCrossMarginAccountDetailsResponseUserAssetsInner, type index$1_QueryCrossMarginFeeDataRequest as QueryCrossMarginFeeDataRequest, type index$1_QueryCrossMarginFeeDataResponse as QueryCrossMarginFeeDataResponse, type index$1_QueryCrossMarginFeeDataResponseInner as QueryCrossMarginFeeDataResponseInner, type index$1_QueryCurrentMarginOrderCountUsageRequest as QueryCurrentMarginOrderCountUsageRequest, type index$1_QueryCurrentMarginOrderCountUsageResponse as QueryCurrentMarginOrderCountUsageResponse, type index$1_QueryCurrentMarginOrderCountUsageResponseInner as QueryCurrentMarginOrderCountUsageResponseInner, type index$1_QueryEnabledIsolatedMarginAccountLimitRequest as QueryEnabledIsolatedMarginAccountLimitRequest, type index$1_QueryEnabledIsolatedMarginAccountLimitResponse as QueryEnabledIsolatedMarginAccountLimitResponse, type index$1_QueryIsolatedMarginAccountInfoRequest as QueryIsolatedMarginAccountInfoRequest, type index$1_QueryIsolatedMarginAccountInfoResponse as QueryIsolatedMarginAccountInfoResponse, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInner as QueryIsolatedMarginAccountInfoResponseAssetsInner, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInnerBaseAsset as QueryIsolatedMarginAccountInfoResponseAssetsInnerBaseAsset, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInnerQuoteAsset as QueryIsolatedMarginAccountInfoResponseAssetsInnerQuoteAsset, type index$1_QueryIsolatedMarginFeeDataRequest as QueryIsolatedMarginFeeDataRequest, type index$1_QueryIsolatedMarginFeeDataResponse as QueryIsolatedMarginFeeDataResponse, type index$1_QueryIsolatedMarginFeeDataResponseInner as QueryIsolatedMarginFeeDataResponseInner, type index$1_QueryIsolatedMarginFeeDataResponseInnerDataInner as QueryIsolatedMarginFeeDataResponseInnerDataInner, type index$1_QueryIsolatedMarginTierDataRequest as QueryIsolatedMarginTierDataRequest, type index$1_QueryIsolatedMarginTierDataResponse as QueryIsolatedMarginTierDataResponse, type index$1_QueryIsolatedMarginTierDataResponseInner as QueryIsolatedMarginTierDataResponseInner, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponse as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponse, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInner as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInner, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInnerBracketsInner as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInnerBracketsInner, type index$1_QueryMarginAccountsAllOcoRequest as QueryMarginAccountsAllOcoRequest, type index$1_QueryMarginAccountsAllOcoResponse as QueryMarginAccountsAllOcoResponse, type index$1_QueryMarginAccountsAllOcoResponseInner as QueryMarginAccountsAllOcoResponseInner, type index$1_QueryMarginAccountsAllOcoResponseInnerOrdersInner as QueryMarginAccountsAllOcoResponseInnerOrdersInner, type index$1_QueryMarginAccountsAllOrdersRequest as QueryMarginAccountsAllOrdersRequest, type index$1_QueryMarginAccountsAllOrdersResponse as QueryMarginAccountsAllOrdersResponse, type index$1_QueryMarginAccountsAllOrdersResponseInner as QueryMarginAccountsAllOrdersResponseInner, type index$1_QueryMarginAccountsOcoRequest as QueryMarginAccountsOcoRequest, type index$1_QueryMarginAccountsOcoResponse as QueryMarginAccountsOcoResponse, type index$1_QueryMarginAccountsOcoResponseOrdersInner as QueryMarginAccountsOcoResponseOrdersInner, type index$1_QueryMarginAccountsOpenOcoRequest as QueryMarginAccountsOpenOcoRequest, type index$1_QueryMarginAccountsOpenOcoResponse as QueryMarginAccountsOpenOcoResponse, type index$1_QueryMarginAccountsOpenOcoResponseInner as QueryMarginAccountsOpenOcoResponseInner, type index$1_QueryMarginAccountsOpenOcoResponseInnerOrdersInner as QueryMarginAccountsOpenOcoResponseInnerOrdersInner, type index$1_QueryMarginAccountsOpenOrdersRequest as QueryMarginAccountsOpenOrdersRequest, type index$1_QueryMarginAccountsOpenOrdersResponse as QueryMarginAccountsOpenOrdersResponse, type index$1_QueryMarginAccountsOpenOrdersResponseInner as QueryMarginAccountsOpenOrdersResponseInner, type index$1_QueryMarginAccountsOrderRequest as QueryMarginAccountsOrderRequest, type index$1_QueryMarginAccountsOrderResponse as QueryMarginAccountsOrderResponse, type index$1_QueryMarginAccountsTradeListRequest as QueryMarginAccountsTradeListRequest, type index$1_QueryMarginAccountsTradeListResponse as QueryMarginAccountsTradeListResponse, type index$1_QueryMarginAccountsTradeListResponseInner as QueryMarginAccountsTradeListResponseInner, type index$1_QueryMarginAvailableInventoryRequest as QueryMarginAvailableInventoryRequest, type index$1_QueryMarginAvailableInventoryResponse as QueryMarginAvailableInventoryResponse, type index$1_QueryMarginAvailableInventoryResponseAssets as QueryMarginAvailableInventoryResponseAssets, type index$1_QueryMarginInterestRateHistoryRequest as QueryMarginInterestRateHistoryRequest, type index$1_QueryMarginInterestRateHistoryResponse as QueryMarginInterestRateHistoryResponse, type index$1_QueryMarginInterestRateHistoryResponseInner as QueryMarginInterestRateHistoryResponseInner, type index$1_QueryMarginPriceindexRequest as QueryMarginPriceindexRequest, type index$1_QueryMarginPriceindexResponse as QueryMarginPriceindexResponse, type index$1_QueryMaxBorrowRequest as QueryMaxBorrowRequest, type index$1_QueryMaxBorrowResponse as QueryMaxBorrowResponse, type index$1_QueryMaxTransferOutAmountRequest as QueryMaxTransferOutAmountRequest, type index$1_QueryMaxTransferOutAmountResponse as QueryMaxTransferOutAmountResponse, type index$1_QuerySpecialKeyListRequest as QuerySpecialKeyListRequest, type index$1_QuerySpecialKeyListResponse as QuerySpecialKeyListResponse, type index$1_QuerySpecialKeyListResponseInner as QuerySpecialKeyListResponseInner, type index$1_QuerySpecialKeyRequest as QuerySpecialKeyRequest, type index$1_QuerySpecialKeyResponse as QuerySpecialKeyResponse, index$1_RestAPI as RestAPI, index$1_RiskDataStreamApi as RiskDataStreamApi, type index$1_RiskDataStreamApiInterface as RiskDataStreamApiInterface, type index$1_SmallLiabilityExchangeRequest as SmallLiabilityExchangeRequest, type index$1_StartUserDataStreamResponse as StartUserDataStreamResponse, index$1_TradeApi as TradeApi, type index$1_TradeApiInterface as TradeApiInterface, index$1_TransferApi as TransferApi, type index$1_TransferApiInterface as TransferApiInterface };
|
|
10512
10117
|
}
|
|
10513
10118
|
|
|
10514
10119
|
/**
|