hububb-models 1.0.119 → 1.0.121
Sign up to get free protection for your applications and to get access to all the features.
@@ -82,6 +82,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
82
82
|
checkedOutMark: import("zod").ZodOptional<import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
83
83
|
channexThreadId: import("zod").ZodOptional<import("zod").ZodString>;
|
84
84
|
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
85
|
+
integrationSource: import("zod").ZodOptional<import("zod").ZodString>;
|
85
86
|
}, "strip", import("zod").ZodTypeAny, {
|
86
87
|
id: string;
|
87
88
|
source?: string | undefined;
|
@@ -126,6 +127,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
126
127
|
checkedOutMark?: import("@firebase/firestore-types").Timestamp | undefined;
|
127
128
|
channexThreadId?: string | undefined;
|
128
129
|
notes?: string | undefined;
|
130
|
+
integrationSource?: string | undefined;
|
129
131
|
}, {
|
130
132
|
id: string;
|
131
133
|
source?: string | undefined;
|
@@ -170,6 +172,7 @@ export declare const ReservationSchema: import("zod").ZodObject<{
|
|
170
172
|
checkedOutMark?: import("@firebase/firestore-types").Timestamp | undefined;
|
171
173
|
channexThreadId?: string | undefined;
|
172
174
|
notes?: string | undefined;
|
175
|
+
integrationSource?: string | undefined;
|
173
176
|
}>;
|
174
177
|
export declare const reservationCreateSchema: import("zod").ZodObject<{
|
175
178
|
booker: import("zod").ZodObject<{
|
@@ -50,6 +50,7 @@ exports.ReservationSchema = (0, zod_1.object)({
|
|
50
50
|
checkedOutMark: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
51
51
|
channexThreadId: (0, zod_1.optional)((0, zod_1.string)()),
|
52
52
|
notes: (0, zod_1.optional)((0, zod_1.string)()),
|
53
|
+
integrationSource: (0, zod_1.optional)((0, zod_1.string)()),
|
53
54
|
});
|
54
55
|
const bookerSchema = (0, zod_1.object)({
|
55
56
|
firstName: (0, zod_1.string)().min(1, "First name is required"),
|
package/dist/schemas/thread.d.ts
CHANGED
@@ -676,6 +676,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
676
676
|
isImportant: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
677
677
|
needsAttention: import("zod").ZodArray<import("zod").ZodString, "many">;
|
678
678
|
needsAttentionMap: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>;
|
679
|
+
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
679
680
|
}, "strip", import("zod").ZodTypeAny, {
|
680
681
|
type: "ONE_TO_ONE" | "GROUP";
|
681
682
|
createdAt: import("@firebase/firestore-types").Timestamp;
|
@@ -767,6 +768,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
767
768
|
externalThreadId?: string | undefined;
|
768
769
|
externalSource?: string | undefined;
|
769
770
|
isImportant?: boolean | undefined;
|
771
|
+
tags?: string[] | undefined;
|
770
772
|
}, {
|
771
773
|
type: "ONE_TO_ONE" | "GROUP";
|
772
774
|
createdAt: import("@firebase/firestore-types").Timestamp;
|
@@ -858,4 +860,5 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
858
860
|
externalThreadId?: string | undefined;
|
859
861
|
externalSource?: string | undefined;
|
860
862
|
isImportant?: boolean | undefined;
|
863
|
+
tags?: string[] | undefined;
|
861
864
|
}>;
|
package/dist/schemas/thread.js
CHANGED
@@ -35,4 +35,5 @@ exports.ChatThreadSchema = (0, zod_1.object)({
|
|
35
35
|
isImportant: (0, zod_1.optional)((0, zod_1.boolean)()),
|
36
36
|
needsAttention: (0, zod_1.array)((0, zod_1.string)()),
|
37
37
|
needsAttentionMap: (0, zod_1.record)((0, zod_1.string)(), (0, zod_1.boolean)()),
|
38
|
+
tags: (0, zod_1.optional)((0, zod_1.array)((0, zod_1.string)())),
|
38
39
|
});
|