hububb-models 1.0.69 → 1.0.70
Sign up to get free protection for your applications and to get access to all the features.
@@ -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)()),
|