@binance/margin-trading 9.0.1 → 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.ts 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
  *
@@ -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
  *
@@ -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
  /**