@qite/tide-client 1.1.11 → 1.1.14
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 +12 -0
- package/build/index.js.map +1 -1
- package/build/types/company/agent-print-action.d.ts +1 -1
- package/build/types/enums/entry-status.d.ts +8 -8
- package/build/types/offer/booking-v2/shared/booking-package-tag.d.ts +5 -0
- package/build/types/offer/booking-v2/shared/booking-package.d.ts +2 -0
- package/package.json +1 -1
- package/src/types/company/agent-print-action.ts +1 -1
- package/src/types/enums/entry-status.ts +8 -8
- package/src/types/offer/booking-v2/shared/booking-package-tag.ts +5 -0
- package/src/types/offer/booking-v2/shared/booking-package.ts +2 -0
- package/src/utils/api.ts +1 -0
package/build/index.js
CHANGED
|
@@ -13,6 +13,17 @@ var AvailabilitySearchType = {
|
|
|
13
13
|
allotment: 1,
|
|
14
14
|
};
|
|
15
15
|
|
|
16
|
+
var EntryStatus;
|
|
17
|
+
(function (EntryStatus) {
|
|
18
|
+
EntryStatus[(EntryStatus["new"] = -1)] = "new";
|
|
19
|
+
EntryStatus[(EntryStatus["offer"] = 0)] = "offer";
|
|
20
|
+
EntryStatus[(EntryStatus["option"] = 1)] = "option";
|
|
21
|
+
EntryStatus[(EntryStatus["booking"] = 2)] = "booking";
|
|
22
|
+
EntryStatus[(EntryStatus["cancellationByClient"] = 3)] =
|
|
23
|
+
"cancellationByClient";
|
|
24
|
+
EntryStatus[(EntryStatus["cancellationByYou"] = 4)] = "cancellationByYou";
|
|
25
|
+
})(EntryStatus || (EntryStatus = {}));
|
|
26
|
+
|
|
16
27
|
var Gender = {
|
|
17
28
|
male: 0,
|
|
18
29
|
female: 1,
|
|
@@ -266,6 +277,7 @@ var get$1 = function (url, apiKey, signal) {
|
|
|
266
277
|
headers: {
|
|
267
278
|
"Api-Key": apiKey,
|
|
268
279
|
},
|
|
280
|
+
credentials: "include",
|
|
269
281
|
signal: signal,
|
|
270
282
|
}),
|
|
271
283
|
];
|