@binance/simple-earn 12.0.2 → 13.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 +55 -22
- package/dist/index.d.ts +55 -22
- package/dist/index.js +15 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -130,6 +130,33 @@ interface GetBfusdQuotaDetailsResponseStandardRedemptionQuota {
|
|
|
130
130
|
redeemPeriod?: number | bigint;
|
|
131
131
|
}
|
|
132
132
|
//#endregion
|
|
133
|
+
//#region src/rest-api/types/get-bfusd-quota-details-response-subscription-quota.d.ts
|
|
134
|
+
/**
|
|
135
|
+
* Binance Simple Earn REST API
|
|
136
|
+
*
|
|
137
|
+
* OpenAPI Specification for the Binance Simple Earn REST API
|
|
138
|
+
*
|
|
139
|
+
* The version of the OpenAPI document: 1.0.0
|
|
140
|
+
*
|
|
141
|
+
*
|
|
142
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
143
|
+
* https://openapi-generator.tech
|
|
144
|
+
* Do not edit the class manually.
|
|
145
|
+
*/
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @export
|
|
149
|
+
* @interface GetBfusdQuotaDetailsResponseSubscriptionQuota
|
|
150
|
+
*/
|
|
151
|
+
interface GetBfusdQuotaDetailsResponseSubscriptionQuota {
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {string}
|
|
155
|
+
* @memberof GetBfusdQuotaDetailsResponseSubscriptionQuota
|
|
156
|
+
*/
|
|
157
|
+
leftQuota?: string;
|
|
158
|
+
}
|
|
159
|
+
//#endregion
|
|
133
160
|
//#region src/rest-api/types/get-bfusd-quota-details-response.d.ts
|
|
134
161
|
/**
|
|
135
162
|
*
|
|
@@ -137,6 +164,12 @@ interface GetBfusdQuotaDetailsResponseStandardRedemptionQuota {
|
|
|
137
164
|
* @interface GetBfusdQuotaDetailsResponse
|
|
138
165
|
*/
|
|
139
166
|
interface GetBfusdQuotaDetailsResponse {
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @type {GetBfusdQuotaDetailsResponseSubscriptionQuota}
|
|
170
|
+
* @memberof GetBfusdQuotaDetailsResponse
|
|
171
|
+
*/
|
|
172
|
+
subscriptionQuota?: GetBfusdQuotaDetailsResponseSubscriptionQuota;
|
|
140
173
|
/**
|
|
141
174
|
*
|
|
142
175
|
* @type {GetBfusdQuotaDetailsResponseFastRedemptionQuota}
|
|
@@ -2971,7 +3004,7 @@ interface BfusdApiInterface {
|
|
|
2971
3004
|
*/
|
|
2972
3005
|
getBfusdAccount(requestParameters?: GetBfusdAccountRequest): Promise<RestApiResponse<GetBfusdAccountResponse>>;
|
|
2973
3006
|
/**
|
|
2974
|
-
* Get BFUSD quota details including fast redemption quota and standard redemption quota.
|
|
3007
|
+
* Get BFUSD quota details including subscription quota, fast redemption quota and standard redemption quota.
|
|
2975
3008
|
*
|
|
2976
3009
|
* Weight: 150
|
|
2977
3010
|
*
|
|
@@ -3323,7 +3356,7 @@ declare class BfusdApi implements BfusdApiInterface {
|
|
|
3323
3356
|
*/
|
|
3324
3357
|
getBfusdAccount(requestParameters?: GetBfusdAccountRequest): Promise<RestApiResponse<GetBfusdAccountResponse>>;
|
|
3325
3358
|
/**
|
|
3326
|
-
* Get BFUSD quota details including fast redemption quota and standard redemption quota.
|
|
3359
|
+
* Get BFUSD quota details including subscription quota, fast redemption quota and standard redemption quota.
|
|
3327
3360
|
*
|
|
3328
3361
|
* Weight: 150
|
|
3329
3362
|
*
|
|
@@ -3489,7 +3522,7 @@ interface FlexibleLockedApiInterface {
|
|
|
3489
3522
|
/**
|
|
3490
3523
|
* Get Flexible Redemption Record
|
|
3491
3524
|
*
|
|
3492
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
3525
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
3493
3526
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
3494
3527
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
3495
3528
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -3506,7 +3539,7 @@ interface FlexibleLockedApiInterface {
|
|
|
3506
3539
|
/**
|
|
3507
3540
|
* Get Flexible Rewards History
|
|
3508
3541
|
*
|
|
3509
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
3542
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
3510
3543
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
3511
3544
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
3512
3545
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -3535,7 +3568,7 @@ interface FlexibleLockedApiInterface {
|
|
|
3535
3568
|
/**
|
|
3536
3569
|
* Get Flexible Subscription Record
|
|
3537
3570
|
*
|
|
3538
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
3571
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
3539
3572
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
3540
3573
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
3541
3574
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -3576,7 +3609,7 @@ interface FlexibleLockedApiInterface {
|
|
|
3576
3609
|
/**
|
|
3577
3610
|
* Get Locked Redemption Record
|
|
3578
3611
|
*
|
|
3579
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
3612
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
3580
3613
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
3581
3614
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
3582
3615
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -3593,7 +3626,7 @@ interface FlexibleLockedApiInterface {
|
|
|
3593
3626
|
/**
|
|
3594
3627
|
* Get Locked Rewards History
|
|
3595
3628
|
*
|
|
3596
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
3629
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
3597
3630
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
3598
3631
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
3599
3632
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -3622,7 +3655,7 @@ interface FlexibleLockedApiInterface {
|
|
|
3622
3655
|
/**
|
|
3623
3656
|
* Get Locked Subscription Record
|
|
3624
3657
|
*
|
|
3625
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
3658
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
3626
3659
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
3627
3660
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
3628
3661
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -4685,7 +4718,7 @@ declare class FlexibleLockedApi implements FlexibleLockedApiInterface {
|
|
|
4685
4718
|
/**
|
|
4686
4719
|
* Get Flexible Redemption Record
|
|
4687
4720
|
*
|
|
4688
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
4721
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
4689
4722
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
4690
4723
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
4691
4724
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -4703,7 +4736,7 @@ declare class FlexibleLockedApi implements FlexibleLockedApiInterface {
|
|
|
4703
4736
|
/**
|
|
4704
4737
|
* Get Flexible Rewards History
|
|
4705
4738
|
*
|
|
4706
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
4739
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
4707
4740
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
4708
4741
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
4709
4742
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -4734,7 +4767,7 @@ declare class FlexibleLockedApi implements FlexibleLockedApiInterface {
|
|
|
4734
4767
|
/**
|
|
4735
4768
|
* Get Flexible Subscription Record
|
|
4736
4769
|
*
|
|
4737
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
4770
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
4738
4771
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
4739
4772
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
4740
4773
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -4778,7 +4811,7 @@ declare class FlexibleLockedApi implements FlexibleLockedApiInterface {
|
|
|
4778
4811
|
/**
|
|
4779
4812
|
* Get Locked Redemption Record
|
|
4780
4813
|
*
|
|
4781
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
4814
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
4782
4815
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
4783
4816
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
4784
4817
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -4796,7 +4829,7 @@ declare class FlexibleLockedApi implements FlexibleLockedApiInterface {
|
|
|
4796
4829
|
/**
|
|
4797
4830
|
* Get Locked Rewards History
|
|
4798
4831
|
*
|
|
4799
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
4832
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
4800
4833
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
4801
4834
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
4802
4835
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -4827,7 +4860,7 @@ declare class FlexibleLockedApi implements FlexibleLockedApiInterface {
|
|
|
4827
4860
|
/**
|
|
4828
4861
|
* Get Locked Subscription Record
|
|
4829
4862
|
*
|
|
4830
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
4863
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
4831
4864
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
4832
4865
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
4833
4866
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -5530,7 +5563,7 @@ declare class RestAPI {
|
|
|
5530
5563
|
*/
|
|
5531
5564
|
getBfusdAccount(requestParameters?: GetBfusdAccountRequest): Promise<RestApiResponse<GetBfusdAccountResponse>>;
|
|
5532
5565
|
/**
|
|
5533
|
-
* Get BFUSD quota details including fast redemption quota and standard redemption quota.
|
|
5566
|
+
* Get BFUSD quota details including subscription quota, fast redemption quota and standard redemption quota.
|
|
5534
5567
|
*
|
|
5535
5568
|
* Weight: 150
|
|
5536
5569
|
*
|
|
@@ -5691,7 +5724,7 @@ declare class RestAPI {
|
|
|
5691
5724
|
/**
|
|
5692
5725
|
* Get Flexible Redemption Record
|
|
5693
5726
|
*
|
|
5694
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
5727
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
5695
5728
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
5696
5729
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
5697
5730
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -5709,7 +5742,7 @@ declare class RestAPI {
|
|
|
5709
5742
|
/**
|
|
5710
5743
|
* Get Flexible Rewards History
|
|
5711
5744
|
*
|
|
5712
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
5745
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
5713
5746
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
5714
5747
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
5715
5748
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -5740,7 +5773,7 @@ declare class RestAPI {
|
|
|
5740
5773
|
/**
|
|
5741
5774
|
* Get Flexible Subscription Record
|
|
5742
5775
|
*
|
|
5743
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
5776
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
5744
5777
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
5745
5778
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
5746
5779
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -5784,7 +5817,7 @@ declare class RestAPI {
|
|
|
5784
5817
|
/**
|
|
5785
5818
|
* Get Locked Redemption Record
|
|
5786
5819
|
*
|
|
5787
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
5820
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
5788
5821
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
5789
5822
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
5790
5823
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -5802,7 +5835,7 @@ declare class RestAPI {
|
|
|
5802
5835
|
/**
|
|
5803
5836
|
* Get Locked Rewards History
|
|
5804
5837
|
*
|
|
5805
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
5838
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
5806
5839
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
5807
5840
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
5808
5841
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -5833,7 +5866,7 @@ declare class RestAPI {
|
|
|
5833
5866
|
/**
|
|
5834
5867
|
* Get Locked Subscription Record
|
|
5835
5868
|
*
|
|
5836
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
5869
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
5837
5870
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
5838
5871
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
5839
5872
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -6136,7 +6169,7 @@ declare class RestAPI {
|
|
|
6136
6169
|
subscribeRwusd(requestParameters: SubscribeRwusdRequest): Promise<RestApiResponse<SubscribeRwusdResponse>>;
|
|
6137
6170
|
}
|
|
6138
6171
|
declare namespace index_d_exports {
|
|
6139
|
-
export { BfusdApi, BfusdApiInterface, FlexibleLockedApi, FlexibleLockedApiInterface, GetBfusdAccountRequest, GetBfusdAccountResponse, GetBfusdQuotaDetailsRequest, GetBfusdQuotaDetailsResponse, GetBfusdQuotaDetailsResponseFastRedemptionQuota, GetBfusdQuotaDetailsResponseStandardRedemptionQuota, GetBfusdRateHistoryRequest, GetBfusdRateHistoryResponse, GetBfusdRateHistoryResponseRowsInner, GetBfusdRedemptionHistoryRequest, GetBfusdRedemptionHistoryResponse, GetBfusdRedemptionHistoryResponseRowsInner, GetBfusdRewardsHistoryRequest, GetBfusdRewardsHistoryResponse, GetBfusdRewardsHistoryResponseRowsInner, GetBfusdSubscriptionHistoryRequest, GetBfusdSubscriptionHistoryResponse, GetBfusdSubscriptionHistoryResponseRowsInner, GetCollateralRecordRequest, GetCollateralRecordResponse, GetCollateralRecordResponseRowsInner, GetFlexiblePersonalLeftQuotaRequest, GetFlexiblePersonalLeftQuotaResponse, GetFlexibleProductPositionRequest, GetFlexibleProductPositionResponse, GetFlexibleProductPositionResponseRowsInner, GetFlexibleProductPositionResponseRowsInnerTierAnnualPercentageRate, GetFlexibleRedemptionRecordRequest, GetFlexibleRedemptionRecordResponse, GetFlexibleRedemptionRecordResponseRowsInner, GetFlexibleRewardsHistoryRequest, GetFlexibleRewardsHistoryResponse, GetFlexibleRewardsHistoryResponseRowsInner, GetFlexibleSubscriptionPreviewRequest, GetFlexibleSubscriptionPreviewResponse, GetFlexibleSubscriptionRecordRequest, GetFlexibleSubscriptionRecordResponse, GetFlexibleSubscriptionRecordResponseRowsInner, GetLockedPersonalLeftQuotaRequest, GetLockedPersonalLeftQuotaResponse, GetLockedProductPositionRequest, GetLockedProductPositionResponse, GetLockedProductPositionResponseRowsInner, GetLockedRedemptionRecordRequest, GetLockedRedemptionRecordResponse, GetLockedRedemptionRecordResponseRowsInner, GetLockedRewardsHistoryRequest, GetLockedRewardsHistoryResponse, GetLockedRewardsHistoryResponseRowsInner, GetLockedSubscriptionPreviewRequest, GetLockedSubscriptionPreviewResponse, GetLockedSubscriptionPreviewResponseInner, GetLockedSubscriptionRecordRequest, GetLockedSubscriptionRecordResponse, GetLockedSubscriptionRecordResponseRowsInner, GetRateHistoryRequest, GetRateHistoryResponse, GetRateHistoryResponseRowsInner, GetRwusdAccountRequest, GetRwusdAccountResponse, GetRwusdQuotaDetailsRequest, GetRwusdQuotaDetailsResponse, GetRwusdQuotaDetailsResponseFastRedemptionQuota, GetRwusdQuotaDetailsResponseStandardRedemptionQuota, GetRwusdQuotaDetailsResponseSubscriptionQuota, GetRwusdRateHistoryRequest, GetRwusdRateHistoryResponse, GetRwusdRedemptionHistoryRequest, GetRwusdRedemptionHistoryResponse, GetRwusdRedemptionHistoryResponseRowsInner, GetRwusdRewardsHistoryRequest, GetRwusdRewardsHistoryResponse, GetRwusdRewardsHistoryResponseRowsInner, GetRwusdSubscriptionHistoryRequest, GetRwusdSubscriptionHistoryResponse, GetRwusdSubscriptionHistoryResponseRowsInner, GetSimpleEarnFlexibleProductListRequest, GetSimpleEarnFlexibleProductListResponse, GetSimpleEarnFlexibleProductListResponseRowsInner, GetSimpleEarnLockedProductListRequest, GetSimpleEarnLockedProductListResponse, GetSimpleEarnLockedProductListResponseRowsInner, GetSimpleEarnLockedProductListResponseRowsInnerDetail, GetSimpleEarnLockedProductListResponseRowsInnerQuota, RedeemBfusdRequest, RedeemBfusdResponse, RedeemFlexibleProductRequest, RedeemFlexibleProductResponse, RedeemLockedProductRequest, RedeemLockedProductResponse, RedeemRwusdRequest, RedeemRwusdResponse, RestAPI, RwusdApi, RwusdApiInterface, SetFlexibleAutoSubscribeRequest, SetFlexibleAutoSubscribeResponse, SetLockedAutoSubscribeRequest, SetLockedAutoSubscribeResponse, SetLockedProductRedeemOptionRequest, SetLockedProductRedeemOptionResponse, SimpleAccountRequest, SimpleAccountResponse, SubscribeBfusdRequest, SubscribeBfusdResponse, SubscribeFlexibleProductRequest, SubscribeFlexibleProductResponse, SubscribeLockedProductRequest, SubscribeLockedProductResponse, SubscribeRwusdRequest, SubscribeRwusdResponse };
|
|
6172
|
+
export { BfusdApi, BfusdApiInterface, FlexibleLockedApi, FlexibleLockedApiInterface, GetBfusdAccountRequest, GetBfusdAccountResponse, GetBfusdQuotaDetailsRequest, GetBfusdQuotaDetailsResponse, GetBfusdQuotaDetailsResponseFastRedemptionQuota, GetBfusdQuotaDetailsResponseStandardRedemptionQuota, GetBfusdQuotaDetailsResponseSubscriptionQuota, GetBfusdRateHistoryRequest, GetBfusdRateHistoryResponse, GetBfusdRateHistoryResponseRowsInner, GetBfusdRedemptionHistoryRequest, GetBfusdRedemptionHistoryResponse, GetBfusdRedemptionHistoryResponseRowsInner, GetBfusdRewardsHistoryRequest, GetBfusdRewardsHistoryResponse, GetBfusdRewardsHistoryResponseRowsInner, GetBfusdSubscriptionHistoryRequest, GetBfusdSubscriptionHistoryResponse, GetBfusdSubscriptionHistoryResponseRowsInner, GetCollateralRecordRequest, GetCollateralRecordResponse, GetCollateralRecordResponseRowsInner, GetFlexiblePersonalLeftQuotaRequest, GetFlexiblePersonalLeftQuotaResponse, GetFlexibleProductPositionRequest, GetFlexibleProductPositionResponse, GetFlexibleProductPositionResponseRowsInner, GetFlexibleProductPositionResponseRowsInnerTierAnnualPercentageRate, GetFlexibleRedemptionRecordRequest, GetFlexibleRedemptionRecordResponse, GetFlexibleRedemptionRecordResponseRowsInner, GetFlexibleRewardsHistoryRequest, GetFlexibleRewardsHistoryResponse, GetFlexibleRewardsHistoryResponseRowsInner, GetFlexibleSubscriptionPreviewRequest, GetFlexibleSubscriptionPreviewResponse, GetFlexibleSubscriptionRecordRequest, GetFlexibleSubscriptionRecordResponse, GetFlexibleSubscriptionRecordResponseRowsInner, GetLockedPersonalLeftQuotaRequest, GetLockedPersonalLeftQuotaResponse, GetLockedProductPositionRequest, GetLockedProductPositionResponse, GetLockedProductPositionResponseRowsInner, GetLockedRedemptionRecordRequest, GetLockedRedemptionRecordResponse, GetLockedRedemptionRecordResponseRowsInner, GetLockedRewardsHistoryRequest, GetLockedRewardsHistoryResponse, GetLockedRewardsHistoryResponseRowsInner, GetLockedSubscriptionPreviewRequest, GetLockedSubscriptionPreviewResponse, GetLockedSubscriptionPreviewResponseInner, GetLockedSubscriptionRecordRequest, GetLockedSubscriptionRecordResponse, GetLockedSubscriptionRecordResponseRowsInner, GetRateHistoryRequest, GetRateHistoryResponse, GetRateHistoryResponseRowsInner, GetRwusdAccountRequest, GetRwusdAccountResponse, GetRwusdQuotaDetailsRequest, GetRwusdQuotaDetailsResponse, GetRwusdQuotaDetailsResponseFastRedemptionQuota, GetRwusdQuotaDetailsResponseStandardRedemptionQuota, GetRwusdQuotaDetailsResponseSubscriptionQuota, GetRwusdRateHistoryRequest, GetRwusdRateHistoryResponse, GetRwusdRedemptionHistoryRequest, GetRwusdRedemptionHistoryResponse, GetRwusdRedemptionHistoryResponseRowsInner, GetRwusdRewardsHistoryRequest, GetRwusdRewardsHistoryResponse, GetRwusdRewardsHistoryResponseRowsInner, GetRwusdSubscriptionHistoryRequest, GetRwusdSubscriptionHistoryResponse, GetRwusdSubscriptionHistoryResponseRowsInner, GetSimpleEarnFlexibleProductListRequest, GetSimpleEarnFlexibleProductListResponse, GetSimpleEarnFlexibleProductListResponseRowsInner, GetSimpleEarnLockedProductListRequest, GetSimpleEarnLockedProductListResponse, GetSimpleEarnLockedProductListResponseRowsInner, GetSimpleEarnLockedProductListResponseRowsInnerDetail, GetSimpleEarnLockedProductListResponseRowsInnerQuota, RedeemBfusdRequest, RedeemBfusdResponse, RedeemFlexibleProductRequest, RedeemFlexibleProductResponse, RedeemLockedProductRequest, RedeemLockedProductResponse, RedeemRwusdRequest, RedeemRwusdResponse, RestAPI, RwusdApi, RwusdApiInterface, SetFlexibleAutoSubscribeRequest, SetFlexibleAutoSubscribeResponse, SetLockedAutoSubscribeRequest, SetLockedAutoSubscribeResponse, SetLockedProductRedeemOptionRequest, SetLockedProductRedeemOptionResponse, SimpleAccountRequest, SimpleAccountResponse, SubscribeBfusdRequest, SubscribeBfusdResponse, SubscribeFlexibleProductRequest, SubscribeFlexibleProductResponse, SubscribeLockedProductRequest, SubscribeLockedProductResponse, SubscribeRwusdRequest, SubscribeRwusdResponse };
|
|
6140
6173
|
}
|
|
6141
6174
|
//#endregion
|
|
6142
6175
|
//#region src/simple-earn.d.ts
|
package/dist/index.d.ts
CHANGED
|
@@ -132,6 +132,33 @@ interface GetBfusdQuotaDetailsResponseStandardRedemptionQuota {
|
|
|
132
132
|
redeemPeriod?: number | bigint;
|
|
133
133
|
}
|
|
134
134
|
//#endregion
|
|
135
|
+
//#region src/rest-api/types/get-bfusd-quota-details-response-subscription-quota.d.ts
|
|
136
|
+
/**
|
|
137
|
+
* Binance Simple Earn REST API
|
|
138
|
+
*
|
|
139
|
+
* OpenAPI Specification for the Binance Simple Earn REST API
|
|
140
|
+
*
|
|
141
|
+
* The version of the OpenAPI document: 1.0.0
|
|
142
|
+
*
|
|
143
|
+
*
|
|
144
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
145
|
+
* https://openapi-generator.tech
|
|
146
|
+
* Do not edit the class manually.
|
|
147
|
+
*/
|
|
148
|
+
/**
|
|
149
|
+
*
|
|
150
|
+
* @export
|
|
151
|
+
* @interface GetBfusdQuotaDetailsResponseSubscriptionQuota
|
|
152
|
+
*/
|
|
153
|
+
interface GetBfusdQuotaDetailsResponseSubscriptionQuota {
|
|
154
|
+
/**
|
|
155
|
+
*
|
|
156
|
+
* @type {string}
|
|
157
|
+
* @memberof GetBfusdQuotaDetailsResponseSubscriptionQuota
|
|
158
|
+
*/
|
|
159
|
+
leftQuota?: string;
|
|
160
|
+
}
|
|
161
|
+
//#endregion
|
|
135
162
|
//#region src/rest-api/types/get-bfusd-quota-details-response.d.ts
|
|
136
163
|
/**
|
|
137
164
|
*
|
|
@@ -139,6 +166,12 @@ interface GetBfusdQuotaDetailsResponseStandardRedemptionQuota {
|
|
|
139
166
|
* @interface GetBfusdQuotaDetailsResponse
|
|
140
167
|
*/
|
|
141
168
|
interface GetBfusdQuotaDetailsResponse {
|
|
169
|
+
/**
|
|
170
|
+
*
|
|
171
|
+
* @type {GetBfusdQuotaDetailsResponseSubscriptionQuota}
|
|
172
|
+
* @memberof GetBfusdQuotaDetailsResponse
|
|
173
|
+
*/
|
|
174
|
+
subscriptionQuota?: GetBfusdQuotaDetailsResponseSubscriptionQuota;
|
|
142
175
|
/**
|
|
143
176
|
*
|
|
144
177
|
* @type {GetBfusdQuotaDetailsResponseFastRedemptionQuota}
|
|
@@ -2973,7 +3006,7 @@ interface BfusdApiInterface {
|
|
|
2973
3006
|
*/
|
|
2974
3007
|
getBfusdAccount(requestParameters?: GetBfusdAccountRequest): Promise<RestApiResponse<GetBfusdAccountResponse>>;
|
|
2975
3008
|
/**
|
|
2976
|
-
* Get BFUSD quota details including fast redemption quota and standard redemption quota.
|
|
3009
|
+
* Get BFUSD quota details including subscription quota, fast redemption quota and standard redemption quota.
|
|
2977
3010
|
*
|
|
2978
3011
|
* Weight: 150
|
|
2979
3012
|
*
|
|
@@ -3325,7 +3358,7 @@ declare class BfusdApi implements BfusdApiInterface {
|
|
|
3325
3358
|
*/
|
|
3326
3359
|
getBfusdAccount(requestParameters?: GetBfusdAccountRequest): Promise<RestApiResponse<GetBfusdAccountResponse>>;
|
|
3327
3360
|
/**
|
|
3328
|
-
* Get BFUSD quota details including fast redemption quota and standard redemption quota.
|
|
3361
|
+
* Get BFUSD quota details including subscription quota, fast redemption quota and standard redemption quota.
|
|
3329
3362
|
*
|
|
3330
3363
|
* Weight: 150
|
|
3331
3364
|
*
|
|
@@ -3491,7 +3524,7 @@ interface FlexibleLockedApiInterface {
|
|
|
3491
3524
|
/**
|
|
3492
3525
|
* Get Flexible Redemption Record
|
|
3493
3526
|
*
|
|
3494
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
3527
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
3495
3528
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
3496
3529
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
3497
3530
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -3508,7 +3541,7 @@ interface FlexibleLockedApiInterface {
|
|
|
3508
3541
|
/**
|
|
3509
3542
|
* Get Flexible Rewards History
|
|
3510
3543
|
*
|
|
3511
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
3544
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
3512
3545
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
3513
3546
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
3514
3547
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -3537,7 +3570,7 @@ interface FlexibleLockedApiInterface {
|
|
|
3537
3570
|
/**
|
|
3538
3571
|
* Get Flexible Subscription Record
|
|
3539
3572
|
*
|
|
3540
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
3573
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
3541
3574
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
3542
3575
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
3543
3576
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -3578,7 +3611,7 @@ interface FlexibleLockedApiInterface {
|
|
|
3578
3611
|
/**
|
|
3579
3612
|
* Get Locked Redemption Record
|
|
3580
3613
|
*
|
|
3581
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
3614
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
3582
3615
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
3583
3616
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
3584
3617
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -3595,7 +3628,7 @@ interface FlexibleLockedApiInterface {
|
|
|
3595
3628
|
/**
|
|
3596
3629
|
* Get Locked Rewards History
|
|
3597
3630
|
*
|
|
3598
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
3631
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
3599
3632
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
3600
3633
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
3601
3634
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -3624,7 +3657,7 @@ interface FlexibleLockedApiInterface {
|
|
|
3624
3657
|
/**
|
|
3625
3658
|
* Get Locked Subscription Record
|
|
3626
3659
|
*
|
|
3627
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
3660
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
3628
3661
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
3629
3662
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
3630
3663
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -4687,7 +4720,7 @@ declare class FlexibleLockedApi implements FlexibleLockedApiInterface {
|
|
|
4687
4720
|
/**
|
|
4688
4721
|
* Get Flexible Redemption Record
|
|
4689
4722
|
*
|
|
4690
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
4723
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
4691
4724
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
4692
4725
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
4693
4726
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -4705,7 +4738,7 @@ declare class FlexibleLockedApi implements FlexibleLockedApiInterface {
|
|
|
4705
4738
|
/**
|
|
4706
4739
|
* Get Flexible Rewards History
|
|
4707
4740
|
*
|
|
4708
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
4741
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
4709
4742
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
4710
4743
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
4711
4744
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -4736,7 +4769,7 @@ declare class FlexibleLockedApi implements FlexibleLockedApiInterface {
|
|
|
4736
4769
|
/**
|
|
4737
4770
|
* Get Flexible Subscription Record
|
|
4738
4771
|
*
|
|
4739
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
4772
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
4740
4773
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
4741
4774
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
4742
4775
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -4780,7 +4813,7 @@ declare class FlexibleLockedApi implements FlexibleLockedApiInterface {
|
|
|
4780
4813
|
/**
|
|
4781
4814
|
* Get Locked Redemption Record
|
|
4782
4815
|
*
|
|
4783
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
4816
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
4784
4817
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
4785
4818
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
4786
4819
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -4798,7 +4831,7 @@ declare class FlexibleLockedApi implements FlexibleLockedApiInterface {
|
|
|
4798
4831
|
/**
|
|
4799
4832
|
* Get Locked Rewards History
|
|
4800
4833
|
*
|
|
4801
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
4834
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
4802
4835
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
4803
4836
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
4804
4837
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -4829,7 +4862,7 @@ declare class FlexibleLockedApi implements FlexibleLockedApiInterface {
|
|
|
4829
4862
|
/**
|
|
4830
4863
|
* Get Locked Subscription Record
|
|
4831
4864
|
*
|
|
4832
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
4865
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
4833
4866
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
4834
4867
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
4835
4868
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -5532,7 +5565,7 @@ declare class RestAPI {
|
|
|
5532
5565
|
*/
|
|
5533
5566
|
getBfusdAccount(requestParameters?: GetBfusdAccountRequest): Promise<RestApiResponse<GetBfusdAccountResponse>>;
|
|
5534
5567
|
/**
|
|
5535
|
-
* Get BFUSD quota details including fast redemption quota and standard redemption quota.
|
|
5568
|
+
* Get BFUSD quota details including subscription quota, fast redemption quota and standard redemption quota.
|
|
5536
5569
|
*
|
|
5537
5570
|
* Weight: 150
|
|
5538
5571
|
*
|
|
@@ -5693,7 +5726,7 @@ declare class RestAPI {
|
|
|
5693
5726
|
/**
|
|
5694
5727
|
* Get Flexible Redemption Record
|
|
5695
5728
|
*
|
|
5696
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
5729
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
5697
5730
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
5698
5731
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
5699
5732
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -5711,7 +5744,7 @@ declare class RestAPI {
|
|
|
5711
5744
|
/**
|
|
5712
5745
|
* Get Flexible Rewards History
|
|
5713
5746
|
*
|
|
5714
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
5747
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
5715
5748
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
5716
5749
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
5717
5750
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -5742,7 +5775,7 @@ declare class RestAPI {
|
|
|
5742
5775
|
/**
|
|
5743
5776
|
* Get Flexible Subscription Record
|
|
5744
5777
|
*
|
|
5745
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
5778
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
5746
5779
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
5747
5780
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
5748
5781
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -5786,7 +5819,7 @@ declare class RestAPI {
|
|
|
5786
5819
|
/**
|
|
5787
5820
|
* Get Locked Redemption Record
|
|
5788
5821
|
*
|
|
5789
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
5822
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
5790
5823
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
5791
5824
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
5792
5825
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -5804,7 +5837,7 @@ declare class RestAPI {
|
|
|
5804
5837
|
/**
|
|
5805
5838
|
* Get Locked Rewards History
|
|
5806
5839
|
*
|
|
5807
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
5840
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
5808
5841
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
5809
5842
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
5810
5843
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -5835,7 +5868,7 @@ declare class RestAPI {
|
|
|
5835
5868
|
/**
|
|
5836
5869
|
* Get Locked Subscription Record
|
|
5837
5870
|
*
|
|
5838
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
5871
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
5839
5872
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
5840
5873
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
5841
5874
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -6138,7 +6171,7 @@ declare class RestAPI {
|
|
|
6138
6171
|
subscribeRwusd(requestParameters: SubscribeRwusdRequest): Promise<RestApiResponse<SubscribeRwusdResponse>>;
|
|
6139
6172
|
}
|
|
6140
6173
|
declare namespace index_d_exports {
|
|
6141
|
-
export { BfusdApi, BfusdApiInterface, FlexibleLockedApi, FlexibleLockedApiInterface, GetBfusdAccountRequest, GetBfusdAccountResponse, GetBfusdQuotaDetailsRequest, GetBfusdQuotaDetailsResponse, GetBfusdQuotaDetailsResponseFastRedemptionQuota, GetBfusdQuotaDetailsResponseStandardRedemptionQuota, GetBfusdRateHistoryRequest, GetBfusdRateHistoryResponse, GetBfusdRateHistoryResponseRowsInner, GetBfusdRedemptionHistoryRequest, GetBfusdRedemptionHistoryResponse, GetBfusdRedemptionHistoryResponseRowsInner, GetBfusdRewardsHistoryRequest, GetBfusdRewardsHistoryResponse, GetBfusdRewardsHistoryResponseRowsInner, GetBfusdSubscriptionHistoryRequest, GetBfusdSubscriptionHistoryResponse, GetBfusdSubscriptionHistoryResponseRowsInner, GetCollateralRecordRequest, GetCollateralRecordResponse, GetCollateralRecordResponseRowsInner, GetFlexiblePersonalLeftQuotaRequest, GetFlexiblePersonalLeftQuotaResponse, GetFlexibleProductPositionRequest, GetFlexibleProductPositionResponse, GetFlexibleProductPositionResponseRowsInner, GetFlexibleProductPositionResponseRowsInnerTierAnnualPercentageRate, GetFlexibleRedemptionRecordRequest, GetFlexibleRedemptionRecordResponse, GetFlexibleRedemptionRecordResponseRowsInner, GetFlexibleRewardsHistoryRequest, GetFlexibleRewardsHistoryResponse, GetFlexibleRewardsHistoryResponseRowsInner, GetFlexibleSubscriptionPreviewRequest, GetFlexibleSubscriptionPreviewResponse, GetFlexibleSubscriptionRecordRequest, GetFlexibleSubscriptionRecordResponse, GetFlexibleSubscriptionRecordResponseRowsInner, GetLockedPersonalLeftQuotaRequest, GetLockedPersonalLeftQuotaResponse, GetLockedProductPositionRequest, GetLockedProductPositionResponse, GetLockedProductPositionResponseRowsInner, GetLockedRedemptionRecordRequest, GetLockedRedemptionRecordResponse, GetLockedRedemptionRecordResponseRowsInner, GetLockedRewardsHistoryRequest, GetLockedRewardsHistoryResponse, GetLockedRewardsHistoryResponseRowsInner, GetLockedSubscriptionPreviewRequest, GetLockedSubscriptionPreviewResponse, GetLockedSubscriptionPreviewResponseInner, GetLockedSubscriptionRecordRequest, GetLockedSubscriptionRecordResponse, GetLockedSubscriptionRecordResponseRowsInner, GetRateHistoryRequest, GetRateHistoryResponse, GetRateHistoryResponseRowsInner, GetRwusdAccountRequest, GetRwusdAccountResponse, GetRwusdQuotaDetailsRequest, GetRwusdQuotaDetailsResponse, GetRwusdQuotaDetailsResponseFastRedemptionQuota, GetRwusdQuotaDetailsResponseStandardRedemptionQuota, GetRwusdQuotaDetailsResponseSubscriptionQuota, GetRwusdRateHistoryRequest, GetRwusdRateHistoryResponse, GetRwusdRedemptionHistoryRequest, GetRwusdRedemptionHistoryResponse, GetRwusdRedemptionHistoryResponseRowsInner, GetRwusdRewardsHistoryRequest, GetRwusdRewardsHistoryResponse, GetRwusdRewardsHistoryResponseRowsInner, GetRwusdSubscriptionHistoryRequest, GetRwusdSubscriptionHistoryResponse, GetRwusdSubscriptionHistoryResponseRowsInner, GetSimpleEarnFlexibleProductListRequest, GetSimpleEarnFlexibleProductListResponse, GetSimpleEarnFlexibleProductListResponseRowsInner, GetSimpleEarnLockedProductListRequest, GetSimpleEarnLockedProductListResponse, GetSimpleEarnLockedProductListResponseRowsInner, GetSimpleEarnLockedProductListResponseRowsInnerDetail, GetSimpleEarnLockedProductListResponseRowsInnerQuota, RedeemBfusdRequest, RedeemBfusdResponse, RedeemFlexibleProductRequest, RedeemFlexibleProductResponse, RedeemLockedProductRequest, RedeemLockedProductResponse, RedeemRwusdRequest, RedeemRwusdResponse, RestAPI, RwusdApi, RwusdApiInterface, SetFlexibleAutoSubscribeRequest, SetFlexibleAutoSubscribeResponse, SetLockedAutoSubscribeRequest, SetLockedAutoSubscribeResponse, SetLockedProductRedeemOptionRequest, SetLockedProductRedeemOptionResponse, SimpleAccountRequest, SimpleAccountResponse, SubscribeBfusdRequest, SubscribeBfusdResponse, SubscribeFlexibleProductRequest, SubscribeFlexibleProductResponse, SubscribeLockedProductRequest, SubscribeLockedProductResponse, SubscribeRwusdRequest, SubscribeRwusdResponse };
|
|
6174
|
+
export { BfusdApi, BfusdApiInterface, FlexibleLockedApi, FlexibleLockedApiInterface, GetBfusdAccountRequest, GetBfusdAccountResponse, GetBfusdQuotaDetailsRequest, GetBfusdQuotaDetailsResponse, GetBfusdQuotaDetailsResponseFastRedemptionQuota, GetBfusdQuotaDetailsResponseStandardRedemptionQuota, GetBfusdQuotaDetailsResponseSubscriptionQuota, GetBfusdRateHistoryRequest, GetBfusdRateHistoryResponse, GetBfusdRateHistoryResponseRowsInner, GetBfusdRedemptionHistoryRequest, GetBfusdRedemptionHistoryResponse, GetBfusdRedemptionHistoryResponseRowsInner, GetBfusdRewardsHistoryRequest, GetBfusdRewardsHistoryResponse, GetBfusdRewardsHistoryResponseRowsInner, GetBfusdSubscriptionHistoryRequest, GetBfusdSubscriptionHistoryResponse, GetBfusdSubscriptionHistoryResponseRowsInner, GetCollateralRecordRequest, GetCollateralRecordResponse, GetCollateralRecordResponseRowsInner, GetFlexiblePersonalLeftQuotaRequest, GetFlexiblePersonalLeftQuotaResponse, GetFlexibleProductPositionRequest, GetFlexibleProductPositionResponse, GetFlexibleProductPositionResponseRowsInner, GetFlexibleProductPositionResponseRowsInnerTierAnnualPercentageRate, GetFlexibleRedemptionRecordRequest, GetFlexibleRedemptionRecordResponse, GetFlexibleRedemptionRecordResponseRowsInner, GetFlexibleRewardsHistoryRequest, GetFlexibleRewardsHistoryResponse, GetFlexibleRewardsHistoryResponseRowsInner, GetFlexibleSubscriptionPreviewRequest, GetFlexibleSubscriptionPreviewResponse, GetFlexibleSubscriptionRecordRequest, GetFlexibleSubscriptionRecordResponse, GetFlexibleSubscriptionRecordResponseRowsInner, GetLockedPersonalLeftQuotaRequest, GetLockedPersonalLeftQuotaResponse, GetLockedProductPositionRequest, GetLockedProductPositionResponse, GetLockedProductPositionResponseRowsInner, GetLockedRedemptionRecordRequest, GetLockedRedemptionRecordResponse, GetLockedRedemptionRecordResponseRowsInner, GetLockedRewardsHistoryRequest, GetLockedRewardsHistoryResponse, GetLockedRewardsHistoryResponseRowsInner, GetLockedSubscriptionPreviewRequest, GetLockedSubscriptionPreviewResponse, GetLockedSubscriptionPreviewResponseInner, GetLockedSubscriptionRecordRequest, GetLockedSubscriptionRecordResponse, GetLockedSubscriptionRecordResponseRowsInner, GetRateHistoryRequest, GetRateHistoryResponse, GetRateHistoryResponseRowsInner, GetRwusdAccountRequest, GetRwusdAccountResponse, GetRwusdQuotaDetailsRequest, GetRwusdQuotaDetailsResponse, GetRwusdQuotaDetailsResponseFastRedemptionQuota, GetRwusdQuotaDetailsResponseStandardRedemptionQuota, GetRwusdQuotaDetailsResponseSubscriptionQuota, GetRwusdRateHistoryRequest, GetRwusdRateHistoryResponse, GetRwusdRedemptionHistoryRequest, GetRwusdRedemptionHistoryResponse, GetRwusdRedemptionHistoryResponseRowsInner, GetRwusdRewardsHistoryRequest, GetRwusdRewardsHistoryResponse, GetRwusdRewardsHistoryResponseRowsInner, GetRwusdSubscriptionHistoryRequest, GetRwusdSubscriptionHistoryResponse, GetRwusdSubscriptionHistoryResponseRowsInner, GetSimpleEarnFlexibleProductListRequest, GetSimpleEarnFlexibleProductListResponse, GetSimpleEarnFlexibleProductListResponseRowsInner, GetSimpleEarnLockedProductListRequest, GetSimpleEarnLockedProductListResponse, GetSimpleEarnLockedProductListResponseRowsInner, GetSimpleEarnLockedProductListResponseRowsInnerDetail, GetSimpleEarnLockedProductListResponseRowsInnerQuota, RedeemBfusdRequest, RedeemBfusdResponse, RedeemFlexibleProductRequest, RedeemFlexibleProductResponse, RedeemLockedProductRequest, RedeemLockedProductResponse, RedeemRwusdRequest, RedeemRwusdResponse, RestAPI, RwusdApi, RwusdApiInterface, SetFlexibleAutoSubscribeRequest, SetFlexibleAutoSubscribeResponse, SetLockedAutoSubscribeRequest, SetLockedAutoSubscribeResponse, SetLockedProductRedeemOptionRequest, SetLockedProductRedeemOptionResponse, SimpleAccountRequest, SimpleAccountResponse, SubscribeBfusdRequest, SubscribeBfusdResponse, SubscribeFlexibleProductRequest, SubscribeFlexibleProductResponse, SubscribeLockedProductRequest, SubscribeLockedProductResponse, SubscribeRwusdRequest, SubscribeRwusdResponse };
|
|
6142
6175
|
}
|
|
6143
6176
|
//#endregion
|
|
6144
6177
|
//#region src/simple-earn.d.ts
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ let __binance_common = require("@binance/common");
|
|
|
14
14
|
|
|
15
15
|
//#region package.json
|
|
16
16
|
var name = "@binance/simple-earn";
|
|
17
|
-
var version = "
|
|
17
|
+
var version = "13.0.0";
|
|
18
18
|
|
|
19
19
|
//#endregion
|
|
20
20
|
//#region src/rest-api/modules/bfusd-api.ts
|
|
@@ -200,7 +200,7 @@ var BfusdApi = class {
|
|
|
200
200
|
return (0, __binance_common.sendRequest)(this.configuration, localVarAxiosArgs.endpoint, localVarAxiosArgs.method, localVarAxiosArgs.queryParams, localVarAxiosArgs.bodyParams, localVarAxiosArgs?.timeUnit, { isSigned: true });
|
|
201
201
|
}
|
|
202
202
|
/**
|
|
203
|
-
* Get BFUSD quota details including fast redemption quota and standard redemption quota.
|
|
203
|
+
* Get BFUSD quota details including subscription quota, fast redemption quota and standard redemption quota.
|
|
204
204
|
*
|
|
205
205
|
* Weight: 150
|
|
206
206
|
*
|
|
@@ -872,7 +872,7 @@ var FlexibleLockedApi = class {
|
|
|
872
872
|
/**
|
|
873
873
|
* Get Flexible Redemption Record
|
|
874
874
|
*
|
|
875
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
875
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
876
876
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
877
877
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
878
878
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -893,7 +893,7 @@ var FlexibleLockedApi = class {
|
|
|
893
893
|
/**
|
|
894
894
|
* Get Flexible Rewards History
|
|
895
895
|
*
|
|
896
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
896
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
897
897
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
898
898
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
899
899
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -930,7 +930,7 @@ var FlexibleLockedApi = class {
|
|
|
930
930
|
/**
|
|
931
931
|
* Get Flexible Subscription Record
|
|
932
932
|
*
|
|
933
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
933
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
934
934
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
935
935
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
936
936
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -983,7 +983,7 @@ var FlexibleLockedApi = class {
|
|
|
983
983
|
/**
|
|
984
984
|
* Get Locked Redemption Record
|
|
985
985
|
*
|
|
986
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
986
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
987
987
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
988
988
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
989
989
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -1004,7 +1004,7 @@ var FlexibleLockedApi = class {
|
|
|
1004
1004
|
/**
|
|
1005
1005
|
* Get Locked Rewards History
|
|
1006
1006
|
*
|
|
1007
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
1007
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
1008
1008
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
1009
1009
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
1010
1010
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -1041,7 +1041,7 @@ var FlexibleLockedApi = class {
|
|
|
1041
1041
|
/**
|
|
1042
1042
|
* Get Locked Subscription Record
|
|
1043
1043
|
*
|
|
1044
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
1044
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
1045
1045
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
1046
1046
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
1047
1047
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -1634,7 +1634,7 @@ var RestAPI = class {
|
|
|
1634
1634
|
return this.bfusdApi.getBfusdAccount(requestParameters);
|
|
1635
1635
|
}
|
|
1636
1636
|
/**
|
|
1637
|
-
* Get BFUSD quota details including fast redemption quota and standard redemption quota.
|
|
1637
|
+
* Get BFUSD quota details including subscription quota, fast redemption quota and standard redemption quota.
|
|
1638
1638
|
*
|
|
1639
1639
|
* Weight: 150
|
|
1640
1640
|
*
|
|
@@ -1815,7 +1815,7 @@ var RestAPI = class {
|
|
|
1815
1815
|
/**
|
|
1816
1816
|
* Get Flexible Redemption Record
|
|
1817
1817
|
*
|
|
1818
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
1818
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
1819
1819
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
1820
1820
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
1821
1821
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -1835,7 +1835,7 @@ var RestAPI = class {
|
|
|
1835
1835
|
/**
|
|
1836
1836
|
* Get Flexible Rewards History
|
|
1837
1837
|
*
|
|
1838
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
1838
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
1839
1839
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
1840
1840
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
1841
1841
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -1870,7 +1870,7 @@ var RestAPI = class {
|
|
|
1870
1870
|
/**
|
|
1871
1871
|
* Get Flexible Subscription Record
|
|
1872
1872
|
*
|
|
1873
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
1873
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
1874
1874
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
1875
1875
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
1876
1876
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -1920,7 +1920,7 @@ var RestAPI = class {
|
|
|
1920
1920
|
/**
|
|
1921
1921
|
* Get Locked Redemption Record
|
|
1922
1922
|
*
|
|
1923
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
1923
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
1924
1924
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
1925
1925
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
1926
1926
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -1940,7 +1940,7 @@ var RestAPI = class {
|
|
|
1940
1940
|
/**
|
|
1941
1941
|
* Get Locked Rewards History
|
|
1942
1942
|
*
|
|
1943
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
1943
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
1944
1944
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
1945
1945
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
1946
1946
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|
|
@@ -1975,7 +1975,7 @@ var RestAPI = class {
|
|
|
1975
1975
|
/**
|
|
1976
1976
|
* Get Locked Subscription Record
|
|
1977
1977
|
*
|
|
1978
|
-
* The time between `startTime` and `endTime` cannot be longer than
|
|
1978
|
+
* The time between `startTime` and `endTime` cannot be longer than 30 days.
|
|
1979
1979
|
* If `startTime` and `endTime` are both not sent, then the last 30 days' data will be returned.
|
|
1980
1980
|
* If `startTime` is sent but `endTime` is not sent, the next 30 days' data beginning from `startTime` will be returned.
|
|
1981
1981
|
* If `endTime` is sent but `startTime` is not sent, the 30 days' data before `endTime` will be returned.
|