evo360-types 1.3.41 → 1.3.44
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.
- package/dist/apps/evo-activity/zod-schemas.d.ts +18 -0
- package/dist/apps/evo-chat/contact/zod-schemas.d.ts +18 -0
- package/dist/apps/evo-chat/message/zod-schemas.d.ts +18 -0
- package/dist/apps/evo-crm/dic/zod-schemas.d.ts +54 -0
- package/dist/apps/evo-crm/lead/zod-schemas.d.ts +18 -0
- package/dist/apps/evo-med/calendar/zod-schemas.d.ts +18 -0
- package/dist/apps/evo-med/dic/zod-schemas.d.ts +72 -0
- package/dist/apps/evo-med/insurance/zod-schemas.d.ts +18 -0
- package/dist/apps/evo-med/people/zod-schemas.d.ts +36 -0
- package/dist/apps/evo-med/procedure/zod-schemas.d.ts +20 -0
- package/dist/apps/evo-people/zod-schemas.d.ts +72 -0
- package/dist/apps/evo-survey/zod-schemas.d.ts +174 -0
- package/dist/apps/evo-tenant/zod-schemas.d.ts +3 -0
- package/dist/apps/evo-tenant/zod-schemas.js +1 -0
- package/dist/apps/evo-tenant/zod-schemas.ts +1 -0
- package/dist/apps/shared/zod-schemas.d.ts +6 -0
- package/dist/apps/shared/zod-schemas.js +2 -0
- package/dist/apps/shared/zod-schemas.ts +2 -0
- package/dist/types/evo-tenant/index.d.ts +1 -0
- package/dist/types/evo-tenant/index.ts +1 -0
- package/dist/types/shared/index.d.ts +2 -0
- package/dist/types/shared/index.ts +2 -0
- package/package.json +1 -1
|
@@ -21,14 +21,20 @@ export declare const zIActivityEventSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
21
21
|
name: z.ZodString;
|
|
22
22
|
color: z.ZodOptional<z.ZodString>;
|
|
23
23
|
hidden: z.ZodBoolean;
|
|
24
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
24
26
|
}, "strip", z.ZodTypeAny, {
|
|
27
|
+
base: boolean;
|
|
25
28
|
name: string;
|
|
26
29
|
hidden: boolean;
|
|
27
30
|
color?: string | undefined;
|
|
31
|
+
category?: string | null | undefined;
|
|
28
32
|
}, {
|
|
29
33
|
name: string;
|
|
30
34
|
hidden: boolean;
|
|
35
|
+
base?: boolean | undefined;
|
|
31
36
|
color?: string | undefined;
|
|
37
|
+
category?: string | null | undefined;
|
|
32
38
|
}>, "many">>>;
|
|
33
39
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
34
40
|
id: z.ZodString;
|
|
@@ -51,14 +57,20 @@ export declare const zIActivityEventSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
51
57
|
name: z.ZodString;
|
|
52
58
|
color: z.ZodOptional<z.ZodString>;
|
|
53
59
|
hidden: z.ZodBoolean;
|
|
60
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
61
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
54
62
|
}, "strip", z.ZodTypeAny, {
|
|
63
|
+
base: boolean;
|
|
55
64
|
name: string;
|
|
56
65
|
hidden: boolean;
|
|
57
66
|
color?: string | undefined;
|
|
67
|
+
category?: string | null | undefined;
|
|
58
68
|
}, {
|
|
59
69
|
name: string;
|
|
60
70
|
hidden: boolean;
|
|
71
|
+
base?: boolean | undefined;
|
|
61
72
|
color?: string | undefined;
|
|
73
|
+
category?: string | null | undefined;
|
|
62
74
|
}>, "many">>>;
|
|
63
75
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
64
76
|
id: z.ZodString;
|
|
@@ -81,13 +93,19 @@ export declare const zIActivityEventSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
81
93
|
name: z.ZodString;
|
|
82
94
|
color: z.ZodOptional<z.ZodString>;
|
|
83
95
|
hidden: z.ZodBoolean;
|
|
96
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
97
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
84
98
|
}, "strip", z.ZodTypeAny, {
|
|
99
|
+
base: boolean;
|
|
85
100
|
name: string;
|
|
86
101
|
hidden: boolean;
|
|
87
102
|
color?: string | undefined;
|
|
103
|
+
category?: string | null | undefined;
|
|
88
104
|
}, {
|
|
89
105
|
name: string;
|
|
90
106
|
hidden: boolean;
|
|
107
|
+
base?: boolean | undefined;
|
|
91
108
|
color?: string | undefined;
|
|
109
|
+
category?: string | null | undefined;
|
|
92
110
|
}>, "many">>>;
|
|
93
111
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
@@ -84,14 +84,20 @@ export declare const zChatContactSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
84
84
|
name: z.ZodString;
|
|
85
85
|
color: z.ZodOptional<z.ZodString>;
|
|
86
86
|
hidden: z.ZodBoolean;
|
|
87
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
88
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
87
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
|
+
base: boolean;
|
|
88
91
|
name: string;
|
|
89
92
|
hidden: boolean;
|
|
90
93
|
color?: string | undefined;
|
|
94
|
+
category?: string | null | undefined;
|
|
91
95
|
}, {
|
|
92
96
|
name: string;
|
|
93
97
|
hidden: boolean;
|
|
98
|
+
base?: boolean | undefined;
|
|
94
99
|
color?: string | undefined;
|
|
100
|
+
category?: string | null | undefined;
|
|
95
101
|
}>, "many">>>;
|
|
96
102
|
userRef: z.ZodAny;
|
|
97
103
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
@@ -144,14 +150,20 @@ export declare const zChatContactSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
144
150
|
name: z.ZodString;
|
|
145
151
|
color: z.ZodOptional<z.ZodString>;
|
|
146
152
|
hidden: z.ZodBoolean;
|
|
153
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
154
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
147
155
|
}, "strip", z.ZodTypeAny, {
|
|
156
|
+
base: boolean;
|
|
148
157
|
name: string;
|
|
149
158
|
hidden: boolean;
|
|
150
159
|
color?: string | undefined;
|
|
160
|
+
category?: string | null | undefined;
|
|
151
161
|
}, {
|
|
152
162
|
name: string;
|
|
153
163
|
hidden: boolean;
|
|
164
|
+
base?: boolean | undefined;
|
|
154
165
|
color?: string | undefined;
|
|
166
|
+
category?: string | null | undefined;
|
|
155
167
|
}>, "many">>>;
|
|
156
168
|
userRef: z.ZodAny;
|
|
157
169
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
@@ -204,14 +216,20 @@ export declare const zChatContactSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
204
216
|
name: z.ZodString;
|
|
205
217
|
color: z.ZodOptional<z.ZodString>;
|
|
206
218
|
hidden: z.ZodBoolean;
|
|
219
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
220
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
207
221
|
}, "strip", z.ZodTypeAny, {
|
|
222
|
+
base: boolean;
|
|
208
223
|
name: string;
|
|
209
224
|
hidden: boolean;
|
|
210
225
|
color?: string | undefined;
|
|
226
|
+
category?: string | null | undefined;
|
|
211
227
|
}, {
|
|
212
228
|
name: string;
|
|
213
229
|
hidden: boolean;
|
|
230
|
+
base?: boolean | undefined;
|
|
214
231
|
color?: string | undefined;
|
|
232
|
+
category?: string | null | undefined;
|
|
215
233
|
}>, "many">>>;
|
|
216
234
|
userRef: z.ZodAny;
|
|
217
235
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
@@ -17,14 +17,20 @@ export declare const zHSMMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17
17
|
name: z.ZodString;
|
|
18
18
|
color: z.ZodOptional<z.ZodString>;
|
|
19
19
|
hidden: z.ZodBoolean;
|
|
20
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
20
22
|
}, "strip", z.ZodTypeAny, {
|
|
23
|
+
base: boolean;
|
|
21
24
|
name: string;
|
|
22
25
|
hidden: boolean;
|
|
23
26
|
color?: string | undefined;
|
|
27
|
+
category?: string | null | undefined;
|
|
24
28
|
}, {
|
|
25
29
|
name: string;
|
|
26
30
|
hidden: boolean;
|
|
31
|
+
base?: boolean | undefined;
|
|
27
32
|
color?: string | undefined;
|
|
33
|
+
category?: string | null | undefined;
|
|
28
34
|
}>, "many">>>;
|
|
29
35
|
userRef: z.ZodOptional<z.ZodAny>;
|
|
30
36
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
@@ -45,14 +51,20 @@ export declare const zHSMMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
45
51
|
name: z.ZodString;
|
|
46
52
|
color: z.ZodOptional<z.ZodString>;
|
|
47
53
|
hidden: z.ZodBoolean;
|
|
54
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
55
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
48
56
|
}, "strip", z.ZodTypeAny, {
|
|
57
|
+
base: boolean;
|
|
49
58
|
name: string;
|
|
50
59
|
hidden: boolean;
|
|
51
60
|
color?: string | undefined;
|
|
61
|
+
category?: string | null | undefined;
|
|
52
62
|
}, {
|
|
53
63
|
name: string;
|
|
54
64
|
hidden: boolean;
|
|
65
|
+
base?: boolean | undefined;
|
|
55
66
|
color?: string | undefined;
|
|
67
|
+
category?: string | null | undefined;
|
|
56
68
|
}>, "many">>>;
|
|
57
69
|
userRef: z.ZodOptional<z.ZodAny>;
|
|
58
70
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
@@ -73,14 +85,20 @@ export declare const zHSMMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73
85
|
name: z.ZodString;
|
|
74
86
|
color: z.ZodOptional<z.ZodString>;
|
|
75
87
|
hidden: z.ZodBoolean;
|
|
88
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
89
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
76
90
|
}, "strip", z.ZodTypeAny, {
|
|
91
|
+
base: boolean;
|
|
77
92
|
name: string;
|
|
78
93
|
hidden: boolean;
|
|
79
94
|
color?: string | undefined;
|
|
95
|
+
category?: string | null | undefined;
|
|
80
96
|
}, {
|
|
81
97
|
name: string;
|
|
82
98
|
hidden: boolean;
|
|
99
|
+
base?: boolean | undefined;
|
|
83
100
|
color?: string | undefined;
|
|
101
|
+
category?: string | null | undefined;
|
|
84
102
|
}>, "many">>>;
|
|
85
103
|
userRef: z.ZodOptional<z.ZodAny>;
|
|
86
104
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
@@ -14,14 +14,20 @@ export declare const zDistChannelTypeSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
14
14
|
name: z.ZodString;
|
|
15
15
|
color: z.ZodOptional<z.ZodString>;
|
|
16
16
|
hidden: z.ZodBoolean;
|
|
17
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
17
19
|
}, "strip", z.ZodTypeAny, {
|
|
20
|
+
base: boolean;
|
|
18
21
|
name: string;
|
|
19
22
|
hidden: boolean;
|
|
20
23
|
color?: string | undefined;
|
|
24
|
+
category?: string | null | undefined;
|
|
21
25
|
}, {
|
|
22
26
|
name: string;
|
|
23
27
|
hidden: boolean;
|
|
28
|
+
base?: boolean | undefined;
|
|
24
29
|
color?: string | undefined;
|
|
30
|
+
category?: string | null | undefined;
|
|
25
31
|
}>, "many">>>;
|
|
26
32
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
27
33
|
id: z.ZodString;
|
|
@@ -38,14 +44,20 @@ export declare const zDistChannelTypeSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
38
44
|
name: z.ZodString;
|
|
39
45
|
color: z.ZodOptional<z.ZodString>;
|
|
40
46
|
hidden: z.ZodBoolean;
|
|
47
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
48
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
41
49
|
}, "strip", z.ZodTypeAny, {
|
|
50
|
+
base: boolean;
|
|
42
51
|
name: string;
|
|
43
52
|
hidden: boolean;
|
|
44
53
|
color?: string | undefined;
|
|
54
|
+
category?: string | null | undefined;
|
|
45
55
|
}, {
|
|
46
56
|
name: string;
|
|
47
57
|
hidden: boolean;
|
|
58
|
+
base?: boolean | undefined;
|
|
48
59
|
color?: string | undefined;
|
|
60
|
+
category?: string | null | undefined;
|
|
49
61
|
}>, "many">>>;
|
|
50
62
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
51
63
|
id: z.ZodString;
|
|
@@ -62,14 +74,20 @@ export declare const zDistChannelTypeSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
62
74
|
name: z.ZodString;
|
|
63
75
|
color: z.ZodOptional<z.ZodString>;
|
|
64
76
|
hidden: z.ZodBoolean;
|
|
77
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
78
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
65
79
|
}, "strip", z.ZodTypeAny, {
|
|
80
|
+
base: boolean;
|
|
66
81
|
name: string;
|
|
67
82
|
hidden: boolean;
|
|
68
83
|
color?: string | undefined;
|
|
84
|
+
category?: string | null | undefined;
|
|
69
85
|
}, {
|
|
70
86
|
name: string;
|
|
71
87
|
hidden: boolean;
|
|
88
|
+
base?: boolean | undefined;
|
|
72
89
|
color?: string | undefined;
|
|
90
|
+
category?: string | null | undefined;
|
|
73
91
|
}>, "many">>>;
|
|
74
92
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
75
93
|
export declare const zDistChannelSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -90,14 +108,20 @@ export declare const zDistChannelSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
90
108
|
name: z.ZodString;
|
|
91
109
|
color: z.ZodOptional<z.ZodString>;
|
|
92
110
|
hidden: z.ZodBoolean;
|
|
111
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
112
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
93
113
|
}, "strip", z.ZodTypeAny, {
|
|
114
|
+
base: boolean;
|
|
94
115
|
name: string;
|
|
95
116
|
hidden: boolean;
|
|
96
117
|
color?: string | undefined;
|
|
118
|
+
category?: string | null | undefined;
|
|
97
119
|
}, {
|
|
98
120
|
name: string;
|
|
99
121
|
hidden: boolean;
|
|
122
|
+
base?: boolean | undefined;
|
|
100
123
|
color?: string | undefined;
|
|
124
|
+
category?: string | null | undefined;
|
|
101
125
|
}>, "many">>>;
|
|
102
126
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
103
127
|
id: z.ZodString;
|
|
@@ -117,14 +141,20 @@ export declare const zDistChannelSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
117
141
|
name: z.ZodString;
|
|
118
142
|
color: z.ZodOptional<z.ZodString>;
|
|
119
143
|
hidden: z.ZodBoolean;
|
|
144
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
145
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
120
146
|
}, "strip", z.ZodTypeAny, {
|
|
147
|
+
base: boolean;
|
|
121
148
|
name: string;
|
|
122
149
|
hidden: boolean;
|
|
123
150
|
color?: string | undefined;
|
|
151
|
+
category?: string | null | undefined;
|
|
124
152
|
}, {
|
|
125
153
|
name: string;
|
|
126
154
|
hidden: boolean;
|
|
155
|
+
base?: boolean | undefined;
|
|
127
156
|
color?: string | undefined;
|
|
157
|
+
category?: string | null | undefined;
|
|
128
158
|
}>, "many">>>;
|
|
129
159
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
130
160
|
id: z.ZodString;
|
|
@@ -144,14 +174,20 @@ export declare const zDistChannelSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
144
174
|
name: z.ZodString;
|
|
145
175
|
color: z.ZodOptional<z.ZodString>;
|
|
146
176
|
hidden: z.ZodBoolean;
|
|
177
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
178
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
147
179
|
}, "strip", z.ZodTypeAny, {
|
|
180
|
+
base: boolean;
|
|
148
181
|
name: string;
|
|
149
182
|
hidden: boolean;
|
|
150
183
|
color?: string | undefined;
|
|
184
|
+
category?: string | null | undefined;
|
|
151
185
|
}, {
|
|
152
186
|
name: string;
|
|
153
187
|
hidden: boolean;
|
|
188
|
+
base?: boolean | undefined;
|
|
154
189
|
color?: string | undefined;
|
|
190
|
+
category?: string | null | undefined;
|
|
155
191
|
}>, "many">>>;
|
|
156
192
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
157
193
|
export declare const zQualificationFunnelLevelSchema: z.ZodEnum<["invalid", "new", "trying_contact", "contacted", "qualifying", "qualified", "disqualified", "presented", "proposal_sent", "negotiating", "won", "lost", "waiting_reply", "follow_up_later"]>;
|
|
@@ -171,14 +207,20 @@ export declare const zQualificationSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
171
207
|
name: z.ZodString;
|
|
172
208
|
color: z.ZodOptional<z.ZodString>;
|
|
173
209
|
hidden: z.ZodBoolean;
|
|
210
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
211
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
174
212
|
}, "strip", z.ZodTypeAny, {
|
|
213
|
+
base: boolean;
|
|
175
214
|
name: string;
|
|
176
215
|
hidden: boolean;
|
|
177
216
|
color?: string | undefined;
|
|
217
|
+
category?: string | null | undefined;
|
|
178
218
|
}, {
|
|
179
219
|
name: string;
|
|
180
220
|
hidden: boolean;
|
|
221
|
+
base?: boolean | undefined;
|
|
181
222
|
color?: string | undefined;
|
|
223
|
+
category?: string | null | undefined;
|
|
182
224
|
}>, "many">>>;
|
|
183
225
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
184
226
|
id: z.ZodString;
|
|
@@ -196,14 +238,20 @@ export declare const zQualificationSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
196
238
|
name: z.ZodString;
|
|
197
239
|
color: z.ZodOptional<z.ZodString>;
|
|
198
240
|
hidden: z.ZodBoolean;
|
|
241
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
242
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
199
243
|
}, "strip", z.ZodTypeAny, {
|
|
244
|
+
base: boolean;
|
|
200
245
|
name: string;
|
|
201
246
|
hidden: boolean;
|
|
202
247
|
color?: string | undefined;
|
|
248
|
+
category?: string | null | undefined;
|
|
203
249
|
}, {
|
|
204
250
|
name: string;
|
|
205
251
|
hidden: boolean;
|
|
252
|
+
base?: boolean | undefined;
|
|
206
253
|
color?: string | undefined;
|
|
254
|
+
category?: string | null | undefined;
|
|
207
255
|
}>, "many">>>;
|
|
208
256
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
209
257
|
id: z.ZodString;
|
|
@@ -221,13 +269,19 @@ export declare const zQualificationSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
221
269
|
name: z.ZodString;
|
|
222
270
|
color: z.ZodOptional<z.ZodString>;
|
|
223
271
|
hidden: z.ZodBoolean;
|
|
272
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
273
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
224
274
|
}, "strip", z.ZodTypeAny, {
|
|
275
|
+
base: boolean;
|
|
225
276
|
name: string;
|
|
226
277
|
hidden: boolean;
|
|
227
278
|
color?: string | undefined;
|
|
279
|
+
category?: string | null | undefined;
|
|
228
280
|
}, {
|
|
229
281
|
name: string;
|
|
230
282
|
hidden: boolean;
|
|
283
|
+
base?: boolean | undefined;
|
|
231
284
|
color?: string | undefined;
|
|
285
|
+
category?: string | null | undefined;
|
|
232
286
|
}>, "many">>>;
|
|
233
287
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
@@ -124,14 +124,20 @@ export declare const zLeadSchema: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
124
124
|
name: z.ZodString;
|
|
125
125
|
color: z.ZodOptional<z.ZodString>;
|
|
126
126
|
hidden: z.ZodBoolean;
|
|
127
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
128
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
127
129
|
}, "strip", z.ZodTypeAny, {
|
|
130
|
+
base: boolean;
|
|
128
131
|
name: string;
|
|
129
132
|
hidden: boolean;
|
|
130
133
|
color?: string | undefined;
|
|
134
|
+
category?: string | null | undefined;
|
|
131
135
|
}, {
|
|
132
136
|
name: string;
|
|
133
137
|
hidden: boolean;
|
|
138
|
+
base?: boolean | undefined;
|
|
134
139
|
color?: string | undefined;
|
|
140
|
+
category?: string | null | undefined;
|
|
135
141
|
}>, "many">>>;
|
|
136
142
|
userRef: z.ZodAny;
|
|
137
143
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -229,14 +235,20 @@ export declare const zLeadSchema: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
229
235
|
name: z.ZodString;
|
|
230
236
|
color: z.ZodOptional<z.ZodString>;
|
|
231
237
|
hidden: z.ZodBoolean;
|
|
238
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
239
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
232
240
|
}, "strip", z.ZodTypeAny, {
|
|
241
|
+
base: boolean;
|
|
233
242
|
name: string;
|
|
234
243
|
hidden: boolean;
|
|
235
244
|
color?: string | undefined;
|
|
245
|
+
category?: string | null | undefined;
|
|
236
246
|
}, {
|
|
237
247
|
name: string;
|
|
238
248
|
hidden: boolean;
|
|
249
|
+
base?: boolean | undefined;
|
|
239
250
|
color?: string | undefined;
|
|
251
|
+
category?: string | null | undefined;
|
|
240
252
|
}>, "many">>>;
|
|
241
253
|
userRef: z.ZodAny;
|
|
242
254
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -334,14 +346,20 @@ export declare const zLeadSchema: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
334
346
|
name: z.ZodString;
|
|
335
347
|
color: z.ZodOptional<z.ZodString>;
|
|
336
348
|
hidden: z.ZodBoolean;
|
|
349
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
350
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
337
351
|
}, "strip", z.ZodTypeAny, {
|
|
352
|
+
base: boolean;
|
|
338
353
|
name: string;
|
|
339
354
|
hidden: boolean;
|
|
340
355
|
color?: string | undefined;
|
|
356
|
+
category?: string | null | undefined;
|
|
341
357
|
}, {
|
|
342
358
|
name: string;
|
|
343
359
|
hidden: boolean;
|
|
360
|
+
base?: boolean | undefined;
|
|
344
361
|
color?: string | undefined;
|
|
362
|
+
category?: string | null | undefined;
|
|
345
363
|
}>, "many">>>;
|
|
346
364
|
userRef: z.ZodAny;
|
|
347
365
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
@@ -23,14 +23,20 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
23
23
|
name: z.ZodString;
|
|
24
24
|
color: z.ZodOptional<z.ZodString>;
|
|
25
25
|
hidden: z.ZodBoolean;
|
|
26
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
26
28
|
}, "strip", z.ZodTypeAny, {
|
|
29
|
+
base: boolean;
|
|
27
30
|
name: string;
|
|
28
31
|
hidden: boolean;
|
|
29
32
|
color?: string | undefined;
|
|
33
|
+
category?: string | null | undefined;
|
|
30
34
|
}, {
|
|
31
35
|
name: string;
|
|
32
36
|
hidden: boolean;
|
|
37
|
+
base?: boolean | undefined;
|
|
33
38
|
color?: string | undefined;
|
|
39
|
+
category?: string | null | undefined;
|
|
34
40
|
}>, "many">>>;
|
|
35
41
|
userRef: z.ZodAny;
|
|
36
42
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
@@ -57,14 +63,20 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
57
63
|
name: z.ZodString;
|
|
58
64
|
color: z.ZodOptional<z.ZodString>;
|
|
59
65
|
hidden: z.ZodBoolean;
|
|
66
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
67
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
60
68
|
}, "strip", z.ZodTypeAny, {
|
|
69
|
+
base: boolean;
|
|
61
70
|
name: string;
|
|
62
71
|
hidden: boolean;
|
|
63
72
|
color?: string | undefined;
|
|
73
|
+
category?: string | null | undefined;
|
|
64
74
|
}, {
|
|
65
75
|
name: string;
|
|
66
76
|
hidden: boolean;
|
|
77
|
+
base?: boolean | undefined;
|
|
67
78
|
color?: string | undefined;
|
|
79
|
+
category?: string | null | undefined;
|
|
68
80
|
}>, "many">>>;
|
|
69
81
|
userRef: z.ZodAny;
|
|
70
82
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
@@ -91,14 +103,20 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
91
103
|
name: z.ZodString;
|
|
92
104
|
color: z.ZodOptional<z.ZodString>;
|
|
93
105
|
hidden: z.ZodBoolean;
|
|
106
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
107
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
94
108
|
}, "strip", z.ZodTypeAny, {
|
|
109
|
+
base: boolean;
|
|
95
110
|
name: string;
|
|
96
111
|
hidden: boolean;
|
|
97
112
|
color?: string | undefined;
|
|
113
|
+
category?: string | null | undefined;
|
|
98
114
|
}, {
|
|
99
115
|
name: string;
|
|
100
116
|
hidden: boolean;
|
|
117
|
+
base?: boolean | undefined;
|
|
101
118
|
color?: string | undefined;
|
|
119
|
+
category?: string | null | undefined;
|
|
102
120
|
}>, "many">>>;
|
|
103
121
|
userRef: z.ZodAny;
|
|
104
122
|
}>, z.ZodTypeAny, "passthrough">>;
|