hububb-models 1.0.114 → 1.0.115
Sign up to get free protection for your applications and to get access to all the features.
@@ -80,6 +80,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
80
80
|
inboxId: import("zod").ZodOptional<import("zod").ZodNumber>;
|
81
81
|
checkedInMark: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
82
82
|
checkedOutMark: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
83
|
+
channexThreadId: import("zod").ZodOptional<import("zod").ZodString>;
|
83
84
|
}, "strip", import("zod").ZodTypeAny, {
|
84
85
|
id: string;
|
85
86
|
source?: string | undefined;
|
@@ -122,6 +123,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
122
123
|
inboxId?: number | undefined;
|
123
124
|
checkedInMark?: import("@firebase/firestore-types").Timestamp | undefined;
|
124
125
|
checkedOutMark?: import("@firebase/firestore-types").Timestamp | undefined;
|
126
|
+
channexThreadId?: string | undefined;
|
125
127
|
}, {
|
126
128
|
id: string;
|
127
129
|
source?: string | undefined;
|
@@ -164,6 +166,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
164
166
|
inboxId?: number | undefined;
|
165
167
|
checkedInMark?: import("@firebase/firestore-types").Timestamp | undefined;
|
166
168
|
checkedOutMark?: import("@firebase/firestore-types").Timestamp | undefined;
|
169
|
+
channexThreadId?: string | undefined;
|
167
170
|
}>;
|
168
171
|
export declare const reservationCreateSchema: import("zod").ZodObject<{
|
169
172
|
booker: import("zod").ZodObject<{
|
@@ -48,6 +48,7 @@ exports.ReservationSchema = (0, zod_1.object)({
|
|
48
48
|
inboxId: (0, zod_1.optional)((0, zod_1.number)()),
|
49
49
|
checkedInMark: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
50
50
|
checkedOutMark: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
51
|
+
channexThreadId: (0, zod_1.optional)((0, zod_1.string)()),
|
51
52
|
});
|
52
53
|
const bookerSchema = (0, zod_1.object)({
|
53
54
|
firstName: (0, zod_1.string)().min(1, "First name is required"),
|