@qite/tide-client 1.1.87 → 1.1.89
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 +1 -21
- package/build/index.js +62 -8
- package/build/index.js.map +1 -1
- package/build/types/offer/member-forgot-password-request.d.ts +1 -0
- package/build/types/offer/member-login-request.d.ts +1 -0
- package/build/types/web/agent-dossier-flight-meta-data-line.d.ts +2 -2
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -1,24 +1,4 @@
|
|
|
1
|
-
export
|
|
2
|
-
export {
|
|
3
|
-
AllotmentType,
|
|
4
|
-
AvailabilitySearchType,
|
|
5
|
-
Gender,
|
|
6
|
-
MetaDataType,
|
|
7
|
-
RequirementType,
|
|
8
|
-
ServiceType,
|
|
9
|
-
AllotmentStatus,
|
|
10
|
-
EntryStatus,
|
|
11
|
-
EntryLineStatus,
|
|
12
|
-
} from "./types";
|
|
13
|
-
export {
|
|
14
|
-
CrmContactRequest,
|
|
15
|
-
MolliePaymentRequest,
|
|
16
|
-
Pax,
|
|
17
|
-
WebContactFormRequest,
|
|
18
|
-
WebContactHasTagRequest,
|
|
19
|
-
} from "./types";
|
|
20
|
-
export { BasePrice, Entry, MolliePayment } from "./types";
|
|
21
|
-
export { FlightMetaData } from "./types";
|
|
1
|
+
export * from "./types";
|
|
22
2
|
export * from "./utils/booking-v2-client";
|
|
23
3
|
export * from "./utils/member-client";
|
|
24
4
|
export * from "./utils/mollie-client";
|
package/build/index.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
exports.AllotmentKind = void 0;
|
|
6
6
|
(function (AllotmentKind) {
|
|
7
7
|
AllotmentKind[(AllotmentKind["perUnit"] = 0)] = "perUnit";
|
|
8
8
|
AllotmentKind[(AllotmentKind["perMember"] = 1)] = "perMember";
|
|
9
|
-
})(AllotmentKind || (AllotmentKind = {}));
|
|
9
|
+
})(exports.AllotmentKind || (exports.AllotmentKind = {}));
|
|
10
10
|
|
|
11
11
|
exports.AllotmentStatus = void 0;
|
|
12
12
|
(function (AllotmentStatus) {
|
|
@@ -41,6 +41,20 @@ var DataType = {
|
|
|
41
41
|
template: "template",
|
|
42
42
|
};
|
|
43
43
|
|
|
44
|
+
var DossierType = {
|
|
45
|
+
hotelOnly: 0,
|
|
46
|
+
transportOnly: 1,
|
|
47
|
+
cruise: 2,
|
|
48
|
+
package: 3,
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
var EntryLineFlag = {
|
|
52
|
+
none: 0,
|
|
53
|
+
allotmentNoPlace: 1,
|
|
54
|
+
flightLuggage: 2,
|
|
55
|
+
noCachedPrice: 4,
|
|
56
|
+
};
|
|
57
|
+
|
|
44
58
|
var EntryLineStatus = {
|
|
45
59
|
cancellationByClient: 0,
|
|
46
60
|
cancellationByYou: 1,
|
|
@@ -72,19 +86,25 @@ exports.EntryStatus = void 0;
|
|
|
72
86
|
EntryStatus[(EntryStatus["cancellationByYou"] = 4)] = "cancellationByYou";
|
|
73
87
|
})(exports.EntryStatus || (exports.EntryStatus = {}));
|
|
74
88
|
|
|
89
|
+
var ExportStatus = {
|
|
90
|
+
exported: 0,
|
|
91
|
+
notExported: 1,
|
|
92
|
+
exportFailed: 2,
|
|
93
|
+
};
|
|
94
|
+
|
|
75
95
|
var Gender = {
|
|
76
96
|
male: 0,
|
|
77
97
|
female: 1,
|
|
78
98
|
other: 2,
|
|
79
99
|
};
|
|
80
100
|
|
|
81
|
-
|
|
101
|
+
exports.MetaDataItemPropertyType = void 0;
|
|
82
102
|
(function (MetaDataItemPropertyType) {
|
|
83
103
|
MetaDataItemPropertyType[(MetaDataItemPropertyType["Height"] = 0)] = "Height";
|
|
84
104
|
MetaDataItemPropertyType[(MetaDataItemPropertyType["Length"] = 1)] = "Length";
|
|
85
105
|
MetaDataItemPropertyType[(MetaDataItemPropertyType["Width"] = 2)] = "Width";
|
|
86
106
|
MetaDataItemPropertyType[(MetaDataItemPropertyType["Weight"] = 3)] = "Weight";
|
|
87
|
-
})(MetaDataItemPropertyType || (MetaDataItemPropertyType = {}));
|
|
107
|
+
})(exports.MetaDataItemPropertyType || (exports.MetaDataItemPropertyType = {}));
|
|
88
108
|
|
|
89
109
|
var MetaDataType = {
|
|
90
110
|
flight: 0,
|
|
@@ -97,7 +117,19 @@ var MetaDataType = {
|
|
|
97
117
|
additionalServices: 7,
|
|
98
118
|
};
|
|
99
119
|
|
|
100
|
-
var
|
|
120
|
+
var PaymentType = {
|
|
121
|
+
other: 0,
|
|
122
|
+
bancontact: 1,
|
|
123
|
+
creditcard: 2,
|
|
124
|
+
cash: 3,
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
var PriceChartType = {
|
|
128
|
+
purchasePrices: 0,
|
|
129
|
+
sellingPrices: 1,
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
exports.PrintActionGroup = void 0;
|
|
101
133
|
(function (PrintActionGroup) {
|
|
102
134
|
PrintActionGroup[(PrintActionGroup["Dossier"] = 0)] = "Dossier";
|
|
103
135
|
PrintActionGroup[(PrintActionGroup["Offer"] = 1)] = "Offer";
|
|
@@ -108,7 +140,7 @@ var PrintActionGroup;
|
|
|
108
140
|
PrintActionGroup[(PrintActionGroup["EntryLine"] = 6)] = "EntryLine";
|
|
109
141
|
PrintActionGroup[(PrintActionGroup["SelfBillingInvoice"] = 7)] =
|
|
110
142
|
"SelfBillingInvoice";
|
|
111
|
-
})(PrintActionGroup || (PrintActionGroup = {}));
|
|
143
|
+
})(exports.PrintActionGroup || (exports.PrintActionGroup = {}));
|
|
112
144
|
|
|
113
145
|
var RequirementType = {
|
|
114
146
|
mandatory: 0,
|
|
@@ -116,6 +148,20 @@ var RequirementType = {
|
|
|
116
148
|
optionalInGroup: 2,
|
|
117
149
|
};
|
|
118
150
|
|
|
151
|
+
var RoomType = {
|
|
152
|
+
pk1: 0,
|
|
153
|
+
pk2: 1,
|
|
154
|
+
pk3: 2,
|
|
155
|
+
pk4: 3,
|
|
156
|
+
pk5: 4,
|
|
157
|
+
pk6: 5,
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
var SaleType = {
|
|
161
|
+
ownOrganization: 0,
|
|
162
|
+
resale: 1,
|
|
163
|
+
};
|
|
164
|
+
|
|
119
165
|
var ServiceType = {
|
|
120
166
|
package: 0,
|
|
121
167
|
roundTrip: 1,
|
|
@@ -150,12 +196,12 @@ var ServiceType = {
|
|
|
150
196
|
camp: 30,
|
|
151
197
|
};
|
|
152
198
|
|
|
153
|
-
|
|
199
|
+
exports.UnitOfMeasure = void 0;
|
|
154
200
|
(function (UnitOfMeasure) {
|
|
155
201
|
UnitOfMeasure[(UnitOfMeasure["cm"] = 0)] = "cm";
|
|
156
202
|
UnitOfMeasure[(UnitOfMeasure["kg"] = 1)] = "kg";
|
|
157
203
|
UnitOfMeasure[(UnitOfMeasure["lb"] = 2)] = "lb";
|
|
158
|
-
})(UnitOfMeasure || (UnitOfMeasure = {}));
|
|
204
|
+
})(exports.UnitOfMeasure || (exports.UnitOfMeasure = {}));
|
|
159
205
|
|
|
160
206
|
/******************************************************************************
|
|
161
207
|
Copyright (c) Microsoft Corporation.
|
|
@@ -6820,10 +6866,18 @@ var feedXmlFolder = function (config, slug, folder, signal) {
|
|
|
6820
6866
|
exports.AllotmentType = AllotmentType;
|
|
6821
6867
|
exports.AvailabilitySearchType = AvailabilitySearchType;
|
|
6822
6868
|
exports.ContactForm = ContactForm;
|
|
6869
|
+
exports.DataType = DataType;
|
|
6870
|
+
exports.DossierType = DossierType;
|
|
6871
|
+
exports.EntryLineFlag = EntryLineFlag;
|
|
6823
6872
|
exports.EntryLineStatus = EntryLineStatus;
|
|
6873
|
+
exports.ExportStatus = ExportStatus;
|
|
6824
6874
|
exports.Gender = Gender;
|
|
6825
6875
|
exports.MetaDataType = MetaDataType;
|
|
6876
|
+
exports.PaymentType = PaymentType;
|
|
6877
|
+
exports.PriceChartType = PriceChartType;
|
|
6826
6878
|
exports.RequirementType = RequirementType;
|
|
6879
|
+
exports.RoomType = RoomType;
|
|
6880
|
+
exports.SaleType = SaleType;
|
|
6827
6881
|
exports.ServiceType = ServiceType;
|
|
6828
6882
|
exports.agents = agents;
|
|
6829
6883
|
exports.alternateFlights = alternateFlights;
|