@qite/tide-client 1.1.85 → 1.1.87
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 +20 -36
- package/build/index.js.map +1 -1
- package/build/types/enums/entry-line-status.d.ts +19 -19
- package/build/types/web/agent-dossier-entry-line.d.ts +1 -2
- package/build/types/web/agent-dossier-flight-meta-data-line.d.ts +1 -1
- package/build/types/web/agent-dossier-item.d.ts +1 -2
- package/build/types/web/agent-dossier.d.ts +1 -2
- package/build/types/web/index.d.ts +0 -1
- package/build/utils/search-client.d.ts +1 -5
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -41,35 +41,25 @@ var DataType = {
|
|
|
41
41
|
template: "template",
|
|
42
42
|
};
|
|
43
43
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
] = "noAllotmentFallbackToRealtimeFlight";
|
|
64
|
-
EntryLineStatus[
|
|
65
|
-
(EntryLineStatus["notBookableFallbackToRealtimeFlight"] = 13)
|
|
66
|
-
] = "notBookableFallbackToRealtimeFlight";
|
|
67
|
-
EntryLineStatus[(EntryLineStatus["error"] = 14)] = "error";
|
|
68
|
-
EntryLineStatus[(EntryLineStatus["bookingConfirmed"] = 15)] =
|
|
69
|
-
"bookingConfirmed";
|
|
70
|
-
EntryLineStatus[(EntryLineStatus["cancellationConfirmed"] = 16)] =
|
|
71
|
-
"cancellationConfirmed";
|
|
72
|
-
})(exports.EntryLineStatus || (exports.EntryLineStatus = {}));
|
|
44
|
+
var EntryLineStatus = {
|
|
45
|
+
cancellationByClient: 0,
|
|
46
|
+
cancellationByYou: 1,
|
|
47
|
+
noAllotment: 2,
|
|
48
|
+
offer: 3,
|
|
49
|
+
ok: 4,
|
|
50
|
+
option: 5,
|
|
51
|
+
onRequest: 6,
|
|
52
|
+
requestConfirmed: 7,
|
|
53
|
+
requestDenied: 8,
|
|
54
|
+
requestSent: 9,
|
|
55
|
+
pending: 10,
|
|
56
|
+
notBookable: 11,
|
|
57
|
+
noAllotmentFallbackToRealtimeFlight: 12,
|
|
58
|
+
notBookableFallbackToRealtimeFlight: 13,
|
|
59
|
+
error: 14,
|
|
60
|
+
bookingConfirmed: 15,
|
|
61
|
+
cancellationConfirmed: 16,
|
|
62
|
+
};
|
|
73
63
|
|
|
74
64
|
exports.EntryStatus = void 0;
|
|
75
65
|
(function (EntryStatus) {
|
|
@@ -6429,7 +6419,6 @@ var getMolliePayment = function (config, request, signal) {
|
|
|
6429
6419
|
|
|
6430
6420
|
var ENDPOINT$4 = "/api/web/search";
|
|
6431
6421
|
var ENDPOINT_COUNTRIES = ENDPOINT$4 + "/countries";
|
|
6432
|
-
var ENDPOINT_AIRPORTS = ENDPOINT$4 + "/airports";
|
|
6433
6422
|
/**
|
|
6434
6423
|
* api/search/countries
|
|
6435
6424
|
* Gets all Countries
|
|
@@ -6442,11 +6431,6 @@ var getCountries = function (config, signal) {
|
|
|
6442
6431
|
var apiKey = config.apiKey;
|
|
6443
6432
|
return get(url, apiKey, config.token, signal, true);
|
|
6444
6433
|
};
|
|
6445
|
-
var getAirports = function (config, signal) {
|
|
6446
|
-
var url = "" + config.host + ENDPOINT_AIRPORTS;
|
|
6447
|
-
var apiKey = config.apiKey;
|
|
6448
|
-
return get(url, apiKey, config.token, signal, true);
|
|
6449
|
-
};
|
|
6450
6434
|
|
|
6451
6435
|
var createParams = function (filter, all, gridColumns, mode, forceToLower) {
|
|
6452
6436
|
var params = {};
|
|
@@ -6836,6 +6820,7 @@ var feedXmlFolder = function (config, slug, folder, signal) {
|
|
|
6836
6820
|
exports.AllotmentType = AllotmentType;
|
|
6837
6821
|
exports.AvailabilitySearchType = AvailabilitySearchType;
|
|
6838
6822
|
exports.ContactForm = ContactForm;
|
|
6823
|
+
exports.EntryLineStatus = EntryLineStatus;
|
|
6839
6824
|
exports.Gender = Gender;
|
|
6840
6825
|
exports.MetaDataType = MetaDataType;
|
|
6841
6826
|
exports.RequirementType = RequirementType;
|
|
@@ -6859,7 +6844,6 @@ exports.feedXmlFolder = feedXmlFolder;
|
|
|
6859
6844
|
exports.forgotPassword = forgotPassword;
|
|
6860
6845
|
exports.generateBookingAccommodations = generateBookingAccommodations;
|
|
6861
6846
|
exports.getAffiliates = getAffiliates;
|
|
6862
|
-
exports.getAirports = getAirports;
|
|
6863
6847
|
exports.getAllotment = getAllotment;
|
|
6864
6848
|
exports.getAllotmentAvailability = getAllotmentAvailability;
|
|
6865
6849
|
exports.getAllotmentList = getAllotmentList;
|