@qite/tide-client 1.0.87 → 1.0.90

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
@@ -6294,17 +6294,11 @@ var searchFlightPool = function (config, request, signal) {
6294
6294
  var body = JSON.stringify(request);
6295
6295
  return post(url, apiKey, body, signal, true);
6296
6296
  };
6297
- var bookableDates = function (config, productCode, allotmentTourCode, signal) {
6298
- var url =
6299
- "" +
6300
- config.host +
6301
- ENDPOINT_BOOKABLE_DATES +
6302
- "/" +
6303
- productCode +
6304
- "/" +
6305
- allotmentTourCode;
6297
+ var bookableDates = function (config, request, signal) {
6298
+ var url = "" + config.host + ENDPOINT_BOOKABLE_DATES;
6306
6299
  var apiKey = config.apiKey;
6307
- return get(url, apiKey, signal, true);
6300
+ var body = JSON.stringify(request);
6301
+ return post(url, apiKey, body, signal, true);
6308
6302
  };
6309
6303
 
6310
6304
  var ENDPOINT$4 = "/api/member";