binance 2.2.5 → 2.2.6
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/lib/main-client.d.ts +1 -1
- package/lib/types/spot.d.ts +3 -1
- package/package.json +1 -1
package/lib/main-client.d.ts
CHANGED
|
@@ -89,7 +89,7 @@ export declare class MainClient extends BaseRestClient {
|
|
|
89
89
|
rebateWorking: boolean;
|
|
90
90
|
ifNewUser: boolean;
|
|
91
91
|
}>;
|
|
92
|
-
getBrokerSubAccountDepositHistory(params?: GetBrokerSubAccountDepositHistoryParams): Promise<BrokerSubAccountDepositHistory>;
|
|
92
|
+
getBrokerSubAccountDepositHistory(params?: GetBrokerSubAccountDepositHistoryParams): Promise<BrokerSubAccountDepositHistory[]>;
|
|
93
93
|
getBrokerUserCustomisedId(market: 'spot' | 'futures'): import("./util/requestUtils").GenericAPIResponse<any>;
|
|
94
94
|
createBrokerSubAccount(params: CreateBrokerSubAccountParams): Promise<BrokerSubAccount>;
|
|
95
95
|
getBrokerSubAccountHistory(params: GetBrokerSubAccountHistoryParams): Promise<BrokerSubAccountHistory[]>;
|
package/lib/types/spot.d.ts
CHANGED
|
@@ -809,6 +809,7 @@ export interface GetBrokerSubAccountHistoryParams {
|
|
|
809
809
|
endTime?: number;
|
|
810
810
|
page?: number;
|
|
811
811
|
limit?: number;
|
|
812
|
+
showAllStatus?: boolean;
|
|
812
813
|
}
|
|
813
814
|
export interface CreateBrokerSubAccountParams {
|
|
814
815
|
tag?: string;
|
|
@@ -883,7 +884,7 @@ export interface GetUniversalTransferBrokerParams {
|
|
|
883
884
|
showAllStatus?: boolean;
|
|
884
885
|
}
|
|
885
886
|
export interface GetBrokerSubAccountDepositHistoryParams {
|
|
886
|
-
|
|
887
|
+
subAccountId?: string;
|
|
887
888
|
coin?: string;
|
|
888
889
|
status?: number;
|
|
889
890
|
startTime?: number;
|
|
@@ -1297,6 +1298,7 @@ export interface FlexibleSavingBasicParams {
|
|
|
1297
1298
|
featured?: number;
|
|
1298
1299
|
current?: number;
|
|
1299
1300
|
size?: number;
|
|
1301
|
+
asset?: string;
|
|
1300
1302
|
}
|
|
1301
1303
|
export interface FlexibleProductPositionParams {
|
|
1302
1304
|
status?: string;
|