hububb-saas-shared 1.0.91 → 1.0.92
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.
|
@@ -3,8 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.SubscriptionStatus = exports.PurchaseStatus = exports.PriceType = exports.InvoiceStatus = exports.InvoiceType = exports.TaskPriority = exports.TaskStatus = exports.ServiceType = void 0;
|
|
4
4
|
var ServiceType;
|
|
5
5
|
(function (ServiceType) {
|
|
6
|
-
ServiceType["
|
|
7
|
-
ServiceType["
|
|
6
|
+
ServiceType["INTEGRATION"] = "INTEGRATION";
|
|
7
|
+
ServiceType["ON_DEMAND"] = "ON_DEMAND";
|
|
8
|
+
ServiceType["RECURRING"] = "RECURRING";
|
|
8
9
|
})(ServiceType || (exports.ServiceType = ServiceType = {}));
|
|
9
10
|
var TaskStatus;
|
|
10
11
|
(function (TaskStatus) {
|
|
@@ -604,6 +604,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
604
604
|
lastName: string;
|
|
605
605
|
photoUrl?: string | undefined;
|
|
606
606
|
}>>;
|
|
607
|
+
guestCoordinationActive: z.ZodOptional<z.ZodBoolean>;
|
|
607
608
|
}, "strip", z.ZodTypeAny, {
|
|
608
609
|
type: "ONE_TO_ONE" | "GROUP" | "OPERATIONS_GROUP" | "OPERATIONS_ONE_TO_ONE";
|
|
609
610
|
createdAt: import("../../helpers").Timestamp;
|
|
@@ -733,6 +734,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
733
734
|
lastName: string;
|
|
734
735
|
photoUrl?: string | undefined;
|
|
735
736
|
} | undefined;
|
|
737
|
+
guestCoordinationActive?: boolean | undefined;
|
|
736
738
|
}, {
|
|
737
739
|
type: "ONE_TO_ONE" | "GROUP" | "OPERATIONS_GROUP" | "OPERATIONS_ONE_TO_ONE";
|
|
738
740
|
createdAt: import("../../helpers").Timestamp;
|
|
@@ -862,6 +864,7 @@ export declare const ChatThreadSchema: z.ZodObject<{
|
|
|
862
864
|
lastName: string;
|
|
863
865
|
photoUrl?: string | undefined;
|
|
864
866
|
} | undefined;
|
|
867
|
+
guestCoordinationActive?: boolean | undefined;
|
|
865
868
|
}>;
|
|
866
869
|
export declare const MessageAutomationTemplateSchema: z.ZodObject<{
|
|
867
870
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -85,6 +85,7 @@ exports.ChatThreadSchema = (0, zod_1.object)({
|
|
|
85
85
|
firstName: true,
|
|
86
86
|
lastName: true,
|
|
87
87
|
})),
|
|
88
|
+
guestCoordinationActive: (0, zod_1.optional)((0, zod_1.boolean)()),
|
|
88
89
|
});
|
|
89
90
|
exports.MessageAutomationTemplateSchema = (0, zod_1.object)({
|
|
90
91
|
id: (0, zod_1.optional)((0, zod_1.string)()),
|