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
|
@@ -87,14 +87,20 @@ export declare const zEmployeeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
87
87
|
name: z.ZodString;
|
|
88
88
|
color: z.ZodOptional<z.ZodString>;
|
|
89
89
|
hidden: z.ZodBoolean;
|
|
90
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
91
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
90
92
|
}, "strip", z.ZodTypeAny, {
|
|
93
|
+
base: boolean;
|
|
91
94
|
name: string;
|
|
92
95
|
hidden: boolean;
|
|
93
96
|
color?: string | undefined;
|
|
97
|
+
category?: string | null | undefined;
|
|
94
98
|
}, {
|
|
95
99
|
name: string;
|
|
96
100
|
hidden: boolean;
|
|
101
|
+
base?: boolean | undefined;
|
|
97
102
|
color?: string | undefined;
|
|
103
|
+
category?: string | null | undefined;
|
|
98
104
|
}>, "many">>>;
|
|
99
105
|
userRef: z.ZodAny;
|
|
100
106
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -134,14 +140,20 @@ export declare const zEmployeeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
134
140
|
name: z.ZodString;
|
|
135
141
|
color: z.ZodOptional<z.ZodString>;
|
|
136
142
|
hidden: z.ZodBoolean;
|
|
143
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
144
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
137
145
|
}, "strip", z.ZodTypeAny, {
|
|
146
|
+
base: boolean;
|
|
138
147
|
name: string;
|
|
139
148
|
hidden: boolean;
|
|
140
149
|
color?: string | undefined;
|
|
150
|
+
category?: string | null | undefined;
|
|
141
151
|
}, {
|
|
142
152
|
name: string;
|
|
143
153
|
hidden: boolean;
|
|
154
|
+
base?: boolean | undefined;
|
|
144
155
|
color?: string | undefined;
|
|
156
|
+
category?: string | null | undefined;
|
|
145
157
|
}>, "many">>>;
|
|
146
158
|
userRef: z.ZodAny;
|
|
147
159
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -181,14 +193,20 @@ export declare const zEmployeeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
181
193
|
name: z.ZodString;
|
|
182
194
|
color: z.ZodOptional<z.ZodString>;
|
|
183
195
|
hidden: z.ZodBoolean;
|
|
196
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
197
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
184
198
|
}, "strip", z.ZodTypeAny, {
|
|
199
|
+
base: boolean;
|
|
185
200
|
name: string;
|
|
186
201
|
hidden: boolean;
|
|
187
202
|
color?: string | undefined;
|
|
203
|
+
category?: string | null | undefined;
|
|
188
204
|
}, {
|
|
189
205
|
name: string;
|
|
190
206
|
hidden: boolean;
|
|
207
|
+
base?: boolean | undefined;
|
|
191
208
|
color?: string | undefined;
|
|
209
|
+
category?: string | null | undefined;
|
|
192
210
|
}>, "many">>>;
|
|
193
211
|
userRef: z.ZodAny;
|
|
194
212
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
@@ -212,14 +230,20 @@ export declare const zDepartmentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
212
230
|
name: z.ZodString;
|
|
213
231
|
color: z.ZodOptional<z.ZodString>;
|
|
214
232
|
hidden: z.ZodBoolean;
|
|
233
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
234
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
215
235
|
}, "strip", z.ZodTypeAny, {
|
|
236
|
+
base: boolean;
|
|
216
237
|
name: string;
|
|
217
238
|
hidden: boolean;
|
|
218
239
|
color?: string | undefined;
|
|
240
|
+
category?: string | null | undefined;
|
|
219
241
|
}, {
|
|
220
242
|
name: string;
|
|
221
243
|
hidden: boolean;
|
|
244
|
+
base?: boolean | undefined;
|
|
222
245
|
color?: string | undefined;
|
|
246
|
+
category?: string | null | undefined;
|
|
223
247
|
}>, "many">>>;
|
|
224
248
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
225
249
|
id: z.ZodString;
|
|
@@ -241,14 +265,20 @@ export declare const zDepartmentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
241
265
|
name: z.ZodString;
|
|
242
266
|
color: z.ZodOptional<z.ZodString>;
|
|
243
267
|
hidden: z.ZodBoolean;
|
|
268
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
269
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
244
270
|
}, "strip", z.ZodTypeAny, {
|
|
271
|
+
base: boolean;
|
|
245
272
|
name: string;
|
|
246
273
|
hidden: boolean;
|
|
247
274
|
color?: string | undefined;
|
|
275
|
+
category?: string | null | undefined;
|
|
248
276
|
}, {
|
|
249
277
|
name: string;
|
|
250
278
|
hidden: boolean;
|
|
279
|
+
base?: boolean | undefined;
|
|
251
280
|
color?: string | undefined;
|
|
281
|
+
category?: string | null | undefined;
|
|
252
282
|
}>, "many">>>;
|
|
253
283
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
254
284
|
id: z.ZodString;
|
|
@@ -270,14 +300,20 @@ export declare const zDepartmentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
270
300
|
name: z.ZodString;
|
|
271
301
|
color: z.ZodOptional<z.ZodString>;
|
|
272
302
|
hidden: z.ZodBoolean;
|
|
303
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
304
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
273
305
|
}, "strip", z.ZodTypeAny, {
|
|
306
|
+
base: boolean;
|
|
274
307
|
name: string;
|
|
275
308
|
hidden: boolean;
|
|
276
309
|
color?: string | undefined;
|
|
310
|
+
category?: string | null | undefined;
|
|
277
311
|
}, {
|
|
278
312
|
name: string;
|
|
279
313
|
hidden: boolean;
|
|
314
|
+
base?: boolean | undefined;
|
|
280
315
|
color?: string | undefined;
|
|
316
|
+
category?: string | null | undefined;
|
|
281
317
|
}>, "many">>>;
|
|
282
318
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
283
319
|
export declare const zOfficeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -308,14 +344,20 @@ export declare const zOfficeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
308
344
|
name: z.ZodString;
|
|
309
345
|
color: z.ZodOptional<z.ZodString>;
|
|
310
346
|
hidden: z.ZodBoolean;
|
|
347
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
348
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
311
349
|
}, "strip", z.ZodTypeAny, {
|
|
350
|
+
base: boolean;
|
|
312
351
|
name: string;
|
|
313
352
|
hidden: boolean;
|
|
314
353
|
color?: string | undefined;
|
|
354
|
+
category?: string | null | undefined;
|
|
315
355
|
}, {
|
|
316
356
|
name: string;
|
|
317
357
|
hidden: boolean;
|
|
358
|
+
base?: boolean | undefined;
|
|
318
359
|
color?: string | undefined;
|
|
360
|
+
category?: string | null | undefined;
|
|
319
361
|
}>, "many">>>;
|
|
320
362
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
321
363
|
id: z.ZodString;
|
|
@@ -345,14 +387,20 @@ export declare const zOfficeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
345
387
|
name: z.ZodString;
|
|
346
388
|
color: z.ZodOptional<z.ZodString>;
|
|
347
389
|
hidden: z.ZodBoolean;
|
|
390
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
391
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
348
392
|
}, "strip", z.ZodTypeAny, {
|
|
393
|
+
base: boolean;
|
|
349
394
|
name: string;
|
|
350
395
|
hidden: boolean;
|
|
351
396
|
color?: string | undefined;
|
|
397
|
+
category?: string | null | undefined;
|
|
352
398
|
}, {
|
|
353
399
|
name: string;
|
|
354
400
|
hidden: boolean;
|
|
401
|
+
base?: boolean | undefined;
|
|
355
402
|
color?: string | undefined;
|
|
403
|
+
category?: string | null | undefined;
|
|
356
404
|
}>, "many">>>;
|
|
357
405
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
358
406
|
id: z.ZodString;
|
|
@@ -382,14 +430,20 @@ export declare const zOfficeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
382
430
|
name: z.ZodString;
|
|
383
431
|
color: z.ZodOptional<z.ZodString>;
|
|
384
432
|
hidden: z.ZodBoolean;
|
|
433
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
434
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
385
435
|
}, "strip", z.ZodTypeAny, {
|
|
436
|
+
base: boolean;
|
|
386
437
|
name: string;
|
|
387
438
|
hidden: boolean;
|
|
388
439
|
color?: string | undefined;
|
|
440
|
+
category?: string | null | undefined;
|
|
389
441
|
}, {
|
|
390
442
|
name: string;
|
|
391
443
|
hidden: boolean;
|
|
444
|
+
base?: boolean | undefined;
|
|
392
445
|
color?: string | undefined;
|
|
446
|
+
category?: string | null | undefined;
|
|
393
447
|
}>, "many">>>;
|
|
394
448
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
395
449
|
export declare const zCompanySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -410,14 +464,20 @@ export declare const zCompanySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
410
464
|
name: z.ZodString;
|
|
411
465
|
color: z.ZodOptional<z.ZodString>;
|
|
412
466
|
hidden: z.ZodBoolean;
|
|
467
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
468
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
413
469
|
}, "strip", z.ZodTypeAny, {
|
|
470
|
+
base: boolean;
|
|
414
471
|
name: string;
|
|
415
472
|
hidden: boolean;
|
|
416
473
|
color?: string | undefined;
|
|
474
|
+
category?: string | null | undefined;
|
|
417
475
|
}, {
|
|
418
476
|
name: string;
|
|
419
477
|
hidden: boolean;
|
|
478
|
+
base?: boolean | undefined;
|
|
420
479
|
color?: string | undefined;
|
|
480
|
+
category?: string | null | undefined;
|
|
421
481
|
}>, "many">>>;
|
|
422
482
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
423
483
|
id: z.ZodString;
|
|
@@ -437,14 +497,20 @@ export declare const zCompanySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
437
497
|
name: z.ZodString;
|
|
438
498
|
color: z.ZodOptional<z.ZodString>;
|
|
439
499
|
hidden: z.ZodBoolean;
|
|
500
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
501
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
440
502
|
}, "strip", z.ZodTypeAny, {
|
|
503
|
+
base: boolean;
|
|
441
504
|
name: string;
|
|
442
505
|
hidden: boolean;
|
|
443
506
|
color?: string | undefined;
|
|
507
|
+
category?: string | null | undefined;
|
|
444
508
|
}, {
|
|
445
509
|
name: string;
|
|
446
510
|
hidden: boolean;
|
|
511
|
+
base?: boolean | undefined;
|
|
447
512
|
color?: string | undefined;
|
|
513
|
+
category?: string | null | undefined;
|
|
448
514
|
}>, "many">>>;
|
|
449
515
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
450
516
|
id: z.ZodString;
|
|
@@ -464,13 +530,19 @@ export declare const zCompanySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
464
530
|
name: z.ZodString;
|
|
465
531
|
color: z.ZodOptional<z.ZodString>;
|
|
466
532
|
hidden: z.ZodBoolean;
|
|
533
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
534
|
+
base: z.ZodDefault<z.ZodBoolean>;
|
|
467
535
|
}, "strip", z.ZodTypeAny, {
|
|
536
|
+
base: boolean;
|
|
468
537
|
name: string;
|
|
469
538
|
hidden: boolean;
|
|
470
539
|
color?: string | undefined;
|
|
540
|
+
category?: string | null | undefined;
|
|
471
541
|
}, {
|
|
472
542
|
name: string;
|
|
473
543
|
hidden: boolean;
|
|
544
|
+
base?: boolean | undefined;
|
|
474
545
|
color?: string | undefined;
|
|
546
|
+
category?: string | null | undefined;
|
|
475
547
|
}>, "many">>>;
|
|
476
548
|
}>, z.ZodTypeAny, "passthrough">>;
|