hububb-models 1.0.67 → 1.0.69
Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.ts
CHANGED
@@ -6,6 +6,9 @@ export * from "./schemas/listing";
|
|
6
6
|
export * from "./schemas/calendar";
|
7
7
|
export * from "./schemas/apaleo/offer";
|
8
8
|
export * from "./schemas/apaleo/reservation";
|
9
|
+
export * from "./schemas/channex/booking";
|
10
|
+
export * from "./schemas/channex/property";
|
11
|
+
export * from "./schemas/channex/thread";
|
9
12
|
export * from "./models/user";
|
10
13
|
export * from "./models/blog";
|
11
14
|
export * from "./models/thread";
|
@@ -14,3 +17,6 @@ export * from "./models/listing";
|
|
14
17
|
export * from "./models/calendar";
|
15
18
|
export * from "./models/apaleo/offer";
|
16
19
|
export * from "./models/apaleo/reservation";
|
20
|
+
export * from "./models/channex/booking";
|
21
|
+
export * from "./models/channex/property";
|
22
|
+
export * from "./models/channex/thread";
|
package/dist/index.js
CHANGED
@@ -22,6 +22,9 @@ __exportStar(require("./schemas/listing"), exports);
|
|
22
22
|
__exportStar(require("./schemas/calendar"), exports);
|
23
23
|
__exportStar(require("./schemas/apaleo/offer"), exports);
|
24
24
|
__exportStar(require("./schemas/apaleo/reservation"), exports);
|
25
|
+
__exportStar(require("./schemas/channex/booking"), exports);
|
26
|
+
__exportStar(require("./schemas/channex/property"), exports);
|
27
|
+
__exportStar(require("./schemas/channex/thread"), exports);
|
25
28
|
__exportStar(require("./models/user"), exports);
|
26
29
|
__exportStar(require("./models/blog"), exports);
|
27
30
|
__exportStar(require("./models/thread"), exports);
|
@@ -30,3 +33,6 @@ __exportStar(require("./models/listing"), exports);
|
|
30
33
|
__exportStar(require("./models/calendar"), exports);
|
31
34
|
__exportStar(require("./models/apaleo/offer"), exports);
|
32
35
|
__exportStar(require("./models/apaleo/reservation"), exports);
|
36
|
+
__exportStar(require("./models/channex/booking"), exports);
|
37
|
+
__exportStar(require("./models/channex/property"), exports);
|
38
|
+
__exportStar(require("./models/channex/thread"), exports);
|
@@ -72,6 +72,7 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
|
|
72
72
|
modified: import("zod").ZodString;
|
73
73
|
adults: import("zod").ZodNumber;
|
74
74
|
channelCode: import("zod").ZodString;
|
75
|
+
source: import("zod").ZodOptional<import("zod").ZodString>;
|
75
76
|
primaryGuest: import("zod").ZodObject<{
|
76
77
|
lastName: import("zod").ZodString;
|
77
78
|
firstName: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -305,6 +306,7 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
|
|
305
306
|
amount: number;
|
306
307
|
};
|
307
308
|
};
|
309
|
+
source?: string | undefined;
|
308
310
|
cancellationFee?: {
|
309
311
|
code: string;
|
310
312
|
id: string;
|
@@ -391,6 +393,7 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
|
|
391
393
|
amount: number;
|
392
394
|
};
|
393
395
|
};
|
396
|
+
source?: string | undefined;
|
394
397
|
cancellationFee?: {
|
395
398
|
code: string;
|
396
399
|
id: string;
|
@@ -70,6 +70,7 @@ const apaleoReservationSchema = (0, zod_1.object)({
|
|
70
70
|
modified: (0, zod_1.string)(),
|
71
71
|
adults: (0, zod_1.number)(),
|
72
72
|
channelCode: (0, zod_1.string)(),
|
73
|
+
source: (0, zod_1.string)().optional(),
|
73
74
|
primaryGuest: guestSchema,
|
74
75
|
guaranteeType: (0, zod_1.string)(),
|
75
76
|
cancellationFee: cancellationFeeSchema.optional(),
|