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