@qite/tide-client 1.1.84 → 1.1.86
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.d.ts +2 -0
- package/build/index.js +23 -2
- package/build/index.js.map +1 -1
- package/build/types/shared/index.d.ts +1 -0
- package/build/types/shared/ticket-number.d.ts +4 -0
- package/build/types/web/agent-dossier-entry-line.d.ts +5 -0
- package/build/types/web/agent-dossier-flight-meta-data-line.d.ts +12 -0
- package/build/types/web/agent-dossier-flight-meta-data.d.ts +6 -0
- package/build/types/web/agent-dossier-item.d.ts +4 -0
- package/build/types/web/agent-dossier-traveler.d.ts +10 -0
- package/build/types/web/agent-dossier.d.ts +7 -0
- package/build/types/web/index.d.ts +4 -0
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -41,7 +41,27 @@ var DataType = {
|
|
|
41
41
|
template: "template",
|
|
42
42
|
};
|
|
43
43
|
|
|
44
|
-
var
|
|
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
|
+
};
|
|
63
|
+
|
|
64
|
+
exports.EntryStatus = void 0;
|
|
45
65
|
(function (EntryStatus) {
|
|
46
66
|
EntryStatus[(EntryStatus["new"] = -1)] = "new";
|
|
47
67
|
EntryStatus[(EntryStatus["offer"] = 0)] = "offer";
|
|
@@ -50,7 +70,7 @@ var EntryStatus;
|
|
|
50
70
|
EntryStatus[(EntryStatus["cancellationByClient"] = 3)] =
|
|
51
71
|
"cancellationByClient";
|
|
52
72
|
EntryStatus[(EntryStatus["cancellationByYou"] = 4)] = "cancellationByYou";
|
|
53
|
-
})(EntryStatus || (EntryStatus = {}));
|
|
73
|
+
})(exports.EntryStatus || (exports.EntryStatus = {}));
|
|
54
74
|
|
|
55
75
|
var Gender = {
|
|
56
76
|
male: 0,
|
|
@@ -6806,6 +6826,7 @@ var feedXmlFolder = function (config, slug, folder, signal) {
|
|
|
6806
6826
|
exports.AllotmentType = AllotmentType;
|
|
6807
6827
|
exports.AvailabilitySearchType = AvailabilitySearchType;
|
|
6808
6828
|
exports.ContactForm = ContactForm;
|
|
6829
|
+
exports.EntryLineStatus = EntryLineStatus;
|
|
6809
6830
|
exports.Gender = Gender;
|
|
6810
6831
|
exports.MetaDataType = MetaDataType;
|
|
6811
6832
|
exports.RequirementType = RequirementType;
|