hububb-saas-shared 1.2.47 → 1.2.48
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.
|
@@ -1468,6 +1468,10 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1468
1468
|
photoUrl?: string | undefined;
|
|
1469
1469
|
}>>;
|
|
1470
1470
|
guestCoordinationActive: z.ZodOptional<z.ZodBoolean>;
|
|
1471
|
+
checkIn: z.ZodOptional<z.ZodType<import("../../helpers").Timestamp, z.ZodTypeDef, import("../../helpers").Timestamp>>;
|
|
1472
|
+
checkOut: z.ZodOptional<z.ZodType<import("../../helpers").Timestamp, z.ZodTypeDef, import("../../helpers").Timestamp>>;
|
|
1473
|
+
propertyImage: z.ZodOptional<z.ZodString>;
|
|
1474
|
+
propertyTitle: z.ZodOptional<z.ZodString>;
|
|
1471
1475
|
}, "strip", z.ZodTypeAny, {
|
|
1472
1476
|
type: "ONE_TO_ONE" | "GROUP" | "OPERATIONS_GROUP" | "OPERATIONS_ONE_TO_ONE";
|
|
1473
1477
|
createdAt: import("../../helpers").Timestamp;
|
|
@@ -1490,6 +1494,8 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1490
1494
|
photoUrl?: string | undefined;
|
|
1491
1495
|
} | undefined;
|
|
1492
1496
|
propertyId?: number | undefined;
|
|
1497
|
+
checkIn?: import("../../helpers").Timestamp | undefined;
|
|
1498
|
+
checkOut?: import("../../helpers").Timestamp | undefined;
|
|
1493
1499
|
lastMessage?: {
|
|
1494
1500
|
id: string;
|
|
1495
1501
|
body: string;
|
|
@@ -1657,6 +1663,8 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1657
1663
|
photoUrl?: string | undefined;
|
|
1658
1664
|
} | undefined;
|
|
1659
1665
|
guestCoordinationActive?: boolean | undefined;
|
|
1666
|
+
propertyImage?: string | undefined;
|
|
1667
|
+
propertyTitle?: string | undefined;
|
|
1660
1668
|
}, {
|
|
1661
1669
|
type: "ONE_TO_ONE" | "GROUP" | "OPERATIONS_GROUP" | "OPERATIONS_ONE_TO_ONE";
|
|
1662
1670
|
createdAt: import("../../helpers").Timestamp;
|
|
@@ -1679,6 +1687,8 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1679
1687
|
photoUrl?: string | undefined;
|
|
1680
1688
|
} | undefined;
|
|
1681
1689
|
propertyId?: number | undefined;
|
|
1690
|
+
checkIn?: import("../../helpers").Timestamp | undefined;
|
|
1691
|
+
checkOut?: import("../../helpers").Timestamp | undefined;
|
|
1682
1692
|
lastMessage?: {
|
|
1683
1693
|
id: string;
|
|
1684
1694
|
body: string;
|
|
@@ -1846,6 +1856,8 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1846
1856
|
photoUrl?: string | undefined;
|
|
1847
1857
|
} | undefined;
|
|
1848
1858
|
guestCoordinationActive?: boolean | undefined;
|
|
1859
|
+
propertyImage?: string | undefined;
|
|
1860
|
+
propertyTitle?: string | undefined;
|
|
1849
1861
|
}>;
|
|
1850
1862
|
export declare const MessageAutomationTemplateSchema: z.ZodObject<{
|
|
1851
1863
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -121,6 +121,10 @@ exports.ChatThreadSchema = (0, zod_1.object)({
|
|
|
121
121
|
lastName: true,
|
|
122
122
|
})),
|
|
123
123
|
guestCoordinationActive: (0, zod_1.optional)((0, zod_1.boolean)()),
|
|
124
|
+
checkIn: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
|
125
|
+
checkOut: (0, zod_1.optional)(helpers_1.firestoreTimestampSchema),
|
|
126
|
+
propertyImage: (0, zod_1.optional)((0, zod_1.string)()),
|
|
127
|
+
propertyTitle: (0, zod_1.optional)((0, zod_1.string)())
|
|
124
128
|
});
|
|
125
129
|
exports.MessageAutomationTemplateSchema = (0, zod_1.object)({
|
|
126
130
|
id: (0, zod_1.optional)((0, zod_1.string)()),
|