@qite/tide-client 1.0.83 → 1.0.85

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
@@ -225,6 +225,7 @@ var post$1 = function (url, apiKey, body, signal) {
225
225
  "Content-Type": "application/json",
226
226
  "Api-Key": apiKey,
227
227
  },
228
+ credentials: "include",
228
229
  body: body,
229
230
  signal: signal,
230
231
  }),
@@ -6222,6 +6223,7 @@ var ENDPOINT_PRICE_DETAILS = ENDPOINT$5 + "/price-details";
6222
6223
  var ENDPOINT_BOOK = ENDPOINT$5 + "/book";
6223
6224
  var ENDPOINT_AGENTS = ENDPOINT$5 + "/agents";
6224
6225
  var ENDPOINT_AVAILABLE_ALLOTMENTS = ENDPOINT$5 + "/get-allotment-availability";
6226
+ var ENDPOINT_FLIGHT_POOL = ENDPOINT$5 + "/flight-pool";
6225
6227
  var readPackageSearchList = function (config, request, signal) {
6226
6228
  var url = "" + config.host + ENDPOINT_PACKAGE_SEARCH_LIST;
6227
6229
  var apiKey = config.apiKey;
@@ -6285,6 +6287,12 @@ var getAllotmentAvailability = function (config, eventId, signal) {
6285
6287
  var apiKey = config.apiKey;
6286
6288
  return get(url, apiKey, signal, true);
6287
6289
  };
6290
+ var searchFlightPool = function (config, request, signal) {
6291
+ var url = "" + config.host + ENDPOINT_FLIGHT_POOL;
6292
+ var apiKey = config.apiKey;
6293
+ var body = JSON.stringify(request);
6294
+ return post(url, apiKey, body, signal, true);
6295
+ };
6288
6296
 
6289
6297
  var ENDPOINT$4 = "/api/member";
6290
6298
  var ENDPOINT_LOGIN = ENDPOINT$4 + "/login";
@@ -6447,5 +6455,6 @@ exports.priceDetails = priceDetails;
6447
6455
  exports.readPackageSearchList = readPackageSearchList;
6448
6456
  exports.resetPassword = resetPassword;
6449
6457
  exports.search = search;
6458
+ exports.searchFlightPool = searchFlightPool;
6450
6459
  exports.searchPackages = searchPackages;
6451
6460
  //# sourceMappingURL=index.js.map