evo360-types 1.1.75 → 1.1.76
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 +3 -3
- package/dist/apps/evo-calendar/zod-schemas.d.ts +2 -2
- package/dist/apps/evo-meeting/zod-schemas.d.ts +3 -3
- package/dist/apps/evo-people/zod-schemas.d.ts +15 -15
- package/dist/apps/evo-survey/zod-schemas.d.ts +53 -53
- package/dist/apps/evo-tenant/zod-schemas.d.ts +2 -2
- package/dist/apps/shared/zod-schemas.d.ts +2 -2
- package/dist/apps/shared/zod-schemas.js +1 -1
- package/dist/apps/shared/zod-schemas.ts +1 -1
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ export declare const zIActivityEventSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
4
4
|
id: z.ZodString;
|
|
5
5
|
ref: z.ZodAny;
|
|
6
6
|
tenant: z.ZodString;
|
|
7
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
7
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
8
8
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
9
9
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
10
10
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -34,7 +34,7 @@ export declare const zIActivityEventSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
34
34
|
id: z.ZodString;
|
|
35
35
|
ref: z.ZodAny;
|
|
36
36
|
tenant: z.ZodString;
|
|
37
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
37
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
38
38
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
39
39
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
40
40
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -64,7 +64,7 @@ export declare const zIActivityEventSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
64
64
|
id: z.ZodString;
|
|
65
65
|
ref: z.ZodAny;
|
|
66
66
|
tenant: z.ZodString;
|
|
67
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
67
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
68
68
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
69
69
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
70
70
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -6,7 +6,7 @@ export declare const zEventSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6
6
|
id: z.ZodString;
|
|
7
7
|
ref: z.ZodAny;
|
|
8
8
|
tenant: z.ZodString;
|
|
9
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
9
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
10
10
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
11
11
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
12
12
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -33,12 +33,12 @@ export declare const zEventSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
33
33
|
}>, "strip", z.ZodTypeAny, {
|
|
34
34
|
id: string;
|
|
35
35
|
tenant: string;
|
|
36
|
+
model_ver: number;
|
|
36
37
|
title: string;
|
|
37
38
|
creatorName: string;
|
|
38
39
|
eventType: "other" | "event" | "meeting" | "workshop";
|
|
39
40
|
eventStatus: "completed" | "cancelled" | "scheduled";
|
|
40
41
|
ref?: any;
|
|
41
|
-
model_ver?: number | undefined;
|
|
42
42
|
created_at?: Date | null | undefined;
|
|
43
43
|
updated_at?: Date | null | undefined;
|
|
44
44
|
deleted_at?: Date | null | undefined;
|
|
@@ -91,7 +91,7 @@ export declare const zMeetingSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
91
91
|
id: z.ZodString;
|
|
92
92
|
ref: z.ZodAny;
|
|
93
93
|
tenant: z.ZodString;
|
|
94
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
94
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
95
95
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
96
96
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
97
97
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -204,7 +204,7 @@ export declare const zMeetingSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
204
204
|
id: z.ZodString;
|
|
205
205
|
ref: z.ZodAny;
|
|
206
206
|
tenant: z.ZodString;
|
|
207
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
207
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
208
208
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
209
209
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
210
210
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -317,7 +317,7 @@ export declare const zMeetingSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
317
317
|
id: z.ZodString;
|
|
318
318
|
ref: z.ZodAny;
|
|
319
319
|
tenant: z.ZodString;
|
|
320
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
320
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
321
321
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
322
322
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
323
323
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -4,7 +4,7 @@ export declare const zProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4
4
|
id: z.ZodString;
|
|
5
5
|
ref: z.ZodAny;
|
|
6
6
|
tenant: z.ZodString;
|
|
7
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
7
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
8
8
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
9
9
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
10
10
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -20,7 +20,7 @@ export declare const zProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20
20
|
id: z.ZodString;
|
|
21
21
|
ref: z.ZodAny;
|
|
22
22
|
tenant: z.ZodString;
|
|
23
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
23
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
24
24
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
25
25
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
26
26
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -36,7 +36,7 @@ export declare const zProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
36
36
|
id: z.ZodString;
|
|
37
37
|
ref: z.ZodAny;
|
|
38
38
|
tenant: z.ZodString;
|
|
39
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
39
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
40
40
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
41
41
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
42
42
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -54,7 +54,7 @@ export declare const zEmployeeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
54
54
|
id: z.ZodString;
|
|
55
55
|
ref: z.ZodAny;
|
|
56
56
|
tenant: z.ZodString;
|
|
57
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
57
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
58
58
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
59
59
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
60
60
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -101,7 +101,7 @@ export declare const zEmployeeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
101
101
|
id: z.ZodString;
|
|
102
102
|
ref: z.ZodAny;
|
|
103
103
|
tenant: z.ZodString;
|
|
104
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
104
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
105
105
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
106
106
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
107
107
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -148,7 +148,7 @@ export declare const zEmployeeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
148
148
|
id: z.ZodString;
|
|
149
149
|
ref: z.ZodAny;
|
|
150
150
|
tenant: z.ZodString;
|
|
151
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
151
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
152
152
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
153
153
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
154
154
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -196,7 +196,7 @@ export declare const zDepartmentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
196
196
|
id: z.ZodString;
|
|
197
197
|
ref: z.ZodAny;
|
|
198
198
|
tenant: z.ZodString;
|
|
199
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
199
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
200
200
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
201
201
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
202
202
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -225,7 +225,7 @@ export declare const zDepartmentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
225
225
|
id: z.ZodString;
|
|
226
226
|
ref: z.ZodAny;
|
|
227
227
|
tenant: z.ZodString;
|
|
228
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
228
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
229
229
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
230
230
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
231
231
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -254,7 +254,7 @@ export declare const zDepartmentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
254
254
|
id: z.ZodString;
|
|
255
255
|
ref: z.ZodAny;
|
|
256
256
|
tenant: z.ZodString;
|
|
257
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
257
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
258
258
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
259
259
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
260
260
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -284,7 +284,7 @@ export declare const zOfficeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
284
284
|
id: z.ZodString;
|
|
285
285
|
ref: z.ZodAny;
|
|
286
286
|
tenant: z.ZodString;
|
|
287
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
287
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
288
288
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
289
289
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
290
290
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -321,7 +321,7 @@ export declare const zOfficeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
321
321
|
id: z.ZodString;
|
|
322
322
|
ref: z.ZodAny;
|
|
323
323
|
tenant: z.ZodString;
|
|
324
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
324
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
325
325
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
326
326
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
327
327
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -358,7 +358,7 @@ export declare const zOfficeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
358
358
|
id: z.ZodString;
|
|
359
359
|
ref: z.ZodAny;
|
|
360
360
|
tenant: z.ZodString;
|
|
361
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
361
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
362
362
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
363
363
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
364
364
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -396,7 +396,7 @@ export declare const zCompanySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
396
396
|
id: z.ZodString;
|
|
397
397
|
ref: z.ZodAny;
|
|
398
398
|
tenant: z.ZodString;
|
|
399
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
399
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
400
400
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
401
401
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
402
402
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -423,7 +423,7 @@ export declare const zCompanySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
423
423
|
id: z.ZodString;
|
|
424
424
|
ref: z.ZodAny;
|
|
425
425
|
tenant: z.ZodString;
|
|
426
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
426
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
427
427
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
428
428
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
429
429
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -450,7 +450,7 @@ export declare const zCompanySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
450
450
|
id: z.ZodString;
|
|
451
451
|
ref: z.ZodAny;
|
|
452
452
|
tenant: z.ZodString;
|
|
453
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
453
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
454
454
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
455
455
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
456
456
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -11,7 +11,7 @@ export declare const zSurveyQuestionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
11
11
|
id: z.ZodString;
|
|
12
12
|
ref: z.ZodAny;
|
|
13
13
|
tenant: z.ZodString;
|
|
14
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
14
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
15
15
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
16
16
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
17
17
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -40,7 +40,7 @@ export declare const zSurveyQuestionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
40
40
|
id: z.ZodString;
|
|
41
41
|
ref: z.ZodAny;
|
|
42
42
|
tenant: z.ZodString;
|
|
43
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
43
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
44
44
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
45
45
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
46
46
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -69,7 +69,7 @@ export declare const zSurveyQuestionSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
69
69
|
id: z.ZodString;
|
|
70
70
|
ref: z.ZodAny;
|
|
71
71
|
tenant: z.ZodString;
|
|
72
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
72
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
73
73
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
74
74
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
75
75
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -99,7 +99,7 @@ export declare const zSurveyQuestionScaleSchema: z.ZodObject<z.objectUtil.extend
|
|
|
99
99
|
id: z.ZodString;
|
|
100
100
|
ref: z.ZodAny;
|
|
101
101
|
tenant: z.ZodString;
|
|
102
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
102
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
103
103
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
104
104
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
105
105
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -133,7 +133,7 @@ export declare const zSurveyQuestionScaleSchema: z.ZodObject<z.objectUtil.extend
|
|
|
133
133
|
id: z.ZodString;
|
|
134
134
|
ref: z.ZodAny;
|
|
135
135
|
tenant: z.ZodString;
|
|
136
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
136
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
137
137
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
138
138
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
139
139
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -167,7 +167,7 @@ export declare const zSurveyQuestionScaleSchema: z.ZodObject<z.objectUtil.extend
|
|
|
167
167
|
id: z.ZodString;
|
|
168
168
|
ref: z.ZodAny;
|
|
169
169
|
tenant: z.ZodString;
|
|
170
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
170
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
171
171
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
172
172
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
173
173
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -202,7 +202,7 @@ export declare const zSurveyQuestionEssaySchema: z.ZodObject<z.objectUtil.extend
|
|
|
202
202
|
id: z.ZodString;
|
|
203
203
|
ref: z.ZodAny;
|
|
204
204
|
tenant: z.ZodString;
|
|
205
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
205
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
206
206
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
207
207
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
208
208
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -236,7 +236,7 @@ export declare const zSurveyQuestionEssaySchema: z.ZodObject<z.objectUtil.extend
|
|
|
236
236
|
id: z.ZodString;
|
|
237
237
|
ref: z.ZodAny;
|
|
238
238
|
tenant: z.ZodString;
|
|
239
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
239
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
240
240
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
241
241
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
242
242
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -270,7 +270,7 @@ export declare const zSurveyQuestionEssaySchema: z.ZodObject<z.objectUtil.extend
|
|
|
270
270
|
id: z.ZodString;
|
|
271
271
|
ref: z.ZodAny;
|
|
272
272
|
tenant: z.ZodString;
|
|
273
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
273
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
274
274
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
275
275
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
276
276
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -305,7 +305,7 @@ export declare const zSurveyQuestionMultipleChoiceSchema: z.ZodObject<z.objectUt
|
|
|
305
305
|
id: z.ZodString;
|
|
306
306
|
ref: z.ZodAny;
|
|
307
307
|
tenant: z.ZodString;
|
|
308
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
308
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
309
309
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
310
310
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
311
311
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -338,7 +338,7 @@ export declare const zSurveyQuestionMultipleChoiceSchema: z.ZodObject<z.objectUt
|
|
|
338
338
|
id: z.ZodString;
|
|
339
339
|
ref: z.ZodAny;
|
|
340
340
|
tenant: z.ZodString;
|
|
341
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
341
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
342
342
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
343
343
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
344
344
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -371,7 +371,7 @@ export declare const zSurveyQuestionMultipleChoiceSchema: z.ZodObject<z.objectUt
|
|
|
371
371
|
id: z.ZodString;
|
|
372
372
|
ref: z.ZodAny;
|
|
373
373
|
tenant: z.ZodString;
|
|
374
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
374
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
375
375
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
376
376
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
377
377
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -405,7 +405,7 @@ export declare const zSurveyQuestionDateSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
405
405
|
id: z.ZodString;
|
|
406
406
|
ref: z.ZodAny;
|
|
407
407
|
tenant: z.ZodString;
|
|
408
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
408
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
409
409
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
410
410
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
411
411
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -438,7 +438,7 @@ export declare const zSurveyQuestionDateSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
438
438
|
id: z.ZodString;
|
|
439
439
|
ref: z.ZodAny;
|
|
440
440
|
tenant: z.ZodString;
|
|
441
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
441
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
442
442
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
443
443
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
444
444
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -471,7 +471,7 @@ export declare const zSurveyQuestionDateSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
471
471
|
id: z.ZodString;
|
|
472
472
|
ref: z.ZodAny;
|
|
473
473
|
tenant: z.ZodString;
|
|
474
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
474
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
475
475
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
476
476
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
477
477
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -505,7 +505,7 @@ export declare const zSurveyQuestionPhoneSchema: z.ZodObject<z.objectUtil.extend
|
|
|
505
505
|
id: z.ZodString;
|
|
506
506
|
ref: z.ZodAny;
|
|
507
507
|
tenant: z.ZodString;
|
|
508
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
508
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
509
509
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
510
510
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
511
511
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -537,7 +537,7 @@ export declare const zSurveyQuestionPhoneSchema: z.ZodObject<z.objectUtil.extend
|
|
|
537
537
|
id: z.ZodString;
|
|
538
538
|
ref: z.ZodAny;
|
|
539
539
|
tenant: z.ZodString;
|
|
540
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
540
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
541
541
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
542
542
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
543
543
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -569,7 +569,7 @@ export declare const zSurveyQuestionPhoneSchema: z.ZodObject<z.objectUtil.extend
|
|
|
569
569
|
id: z.ZodString;
|
|
570
570
|
ref: z.ZodAny;
|
|
571
571
|
tenant: z.ZodString;
|
|
572
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
572
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
573
573
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
574
574
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
575
575
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -602,7 +602,7 @@ export declare const zSurveyQuestionMaskSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
602
602
|
id: z.ZodString;
|
|
603
603
|
ref: z.ZodAny;
|
|
604
604
|
tenant: z.ZodString;
|
|
605
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
605
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
606
606
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
607
607
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
608
608
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -634,7 +634,7 @@ export declare const zSurveyQuestionMaskSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
634
634
|
id: z.ZodString;
|
|
635
635
|
ref: z.ZodAny;
|
|
636
636
|
tenant: z.ZodString;
|
|
637
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
637
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
638
638
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
639
639
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
640
640
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -666,7 +666,7 @@ export declare const zSurveyQuestionMaskSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
666
666
|
id: z.ZodString;
|
|
667
667
|
ref: z.ZodAny;
|
|
668
668
|
tenant: z.ZodString;
|
|
669
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
669
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
670
670
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
671
671
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
672
672
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -699,7 +699,7 @@ export declare const zSurveySectionSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
699
699
|
id: z.ZodString;
|
|
700
700
|
ref: z.ZodAny;
|
|
701
701
|
tenant: z.ZodString;
|
|
702
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
702
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
703
703
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
704
704
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
705
705
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -713,7 +713,7 @@ export declare const zSurveySectionSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
713
713
|
id: z.ZodString;
|
|
714
714
|
ref: z.ZodAny;
|
|
715
715
|
tenant: z.ZodString;
|
|
716
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
716
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
717
717
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
718
718
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
719
719
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -727,7 +727,7 @@ export declare const zSurveySectionSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
727
727
|
id: z.ZodString;
|
|
728
728
|
ref: z.ZodAny;
|
|
729
729
|
tenant: z.ZodString;
|
|
730
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
730
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
731
731
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
732
732
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
733
733
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -742,7 +742,7 @@ export declare const zSurveySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
742
742
|
id: z.ZodString;
|
|
743
743
|
ref: z.ZodAny;
|
|
744
744
|
tenant: z.ZodString;
|
|
745
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
745
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
746
746
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
747
747
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
748
748
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -771,7 +771,7 @@ export declare const zSurveySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
771
771
|
id: z.ZodString;
|
|
772
772
|
ref: z.ZodAny;
|
|
773
773
|
tenant: z.ZodString;
|
|
774
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
774
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
775
775
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
776
776
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
777
777
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -800,7 +800,7 @@ export declare const zSurveySchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
800
800
|
id: z.ZodString;
|
|
801
801
|
ref: z.ZodAny;
|
|
802
802
|
tenant: z.ZodString;
|
|
803
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
803
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
804
804
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
805
805
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
806
806
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -843,7 +843,7 @@ export declare const zSurveyResponseSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
843
843
|
id: z.ZodString;
|
|
844
844
|
ref: z.ZodAny;
|
|
845
845
|
tenant: z.ZodString;
|
|
846
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
846
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
847
847
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
848
848
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
849
849
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -865,9 +865,9 @@ export declare const zSurveyResponseSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
865
865
|
}>, "strip", z.ZodTypeAny, {
|
|
866
866
|
id: string;
|
|
867
867
|
tenant: string;
|
|
868
|
+
model_ver: number;
|
|
868
869
|
surveyId: string;
|
|
869
870
|
ref?: any;
|
|
870
|
-
model_ver?: number | undefined;
|
|
871
871
|
created_at?: Date | null | undefined;
|
|
872
872
|
updated_at?: Date | null | undefined;
|
|
873
873
|
deleted_at?: Date | null | undefined;
|
|
@@ -895,7 +895,7 @@ export declare const zSurveySubmissionSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
895
895
|
id: z.ZodString;
|
|
896
896
|
ref: z.ZodAny;
|
|
897
897
|
tenant: z.ZodString;
|
|
898
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
898
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
899
899
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
900
900
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
901
901
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -909,7 +909,7 @@ export declare const zSurveySubmissionSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
909
909
|
id: z.ZodString;
|
|
910
910
|
ref: z.ZodAny;
|
|
911
911
|
tenant: z.ZodString;
|
|
912
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
912
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
913
913
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
914
914
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
915
915
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -931,9 +931,9 @@ export declare const zSurveySubmissionSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
931
931
|
}>, "strip", z.ZodTypeAny, {
|
|
932
932
|
id: string;
|
|
933
933
|
tenant: string;
|
|
934
|
+
model_ver: number;
|
|
934
935
|
surveyId: string;
|
|
935
936
|
ref?: any;
|
|
936
|
-
model_ver?: number | undefined;
|
|
937
937
|
created_at?: Date | null | undefined;
|
|
938
938
|
updated_at?: Date | null | undefined;
|
|
939
939
|
deleted_at?: Date | null | undefined;
|
|
@@ -963,22 +963,22 @@ export declare const zSurveySubmissionSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
963
963
|
}>, "strip", z.ZodTypeAny, {
|
|
964
964
|
id: string;
|
|
965
965
|
tenant: string;
|
|
966
|
+
model_ver: number;
|
|
966
967
|
status: "not_started" | "in_progress" | "completed";
|
|
967
968
|
user_name: string;
|
|
968
969
|
modified_after_completion: boolean;
|
|
969
970
|
answer_count: number;
|
|
970
971
|
submission_count: number;
|
|
971
972
|
ref?: any;
|
|
972
|
-
model_ver?: number | undefined;
|
|
973
973
|
created_at?: Date | null | undefined;
|
|
974
974
|
updated_at?: Date | null | undefined;
|
|
975
975
|
deleted_at?: Date | null | undefined;
|
|
976
976
|
responses?: {
|
|
977
977
|
id: string;
|
|
978
978
|
tenant: string;
|
|
979
|
+
model_ver: number;
|
|
979
980
|
surveyId: string;
|
|
980
981
|
ref?: any;
|
|
981
|
-
model_ver?: number | undefined;
|
|
982
982
|
created_at?: Date | null | undefined;
|
|
983
983
|
updated_at?: Date | null | undefined;
|
|
984
984
|
deleted_at?: Date | null | undefined;
|
|
@@ -1027,7 +1027,7 @@ export declare const zSurveyInviteeSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1027
1027
|
id: z.ZodString;
|
|
1028
1028
|
ref: z.ZodAny;
|
|
1029
1029
|
tenant: z.ZodString;
|
|
1030
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
1030
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1031
1031
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1032
1032
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1033
1033
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -1044,12 +1044,12 @@ export declare const zSurveyInviteeSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
1044
1044
|
}>, "strip", z.ZodTypeAny, {
|
|
1045
1045
|
id: string;
|
|
1046
1046
|
tenant: string;
|
|
1047
|
+
model_ver: number;
|
|
1047
1048
|
name: string;
|
|
1048
1049
|
phone: string;
|
|
1049
1050
|
isAnonymous: boolean;
|
|
1050
1051
|
submission_status: "not_started" | "in_progress" | "completed";
|
|
1051
1052
|
ref?: any;
|
|
1052
|
-
model_ver?: number | undefined;
|
|
1053
1053
|
created_at?: Date | null | undefined;
|
|
1054
1054
|
updated_at?: Date | null | undefined;
|
|
1055
1055
|
deleted_at?: Date | null | undefined;
|
|
@@ -1080,7 +1080,7 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1080
1080
|
id: z.ZodString;
|
|
1081
1081
|
ref: z.ZodAny;
|
|
1082
1082
|
tenant: z.ZodString;
|
|
1083
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
1083
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1084
1084
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1085
1085
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1086
1086
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -1091,7 +1091,7 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1091
1091
|
id: z.ZodString;
|
|
1092
1092
|
ref: z.ZodAny;
|
|
1093
1093
|
tenant: z.ZodString;
|
|
1094
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
1094
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1095
1095
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1096
1096
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1097
1097
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -1120,7 +1120,7 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1120
1120
|
id: z.ZodString;
|
|
1121
1121
|
ref: z.ZodAny;
|
|
1122
1122
|
tenant: z.ZodString;
|
|
1123
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
1123
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1124
1124
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1125
1125
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1126
1126
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -1149,7 +1149,7 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1149
1149
|
id: z.ZodString;
|
|
1150
1150
|
ref: z.ZodAny;
|
|
1151
1151
|
tenant: z.ZodString;
|
|
1152
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
1152
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1153
1153
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1154
1154
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1155
1155
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -1186,7 +1186,7 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1186
1186
|
id: z.ZodString;
|
|
1187
1187
|
ref: z.ZodAny;
|
|
1188
1188
|
tenant: z.ZodString;
|
|
1189
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
1189
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1190
1190
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1191
1191
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1192
1192
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -1203,12 +1203,12 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1203
1203
|
}>, "strip", z.ZodTypeAny, {
|
|
1204
1204
|
id: string;
|
|
1205
1205
|
tenant: string;
|
|
1206
|
+
model_ver: number;
|
|
1206
1207
|
name: string;
|
|
1207
1208
|
phone: string;
|
|
1208
1209
|
isAnonymous: boolean;
|
|
1209
1210
|
submission_status: "not_started" | "in_progress" | "completed";
|
|
1210
1211
|
ref?: any;
|
|
1211
|
-
model_ver?: number | undefined;
|
|
1212
1212
|
created_at?: Date | null | undefined;
|
|
1213
1213
|
updated_at?: Date | null | undefined;
|
|
1214
1214
|
deleted_at?: Date | null | undefined;
|
|
@@ -1240,7 +1240,7 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1240
1240
|
id: z.ZodString;
|
|
1241
1241
|
ref: z.ZodAny;
|
|
1242
1242
|
tenant: z.ZodString;
|
|
1243
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
1243
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1244
1244
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1245
1245
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1246
1246
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -1254,7 +1254,7 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1254
1254
|
id: z.ZodString;
|
|
1255
1255
|
ref: z.ZodAny;
|
|
1256
1256
|
tenant: z.ZodString;
|
|
1257
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
1257
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1258
1258
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1259
1259
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1260
1260
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -1276,9 +1276,9 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1276
1276
|
}>, "strip", z.ZodTypeAny, {
|
|
1277
1277
|
id: string;
|
|
1278
1278
|
tenant: string;
|
|
1279
|
+
model_ver: number;
|
|
1279
1280
|
surveyId: string;
|
|
1280
1281
|
ref?: any;
|
|
1281
|
-
model_ver?: number | undefined;
|
|
1282
1282
|
created_at?: Date | null | undefined;
|
|
1283
1283
|
updated_at?: Date | null | undefined;
|
|
1284
1284
|
deleted_at?: Date | null | undefined;
|
|
@@ -1308,22 +1308,22 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1308
1308
|
}>, "strip", z.ZodTypeAny, {
|
|
1309
1309
|
id: string;
|
|
1310
1310
|
tenant: string;
|
|
1311
|
+
model_ver: number;
|
|
1311
1312
|
status: "not_started" | "in_progress" | "completed";
|
|
1312
1313
|
user_name: string;
|
|
1313
1314
|
modified_after_completion: boolean;
|
|
1314
1315
|
answer_count: number;
|
|
1315
1316
|
submission_count: number;
|
|
1316
1317
|
ref?: any;
|
|
1317
|
-
model_ver?: number | undefined;
|
|
1318
1318
|
created_at?: Date | null | undefined;
|
|
1319
1319
|
updated_at?: Date | null | undefined;
|
|
1320
1320
|
deleted_at?: Date | null | undefined;
|
|
1321
1321
|
responses?: {
|
|
1322
1322
|
id: string;
|
|
1323
1323
|
tenant: string;
|
|
1324
|
+
model_ver: number;
|
|
1324
1325
|
surveyId: string;
|
|
1325
1326
|
ref?: any;
|
|
1326
|
-
model_ver?: number | undefined;
|
|
1327
1327
|
created_at?: Date | null | undefined;
|
|
1328
1328
|
updated_at?: Date | null | undefined;
|
|
1329
1329
|
deleted_at?: Date | null | undefined;
|
|
@@ -1375,6 +1375,7 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1375
1375
|
}>, "strip", z.ZodTypeAny, {
|
|
1376
1376
|
id: string;
|
|
1377
1377
|
tenant: string;
|
|
1378
|
+
model_ver: number;
|
|
1378
1379
|
name: string;
|
|
1379
1380
|
status: "draft" | "in_progress" | "open" | "closed" | "paused";
|
|
1380
1381
|
submission_count: number;
|
|
@@ -1389,7 +1390,6 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1389
1390
|
submission_in_progress_count: number;
|
|
1390
1391
|
submission_completed_count: number;
|
|
1391
1392
|
ref?: any;
|
|
1392
|
-
model_ver?: number | undefined;
|
|
1393
1393
|
created_at?: Date | null | undefined;
|
|
1394
1394
|
updated_at?: Date | null | undefined;
|
|
1395
1395
|
deleted_at?: Date | null | undefined;
|
|
@@ -1398,7 +1398,7 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1398
1398
|
id: z.ZodString;
|
|
1399
1399
|
ref: z.ZodAny;
|
|
1400
1400
|
tenant: z.ZodString;
|
|
1401
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
1401
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1402
1402
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1403
1403
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1404
1404
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -1427,22 +1427,22 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1427
1427
|
submissions?: {
|
|
1428
1428
|
id: string;
|
|
1429
1429
|
tenant: string;
|
|
1430
|
+
model_ver: number;
|
|
1430
1431
|
status: "not_started" | "in_progress" | "completed";
|
|
1431
1432
|
user_name: string;
|
|
1432
1433
|
modified_after_completion: boolean;
|
|
1433
1434
|
answer_count: number;
|
|
1434
1435
|
submission_count: number;
|
|
1435
1436
|
ref?: any;
|
|
1436
|
-
model_ver?: number | undefined;
|
|
1437
1437
|
created_at?: Date | null | undefined;
|
|
1438
1438
|
updated_at?: Date | null | undefined;
|
|
1439
1439
|
deleted_at?: Date | null | undefined;
|
|
1440
1440
|
responses?: {
|
|
1441
1441
|
id: string;
|
|
1442
1442
|
tenant: string;
|
|
1443
|
+
model_ver: number;
|
|
1443
1444
|
surveyId: string;
|
|
1444
1445
|
ref?: any;
|
|
1445
|
-
model_ver?: number | undefined;
|
|
1446
1446
|
created_at?: Date | null | undefined;
|
|
1447
1447
|
updated_at?: Date | null | undefined;
|
|
1448
1448
|
deleted_at?: Date | null | undefined;
|
|
@@ -1459,12 +1459,12 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1459
1459
|
invitees?: {
|
|
1460
1460
|
id: string;
|
|
1461
1461
|
tenant: string;
|
|
1462
|
+
model_ver: number;
|
|
1462
1463
|
name: string;
|
|
1463
1464
|
phone: string;
|
|
1464
1465
|
isAnonymous: boolean;
|
|
1465
1466
|
submission_status: "not_started" | "in_progress" | "completed";
|
|
1466
1467
|
ref?: any;
|
|
1467
|
-
model_ver?: number | undefined;
|
|
1468
1468
|
created_at?: Date | null | undefined;
|
|
1469
1469
|
updated_at?: Date | null | undefined;
|
|
1470
1470
|
deleted_at?: Date | null | undefined;
|
|
@@ -1493,7 +1493,7 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
1493
1493
|
id: z.ZodString;
|
|
1494
1494
|
ref: z.ZodAny;
|
|
1495
1495
|
tenant: z.ZodString;
|
|
1496
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
1496
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1497
1497
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1498
1498
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1499
1499
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -6,7 +6,7 @@ export declare const zTenantSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6
6
|
id: z.ZodString;
|
|
7
7
|
ref: z.ZodAny;
|
|
8
8
|
tenant: z.ZodString;
|
|
9
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
9
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
10
10
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
11
11
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
12
12
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
@@ -21,11 +21,11 @@ export declare const zTenantSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
21
21
|
}>, "strip", z.ZodTypeAny, {
|
|
22
22
|
id: string;
|
|
23
23
|
tenant: string;
|
|
24
|
+
model_ver: number;
|
|
24
25
|
name: string;
|
|
25
26
|
url_alias: string;
|
|
26
27
|
status: "draft" | "published" | "archived";
|
|
27
28
|
ref?: any;
|
|
28
|
-
model_ver?: number | undefined;
|
|
29
29
|
created_at?: Date | null | undefined;
|
|
30
30
|
updated_at?: Date | null | undefined;
|
|
31
31
|
deleted_at?: Date | null | undefined;
|
|
@@ -4,15 +4,15 @@ export declare const zFireDocSchema: z.ZodObject<{
|
|
|
4
4
|
id: z.ZodString;
|
|
5
5
|
ref: z.ZodAny;
|
|
6
6
|
tenant: z.ZodString;
|
|
7
|
-
model_ver: z.ZodOptional<z.ZodNumber
|
|
7
|
+
model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
8
8
|
created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
9
9
|
updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
10
10
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
12
|
id: string;
|
|
13
13
|
tenant: string;
|
|
14
|
+
model_ver: number;
|
|
14
15
|
ref?: any;
|
|
15
|
-
model_ver?: number | undefined;
|
|
16
16
|
created_at?: Date | null | undefined;
|
|
17
17
|
updated_at?: Date | null | undefined;
|
|
18
18
|
deleted_at?: Date | null | undefined;
|
|
@@ -18,7 +18,7 @@ exports.zFireDocSchema = zod_1.z.object({
|
|
|
18
18
|
id: zod_1.z.string(),
|
|
19
19
|
ref: zod_1.z.any(),
|
|
20
20
|
tenant: zod_1.z.string(),
|
|
21
|
-
model_ver: zod_1.z.number().optional(),
|
|
21
|
+
model_ver: zod_1.z.number().optional().default(1),
|
|
22
22
|
created_at: zod_1.z.coerce.date().nullable().optional(),
|
|
23
23
|
updated_at: zod_1.z.coerce.date().nullable().optional(),
|
|
24
24
|
deleted_at: zod_1.z.coerce.date().nullable().optional(),
|
|
@@ -17,7 +17,7 @@ export const zFireDocSchema = z.object({
|
|
|
17
17
|
id: z.string(),
|
|
18
18
|
ref: z.any(),
|
|
19
19
|
tenant: z.string(),
|
|
20
|
-
model_ver: z.number().optional(),
|
|
20
|
+
model_ver: z.number().optional().default(1),
|
|
21
21
|
created_at: z.coerce.date().nullable().optional(),
|
|
22
22
|
updated_at: z.coerce.date().nullable().optional(),
|
|
23
23
|
deleted_at: z.coerce.date().nullable().optional(),
|