evo360-types 1.3.152 → 1.3.153
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.
|
@@ -14,13 +14,16 @@ export declare const zTaskExternalLinkSchema: z.ZodObject<{
|
|
|
14
14
|
type: z.ZodEnum<["crm_lead", "med_patient", "med_professional", "med_appointment", "chat_contact"]>;
|
|
15
15
|
id: z.ZodString;
|
|
16
16
|
label: z.ZodOptional<z.ZodString>;
|
|
17
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
17
18
|
}, "strip", z.ZodTypeAny, {
|
|
18
19
|
id: string;
|
|
19
20
|
type: "crm_lead" | "med_patient" | "med_professional" | "med_appointment" | "chat_contact";
|
|
21
|
+
ref?: any;
|
|
20
22
|
label?: string | undefined;
|
|
21
23
|
}, {
|
|
22
24
|
id: string;
|
|
23
25
|
type: "crm_lead" | "med_patient" | "med_professional" | "med_appointment" | "chat_contact";
|
|
26
|
+
ref?: any;
|
|
24
27
|
label?: string | undefined;
|
|
25
28
|
}>;
|
|
26
29
|
export declare const zTaskScheduleSchema: z.ZodObject<{
|
|
@@ -336,13 +339,16 @@ export declare const zTaskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
336
339
|
type: z.ZodEnum<["crm_lead", "med_patient", "med_professional", "med_appointment", "chat_contact"]>;
|
|
337
340
|
id: z.ZodString;
|
|
338
341
|
label: z.ZodOptional<z.ZodString>;
|
|
342
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
339
343
|
}, "strip", z.ZodTypeAny, {
|
|
340
344
|
id: string;
|
|
341
345
|
type: "crm_lead" | "med_patient" | "med_professional" | "med_appointment" | "chat_contact";
|
|
346
|
+
ref?: any;
|
|
342
347
|
label?: string | undefined;
|
|
343
348
|
}, {
|
|
344
349
|
id: string;
|
|
345
350
|
type: "crm_lead" | "med_patient" | "med_professional" | "med_appointment" | "chat_contact";
|
|
351
|
+
ref?: any;
|
|
346
352
|
label?: string | undefined;
|
|
347
353
|
}>, "many">>;
|
|
348
354
|
idempotency_key: z.ZodOptional<z.ZodString>;
|
|
@@ -638,13 +644,16 @@ export declare const zTaskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
638
644
|
type: z.ZodEnum<["crm_lead", "med_patient", "med_professional", "med_appointment", "chat_contact"]>;
|
|
639
645
|
id: z.ZodString;
|
|
640
646
|
label: z.ZodOptional<z.ZodString>;
|
|
647
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
641
648
|
}, "strip", z.ZodTypeAny, {
|
|
642
649
|
id: string;
|
|
643
650
|
type: "crm_lead" | "med_patient" | "med_professional" | "med_appointment" | "chat_contact";
|
|
651
|
+
ref?: any;
|
|
644
652
|
label?: string | undefined;
|
|
645
653
|
}, {
|
|
646
654
|
id: string;
|
|
647
655
|
type: "crm_lead" | "med_patient" | "med_professional" | "med_appointment" | "chat_contact";
|
|
656
|
+
ref?: any;
|
|
648
657
|
label?: string | undefined;
|
|
649
658
|
}>, "many">>;
|
|
650
659
|
idempotency_key: z.ZodOptional<z.ZodString>;
|
|
@@ -940,13 +949,16 @@ export declare const zTaskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
940
949
|
type: z.ZodEnum<["crm_lead", "med_patient", "med_professional", "med_appointment", "chat_contact"]>;
|
|
941
950
|
id: z.ZodString;
|
|
942
951
|
label: z.ZodOptional<z.ZodString>;
|
|
952
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
943
953
|
}, "strip", z.ZodTypeAny, {
|
|
944
954
|
id: string;
|
|
945
955
|
type: "crm_lead" | "med_patient" | "med_professional" | "med_appointment" | "chat_contact";
|
|
956
|
+
ref?: any;
|
|
946
957
|
label?: string | undefined;
|
|
947
958
|
}, {
|
|
948
959
|
id: string;
|
|
949
960
|
type: "crm_lead" | "med_patient" | "med_professional" | "med_appointment" | "chat_contact";
|
|
961
|
+
ref?: any;
|
|
950
962
|
label?: string | undefined;
|
|
951
963
|
}>, "many">>;
|
|
952
964
|
idempotency_key: z.ZodOptional<z.ZodString>;
|
|
@@ -47,6 +47,7 @@ exports.zTaskExternalLinkSchema = zod_1.z.object({
|
|
|
47
47
|
type: exports.zTaskExternalObjectTypeSchema,
|
|
48
48
|
id: zod_1.z.string(),
|
|
49
49
|
label: zod_1.z.string().optional(),
|
|
50
|
+
ref: zod_1.z.any().optional(), // FirestoreDocumentReference
|
|
50
51
|
});
|
|
51
52
|
// Schema para ITaskSchedule
|
|
52
53
|
exports.zTaskScheduleSchema = zod_1.z.object({
|