@qite/tide-client 1.1.115 → 1.1.117
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 +16 -0
- package/build/index.js.map +1 -1
- package/build/types/booking-v2/request/flight-lines-request.d.ts +3 -0
- package/build/types/booking-v2/request/index.d.ts +1 -0
- package/build/types/booking-v2/response/flight-lines-by-allotment.d.ts +11 -0
- package/build/types/booking-v2/response/index.d.ts +1 -0
- package/build/types/web/index.d.ts +2 -0
- package/build/types/web/locations-request.d.ts +3 -0
- package/build/types/web/tide-location.d.ts +9 -0
- package/build/utils/booking-v2-client.d.ts +7 -0
- package/build/utils/web-client.d.ts +7 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -6309,6 +6309,7 @@ var ENDPOINT_ENTRY_STATUS = function (dossierNumber, entryStatus) {
|
|
|
6309
6309
|
return ENDPOINT$7 + "/entry-status/" + dossierNumber + "/" + entryStatus;
|
|
6310
6310
|
};
|
|
6311
6311
|
var ENDPOINT_ELASTIC = ENDPOINT$7 + "/elastic";
|
|
6312
|
+
var ENDPOINT_FLIGHT_LINES = ENDPOINT$7 + "/flightlines";
|
|
6312
6313
|
var availableFlights = function (config, request, signal) {
|
|
6313
6314
|
var url = "" + config.host + ENDPOINT_AVAILABLE_FLIGHTS;
|
|
6314
6315
|
var apiKey = config.apiKey;
|
|
@@ -6441,6 +6442,12 @@ var setEntryStatus = function (config, dossierNumber, entryStatus, signal) {
|
|
|
6441
6442
|
var apiKey = config.apiKey;
|
|
6442
6443
|
return patch(url, apiKey, null, config.token, signal, true);
|
|
6443
6444
|
};
|
|
6445
|
+
var flightLines = function (config, request, signal) {
|
|
6446
|
+
var url = "" + config.host + ENDPOINT_FLIGHT_LINES;
|
|
6447
|
+
var apiKey = config.apiKey;
|
|
6448
|
+
var body = JSON.stringify(request);
|
|
6449
|
+
return post(url, apiKey, body, config.token, signal, true);
|
|
6450
|
+
};
|
|
6444
6451
|
|
|
6445
6452
|
var ENDPOINT$6 = "/api/member";
|
|
6446
6453
|
var ENDPOINT_LOGIN = ENDPOINT$6 + "/login";
|
|
@@ -6786,6 +6793,7 @@ var ENDPOINT_CONTACT_FORM$1 = ENDPOINT$2 + "/contactform";
|
|
|
6786
6793
|
var ENDPOINT_CREATE_AFFILIATES = ENDPOINT$2 + "/affiliates";
|
|
6787
6794
|
var ENDPOINT_TRANSLATION_DICTIONARY = ENDPOINT$2 + "/translation-dictionary";
|
|
6788
6795
|
var ENDPOINT_BOOKING_ACCOMMODATION = ENDPOINT$2 + "/booking-accommodation";
|
|
6796
|
+
var ENDPOINT_LOCATIONS = ENDPOINT$2 + "/entity/locations";
|
|
6789
6797
|
/**
|
|
6790
6798
|
* api/web/crmcontact
|
|
6791
6799
|
* Creates a CRM contact.
|
|
@@ -6838,6 +6846,12 @@ var generateBookingAccommodations = function (config, request, signal) {
|
|
|
6838
6846
|
var body = JSON.stringify(request);
|
|
6839
6847
|
return post(url, apiKey, body, config.token, signal);
|
|
6840
6848
|
};
|
|
6849
|
+
var getLocations = function (config, request, signal) {
|
|
6850
|
+
var url = "" + config.host + ENDPOINT_LOCATIONS;
|
|
6851
|
+
var apiKey = config.apiKey;
|
|
6852
|
+
var body = JSON.stringify(request);
|
|
6853
|
+
return post(url, apiKey, body, config.token, signal);
|
|
6854
|
+
};
|
|
6841
6855
|
|
|
6842
6856
|
var ENDPOINT$1 = "/api/web/contact";
|
|
6843
6857
|
var ENDPOINT_CONTACT_FORM = ENDPOINT$1 + "/contact-form";
|
|
@@ -6926,6 +6940,7 @@ exports.createParams = createParams;
|
|
|
6926
6940
|
exports.details = details;
|
|
6927
6941
|
exports.feedXml = feedXml;
|
|
6928
6942
|
exports.feedXmlFolder = feedXmlFolder;
|
|
6943
|
+
exports.flightLines = flightLines;
|
|
6929
6944
|
exports.forgotPassword = forgotPassword;
|
|
6930
6945
|
exports.generateBookingAccommodations = generateBookingAccommodations;
|
|
6931
6946
|
exports.getAffiliates = getAffiliates;
|
|
@@ -6940,6 +6955,7 @@ exports.getEntryListv2 = getEntryListv2;
|
|
|
6940
6955
|
exports.getEntryStatus = getEntryStatus;
|
|
6941
6956
|
exports.getEntryTotals = getEntryTotals;
|
|
6942
6957
|
exports.getInvoiceList = getInvoiceList;
|
|
6958
|
+
exports.getLocations = getLocations;
|
|
6943
6959
|
exports.getMolliePayment = getMolliePayment;
|
|
6944
6960
|
exports.getPrintActions = getPrintActions;
|
|
6945
6961
|
exports.getTranslationDictionary = getTranslationDictionary;
|