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.
@@ -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[]>;
@@ -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
- subaccounId?: string;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "binance",
3
- "version": "2.2.5",
3
+ "version": "2.2.6",
4
4
  "description": "Node.js connector for Binance's REST APIs and WebSockets, with TypeScript & integration tests.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",