@qite/tide-client 1.1.41 → 1.1.42

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 CHANGED
@@ -6283,6 +6283,8 @@ var getBasePricesFromDate = function (config, request, signal) {
6283
6283
  var ENDPOINT$7 = "/api/web/booking/v2";
6284
6284
  var ENDPOINT_PACKAGE_SEARCH_LIST = ENDPOINT$7 + "/package-search-list";
6285
6285
  var ENDPOINT_SEARCH = ENDPOINT$7 + "/search";
6286
+ var ENDPOINT_SEARCH_WITH_ERROR_MAPPING =
6287
+ ENDPOINT$7 + "/search-with-error-mapping";
6286
6288
  var ENDPOINT_DETAILS = ENDPOINT$7 + "/details";
6287
6289
  var ENDPOINT_VALIDATE_VOUCHER = ENDPOINT$7 + "/validate-voucher";
6288
6290
  var ENDPOINT_ALTERNATE_HOTELS = "/alternate-hotels";
@@ -6308,6 +6310,12 @@ var search = function (config, request, signal) {
6308
6310
  var body = JSON.stringify(request);
6309
6311
  return post(url, apiKey, body, config.token, signal, true);
6310
6312
  };
6313
+ var searchWithErrorMapping = function (config, request, signal) {
6314
+ var url = "" + config.host + ENDPOINT_SEARCH_WITH_ERROR_MAPPING;
6315
+ var apiKey = config.apiKey;
6316
+ var body = JSON.stringify(request);
6317
+ return post(url, apiKey, body, config.token, signal, true);
6318
+ };
6311
6319
  var details = function (config, request, signal, languageCode) {
6312
6320
  var url = "" + config.host + ENDPOINT_DETAILS;
6313
6321
  var apiKey = config.apiKey;
@@ -6816,6 +6824,7 @@ exports.resetPassword = resetPassword;
6816
6824
  exports.search = search;
6817
6825
  exports.searchFlightPool = searchFlightPool;
6818
6826
  exports.searchPackages = searchPackages;
6827
+ exports.searchWithErrorMapping = searchWithErrorMapping;
6819
6828
  exports.tourCodes = tourCodes;
6820
6829
  exports.update = update;
6821
6830
  exports.validateVoucher = validateVoucher;