@qite/tide-client 1.1.24 → 1.1.26

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
@@ -6175,11 +6175,11 @@ var alternateFlights = function (config, transactionId, signal) {
6175
6175
  var apiKey = config.apiKey;
6176
6176
  return get(url, apiKey, signal, true);
6177
6177
  };
6178
- var priceDetails = function (config, request, signal) {
6178
+ var priceDetails = function (config, request, signal, languageCode) {
6179
6179
  var url = "" + config.host + ENDPOINT_PRICE_DETAILS;
6180
6180
  var apiKey = config.apiKey;
6181
6181
  var body = JSON.stringify(request);
6182
- return post(url, apiKey, body, signal, true);
6182
+ return post(url, apiKey, body, signal, true, languageCode);
6183
6183
  };
6184
6184
  var book = function (config, request, signal, languageCode) {
6185
6185
  var url = "" + config.host + ENDPOINT_BOOK;