@qite/tide-client 1.0.89 → 1.0.91
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 +4 -10
- package/build/index.js.map +1 -1
- package/build/types/offer/booking-v2/request/bookable-dates-request.d.ts +4 -0
- package/build/types/offer/booking-v2/request/index.d.ts +1 -0
- package/build/types/offer/booking-v2/response/booking-travel-agent.d.ts +1 -0
- package/build/utils/booking-v2-client.d.ts +2 -2
- package/package.json +1 -1
- package/src/types/offer/booking-v2/request/bookable-dates-request.ts +4 -0
- package/src/types/offer/booking-v2/request/index.ts +1 -0
- package/src/types/offer/booking-v2/response/booking-travel-agent.ts +1 -0
- package/src/utils/booking-v2-client.ts +5 -4
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,
|
|
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
|
-
|
|
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";
|