@qite/tide-client 1.1.156 → 1.1.158
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/build/index.js +8 -1
- package/build/index.js.map +1 -1
- package/build/types/booking-v2/response/packaging/packaging-entry.d.ts +1 -1
- package/build/types/booking-v2/shared/index.d.ts +1 -0
- package/build/types/booking-v2/shared/itinerary.d.ts +37 -0
- package/build/utils/packaging-client.d.ts +7 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -7026,10 +7026,10 @@ var ENDPOINT = "/api/web/packaging";
|
|
|
7026
7026
|
var ENDPOINT_START_TRANSACTION = ENDPOINT + "/start";
|
|
7027
7027
|
var ENDPOINT_ACCOMMODATIONS = ENDPOINT + "/accommodations";
|
|
7028
7028
|
var ENDPOINT_PRICE_DETAILS = ENDPOINT + "/price-details";
|
|
7029
|
+
var ENDPOINT_ITINERARY = ENDPOINT + "/itinerary";
|
|
7029
7030
|
var ENDPOINT_ENTRY = function (magicLinkCode) {
|
|
7030
7031
|
return ENDPOINT + "/entry/" + magicLinkCode;
|
|
7031
7032
|
};
|
|
7032
|
-
// MANUAL PACKAGING SEARCH
|
|
7033
7033
|
var startTransaction = function (config, signal) {
|
|
7034
7034
|
var apiKey = config.apiKey;
|
|
7035
7035
|
var url = "" + config.host + ENDPOINT_START_TRANSACTION;
|
|
@@ -7052,6 +7052,12 @@ var getPriceDetails = function (config, request, signal) {
|
|
|
7052
7052
|
var body = JSON.stringify(request);
|
|
7053
7053
|
return post(url, apiKey, body, config.token, signal, true);
|
|
7054
7054
|
};
|
|
7055
|
+
var getItinerary = function (config, request, signal) {
|
|
7056
|
+
var url = "" + config.host + ENDPOINT_ITINERARY;
|
|
7057
|
+
var apiKey = config.apiKey;
|
|
7058
|
+
var body = JSON.stringify(request);
|
|
7059
|
+
return post(url, apiKey, body, config.token, signal, true);
|
|
7060
|
+
};
|
|
7055
7061
|
|
|
7056
7062
|
exports.AllotmentType = AllotmentType;
|
|
7057
7063
|
exports.ContactForm = ContactForm;
|
|
@@ -7104,6 +7110,7 @@ exports.getEntryListv2 = getEntryListv2;
|
|
|
7104
7110
|
exports.getEntryStatus = getEntryStatus;
|
|
7105
7111
|
exports.getEntryTotals = getEntryTotals;
|
|
7106
7112
|
exports.getInvoiceList = getInvoiceList;
|
|
7113
|
+
exports.getItinerary = getItinerary;
|
|
7107
7114
|
exports.getLocations = getLocations;
|
|
7108
7115
|
exports.getMolliePayment = getMolliePayment;
|
|
7109
7116
|
exports.getPortal = getPortal;
|