@100pay-hq/100pay.js 1.3.2 → 1.3.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.
package/dist/index.d.cts CHANGED
@@ -83,6 +83,7 @@ type CurrencyConversionResult = {
83
83
  };
84
84
 
85
85
  interface IWalletTransaction {
86
+ _id: string;
86
87
  accountId: string;
87
88
  subAccountId: string;
88
89
  appId: string;
@@ -142,7 +143,7 @@ interface ITransferHistoryParams extends Record<string, unknown> {
142
143
  /** Optional account address to filter transfers */
143
144
  addresses?: string[];
144
145
  /** Optional currency symbol to filter transfers */
145
- symbol?: string;
146
+ symbols?: string[];
146
147
  /** Page number for pagination */
147
148
  page?: number;
148
149
  /** Number of records per page */
@@ -177,6 +178,10 @@ interface ITransferHistoryResponse {
177
178
  limit: number;
178
179
  /** Total number of pages */
179
180
  pages: number;
181
+ /** Has next page */
182
+ hasNextPage: boolean;
183
+ /** Has previous page */
184
+ hasPreviousPage: boolean;
180
185
  };
181
186
  }
182
187
  /**
package/dist/index.d.ts CHANGED
@@ -83,6 +83,7 @@ type CurrencyConversionResult = {
83
83
  };
84
84
 
85
85
  interface IWalletTransaction {
86
+ _id: string;
86
87
  accountId: string;
87
88
  subAccountId: string;
88
89
  appId: string;
@@ -142,7 +143,7 @@ interface ITransferHistoryParams extends Record<string, unknown> {
142
143
  /** Optional account address to filter transfers */
143
144
  addresses?: string[];
144
145
  /** Optional currency symbol to filter transfers */
145
- symbol?: string;
146
+ symbols?: string[];
146
147
  /** Page number for pagination */
147
148
  page?: number;
148
149
  /** Number of records per page */
@@ -177,6 +178,10 @@ interface ITransferHistoryResponse {
177
178
  limit: number;
178
179
  /** Total number of pages */
179
180
  pages: number;
181
+ /** Has next page */
182
+ hasNextPage: boolean;
183
+ /** Has previous page */
184
+ hasPreviousPage: boolean;
180
185
  };
181
186
  }
182
187
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@100pay-hq/100pay.js",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "100Pay.js is the official Nodejs API wrapper SDK that lets you easily verify crypto payments, run bulk payout, transfer assets and many more.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",