@bondsports/types 1.38.0 → 1.39.0
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/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/payment/types/consts/void.consts.js +2 -2
- package/dist/types/payment/types/enums/payment.enums.d.ts +2 -2
- package/dist/types/payment/types/enums/payment.enums.js +2 -2
- package/dist/types/payment/types/enums/void.enums.d.ts +1 -1
- package/dist/types/payment/types/enums/void.enums.js +1 -1
- package/package.json +1 -1
|
@@ -6,11 +6,11 @@ const void_enums_1 = require("../enums/void.enums");
|
|
|
6
6
|
exports.paymentStatusMapper = {
|
|
7
7
|
[void_enums_1.VoidTypeEnum.VOID]: payment_enums_1.PaymentStatusEnum.VOID,
|
|
8
8
|
[void_enums_1.VoidTypeEnum.DISCOUNT]: payment_enums_1.PaymentStatusEnum.DISCOUNT,
|
|
9
|
-
[void_enums_1.VoidTypeEnum.
|
|
9
|
+
[void_enums_1.VoidTypeEnum.REVERT_DISCOUNT]: payment_enums_1.PaymentStatusEnum.REVERT_DISCOUNT,
|
|
10
10
|
};
|
|
11
11
|
exports.paymentMethodMapper = {
|
|
12
12
|
[void_enums_1.VoidTypeEnum.VOID]: payment_enums_1.PaymentMethodTypeEnum.VOID,
|
|
13
13
|
[void_enums_1.VoidTypeEnum.DISCOUNT]: payment_enums_1.PaymentMethodTypeEnum.DISCOUNT,
|
|
14
|
-
[void_enums_1.VoidTypeEnum.
|
|
14
|
+
[void_enums_1.VoidTypeEnum.REVERT_DISCOUNT]: payment_enums_1.PaymentMethodTypeEnum.REVERT_DISCOUNT,
|
|
15
15
|
};
|
|
16
16
|
//# sourceMappingURL=void.consts.js.map
|
|
@@ -5,7 +5,7 @@ export declare enum PaymentStatusEnum {
|
|
|
5
5
|
REFUNDED = "refunded",
|
|
6
6
|
VOID = "void",
|
|
7
7
|
DISCOUNT = "discount",
|
|
8
|
-
|
|
8
|
+
REVERT_DISCOUNT = "revert_discount",
|
|
9
9
|
REVERT = "revert",
|
|
10
10
|
PENDING = "pending"
|
|
11
11
|
}
|
|
@@ -46,7 +46,7 @@ export declare enum PaymentMethodTypeEnum {
|
|
|
46
46
|
LOST_DEBT = "lost-debt",
|
|
47
47
|
VOID = "void",
|
|
48
48
|
DISCOUNT = "discount",
|
|
49
|
-
|
|
49
|
+
REVERT_DISCOUNT = "revert_discount"
|
|
50
50
|
}
|
|
51
51
|
export declare enum PaymentProcessorEnum {
|
|
52
52
|
STRIPE = "stripe",
|
|
@@ -9,7 +9,7 @@ var PaymentStatusEnum;
|
|
|
9
9
|
PaymentStatusEnum["REFUNDED"] = "refunded";
|
|
10
10
|
PaymentStatusEnum["VOID"] = "void";
|
|
11
11
|
PaymentStatusEnum["DISCOUNT"] = "discount";
|
|
12
|
-
PaymentStatusEnum["
|
|
12
|
+
PaymentStatusEnum["REVERT_DISCOUNT"] = "revert_discount";
|
|
13
13
|
PaymentStatusEnum["REVERT"] = "revert";
|
|
14
14
|
PaymentStatusEnum["PENDING"] = "pending";
|
|
15
15
|
})(PaymentStatusEnum = exports.PaymentStatusEnum || (exports.PaymentStatusEnum = {}));
|
|
@@ -55,7 +55,7 @@ var PaymentMethodTypeEnum;
|
|
|
55
55
|
PaymentMethodTypeEnum["LOST_DEBT"] = "lost-debt";
|
|
56
56
|
PaymentMethodTypeEnum["VOID"] = "void";
|
|
57
57
|
PaymentMethodTypeEnum["DISCOUNT"] = "discount";
|
|
58
|
-
PaymentMethodTypeEnum["
|
|
58
|
+
PaymentMethodTypeEnum["REVERT_DISCOUNT"] = "revert_discount";
|
|
59
59
|
})(PaymentMethodTypeEnum = exports.PaymentMethodTypeEnum || (exports.PaymentMethodTypeEnum = {}));
|
|
60
60
|
var PaymentProcessorEnum;
|
|
61
61
|
(function (PaymentProcessorEnum) {
|
|
@@ -5,6 +5,6 @@ var VoidTypeEnum;
|
|
|
5
5
|
(function (VoidTypeEnum) {
|
|
6
6
|
VoidTypeEnum["VOID"] = "void";
|
|
7
7
|
VoidTypeEnum["DISCOUNT"] = "discount";
|
|
8
|
-
VoidTypeEnum["
|
|
8
|
+
VoidTypeEnum["REVERT_DISCOUNT"] = "revert_discount";
|
|
9
9
|
})(VoidTypeEnum = exports.VoidTypeEnum || (exports.VoidTypeEnum = {}));
|
|
10
10
|
//# sourceMappingURL=void.enums.js.map
|