mts-booking-library 1.2.23 → 1.2.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.
@@ -59,14 +59,14 @@ export declare enum GatewayTypes {
|
|
59
59
|
* @property {string} WALLET: Only for Resellers: the ticket will be paid with the wallet balance
|
60
60
|
* @property {string} CARD: Pay with card at the Seller/Reseller counter
|
61
61
|
* @property {string} CASH: Pay with cash at the Seller/Reseller counter
|
62
|
-
* @property {string}
|
62
|
+
* @property {string} ONLINE_CARD: Pay online using payment gateways
|
63
63
|
*/
|
64
64
|
export declare enum PaymentMethods {
|
65
65
|
CARD = "CARD",
|
66
66
|
CASH = "CASH",
|
67
67
|
CREDIT_FROM_CHANGE = "CREDIT_FROM_CHANGE",
|
68
68
|
PAY_LATER = "PAY_LATER",
|
69
|
-
ONLINE_CARD = "
|
69
|
+
ONLINE_CARD = "ONLINE_CARD",
|
70
70
|
WALLET = "WALLET",
|
71
71
|
ZERO_COST = "ZERO_COST"
|
72
72
|
}
|
@@ -19,7 +19,7 @@ var GatewayTypes;
|
|
19
19
|
* @property {string} WALLET: Only for Resellers: the ticket will be paid with the wallet balance
|
20
20
|
* @property {string} CARD: Pay with card at the Seller/Reseller counter
|
21
21
|
* @property {string} CASH: Pay with cash at the Seller/Reseller counter
|
22
|
-
* @property {string}
|
22
|
+
* @property {string} ONLINE_CARD: Pay online using payment gateways
|
23
23
|
*/
|
24
24
|
var PaymentMethods;
|
25
25
|
(function (PaymentMethods) {
|
@@ -27,7 +27,7 @@ var PaymentMethods;
|
|
27
27
|
PaymentMethods["CASH"] = "CASH";
|
28
28
|
PaymentMethods["CREDIT_FROM_CHANGE"] = "CREDIT_FROM_CHANGE";
|
29
29
|
PaymentMethods["PAY_LATER"] = "PAY_LATER";
|
30
|
-
PaymentMethods["ONLINE_CARD"] = "
|
30
|
+
PaymentMethods["ONLINE_CARD"] = "ONLINE_CARD";
|
31
31
|
PaymentMethods["WALLET"] = "WALLET";
|
32
32
|
PaymentMethods["ZERO_COST"] = "ZERO_COST";
|
33
33
|
})(PaymentMethods || (exports.PaymentMethods = PaymentMethods = {}));
|