squarefi-bff-api-module 1.24.22 → 1.24.23
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/constants.d.ts +1 -0
- package/dist/constants.js +1 -0
- package/package.json +1 -1
- package/src/constants.ts +1 -0
package/dist/constants.d.ts
CHANGED
|
@@ -221,6 +221,7 @@ export declare enum CounterpartyDestinationType {
|
|
|
221
221
|
export declare enum CardTransactionStatus {
|
|
222
222
|
APPROVED = "APPROVED",
|
|
223
223
|
CLEARED = "CLEARED",
|
|
224
|
+
COMPLETED = "COMPLETED",
|
|
224
225
|
EXPIRED = "EXPIRED",
|
|
225
226
|
FAILED = "FAILED",
|
|
226
227
|
CANCELLED = "CANCELLED",
|
package/dist/constants.js
CHANGED
|
@@ -252,6 +252,7 @@ var CardTransactionStatus;
|
|
|
252
252
|
(function (CardTransactionStatus) {
|
|
253
253
|
CardTransactionStatus["APPROVED"] = "APPROVED";
|
|
254
254
|
CardTransactionStatus["CLEARED"] = "CLEARED";
|
|
255
|
+
CardTransactionStatus["COMPLETED"] = "COMPLETED";
|
|
255
256
|
CardTransactionStatus["EXPIRED"] = "EXPIRED";
|
|
256
257
|
CardTransactionStatus["FAILED"] = "FAILED";
|
|
257
258
|
CardTransactionStatus["CANCELLED"] = "CANCELLED";
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED