@binance/simple-earn 10.0.2 → 11.0.1
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 +15 -3
- package/dist/index.d.ts +15 -3
- package/dist/index.js +1 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -31,7 +31,13 @@ interface GetBfusdAccountResponse {
|
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof GetBfusdAccountResponse
|
|
33
33
|
*/
|
|
34
|
-
|
|
34
|
+
usdtProfit?: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof GetBfusdAccountResponse
|
|
39
|
+
*/
|
|
40
|
+
bfusdProfit?: string;
|
|
35
41
|
}
|
|
36
42
|
//#endregion
|
|
37
43
|
//#region src/rest-api/types/get-bfusd-quota-details-response-fast-redemption-quota.d.ts
|
|
@@ -326,6 +332,12 @@ interface GetBfusdRewardsHistoryResponseRowsInner {
|
|
|
326
332
|
* @memberof GetBfusdRewardsHistoryResponseRowsInner
|
|
327
333
|
*/
|
|
328
334
|
time?: number | bigint;
|
|
335
|
+
/**
|
|
336
|
+
*
|
|
337
|
+
* @type {string}
|
|
338
|
+
* @memberof GetBfusdRewardsHistoryResponseRowsInner
|
|
339
|
+
*/
|
|
340
|
+
rewardAsset?: string;
|
|
329
341
|
/**
|
|
330
342
|
*
|
|
331
343
|
* @type {string}
|
|
@@ -4618,7 +4630,7 @@ interface SubscribeLockedProductRequest {
|
|
|
4618
4630
|
*/
|
|
4619
4631
|
readonly sourceAccount?: string;
|
|
4620
4632
|
/**
|
|
4621
|
-
* `SPOT`,`FLEXIBLE`, default `
|
|
4633
|
+
* `SPOT`,`FLEXIBLE`, default `SPOT`
|
|
4622
4634
|
* @type {string}
|
|
4623
4635
|
* @memberof FlexibleLockedApiSubscribeLockedProduct
|
|
4624
4636
|
*/
|
|
@@ -6146,5 +6158,5 @@ declare class SimpleEarn {
|
|
|
6146
6158
|
constructor(config: ConfigurationSimpleEarn);
|
|
6147
6159
|
}
|
|
6148
6160
|
//#endregion
|
|
6149
|
-
export { BadRequestError, ConfigurationSimpleEarn, ConnectorClientError, ForbiddenError, NetworkError, NotFoundError, RateLimitBanError, RequiredError, SIMPLE_EARN_REST_API_PROD_URL, ServerError, SimpleEarn, index_d_exports as SimpleEarnRestAPI, TooManyRequestsError, UnauthorizedError };
|
|
6161
|
+
export { BadRequestError, type ConfigurationSimpleEarn, ConnectorClientError, ForbiddenError, NetworkError, NotFoundError, RateLimitBanError, RequiredError, SIMPLE_EARN_REST_API_PROD_URL, ServerError, SimpleEarn, index_d_exports as SimpleEarnRestAPI, TooManyRequestsError, UnauthorizedError };
|
|
6150
6162
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/index.d.ts
CHANGED
|
@@ -33,7 +33,13 @@ interface GetBfusdAccountResponse {
|
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof GetBfusdAccountResponse
|
|
35
35
|
*/
|
|
36
|
-
|
|
36
|
+
usdtProfit?: string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof GetBfusdAccountResponse
|
|
41
|
+
*/
|
|
42
|
+
bfusdProfit?: string;
|
|
37
43
|
}
|
|
38
44
|
//#endregion
|
|
39
45
|
//#region src/rest-api/types/get-bfusd-quota-details-response-fast-redemption-quota.d.ts
|
|
@@ -328,6 +334,12 @@ interface GetBfusdRewardsHistoryResponseRowsInner {
|
|
|
328
334
|
* @memberof GetBfusdRewardsHistoryResponseRowsInner
|
|
329
335
|
*/
|
|
330
336
|
time?: number | bigint;
|
|
337
|
+
/**
|
|
338
|
+
*
|
|
339
|
+
* @type {string}
|
|
340
|
+
* @memberof GetBfusdRewardsHistoryResponseRowsInner
|
|
341
|
+
*/
|
|
342
|
+
rewardAsset?: string;
|
|
331
343
|
/**
|
|
332
344
|
*
|
|
333
345
|
* @type {string}
|
|
@@ -4620,7 +4632,7 @@ interface SubscribeLockedProductRequest {
|
|
|
4620
4632
|
*/
|
|
4621
4633
|
readonly sourceAccount?: string;
|
|
4622
4634
|
/**
|
|
4623
|
-
* `SPOT`,`FLEXIBLE`, default `
|
|
4635
|
+
* `SPOT`,`FLEXIBLE`, default `SPOT`
|
|
4624
4636
|
* @type {string}
|
|
4625
4637
|
* @memberof FlexibleLockedApiSubscribeLockedProduct
|
|
4626
4638
|
*/
|
|
@@ -6148,5 +6160,5 @@ declare class SimpleEarn {
|
|
|
6148
6160
|
constructor(config: ConfigurationSimpleEarn);
|
|
6149
6161
|
}
|
|
6150
6162
|
//#endregion
|
|
6151
|
-
export { BadRequestError, ConfigurationSimpleEarn, ConnectorClientError, ForbiddenError, NetworkError, NotFoundError, RateLimitBanError, RequiredError, SIMPLE_EARN_REST_API_PROD_URL, ServerError, SimpleEarn, index_d_exports as SimpleEarnRestAPI, TooManyRequestsError, UnauthorizedError };
|
|
6163
|
+
export { BadRequestError, type ConfigurationSimpleEarn, ConnectorClientError, ForbiddenError, NetworkError, NotFoundError, RateLimitBanError, RequiredError, SIMPLE_EARN_REST_API_PROD_URL, ServerError, SimpleEarn, index_d_exports as SimpleEarnRestAPI, TooManyRequestsError, UnauthorizedError };
|
|
6152
6164
|
//# sourceMappingURL=index.d.ts.map
|
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 = "11.0.1";
|
|
18
18
|
|
|
19
19
|
//#endregion
|
|
20
20
|
//#region src/rest-api/modules/bfusd-api.ts
|
|
@@ -2270,12 +2270,6 @@ Object.defineProperty(exports, 'BadRequestError', {
|
|
|
2270
2270
|
return __binance_common.BadRequestError;
|
|
2271
2271
|
}
|
|
2272
2272
|
});
|
|
2273
|
-
Object.defineProperty(exports, 'ConfigurationSimpleEarn', {
|
|
2274
|
-
enumerable: true,
|
|
2275
|
-
get: function () {
|
|
2276
|
-
return ConfigurationSimpleEarn;
|
|
2277
|
-
}
|
|
2278
|
-
});
|
|
2279
2273
|
Object.defineProperty(exports, 'ConnectorClientError', {
|
|
2280
2274
|
enumerable: true,
|
|
2281
2275
|
get: function () {
|