hububb-saas-shared 1.2.47 → 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.
|
@@ -1468,6 +1468,11 @@ 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>;
|
|
1475
|
+
reservationStatus: z.ZodOptional<z.ZodString>;
|
|
1471
1476
|
}, "strip", z.ZodTypeAny, {
|
|
1472
1477
|
type: "ONE_TO_ONE" | "GROUP" | "OPERATIONS_GROUP" | "OPERATIONS_ONE_TO_ONE";
|
|
1473
1478
|
createdAt: import("../../helpers").Timestamp;
|
|
@@ -1490,6 +1495,8 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1490
1495
|
photoUrl?: string | undefined;
|
|
1491
1496
|
} | undefined;
|
|
1492
1497
|
propertyId?: number | undefined;
|
|
1498
|
+
checkIn?: import("../../helpers").Timestamp | undefined;
|
|
1499
|
+
checkOut?: import("../../helpers").Timestamp | undefined;
|
|
1493
1500
|
lastMessage?: {
|
|
1494
1501
|
id: string;
|
|
1495
1502
|
body: string;
|
|
@@ -1657,6 +1664,9 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1657
1664
|
photoUrl?: string | undefined;
|
|
1658
1665
|
} | undefined;
|
|
1659
1666
|
guestCoordinationActive?: boolean | undefined;
|
|
1667
|
+
propertyImage?: string | undefined;
|
|
1668
|
+
propertyTitle?: string | undefined;
|
|
1669
|
+
reservationStatus?: string | undefined;
|
|
1660
1670
|
}, {
|
|
1661
1671
|
type: "ONE_TO_ONE" | "GROUP" | "OPERATIONS_GROUP" | "OPERATIONS_ONE_TO_ONE";
|
|
1662
1672
|
createdAt: import("../../helpers").Timestamp;
|
|
@@ -1679,6 +1689,8 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1679
1689
|
photoUrl?: string | undefined;
|
|
1680
1690
|
} | undefined;
|
|
1681
1691
|
propertyId?: number | undefined;
|
|
1692
|
+
checkIn?: import("../../helpers").Timestamp | undefined;
|
|
1693
|
+
checkOut?: import("../../helpers").Timestamp | undefined;
|
|
1682
1694
|
lastMessage?: {
|
|
1683
1695
|
id: string;
|
|
1684
1696
|
body: string;
|
|
@@ -1846,6 +1858,9 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
1846
1858
|
photoUrl?: string | undefined;
|
|
1847
1859
|
} | undefined;
|
|
1848
1860
|
guestCoordinationActive?: boolean | undefined;
|
|
1861
|
+
propertyImage?: string | undefined;
|
|
1862
|
+
propertyTitle?: string | undefined;
|
|
1863
|
+
reservationStatus?: string | undefined;
|
|
1849
1864
|
}>;
|
|
1850
1865
|
export declare const MessageAutomationTemplateSchema: z.ZodObject<{
|
|
1851
1866
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -121,6 +121,11 @@ 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)()),
|
|
128
|
+
reservationStatus: (0, zod_1.optional)((0, zod_1.string)())
|
|
124
129
|
});
|
|
125
130
|
exports.MessageAutomationTemplateSchema = (0, zod_1.object)({
|
|
126
131
|
id: (0, zod_1.optional)((0, zod_1.string)()),
|