squarefi-bff-api-module 1.24.23 → 1.24.24

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.
@@ -227,5 +227,6 @@ export declare enum CardTransactionStatus {
227
227
  CANCELLED = "CANCELLED",
228
228
  CANCELED = "CANCELED",
229
229
  PENDING = "PENDING",
230
- REVERSED = "REVERSED"
230
+ REVERSED = "REVERSED",
231
+ DECLINED = "DECLINED"
231
232
  }
package/dist/constants.js CHANGED
@@ -259,4 +259,5 @@ var CardTransactionStatus;
259
259
  CardTransactionStatus["CANCELED"] = "CANCELED";
260
260
  CardTransactionStatus["PENDING"] = "PENDING";
261
261
  CardTransactionStatus["REVERSED"] = "REVERSED";
262
+ CardTransactionStatus["DECLINED"] = "DECLINED";
262
263
  })(CardTransactionStatus || (exports.CardTransactionStatus = CardTransactionStatus = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.24.23",
3
+ "version": "1.24.24",
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
@@ -267,4 +267,5 @@ export enum CardTransactionStatus {
267
267
  CANCELED = 'CANCELED',
268
268
  PENDING = 'PENDING',
269
269
  REVERSED = 'REVERSED',
270
+ DECLINED = 'DECLINED',
270
271
  }