@taiger-common/model 1.0.52 → 1.0.54

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.
Files changed (95) hide show
  1. package/dist/cjs/api/account.js +33 -0
  2. package/dist/cjs/api/applications.js +44 -0
  3. package/dist/cjs/api/audit.js +6 -0
  4. package/dist/cjs/api/auth.js +17 -0
  5. package/dist/cjs/api/common.js +28 -1
  6. package/dist/cjs/api/communications.js +13 -0
  7. package/dist/cjs/api/courses.js +21 -0
  8. package/dist/cjs/api/crm.js +85 -0
  9. package/dist/cjs/api/documentThreads.js +42 -0
  10. package/dist/cjs/api/documentations.js +31 -0
  11. package/dist/cjs/api/events.js +20 -0
  12. package/dist/cjs/api/interviews.js +33 -0
  13. package/dist/cjs/api/meetings.js +18 -0
  14. package/dist/cjs/api/notes.js +6 -0
  15. package/dist/cjs/api/permissions.js +7 -0
  16. package/dist/cjs/api/portals.js +22 -0
  17. package/dist/cjs/api/programRequirements.js +24 -0
  18. package/dist/cjs/api/programs.js +91 -0
  19. package/dist/cjs/api/search.js +22 -0
  20. package/dist/cjs/api/serialized.js +44 -0
  21. package/dist/cjs/api/students.js +27 -0
  22. package/dist/cjs/api/teams.js +46 -0
  23. package/dist/cjs/api/tickets.js +19 -0
  24. package/dist/cjs/api/users.js +40 -0
  25. package/dist/cjs/api/widgets.js +19 -0
  26. package/dist/cjs/index.js +1 -0
  27. package/dist/cjs/model/Documentthread.js +1 -4
  28. package/dist/cjs/model/Program.js +0 -4
  29. package/dist/cjs/schema/index.js +22 -0
  30. package/dist/cjs/schema/models.js +518 -0
  31. package/dist/cjs/schema/serialized.js +202 -0
  32. package/dist/esm/api/account.js +32 -1
  33. package/dist/esm/api/applications.js +43 -1
  34. package/dist/esm/api/audit.js +5 -1
  35. package/dist/esm/api/auth.js +16 -1
  36. package/dist/esm/api/common.js +24 -1
  37. package/dist/esm/api/communications.js +12 -1
  38. package/dist/esm/api/courses.js +20 -1
  39. package/dist/esm/api/crm.js +84 -1
  40. package/dist/esm/api/documentThreads.js +41 -1
  41. package/dist/esm/api/documentations.js +30 -1
  42. package/dist/esm/api/events.js +19 -1
  43. package/dist/esm/api/interviews.js +32 -1
  44. package/dist/esm/api/meetings.js +17 -1
  45. package/dist/esm/api/notes.js +5 -1
  46. package/dist/esm/api/permissions.js +6 -1
  47. package/dist/esm/api/portals.js +21 -1
  48. package/dist/esm/api/programRequirements.js +23 -1
  49. package/dist/esm/api/programs.js +90 -1
  50. package/dist/esm/api/search.js +21 -1
  51. package/dist/esm/api/serialized.js +9 -1
  52. package/dist/esm/api/students.js +26 -1
  53. package/dist/esm/api/teams.js +45 -1
  54. package/dist/esm/api/tickets.js +18 -1
  55. package/dist/esm/api/users.js +39 -1
  56. package/dist/esm/api/widgets.js +18 -1
  57. package/dist/esm/index.js +1 -0
  58. package/dist/esm/model/Documentthread.js +1 -4
  59. package/dist/esm/model/Program.js +0 -4
  60. package/dist/esm/schema/index.js +6 -0
  61. package/dist/esm/schema/models.js +515 -0
  62. package/dist/esm/schema/serialized.js +199 -0
  63. package/dist/types/api/account.d.ts +485 -30
  64. package/dist/types/api/applications.d.ts +3392 -39
  65. package/dist/types/api/audit.d.ts +88 -3
  66. package/dist/types/api/auth.d.ts +3402 -14
  67. package/dist/types/api/common.d.ts +68 -8
  68. package/dist/types/api/communications.d.ts +609 -10
  69. package/dist/types/api/courses.d.ts +781 -15
  70. package/dist/types/api/crm.d.ts +1091 -85
  71. package/dist/types/api/documentThreads.d.ts +38228 -39
  72. package/dist/types/api/documentations.d.ts +913 -24
  73. package/dist/types/api/events.d.ts +7191 -17
  74. package/dist/types/api/interviews.d.ts +785 -30
  75. package/dist/types/api/meetings.d.ts +45 -27
  76. package/dist/types/api/notes.d.ts +83 -4
  77. package/dist/types/api/permissions.d.ts +193 -4
  78. package/dist/types/api/portals.d.ts +764 -17
  79. package/dist/types/api/programRequirements.d.ts +2675 -19
  80. package/dist/types/api/programs.d.ts +3019 -96
  81. package/dist/types/api/search.d.ts +286 -20
  82. package/dist/types/api/serialized.d.ts +3 -152
  83. package/dist/types/api/students.d.ts +289 -24
  84. package/dist/types/api/teams.d.ts +3652 -47
  85. package/dist/types/api/tickets.d.ts +948 -14
  86. package/dist/types/api/users.d.ts +6948 -39
  87. package/dist/types/api/widgets.d.ts +221 -16
  88. package/dist/types/index.d.ts +1 -0
  89. package/dist/types/model/Documentthread.d.ts +1 -2
  90. package/dist/types/model/Program.d.ts +0 -5
  91. package/dist/types/schema/index.d.ts +6 -0
  92. package/dist/types/schema/models.d.ts +2028 -0
  93. package/dist/types/schema/serialized.d.ts +8813 -0
  94. package/dist/umd/index.js +1 -1
  95. package/package.json +4 -2
@@ -0,0 +1,2028 @@
1
+ /**
2
+ * Zod schemas for base model data shapes (API-safe, no Mongoose-specific types).
3
+ * Used by serialized.ts and API response schemas.
4
+ */
5
+ import { z } from 'zod';
6
+ export declare const UserNotificationSchema: z.ZodObject<{
7
+ isRead_survey_not_complete: z.ZodOptional<z.ZodBoolean>;
8
+ isRead_uni_assist_task_assigned: z.ZodOptional<z.ZodBoolean>;
9
+ isRead_new_agent_assigned: z.ZodOptional<z.ZodBoolean>;
10
+ isRead_new_editor_assigned: z.ZodOptional<z.ZodBoolean>;
11
+ isRead_new_cvmlrl_tasks_created: z.ZodOptional<z.ZodBoolean>;
12
+ isRead_new_cvmlrl_messsage: z.ZodOptional<z.ZodBoolean>;
13
+ isRead_base_documents_missing: z.ZodOptional<z.ZodBoolean>;
14
+ isRead_base_documents_rejected: z.ZodOptional<z.ZodBoolean>;
15
+ isRead_new_programs_assigned: z.ZodOptional<z.ZodBoolean>;
16
+ }, "strip", z.ZodTypeAny, {
17
+ isRead_survey_not_complete?: boolean | undefined;
18
+ isRead_uni_assist_task_assigned?: boolean | undefined;
19
+ isRead_new_agent_assigned?: boolean | undefined;
20
+ isRead_new_editor_assigned?: boolean | undefined;
21
+ isRead_new_cvmlrl_tasks_created?: boolean | undefined;
22
+ isRead_new_cvmlrl_messsage?: boolean | undefined;
23
+ isRead_base_documents_missing?: boolean | undefined;
24
+ isRead_base_documents_rejected?: boolean | undefined;
25
+ isRead_new_programs_assigned?: boolean | undefined;
26
+ }, {
27
+ isRead_survey_not_complete?: boolean | undefined;
28
+ isRead_uni_assist_task_assigned?: boolean | undefined;
29
+ isRead_new_agent_assigned?: boolean | undefined;
30
+ isRead_new_editor_assigned?: boolean | undefined;
31
+ isRead_new_cvmlrl_tasks_created?: boolean | undefined;
32
+ isRead_new_cvmlrl_messsage?: boolean | undefined;
33
+ isRead_base_documents_missing?: boolean | undefined;
34
+ isRead_base_documents_rejected?: boolean | undefined;
35
+ isRead_new_programs_assigned?: boolean | undefined;
36
+ }>;
37
+ export type IUserNotificationSchema = z.infer<typeof UserNotificationSchema>;
38
+ export declare const UserTaigeraiFileSchema: z.ZodObject<{
39
+ name: z.ZodOptional<z.ZodString>;
40
+ status: z.ZodOptional<z.ZodString>;
41
+ file_category: z.ZodOptional<z.ZodString>;
42
+ path: z.ZodOptional<z.ZodString>;
43
+ updatedAt: z.ZodOptional<z.ZodDate>;
44
+ }, "strip", z.ZodTypeAny, {
45
+ updatedAt?: Date | undefined;
46
+ name?: string | undefined;
47
+ path?: string | undefined;
48
+ status?: string | undefined;
49
+ file_category?: string | undefined;
50
+ }, {
51
+ updatedAt?: Date | undefined;
52
+ name?: string | undefined;
53
+ path?: string | undefined;
54
+ status?: string | undefined;
55
+ file_category?: string | undefined;
56
+ }>;
57
+ export type IUserTaigeraiFileSchema = z.infer<typeof UserTaigeraiFileSchema>;
58
+ export declare const UserTaigeraiFeedbackSchema: z.ZodObject<{
59
+ message: z.ZodOptional<z.ZodString>;
60
+ updatedAt: z.ZodOptional<z.ZodDate>;
61
+ }, "strip", z.ZodTypeAny, {
62
+ updatedAt?: Date | undefined;
63
+ message?: string | undefined;
64
+ }, {
65
+ updatedAt?: Date | undefined;
66
+ message?: string | undefined;
67
+ }>;
68
+ export type IUserTaigeraiFeedbackSchema = z.infer<typeof UserTaigeraiFeedbackSchema>;
69
+ export declare const UserTaigeraiSchema: z.ZodObject<{
70
+ input: z.ZodOptional<z.ZodObject<{
71
+ name: z.ZodOptional<z.ZodString>;
72
+ status: z.ZodOptional<z.ZodString>;
73
+ file_category: z.ZodOptional<z.ZodString>;
74
+ path: z.ZodOptional<z.ZodString>;
75
+ updatedAt: z.ZodOptional<z.ZodDate>;
76
+ }, "strip", z.ZodTypeAny, {
77
+ updatedAt?: Date | undefined;
78
+ name?: string | undefined;
79
+ path?: string | undefined;
80
+ status?: string | undefined;
81
+ file_category?: string | undefined;
82
+ }, {
83
+ updatedAt?: Date | undefined;
84
+ name?: string | undefined;
85
+ path?: string | undefined;
86
+ status?: string | undefined;
87
+ file_category?: string | undefined;
88
+ }>>;
89
+ output: z.ZodOptional<z.ZodObject<{
90
+ name: z.ZodOptional<z.ZodString>;
91
+ status: z.ZodOptional<z.ZodString>;
92
+ file_category: z.ZodOptional<z.ZodString>;
93
+ path: z.ZodOptional<z.ZodString>;
94
+ updatedAt: z.ZodOptional<z.ZodDate>;
95
+ }, "strip", z.ZodTypeAny, {
96
+ updatedAt?: Date | undefined;
97
+ name?: string | undefined;
98
+ path?: string | undefined;
99
+ status?: string | undefined;
100
+ file_category?: string | undefined;
101
+ }, {
102
+ updatedAt?: Date | undefined;
103
+ name?: string | undefined;
104
+ path?: string | undefined;
105
+ status?: string | undefined;
106
+ file_category?: string | undefined;
107
+ }>>;
108
+ feedback: z.ZodOptional<z.ZodObject<{
109
+ message: z.ZodOptional<z.ZodString>;
110
+ updatedAt: z.ZodOptional<z.ZodDate>;
111
+ }, "strip", z.ZodTypeAny, {
112
+ updatedAt?: Date | undefined;
113
+ message?: string | undefined;
114
+ }, {
115
+ updatedAt?: Date | undefined;
116
+ message?: string | undefined;
117
+ }>>;
118
+ }, "strip", z.ZodTypeAny, {
119
+ input?: {
120
+ updatedAt?: Date | undefined;
121
+ name?: string | undefined;
122
+ path?: string | undefined;
123
+ status?: string | undefined;
124
+ file_category?: string | undefined;
125
+ } | undefined;
126
+ output?: {
127
+ updatedAt?: Date | undefined;
128
+ name?: string | undefined;
129
+ path?: string | undefined;
130
+ status?: string | undefined;
131
+ file_category?: string | undefined;
132
+ } | undefined;
133
+ feedback?: {
134
+ updatedAt?: Date | undefined;
135
+ message?: string | undefined;
136
+ } | undefined;
137
+ }, {
138
+ input?: {
139
+ updatedAt?: Date | undefined;
140
+ name?: string | undefined;
141
+ path?: string | undefined;
142
+ status?: string | undefined;
143
+ file_category?: string | undefined;
144
+ } | undefined;
145
+ output?: {
146
+ updatedAt?: Date | undefined;
147
+ name?: string | undefined;
148
+ path?: string | undefined;
149
+ status?: string | undefined;
150
+ file_category?: string | undefined;
151
+ } | undefined;
152
+ feedback?: {
153
+ updatedAt?: Date | undefined;
154
+ message?: string | undefined;
155
+ } | undefined;
156
+ }>;
157
+ export type IUserTaigeraiSchema = z.infer<typeof UserTaigeraiSchema>;
158
+ export declare const UserApplicationPreferenceSchema: z.ZodObject<{
159
+ expected_application_date: z.ZodOptional<z.ZodString>;
160
+ expected_application_semester: z.ZodOptional<z.ZodString>;
161
+ target_program_language: z.ZodOptional<z.ZodString>;
162
+ target_application_field: z.ZodOptional<z.ZodString>;
163
+ targetApplicationSubjects: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
164
+ target_degree: z.ZodOptional<z.ZodString>;
165
+ considered_privat_universities: z.ZodOptional<z.ZodString>;
166
+ special_wished: z.ZodOptional<z.ZodString>;
167
+ application_outside_germany: z.ZodOptional<z.ZodString>;
168
+ updatedAt: z.ZodOptional<z.ZodDate>;
169
+ }, "strip", z.ZodTypeAny, {
170
+ updatedAt?: Date | undefined;
171
+ expected_application_date?: string | undefined;
172
+ expected_application_semester?: string | undefined;
173
+ target_program_language?: string | undefined;
174
+ target_application_field?: string | undefined;
175
+ targetApplicationSubjects?: string[] | undefined;
176
+ target_degree?: string | undefined;
177
+ considered_privat_universities?: string | undefined;
178
+ special_wished?: string | undefined;
179
+ application_outside_germany?: string | undefined;
180
+ }, {
181
+ updatedAt?: Date | undefined;
182
+ expected_application_date?: string | undefined;
183
+ expected_application_semester?: string | undefined;
184
+ target_program_language?: string | undefined;
185
+ target_application_field?: string | undefined;
186
+ targetApplicationSubjects?: string[] | undefined;
187
+ target_degree?: string | undefined;
188
+ considered_privat_universities?: string | undefined;
189
+ special_wished?: string | undefined;
190
+ application_outside_germany?: string | undefined;
191
+ }>;
192
+ export type IUserApplicationPreferenceSchema = z.infer<typeof UserApplicationPreferenceSchema>;
193
+ export declare const UserAcademicBackgroundUniversitySchema: z.ZodObject<{
194
+ high_school_isGraduated: z.ZodOptional<z.ZodString>;
195
+ attended_high_school: z.ZodOptional<z.ZodString>;
196
+ high_school_graduated_year: z.ZodOptional<z.ZodString>;
197
+ attended_university: z.ZodOptional<z.ZodString>;
198
+ attended_university_program: z.ZodOptional<z.ZodString>;
199
+ isGraduated: z.ZodOptional<z.ZodString>;
200
+ expected_grad_date: z.ZodOptional<z.ZodString>;
201
+ Highest_GPA_Uni: z.ZodOptional<z.ZodNumber>;
202
+ Passing_GPA_Uni: z.ZodOptional<z.ZodNumber>;
203
+ My_GPA_Uni: z.ZodOptional<z.ZodNumber>;
204
+ Has_Exchange_Experience: z.ZodOptional<z.ZodString>;
205
+ isSecondGraduated: z.ZodOptional<z.ZodString>;
206
+ expectedSecondDegreeGradDate: z.ZodOptional<z.ZodString>;
207
+ attendedSecondDegreeUniversity: z.ZodOptional<z.ZodString>;
208
+ attendedSecondDegreeProgram: z.ZodOptional<z.ZodString>;
209
+ highestSecondDegreeGPA: z.ZodOptional<z.ZodNumber>;
210
+ passingSecondDegreeGPA: z.ZodOptional<z.ZodNumber>;
211
+ mySecondDegreeGPA: z.ZodOptional<z.ZodNumber>;
212
+ Has_Internship_Experience: z.ZodOptional<z.ZodString>;
213
+ Has_Working_Experience: z.ZodOptional<z.ZodString>;
214
+ updatedAt: z.ZodOptional<z.ZodDate>;
215
+ }, "strip", z.ZodTypeAny, {
216
+ updatedAt?: Date | undefined;
217
+ high_school_isGraduated?: string | undefined;
218
+ attended_high_school?: string | undefined;
219
+ high_school_graduated_year?: string | undefined;
220
+ attended_university?: string | undefined;
221
+ attended_university_program?: string | undefined;
222
+ isGraduated?: string | undefined;
223
+ expected_grad_date?: string | undefined;
224
+ Highest_GPA_Uni?: number | undefined;
225
+ Passing_GPA_Uni?: number | undefined;
226
+ My_GPA_Uni?: number | undefined;
227
+ Has_Exchange_Experience?: string | undefined;
228
+ isSecondGraduated?: string | undefined;
229
+ expectedSecondDegreeGradDate?: string | undefined;
230
+ attendedSecondDegreeUniversity?: string | undefined;
231
+ attendedSecondDegreeProgram?: string | undefined;
232
+ highestSecondDegreeGPA?: number | undefined;
233
+ passingSecondDegreeGPA?: number | undefined;
234
+ mySecondDegreeGPA?: number | undefined;
235
+ Has_Internship_Experience?: string | undefined;
236
+ Has_Working_Experience?: string | undefined;
237
+ }, {
238
+ updatedAt?: Date | undefined;
239
+ high_school_isGraduated?: string | undefined;
240
+ attended_high_school?: string | undefined;
241
+ high_school_graduated_year?: string | undefined;
242
+ attended_university?: string | undefined;
243
+ attended_university_program?: string | undefined;
244
+ isGraduated?: string | undefined;
245
+ expected_grad_date?: string | undefined;
246
+ Highest_GPA_Uni?: number | undefined;
247
+ Passing_GPA_Uni?: number | undefined;
248
+ My_GPA_Uni?: number | undefined;
249
+ Has_Exchange_Experience?: string | undefined;
250
+ isSecondGraduated?: string | undefined;
251
+ expectedSecondDegreeGradDate?: string | undefined;
252
+ attendedSecondDegreeUniversity?: string | undefined;
253
+ attendedSecondDegreeProgram?: string | undefined;
254
+ highestSecondDegreeGPA?: number | undefined;
255
+ passingSecondDegreeGPA?: number | undefined;
256
+ mySecondDegreeGPA?: number | undefined;
257
+ Has_Internship_Experience?: string | undefined;
258
+ Has_Working_Experience?: string | undefined;
259
+ }>;
260
+ export type IUserAcademicBackgroundUniversitySchema = z.infer<typeof UserAcademicBackgroundUniversitySchema>;
261
+ export declare const UserAcademicBackgroundLanguageSchema: z.ZodObject<{
262
+ english_isPassed: z.ZodOptional<z.ZodString>;
263
+ english_certificate: z.ZodOptional<z.ZodString>;
264
+ english_score: z.ZodOptional<z.ZodString>;
265
+ english_score_reading: z.ZodOptional<z.ZodString>;
266
+ english_score_listening: z.ZodOptional<z.ZodString>;
267
+ english_score_writing: z.ZodOptional<z.ZodString>;
268
+ english_score_speaking: z.ZodOptional<z.ZodString>;
269
+ english_test_date: z.ZodOptional<z.ZodString>;
270
+ german_isPassed: z.ZodOptional<z.ZodString>;
271
+ german_certificate: z.ZodOptional<z.ZodString>;
272
+ german_score: z.ZodOptional<z.ZodString>;
273
+ german_test_date: z.ZodOptional<z.ZodString>;
274
+ gre_isPassed: z.ZodOptional<z.ZodString>;
275
+ gre_certificate: z.ZodOptional<z.ZodString>;
276
+ gre_score: z.ZodOptional<z.ZodString>;
277
+ gre_test_date: z.ZodOptional<z.ZodString>;
278
+ gmat_isPassed: z.ZodOptional<z.ZodString>;
279
+ gmat_certificate: z.ZodOptional<z.ZodString>;
280
+ gmat_score: z.ZodOptional<z.ZodString>;
281
+ gmat_test_date: z.ZodOptional<z.ZodString>;
282
+ updatedAt: z.ZodOptional<z.ZodDate>;
283
+ }, "strip", z.ZodTypeAny, {
284
+ updatedAt?: Date | undefined;
285
+ english_isPassed?: string | undefined;
286
+ english_certificate?: string | undefined;
287
+ english_score?: string | undefined;
288
+ english_score_reading?: string | undefined;
289
+ english_score_listening?: string | undefined;
290
+ english_score_writing?: string | undefined;
291
+ english_score_speaking?: string | undefined;
292
+ english_test_date?: string | undefined;
293
+ german_isPassed?: string | undefined;
294
+ german_certificate?: string | undefined;
295
+ german_score?: string | undefined;
296
+ german_test_date?: string | undefined;
297
+ gre_isPassed?: string | undefined;
298
+ gre_certificate?: string | undefined;
299
+ gre_score?: string | undefined;
300
+ gre_test_date?: string | undefined;
301
+ gmat_isPassed?: string | undefined;
302
+ gmat_certificate?: string | undefined;
303
+ gmat_score?: string | undefined;
304
+ gmat_test_date?: string | undefined;
305
+ }, {
306
+ updatedAt?: Date | undefined;
307
+ english_isPassed?: string | undefined;
308
+ english_certificate?: string | undefined;
309
+ english_score?: string | undefined;
310
+ english_score_reading?: string | undefined;
311
+ english_score_listening?: string | undefined;
312
+ english_score_writing?: string | undefined;
313
+ english_score_speaking?: string | undefined;
314
+ english_test_date?: string | undefined;
315
+ german_isPassed?: string | undefined;
316
+ german_certificate?: string | undefined;
317
+ german_score?: string | undefined;
318
+ german_test_date?: string | undefined;
319
+ gre_isPassed?: string | undefined;
320
+ gre_certificate?: string | undefined;
321
+ gre_score?: string | undefined;
322
+ gre_test_date?: string | undefined;
323
+ gmat_isPassed?: string | undefined;
324
+ gmat_certificate?: string | undefined;
325
+ gmat_score?: string | undefined;
326
+ gmat_test_date?: string | undefined;
327
+ }>;
328
+ export type IUserAcademicBackgroundLanguageSchema = z.infer<typeof UserAcademicBackgroundLanguageSchema>;
329
+ export declare const UserAcademicBackgroundSchema: z.ZodObject<{
330
+ university: z.ZodOptional<z.ZodObject<{
331
+ high_school_isGraduated: z.ZodOptional<z.ZodString>;
332
+ attended_high_school: z.ZodOptional<z.ZodString>;
333
+ high_school_graduated_year: z.ZodOptional<z.ZodString>;
334
+ attended_university: z.ZodOptional<z.ZodString>;
335
+ attended_university_program: z.ZodOptional<z.ZodString>;
336
+ isGraduated: z.ZodOptional<z.ZodString>;
337
+ expected_grad_date: z.ZodOptional<z.ZodString>;
338
+ Highest_GPA_Uni: z.ZodOptional<z.ZodNumber>;
339
+ Passing_GPA_Uni: z.ZodOptional<z.ZodNumber>;
340
+ My_GPA_Uni: z.ZodOptional<z.ZodNumber>;
341
+ Has_Exchange_Experience: z.ZodOptional<z.ZodString>;
342
+ isSecondGraduated: z.ZodOptional<z.ZodString>;
343
+ expectedSecondDegreeGradDate: z.ZodOptional<z.ZodString>;
344
+ attendedSecondDegreeUniversity: z.ZodOptional<z.ZodString>;
345
+ attendedSecondDegreeProgram: z.ZodOptional<z.ZodString>;
346
+ highestSecondDegreeGPA: z.ZodOptional<z.ZodNumber>;
347
+ passingSecondDegreeGPA: z.ZodOptional<z.ZodNumber>;
348
+ mySecondDegreeGPA: z.ZodOptional<z.ZodNumber>;
349
+ Has_Internship_Experience: z.ZodOptional<z.ZodString>;
350
+ Has_Working_Experience: z.ZodOptional<z.ZodString>;
351
+ updatedAt: z.ZodOptional<z.ZodDate>;
352
+ }, "strip", z.ZodTypeAny, {
353
+ updatedAt?: Date | undefined;
354
+ high_school_isGraduated?: string | undefined;
355
+ attended_high_school?: string | undefined;
356
+ high_school_graduated_year?: string | undefined;
357
+ attended_university?: string | undefined;
358
+ attended_university_program?: string | undefined;
359
+ isGraduated?: string | undefined;
360
+ expected_grad_date?: string | undefined;
361
+ Highest_GPA_Uni?: number | undefined;
362
+ Passing_GPA_Uni?: number | undefined;
363
+ My_GPA_Uni?: number | undefined;
364
+ Has_Exchange_Experience?: string | undefined;
365
+ isSecondGraduated?: string | undefined;
366
+ expectedSecondDegreeGradDate?: string | undefined;
367
+ attendedSecondDegreeUniversity?: string | undefined;
368
+ attendedSecondDegreeProgram?: string | undefined;
369
+ highestSecondDegreeGPA?: number | undefined;
370
+ passingSecondDegreeGPA?: number | undefined;
371
+ mySecondDegreeGPA?: number | undefined;
372
+ Has_Internship_Experience?: string | undefined;
373
+ Has_Working_Experience?: string | undefined;
374
+ }, {
375
+ updatedAt?: Date | undefined;
376
+ high_school_isGraduated?: string | undefined;
377
+ attended_high_school?: string | undefined;
378
+ high_school_graduated_year?: string | undefined;
379
+ attended_university?: string | undefined;
380
+ attended_university_program?: string | undefined;
381
+ isGraduated?: string | undefined;
382
+ expected_grad_date?: string | undefined;
383
+ Highest_GPA_Uni?: number | undefined;
384
+ Passing_GPA_Uni?: number | undefined;
385
+ My_GPA_Uni?: number | undefined;
386
+ Has_Exchange_Experience?: string | undefined;
387
+ isSecondGraduated?: string | undefined;
388
+ expectedSecondDegreeGradDate?: string | undefined;
389
+ attendedSecondDegreeUniversity?: string | undefined;
390
+ attendedSecondDegreeProgram?: string | undefined;
391
+ highestSecondDegreeGPA?: number | undefined;
392
+ passingSecondDegreeGPA?: number | undefined;
393
+ mySecondDegreeGPA?: number | undefined;
394
+ Has_Internship_Experience?: string | undefined;
395
+ Has_Working_Experience?: string | undefined;
396
+ }>>;
397
+ language: z.ZodOptional<z.ZodObject<{
398
+ english_isPassed: z.ZodOptional<z.ZodString>;
399
+ english_certificate: z.ZodOptional<z.ZodString>;
400
+ english_score: z.ZodOptional<z.ZodString>;
401
+ english_score_reading: z.ZodOptional<z.ZodString>;
402
+ english_score_listening: z.ZodOptional<z.ZodString>;
403
+ english_score_writing: z.ZodOptional<z.ZodString>;
404
+ english_score_speaking: z.ZodOptional<z.ZodString>;
405
+ english_test_date: z.ZodOptional<z.ZodString>;
406
+ german_isPassed: z.ZodOptional<z.ZodString>;
407
+ german_certificate: z.ZodOptional<z.ZodString>;
408
+ german_score: z.ZodOptional<z.ZodString>;
409
+ german_test_date: z.ZodOptional<z.ZodString>;
410
+ gre_isPassed: z.ZodOptional<z.ZodString>;
411
+ gre_certificate: z.ZodOptional<z.ZodString>;
412
+ gre_score: z.ZodOptional<z.ZodString>;
413
+ gre_test_date: z.ZodOptional<z.ZodString>;
414
+ gmat_isPassed: z.ZodOptional<z.ZodString>;
415
+ gmat_certificate: z.ZodOptional<z.ZodString>;
416
+ gmat_score: z.ZodOptional<z.ZodString>;
417
+ gmat_test_date: z.ZodOptional<z.ZodString>;
418
+ updatedAt: z.ZodOptional<z.ZodDate>;
419
+ }, "strip", z.ZodTypeAny, {
420
+ updatedAt?: Date | undefined;
421
+ english_isPassed?: string | undefined;
422
+ english_certificate?: string | undefined;
423
+ english_score?: string | undefined;
424
+ english_score_reading?: string | undefined;
425
+ english_score_listening?: string | undefined;
426
+ english_score_writing?: string | undefined;
427
+ english_score_speaking?: string | undefined;
428
+ english_test_date?: string | undefined;
429
+ german_isPassed?: string | undefined;
430
+ german_certificate?: string | undefined;
431
+ german_score?: string | undefined;
432
+ german_test_date?: string | undefined;
433
+ gre_isPassed?: string | undefined;
434
+ gre_certificate?: string | undefined;
435
+ gre_score?: string | undefined;
436
+ gre_test_date?: string | undefined;
437
+ gmat_isPassed?: string | undefined;
438
+ gmat_certificate?: string | undefined;
439
+ gmat_score?: string | undefined;
440
+ gmat_test_date?: string | undefined;
441
+ }, {
442
+ updatedAt?: Date | undefined;
443
+ english_isPassed?: string | undefined;
444
+ english_certificate?: string | undefined;
445
+ english_score?: string | undefined;
446
+ english_score_reading?: string | undefined;
447
+ english_score_listening?: string | undefined;
448
+ english_score_writing?: string | undefined;
449
+ english_score_speaking?: string | undefined;
450
+ english_test_date?: string | undefined;
451
+ german_isPassed?: string | undefined;
452
+ german_certificate?: string | undefined;
453
+ german_score?: string | undefined;
454
+ german_test_date?: string | undefined;
455
+ gre_isPassed?: string | undefined;
456
+ gre_certificate?: string | undefined;
457
+ gre_score?: string | undefined;
458
+ gre_test_date?: string | undefined;
459
+ gmat_isPassed?: string | undefined;
460
+ gmat_certificate?: string | undefined;
461
+ gmat_score?: string | undefined;
462
+ gmat_test_date?: string | undefined;
463
+ }>>;
464
+ }, "strip", z.ZodTypeAny, {
465
+ university?: {
466
+ updatedAt?: Date | undefined;
467
+ high_school_isGraduated?: string | undefined;
468
+ attended_high_school?: string | undefined;
469
+ high_school_graduated_year?: string | undefined;
470
+ attended_university?: string | undefined;
471
+ attended_university_program?: string | undefined;
472
+ isGraduated?: string | undefined;
473
+ expected_grad_date?: string | undefined;
474
+ Highest_GPA_Uni?: number | undefined;
475
+ Passing_GPA_Uni?: number | undefined;
476
+ My_GPA_Uni?: number | undefined;
477
+ Has_Exchange_Experience?: string | undefined;
478
+ isSecondGraduated?: string | undefined;
479
+ expectedSecondDegreeGradDate?: string | undefined;
480
+ attendedSecondDegreeUniversity?: string | undefined;
481
+ attendedSecondDegreeProgram?: string | undefined;
482
+ highestSecondDegreeGPA?: number | undefined;
483
+ passingSecondDegreeGPA?: number | undefined;
484
+ mySecondDegreeGPA?: number | undefined;
485
+ Has_Internship_Experience?: string | undefined;
486
+ Has_Working_Experience?: string | undefined;
487
+ } | undefined;
488
+ language?: {
489
+ updatedAt?: Date | undefined;
490
+ english_isPassed?: string | undefined;
491
+ english_certificate?: string | undefined;
492
+ english_score?: string | undefined;
493
+ english_score_reading?: string | undefined;
494
+ english_score_listening?: string | undefined;
495
+ english_score_writing?: string | undefined;
496
+ english_score_speaking?: string | undefined;
497
+ english_test_date?: string | undefined;
498
+ german_isPassed?: string | undefined;
499
+ german_certificate?: string | undefined;
500
+ german_score?: string | undefined;
501
+ german_test_date?: string | undefined;
502
+ gre_isPassed?: string | undefined;
503
+ gre_certificate?: string | undefined;
504
+ gre_score?: string | undefined;
505
+ gre_test_date?: string | undefined;
506
+ gmat_isPassed?: string | undefined;
507
+ gmat_certificate?: string | undefined;
508
+ gmat_score?: string | undefined;
509
+ gmat_test_date?: string | undefined;
510
+ } | undefined;
511
+ }, {
512
+ university?: {
513
+ updatedAt?: Date | undefined;
514
+ high_school_isGraduated?: string | undefined;
515
+ attended_high_school?: string | undefined;
516
+ high_school_graduated_year?: string | undefined;
517
+ attended_university?: string | undefined;
518
+ attended_university_program?: string | undefined;
519
+ isGraduated?: string | undefined;
520
+ expected_grad_date?: string | undefined;
521
+ Highest_GPA_Uni?: number | undefined;
522
+ Passing_GPA_Uni?: number | undefined;
523
+ My_GPA_Uni?: number | undefined;
524
+ Has_Exchange_Experience?: string | undefined;
525
+ isSecondGraduated?: string | undefined;
526
+ expectedSecondDegreeGradDate?: string | undefined;
527
+ attendedSecondDegreeUniversity?: string | undefined;
528
+ attendedSecondDegreeProgram?: string | undefined;
529
+ highestSecondDegreeGPA?: number | undefined;
530
+ passingSecondDegreeGPA?: number | undefined;
531
+ mySecondDegreeGPA?: number | undefined;
532
+ Has_Internship_Experience?: string | undefined;
533
+ Has_Working_Experience?: string | undefined;
534
+ } | undefined;
535
+ language?: {
536
+ updatedAt?: Date | undefined;
537
+ english_isPassed?: string | undefined;
538
+ english_certificate?: string | undefined;
539
+ english_score?: string | undefined;
540
+ english_score_reading?: string | undefined;
541
+ english_score_listening?: string | undefined;
542
+ english_score_writing?: string | undefined;
543
+ english_score_speaking?: string | undefined;
544
+ english_test_date?: string | undefined;
545
+ german_isPassed?: string | undefined;
546
+ german_certificate?: string | undefined;
547
+ german_score?: string | undefined;
548
+ german_test_date?: string | undefined;
549
+ gre_isPassed?: string | undefined;
550
+ gre_certificate?: string | undefined;
551
+ gre_score?: string | undefined;
552
+ gre_test_date?: string | undefined;
553
+ gmat_isPassed?: string | undefined;
554
+ gmat_certificate?: string | undefined;
555
+ gmat_score?: string | undefined;
556
+ gmat_test_date?: string | undefined;
557
+ } | undefined;
558
+ }>;
559
+ export type IUserAcademicBackgroundSchema = z.infer<typeof UserAcademicBackgroundSchema>;
560
+ export declare const UserAttributeSchema: z.ZodObject<{
561
+ value: z.ZodNumber;
562
+ name: z.ZodString;
563
+ }, "strip", z.ZodTypeAny, {
564
+ name: string;
565
+ value: number;
566
+ }, {
567
+ name: string;
568
+ value: number;
569
+ }>;
570
+ export type IUserAttributeSchema = z.infer<typeof UserAttributeSchema>;
571
+ export declare const UserProfileItemSchema: z.ZodObject<{
572
+ name: z.ZodString;
573
+ status: z.ZodOptional<z.ZodString>;
574
+ required: z.ZodBoolean;
575
+ path: z.ZodOptional<z.ZodString>;
576
+ feedback: z.ZodOptional<z.ZodString>;
577
+ updatedAt: z.ZodOptional<z.ZodDate>;
578
+ }, "strip", z.ZodTypeAny, {
579
+ name: string;
580
+ required: boolean;
581
+ updatedAt?: Date | undefined;
582
+ path?: string | undefined;
583
+ status?: string | undefined;
584
+ feedback?: string | undefined;
585
+ }, {
586
+ name: string;
587
+ required: boolean;
588
+ updatedAt?: Date | undefined;
589
+ path?: string | undefined;
590
+ status?: string | undefined;
591
+ feedback?: string | undefined;
592
+ }>;
593
+ export type IUserProfileItemSchema = z.infer<typeof UserProfileItemSchema>;
594
+ export declare const UserGeneraldocsThreadSchema: z.ZodObject<{
595
+ isFinalVersion: z.ZodOptional<z.ZodBoolean>;
596
+ latest_message_left_by_id: z.ZodOptional<z.ZodString>;
597
+ doc_thread_id: z.ZodOptional<z.ZodString>;
598
+ updatedAt: z.ZodOptional<z.ZodDate>;
599
+ createdAt: z.ZodOptional<z.ZodDate>;
600
+ }, "strip", z.ZodTypeAny, {
601
+ updatedAt?: Date | undefined;
602
+ isFinalVersion?: boolean | undefined;
603
+ latest_message_left_by_id?: string | undefined;
604
+ doc_thread_id?: string | undefined;
605
+ createdAt?: Date | undefined;
606
+ }, {
607
+ updatedAt?: Date | undefined;
608
+ isFinalVersion?: boolean | undefined;
609
+ latest_message_left_by_id?: string | undefined;
610
+ doc_thread_id?: string | undefined;
611
+ createdAt?: Date | undefined;
612
+ }>;
613
+ export type IUserGeneraldocsThreadSchema = z.infer<typeof UserGeneraldocsThreadSchema>;
614
+ export declare const CourseAnalysisSchema: z.ZodObject<{
615
+ path: z.ZodOptional<z.ZodString>;
616
+ analyzed_course: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
617
+ isAnalysed: z.ZodOptional<z.ZodBoolean>;
618
+ isAnalysedV2: z.ZodOptional<z.ZodBoolean>;
619
+ pathV2: z.ZodOptional<z.ZodString>;
620
+ updatedAtV2: z.ZodOptional<z.ZodDate>;
621
+ updatedAt: z.ZodOptional<z.ZodDate>;
622
+ }, "strip", z.ZodTypeAny, {
623
+ updatedAt?: Date | undefined;
624
+ path?: string | undefined;
625
+ analyzed_course?: string[] | undefined;
626
+ isAnalysed?: boolean | undefined;
627
+ isAnalysedV2?: boolean | undefined;
628
+ pathV2?: string | undefined;
629
+ updatedAtV2?: Date | undefined;
630
+ }, {
631
+ updatedAt?: Date | undefined;
632
+ path?: string | undefined;
633
+ analyzed_course?: string[] | undefined;
634
+ isAnalysed?: boolean | undefined;
635
+ isAnalysedV2?: boolean | undefined;
636
+ pathV2?: string | undefined;
637
+ updatedAtV2?: Date | undefined;
638
+ }>;
639
+ export type ICourseAnalysisSchema = z.infer<typeof CourseAnalysisSchema>;
640
+ export declare const CourseSchema: z.ZodObject<{
641
+ student_id: z.ZodOptional<z.ZodString>;
642
+ name: z.ZodOptional<z.ZodString>;
643
+ table_data_string: z.ZodOptional<z.ZodString>;
644
+ table_data_string_locked: z.ZodOptional<z.ZodBoolean>;
645
+ table_data_string_taiger_guided: z.ZodOptional<z.ZodString>;
646
+ updatedAt: z.ZodOptional<z.ZodDate>;
647
+ analysis: z.ZodOptional<z.ZodObject<{
648
+ path: z.ZodOptional<z.ZodString>;
649
+ analyzed_course: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
650
+ isAnalysed: z.ZodOptional<z.ZodBoolean>;
651
+ isAnalysedV2: z.ZodOptional<z.ZodBoolean>;
652
+ pathV2: z.ZodOptional<z.ZodString>;
653
+ updatedAtV2: z.ZodOptional<z.ZodDate>;
654
+ updatedAt: z.ZodOptional<z.ZodDate>;
655
+ }, "strip", z.ZodTypeAny, {
656
+ updatedAt?: Date | undefined;
657
+ path?: string | undefined;
658
+ analyzed_course?: string[] | undefined;
659
+ isAnalysed?: boolean | undefined;
660
+ isAnalysedV2?: boolean | undefined;
661
+ pathV2?: string | undefined;
662
+ updatedAtV2?: Date | undefined;
663
+ }, {
664
+ updatedAt?: Date | undefined;
665
+ path?: string | undefined;
666
+ analyzed_course?: string[] | undefined;
667
+ isAnalysed?: boolean | undefined;
668
+ isAnalysedV2?: boolean | undefined;
669
+ pathV2?: string | undefined;
670
+ updatedAtV2?: Date | undefined;
671
+ }>>;
672
+ }, "strip", z.ZodTypeAny, {
673
+ updatedAt?: Date | undefined;
674
+ name?: string | undefined;
675
+ student_id?: string | undefined;
676
+ table_data_string?: string | undefined;
677
+ table_data_string_locked?: boolean | undefined;
678
+ table_data_string_taiger_guided?: string | undefined;
679
+ analysis?: {
680
+ updatedAt?: Date | undefined;
681
+ path?: string | undefined;
682
+ analyzed_course?: string[] | undefined;
683
+ isAnalysed?: boolean | undefined;
684
+ isAnalysedV2?: boolean | undefined;
685
+ pathV2?: string | undefined;
686
+ updatedAtV2?: Date | undefined;
687
+ } | undefined;
688
+ }, {
689
+ updatedAt?: Date | undefined;
690
+ name?: string | undefined;
691
+ student_id?: string | undefined;
692
+ table_data_string?: string | undefined;
693
+ table_data_string_locked?: boolean | undefined;
694
+ table_data_string_taiger_guided?: string | undefined;
695
+ analysis?: {
696
+ updatedAt?: Date | undefined;
697
+ path?: string | undefined;
698
+ analyzed_course?: string[] | undefined;
699
+ isAnalysed?: boolean | undefined;
700
+ isAnalysedV2?: boolean | undefined;
701
+ pathV2?: string | undefined;
702
+ updatedAtV2?: Date | undefined;
703
+ } | undefined;
704
+ }>;
705
+ export type ICourseSchema = z.infer<typeof CourseSchema>;
706
+ export declare const ApplicationUniAssistSchema: z.ZodObject<{
707
+ status: z.ZodOptional<z.ZodString>;
708
+ vpd_file_path: z.ZodOptional<z.ZodString>;
709
+ vpd_paid_confirmation_file_path: z.ZodOptional<z.ZodString>;
710
+ vpd_paid_confirmation_file_status: z.ZodOptional<z.ZodString>;
711
+ isPaid: z.ZodOptional<z.ZodBoolean>;
712
+ updatedAt: z.ZodOptional<z.ZodDate>;
713
+ }, "strip", z.ZodTypeAny, {
714
+ updatedAt?: Date | undefined;
715
+ status?: string | undefined;
716
+ vpd_file_path?: string | undefined;
717
+ vpd_paid_confirmation_file_path?: string | undefined;
718
+ vpd_paid_confirmation_file_status?: string | undefined;
719
+ isPaid?: boolean | undefined;
720
+ }, {
721
+ updatedAt?: Date | undefined;
722
+ status?: string | undefined;
723
+ vpd_file_path?: string | undefined;
724
+ vpd_paid_confirmation_file_path?: string | undefined;
725
+ vpd_paid_confirmation_file_status?: string | undefined;
726
+ isPaid?: boolean | undefined;
727
+ }>;
728
+ export type IApplicationUniAssistSchema = z.infer<typeof ApplicationUniAssistSchema>;
729
+ export declare const ApplicationPortalCredentialsSchema: z.ZodObject<{
730
+ application_portal_a: z.ZodOptional<z.ZodObject<{
731
+ account: z.ZodOptional<z.ZodString>;
732
+ password: z.ZodOptional<z.ZodString>;
733
+ }, "strip", z.ZodTypeAny, {
734
+ password?: string | undefined;
735
+ account?: string | undefined;
736
+ }, {
737
+ password?: string | undefined;
738
+ account?: string | undefined;
739
+ }>>;
740
+ application_portal_b: z.ZodOptional<z.ZodObject<{
741
+ account: z.ZodOptional<z.ZodString>;
742
+ password: z.ZodOptional<z.ZodString>;
743
+ }, "strip", z.ZodTypeAny, {
744
+ password?: string | undefined;
745
+ account?: string | undefined;
746
+ }, {
747
+ password?: string | undefined;
748
+ account?: string | undefined;
749
+ }>>;
750
+ }, "strip", z.ZodTypeAny, {
751
+ application_portal_a?: {
752
+ password?: string | undefined;
753
+ account?: string | undefined;
754
+ } | undefined;
755
+ application_portal_b?: {
756
+ password?: string | undefined;
757
+ account?: string | undefined;
758
+ } | undefined;
759
+ }, {
760
+ application_portal_a?: {
761
+ password?: string | undefined;
762
+ account?: string | undefined;
763
+ } | undefined;
764
+ application_portal_b?: {
765
+ password?: string | undefined;
766
+ account?: string | undefined;
767
+ } | undefined;
768
+ }>;
769
+ export type IApplicationPortalCredentialsSchema = z.infer<typeof ApplicationPortalCredentialsSchema>;
770
+ export declare const ApplicationDocModificationThreadItemSchema: z.ZodObject<{
771
+ isFinalVersion: z.ZodOptional<z.ZodBoolean>;
772
+ latest_message_left_by_id: z.ZodOptional<z.ZodString>;
773
+ doc_thread_id: z.ZodOptional<z.ZodString>;
774
+ updatedAt: z.ZodOptional<z.ZodDate>;
775
+ createdAt: z.ZodOptional<z.ZodDate>;
776
+ }, "strip", z.ZodTypeAny, {
777
+ updatedAt?: Date | undefined;
778
+ isFinalVersion?: boolean | undefined;
779
+ latest_message_left_by_id?: string | undefined;
780
+ doc_thread_id?: string | undefined;
781
+ createdAt?: Date | undefined;
782
+ }, {
783
+ updatedAt?: Date | undefined;
784
+ isFinalVersion?: boolean | undefined;
785
+ latest_message_left_by_id?: string | undefined;
786
+ doc_thread_id?: string | undefined;
787
+ createdAt?: Date | undefined;
788
+ }>;
789
+ export type IApplicationDocModificationThreadItemSchema = z.infer<typeof ApplicationDocModificationThreadItemSchema>;
790
+ export declare const ApplicationAdmissionLetterSchema: z.ZodObject<{
791
+ status: z.ZodOptional<z.ZodString>;
792
+ admission_file_path: z.ZodOptional<z.ZodString>;
793
+ comments: z.ZodOptional<z.ZodString>;
794
+ updatedAt: z.ZodOptional<z.ZodDate>;
795
+ }, "strip", z.ZodTypeAny, {
796
+ comments?: string | undefined;
797
+ updatedAt?: Date | undefined;
798
+ status?: string | undefined;
799
+ admission_file_path?: string | undefined;
800
+ }, {
801
+ comments?: string | undefined;
802
+ updatedAt?: Date | undefined;
803
+ status?: string | undefined;
804
+ admission_file_path?: string | undefined;
805
+ }>;
806
+ export type IApplicationAdmissionLetterSchema = z.infer<typeof ApplicationAdmissionLetterSchema>;
807
+ export declare const ProgramSchema: z.ZodObject<{
808
+ isArchiv: z.ZodOptional<z.ZodBoolean>;
809
+ isLocked: z.ZodOptional<z.ZodBoolean>;
810
+ school: z.ZodString;
811
+ program_name: z.ZodString;
812
+ programSubjects: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
813
+ degree: z.ZodOptional<z.ZodString>;
814
+ semester: z.ZodOptional<z.ZodString>;
815
+ lang: z.ZodOptional<z.ZodString>;
816
+ gpa_requirement: z.ZodOptional<z.ZodString>;
817
+ allowOnlyGraduatedApplicant: z.ZodOptional<z.ZodBoolean>;
818
+ application_start: z.ZodOptional<z.ZodString>;
819
+ application_deadline: z.ZodOptional<z.ZodString>;
820
+ uni_assist: z.ZodOptional<z.ZodString>;
821
+ englishTestHandLater: z.ZodOptional<z.ZodBoolean>;
822
+ toefl: z.ZodOptional<z.ZodString>;
823
+ toefl_reading: z.ZodOptional<z.ZodNumber>;
824
+ toefl_listening: z.ZodOptional<z.ZodNumber>;
825
+ toefl_writing: z.ZodOptional<z.ZodNumber>;
826
+ toefl_speaking: z.ZodOptional<z.ZodNumber>;
827
+ ielts: z.ZodOptional<z.ZodString>;
828
+ ielts_reading: z.ZodOptional<z.ZodNumber>;
829
+ ielts_listening: z.ZodOptional<z.ZodNumber>;
830
+ ielts_writing: z.ZodOptional<z.ZodNumber>;
831
+ ielts_speaking: z.ZodOptional<z.ZodNumber>;
832
+ germanTestHandLater: z.ZodOptional<z.ZodBoolean>;
833
+ goetheZertifikat: z.ZodOptional<z.ZodString>;
834
+ testdaf: z.ZodOptional<z.ZodString>;
835
+ dsh: z.ZodOptional<z.ZodString>;
836
+ gre: z.ZodOptional<z.ZodString>;
837
+ gre_verbal: z.ZodOptional<z.ZodNumber>;
838
+ gre_quantitative: z.ZodOptional<z.ZodNumber>;
839
+ gre_analytical_writing: z.ZodOptional<z.ZodNumber>;
840
+ gmat: z.ZodOptional<z.ZodString>;
841
+ ml_required: z.ZodOptional<z.ZodString>;
842
+ ml_requirements: z.ZodOptional<z.ZodString>;
843
+ sop_required: z.ZodOptional<z.ZodString>;
844
+ sop_requirements: z.ZodOptional<z.ZodString>;
845
+ phs_required: z.ZodOptional<z.ZodString>;
846
+ phs_requirements: z.ZodOptional<z.ZodString>;
847
+ rl_required: z.ZodOptional<z.ZodString>;
848
+ rl_requirements: z.ZodOptional<z.ZodString>;
849
+ is_rl_specific: z.ZodOptional<z.ZodBoolean>;
850
+ essay_required: z.ZodOptional<z.ZodString>;
851
+ essay_requirements: z.ZodOptional<z.ZodString>;
852
+ essay_difficulty: z.ZodOptional<z.ZodString>;
853
+ portfolio_required: z.ZodOptional<z.ZodString>;
854
+ portfolio_requirements: z.ZodOptional<z.ZodString>;
855
+ supplementary_form_required: z.ZodOptional<z.ZodString>;
856
+ supplementary_form_requirements: z.ZodOptional<z.ZodString>;
857
+ curriculum_analysis_required: z.ZodOptional<z.ZodString>;
858
+ curriculum_analysis_requirements: z.ZodOptional<z.ZodString>;
859
+ scholarship_form_required: z.ZodOptional<z.ZodString>;
860
+ scholarship_form_requirements: z.ZodOptional<z.ZodString>;
861
+ module_description_required: z.ZodOptional<z.ZodString>;
862
+ ects_requirements: z.ZodOptional<z.ZodString>;
863
+ special_notes: z.ZodOptional<z.ZodString>;
864
+ comments: z.ZodOptional<z.ZodString>;
865
+ application_portal_a: z.ZodOptional<z.ZodString>;
866
+ application_portal_b: z.ZodOptional<z.ZodString>;
867
+ application_portal_a_instructions: z.ZodOptional<z.ZodString>;
868
+ application_portal_b_instructions: z.ZodOptional<z.ZodString>;
869
+ uni_assist_link: z.ZodOptional<z.ZodString>;
870
+ website: z.ZodOptional<z.ZodString>;
871
+ fpso: z.ZodOptional<z.ZodString>;
872
+ updatedAt: z.ZodOptional<z.ZodDate>;
873
+ whoupdated: z.ZodOptional<z.ZodString>;
874
+ tuition_fees: z.ZodOptional<z.ZodString>;
875
+ contact: z.ZodOptional<z.ZodString>;
876
+ city: z.ZodOptional<z.ZodString>;
877
+ country: z.ZodOptional<z.ZodString>;
878
+ isPrivateSchool: z.ZodOptional<z.ZodBoolean>;
879
+ isPartnerSchool: z.ZodOptional<z.ZodBoolean>;
880
+ schoolType: z.ZodOptional<z.ZodString>;
881
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
882
+ url: z.ZodOptional<z.ZodString>;
883
+ isNC: z.ZodOptional<z.ZodBoolean>;
884
+ zipCode: z.ZodOptional<z.ZodString>;
885
+ }, "strip", z.ZodTypeAny, {
886
+ school: string;
887
+ program_name: string;
888
+ isArchiv?: boolean | undefined;
889
+ isLocked?: boolean | undefined;
890
+ programSubjects?: string[] | undefined;
891
+ degree?: string | undefined;
892
+ semester?: string | undefined;
893
+ lang?: string | undefined;
894
+ gpa_requirement?: string | undefined;
895
+ allowOnlyGraduatedApplicant?: boolean | undefined;
896
+ application_start?: string | undefined;
897
+ application_deadline?: string | undefined;
898
+ uni_assist?: string | undefined;
899
+ englishTestHandLater?: boolean | undefined;
900
+ toefl?: string | undefined;
901
+ toefl_reading?: number | undefined;
902
+ toefl_listening?: number | undefined;
903
+ toefl_writing?: number | undefined;
904
+ toefl_speaking?: number | undefined;
905
+ ielts?: string | undefined;
906
+ ielts_reading?: number | undefined;
907
+ ielts_listening?: number | undefined;
908
+ ielts_writing?: number | undefined;
909
+ ielts_speaking?: number | undefined;
910
+ germanTestHandLater?: boolean | undefined;
911
+ goetheZertifikat?: string | undefined;
912
+ testdaf?: string | undefined;
913
+ dsh?: string | undefined;
914
+ gre?: string | undefined;
915
+ gre_verbal?: number | undefined;
916
+ gre_quantitative?: number | undefined;
917
+ gre_analytical_writing?: number | undefined;
918
+ gmat?: string | undefined;
919
+ ml_required?: string | undefined;
920
+ ml_requirements?: string | undefined;
921
+ sop_required?: string | undefined;
922
+ sop_requirements?: string | undefined;
923
+ phs_required?: string | undefined;
924
+ phs_requirements?: string | undefined;
925
+ rl_required?: string | undefined;
926
+ rl_requirements?: string | undefined;
927
+ is_rl_specific?: boolean | undefined;
928
+ essay_required?: string | undefined;
929
+ essay_requirements?: string | undefined;
930
+ essay_difficulty?: string | undefined;
931
+ portfolio_required?: string | undefined;
932
+ portfolio_requirements?: string | undefined;
933
+ supplementary_form_required?: string | undefined;
934
+ supplementary_form_requirements?: string | undefined;
935
+ curriculum_analysis_required?: string | undefined;
936
+ curriculum_analysis_requirements?: string | undefined;
937
+ scholarship_form_required?: string | undefined;
938
+ scholarship_form_requirements?: string | undefined;
939
+ module_description_required?: string | undefined;
940
+ ects_requirements?: string | undefined;
941
+ special_notes?: string | undefined;
942
+ comments?: string | undefined;
943
+ application_portal_a?: string | undefined;
944
+ application_portal_b?: string | undefined;
945
+ application_portal_a_instructions?: string | undefined;
946
+ application_portal_b_instructions?: string | undefined;
947
+ uni_assist_link?: string | undefined;
948
+ website?: string | undefined;
949
+ fpso?: string | undefined;
950
+ updatedAt?: Date | undefined;
951
+ whoupdated?: string | undefined;
952
+ tuition_fees?: string | undefined;
953
+ contact?: string | undefined;
954
+ city?: string | undefined;
955
+ country?: string | undefined;
956
+ isPrivateSchool?: boolean | undefined;
957
+ isPartnerSchool?: boolean | undefined;
958
+ schoolType?: string | undefined;
959
+ tags?: string[] | undefined;
960
+ url?: string | undefined;
961
+ isNC?: boolean | undefined;
962
+ zipCode?: string | undefined;
963
+ }, {
964
+ school: string;
965
+ program_name: string;
966
+ isArchiv?: boolean | undefined;
967
+ isLocked?: boolean | undefined;
968
+ programSubjects?: string[] | undefined;
969
+ degree?: string | undefined;
970
+ semester?: string | undefined;
971
+ lang?: string | undefined;
972
+ gpa_requirement?: string | undefined;
973
+ allowOnlyGraduatedApplicant?: boolean | undefined;
974
+ application_start?: string | undefined;
975
+ application_deadline?: string | undefined;
976
+ uni_assist?: string | undefined;
977
+ englishTestHandLater?: boolean | undefined;
978
+ toefl?: string | undefined;
979
+ toefl_reading?: number | undefined;
980
+ toefl_listening?: number | undefined;
981
+ toefl_writing?: number | undefined;
982
+ toefl_speaking?: number | undefined;
983
+ ielts?: string | undefined;
984
+ ielts_reading?: number | undefined;
985
+ ielts_listening?: number | undefined;
986
+ ielts_writing?: number | undefined;
987
+ ielts_speaking?: number | undefined;
988
+ germanTestHandLater?: boolean | undefined;
989
+ goetheZertifikat?: string | undefined;
990
+ testdaf?: string | undefined;
991
+ dsh?: string | undefined;
992
+ gre?: string | undefined;
993
+ gre_verbal?: number | undefined;
994
+ gre_quantitative?: number | undefined;
995
+ gre_analytical_writing?: number | undefined;
996
+ gmat?: string | undefined;
997
+ ml_required?: string | undefined;
998
+ ml_requirements?: string | undefined;
999
+ sop_required?: string | undefined;
1000
+ sop_requirements?: string | undefined;
1001
+ phs_required?: string | undefined;
1002
+ phs_requirements?: string | undefined;
1003
+ rl_required?: string | undefined;
1004
+ rl_requirements?: string | undefined;
1005
+ is_rl_specific?: boolean | undefined;
1006
+ essay_required?: string | undefined;
1007
+ essay_requirements?: string | undefined;
1008
+ essay_difficulty?: string | undefined;
1009
+ portfolio_required?: string | undefined;
1010
+ portfolio_requirements?: string | undefined;
1011
+ supplementary_form_required?: string | undefined;
1012
+ supplementary_form_requirements?: string | undefined;
1013
+ curriculum_analysis_required?: string | undefined;
1014
+ curriculum_analysis_requirements?: string | undefined;
1015
+ scholarship_form_required?: string | undefined;
1016
+ scholarship_form_requirements?: string | undefined;
1017
+ module_description_required?: string | undefined;
1018
+ ects_requirements?: string | undefined;
1019
+ special_notes?: string | undefined;
1020
+ comments?: string | undefined;
1021
+ application_portal_a?: string | undefined;
1022
+ application_portal_b?: string | undefined;
1023
+ application_portal_a_instructions?: string | undefined;
1024
+ application_portal_b_instructions?: string | undefined;
1025
+ uni_assist_link?: string | undefined;
1026
+ website?: string | undefined;
1027
+ fpso?: string | undefined;
1028
+ updatedAt?: Date | undefined;
1029
+ whoupdated?: string | undefined;
1030
+ tuition_fees?: string | undefined;
1031
+ contact?: string | undefined;
1032
+ city?: string | undefined;
1033
+ country?: string | undefined;
1034
+ isPrivateSchool?: boolean | undefined;
1035
+ isPartnerSchool?: boolean | undefined;
1036
+ schoolType?: string | undefined;
1037
+ tags?: string[] | undefined;
1038
+ url?: string | undefined;
1039
+ isNC?: boolean | undefined;
1040
+ zipCode?: string | undefined;
1041
+ }>;
1042
+ export type IProgramSchema = z.infer<typeof ProgramSchema>;
1043
+ export declare const DocumentationSchema: z.ZodObject<{
1044
+ name: z.ZodOptional<z.ZodString>;
1045
+ title: z.ZodOptional<z.ZodString>;
1046
+ category: z.ZodOptional<z.ZodString>;
1047
+ author: z.ZodOptional<z.ZodString>;
1048
+ prop: z.ZodOptional<z.ZodString>;
1049
+ text: z.ZodOptional<z.ZodString>;
1050
+ country: z.ZodOptional<z.ZodString>;
1051
+ updatedAt: z.ZodOptional<z.ZodDate>;
1052
+ }, "strip", z.ZodTypeAny, {
1053
+ updatedAt?: Date | undefined;
1054
+ country?: string | undefined;
1055
+ text?: string | undefined;
1056
+ name?: string | undefined;
1057
+ title?: string | undefined;
1058
+ category?: string | undefined;
1059
+ prop?: string | undefined;
1060
+ author?: string | undefined;
1061
+ }, {
1062
+ updatedAt?: Date | undefined;
1063
+ country?: string | undefined;
1064
+ text?: string | undefined;
1065
+ name?: string | undefined;
1066
+ title?: string | undefined;
1067
+ category?: string | undefined;
1068
+ prop?: string | undefined;
1069
+ author?: string | undefined;
1070
+ }>;
1071
+ export type IDocumentationSchema = z.infer<typeof DocumentationSchema>;
1072
+ export declare const DocspageSchema: z.ZodObject<{
1073
+ name: z.ZodOptional<z.ZodString>;
1074
+ title: z.ZodOptional<z.ZodString>;
1075
+ category: z.ZodOptional<z.ZodString>;
1076
+ prop: z.ZodOptional<z.ZodString>;
1077
+ author: z.ZodOptional<z.ZodString>;
1078
+ text: z.ZodOptional<z.ZodString>;
1079
+ country: z.ZodOptional<z.ZodString>;
1080
+ updatedAt: z.ZodOptional<z.ZodDate>;
1081
+ }, "strip", z.ZodTypeAny, {
1082
+ updatedAt?: Date | undefined;
1083
+ country?: string | undefined;
1084
+ text?: string | undefined;
1085
+ name?: string | undefined;
1086
+ title?: string | undefined;
1087
+ category?: string | undefined;
1088
+ prop?: string | undefined;
1089
+ author?: string | undefined;
1090
+ }, {
1091
+ updatedAt?: Date | undefined;
1092
+ country?: string | undefined;
1093
+ text?: string | undefined;
1094
+ name?: string | undefined;
1095
+ title?: string | undefined;
1096
+ category?: string | undefined;
1097
+ prop?: string | undefined;
1098
+ author?: string | undefined;
1099
+ }>;
1100
+ export type IDocspageSchema = z.infer<typeof DocspageSchema>;
1101
+ export declare const InternaldocSchema: z.ZodObject<{
1102
+ name: z.ZodOptional<z.ZodString>;
1103
+ title: z.ZodOptional<z.ZodString>;
1104
+ category: z.ZodOptional<z.ZodString>;
1105
+ internal: z.ZodOptional<z.ZodBoolean>;
1106
+ author: z.ZodOptional<z.ZodString>;
1107
+ text: z.ZodOptional<z.ZodString>;
1108
+ country: z.ZodOptional<z.ZodString>;
1109
+ updatedAt: z.ZodOptional<z.ZodDate>;
1110
+ }, "strip", z.ZodTypeAny, {
1111
+ updatedAt?: Date | undefined;
1112
+ country?: string | undefined;
1113
+ text?: string | undefined;
1114
+ name?: string | undefined;
1115
+ title?: string | undefined;
1116
+ category?: string | undefined;
1117
+ author?: string | undefined;
1118
+ internal?: boolean | undefined;
1119
+ }, {
1120
+ updatedAt?: Date | undefined;
1121
+ country?: string | undefined;
1122
+ text?: string | undefined;
1123
+ name?: string | undefined;
1124
+ title?: string | undefined;
1125
+ category?: string | undefined;
1126
+ author?: string | undefined;
1127
+ internal?: boolean | undefined;
1128
+ }>;
1129
+ export type IInternaldocSchema = z.infer<typeof InternaldocSchema>;
1130
+ export declare const KeywordsetKeywordsSchema: z.ZodObject<{
1131
+ zh: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1132
+ en: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1133
+ }, "strip", z.ZodTypeAny, {
1134
+ zh?: string[] | undefined;
1135
+ en?: string[] | undefined;
1136
+ }, {
1137
+ zh?: string[] | undefined;
1138
+ en?: string[] | undefined;
1139
+ }>;
1140
+ export type IKeywordsetKeywordsSchema = z.infer<typeof KeywordsetKeywordsSchema>;
1141
+ export declare const KeywordsetSchema: z.ZodObject<{
1142
+ categoryName: z.ZodOptional<z.ZodString>;
1143
+ description: z.ZodOptional<z.ZodString>;
1144
+ keywords: z.ZodOptional<z.ZodObject<{
1145
+ zh: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1146
+ en: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1147
+ }, "strip", z.ZodTypeAny, {
1148
+ zh?: string[] | undefined;
1149
+ en?: string[] | undefined;
1150
+ }, {
1151
+ zh?: string[] | undefined;
1152
+ en?: string[] | undefined;
1153
+ }>>;
1154
+ antiKeywords: z.ZodOptional<z.ZodObject<{
1155
+ zh: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1156
+ en: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1157
+ }, "strip", z.ZodTypeAny, {
1158
+ zh?: string[] | undefined;
1159
+ en?: string[] | undefined;
1160
+ }, {
1161
+ zh?: string[] | undefined;
1162
+ en?: string[] | undefined;
1163
+ }>>;
1164
+ }, "strip", z.ZodTypeAny, {
1165
+ description?: string | undefined;
1166
+ categoryName?: string | undefined;
1167
+ keywords?: {
1168
+ zh?: string[] | undefined;
1169
+ en?: string[] | undefined;
1170
+ } | undefined;
1171
+ antiKeywords?: {
1172
+ zh?: string[] | undefined;
1173
+ en?: string[] | undefined;
1174
+ } | undefined;
1175
+ }, {
1176
+ description?: string | undefined;
1177
+ categoryName?: string | undefined;
1178
+ keywords?: {
1179
+ zh?: string[] | undefined;
1180
+ en?: string[] | undefined;
1181
+ } | undefined;
1182
+ antiKeywords?: {
1183
+ zh?: string[] | undefined;
1184
+ en?: string[] | undefined;
1185
+ } | undefined;
1186
+ }>;
1187
+ export type IKeywordsetSchema = z.infer<typeof KeywordsetSchema>;
1188
+ export declare const SurveyInputSurveyContentSchema: z.ZodObject<{
1189
+ questionId: z.ZodOptional<z.ZodString>;
1190
+ question: z.ZodOptional<z.ZodString>;
1191
+ answer: z.ZodOptional<z.ZodString>;
1192
+ type: z.ZodOptional<z.ZodEnum<["word", "sentence", "paragraph", "essay"]>>;
1193
+ contentType: z.ZodOptional<z.ZodString>;
1194
+ }, "strip", z.ZodTypeAny, {
1195
+ type?: "sentence" | "paragraph" | "essay" | "word" | undefined;
1196
+ questionId?: string | undefined;
1197
+ answer?: string | undefined;
1198
+ question?: string | undefined;
1199
+ contentType?: string | undefined;
1200
+ }, {
1201
+ type?: "sentence" | "paragraph" | "essay" | "word" | undefined;
1202
+ questionId?: string | undefined;
1203
+ answer?: string | undefined;
1204
+ question?: string | undefined;
1205
+ contentType?: string | undefined;
1206
+ }>;
1207
+ export type ISurveyInputSurveyContentSchema = z.infer<typeof SurveyInputSurveyContentSchema>;
1208
+ export declare const SurveyInputSchema: z.ZodObject<{
1209
+ studentId: z.ZodString;
1210
+ programId: z.ZodOptional<z.ZodString>;
1211
+ fileType: z.ZodString;
1212
+ isFinalVersion: z.ZodOptional<z.ZodBoolean>;
1213
+ surveyContent: z.ZodOptional<z.ZodArray<z.ZodObject<{
1214
+ questionId: z.ZodOptional<z.ZodString>;
1215
+ question: z.ZodOptional<z.ZodString>;
1216
+ answer: z.ZodOptional<z.ZodString>;
1217
+ type: z.ZodOptional<z.ZodEnum<["word", "sentence", "paragraph", "essay"]>>;
1218
+ contentType: z.ZodOptional<z.ZodString>;
1219
+ }, "strip", z.ZodTypeAny, {
1220
+ type?: "sentence" | "paragraph" | "essay" | "word" | undefined;
1221
+ questionId?: string | undefined;
1222
+ answer?: string | undefined;
1223
+ question?: string | undefined;
1224
+ contentType?: string | undefined;
1225
+ }, {
1226
+ type?: "sentence" | "paragraph" | "essay" | "word" | undefined;
1227
+ questionId?: string | undefined;
1228
+ answer?: string | undefined;
1229
+ question?: string | undefined;
1230
+ contentType?: string | undefined;
1231
+ }>, "many">>;
1232
+ surveyStatus: z.ZodOptional<z.ZodEnum<["empty", "provided", "generated", "blocked"]>>;
1233
+ createdAt: z.ZodOptional<z.ZodDate>;
1234
+ updatedAt: z.ZodOptional<z.ZodDate>;
1235
+ }, "strip", z.ZodTypeAny, {
1236
+ studentId: string;
1237
+ fileType: string;
1238
+ updatedAt?: Date | undefined;
1239
+ programId?: string | undefined;
1240
+ isFinalVersion?: boolean | undefined;
1241
+ createdAt?: Date | undefined;
1242
+ surveyContent?: {
1243
+ type?: "sentence" | "paragraph" | "essay" | "word" | undefined;
1244
+ questionId?: string | undefined;
1245
+ answer?: string | undefined;
1246
+ question?: string | undefined;
1247
+ contentType?: string | undefined;
1248
+ }[] | undefined;
1249
+ surveyStatus?: "empty" | "provided" | "generated" | "blocked" | undefined;
1250
+ }, {
1251
+ studentId: string;
1252
+ fileType: string;
1253
+ updatedAt?: Date | undefined;
1254
+ programId?: string | undefined;
1255
+ isFinalVersion?: boolean | undefined;
1256
+ createdAt?: Date | undefined;
1257
+ surveyContent?: {
1258
+ type?: "sentence" | "paragraph" | "essay" | "word" | undefined;
1259
+ questionId?: string | undefined;
1260
+ answer?: string | undefined;
1261
+ question?: string | undefined;
1262
+ contentType?: string | undefined;
1263
+ }[] | undefined;
1264
+ surveyStatus?: "empty" | "provided" | "generated" | "blocked" | undefined;
1265
+ }>;
1266
+ export type ISurveyInputSchema = z.infer<typeof SurveyInputSchema>;
1267
+ export declare const TemplateSchema: z.ZodObject<{
1268
+ name: z.ZodString;
1269
+ category_name: z.ZodString;
1270
+ path: z.ZodString;
1271
+ updatedAt: z.ZodOptional<z.ZodDate>;
1272
+ }, "strip", z.ZodTypeAny, {
1273
+ name: string;
1274
+ path: string;
1275
+ category_name: string;
1276
+ updatedAt?: Date | undefined;
1277
+ }, {
1278
+ name: string;
1279
+ path: string;
1280
+ category_name: string;
1281
+ updatedAt?: Date | undefined;
1282
+ }>;
1283
+ export type ITemplateSchema = z.infer<typeof TemplateSchema>;
1284
+ export declare const BasedocumentationslinkSchema: z.ZodObject<{
1285
+ key: z.ZodOptional<z.ZodString>;
1286
+ category: z.ZodOptional<z.ZodString>;
1287
+ link: z.ZodOptional<z.ZodString>;
1288
+ updatedAt: z.ZodOptional<z.ZodDate>;
1289
+ }, "strip", z.ZodTypeAny, {
1290
+ updatedAt?: Date | undefined;
1291
+ link?: string | undefined;
1292
+ key?: string | undefined;
1293
+ category?: string | undefined;
1294
+ }, {
1295
+ updatedAt?: Date | undefined;
1296
+ link?: string | undefined;
1297
+ key?: string | undefined;
1298
+ category?: string | undefined;
1299
+ }>;
1300
+ export type IBasedocumentationslinkSchema = z.infer<typeof BasedocumentationslinkSchema>;
1301
+ export declare const AllCourseSchema: z.ZodObject<{
1302
+ updatedBy: z.ZodString;
1303
+ all_course_chinese: z.ZodString;
1304
+ all_course_english: z.ZodString;
1305
+ description: z.ZodString;
1306
+ }, "strip", z.ZodTypeAny, {
1307
+ description: string;
1308
+ updatedBy: string;
1309
+ all_course_chinese: string;
1310
+ all_course_english: string;
1311
+ }, {
1312
+ description: string;
1313
+ updatedBy: string;
1314
+ all_course_chinese: string;
1315
+ all_course_english: string;
1316
+ }>;
1317
+ export type IAllCourseSchema = z.infer<typeof AllCourseSchema>;
1318
+ export declare const PermissionSchema: z.ZodObject<{
1319
+ user_id: z.ZodOptional<z.ZodString>;
1320
+ taigerAiQuota: z.ZodOptional<z.ZodNumber>;
1321
+ canAssignEditors: z.ZodOptional<z.ZodBoolean>;
1322
+ canUseTaiGerAI: z.ZodOptional<z.ZodBoolean>;
1323
+ canModifyProgramList: z.ZodOptional<z.ZodBoolean>;
1324
+ canModifyAllBaseDocuments: z.ZodOptional<z.ZodBoolean>;
1325
+ canAccessAllChat: z.ZodOptional<z.ZodBoolean>;
1326
+ canAssignAgents: z.ZodOptional<z.ZodBoolean>;
1327
+ canModifyDocumentation: z.ZodOptional<z.ZodBoolean>;
1328
+ canAccessStudentDatabase: z.ZodOptional<z.ZodBoolean>;
1329
+ canAddUser: z.ZodOptional<z.ZodBoolean>;
1330
+ canModifyUser: z.ZodOptional<z.ZodBoolean>;
1331
+ isEssayWriters: z.ZodOptional<z.ZodBoolean>;
1332
+ updatedAt: z.ZodOptional<z.ZodDate>;
1333
+ }, "strip", z.ZodTypeAny, {
1334
+ updatedAt?: Date | undefined;
1335
+ user_id?: string | undefined;
1336
+ taigerAiQuota?: number | undefined;
1337
+ canAssignEditors?: boolean | undefined;
1338
+ canUseTaiGerAI?: boolean | undefined;
1339
+ canModifyProgramList?: boolean | undefined;
1340
+ canModifyAllBaseDocuments?: boolean | undefined;
1341
+ canAccessAllChat?: boolean | undefined;
1342
+ canAssignAgents?: boolean | undefined;
1343
+ canModifyDocumentation?: boolean | undefined;
1344
+ canAccessStudentDatabase?: boolean | undefined;
1345
+ canAddUser?: boolean | undefined;
1346
+ canModifyUser?: boolean | undefined;
1347
+ isEssayWriters?: boolean | undefined;
1348
+ }, {
1349
+ updatedAt?: Date | undefined;
1350
+ user_id?: string | undefined;
1351
+ taigerAiQuota?: number | undefined;
1352
+ canAssignEditors?: boolean | undefined;
1353
+ canUseTaiGerAI?: boolean | undefined;
1354
+ canModifyProgramList?: boolean | undefined;
1355
+ canModifyAllBaseDocuments?: boolean | undefined;
1356
+ canAccessAllChat?: boolean | undefined;
1357
+ canAssignAgents?: boolean | undefined;
1358
+ canModifyDocumentation?: boolean | undefined;
1359
+ canAccessStudentDatabase?: boolean | undefined;
1360
+ canAddUser?: boolean | undefined;
1361
+ canModifyUser?: boolean | undefined;
1362
+ isEssayWriters?: boolean | undefined;
1363
+ }>;
1364
+ export type IPermissionSchema = z.infer<typeof PermissionSchema>;
1365
+ export declare const NoteSchema: z.ZodObject<{
1366
+ student_id: z.ZodOptional<z.ZodString>;
1367
+ notes: z.ZodOptional<z.ZodString>;
1368
+ updatedAt: z.ZodOptional<z.ZodDate>;
1369
+ }, "strip", z.ZodTypeAny, {
1370
+ updatedAt?: Date | undefined;
1371
+ student_id?: string | undefined;
1372
+ notes?: string | undefined;
1373
+ }, {
1374
+ updatedAt?: Date | undefined;
1375
+ student_id?: string | undefined;
1376
+ notes?: string | undefined;
1377
+ }>;
1378
+ export type INoteSchema = z.infer<typeof NoteSchema>;
1379
+ export declare const InterviewSurveyResponseResponseSchema: z.ZodObject<{
1380
+ questionId: z.ZodOptional<z.ZodString>;
1381
+ answer: z.ZodOptional<z.ZodNumber>;
1382
+ }, "strip", z.ZodTypeAny, {
1383
+ questionId?: string | undefined;
1384
+ answer?: number | undefined;
1385
+ }, {
1386
+ questionId?: string | undefined;
1387
+ answer?: number | undefined;
1388
+ }>;
1389
+ export type IInterviewSurveyResponseResponseSchema = z.infer<typeof InterviewSurveyResponseResponseSchema>;
1390
+ export declare const InterviewSurveyResponseSchema: z.ZodObject<{
1391
+ student_id: z.ZodOptional<z.ZodString>;
1392
+ interview_id: z.ZodOptional<z.ZodString>;
1393
+ program_id: z.ZodOptional<z.ZodString>;
1394
+ responses: z.ZodOptional<z.ZodArray<z.ZodObject<{
1395
+ questionId: z.ZodOptional<z.ZodString>;
1396
+ answer: z.ZodOptional<z.ZodNumber>;
1397
+ }, "strip", z.ZodTypeAny, {
1398
+ questionId?: string | undefined;
1399
+ answer?: number | undefined;
1400
+ }, {
1401
+ questionId?: string | undefined;
1402
+ answer?: number | undefined;
1403
+ }>, "many">>;
1404
+ isFinal: z.ZodOptional<z.ZodBoolean>;
1405
+ interviewQuestions: z.ZodOptional<z.ZodString>;
1406
+ interviewFeedback: z.ZodOptional<z.ZodString>;
1407
+ }, "strip", z.ZodTypeAny, {
1408
+ student_id?: string | undefined;
1409
+ program_id?: string | undefined;
1410
+ interview_id?: string | undefined;
1411
+ responses?: {
1412
+ questionId?: string | undefined;
1413
+ answer?: number | undefined;
1414
+ }[] | undefined;
1415
+ isFinal?: boolean | undefined;
1416
+ interviewQuestions?: string | undefined;
1417
+ interviewFeedback?: string | undefined;
1418
+ }, {
1419
+ student_id?: string | undefined;
1420
+ program_id?: string | undefined;
1421
+ interview_id?: string | undefined;
1422
+ responses?: {
1423
+ questionId?: string | undefined;
1424
+ answer?: number | undefined;
1425
+ }[] | undefined;
1426
+ isFinal?: boolean | undefined;
1427
+ interviewQuestions?: string | undefined;
1428
+ interviewFeedback?: string | undefined;
1429
+ }>;
1430
+ export type IInterviewSurveyResponseSchema = z.infer<typeof InterviewSurveyResponseSchema>;
1431
+ export declare const TicketSchema: z.ZodObject<{
1432
+ requester_id: z.ZodString;
1433
+ resolver_id: z.ZodOptional<z.ZodString>;
1434
+ program_id: z.ZodOptional<z.ZodString>;
1435
+ status: z.ZodOptional<z.ZodString>;
1436
+ type: z.ZodOptional<z.ZodString>;
1437
+ description: z.ZodOptional<z.ZodString>;
1438
+ feedback: z.ZodOptional<z.ZodString>;
1439
+ createdAt: z.ZodOptional<z.ZodDate>;
1440
+ }, "strip", z.ZodTypeAny, {
1441
+ requester_id: string;
1442
+ type?: string | undefined;
1443
+ status?: string | undefined;
1444
+ createdAt?: Date | undefined;
1445
+ program_id?: string | undefined;
1446
+ feedback?: string | undefined;
1447
+ description?: string | undefined;
1448
+ resolver_id?: string | undefined;
1449
+ }, {
1450
+ requester_id: string;
1451
+ type?: string | undefined;
1452
+ status?: string | undefined;
1453
+ createdAt?: Date | undefined;
1454
+ program_id?: string | undefined;
1455
+ feedback?: string | undefined;
1456
+ description?: string | undefined;
1457
+ resolver_id?: string | undefined;
1458
+ }>;
1459
+ export type ITicketSchema = z.infer<typeof TicketSchema>;
1460
+ export declare const ComplaintMessageFileSchema: z.ZodObject<{
1461
+ name: z.ZodString;
1462
+ path: z.ZodString;
1463
+ }, "strip", z.ZodTypeAny, {
1464
+ name: string;
1465
+ path: string;
1466
+ }, {
1467
+ name: string;
1468
+ path: string;
1469
+ }>;
1470
+ export type IComplaintMessageFileSchema = z.infer<typeof ComplaintMessageFileSchema>;
1471
+ export declare const ComplaintMessageSchema: z.ZodObject<{
1472
+ user_id: z.ZodOptional<z.ZodString>;
1473
+ message: z.ZodOptional<z.ZodString>;
1474
+ createdAt: z.ZodOptional<z.ZodDate>;
1475
+ file: z.ZodOptional<z.ZodArray<z.ZodObject<{
1476
+ name: z.ZodString;
1477
+ path: z.ZodString;
1478
+ }, "strip", z.ZodTypeAny, {
1479
+ name: string;
1480
+ path: string;
1481
+ }, {
1482
+ name: string;
1483
+ path: string;
1484
+ }>, "many">>;
1485
+ ignore_message: z.ZodOptional<z.ZodBoolean>;
1486
+ }, "strip", z.ZodTypeAny, {
1487
+ createdAt?: Date | undefined;
1488
+ user_id?: string | undefined;
1489
+ message?: string | undefined;
1490
+ file?: {
1491
+ name: string;
1492
+ path: string;
1493
+ }[] | undefined;
1494
+ ignore_message?: boolean | undefined;
1495
+ }, {
1496
+ createdAt?: Date | undefined;
1497
+ user_id?: string | undefined;
1498
+ message?: string | undefined;
1499
+ file?: {
1500
+ name: string;
1501
+ path: string;
1502
+ }[] | undefined;
1503
+ ignore_message?: boolean | undefined;
1504
+ }>;
1505
+ export type IComplaintMessageSchema = z.infer<typeof ComplaintMessageSchema>;
1506
+ export declare const ComplaintSchema: z.ZodObject<{
1507
+ requester_id: z.ZodString;
1508
+ status: z.ZodOptional<z.ZodString>;
1509
+ title: z.ZodOptional<z.ZodString>;
1510
+ category: z.ZodOptional<z.ZodString>;
1511
+ description: z.ZodOptional<z.ZodString>;
1512
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1513
+ user_id: z.ZodOptional<z.ZodString>;
1514
+ message: z.ZodOptional<z.ZodString>;
1515
+ createdAt: z.ZodOptional<z.ZodDate>;
1516
+ file: z.ZodOptional<z.ZodArray<z.ZodObject<{
1517
+ name: z.ZodString;
1518
+ path: z.ZodString;
1519
+ }, "strip", z.ZodTypeAny, {
1520
+ name: string;
1521
+ path: string;
1522
+ }, {
1523
+ name: string;
1524
+ path: string;
1525
+ }>, "many">>;
1526
+ ignore_message: z.ZodOptional<z.ZodBoolean>;
1527
+ }, "strip", z.ZodTypeAny, {
1528
+ createdAt?: Date | undefined;
1529
+ user_id?: string | undefined;
1530
+ message?: string | undefined;
1531
+ file?: {
1532
+ name: string;
1533
+ path: string;
1534
+ }[] | undefined;
1535
+ ignore_message?: boolean | undefined;
1536
+ }, {
1537
+ createdAt?: Date | undefined;
1538
+ user_id?: string | undefined;
1539
+ message?: string | undefined;
1540
+ file?: {
1541
+ name: string;
1542
+ path: string;
1543
+ }[] | undefined;
1544
+ ignore_message?: boolean | undefined;
1545
+ }>, "many">>;
1546
+ createdAt: z.ZodOptional<z.ZodDate>;
1547
+ }, "strip", z.ZodTypeAny, {
1548
+ requester_id: string;
1549
+ status?: string | undefined;
1550
+ createdAt?: Date | undefined;
1551
+ messages?: {
1552
+ createdAt?: Date | undefined;
1553
+ user_id?: string | undefined;
1554
+ message?: string | undefined;
1555
+ file?: {
1556
+ name: string;
1557
+ path: string;
1558
+ }[] | undefined;
1559
+ ignore_message?: boolean | undefined;
1560
+ }[] | undefined;
1561
+ description?: string | undefined;
1562
+ title?: string | undefined;
1563
+ category?: string | undefined;
1564
+ }, {
1565
+ requester_id: string;
1566
+ status?: string | undefined;
1567
+ createdAt?: Date | undefined;
1568
+ messages?: {
1569
+ createdAt?: Date | undefined;
1570
+ user_id?: string | undefined;
1571
+ message?: string | undefined;
1572
+ file?: {
1573
+ name: string;
1574
+ path: string;
1575
+ }[] | undefined;
1576
+ ignore_message?: boolean | undefined;
1577
+ }[] | undefined;
1578
+ description?: string | undefined;
1579
+ title?: string | undefined;
1580
+ category?: string | undefined;
1581
+ }>;
1582
+ export type IComplaintSchema = z.infer<typeof ComplaintSchema>;
1583
+ export declare const EventBaseSchema: z.ZodObject<{
1584
+ requester_id: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1585
+ receiver_id: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1586
+ isConfirmedRequester: z.ZodOptional<z.ZodBoolean>;
1587
+ isConfirmedReceiver: z.ZodOptional<z.ZodBoolean>;
1588
+ meetingLink: z.ZodOptional<z.ZodString>;
1589
+ event_type: z.ZodOptional<z.ZodString>;
1590
+ title: z.ZodOptional<z.ZodString>;
1591
+ description: z.ZodOptional<z.ZodString>;
1592
+ start: z.ZodOptional<z.ZodDate>;
1593
+ end: z.ZodOptional<z.ZodDate>;
1594
+ }, "strip", z.ZodTypeAny, {
1595
+ description?: string | undefined;
1596
+ end?: Date | undefined;
1597
+ requester_id?: string[] | undefined;
1598
+ receiver_id?: string[] | undefined;
1599
+ isConfirmedRequester?: boolean | undefined;
1600
+ isConfirmedReceiver?: boolean | undefined;
1601
+ meetingLink?: string | undefined;
1602
+ event_type?: string | undefined;
1603
+ title?: string | undefined;
1604
+ start?: Date | undefined;
1605
+ }, {
1606
+ description?: string | undefined;
1607
+ end?: Date | undefined;
1608
+ requester_id?: string[] | undefined;
1609
+ receiver_id?: string[] | undefined;
1610
+ isConfirmedRequester?: boolean | undefined;
1611
+ isConfirmedReceiver?: boolean | undefined;
1612
+ meetingLink?: string | undefined;
1613
+ event_type?: string | undefined;
1614
+ title?: string | undefined;
1615
+ start?: Date | undefined;
1616
+ }>;
1617
+ export type IEventSchema = z.infer<typeof EventBaseSchema>;
1618
+ export declare const InterviewSchema: z.ZodObject<{
1619
+ student_id: z.ZodOptional<z.ZodString>;
1620
+ trainer_id: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1621
+ thread_id: z.ZodOptional<z.ZodString>;
1622
+ program_id: z.ZodOptional<z.ZodString>;
1623
+ event_id: z.ZodOptional<z.ZodString>;
1624
+ interview_description: z.ZodOptional<z.ZodString>;
1625
+ interviewer: z.ZodOptional<z.ZodString>;
1626
+ interview_duration: z.ZodOptional<z.ZodString>;
1627
+ interview_date: z.ZodOptional<z.ZodDate>;
1628
+ isClosed: z.ZodOptional<z.ZodBoolean>;
1629
+ start: z.ZodOptional<z.ZodDate>;
1630
+ end: z.ZodOptional<z.ZodDate>;
1631
+ }, "strip", z.ZodTypeAny, {
1632
+ student_id?: string | undefined;
1633
+ program_id?: string | undefined;
1634
+ end?: Date | undefined;
1635
+ start?: Date | undefined;
1636
+ trainer_id?: string[] | undefined;
1637
+ thread_id?: string | undefined;
1638
+ event_id?: string | undefined;
1639
+ interview_description?: string | undefined;
1640
+ interviewer?: string | undefined;
1641
+ interview_duration?: string | undefined;
1642
+ interview_date?: Date | undefined;
1643
+ isClosed?: boolean | undefined;
1644
+ }, {
1645
+ student_id?: string | undefined;
1646
+ program_id?: string | undefined;
1647
+ end?: Date | undefined;
1648
+ start?: Date | undefined;
1649
+ trainer_id?: string[] | undefined;
1650
+ thread_id?: string | undefined;
1651
+ event_id?: string | undefined;
1652
+ interview_description?: string | undefined;
1653
+ interviewer?: string | undefined;
1654
+ interview_duration?: string | undefined;
1655
+ interview_date?: Date | undefined;
1656
+ isClosed?: boolean | undefined;
1657
+ }>;
1658
+ export type IInterviewSchema = z.infer<typeof InterviewSchema>;
1659
+ export declare const CommunicationFileSchema: z.ZodObject<{
1660
+ name: z.ZodString;
1661
+ path: z.ZodString;
1662
+ }, "strip", z.ZodTypeAny, {
1663
+ name: string;
1664
+ path: string;
1665
+ }, {
1666
+ name: string;
1667
+ path: string;
1668
+ }>;
1669
+ export type ICommunicationFileSchema = z.infer<typeof CommunicationFileSchema>;
1670
+ export declare const CommunicationSchema: z.ZodObject<{
1671
+ student_id: z.ZodOptional<z.ZodString>;
1672
+ user_id: z.ZodOptional<z.ZodString>;
1673
+ message: z.ZodOptional<z.ZodString>;
1674
+ readBy: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1675
+ timeStampReadBy: z.ZodOptional<z.ZodUnknown>;
1676
+ files: z.ZodOptional<z.ZodArray<z.ZodObject<{
1677
+ name: z.ZodString;
1678
+ path: z.ZodString;
1679
+ }, "strip", z.ZodTypeAny, {
1680
+ name: string;
1681
+ path: string;
1682
+ }, {
1683
+ name: string;
1684
+ path: string;
1685
+ }>, "many">>;
1686
+ createdAt: z.ZodOptional<z.ZodDate>;
1687
+ ignore_message: z.ZodOptional<z.ZodBoolean>;
1688
+ ignoredMessageUpdatedAt: z.ZodOptional<z.ZodDate>;
1689
+ ignoredMessageBy: z.ZodOptional<z.ZodString>;
1690
+ }, "strip", z.ZodTypeAny, {
1691
+ createdAt?: Date | undefined;
1692
+ student_id?: string | undefined;
1693
+ user_id?: string | undefined;
1694
+ message?: string | undefined;
1695
+ ignore_message?: boolean | undefined;
1696
+ readBy?: string[] | undefined;
1697
+ timeStampReadBy?: unknown;
1698
+ files?: {
1699
+ name: string;
1700
+ path: string;
1701
+ }[] | undefined;
1702
+ ignoredMessageUpdatedAt?: Date | undefined;
1703
+ ignoredMessageBy?: string | undefined;
1704
+ }, {
1705
+ createdAt?: Date | undefined;
1706
+ student_id?: string | undefined;
1707
+ user_id?: string | undefined;
1708
+ message?: string | undefined;
1709
+ ignore_message?: boolean | undefined;
1710
+ readBy?: string[] | undefined;
1711
+ timeStampReadBy?: unknown;
1712
+ files?: {
1713
+ name: string;
1714
+ path: string;
1715
+ }[] | undefined;
1716
+ ignoredMessageUpdatedAt?: Date | undefined;
1717
+ ignoredMessageBy?: string | undefined;
1718
+ }>;
1719
+ export type ICommunicationSchema = z.infer<typeof CommunicationSchema>;
1720
+ export declare const DocumentthreadMessageFileSchema: z.ZodObject<{
1721
+ name: z.ZodString;
1722
+ path: z.ZodString;
1723
+ }, "strip", z.ZodTypeAny, {
1724
+ name: string;
1725
+ path: string;
1726
+ }, {
1727
+ name: string;
1728
+ path: string;
1729
+ }>;
1730
+ export type IDocumentthreadMessageFileSchema = z.infer<typeof DocumentthreadMessageFileSchema>;
1731
+ export declare const DocumentthreadMessageSchema: z.ZodObject<{
1732
+ user_id: z.ZodOptional<z.ZodString>;
1733
+ message: z.ZodOptional<z.ZodString>;
1734
+ createdAt: z.ZodOptional<z.ZodDate>;
1735
+ file: z.ZodOptional<z.ZodArray<z.ZodObject<{
1736
+ name: z.ZodString;
1737
+ path: z.ZodString;
1738
+ }, "strip", z.ZodTypeAny, {
1739
+ name: string;
1740
+ path: string;
1741
+ }, {
1742
+ name: string;
1743
+ path: string;
1744
+ }>, "many">>;
1745
+ ignore_message: z.ZodOptional<z.ZodBoolean>;
1746
+ }, "strip", z.ZodTypeAny, {
1747
+ createdAt?: Date | undefined;
1748
+ user_id?: string | undefined;
1749
+ message?: string | undefined;
1750
+ file?: {
1751
+ name: string;
1752
+ path: string;
1753
+ }[] | undefined;
1754
+ ignore_message?: boolean | undefined;
1755
+ }, {
1756
+ createdAt?: Date | undefined;
1757
+ user_id?: string | undefined;
1758
+ message?: string | undefined;
1759
+ file?: {
1760
+ name: string;
1761
+ path: string;
1762
+ }[] | undefined;
1763
+ ignore_message?: boolean | undefined;
1764
+ }>;
1765
+ export type IDocumentthreadMessageSchema = z.infer<typeof DocumentthreadMessageSchema>;
1766
+ export declare const DocumentthreadSchema: z.ZodObject<{
1767
+ student_id: z.ZodString;
1768
+ program_id: z.ZodOptional<z.ZodString>;
1769
+ application_id: z.ZodOptional<z.ZodString>;
1770
+ outsourced_user_id: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1771
+ pin_by_user_id: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1772
+ flag_by_user_id: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1773
+ file_type: z.ZodString;
1774
+ isFinalVersion: z.ZodOptional<z.ZodBoolean>;
1775
+ isOriginAuthorDeclarationConfirmedByStudent: z.ZodOptional<z.ZodBoolean>;
1776
+ isOriginAuthorDeclarationConfirmedByStudentTimestamp: z.ZodOptional<z.ZodDate>;
1777
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1778
+ user_id: z.ZodOptional<z.ZodString>;
1779
+ message: z.ZodOptional<z.ZodString>;
1780
+ createdAt: z.ZodOptional<z.ZodDate>;
1781
+ file: z.ZodOptional<z.ZodArray<z.ZodObject<{
1782
+ name: z.ZodString;
1783
+ path: z.ZodString;
1784
+ }, "strip", z.ZodTypeAny, {
1785
+ name: string;
1786
+ path: string;
1787
+ }, {
1788
+ name: string;
1789
+ path: string;
1790
+ }>, "many">>;
1791
+ ignore_message: z.ZodOptional<z.ZodBoolean>;
1792
+ }, "strip", z.ZodTypeAny, {
1793
+ createdAt?: Date | undefined;
1794
+ user_id?: string | undefined;
1795
+ message?: string | undefined;
1796
+ file?: {
1797
+ name: string;
1798
+ path: string;
1799
+ }[] | undefined;
1800
+ ignore_message?: boolean | undefined;
1801
+ }, {
1802
+ createdAt?: Date | undefined;
1803
+ user_id?: string | undefined;
1804
+ message?: string | undefined;
1805
+ file?: {
1806
+ name: string;
1807
+ path: string;
1808
+ }[] | undefined;
1809
+ ignore_message?: boolean | undefined;
1810
+ }>, "many">>;
1811
+ essayReviewerIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1812
+ updatedAt: z.ZodOptional<z.ZodDate>;
1813
+ }, "strip", z.ZodTypeAny, {
1814
+ student_id: string;
1815
+ file_type: string;
1816
+ updatedAt?: Date | undefined;
1817
+ isFinalVersion?: boolean | undefined;
1818
+ program_id?: string | undefined;
1819
+ application_id?: string | undefined;
1820
+ outsourced_user_id?: string[] | undefined;
1821
+ pin_by_user_id?: string[] | undefined;
1822
+ flag_by_user_id?: string[] | undefined;
1823
+ isOriginAuthorDeclarationConfirmedByStudent?: boolean | undefined;
1824
+ isOriginAuthorDeclarationConfirmedByStudentTimestamp?: Date | undefined;
1825
+ messages?: {
1826
+ createdAt?: Date | undefined;
1827
+ user_id?: string | undefined;
1828
+ message?: string | undefined;
1829
+ file?: {
1830
+ name: string;
1831
+ path: string;
1832
+ }[] | undefined;
1833
+ ignore_message?: boolean | undefined;
1834
+ }[] | undefined;
1835
+ essayReviewerIds?: string[] | undefined;
1836
+ }, {
1837
+ student_id: string;
1838
+ file_type: string;
1839
+ updatedAt?: Date | undefined;
1840
+ isFinalVersion?: boolean | undefined;
1841
+ program_id?: string | undefined;
1842
+ application_id?: string | undefined;
1843
+ outsourced_user_id?: string[] | undefined;
1844
+ pin_by_user_id?: string[] | undefined;
1845
+ flag_by_user_id?: string[] | undefined;
1846
+ isOriginAuthorDeclarationConfirmedByStudent?: boolean | undefined;
1847
+ isOriginAuthorDeclarationConfirmedByStudentTimestamp?: Date | undefined;
1848
+ messages?: {
1849
+ createdAt?: Date | undefined;
1850
+ user_id?: string | undefined;
1851
+ message?: string | undefined;
1852
+ file?: {
1853
+ name: string;
1854
+ path: string;
1855
+ }[] | undefined;
1856
+ ignore_message?: boolean | undefined;
1857
+ }[] | undefined;
1858
+ essayReviewerIds?: string[] | undefined;
1859
+ }>;
1860
+ export type IDocumentthreadSchema = z.infer<typeof DocumentthreadSchema>;
1861
+ export declare const AuditSchema: z.ZodObject<{
1862
+ performedBy: z.ZodOptional<z.ZodString>;
1863
+ targetUserId: z.ZodOptional<z.ZodString>;
1864
+ targetDocumentThreadId: z.ZodOptional<z.ZodString>;
1865
+ interviewThreadId: z.ZodOptional<z.ZodString>;
1866
+ action: z.ZodOptional<z.ZodString>;
1867
+ field: z.ZodOptional<z.ZodString>;
1868
+ changes: z.ZodOptional<z.ZodObject<{
1869
+ before: z.ZodOptional<z.ZodUnknown>;
1870
+ after: z.ZodOptional<z.ZodUnknown>;
1871
+ }, "strip", z.ZodTypeAny, {
1872
+ before?: unknown;
1873
+ after?: unknown;
1874
+ }, {
1875
+ before?: unknown;
1876
+ after?: unknown;
1877
+ }>>;
1878
+ }, "strip", z.ZodTypeAny, {
1879
+ performedBy?: string | undefined;
1880
+ targetUserId?: string | undefined;
1881
+ targetDocumentThreadId?: string | undefined;
1882
+ interviewThreadId?: string | undefined;
1883
+ action?: string | undefined;
1884
+ field?: string | undefined;
1885
+ changes?: {
1886
+ before?: unknown;
1887
+ after?: unknown;
1888
+ } | undefined;
1889
+ }, {
1890
+ performedBy?: string | undefined;
1891
+ targetUserId?: string | undefined;
1892
+ targetDocumentThreadId?: string | undefined;
1893
+ interviewThreadId?: string | undefined;
1894
+ action?: string | undefined;
1895
+ field?: string | undefined;
1896
+ changes?: {
1897
+ before?: unknown;
1898
+ after?: unknown;
1899
+ } | undefined;
1900
+ }>;
1901
+ export type IAuditSchema = z.infer<typeof AuditSchema>;
1902
+ export declare const ProgramrequirementProgramCategorySchema: z.ZodObject<{
1903
+ program_category: z.ZodOptional<z.ZodString>;
1904
+ category_description: z.ZodOptional<z.ZodString>;
1905
+ requiredECTS: z.ZodOptional<z.ZodNumber>;
1906
+ keywordSets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1907
+ maxScore: z.ZodOptional<z.ZodNumber>;
1908
+ }, "strip", z.ZodTypeAny, {
1909
+ program_category?: string | undefined;
1910
+ category_description?: string | undefined;
1911
+ requiredECTS?: number | undefined;
1912
+ keywordSets?: string[] | undefined;
1913
+ maxScore?: number | undefined;
1914
+ }, {
1915
+ program_category?: string | undefined;
1916
+ category_description?: string | undefined;
1917
+ requiredECTS?: number | undefined;
1918
+ keywordSets?: string[] | undefined;
1919
+ maxScore?: number | undefined;
1920
+ }>;
1921
+ export type IProgramrequirementProgramCategorySchema = z.infer<typeof ProgramrequirementProgramCategorySchema>;
1922
+ export declare const ProgramrequirementSchema: z.ZodObject<{
1923
+ programId: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1924
+ program_categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
1925
+ program_category: z.ZodOptional<z.ZodString>;
1926
+ category_description: z.ZodOptional<z.ZodString>;
1927
+ requiredECTS: z.ZodOptional<z.ZodNumber>;
1928
+ keywordSets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1929
+ maxScore: z.ZodOptional<z.ZodNumber>;
1930
+ }, "strip", z.ZodTypeAny, {
1931
+ program_category?: string | undefined;
1932
+ category_description?: string | undefined;
1933
+ requiredECTS?: number | undefined;
1934
+ keywordSets?: string[] | undefined;
1935
+ maxScore?: number | undefined;
1936
+ }, {
1937
+ program_category?: string | undefined;
1938
+ category_description?: string | undefined;
1939
+ requiredECTS?: number | undefined;
1940
+ keywordSets?: string[] | undefined;
1941
+ maxScore?: number | undefined;
1942
+ }>, "many">>;
1943
+ attributes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1944
+ fpso: z.ZodOptional<z.ZodString>;
1945
+ admissionDescription: z.ZodOptional<z.ZodString>;
1946
+ gpaScoreBoundaryGPA: z.ZodOptional<z.ZodNumber>;
1947
+ gpaScore: z.ZodOptional<z.ZodNumber>;
1948
+ gpaMinScore: z.ZodOptional<z.ZodNumber>;
1949
+ coursesScore: z.ZodOptional<z.ZodNumber>;
1950
+ cvScore: z.ZodOptional<z.ZodNumber>;
1951
+ mlScore: z.ZodOptional<z.ZodNumber>;
1952
+ rlScore: z.ZodOptional<z.ZodNumber>;
1953
+ essayScore: z.ZodOptional<z.ZodNumber>;
1954
+ gmatScore: z.ZodOptional<z.ZodNumber>;
1955
+ greScore: z.ZodOptional<z.ZodNumber>;
1956
+ interviewScore: z.ZodOptional<z.ZodNumber>;
1957
+ workExperienceScore: z.ZodOptional<z.ZodNumber>;
1958
+ testScore: z.ZodOptional<z.ZodNumber>;
1959
+ firstRoundConsidered: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1960
+ secondRoundConsidered: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1961
+ directRejectionScore: z.ZodOptional<z.ZodNumber>;
1962
+ directAdmissionScore: z.ZodOptional<z.ZodNumber>;
1963
+ directRejectionSecondScore: z.ZodOptional<z.ZodNumber>;
1964
+ directAdmissionSecondScore: z.ZodOptional<z.ZodNumber>;
1965
+ }, "strip", z.ZodTypeAny, {
1966
+ fpso?: string | undefined;
1967
+ programId?: string[] | undefined;
1968
+ attributes?: string[] | undefined;
1969
+ program_categories?: {
1970
+ program_category?: string | undefined;
1971
+ category_description?: string | undefined;
1972
+ requiredECTS?: number | undefined;
1973
+ keywordSets?: string[] | undefined;
1974
+ maxScore?: number | undefined;
1975
+ }[] | undefined;
1976
+ admissionDescription?: string | undefined;
1977
+ gpaScoreBoundaryGPA?: number | undefined;
1978
+ gpaScore?: number | undefined;
1979
+ gpaMinScore?: number | undefined;
1980
+ coursesScore?: number | undefined;
1981
+ cvScore?: number | undefined;
1982
+ mlScore?: number | undefined;
1983
+ rlScore?: number | undefined;
1984
+ essayScore?: number | undefined;
1985
+ gmatScore?: number | undefined;
1986
+ greScore?: number | undefined;
1987
+ interviewScore?: number | undefined;
1988
+ workExperienceScore?: number | undefined;
1989
+ testScore?: number | undefined;
1990
+ firstRoundConsidered?: string[] | undefined;
1991
+ secondRoundConsidered?: string[] | undefined;
1992
+ directRejectionScore?: number | undefined;
1993
+ directAdmissionScore?: number | undefined;
1994
+ directRejectionSecondScore?: number | undefined;
1995
+ directAdmissionSecondScore?: number | undefined;
1996
+ }, {
1997
+ fpso?: string | undefined;
1998
+ programId?: string[] | undefined;
1999
+ attributes?: string[] | undefined;
2000
+ program_categories?: {
2001
+ program_category?: string | undefined;
2002
+ category_description?: string | undefined;
2003
+ requiredECTS?: number | undefined;
2004
+ keywordSets?: string[] | undefined;
2005
+ maxScore?: number | undefined;
2006
+ }[] | undefined;
2007
+ admissionDescription?: string | undefined;
2008
+ gpaScoreBoundaryGPA?: number | undefined;
2009
+ gpaScore?: number | undefined;
2010
+ gpaMinScore?: number | undefined;
2011
+ coursesScore?: number | undefined;
2012
+ cvScore?: number | undefined;
2013
+ mlScore?: number | undefined;
2014
+ rlScore?: number | undefined;
2015
+ essayScore?: number | undefined;
2016
+ gmatScore?: number | undefined;
2017
+ greScore?: number | undefined;
2018
+ interviewScore?: number | undefined;
2019
+ workExperienceScore?: number | undefined;
2020
+ testScore?: number | undefined;
2021
+ firstRoundConsidered?: string[] | undefined;
2022
+ secondRoundConsidered?: string[] | undefined;
2023
+ directRejectionScore?: number | undefined;
2024
+ directAdmissionScore?: number | undefined;
2025
+ directRejectionSecondScore?: number | undefined;
2026
+ directAdmissionSecondScore?: number | undefined;
2027
+ }>;
2028
+ export type IProgramrequirementSchema = z.infer<typeof ProgramrequirementSchema>;