@qite/tide-client 1.1.114 → 1.1.116
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 +8 -7
- 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/utils/booking-v2-client.d.ts +7 -0
- package/build/utils/web-client.d.ts +0 -5
- 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,7 +6793,6 @@ 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";
|
|
6789
|
-
var ENDPOINT_TAGS = ENDPOINT$2 + "/entity/tag";
|
|
6790
6796
|
/**
|
|
6791
6797
|
* api/web/crmcontact
|
|
6792
6798
|
* Creates a CRM contact.
|
|
@@ -6839,11 +6845,6 @@ var generateBookingAccommodations = function (config, request, signal) {
|
|
|
6839
6845
|
var body = JSON.stringify(request);
|
|
6840
6846
|
return post(url, apiKey, body, config.token, signal);
|
|
6841
6847
|
};
|
|
6842
|
-
var getTags = function (config, signal) {
|
|
6843
|
-
var url = "" + config.host + ENDPOINT_TAGS;
|
|
6844
|
-
var apiKey = config.apiKey;
|
|
6845
|
-
return get(url, apiKey, config.token, signal, true);
|
|
6846
|
-
};
|
|
6847
6848
|
|
|
6848
6849
|
var ENDPOINT$1 = "/api/web/contact";
|
|
6849
6850
|
var ENDPOINT_CONTACT_FORM = ENDPOINT$1 + "/contact-form";
|
|
@@ -6932,6 +6933,7 @@ exports.createParams = createParams;
|
|
|
6932
6933
|
exports.details = details;
|
|
6933
6934
|
exports.feedXml = feedXml;
|
|
6934
6935
|
exports.feedXmlFolder = feedXmlFolder;
|
|
6936
|
+
exports.flightLines = flightLines;
|
|
6935
6937
|
exports.forgotPassword = forgotPassword;
|
|
6936
6938
|
exports.generateBookingAccommodations = generateBookingAccommodations;
|
|
6937
6939
|
exports.getAffiliates = getAffiliates;
|
|
@@ -6948,7 +6950,6 @@ exports.getEntryTotals = getEntryTotals;
|
|
|
6948
6950
|
exports.getInvoiceList = getInvoiceList;
|
|
6949
6951
|
exports.getMolliePayment = getMolliePayment;
|
|
6950
6952
|
exports.getPrintActions = getPrintActions;
|
|
6951
|
-
exports.getTags = getTags;
|
|
6952
6953
|
exports.getTranslationDictionary = getTranslationDictionary;
|
|
6953
6954
|
exports.login = login;
|
|
6954
6955
|
exports.logout = logout;
|