evo360-types 1.1.47 → 1.1.49
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 +9 -9
- package/dist/apps/evo-calendar/zod-schemas.d.ts +7 -7
- package/dist/apps/evo-meeting/zod-schemas.d.ts +9 -9
- package/dist/apps/evo-people/zod-schemas.d.ts +45 -45
- package/dist/apps/evo-survey/zod-schemas.d.ts +149 -149
- package/dist/apps/evo-tenant/zod-schemas.d.ts +7 -7
- package/dist/apps/shared/zod-schemas.d.ts +7 -7
- package/dist/apps/shared/zod-schemas.js +3 -3
- package/dist/apps/shared/zod-schemas.ts +3 -3
- package/dist/types/evo-survey/index.d.ts +7 -5
- package/dist/types/evo-survey/index.ts +28 -4
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const zReadStatusSchema: z.ZodEnum<["new", "unread", "read", "archived", "dismissed", "snoozed"]>;
|
|
3
3
|
export declare const zIActivityEventSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
4
|
-
id: z.ZodString
|
|
5
|
-
ref: z.ZodAny
|
|
6
|
-
tenant: z.ZodString
|
|
4
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
6
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
7
7
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
8
8
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
9
9
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -31,9 +31,9 @@ export declare const zIActivityEventSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
31
31
|
color?: string | undefined;
|
|
32
32
|
}>, "many">>;
|
|
33
33
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
34
|
-
id: z.ZodString
|
|
35
|
-
ref: z.ZodAny
|
|
36
|
-
tenant: z.ZodString
|
|
34
|
+
id: z.ZodOptional<z.ZodString>;
|
|
35
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
36
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
37
37
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
38
38
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
39
39
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -61,9 +61,9 @@ export declare const zIActivityEventSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
61
61
|
color?: string | undefined;
|
|
62
62
|
}>, "many">>;
|
|
63
63
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
64
|
-
id: z.ZodString
|
|
65
|
-
ref: z.ZodAny
|
|
66
|
-
tenant: z.ZodString
|
|
64
|
+
id: z.ZodOptional<z.ZodString>;
|
|
65
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
66
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
67
67
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
68
68
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
69
69
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -3,9 +3,9 @@ export declare const zCalendarActionSchema: z.ZodEnum<["CREATE_EVENT", "DELETE_E
|
|
|
3
3
|
export declare const zCalendarEventStatusSchema: z.ZodEnum<["scheduled", "completed", "cancelled"]>;
|
|
4
4
|
export declare const zCalendarEventTypeSchema: z.ZodEnum<["event", "meeting", "workshop", "other"]>;
|
|
5
5
|
export declare const zEventSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
6
|
-
id: z.ZodString
|
|
7
|
-
ref: z.ZodAny
|
|
8
|
-
tenant: z.ZodString
|
|
6
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
8
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
9
9
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
10
10
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
11
11
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -31,13 +31,13 @@ export declare const zEventSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
31
31
|
color?: string | undefined;
|
|
32
32
|
}>, "many">>;
|
|
33
33
|
}>, "strip", z.ZodTypeAny, {
|
|
34
|
-
id: string;
|
|
35
|
-
tenant: string;
|
|
36
34
|
title: string;
|
|
37
35
|
creatorName: string;
|
|
38
36
|
eventType: "other" | "event" | "meeting" | "workshop";
|
|
39
37
|
eventStatus: "completed" | "cancelled" | "scheduled";
|
|
38
|
+
id?: string | undefined;
|
|
40
39
|
ref?: any;
|
|
40
|
+
tenant?: string | undefined;
|
|
41
41
|
model_ver?: number | undefined;
|
|
42
42
|
created_at?: Date | null | undefined;
|
|
43
43
|
updated_at?: Date | null | undefined;
|
|
@@ -50,13 +50,13 @@ export declare const zEventSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
50
50
|
color?: string | undefined;
|
|
51
51
|
}[] | undefined;
|
|
52
52
|
}, {
|
|
53
|
-
id: string;
|
|
54
|
-
tenant: string;
|
|
55
53
|
title: string;
|
|
56
54
|
creatorName: string;
|
|
57
55
|
eventType: "other" | "event" | "meeting" | "workshop";
|
|
58
56
|
eventStatus: "completed" | "cancelled" | "scheduled";
|
|
57
|
+
id?: string | undefined;
|
|
59
58
|
ref?: any;
|
|
59
|
+
tenant?: string | undefined;
|
|
60
60
|
model_ver?: number | undefined;
|
|
61
61
|
created_at?: Date | null | undefined;
|
|
62
62
|
updated_at?: Date | null | undefined;
|
|
@@ -88,9 +88,9 @@ export declare const zMeetingTalkingPointSchema: z.ZodObject<{
|
|
|
88
88
|
notes?: string | undefined;
|
|
89
89
|
}>;
|
|
90
90
|
export declare const zMeetingSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
91
|
-
id: z.ZodString
|
|
92
|
-
ref: z.ZodAny
|
|
93
|
-
tenant: z.ZodString
|
|
91
|
+
id: z.ZodOptional<z.ZodString>;
|
|
92
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
93
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
94
94
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
95
95
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
96
96
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -201,9 +201,9 @@ export declare const zMeetingSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
201
201
|
color?: string | undefined;
|
|
202
202
|
}>, "many">>;
|
|
203
203
|
}>, "strip", z.ZodUnknown, z.objectOutputType<z.objectUtil.extendShape<{
|
|
204
|
-
id: z.ZodString
|
|
205
|
-
ref: z.ZodAny
|
|
206
|
-
tenant: z.ZodString
|
|
204
|
+
id: z.ZodOptional<z.ZodString>;
|
|
205
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
206
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
207
207
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
208
208
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
209
209
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -314,9 +314,9 @@ export declare const zMeetingSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
314
314
|
color?: string | undefined;
|
|
315
315
|
}>, "many">>;
|
|
316
316
|
}>, z.ZodUnknown, "strip">, z.objectInputType<z.objectUtil.extendShape<{
|
|
317
|
-
id: z.ZodString
|
|
318
|
-
ref: z.ZodAny
|
|
319
|
-
tenant: z.ZodString
|
|
317
|
+
id: z.ZodOptional<z.ZodString>;
|
|
318
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
319
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
320
320
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
321
321
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
322
322
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const zPeopleActionSchema: z.ZodEnum<["CREATE_COMPANY", "DELETE_COMPANY", "UPDATE_COMPANY", "UPDATE_COMPANY_LEAD", "UPDATE_COMPANY_NAME", "CREATE_OFFICE", "DELETE_OFFICE", "UPDATE_OFFICE", "UPDATE_OFFICE_NAME", "UPDATE_OFFICE_TIMEZONE", "UPDATE_OFFICE_COMPANY", "UPDATE_OFFICE_LEAD", "CREATE_DEPARTMENT", "DELETE_DEPARTMENT", "UPDATE_DEPARTMENT", "UPDATE_DEPARTMENT_PARENT_DEPARTMENT", "UPDATE_DEPARTMENT_LEAD", "UPDATE_DEPARTMENT_NAME", "CREATE_EMPLOYEE", "DELETE_EMPLOYEE", "UPDATE_EMPLOYEE", "UPDATE_EMPLOYEE_PHOTO", "UPDATE_PROFILE", "UPDATE_PHOTO", "UPDATE_PASSWORD", "UPDATE_EMPLOYEE_REPORT_TO", "UPDATE_EMPLOYEE_DEPARTMENT", "UPDATE_EMPLOYEE_OFFICE", "UPDATE_EMPLOYEE_COMPANY", "UPDATE_EMPLOYEE_JOB_TITLE", "UPDATE_EMPLOYEE_WORK_EMAIL", "UPDATE_EMPLOYEE_STATUS"]>;
|
|
3
3
|
export declare const zProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
4
|
-
id: z.ZodString
|
|
5
|
-
ref: z.ZodAny
|
|
6
|
-
tenant: z.ZodString
|
|
4
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
6
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
7
7
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
8
8
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
9
9
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -17,9 +17,9 @@ export declare const zProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
17
17
|
photo_ref: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
18
|
photo_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
20
|
-
id: z.ZodString
|
|
21
|
-
ref: z.ZodAny
|
|
22
|
-
tenant: z.ZodString
|
|
20
|
+
id: z.ZodOptional<z.ZodString>;
|
|
21
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
22
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
23
23
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
24
24
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
25
25
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -33,9 +33,9 @@ export declare const zProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
33
33
|
photo_ref: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34
34
|
photo_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35
35
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
36
|
-
id: z.ZodString
|
|
37
|
-
ref: z.ZodAny
|
|
38
|
-
tenant: z.ZodString
|
|
36
|
+
id: z.ZodOptional<z.ZodString>;
|
|
37
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
38
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
39
39
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
40
40
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
41
41
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -51,9 +51,9 @@ export declare const zProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
51
51
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
52
52
|
export declare const zEmployeeStatusSchema: z.ZodEnum<["active", "inactive", "draft"]>;
|
|
53
53
|
export declare const zEmployeeSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
54
|
-
id: z.ZodString
|
|
55
|
-
ref: z.ZodAny
|
|
56
|
-
tenant: z.ZodString
|
|
54
|
+
id: z.ZodOptional<z.ZodString>;
|
|
55
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
56
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
57
57
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
58
58
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
59
59
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -98,9 +98,9 @@ export declare const zEmployeeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
98
98
|
}>, "many">>;
|
|
99
99
|
userRef: z.ZodAny;
|
|
100
100
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
101
|
-
id: z.ZodString
|
|
102
|
-
ref: z.ZodAny
|
|
103
|
-
tenant: z.ZodString
|
|
101
|
+
id: z.ZodOptional<z.ZodString>;
|
|
102
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
103
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
104
104
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
105
105
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
106
106
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -145,9 +145,9 @@ export declare const zEmployeeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
145
145
|
}>, "many">>;
|
|
146
146
|
userRef: z.ZodAny;
|
|
147
147
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
148
|
-
id: z.ZodString
|
|
149
|
-
ref: z.ZodAny
|
|
150
|
-
tenant: z.ZodString
|
|
148
|
+
id: z.ZodOptional<z.ZodString>;
|
|
149
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
150
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
151
151
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
152
152
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
153
153
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -193,9 +193,9 @@ export declare const zEmployeeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
193
193
|
userRef: z.ZodAny;
|
|
194
194
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
195
195
|
export declare const zDepartmentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
196
|
-
id: z.ZodString
|
|
197
|
-
ref: z.ZodAny
|
|
198
|
-
tenant: z.ZodString
|
|
196
|
+
id: z.ZodOptional<z.ZodString>;
|
|
197
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
198
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
199
199
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
200
200
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
201
201
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -222,9 +222,9 @@ export declare const zDepartmentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
222
222
|
color?: string | undefined;
|
|
223
223
|
}>, "many">>;
|
|
224
224
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
225
|
-
id: z.ZodString
|
|
226
|
-
ref: z.ZodAny
|
|
227
|
-
tenant: z.ZodString
|
|
225
|
+
id: z.ZodOptional<z.ZodString>;
|
|
226
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
227
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
228
228
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
229
229
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
230
230
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -251,9 +251,9 @@ export declare const zDepartmentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
251
251
|
color?: string | undefined;
|
|
252
252
|
}>, "many">>;
|
|
253
253
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
254
|
-
id: z.ZodString
|
|
255
|
-
ref: z.ZodAny
|
|
256
|
-
tenant: z.ZodString
|
|
254
|
+
id: z.ZodOptional<z.ZodString>;
|
|
255
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
256
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
257
257
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
258
258
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
259
259
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -281,9 +281,9 @@ export declare const zDepartmentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
281
281
|
}>, "many">>;
|
|
282
282
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
283
283
|
export declare const zOfficeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
284
|
-
id: z.ZodString
|
|
285
|
-
ref: z.ZodAny
|
|
286
|
-
tenant: z.ZodString
|
|
284
|
+
id: z.ZodOptional<z.ZodString>;
|
|
285
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
286
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
287
287
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
288
288
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
289
289
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -318,9 +318,9 @@ export declare const zOfficeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
318
318
|
color?: string | undefined;
|
|
319
319
|
}>, "many">>;
|
|
320
320
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
321
|
-
id: z.ZodString
|
|
322
|
-
ref: z.ZodAny
|
|
323
|
-
tenant: z.ZodString
|
|
321
|
+
id: z.ZodOptional<z.ZodString>;
|
|
322
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
323
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
324
324
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
325
325
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
326
326
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -355,9 +355,9 @@ export declare const zOfficeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
355
355
|
color?: string | undefined;
|
|
356
356
|
}>, "many">>;
|
|
357
357
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
358
|
-
id: z.ZodString
|
|
359
|
-
ref: z.ZodAny
|
|
360
|
-
tenant: z.ZodString
|
|
358
|
+
id: z.ZodOptional<z.ZodString>;
|
|
359
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
360
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
361
361
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
362
362
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
363
363
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -393,9 +393,9 @@ export declare const zOfficeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
393
393
|
}>, "many">>;
|
|
394
394
|
}>, z.ZodTypeAny, "passthrough">>;
|
|
395
395
|
export declare const zCompanySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
396
|
-
id: z.ZodString
|
|
397
|
-
ref: z.ZodAny
|
|
398
|
-
tenant: z.ZodString
|
|
396
|
+
id: z.ZodOptional<z.ZodString>;
|
|
397
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
398
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
399
399
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
400
400
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
401
401
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -420,9 +420,9 @@ export declare const zCompanySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
420
420
|
color?: string | undefined;
|
|
421
421
|
}>, "many">>;
|
|
422
422
|
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
423
|
-
id: z.ZodString
|
|
424
|
-
ref: z.ZodAny
|
|
425
|
-
tenant: z.ZodString
|
|
423
|
+
id: z.ZodOptional<z.ZodString>;
|
|
424
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
425
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
426
426
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
427
427
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
428
428
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -447,9 +447,9 @@ export declare const zCompanySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
447
447
|
color?: string | undefined;
|
|
448
448
|
}>, "many">>;
|
|
449
449
|
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
450
|
-
id: z.ZodString
|
|
451
|
-
ref: z.ZodAny
|
|
452
|
-
tenant: z.ZodString
|
|
450
|
+
id: z.ZodOptional<z.ZodString>;
|
|
451
|
+
ref: z.ZodOptional<z.ZodAny>;
|
|
452
|
+
tenant: z.ZodOptional<z.ZodString>;
|
|
453
453
|
model_ver: z.ZodOptional<z.ZodNumber>;
|
|
454
454
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
455
455
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|