mts-booking-library 1.2.22 → 1.2.24
Sign up to get free protection for your applications and to get access to all the features.
package/lib/booking/booking.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { MTSConfig, MTSEnvs } from "../config";
|
2
2
|
import { ErrorResponse } from "../types/ErrorResponse";
|
3
|
-
import { GetPaymentInformationFromGatewayResponse, GetSellerGatewaysResponse, PaymentMethods,
|
3
|
+
import { GetPaymentInformationFromGatewayResponse, GetSellerGatewaysResponse, PaymentMethods, IssueTicketsResponse } from "../types/common/Payment";
|
4
4
|
import { GetBuyerPassengersDetailsResponse, Person } from "../types/common/Person";
|
5
5
|
import { AddReductionRequest } from "../types/common/Reduction";
|
6
6
|
export declare abstract class Booking {
|
@@ -85,12 +85,9 @@ export declare abstract class Booking {
|
|
85
85
|
* @description This method shall be used to issue the tickets. It must be called after the payment was successful.
|
86
86
|
* @param {PaymentMethods} paymentMethod The payment method used to pay the cart. If the chosen method is {@link PaymentMethods.ZERO_COST},
|
87
87
|
* first the {@link Booking.addReduction} API is called with a 100% discount, then tickets are issued with the {@link PaymentMethods.CASH} method.
|
88
|
-
* @returns An {@link
|
88
|
+
* @returns An {@link IssueTicketsResponse} object.
|
89
89
|
*/
|
90
|
-
issueTickets(paymentMethod: PaymentMethods): Promise<ErrorResponse |
|
91
|
-
wallet: Wallet;
|
92
|
-
result: boolean;
|
93
|
-
}>;
|
90
|
+
issueTickets(paymentMethod: PaymentMethods): Promise<ErrorResponse | IssueTicketsResponse>;
|
94
91
|
}
|
95
92
|
export declare namespace Booking {
|
96
93
|
enum Currencies {
|
package/lib/booking/booking.js
CHANGED
@@ -271,7 +271,7 @@ var Booking = /** @class */ (function () {
|
|
271
271
|
* @description This method shall be used to issue the tickets. It must be called after the payment was successful.
|
272
272
|
* @param {PaymentMethods} paymentMethod The payment method used to pay the cart. If the chosen method is {@link PaymentMethods.ZERO_COST},
|
273
273
|
* first the {@link Booking.addReduction} API is called with a 100% discount, then tickets are issued with the {@link PaymentMethods.CASH} method.
|
274
|
-
* @returns An {@link
|
274
|
+
* @returns An {@link IssueTicketsResponse} object.
|
275
275
|
*/
|
276
276
|
Booking.prototype.issueTickets = function (paymentMethod) {
|
277
277
|
var _a;
|
@@ -337,7 +337,7 @@ var Booking = /** @class */ (function () {
|
|
337
337
|
paymentMethod: paymentMethodToSet === Payment_1.PaymentMethods.PAY_LATER ? null : paymentMethodToSet,
|
338
338
|
};
|
339
339
|
return [2 /*return*/, this.callPostApi(url, body).then(function (response) {
|
340
|
-
return (0, ErrorResponse_1.objectIsMTSErrorResponse)(response) ? response :
|
340
|
+
return (0, ErrorResponse_1.objectIsMTSErrorResponse)(response) ? response : response;
|
341
341
|
})];
|
342
342
|
}
|
343
343
|
});
|
package/lib/index.d.ts
CHANGED
@@ -7,7 +7,7 @@ export { GetBuyerPassengersDetailsResponse, GetPassenger, BuyerDataStatus } from
|
|
7
7
|
export { EditPassengerRequestType, EditPassengersDetailsRequest } from "./types/common/Person";
|
8
8
|
export { Tariff, TariffsMatrix, TariffSummary, TariffType, TermsType, PassengerTariff, ExtraTariff } from "./types/common/Tariffs";
|
9
9
|
export { Reduction, AddReductionRequest } from "./types/common/Reduction";
|
10
|
-
export { Gateway, GetSellerGatewaysResponse, GetPaymentInformationFromGatewayResponse, GatewayTypes, PaymentMethods } from "./types/common/Payment";
|
10
|
+
export { Gateway, GetSellerGatewaysResponse, GetPaymentInformationFromGatewayResponse, IssueTicketsResponse, GatewayTypes, PaymentMethods } from "./types/common/Payment";
|
11
11
|
export { ErrorResponse, objectIsMTSErrorResponse } from "./types/ErrorResponse";
|
12
12
|
export { BusLayoutCell, BusMatrix, BusCellTypes, SeatStatus } from "./types/journeys/BusMatrix";
|
13
13
|
export { JourneyCart, JourneyBookingType, CreateJourneyCartRequest, TripBookingInfo, DEFAULT_CREATE_JOURNEY_CART } from "./types/journeys/JourneyCart";
|
@@ -10,7 +10,7 @@ export type Gateway = {
|
|
10
10
|
name: string;
|
11
11
|
};
|
12
12
|
/**
|
13
|
-
* @description This type represents the response of the {@link Booking.getSellerGateways} API. Note that at least
|
13
|
+
* @description This type represents the response of the {@link Booking.getSellerGateways()} API. Note that at least
|
14
14
|
* one of the two fields will be null, depending on the seller configuration.
|
15
15
|
* @param {Gateway | null} cardGatewayDTO The card gateway, if available. Currecntly this can only be {@link GatewayTypes.AXEPTA_BNL}
|
16
16
|
* or {@link GatewayTypes.AXERVE_BANCASELLA}
|
@@ -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
|
}
|
@@ -77,3 +77,17 @@ export type Wallet = {
|
|
77
77
|
balance: any;
|
78
78
|
walletTransactions: any[];
|
79
79
|
};
|
80
|
+
/**
|
81
|
+
* @description This type represents the response of the {@link Booking.issueTickets} API.
|
82
|
+
* @param {Wallet} wallet If the booking was performed by a reseller, this field contains the wallet with the updated balance.
|
83
|
+
* @param {string} ticketsSentToEmail This field contains the email address to which the tickets were sent.
|
84
|
+
* If the buyer email was specified, this field will contain the buyer email. Otherwise, if the reseller performed the booking, this
|
85
|
+
* field will contain the reseller email. Otherwise, it will be the seller's email. If this is also not available, this field will contain
|
86
|
+
* the MTS email.
|
87
|
+
* @param {string[]} PNRs An array of PNRs associated with the booking.
|
88
|
+
*/
|
89
|
+
export type IssueTicketsResponse = {
|
90
|
+
wallet: Wallet | null;
|
91
|
+
ticketsSentToEmail: string;
|
92
|
+
pnrs: string[];
|
93
|
+
};
|
@@ -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 = {}));
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "mts-booking-library",
|
3
|
-
"version": "1.2.
|
3
|
+
"version": "1.2.24",
|
4
4
|
"description": "Library for use MyTicketSolution Booking API",
|
5
5
|
"main": "lib/index.js",
|
6
6
|
"types": "lib/index.d.ts",
|
@@ -28,7 +28,7 @@
|
|
28
28
|
],
|
29
29
|
"author": "M",
|
30
30
|
"dependencies": {
|
31
|
-
"axios": "^1.6.
|
31
|
+
"axios": "^1.6.5",
|
32
32
|
"node-localstorage": "^3.0.5"
|
33
33
|
}
|
34
34
|
}
|