kucoin-api 1.0.2 → 1.0.3

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.
@@ -8,6 +8,8 @@ export interface GetSpotTransactionsRequest {
8
8
  bizType?: 'DEPOSIT' | 'WITHDRAW' | 'TRANSFER' | 'SUB_TRANSFER' | 'TRADE_EXCHANGE' | 'MARGIN_EXCHANGE' | 'KUCOIN_BONUS' | 'BROKER_TRANSFER' | 'REBATE';
9
9
  startAt?: number;
10
10
  endAt?: number;
11
+ currentPage?: number;
12
+ pageSize?: number;
11
13
  }
12
14
  export interface AccountHFTransactionsRequest {
13
15
  currency?: string;
@@ -8,6 +8,8 @@ export interface GetSpotTransactionsRequest {
8
8
  bizType?: 'DEPOSIT' | 'WITHDRAW' | 'TRANSFER' | 'SUB_TRANSFER' | 'TRADE_EXCHANGE' | 'MARGIN_EXCHANGE' | 'KUCOIN_BONUS' | 'BROKER_TRANSFER' | 'REBATE';
9
9
  startAt?: number;
10
10
  endAt?: number;
11
+ currentPage?: number;
12
+ pageSize?: number;
11
13
  }
12
14
  export interface AccountHFTransactionsRequest {
13
15
  currency?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kucoin-api",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Complete & robust Node.js SDK for Kucoin's REST APIs and WebSockets, with TypeScript & strong end to end tests.",
5
5
  "scripts": {
6
6
  "clean": "rm -rf dist",