evo360-types 1.3.38 → 1.3.39

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.
@@ -1,110 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.zStructuredDataAssetSchema = exports.zNoteAssetSchema = exports.zMeetingAssetSchema = exports.zCalendarEventAssetSchema = exports.zFileAssetSchema = exports.zBaseAssetSchema = exports.zCakeDocSchema = exports.zCakeSchema = exports.zAssetProcessingStatusSchema = exports.zAssetTypeSchema = exports.zCakeStatusSchema = exports.zCakePermissionSchema = exports.zCakeAssetActionSchema = exports.zCakeActionSchema = void 0;
4
- const zod_1 = require("zod");
5
- const zod_schemas_1 = require("../shared/zod-schemas");
6
- exports.zCakeActionSchema = zod_1.z.enum([
7
- "CREATE_SURVEY",
8
- "DELETE_SURVEY",
9
- "UPDATE_SURVEY",
10
- "SHARE_SURVEY",
11
- ]);
12
- exports.zCakeAssetActionSchema = zod_1.z.enum([
13
- "CREATE_CAKE_ASSET",
14
- "DELETE_CAKE_ASSET",
15
- "UPDATE_CAKE_ASSET",
16
- "PROCESS_CAKE_ASSET",
17
- "CLASSIFY_CAKE_ASSET",
18
- "EXTRACT_TEXT_CAKE_ASSET",
19
- "OCR_CAKE_ASSET",
20
- "METADATA_EXTRACTION_CAKE_ASSET",
21
- "UPDATE_RELEVANCE_SCORE_CAKE_ASSET",
22
- "UPDATE_ASSET_STATUS_CAKE_ASSET",
23
- "UPDATE_ASSET_TAGS_CAKE_ASSET",
24
- "PROCESS_CAKE_ASSET_FAILED",
25
- "CLASSIFY_CAKE_ASSET_FAILED",
26
- "EXTRACT_TEXT_CAKE_ASSET_FAILED",
27
- "STORE_CAKE_ASSET",
28
- "RETRIEVE_CAKE_ASSET",
29
- ]);
30
- exports.zCakePermissionSchema = zod_1.z.enum(["private", "tenant", "public"]);
31
- exports.zCakeStatusSchema = zod_1.z.enum(["active", "archived"]);
32
- exports.zAssetTypeSchema = zod_1.z.enum([
33
- "file",
34
- "event",
35
- "meeting",
36
- "note",
37
- "data",
38
- ]);
39
- exports.zAssetProcessingStatusSchema = zod_1.z.enum([
40
- "waiting",
41
- "started",
42
- "done",
43
- "failed",
44
- ]);
45
- exports.zCakeSchema = zod_schemas_1.zFireDocSchema // Extend from FireDocSchema
46
- .extend({
47
- name: zod_1.z.string().min(1).max(255),
48
- description: zod_1.z.string().max(2048).optional(),
49
- status: exports.zCakeStatusSchema.optional(),
50
- permission: exports.zCakePermissionSchema.optional(),
51
- //assets: z.array(zCakeAssetSchema).nullable().optional(),
52
- tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
53
- })
54
- .passthrough();
55
- // Consensus - Consensus - Consensus - Consensus - Consensus - Consensus - Consensus - Consensus - Consensus - Consensus - Consensus -
56
- exports.zCakeDocSchema = zod_schemas_1.zFireDocSchema // Extend from FireDocSchema
57
- .extend({
58
- name: zod_1.z.string(),
59
- description: zod_1.z.string().max(2048).optional(),
60
- content: zod_1.z.string().nullable().optional(),
61
- tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
62
- })
63
- .passthrough();
64
- // Asset ----- Asset ----- Asset ----- Asset ----- Asset ----- Asset ----- Asset ----- Asset ----- Asset ----- Asset ----- Asset -----
65
- // Base schema for all assets
66
- exports.zBaseAssetSchema = zod_schemas_1.zFireDocSchema // Extend from FireDocSchema
67
- .extend({
68
- cakeId: zod_1.z.string(),
69
- type: exports.zAssetTypeSchema,
70
- relevance_score: zod_1.z.number().min(0).max(1), // Relevance score between 0 and 1
71
- structured_data: (0, zod_1.any)().optional(),
72
- embeddings: zod_1.z.array(zod_1.z.number()).optional(), // Array of numbers for embeddings
73
- metadata: zod_1.z.record(zod_1.z.any()).optional(), // Additional metadata
74
- processing_status: exports.zAssetProcessingStatusSchema.optional(), // Optional processing status
75
- tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
76
- })
77
- .passthrough();
78
- // Schema for file assets
79
- exports.zFileAssetSchema = exports.zBaseAssetSchema.extend({
80
- file_name: zod_1.z.string(),
81
- file_type: zod_1.z.string(),
82
- storage_location: zod_1.z.string(),
83
- download_url: zod_1.z.string(),
84
- extracted_text: zod_1.z.string().optional(),
85
- });
86
- // Schema for calendar event assets
87
- exports.zCalendarEventAssetSchema = exports.zBaseAssetSchema.extend({
88
- title: zod_1.z.string(),
89
- date: zod_1.z.date(),
90
- start_time: zod_1.z.date().optional(),
91
- end_time: zod_1.z.date().optional(),
92
- location: zod_1.z.string().optional(),
93
- participants: zod_1.z.array(zod_1.z.string()).optional(),
94
- description: zod_1.z.string().optional(),
95
- });
96
- // Schema for meeting assets
97
- exports.zMeetingAssetSchema = exports.zCalendarEventAssetSchema.extend({
98
- agenda: zod_1.z.string().optional(),
99
- notes: zod_1.z.string().optional(),
100
- });
101
- // Schema for note assets
102
- exports.zNoteAssetSchema = exports.zBaseAssetSchema.extend({
103
- title: zod_1.z.string().optional(),
104
- content: zod_1.z.string(),
105
- });
106
- // Schema for structured data assets
107
- exports.zStructuredDataAssetSchema = exports.zBaseAssetSchema.extend({
108
- data: (0, zod_1.any)().optional(),
109
- schema: zod_1.z.string().optional(),
110
- });
@@ -1,121 +0,0 @@
1
- import { any, z } from "zod";
2
- import { zFireDocSchema, zTagSchema } from "../shared/zod-schemas";
3
-
4
- export const zCakeActionSchema = z.enum([
5
- "CREATE_SURVEY",
6
- "DELETE_SURVEY",
7
- "UPDATE_SURVEY",
8
- "SHARE_SURVEY",
9
- ]);
10
-
11
- export const zCakeAssetActionSchema = z.enum([
12
- "CREATE_CAKE_ASSET",
13
- "DELETE_CAKE_ASSET",
14
- "UPDATE_CAKE_ASSET",
15
- "PROCESS_CAKE_ASSET",
16
- "CLASSIFY_CAKE_ASSET",
17
- "EXTRACT_TEXT_CAKE_ASSET",
18
- "OCR_CAKE_ASSET",
19
- "METADATA_EXTRACTION_CAKE_ASSET",
20
- "UPDATE_RELEVANCE_SCORE_CAKE_ASSET",
21
- "UPDATE_ASSET_STATUS_CAKE_ASSET",
22
- "UPDATE_ASSET_TAGS_CAKE_ASSET",
23
- "PROCESS_CAKE_ASSET_FAILED",
24
- "CLASSIFY_CAKE_ASSET_FAILED",
25
- "EXTRACT_TEXT_CAKE_ASSET_FAILED",
26
- "STORE_CAKE_ASSET",
27
- "RETRIEVE_CAKE_ASSET",
28
- ]);
29
-
30
- export const zCakePermissionSchema = z.enum(["private", "tenant", "public"]);
31
-
32
- export const zCakeStatusSchema = z.enum(["active", "archived"]);
33
-
34
- export const zAssetTypeSchema = z.enum([
35
- "file",
36
- "event",
37
- "meeting",
38
- "note",
39
- "data",
40
- ]);
41
-
42
- export const zAssetProcessingStatusSchema = z.enum([
43
- "waiting",
44
- "started",
45
- "done",
46
- "failed",
47
- ]);
48
-
49
- export const zCakeSchema = zFireDocSchema // Extend from FireDocSchema
50
- .extend({
51
- name: z.string().min(1).max(255),
52
- description: z.string().max(2048).optional(),
53
- status: zCakeStatusSchema.optional(),
54
- permission: zCakePermissionSchema.optional(),
55
- //assets: z.array(zCakeAssetSchema).nullable().optional(),
56
- tags: z.array(zTagSchema).nullable().optional(),
57
- })
58
- .passthrough();
59
-
60
- // Consensus - Consensus - Consensus - Consensus - Consensus - Consensus - Consensus - Consensus - Consensus - Consensus - Consensus -
61
- export const zCakeDocSchema = zFireDocSchema // Extend from FireDocSchema
62
- .extend({
63
- name: z.string(),
64
- description: z.string().max(2048).optional(),
65
- content: z.string().nullable().optional(),
66
- tags: z.array(zTagSchema).nullable().optional(),
67
- })
68
- .passthrough();
69
-
70
- // Asset ----- Asset ----- Asset ----- Asset ----- Asset ----- Asset ----- Asset ----- Asset ----- Asset ----- Asset ----- Asset -----
71
- // Base schema for all assets
72
- export const zBaseAssetSchema = zFireDocSchema // Extend from FireDocSchema
73
- .extend({
74
- cakeId: z.string(),
75
- type: zAssetTypeSchema,
76
- relevance_score: z.number().min(0).max(1), // Relevance score between 0 and 1
77
- structured_data: any().optional(),
78
- embeddings: z.array(z.number()).optional(), // Array of numbers for embeddings
79
- metadata: z.record(z.any()).optional(), // Additional metadata
80
- processing_status: zAssetProcessingStatusSchema.optional(), // Optional processing status
81
- tags: z.array(zTagSchema).nullable().optional(),
82
- })
83
- .passthrough();
84
-
85
- // Schema for file assets
86
- export const zFileAssetSchema = zBaseAssetSchema.extend({
87
- file_name: z.string(),
88
- file_type: z.string(),
89
- storage_location: z.string(),
90
- download_url: z.string(),
91
- extracted_text: z.string().optional(),
92
- });
93
-
94
- // Schema for calendar event assets
95
- export const zCalendarEventAssetSchema = zBaseAssetSchema.extend({
96
- title: z.string(),
97
- date: z.date(),
98
- start_time: z.date().optional(),
99
- end_time: z.date().optional(),
100
- location: z.string().optional(),
101
- participants: z.array(z.string()).optional(),
102
- description: z.string().optional(),
103
- });
104
-
105
- // Schema for meeting assets
106
- export const zMeetingAssetSchema = zCalendarEventAssetSchema.extend({
107
- agenda: z.string().optional(),
108
- notes: z.string().optional(),
109
- });
110
-
111
- // Schema for note assets
112
- export const zNoteAssetSchema = zBaseAssetSchema.extend({
113
- title: z.string().optional(),
114
- content: z.string(),
115
- });
116
-
117
- // Schema for structured data assets
118
- export const zStructuredDataAssetSchema = zBaseAssetSchema.extend({
119
- data: any().optional(),
120
- schema: z.string().optional(),
121
- });
@@ -1,429 +0,0 @@
1
- import { z } from "zod";
2
- export declare const zMeetingActionSchema: z.ZodEnum<["CREATE_MEETING", "DELETE_MEETING", "UPDATE_MEETING"]>;
3
- export declare const zMeetingTypeSchema: z.ZodEnum<["regular", "oneonone", "feedback", "presentation", "other"]>;
4
- export declare const zMeetingEventSchema: z.ZodObject<{
5
- eventRef: z.ZodAny;
6
- participantNames: z.ZodArray<z.ZodString, "many">;
7
- participantRefs: z.ZodArray<z.ZodAny, "many">;
8
- startDate: z.ZodDate;
9
- endDate: z.ZodOptional<z.ZodDate>;
10
- }, "strip", z.ZodTypeAny, {
11
- startDate: Date;
12
- participantNames: string[];
13
- participantRefs: any[];
14
- eventRef?: any;
15
- endDate?: Date | undefined;
16
- }, {
17
- startDate: Date;
18
- participantNames: string[];
19
- participantRefs: any[];
20
- eventRef?: any;
21
- endDate?: Date | undefined;
22
- }>;
23
- export declare const zMeetingTaskSchema: z.ZodObject<{
24
- taskRef: z.ZodAny;
25
- title: z.ZodString;
26
- status: z.ZodEnum<["not_started", "in_progress", "completed", "cancelled", "on_hold"]>;
27
- priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
28
- assigneeName: z.ZodOptional<z.ZodString>;
29
- }, "strip", z.ZodTypeAny, {
30
- status: "not_started" | "in_progress" | "completed" | "cancelled" | "on_hold";
31
- title: string;
32
- priority?: "low" | "medium" | "high" | undefined;
33
- assigneeName?: string | undefined;
34
- taskRef?: any;
35
- }, {
36
- status: "not_started" | "in_progress" | "completed" | "cancelled" | "on_hold";
37
- title: string;
38
- priority?: "low" | "medium" | "high" | undefined;
39
- assigneeName?: string | undefined;
40
- taskRef?: any;
41
- }>;
42
- export declare const zMeetingTalkingPointSchema: z.ZodObject<{
43
- templateRef: z.ZodAny;
44
- title: z.ZodString;
45
- description: z.ZodOptional<z.ZodString>;
46
- tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
47
- name: z.ZodString;
48
- color: z.ZodOptional<z.ZodString>;
49
- hidden: z.ZodBoolean;
50
- }, "strip", z.ZodTypeAny, {
51
- name: string;
52
- hidden: boolean;
53
- color?: string | undefined;
54
- }, {
55
- name: string;
56
- hidden: boolean;
57
- color?: string | undefined;
58
- }>, "many">>>;
59
- discussed: z.ZodBoolean;
60
- notes: z.ZodOptional<z.ZodString>;
61
- assigneeName: z.ZodOptional<z.ZodString>;
62
- assigneeRef: z.ZodAny;
63
- }, "strip", z.ZodTypeAny, {
64
- title: string;
65
- discussed: boolean;
66
- description?: string | undefined;
67
- assigneeName?: string | undefined;
68
- assigneeRef?: any;
69
- tags?: {
70
- name: string;
71
- hidden: boolean;
72
- color?: string | undefined;
73
- }[] | null | undefined;
74
- notes?: string | undefined;
75
- templateRef?: any;
76
- }, {
77
- title: string;
78
- discussed: boolean;
79
- description?: string | undefined;
80
- assigneeName?: string | undefined;
81
- assigneeRef?: any;
82
- tags?: {
83
- name: string;
84
- hidden: boolean;
85
- color?: string | undefined;
86
- }[] | null | undefined;
87
- notes?: string | undefined;
88
- templateRef?: any;
89
- }>;
90
- export declare const zMeetingSchema: z.ZodObject<z.objectUtil.extendShape<{
91
- id: z.ZodString;
92
- ref: z.ZodAny;
93
- tenant: z.ZodString;
94
- model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
95
- created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
96
- updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
97
- deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
98
- }, {
99
- title: z.ZodString;
100
- description: z.ZodOptional<z.ZodString>;
101
- creatorName: z.ZodString;
102
- creatorRef: z.ZodAny;
103
- event: z.ZodObject<{
104
- eventRef: z.ZodAny;
105
- participantNames: z.ZodArray<z.ZodString, "many">;
106
- participantRefs: z.ZodArray<z.ZodAny, "many">;
107
- startDate: z.ZodDate;
108
- endDate: z.ZodOptional<z.ZodDate>;
109
- }, "strip", z.ZodTypeAny, {
110
- startDate: Date;
111
- participantNames: string[];
112
- participantRefs: any[];
113
- eventRef?: any;
114
- endDate?: Date | undefined;
115
- }, {
116
- startDate: Date;
117
- participantNames: string[];
118
- participantRefs: any[];
119
- eventRef?: any;
120
- endDate?: Date | undefined;
121
- }>;
122
- type: z.ZodEnum<["regular", "oneonone", "feedback", "presentation", "other"]>;
123
- tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
124
- taskRef: z.ZodAny;
125
- title: z.ZodString;
126
- status: z.ZodEnum<["not_started", "in_progress", "completed", "cancelled", "on_hold"]>;
127
- priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
128
- assigneeName: z.ZodOptional<z.ZodString>;
129
- }, "strip", z.ZodTypeAny, {
130
- status: "not_started" | "in_progress" | "completed" | "cancelled" | "on_hold";
131
- title: string;
132
- priority?: "low" | "medium" | "high" | undefined;
133
- assigneeName?: string | undefined;
134
- taskRef?: any;
135
- }, {
136
- status: "not_started" | "in_progress" | "completed" | "cancelled" | "on_hold";
137
- title: string;
138
- priority?: "low" | "medium" | "high" | undefined;
139
- assigneeName?: string | undefined;
140
- taskRef?: any;
141
- }>, "many">>;
142
- talkingPoints: z.ZodOptional<z.ZodArray<z.ZodObject<{
143
- templateRef: z.ZodAny;
144
- title: z.ZodString;
145
- description: z.ZodOptional<z.ZodString>;
146
- tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
147
- name: z.ZodString;
148
- color: z.ZodOptional<z.ZodString>;
149
- hidden: z.ZodBoolean;
150
- }, "strip", z.ZodTypeAny, {
151
- name: string;
152
- hidden: boolean;
153
- color?: string | undefined;
154
- }, {
155
- name: string;
156
- hidden: boolean;
157
- color?: string | undefined;
158
- }>, "many">>>;
159
- discussed: z.ZodBoolean;
160
- notes: z.ZodOptional<z.ZodString>;
161
- assigneeName: z.ZodOptional<z.ZodString>;
162
- assigneeRef: z.ZodAny;
163
- }, "strip", z.ZodTypeAny, {
164
- title: string;
165
- discussed: boolean;
166
- description?: string | undefined;
167
- assigneeName?: string | undefined;
168
- assigneeRef?: any;
169
- tags?: {
170
- name: string;
171
- hidden: boolean;
172
- color?: string | undefined;
173
- }[] | null | undefined;
174
- notes?: string | undefined;
175
- templateRef?: any;
176
- }, {
177
- title: string;
178
- discussed: boolean;
179
- description?: string | undefined;
180
- assigneeName?: string | undefined;
181
- assigneeRef?: any;
182
- tags?: {
183
- name: string;
184
- hidden: boolean;
185
- color?: string | undefined;
186
- }[] | null | undefined;
187
- notes?: string | undefined;
188
- templateRef?: any;
189
- }>, "many">>;
190
- tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
191
- name: z.ZodString;
192
- color: z.ZodOptional<z.ZodString>;
193
- hidden: z.ZodBoolean;
194
- }, "strip", z.ZodTypeAny, {
195
- name: string;
196
- hidden: boolean;
197
- color?: string | undefined;
198
- }, {
199
- name: string;
200
- hidden: boolean;
201
- color?: string | undefined;
202
- }>, "many">>>;
203
- }>, "strip", z.ZodUnknown, z.objectOutputType<z.objectUtil.extendShape<{
204
- id: z.ZodString;
205
- ref: z.ZodAny;
206
- tenant: z.ZodString;
207
- model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
208
- created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
209
- updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
210
- deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
211
- }, {
212
- title: z.ZodString;
213
- description: z.ZodOptional<z.ZodString>;
214
- creatorName: z.ZodString;
215
- creatorRef: z.ZodAny;
216
- event: z.ZodObject<{
217
- eventRef: z.ZodAny;
218
- participantNames: z.ZodArray<z.ZodString, "many">;
219
- participantRefs: z.ZodArray<z.ZodAny, "many">;
220
- startDate: z.ZodDate;
221
- endDate: z.ZodOptional<z.ZodDate>;
222
- }, "strip", z.ZodTypeAny, {
223
- startDate: Date;
224
- participantNames: string[];
225
- participantRefs: any[];
226
- eventRef?: any;
227
- endDate?: Date | undefined;
228
- }, {
229
- startDate: Date;
230
- participantNames: string[];
231
- participantRefs: any[];
232
- eventRef?: any;
233
- endDate?: Date | undefined;
234
- }>;
235
- type: z.ZodEnum<["regular", "oneonone", "feedback", "presentation", "other"]>;
236
- tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
237
- taskRef: z.ZodAny;
238
- title: z.ZodString;
239
- status: z.ZodEnum<["not_started", "in_progress", "completed", "cancelled", "on_hold"]>;
240
- priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
241
- assigneeName: z.ZodOptional<z.ZodString>;
242
- }, "strip", z.ZodTypeAny, {
243
- status: "not_started" | "in_progress" | "completed" | "cancelled" | "on_hold";
244
- title: string;
245
- priority?: "low" | "medium" | "high" | undefined;
246
- assigneeName?: string | undefined;
247
- taskRef?: any;
248
- }, {
249
- status: "not_started" | "in_progress" | "completed" | "cancelled" | "on_hold";
250
- title: string;
251
- priority?: "low" | "medium" | "high" | undefined;
252
- assigneeName?: string | undefined;
253
- taskRef?: any;
254
- }>, "many">>;
255
- talkingPoints: z.ZodOptional<z.ZodArray<z.ZodObject<{
256
- templateRef: z.ZodAny;
257
- title: z.ZodString;
258
- description: z.ZodOptional<z.ZodString>;
259
- tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
260
- name: z.ZodString;
261
- color: z.ZodOptional<z.ZodString>;
262
- hidden: z.ZodBoolean;
263
- }, "strip", z.ZodTypeAny, {
264
- name: string;
265
- hidden: boolean;
266
- color?: string | undefined;
267
- }, {
268
- name: string;
269
- hidden: boolean;
270
- color?: string | undefined;
271
- }>, "many">>>;
272
- discussed: z.ZodBoolean;
273
- notes: z.ZodOptional<z.ZodString>;
274
- assigneeName: z.ZodOptional<z.ZodString>;
275
- assigneeRef: z.ZodAny;
276
- }, "strip", z.ZodTypeAny, {
277
- title: string;
278
- discussed: boolean;
279
- description?: string | undefined;
280
- assigneeName?: string | undefined;
281
- assigneeRef?: any;
282
- tags?: {
283
- name: string;
284
- hidden: boolean;
285
- color?: string | undefined;
286
- }[] | null | undefined;
287
- notes?: string | undefined;
288
- templateRef?: any;
289
- }, {
290
- title: string;
291
- discussed: boolean;
292
- description?: string | undefined;
293
- assigneeName?: string | undefined;
294
- assigneeRef?: any;
295
- tags?: {
296
- name: string;
297
- hidden: boolean;
298
- color?: string | undefined;
299
- }[] | null | undefined;
300
- notes?: string | undefined;
301
- templateRef?: any;
302
- }>, "many">>;
303
- tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
304
- name: z.ZodString;
305
- color: z.ZodOptional<z.ZodString>;
306
- hidden: z.ZodBoolean;
307
- }, "strip", z.ZodTypeAny, {
308
- name: string;
309
- hidden: boolean;
310
- color?: string | undefined;
311
- }, {
312
- name: string;
313
- hidden: boolean;
314
- color?: string | undefined;
315
- }>, "many">>>;
316
- }>, z.ZodUnknown, "strip">, z.objectInputType<z.objectUtil.extendShape<{
317
- id: z.ZodString;
318
- ref: z.ZodAny;
319
- tenant: z.ZodString;
320
- model_ver: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
321
- created_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
322
- updated_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
323
- deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
324
- }, {
325
- title: z.ZodString;
326
- description: z.ZodOptional<z.ZodString>;
327
- creatorName: z.ZodString;
328
- creatorRef: z.ZodAny;
329
- event: z.ZodObject<{
330
- eventRef: z.ZodAny;
331
- participantNames: z.ZodArray<z.ZodString, "many">;
332
- participantRefs: z.ZodArray<z.ZodAny, "many">;
333
- startDate: z.ZodDate;
334
- endDate: z.ZodOptional<z.ZodDate>;
335
- }, "strip", z.ZodTypeAny, {
336
- startDate: Date;
337
- participantNames: string[];
338
- participantRefs: any[];
339
- eventRef?: any;
340
- endDate?: Date | undefined;
341
- }, {
342
- startDate: Date;
343
- participantNames: string[];
344
- participantRefs: any[];
345
- eventRef?: any;
346
- endDate?: Date | undefined;
347
- }>;
348
- type: z.ZodEnum<["regular", "oneonone", "feedback", "presentation", "other"]>;
349
- tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
350
- taskRef: z.ZodAny;
351
- title: z.ZodString;
352
- status: z.ZodEnum<["not_started", "in_progress", "completed", "cancelled", "on_hold"]>;
353
- priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
354
- assigneeName: z.ZodOptional<z.ZodString>;
355
- }, "strip", z.ZodTypeAny, {
356
- status: "not_started" | "in_progress" | "completed" | "cancelled" | "on_hold";
357
- title: string;
358
- priority?: "low" | "medium" | "high" | undefined;
359
- assigneeName?: string | undefined;
360
- taskRef?: any;
361
- }, {
362
- status: "not_started" | "in_progress" | "completed" | "cancelled" | "on_hold";
363
- title: string;
364
- priority?: "low" | "medium" | "high" | undefined;
365
- assigneeName?: string | undefined;
366
- taskRef?: any;
367
- }>, "many">>;
368
- talkingPoints: z.ZodOptional<z.ZodArray<z.ZodObject<{
369
- templateRef: z.ZodAny;
370
- title: z.ZodString;
371
- description: z.ZodOptional<z.ZodString>;
372
- tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
373
- name: z.ZodString;
374
- color: z.ZodOptional<z.ZodString>;
375
- hidden: z.ZodBoolean;
376
- }, "strip", z.ZodTypeAny, {
377
- name: string;
378
- hidden: boolean;
379
- color?: string | undefined;
380
- }, {
381
- name: string;
382
- hidden: boolean;
383
- color?: string | undefined;
384
- }>, "many">>>;
385
- discussed: z.ZodBoolean;
386
- notes: z.ZodOptional<z.ZodString>;
387
- assigneeName: z.ZodOptional<z.ZodString>;
388
- assigneeRef: z.ZodAny;
389
- }, "strip", z.ZodTypeAny, {
390
- title: string;
391
- discussed: boolean;
392
- description?: string | undefined;
393
- assigneeName?: string | undefined;
394
- assigneeRef?: any;
395
- tags?: {
396
- name: string;
397
- hidden: boolean;
398
- color?: string | undefined;
399
- }[] | null | undefined;
400
- notes?: string | undefined;
401
- templateRef?: any;
402
- }, {
403
- title: string;
404
- discussed: boolean;
405
- description?: string | undefined;
406
- assigneeName?: string | undefined;
407
- assigneeRef?: any;
408
- tags?: {
409
- name: string;
410
- hidden: boolean;
411
- color?: string | undefined;
412
- }[] | null | undefined;
413
- notes?: string | undefined;
414
- templateRef?: any;
415
- }>, "many">>;
416
- tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
417
- name: z.ZodString;
418
- color: z.ZodOptional<z.ZodString>;
419
- hidden: z.ZodBoolean;
420
- }, "strip", z.ZodTypeAny, {
421
- name: string;
422
- hidden: boolean;
423
- color?: string | undefined;
424
- }, {
425
- name: string;
426
- hidden: boolean;
427
- color?: string | undefined;
428
- }>, "many">>>;
429
- }>, z.ZodUnknown, "strip">>;