hububb-models 1.0.68 → 1.0.70
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -0
- package/dist/schemas/reservation.d.ts +3 -0
- package/dist/schemas/reservation.js +1 -0
- package/package.json +1 -1
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);
|
@@ -2,6 +2,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
2
2
|
id: import("zod").ZodString;
|
3
3
|
createdAt: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore").Timestamp>>;
|
4
4
|
externalId: import("zod").ZodOptional<import("zod").ZodString>;
|
5
|
+
channexId: import("zod").ZodOptional<import("zod").ZodString>;
|
5
6
|
checkIn: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore").Timestamp>>;
|
6
7
|
checkOut: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore").Timestamp>>;
|
7
8
|
status: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -85,6 +86,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
85
86
|
status?: string | undefined;
|
86
87
|
createdAt?: import("@firebase/firestore").Timestamp | undefined;
|
87
88
|
externalId?: string | undefined;
|
89
|
+
channexId?: string | undefined;
|
88
90
|
checkIn?: import("@firebase/firestore").Timestamp | undefined;
|
89
91
|
checkOut?: import("@firebase/firestore").Timestamp | undefined;
|
90
92
|
statusDescription?: string | undefined;
|
@@ -122,6 +124,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
122
124
|
status?: string | undefined;
|
123
125
|
createdAt?: import("@firebase/firestore").Timestamp | undefined;
|
124
126
|
externalId?: string | undefined;
|
127
|
+
channexId?: string | undefined;
|
125
128
|
checkIn?: import("@firebase/firestore").Timestamp | undefined;
|
126
129
|
checkOut?: import("@firebase/firestore").Timestamp | undefined;
|
127
130
|
statusDescription?: string | undefined;
|
@@ -28,6 +28,7 @@ exports.ReservationSchema = (0, zod_1.object)({
|
|
28
28
|
id: (0, zod_1.string)(),
|
29
29
|
createdAt: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
30
30
|
externalId: (0, zod_1.optional)((0, zod_1.string)()),
|
31
|
+
channexId: (0, zod_1.optional)((0, zod_1.string)()),
|
31
32
|
checkIn: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
32
33
|
checkOut: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
33
34
|
status: (0, zod_1.optional)((0, zod_1.string)()),
|