@qite/tide-client 1.1.122 → 1.1.124
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 -0
- package/build/index.js.map +1 -1
- package/build/types/booking-v2/response/booking-package-item.d.ts +1 -0
- package/build/types/booking-v2/shared/booking-package-entry.d.ts +5 -0
- package/build/types/booking-v2/shared/index.d.ts +1 -0
- package/build/types/offer/entry-light.d.ts +29 -0
- package/build/types/offer/index.d.ts +1 -0
- package/build/utils/booking-v2-client.d.ts +7 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -6272,6 +6272,7 @@ var ENDPOINT_SEARCH_WITH_ERROR_MAPPING =
|
|
|
6272
6272
|
ENDPOINT$7 + "/search-with-error-mapping";
|
|
6273
6273
|
// const ENDPOINT_ELASTIC = `${ENDPOINT}/elastic`; // TODO
|
|
6274
6274
|
var ENDPOINT_DETAILS = ENDPOINT$7 + "/details";
|
|
6275
|
+
var ENDPOINT_DETAILS_WL = ENDPOINT$7 + "/details-wl";
|
|
6275
6276
|
var ENDPOINT_VALIDATE_VOUCHER = ENDPOINT$7 + "/validate-voucher";
|
|
6276
6277
|
var ENDPOINT_ALTERNATE_HOTELS = function (transactionId, optionId) {
|
|
6277
6278
|
return (
|
|
@@ -6359,6 +6360,12 @@ var details = function (config, request, signal, languageCode) {
|
|
|
6359
6360
|
var body = JSON.stringify(request);
|
|
6360
6361
|
return post(url, apiKey, body, config.token, signal, true, languageCode);
|
|
6361
6362
|
};
|
|
6363
|
+
var detailsWL = function (config, request, signal, languageCode) {
|
|
6364
|
+
var url = "" + config.host + ENDPOINT_DETAILS_WL;
|
|
6365
|
+
var apiKey = config.apiKey;
|
|
6366
|
+
var body = JSON.stringify(request);
|
|
6367
|
+
return post(url, apiKey, body, config.token, signal, true, languageCode);
|
|
6368
|
+
};
|
|
6362
6369
|
var validateVoucher = function (config, request, signal) {
|
|
6363
6370
|
var url = "" + config.host + ENDPOINT_VALIDATE_VOUCHER;
|
|
6364
6371
|
var apiKey = config.apiKey;
|
|
@@ -6938,6 +6945,7 @@ exports.contactHasTag = contactHasTag;
|
|
|
6938
6945
|
exports.createCrmContact = createCrmContact;
|
|
6939
6946
|
exports.createParams = createParams;
|
|
6940
6947
|
exports.details = details;
|
|
6948
|
+
exports.detailsWL = detailsWL;
|
|
6941
6949
|
exports.feedXml = feedXml;
|
|
6942
6950
|
exports.feedXmlFolder = feedXmlFolder;
|
|
6943
6951
|
exports.flightLines = flightLines;
|