squarefi-bff-api-module 1.24.24 → 1.24.25

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.
@@ -26,7 +26,8 @@ export declare enum CardTransactionType {
26
26
  ORIGINAL_CREDIT = "ORIGINAL_CREDIT",
27
27
  FEE = "FEE",
28
28
  DEPOSIT = "DEPOSIT",
29
- WITHDRAWAL = "WITHDRAWAL"
29
+ WITHDRAWAL = "WITHDRAWAL",
30
+ PAYMENT = "PAYMENT"
30
31
  }
31
32
  export declare enum WalletTransactionType {
32
33
  DEPOSIT = "deposit",
package/dist/constants.js CHANGED
@@ -27,6 +27,7 @@ var CardTransactionType;
27
27
  CardTransactionType["FEE"] = "FEE";
28
28
  CardTransactionType["DEPOSIT"] = "DEPOSIT";
29
29
  CardTransactionType["WITHDRAWAL"] = "WITHDRAWAL";
30
+ CardTransactionType["PAYMENT"] = "PAYMENT";
30
31
  })(CardTransactionType || (exports.CardTransactionType = CardTransactionType = {}));
31
32
  var WalletTransactionType;
32
33
  (function (WalletTransactionType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.24.24",
3
+ "version": "1.24.25",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/constants.ts CHANGED
@@ -33,6 +33,7 @@ export enum CardTransactionType {
33
33
  FEE = 'FEE',
34
34
  DEPOSIT = 'DEPOSIT',
35
35
  WITHDRAWAL = 'WITHDRAWAL',
36
+ PAYMENT = 'PAYMENT',
36
37
  }
37
38
 
38
39
  export enum WalletTransactionType {