hububb-saas-shared 1.2.48 → 1.2.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1472,6 +1472,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1472
1472
|
checkOut: z.ZodOptional<z.ZodType<import("../../helpers").Timestamp, z.ZodTypeDef, import("../../helpers").Timestamp>>;
|
|
1473
1473
|
propertyImage: z.ZodOptional<z.ZodString>;
|
|
1474
1474
|
propertyTitle: z.ZodOptional<z.ZodString>;
|
|
1475
|
+
reservationStatus: z.ZodOptional<z.ZodString>;
|
|
1475
1476
|
}, "strip", z.ZodTypeAny, {
|
|
1476
1477
|
type: "ONE_TO_ONE" | "GROUP" | "OPERATIONS_GROUP" | "OPERATIONS_ONE_TO_ONE";
|
|
1477
1478
|
createdAt: import("../../helpers").Timestamp;
|
|
@@ -1665,6 +1666,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1665
1666
|
guestCoordinationActive?: boolean | undefined;
|
|
1666
1667
|
propertyImage?: string | undefined;
|
|
1667
1668
|
propertyTitle?: string | undefined;
|
|
1669
|
+
reservationStatus?: string | undefined;
|
|
1668
1670
|
}, {
|
|
1669
1671
|
type: "ONE_TO_ONE" | "GROUP" | "OPERATIONS_GROUP" | "OPERATIONS_ONE_TO_ONE";
|
|
1670
1672
|
createdAt: import("../../helpers").Timestamp;
|
|
@@ -1858,6 +1860,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1858
1860
|
guestCoordinationActive?: boolean | undefined;
|
|
1859
1861
|
propertyImage?: string | undefined;
|
|
1860
1862
|
propertyTitle?: string | undefined;
|
|
1863
|
+
reservationStatus?: string | undefined;
|
|
1861
1864
|
}>;
|
|
1862
1865
|
export declare const MessageAutomationTemplateSchema: z.ZodObject<{
|
|
1863
1866
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -124,7 +124,8 @@ exports.ChatThreadSchema = (0, zod_1.object)({
|
|
|
124
124
|
checkIn: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
|
125
125
|
checkOut: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
|
126
126
|
propertyImage: (0, zod_1.optional)((0, zod_1.string)()),
|
|
127
|
-
propertyTitle: (0, zod_1.optional)((0, zod_1.string)())
|
|
127
|
+
propertyTitle: (0, zod_1.optional)((0, zod_1.string)()),
|
|
128
|
+
reservationStatus: (0, zod_1.optional)((0, zod_1.string)())
|
|
128
129
|
});
|
|
129
130
|
exports.MessageAutomationTemplateSchema = (0, zod_1.object)({
|
|
130
131
|
id: (0, zod_1.optional)((0, zod_1.string)()),
|