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({
@@ -56,6 +56,7 @@ export const zTaskExternalLinkSchema = z.object({
56
56
  type: zTaskExternalObjectTypeSchema,
57
57
  id: z.string(),
58
58
  label: z.string().optional(),
59
+ ref: z.any().optional(), // FirestoreDocumentReference
59
60
  });
60
61
 
61
62
  // Schema para ITaskSchedule
@@ -99,6 +99,7 @@ export interface ITaskExternalLink {
99
99
  type: TaskExternalObjectType;
100
100
  id: string;
101
101
  label?: string;
102
+ ref?: FirestoreDocumentReference;
102
103
  [key: string]: unknown;
103
104
  }
104
105
  export interface ITaskUserAssignee {
@@ -152,6 +152,7 @@ export interface ITaskExternalLink {
152
152
  type: TaskExternalObjectType;
153
153
  id: string;
154
154
  label?: string;
155
+ ref?: FirestoreDocumentReference;
155
156
  [key: string]: unknown;
156
157
  }
157
158
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.152",
3
+ "version": "1.3.153",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",