squarefi-bff-api-module 1.24.27 → 1.24.29

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.
@@ -854,8 +854,8 @@ export declare namespace API {
854
854
  namespace TransactionList {
855
855
  interface Request {
856
856
  sub_account_id: string;
857
- limit?: number;
858
- offset?: number;
857
+ limit: number;
858
+ offset: number;
859
859
  card_id?: string;
860
860
  from_timestamp?: string;
861
861
  to_timestamp?: string;
@@ -27,7 +27,8 @@ export declare enum CardTransactionType {
27
27
  FEE = "FEE",
28
28
  DEPOSIT = "DEPOSIT",
29
29
  WITHDRAWAL = "WITHDRAWAL",
30
- PAYMENT = "PAYMENT"
30
+ PAYMENT = "PAYMENT",
31
+ PURCHASE = "PURCHASE"
31
32
  }
32
33
  export declare enum WalletTransactionType {
33
34
  DEPOSIT = "deposit",
package/dist/constants.js CHANGED
@@ -28,6 +28,7 @@ var CardTransactionType;
28
28
  CardTransactionType["DEPOSIT"] = "DEPOSIT";
29
29
  CardTransactionType["WITHDRAWAL"] = "WITHDRAWAL";
30
30
  CardTransactionType["PAYMENT"] = "PAYMENT";
31
+ CardTransactionType["PURCHASE"] = "PURCHASE";
31
32
  })(CardTransactionType || (exports.CardTransactionType = CardTransactionType = {}));
32
33
  var WalletTransactionType;
33
34
  (function (WalletTransactionType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.24.27",
3
+ "version": "1.24.29",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1017,8 +1017,8 @@ export namespace API {
1017
1017
  export namespace TransactionList {
1018
1018
  export interface Request {
1019
1019
  sub_account_id: string;
1020
- limit?: number;
1021
- offset?: number;
1020
+ limit: number;
1021
+ offset: number;
1022
1022
  card_id?: string;
1023
1023
  from_timestamp?: string;
1024
1024
  to_timestamp?: string;
package/src/constants.ts CHANGED
@@ -34,6 +34,7 @@ export enum CardTransactionType {
34
34
  DEPOSIT = 'DEPOSIT',
35
35
  WITHDRAWAL = 'WITHDRAWAL',
36
36
  PAYMENT = 'PAYMENT',
37
+ PURCHASE = 'PURCHASE',
37
38
  }
38
39
 
39
40
  export enum WalletTransactionType {