kucoin-api 1.0.2 → 1.0.4

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/README.md CHANGED
@@ -66,6 +66,8 @@ Most methods accept JS objects. These can be populated using parameters specifie
66
66
  - [Spot Node.js Kucoin Quick Start Guide](./examples/kucoin-SPOT-examples-nodejs.md)
67
67
  - [Futures Node.js Kucoin Quick Start Guide](./examples/kucoin-FUTURES-examples-nodejs.md)
68
68
  - [Futures Node.js Kucoin Order Placement Guide](./examples/rest-futures-orders-guide.ts)
69
+
70
+ - [REST Endpoint Function List](./docs/endpointFunctionList.md)
69
71
  <!-- - [TSDoc Documentation (autogenerated using typedoc)](https://tsdocs.dev/docs/kucoin-api) -->
70
72
 
71
73
  ## Structure
@@ -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.4",
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",