@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
@@ -1,29 +1,2685 @@
1
- import type { ApiResponse, SuccessResponse } from './common';
2
- import type { IProgramrequirementWithId, IProgramWithId, IKeywordsetWithId } from './serialized';
1
+ import { z } from 'zod';
2
+ export declare const ProgramsAndKeywordsDataSchema: z.ZodObject<{
3
+ distinctPrograms: z.ZodOptional<z.ZodArray<z.ZodObject<{
4
+ isArchiv: z.ZodOptional<z.ZodBoolean>;
5
+ isLocked: z.ZodOptional<z.ZodBoolean>;
6
+ school: z.ZodString;
7
+ program_name: z.ZodString;
8
+ programSubjects: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9
+ degree: z.ZodOptional<z.ZodString>;
10
+ semester: z.ZodOptional<z.ZodString>;
11
+ lang: z.ZodOptional<z.ZodString>;
12
+ gpa_requirement: z.ZodOptional<z.ZodString>;
13
+ allowOnlyGraduatedApplicant: z.ZodOptional<z.ZodBoolean>;
14
+ application_start: z.ZodOptional<z.ZodString>;
15
+ application_deadline: z.ZodOptional<z.ZodString>;
16
+ uni_assist: z.ZodOptional<z.ZodString>;
17
+ englishTestHandLater: z.ZodOptional<z.ZodBoolean>;
18
+ toefl: z.ZodOptional<z.ZodString>;
19
+ toefl_reading: z.ZodOptional<z.ZodNumber>;
20
+ toefl_listening: z.ZodOptional<z.ZodNumber>;
21
+ toefl_writing: z.ZodOptional<z.ZodNumber>;
22
+ toefl_speaking: z.ZodOptional<z.ZodNumber>;
23
+ ielts: z.ZodOptional<z.ZodString>;
24
+ ielts_reading: z.ZodOptional<z.ZodNumber>;
25
+ ielts_listening: z.ZodOptional<z.ZodNumber>;
26
+ ielts_writing: z.ZodOptional<z.ZodNumber>;
27
+ ielts_speaking: z.ZodOptional<z.ZodNumber>;
28
+ germanTestHandLater: z.ZodOptional<z.ZodBoolean>;
29
+ goetheZertifikat: z.ZodOptional<z.ZodString>;
30
+ testdaf: z.ZodOptional<z.ZodString>;
31
+ dsh: z.ZodOptional<z.ZodString>;
32
+ gre: z.ZodOptional<z.ZodString>;
33
+ gre_verbal: z.ZodOptional<z.ZodNumber>;
34
+ gre_quantitative: z.ZodOptional<z.ZodNumber>;
35
+ gre_analytical_writing: z.ZodOptional<z.ZodNumber>;
36
+ gmat: z.ZodOptional<z.ZodString>;
37
+ ml_required: z.ZodOptional<z.ZodString>;
38
+ ml_requirements: z.ZodOptional<z.ZodString>;
39
+ sop_required: z.ZodOptional<z.ZodString>;
40
+ sop_requirements: z.ZodOptional<z.ZodString>;
41
+ phs_required: z.ZodOptional<z.ZodString>;
42
+ phs_requirements: z.ZodOptional<z.ZodString>;
43
+ rl_required: z.ZodOptional<z.ZodString>;
44
+ rl_requirements: z.ZodOptional<z.ZodString>;
45
+ is_rl_specific: z.ZodOptional<z.ZodBoolean>;
46
+ essay_required: z.ZodOptional<z.ZodString>;
47
+ essay_requirements: z.ZodOptional<z.ZodString>;
48
+ essay_difficulty: z.ZodOptional<z.ZodString>;
49
+ portfolio_required: z.ZodOptional<z.ZodString>;
50
+ portfolio_requirements: z.ZodOptional<z.ZodString>;
51
+ supplementary_form_required: z.ZodOptional<z.ZodString>;
52
+ supplementary_form_requirements: z.ZodOptional<z.ZodString>;
53
+ curriculum_analysis_required: z.ZodOptional<z.ZodString>;
54
+ curriculum_analysis_requirements: z.ZodOptional<z.ZodString>;
55
+ scholarship_form_required: z.ZodOptional<z.ZodString>;
56
+ scholarship_form_requirements: z.ZodOptional<z.ZodString>;
57
+ module_description_required: z.ZodOptional<z.ZodString>;
58
+ ects_requirements: z.ZodOptional<z.ZodString>;
59
+ special_notes: z.ZodOptional<z.ZodString>;
60
+ comments: z.ZodOptional<z.ZodString>;
61
+ application_portal_a: z.ZodOptional<z.ZodString>;
62
+ application_portal_b: z.ZodOptional<z.ZodString>;
63
+ application_portal_a_instructions: z.ZodOptional<z.ZodString>;
64
+ application_portal_b_instructions: z.ZodOptional<z.ZodString>;
65
+ uni_assist_link: z.ZodOptional<z.ZodString>;
66
+ website: z.ZodOptional<z.ZodString>;
67
+ fpso: z.ZodOptional<z.ZodString>;
68
+ updatedAt: z.ZodOptional<z.ZodDate>;
69
+ whoupdated: z.ZodOptional<z.ZodString>;
70
+ tuition_fees: z.ZodOptional<z.ZodString>;
71
+ contact: z.ZodOptional<z.ZodString>;
72
+ city: z.ZodOptional<z.ZodString>;
73
+ country: z.ZodOptional<z.ZodString>;
74
+ isPrivateSchool: z.ZodOptional<z.ZodBoolean>;
75
+ isPartnerSchool: z.ZodOptional<z.ZodBoolean>;
76
+ schoolType: z.ZodOptional<z.ZodString>;
77
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
78
+ url: z.ZodOptional<z.ZodString>;
79
+ isNC: z.ZodOptional<z.ZodBoolean>;
80
+ zipCode: z.ZodOptional<z.ZodString>;
81
+ } & {
82
+ _id: z.ZodString;
83
+ vcId: z.ZodOptional<z.ZodString>;
84
+ }, "strip", z.ZodTypeAny, {
85
+ school: string;
86
+ program_name: string;
87
+ _id: string;
88
+ isArchiv?: boolean | undefined;
89
+ isLocked?: boolean | undefined;
90
+ programSubjects?: string[] | undefined;
91
+ degree?: string | undefined;
92
+ semester?: string | undefined;
93
+ lang?: string | undefined;
94
+ gpa_requirement?: string | undefined;
95
+ allowOnlyGraduatedApplicant?: boolean | undefined;
96
+ application_start?: string | undefined;
97
+ application_deadline?: string | undefined;
98
+ uni_assist?: string | undefined;
99
+ englishTestHandLater?: boolean | undefined;
100
+ toefl?: string | undefined;
101
+ toefl_reading?: number | undefined;
102
+ toefl_listening?: number | undefined;
103
+ toefl_writing?: number | undefined;
104
+ toefl_speaking?: number | undefined;
105
+ ielts?: string | undefined;
106
+ ielts_reading?: number | undefined;
107
+ ielts_listening?: number | undefined;
108
+ ielts_writing?: number | undefined;
109
+ ielts_speaking?: number | undefined;
110
+ germanTestHandLater?: boolean | undefined;
111
+ goetheZertifikat?: string | undefined;
112
+ testdaf?: string | undefined;
113
+ dsh?: string | undefined;
114
+ gre?: string | undefined;
115
+ gre_verbal?: number | undefined;
116
+ gre_quantitative?: number | undefined;
117
+ gre_analytical_writing?: number | undefined;
118
+ gmat?: string | undefined;
119
+ ml_required?: string | undefined;
120
+ ml_requirements?: string | undefined;
121
+ sop_required?: string | undefined;
122
+ sop_requirements?: string | undefined;
123
+ phs_required?: string | undefined;
124
+ phs_requirements?: string | undefined;
125
+ rl_required?: string | undefined;
126
+ rl_requirements?: string | undefined;
127
+ is_rl_specific?: boolean | undefined;
128
+ essay_required?: string | undefined;
129
+ essay_requirements?: string | undefined;
130
+ essay_difficulty?: string | undefined;
131
+ portfolio_required?: string | undefined;
132
+ portfolio_requirements?: string | undefined;
133
+ supplementary_form_required?: string | undefined;
134
+ supplementary_form_requirements?: string | undefined;
135
+ curriculum_analysis_required?: string | undefined;
136
+ curriculum_analysis_requirements?: string | undefined;
137
+ scholarship_form_required?: string | undefined;
138
+ scholarship_form_requirements?: string | undefined;
139
+ module_description_required?: string | undefined;
140
+ ects_requirements?: string | undefined;
141
+ special_notes?: string | undefined;
142
+ comments?: string | undefined;
143
+ application_portal_a?: string | undefined;
144
+ application_portal_b?: string | undefined;
145
+ application_portal_a_instructions?: string | undefined;
146
+ application_portal_b_instructions?: string | undefined;
147
+ uni_assist_link?: string | undefined;
148
+ website?: string | undefined;
149
+ fpso?: string | undefined;
150
+ updatedAt?: Date | undefined;
151
+ whoupdated?: string | undefined;
152
+ tuition_fees?: string | undefined;
153
+ contact?: string | undefined;
154
+ city?: string | undefined;
155
+ country?: string | undefined;
156
+ isPrivateSchool?: boolean | undefined;
157
+ isPartnerSchool?: boolean | undefined;
158
+ schoolType?: string | undefined;
159
+ tags?: string[] | undefined;
160
+ url?: string | undefined;
161
+ isNC?: boolean | undefined;
162
+ zipCode?: string | undefined;
163
+ vcId?: string | undefined;
164
+ }, {
165
+ school: string;
166
+ program_name: string;
167
+ _id: string;
168
+ isArchiv?: boolean | undefined;
169
+ isLocked?: boolean | undefined;
170
+ programSubjects?: string[] | undefined;
171
+ degree?: string | undefined;
172
+ semester?: string | undefined;
173
+ lang?: string | undefined;
174
+ gpa_requirement?: string | undefined;
175
+ allowOnlyGraduatedApplicant?: boolean | undefined;
176
+ application_start?: string | undefined;
177
+ application_deadline?: string | undefined;
178
+ uni_assist?: string | undefined;
179
+ englishTestHandLater?: boolean | undefined;
180
+ toefl?: string | undefined;
181
+ toefl_reading?: number | undefined;
182
+ toefl_listening?: number | undefined;
183
+ toefl_writing?: number | undefined;
184
+ toefl_speaking?: number | undefined;
185
+ ielts?: string | undefined;
186
+ ielts_reading?: number | undefined;
187
+ ielts_listening?: number | undefined;
188
+ ielts_writing?: number | undefined;
189
+ ielts_speaking?: number | undefined;
190
+ germanTestHandLater?: boolean | undefined;
191
+ goetheZertifikat?: string | undefined;
192
+ testdaf?: string | undefined;
193
+ dsh?: string | undefined;
194
+ gre?: string | undefined;
195
+ gre_verbal?: number | undefined;
196
+ gre_quantitative?: number | undefined;
197
+ gre_analytical_writing?: number | undefined;
198
+ gmat?: string | undefined;
199
+ ml_required?: string | undefined;
200
+ ml_requirements?: string | undefined;
201
+ sop_required?: string | undefined;
202
+ sop_requirements?: string | undefined;
203
+ phs_required?: string | undefined;
204
+ phs_requirements?: string | undefined;
205
+ rl_required?: string | undefined;
206
+ rl_requirements?: string | undefined;
207
+ is_rl_specific?: boolean | undefined;
208
+ essay_required?: string | undefined;
209
+ essay_requirements?: string | undefined;
210
+ essay_difficulty?: string | undefined;
211
+ portfolio_required?: string | undefined;
212
+ portfolio_requirements?: string | undefined;
213
+ supplementary_form_required?: string | undefined;
214
+ supplementary_form_requirements?: string | undefined;
215
+ curriculum_analysis_required?: string | undefined;
216
+ curriculum_analysis_requirements?: string | undefined;
217
+ scholarship_form_required?: string | undefined;
218
+ scholarship_form_requirements?: string | undefined;
219
+ module_description_required?: string | undefined;
220
+ ects_requirements?: string | undefined;
221
+ special_notes?: string | undefined;
222
+ comments?: string | undefined;
223
+ application_portal_a?: string | undefined;
224
+ application_portal_b?: string | undefined;
225
+ application_portal_a_instructions?: string | undefined;
226
+ application_portal_b_instructions?: string | undefined;
227
+ uni_assist_link?: string | undefined;
228
+ website?: string | undefined;
229
+ fpso?: string | undefined;
230
+ updatedAt?: Date | undefined;
231
+ whoupdated?: string | undefined;
232
+ tuition_fees?: string | undefined;
233
+ contact?: string | undefined;
234
+ city?: string | undefined;
235
+ country?: string | undefined;
236
+ isPrivateSchool?: boolean | undefined;
237
+ isPartnerSchool?: boolean | undefined;
238
+ schoolType?: string | undefined;
239
+ tags?: string[] | undefined;
240
+ url?: string | undefined;
241
+ isNC?: boolean | undefined;
242
+ zipCode?: string | undefined;
243
+ vcId?: string | undefined;
244
+ }>, "many">>;
245
+ keywordsets: z.ZodOptional<z.ZodArray<z.ZodObject<{
246
+ categoryName: z.ZodOptional<z.ZodString>;
247
+ description: z.ZodOptional<z.ZodString>;
248
+ keywords: z.ZodOptional<z.ZodObject<{
249
+ zh: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
250
+ en: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
251
+ }, "strip", z.ZodTypeAny, {
252
+ zh?: string[] | undefined;
253
+ en?: string[] | undefined;
254
+ }, {
255
+ zh?: string[] | undefined;
256
+ en?: string[] | undefined;
257
+ }>>;
258
+ antiKeywords: z.ZodOptional<z.ZodObject<{
259
+ zh: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
260
+ en: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
261
+ }, "strip", z.ZodTypeAny, {
262
+ zh?: string[] | undefined;
263
+ en?: string[] | undefined;
264
+ }, {
265
+ zh?: string[] | undefined;
266
+ en?: string[] | undefined;
267
+ }>>;
268
+ } & {
269
+ _id: z.ZodString;
270
+ }, "strip", z.ZodTypeAny, {
271
+ _id: string;
272
+ description?: string | undefined;
273
+ categoryName?: string | undefined;
274
+ keywords?: {
275
+ zh?: string[] | undefined;
276
+ en?: string[] | undefined;
277
+ } | undefined;
278
+ antiKeywords?: {
279
+ zh?: string[] | undefined;
280
+ en?: string[] | undefined;
281
+ } | undefined;
282
+ }, {
283
+ _id: string;
284
+ description?: string | undefined;
285
+ categoryName?: string | undefined;
286
+ keywords?: {
287
+ zh?: string[] | undefined;
288
+ en?: string[] | undefined;
289
+ } | undefined;
290
+ antiKeywords?: {
291
+ zh?: string[] | undefined;
292
+ en?: string[] | undefined;
293
+ } | undefined;
294
+ }>, "many">>;
295
+ }, "strip", z.ZodTypeAny, {
296
+ distinctPrograms?: {
297
+ school: string;
298
+ program_name: string;
299
+ _id: string;
300
+ isArchiv?: boolean | undefined;
301
+ isLocked?: boolean | undefined;
302
+ programSubjects?: string[] | undefined;
303
+ degree?: string | undefined;
304
+ semester?: string | undefined;
305
+ lang?: string | undefined;
306
+ gpa_requirement?: string | undefined;
307
+ allowOnlyGraduatedApplicant?: boolean | undefined;
308
+ application_start?: string | undefined;
309
+ application_deadline?: string | undefined;
310
+ uni_assist?: string | undefined;
311
+ englishTestHandLater?: boolean | undefined;
312
+ toefl?: string | undefined;
313
+ toefl_reading?: number | undefined;
314
+ toefl_listening?: number | undefined;
315
+ toefl_writing?: number | undefined;
316
+ toefl_speaking?: number | undefined;
317
+ ielts?: string | undefined;
318
+ ielts_reading?: number | undefined;
319
+ ielts_listening?: number | undefined;
320
+ ielts_writing?: number | undefined;
321
+ ielts_speaking?: number | undefined;
322
+ germanTestHandLater?: boolean | undefined;
323
+ goetheZertifikat?: string | undefined;
324
+ testdaf?: string | undefined;
325
+ dsh?: string | undefined;
326
+ gre?: string | undefined;
327
+ gre_verbal?: number | undefined;
328
+ gre_quantitative?: number | undefined;
329
+ gre_analytical_writing?: number | undefined;
330
+ gmat?: string | undefined;
331
+ ml_required?: string | undefined;
332
+ ml_requirements?: string | undefined;
333
+ sop_required?: string | undefined;
334
+ sop_requirements?: string | undefined;
335
+ phs_required?: string | undefined;
336
+ phs_requirements?: string | undefined;
337
+ rl_required?: string | undefined;
338
+ rl_requirements?: string | undefined;
339
+ is_rl_specific?: boolean | undefined;
340
+ essay_required?: string | undefined;
341
+ essay_requirements?: string | undefined;
342
+ essay_difficulty?: string | undefined;
343
+ portfolio_required?: string | undefined;
344
+ portfolio_requirements?: string | undefined;
345
+ supplementary_form_required?: string | undefined;
346
+ supplementary_form_requirements?: string | undefined;
347
+ curriculum_analysis_required?: string | undefined;
348
+ curriculum_analysis_requirements?: string | undefined;
349
+ scholarship_form_required?: string | undefined;
350
+ scholarship_form_requirements?: string | undefined;
351
+ module_description_required?: string | undefined;
352
+ ects_requirements?: string | undefined;
353
+ special_notes?: string | undefined;
354
+ comments?: string | undefined;
355
+ application_portal_a?: string | undefined;
356
+ application_portal_b?: string | undefined;
357
+ application_portal_a_instructions?: string | undefined;
358
+ application_portal_b_instructions?: string | undefined;
359
+ uni_assist_link?: string | undefined;
360
+ website?: string | undefined;
361
+ fpso?: string | undefined;
362
+ updatedAt?: Date | undefined;
363
+ whoupdated?: string | undefined;
364
+ tuition_fees?: string | undefined;
365
+ contact?: string | undefined;
366
+ city?: string | undefined;
367
+ country?: string | undefined;
368
+ isPrivateSchool?: boolean | undefined;
369
+ isPartnerSchool?: boolean | undefined;
370
+ schoolType?: string | undefined;
371
+ tags?: string[] | undefined;
372
+ url?: string | undefined;
373
+ isNC?: boolean | undefined;
374
+ zipCode?: string | undefined;
375
+ vcId?: string | undefined;
376
+ }[] | undefined;
377
+ keywordsets?: {
378
+ _id: string;
379
+ description?: string | undefined;
380
+ categoryName?: string | undefined;
381
+ keywords?: {
382
+ zh?: string[] | undefined;
383
+ en?: string[] | undefined;
384
+ } | undefined;
385
+ antiKeywords?: {
386
+ zh?: string[] | undefined;
387
+ en?: string[] | undefined;
388
+ } | undefined;
389
+ }[] | undefined;
390
+ }, {
391
+ distinctPrograms?: {
392
+ school: string;
393
+ program_name: string;
394
+ _id: string;
395
+ isArchiv?: boolean | undefined;
396
+ isLocked?: boolean | undefined;
397
+ programSubjects?: string[] | undefined;
398
+ degree?: string | undefined;
399
+ semester?: string | undefined;
400
+ lang?: string | undefined;
401
+ gpa_requirement?: string | undefined;
402
+ allowOnlyGraduatedApplicant?: boolean | undefined;
403
+ application_start?: string | undefined;
404
+ application_deadline?: string | undefined;
405
+ uni_assist?: string | undefined;
406
+ englishTestHandLater?: boolean | undefined;
407
+ toefl?: string | undefined;
408
+ toefl_reading?: number | undefined;
409
+ toefl_listening?: number | undefined;
410
+ toefl_writing?: number | undefined;
411
+ toefl_speaking?: number | undefined;
412
+ ielts?: string | undefined;
413
+ ielts_reading?: number | undefined;
414
+ ielts_listening?: number | undefined;
415
+ ielts_writing?: number | undefined;
416
+ ielts_speaking?: number | undefined;
417
+ germanTestHandLater?: boolean | undefined;
418
+ goetheZertifikat?: string | undefined;
419
+ testdaf?: string | undefined;
420
+ dsh?: string | undefined;
421
+ gre?: string | undefined;
422
+ gre_verbal?: number | undefined;
423
+ gre_quantitative?: number | undefined;
424
+ gre_analytical_writing?: number | undefined;
425
+ gmat?: string | undefined;
426
+ ml_required?: string | undefined;
427
+ ml_requirements?: string | undefined;
428
+ sop_required?: string | undefined;
429
+ sop_requirements?: string | undefined;
430
+ phs_required?: string | undefined;
431
+ phs_requirements?: string | undefined;
432
+ rl_required?: string | undefined;
433
+ rl_requirements?: string | undefined;
434
+ is_rl_specific?: boolean | undefined;
435
+ essay_required?: string | undefined;
436
+ essay_requirements?: string | undefined;
437
+ essay_difficulty?: string | undefined;
438
+ portfolio_required?: string | undefined;
439
+ portfolio_requirements?: string | undefined;
440
+ supplementary_form_required?: string | undefined;
441
+ supplementary_form_requirements?: string | undefined;
442
+ curriculum_analysis_required?: string | undefined;
443
+ curriculum_analysis_requirements?: string | undefined;
444
+ scholarship_form_required?: string | undefined;
445
+ scholarship_form_requirements?: string | undefined;
446
+ module_description_required?: string | undefined;
447
+ ects_requirements?: string | undefined;
448
+ special_notes?: string | undefined;
449
+ comments?: string | undefined;
450
+ application_portal_a?: string | undefined;
451
+ application_portal_b?: string | undefined;
452
+ application_portal_a_instructions?: string | undefined;
453
+ application_portal_b_instructions?: string | undefined;
454
+ uni_assist_link?: string | undefined;
455
+ website?: string | undefined;
456
+ fpso?: string | undefined;
457
+ updatedAt?: Date | undefined;
458
+ whoupdated?: string | undefined;
459
+ tuition_fees?: string | undefined;
460
+ contact?: string | undefined;
461
+ city?: string | undefined;
462
+ country?: string | undefined;
463
+ isPrivateSchool?: boolean | undefined;
464
+ isPartnerSchool?: boolean | undefined;
465
+ schoolType?: string | undefined;
466
+ tags?: string[] | undefined;
467
+ url?: string | undefined;
468
+ isNC?: boolean | undefined;
469
+ zipCode?: string | undefined;
470
+ vcId?: string | undefined;
471
+ }[] | undefined;
472
+ keywordsets?: {
473
+ _id: string;
474
+ description?: string | undefined;
475
+ categoryName?: string | undefined;
476
+ keywords?: {
477
+ zh?: string[] | undefined;
478
+ en?: string[] | undefined;
479
+ } | undefined;
480
+ antiKeywords?: {
481
+ zh?: string[] | undefined;
482
+ en?: string[] | undefined;
483
+ } | undefined;
484
+ }[] | undefined;
485
+ }>;
486
+ export declare const GetProgramRequirementsResponseSchema: z.ZodObject<{
487
+ success: z.ZodBoolean;
488
+ message: z.ZodOptional<z.ZodString>;
489
+ } & {
490
+ data: z.ZodOptional<z.ZodArray<z.ZodObject<{
491
+ programId: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
492
+ program_categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
493
+ program_category: z.ZodOptional<z.ZodString>;
494
+ category_description: z.ZodOptional<z.ZodString>;
495
+ requiredECTS: z.ZodOptional<z.ZodNumber>;
496
+ keywordSets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
497
+ maxScore: z.ZodOptional<z.ZodNumber>;
498
+ }, "strip", z.ZodTypeAny, {
499
+ program_category?: string | undefined;
500
+ category_description?: string | undefined;
501
+ requiredECTS?: number | undefined;
502
+ keywordSets?: string[] | undefined;
503
+ maxScore?: number | undefined;
504
+ }, {
505
+ program_category?: string | undefined;
506
+ category_description?: string | undefined;
507
+ requiredECTS?: number | undefined;
508
+ keywordSets?: string[] | undefined;
509
+ maxScore?: number | undefined;
510
+ }>, "many">>;
511
+ attributes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
512
+ fpso: z.ZodOptional<z.ZodString>;
513
+ admissionDescription: z.ZodOptional<z.ZodString>;
514
+ gpaScoreBoundaryGPA: z.ZodOptional<z.ZodNumber>;
515
+ gpaScore: z.ZodOptional<z.ZodNumber>;
516
+ gpaMinScore: z.ZodOptional<z.ZodNumber>;
517
+ coursesScore: z.ZodOptional<z.ZodNumber>;
518
+ cvScore: z.ZodOptional<z.ZodNumber>;
519
+ mlScore: z.ZodOptional<z.ZodNumber>;
520
+ rlScore: z.ZodOptional<z.ZodNumber>;
521
+ essayScore: z.ZodOptional<z.ZodNumber>;
522
+ gmatScore: z.ZodOptional<z.ZodNumber>;
523
+ greScore: z.ZodOptional<z.ZodNumber>;
524
+ interviewScore: z.ZodOptional<z.ZodNumber>;
525
+ workExperienceScore: z.ZodOptional<z.ZodNumber>;
526
+ testScore: z.ZodOptional<z.ZodNumber>;
527
+ firstRoundConsidered: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
528
+ secondRoundConsidered: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
529
+ directRejectionScore: z.ZodOptional<z.ZodNumber>;
530
+ directAdmissionScore: z.ZodOptional<z.ZodNumber>;
531
+ directRejectionSecondScore: z.ZodOptional<z.ZodNumber>;
532
+ directAdmissionSecondScore: z.ZodOptional<z.ZodNumber>;
533
+ } & {
534
+ _id: z.ZodString;
535
+ }, "strip", z.ZodTypeAny, {
536
+ _id: string;
537
+ fpso?: string | undefined;
538
+ programId?: string[] | undefined;
539
+ attributes?: string[] | undefined;
540
+ program_categories?: {
541
+ program_category?: string | undefined;
542
+ category_description?: string | undefined;
543
+ requiredECTS?: number | undefined;
544
+ keywordSets?: string[] | undefined;
545
+ maxScore?: number | undefined;
546
+ }[] | undefined;
547
+ admissionDescription?: string | undefined;
548
+ gpaScoreBoundaryGPA?: number | undefined;
549
+ gpaScore?: number | undefined;
550
+ gpaMinScore?: number | undefined;
551
+ coursesScore?: number | undefined;
552
+ cvScore?: number | undefined;
553
+ mlScore?: number | undefined;
554
+ rlScore?: number | undefined;
555
+ essayScore?: number | undefined;
556
+ gmatScore?: number | undefined;
557
+ greScore?: number | undefined;
558
+ interviewScore?: number | undefined;
559
+ workExperienceScore?: number | undefined;
560
+ testScore?: number | undefined;
561
+ firstRoundConsidered?: string[] | undefined;
562
+ secondRoundConsidered?: string[] | undefined;
563
+ directRejectionScore?: number | undefined;
564
+ directAdmissionScore?: number | undefined;
565
+ directRejectionSecondScore?: number | undefined;
566
+ directAdmissionSecondScore?: number | undefined;
567
+ }, {
568
+ _id: string;
569
+ fpso?: string | undefined;
570
+ programId?: string[] | undefined;
571
+ attributes?: string[] | undefined;
572
+ program_categories?: {
573
+ program_category?: string | undefined;
574
+ category_description?: string | undefined;
575
+ requiredECTS?: number | undefined;
576
+ keywordSets?: string[] | undefined;
577
+ maxScore?: number | undefined;
578
+ }[] | undefined;
579
+ admissionDescription?: string | undefined;
580
+ gpaScoreBoundaryGPA?: number | undefined;
581
+ gpaScore?: number | undefined;
582
+ gpaMinScore?: number | undefined;
583
+ coursesScore?: number | undefined;
584
+ cvScore?: number | undefined;
585
+ mlScore?: number | undefined;
586
+ rlScore?: number | undefined;
587
+ essayScore?: number | undefined;
588
+ gmatScore?: number | undefined;
589
+ greScore?: number | undefined;
590
+ interviewScore?: number | undefined;
591
+ workExperienceScore?: number | undefined;
592
+ testScore?: number | undefined;
593
+ firstRoundConsidered?: string[] | undefined;
594
+ secondRoundConsidered?: string[] | undefined;
595
+ directRejectionScore?: number | undefined;
596
+ directAdmissionScore?: number | undefined;
597
+ directRejectionSecondScore?: number | undefined;
598
+ directAdmissionSecondScore?: number | undefined;
599
+ }>, "many">>;
600
+ }, "strip", z.ZodTypeAny, {
601
+ success: boolean;
602
+ message?: string | undefined;
603
+ data?: {
604
+ _id: string;
605
+ fpso?: string | undefined;
606
+ programId?: string[] | undefined;
607
+ attributes?: string[] | undefined;
608
+ program_categories?: {
609
+ program_category?: string | undefined;
610
+ category_description?: string | undefined;
611
+ requiredECTS?: number | undefined;
612
+ keywordSets?: string[] | undefined;
613
+ maxScore?: number | undefined;
614
+ }[] | undefined;
615
+ admissionDescription?: string | undefined;
616
+ gpaScoreBoundaryGPA?: number | undefined;
617
+ gpaScore?: number | undefined;
618
+ gpaMinScore?: number | undefined;
619
+ coursesScore?: number | undefined;
620
+ cvScore?: number | undefined;
621
+ mlScore?: number | undefined;
622
+ rlScore?: number | undefined;
623
+ essayScore?: number | undefined;
624
+ gmatScore?: number | undefined;
625
+ greScore?: number | undefined;
626
+ interviewScore?: number | undefined;
627
+ workExperienceScore?: number | undefined;
628
+ testScore?: number | undefined;
629
+ firstRoundConsidered?: string[] | undefined;
630
+ secondRoundConsidered?: string[] | undefined;
631
+ directRejectionScore?: number | undefined;
632
+ directAdmissionScore?: number | undefined;
633
+ directRejectionSecondScore?: number | undefined;
634
+ directAdmissionSecondScore?: number | undefined;
635
+ }[] | undefined;
636
+ }, {
637
+ success: boolean;
638
+ message?: string | undefined;
639
+ data?: {
640
+ _id: string;
641
+ fpso?: string | undefined;
642
+ programId?: string[] | undefined;
643
+ attributes?: string[] | undefined;
644
+ program_categories?: {
645
+ program_category?: string | undefined;
646
+ category_description?: string | undefined;
647
+ requiredECTS?: number | undefined;
648
+ keywordSets?: string[] | undefined;
649
+ maxScore?: number | undefined;
650
+ }[] | undefined;
651
+ admissionDescription?: string | undefined;
652
+ gpaScoreBoundaryGPA?: number | undefined;
653
+ gpaScore?: number | undefined;
654
+ gpaMinScore?: number | undefined;
655
+ coursesScore?: number | undefined;
656
+ cvScore?: number | undefined;
657
+ mlScore?: number | undefined;
658
+ rlScore?: number | undefined;
659
+ essayScore?: number | undefined;
660
+ gmatScore?: number | undefined;
661
+ greScore?: number | undefined;
662
+ interviewScore?: number | undefined;
663
+ workExperienceScore?: number | undefined;
664
+ testScore?: number | undefined;
665
+ firstRoundConsidered?: string[] | undefined;
666
+ secondRoundConsidered?: string[] | undefined;
667
+ directRejectionScore?: number | undefined;
668
+ directAdmissionScore?: number | undefined;
669
+ directRejectionSecondScore?: number | undefined;
670
+ directAdmissionSecondScore?: number | undefined;
671
+ }[] | undefined;
672
+ }>;
673
+ export declare const GetProgramRequirementResponseSchema: z.ZodObject<{
674
+ success: z.ZodBoolean;
675
+ data: z.ZodOptional<z.ZodObject<{
676
+ requirement: z.ZodObject<{
677
+ programId: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
678
+ program_categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
679
+ program_category: z.ZodOptional<z.ZodString>;
680
+ category_description: z.ZodOptional<z.ZodString>;
681
+ requiredECTS: z.ZodOptional<z.ZodNumber>;
682
+ keywordSets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
683
+ maxScore: z.ZodOptional<z.ZodNumber>;
684
+ }, "strip", z.ZodTypeAny, {
685
+ program_category?: string | undefined;
686
+ category_description?: string | undefined;
687
+ requiredECTS?: number | undefined;
688
+ keywordSets?: string[] | undefined;
689
+ maxScore?: number | undefined;
690
+ }, {
691
+ program_category?: string | undefined;
692
+ category_description?: string | undefined;
693
+ requiredECTS?: number | undefined;
694
+ keywordSets?: string[] | undefined;
695
+ maxScore?: number | undefined;
696
+ }>, "many">>;
697
+ attributes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
698
+ fpso: z.ZodOptional<z.ZodString>;
699
+ admissionDescription: z.ZodOptional<z.ZodString>;
700
+ gpaScoreBoundaryGPA: z.ZodOptional<z.ZodNumber>;
701
+ gpaScore: z.ZodOptional<z.ZodNumber>;
702
+ gpaMinScore: z.ZodOptional<z.ZodNumber>;
703
+ coursesScore: z.ZodOptional<z.ZodNumber>;
704
+ cvScore: z.ZodOptional<z.ZodNumber>;
705
+ mlScore: z.ZodOptional<z.ZodNumber>;
706
+ rlScore: z.ZodOptional<z.ZodNumber>;
707
+ essayScore: z.ZodOptional<z.ZodNumber>;
708
+ gmatScore: z.ZodOptional<z.ZodNumber>;
709
+ greScore: z.ZodOptional<z.ZodNumber>;
710
+ interviewScore: z.ZodOptional<z.ZodNumber>;
711
+ workExperienceScore: z.ZodOptional<z.ZodNumber>;
712
+ testScore: z.ZodOptional<z.ZodNumber>;
713
+ firstRoundConsidered: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
714
+ secondRoundConsidered: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
715
+ directRejectionScore: z.ZodOptional<z.ZodNumber>;
716
+ directAdmissionScore: z.ZodOptional<z.ZodNumber>;
717
+ directRejectionSecondScore: z.ZodOptional<z.ZodNumber>;
718
+ directAdmissionSecondScore: z.ZodOptional<z.ZodNumber>;
719
+ } & {
720
+ _id: z.ZodString;
721
+ }, "strip", z.ZodTypeAny, {
722
+ _id: string;
723
+ fpso?: string | undefined;
724
+ programId?: string[] | undefined;
725
+ attributes?: string[] | undefined;
726
+ program_categories?: {
727
+ program_category?: string | undefined;
728
+ category_description?: string | undefined;
729
+ requiredECTS?: number | undefined;
730
+ keywordSets?: string[] | undefined;
731
+ maxScore?: number | undefined;
732
+ }[] | undefined;
733
+ admissionDescription?: string | undefined;
734
+ gpaScoreBoundaryGPA?: number | undefined;
735
+ gpaScore?: number | undefined;
736
+ gpaMinScore?: number | undefined;
737
+ coursesScore?: number | undefined;
738
+ cvScore?: number | undefined;
739
+ mlScore?: number | undefined;
740
+ rlScore?: number | undefined;
741
+ essayScore?: number | undefined;
742
+ gmatScore?: number | undefined;
743
+ greScore?: number | undefined;
744
+ interviewScore?: number | undefined;
745
+ workExperienceScore?: number | undefined;
746
+ testScore?: number | undefined;
747
+ firstRoundConsidered?: string[] | undefined;
748
+ secondRoundConsidered?: string[] | undefined;
749
+ directRejectionScore?: number | undefined;
750
+ directAdmissionScore?: number | undefined;
751
+ directRejectionSecondScore?: number | undefined;
752
+ directAdmissionSecondScore?: number | undefined;
753
+ }, {
754
+ _id: string;
755
+ fpso?: string | undefined;
756
+ programId?: string[] | undefined;
757
+ attributes?: string[] | undefined;
758
+ program_categories?: {
759
+ program_category?: string | undefined;
760
+ category_description?: string | undefined;
761
+ requiredECTS?: number | undefined;
762
+ keywordSets?: string[] | undefined;
763
+ maxScore?: number | undefined;
764
+ }[] | undefined;
765
+ admissionDescription?: string | undefined;
766
+ gpaScoreBoundaryGPA?: number | undefined;
767
+ gpaScore?: number | undefined;
768
+ gpaMinScore?: number | undefined;
769
+ coursesScore?: number | undefined;
770
+ cvScore?: number | undefined;
771
+ mlScore?: number | undefined;
772
+ rlScore?: number | undefined;
773
+ essayScore?: number | undefined;
774
+ gmatScore?: number | undefined;
775
+ greScore?: number | undefined;
776
+ interviewScore?: number | undefined;
777
+ workExperienceScore?: number | undefined;
778
+ testScore?: number | undefined;
779
+ firstRoundConsidered?: string[] | undefined;
780
+ secondRoundConsidered?: string[] | undefined;
781
+ directRejectionScore?: number | undefined;
782
+ directAdmissionScore?: number | undefined;
783
+ directRejectionSecondScore?: number | undefined;
784
+ directAdmissionSecondScore?: number | undefined;
785
+ }>;
786
+ distinctPrograms: z.ZodOptional<z.ZodArray<z.ZodObject<{
787
+ isArchiv: z.ZodOptional<z.ZodBoolean>;
788
+ isLocked: z.ZodOptional<z.ZodBoolean>;
789
+ school: z.ZodString;
790
+ program_name: z.ZodString;
791
+ programSubjects: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
792
+ degree: z.ZodOptional<z.ZodString>;
793
+ semester: z.ZodOptional<z.ZodString>;
794
+ lang: z.ZodOptional<z.ZodString>;
795
+ gpa_requirement: z.ZodOptional<z.ZodString>;
796
+ allowOnlyGraduatedApplicant: z.ZodOptional<z.ZodBoolean>;
797
+ application_start: z.ZodOptional<z.ZodString>;
798
+ application_deadline: z.ZodOptional<z.ZodString>;
799
+ uni_assist: z.ZodOptional<z.ZodString>;
800
+ englishTestHandLater: z.ZodOptional<z.ZodBoolean>;
801
+ toefl: z.ZodOptional<z.ZodString>;
802
+ toefl_reading: z.ZodOptional<z.ZodNumber>;
803
+ toefl_listening: z.ZodOptional<z.ZodNumber>;
804
+ toefl_writing: z.ZodOptional<z.ZodNumber>;
805
+ toefl_speaking: z.ZodOptional<z.ZodNumber>;
806
+ ielts: z.ZodOptional<z.ZodString>;
807
+ ielts_reading: z.ZodOptional<z.ZodNumber>;
808
+ ielts_listening: z.ZodOptional<z.ZodNumber>;
809
+ ielts_writing: z.ZodOptional<z.ZodNumber>;
810
+ ielts_speaking: z.ZodOptional<z.ZodNumber>;
811
+ germanTestHandLater: z.ZodOptional<z.ZodBoolean>;
812
+ goetheZertifikat: z.ZodOptional<z.ZodString>;
813
+ testdaf: z.ZodOptional<z.ZodString>;
814
+ dsh: z.ZodOptional<z.ZodString>;
815
+ gre: z.ZodOptional<z.ZodString>;
816
+ gre_verbal: z.ZodOptional<z.ZodNumber>;
817
+ gre_quantitative: z.ZodOptional<z.ZodNumber>;
818
+ gre_analytical_writing: z.ZodOptional<z.ZodNumber>;
819
+ gmat: z.ZodOptional<z.ZodString>;
820
+ ml_required: z.ZodOptional<z.ZodString>;
821
+ ml_requirements: z.ZodOptional<z.ZodString>;
822
+ sop_required: z.ZodOptional<z.ZodString>;
823
+ sop_requirements: z.ZodOptional<z.ZodString>;
824
+ phs_required: z.ZodOptional<z.ZodString>;
825
+ phs_requirements: z.ZodOptional<z.ZodString>;
826
+ rl_required: z.ZodOptional<z.ZodString>;
827
+ rl_requirements: z.ZodOptional<z.ZodString>;
828
+ is_rl_specific: z.ZodOptional<z.ZodBoolean>;
829
+ essay_required: z.ZodOptional<z.ZodString>;
830
+ essay_requirements: z.ZodOptional<z.ZodString>;
831
+ essay_difficulty: z.ZodOptional<z.ZodString>;
832
+ portfolio_required: z.ZodOptional<z.ZodString>;
833
+ portfolio_requirements: z.ZodOptional<z.ZodString>;
834
+ supplementary_form_required: z.ZodOptional<z.ZodString>;
835
+ supplementary_form_requirements: z.ZodOptional<z.ZodString>;
836
+ curriculum_analysis_required: z.ZodOptional<z.ZodString>;
837
+ curriculum_analysis_requirements: z.ZodOptional<z.ZodString>;
838
+ scholarship_form_required: z.ZodOptional<z.ZodString>;
839
+ scholarship_form_requirements: z.ZodOptional<z.ZodString>;
840
+ module_description_required: z.ZodOptional<z.ZodString>;
841
+ ects_requirements: z.ZodOptional<z.ZodString>;
842
+ special_notes: z.ZodOptional<z.ZodString>;
843
+ comments: z.ZodOptional<z.ZodString>;
844
+ application_portal_a: z.ZodOptional<z.ZodString>;
845
+ application_portal_b: z.ZodOptional<z.ZodString>;
846
+ application_portal_a_instructions: z.ZodOptional<z.ZodString>;
847
+ application_portal_b_instructions: z.ZodOptional<z.ZodString>;
848
+ uni_assist_link: z.ZodOptional<z.ZodString>;
849
+ website: z.ZodOptional<z.ZodString>;
850
+ fpso: z.ZodOptional<z.ZodString>;
851
+ updatedAt: z.ZodOptional<z.ZodDate>;
852
+ whoupdated: z.ZodOptional<z.ZodString>;
853
+ tuition_fees: z.ZodOptional<z.ZodString>;
854
+ contact: z.ZodOptional<z.ZodString>;
855
+ city: z.ZodOptional<z.ZodString>;
856
+ country: z.ZodOptional<z.ZodString>;
857
+ isPrivateSchool: z.ZodOptional<z.ZodBoolean>;
858
+ isPartnerSchool: z.ZodOptional<z.ZodBoolean>;
859
+ schoolType: z.ZodOptional<z.ZodString>;
860
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
861
+ url: z.ZodOptional<z.ZodString>;
862
+ isNC: z.ZodOptional<z.ZodBoolean>;
863
+ zipCode: z.ZodOptional<z.ZodString>;
864
+ } & {
865
+ _id: z.ZodString;
866
+ vcId: z.ZodOptional<z.ZodString>;
867
+ }, "strip", z.ZodTypeAny, {
868
+ school: string;
869
+ program_name: string;
870
+ _id: string;
871
+ isArchiv?: boolean | undefined;
872
+ isLocked?: boolean | undefined;
873
+ programSubjects?: string[] | undefined;
874
+ degree?: string | undefined;
875
+ semester?: string | undefined;
876
+ lang?: string | undefined;
877
+ gpa_requirement?: string | undefined;
878
+ allowOnlyGraduatedApplicant?: boolean | undefined;
879
+ application_start?: string | undefined;
880
+ application_deadline?: string | undefined;
881
+ uni_assist?: string | undefined;
882
+ englishTestHandLater?: boolean | undefined;
883
+ toefl?: string | undefined;
884
+ toefl_reading?: number | undefined;
885
+ toefl_listening?: number | undefined;
886
+ toefl_writing?: number | undefined;
887
+ toefl_speaking?: number | undefined;
888
+ ielts?: string | undefined;
889
+ ielts_reading?: number | undefined;
890
+ ielts_listening?: number | undefined;
891
+ ielts_writing?: number | undefined;
892
+ ielts_speaking?: number | undefined;
893
+ germanTestHandLater?: boolean | undefined;
894
+ goetheZertifikat?: string | undefined;
895
+ testdaf?: string | undefined;
896
+ dsh?: string | undefined;
897
+ gre?: string | undefined;
898
+ gre_verbal?: number | undefined;
899
+ gre_quantitative?: number | undefined;
900
+ gre_analytical_writing?: number | undefined;
901
+ gmat?: string | undefined;
902
+ ml_required?: string | undefined;
903
+ ml_requirements?: string | undefined;
904
+ sop_required?: string | undefined;
905
+ sop_requirements?: string | undefined;
906
+ phs_required?: string | undefined;
907
+ phs_requirements?: string | undefined;
908
+ rl_required?: string | undefined;
909
+ rl_requirements?: string | undefined;
910
+ is_rl_specific?: boolean | undefined;
911
+ essay_required?: string | undefined;
912
+ essay_requirements?: string | undefined;
913
+ essay_difficulty?: string | undefined;
914
+ portfolio_required?: string | undefined;
915
+ portfolio_requirements?: string | undefined;
916
+ supplementary_form_required?: string | undefined;
917
+ supplementary_form_requirements?: string | undefined;
918
+ curriculum_analysis_required?: string | undefined;
919
+ curriculum_analysis_requirements?: string | undefined;
920
+ scholarship_form_required?: string | undefined;
921
+ scholarship_form_requirements?: string | undefined;
922
+ module_description_required?: string | undefined;
923
+ ects_requirements?: string | undefined;
924
+ special_notes?: string | undefined;
925
+ comments?: string | undefined;
926
+ application_portal_a?: string | undefined;
927
+ application_portal_b?: string | undefined;
928
+ application_portal_a_instructions?: string | undefined;
929
+ application_portal_b_instructions?: string | undefined;
930
+ uni_assist_link?: string | undefined;
931
+ website?: string | undefined;
932
+ fpso?: string | undefined;
933
+ updatedAt?: Date | undefined;
934
+ whoupdated?: string | undefined;
935
+ tuition_fees?: string | undefined;
936
+ contact?: string | undefined;
937
+ city?: string | undefined;
938
+ country?: string | undefined;
939
+ isPrivateSchool?: boolean | undefined;
940
+ isPartnerSchool?: boolean | undefined;
941
+ schoolType?: string | undefined;
942
+ tags?: string[] | undefined;
943
+ url?: string | undefined;
944
+ isNC?: boolean | undefined;
945
+ zipCode?: string | undefined;
946
+ vcId?: string | undefined;
947
+ }, {
948
+ school: string;
949
+ program_name: string;
950
+ _id: string;
951
+ isArchiv?: boolean | undefined;
952
+ isLocked?: boolean | undefined;
953
+ programSubjects?: string[] | undefined;
954
+ degree?: string | undefined;
955
+ semester?: string | undefined;
956
+ lang?: string | undefined;
957
+ gpa_requirement?: string | undefined;
958
+ allowOnlyGraduatedApplicant?: boolean | undefined;
959
+ application_start?: string | undefined;
960
+ application_deadline?: string | undefined;
961
+ uni_assist?: string | undefined;
962
+ englishTestHandLater?: boolean | undefined;
963
+ toefl?: string | undefined;
964
+ toefl_reading?: number | undefined;
965
+ toefl_listening?: number | undefined;
966
+ toefl_writing?: number | undefined;
967
+ toefl_speaking?: number | undefined;
968
+ ielts?: string | undefined;
969
+ ielts_reading?: number | undefined;
970
+ ielts_listening?: number | undefined;
971
+ ielts_writing?: number | undefined;
972
+ ielts_speaking?: number | undefined;
973
+ germanTestHandLater?: boolean | undefined;
974
+ goetheZertifikat?: string | undefined;
975
+ testdaf?: string | undefined;
976
+ dsh?: string | undefined;
977
+ gre?: string | undefined;
978
+ gre_verbal?: number | undefined;
979
+ gre_quantitative?: number | undefined;
980
+ gre_analytical_writing?: number | undefined;
981
+ gmat?: string | undefined;
982
+ ml_required?: string | undefined;
983
+ ml_requirements?: string | undefined;
984
+ sop_required?: string | undefined;
985
+ sop_requirements?: string | undefined;
986
+ phs_required?: string | undefined;
987
+ phs_requirements?: string | undefined;
988
+ rl_required?: string | undefined;
989
+ rl_requirements?: string | undefined;
990
+ is_rl_specific?: boolean | undefined;
991
+ essay_required?: string | undefined;
992
+ essay_requirements?: string | undefined;
993
+ essay_difficulty?: string | undefined;
994
+ portfolio_required?: string | undefined;
995
+ portfolio_requirements?: string | undefined;
996
+ supplementary_form_required?: string | undefined;
997
+ supplementary_form_requirements?: string | undefined;
998
+ curriculum_analysis_required?: string | undefined;
999
+ curriculum_analysis_requirements?: string | undefined;
1000
+ scholarship_form_required?: string | undefined;
1001
+ scholarship_form_requirements?: string | undefined;
1002
+ module_description_required?: string | undefined;
1003
+ ects_requirements?: string | undefined;
1004
+ special_notes?: string | undefined;
1005
+ comments?: string | undefined;
1006
+ application_portal_a?: string | undefined;
1007
+ application_portal_b?: string | undefined;
1008
+ application_portal_a_instructions?: string | undefined;
1009
+ application_portal_b_instructions?: string | undefined;
1010
+ uni_assist_link?: string | undefined;
1011
+ website?: string | undefined;
1012
+ fpso?: string | undefined;
1013
+ updatedAt?: Date | undefined;
1014
+ whoupdated?: string | undefined;
1015
+ tuition_fees?: string | undefined;
1016
+ contact?: string | undefined;
1017
+ city?: string | undefined;
1018
+ country?: string | undefined;
1019
+ isPrivateSchool?: boolean | undefined;
1020
+ isPartnerSchool?: boolean | undefined;
1021
+ schoolType?: string | undefined;
1022
+ tags?: string[] | undefined;
1023
+ url?: string | undefined;
1024
+ isNC?: boolean | undefined;
1025
+ zipCode?: string | undefined;
1026
+ vcId?: string | undefined;
1027
+ }>, "many">>;
1028
+ keywordsets: z.ZodOptional<z.ZodArray<z.ZodObject<{
1029
+ categoryName: z.ZodOptional<z.ZodString>;
1030
+ description: z.ZodOptional<z.ZodString>;
1031
+ keywords: z.ZodOptional<z.ZodObject<{
1032
+ zh: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1033
+ en: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1034
+ }, "strip", z.ZodTypeAny, {
1035
+ zh?: string[] | undefined;
1036
+ en?: string[] | undefined;
1037
+ }, {
1038
+ zh?: string[] | undefined;
1039
+ en?: string[] | undefined;
1040
+ }>>;
1041
+ antiKeywords: z.ZodOptional<z.ZodObject<{
1042
+ zh: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1043
+ en: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1044
+ }, "strip", z.ZodTypeAny, {
1045
+ zh?: string[] | undefined;
1046
+ en?: string[] | undefined;
1047
+ }, {
1048
+ zh?: string[] | undefined;
1049
+ en?: string[] | undefined;
1050
+ }>>;
1051
+ } & {
1052
+ _id: z.ZodString;
1053
+ }, "strip", z.ZodTypeAny, {
1054
+ _id: string;
1055
+ description?: string | undefined;
1056
+ categoryName?: string | undefined;
1057
+ keywords?: {
1058
+ zh?: string[] | undefined;
1059
+ en?: string[] | undefined;
1060
+ } | undefined;
1061
+ antiKeywords?: {
1062
+ zh?: string[] | undefined;
1063
+ en?: string[] | undefined;
1064
+ } | undefined;
1065
+ }, {
1066
+ _id: string;
1067
+ description?: string | undefined;
1068
+ categoryName?: string | undefined;
1069
+ keywords?: {
1070
+ zh?: string[] | undefined;
1071
+ en?: string[] | undefined;
1072
+ } | undefined;
1073
+ antiKeywords?: {
1074
+ zh?: string[] | undefined;
1075
+ en?: string[] | undefined;
1076
+ } | undefined;
1077
+ }>, "many">>;
1078
+ }, "strip", z.ZodTypeAny, {
1079
+ requirement: {
1080
+ _id: string;
1081
+ fpso?: string | undefined;
1082
+ programId?: string[] | undefined;
1083
+ attributes?: string[] | undefined;
1084
+ program_categories?: {
1085
+ program_category?: string | undefined;
1086
+ category_description?: string | undefined;
1087
+ requiredECTS?: number | undefined;
1088
+ keywordSets?: string[] | undefined;
1089
+ maxScore?: number | undefined;
1090
+ }[] | undefined;
1091
+ admissionDescription?: string | undefined;
1092
+ gpaScoreBoundaryGPA?: number | undefined;
1093
+ gpaScore?: number | undefined;
1094
+ gpaMinScore?: number | undefined;
1095
+ coursesScore?: number | undefined;
1096
+ cvScore?: number | undefined;
1097
+ mlScore?: number | undefined;
1098
+ rlScore?: number | undefined;
1099
+ essayScore?: number | undefined;
1100
+ gmatScore?: number | undefined;
1101
+ greScore?: number | undefined;
1102
+ interviewScore?: number | undefined;
1103
+ workExperienceScore?: number | undefined;
1104
+ testScore?: number | undefined;
1105
+ firstRoundConsidered?: string[] | undefined;
1106
+ secondRoundConsidered?: string[] | undefined;
1107
+ directRejectionScore?: number | undefined;
1108
+ directAdmissionScore?: number | undefined;
1109
+ directRejectionSecondScore?: number | undefined;
1110
+ directAdmissionSecondScore?: number | undefined;
1111
+ };
1112
+ distinctPrograms?: {
1113
+ school: string;
1114
+ program_name: string;
1115
+ _id: string;
1116
+ isArchiv?: boolean | undefined;
1117
+ isLocked?: boolean | undefined;
1118
+ programSubjects?: string[] | undefined;
1119
+ degree?: string | undefined;
1120
+ semester?: string | undefined;
1121
+ lang?: string | undefined;
1122
+ gpa_requirement?: string | undefined;
1123
+ allowOnlyGraduatedApplicant?: boolean | undefined;
1124
+ application_start?: string | undefined;
1125
+ application_deadline?: string | undefined;
1126
+ uni_assist?: string | undefined;
1127
+ englishTestHandLater?: boolean | undefined;
1128
+ toefl?: string | undefined;
1129
+ toefl_reading?: number | undefined;
1130
+ toefl_listening?: number | undefined;
1131
+ toefl_writing?: number | undefined;
1132
+ toefl_speaking?: number | undefined;
1133
+ ielts?: string | undefined;
1134
+ ielts_reading?: number | undefined;
1135
+ ielts_listening?: number | undefined;
1136
+ ielts_writing?: number | undefined;
1137
+ ielts_speaking?: number | undefined;
1138
+ germanTestHandLater?: boolean | undefined;
1139
+ goetheZertifikat?: string | undefined;
1140
+ testdaf?: string | undefined;
1141
+ dsh?: string | undefined;
1142
+ gre?: string | undefined;
1143
+ gre_verbal?: number | undefined;
1144
+ gre_quantitative?: number | undefined;
1145
+ gre_analytical_writing?: number | undefined;
1146
+ gmat?: string | undefined;
1147
+ ml_required?: string | undefined;
1148
+ ml_requirements?: string | undefined;
1149
+ sop_required?: string | undefined;
1150
+ sop_requirements?: string | undefined;
1151
+ phs_required?: string | undefined;
1152
+ phs_requirements?: string | undefined;
1153
+ rl_required?: string | undefined;
1154
+ rl_requirements?: string | undefined;
1155
+ is_rl_specific?: boolean | undefined;
1156
+ essay_required?: string | undefined;
1157
+ essay_requirements?: string | undefined;
1158
+ essay_difficulty?: string | undefined;
1159
+ portfolio_required?: string | undefined;
1160
+ portfolio_requirements?: string | undefined;
1161
+ supplementary_form_required?: string | undefined;
1162
+ supplementary_form_requirements?: string | undefined;
1163
+ curriculum_analysis_required?: string | undefined;
1164
+ curriculum_analysis_requirements?: string | undefined;
1165
+ scholarship_form_required?: string | undefined;
1166
+ scholarship_form_requirements?: string | undefined;
1167
+ module_description_required?: string | undefined;
1168
+ ects_requirements?: string | undefined;
1169
+ special_notes?: string | undefined;
1170
+ comments?: string | undefined;
1171
+ application_portal_a?: string | undefined;
1172
+ application_portal_b?: string | undefined;
1173
+ application_portal_a_instructions?: string | undefined;
1174
+ application_portal_b_instructions?: string | undefined;
1175
+ uni_assist_link?: string | undefined;
1176
+ website?: string | undefined;
1177
+ fpso?: string | undefined;
1178
+ updatedAt?: Date | undefined;
1179
+ whoupdated?: string | undefined;
1180
+ tuition_fees?: string | undefined;
1181
+ contact?: string | undefined;
1182
+ city?: string | undefined;
1183
+ country?: string | undefined;
1184
+ isPrivateSchool?: boolean | undefined;
1185
+ isPartnerSchool?: boolean | undefined;
1186
+ schoolType?: string | undefined;
1187
+ tags?: string[] | undefined;
1188
+ url?: string | undefined;
1189
+ isNC?: boolean | undefined;
1190
+ zipCode?: string | undefined;
1191
+ vcId?: string | undefined;
1192
+ }[] | undefined;
1193
+ keywordsets?: {
1194
+ _id: string;
1195
+ description?: string | undefined;
1196
+ categoryName?: string | undefined;
1197
+ keywords?: {
1198
+ zh?: string[] | undefined;
1199
+ en?: string[] | undefined;
1200
+ } | undefined;
1201
+ antiKeywords?: {
1202
+ zh?: string[] | undefined;
1203
+ en?: string[] | undefined;
1204
+ } | undefined;
1205
+ }[] | undefined;
1206
+ }, {
1207
+ requirement: {
1208
+ _id: string;
1209
+ fpso?: string | undefined;
1210
+ programId?: string[] | undefined;
1211
+ attributes?: string[] | undefined;
1212
+ program_categories?: {
1213
+ program_category?: string | undefined;
1214
+ category_description?: string | undefined;
1215
+ requiredECTS?: number | undefined;
1216
+ keywordSets?: string[] | undefined;
1217
+ maxScore?: number | undefined;
1218
+ }[] | undefined;
1219
+ admissionDescription?: string | undefined;
1220
+ gpaScoreBoundaryGPA?: number | undefined;
1221
+ gpaScore?: number | undefined;
1222
+ gpaMinScore?: number | undefined;
1223
+ coursesScore?: number | undefined;
1224
+ cvScore?: number | undefined;
1225
+ mlScore?: number | undefined;
1226
+ rlScore?: number | undefined;
1227
+ essayScore?: number | undefined;
1228
+ gmatScore?: number | undefined;
1229
+ greScore?: number | undefined;
1230
+ interviewScore?: number | undefined;
1231
+ workExperienceScore?: number | undefined;
1232
+ testScore?: number | undefined;
1233
+ firstRoundConsidered?: string[] | undefined;
1234
+ secondRoundConsidered?: string[] | undefined;
1235
+ directRejectionScore?: number | undefined;
1236
+ directAdmissionScore?: number | undefined;
1237
+ directRejectionSecondScore?: number | undefined;
1238
+ directAdmissionSecondScore?: number | undefined;
1239
+ };
1240
+ distinctPrograms?: {
1241
+ school: string;
1242
+ program_name: string;
1243
+ _id: string;
1244
+ isArchiv?: boolean | undefined;
1245
+ isLocked?: boolean | undefined;
1246
+ programSubjects?: string[] | undefined;
1247
+ degree?: string | undefined;
1248
+ semester?: string | undefined;
1249
+ lang?: string | undefined;
1250
+ gpa_requirement?: string | undefined;
1251
+ allowOnlyGraduatedApplicant?: boolean | undefined;
1252
+ application_start?: string | undefined;
1253
+ application_deadline?: string | undefined;
1254
+ uni_assist?: string | undefined;
1255
+ englishTestHandLater?: boolean | undefined;
1256
+ toefl?: string | undefined;
1257
+ toefl_reading?: number | undefined;
1258
+ toefl_listening?: number | undefined;
1259
+ toefl_writing?: number | undefined;
1260
+ toefl_speaking?: number | undefined;
1261
+ ielts?: string | undefined;
1262
+ ielts_reading?: number | undefined;
1263
+ ielts_listening?: number | undefined;
1264
+ ielts_writing?: number | undefined;
1265
+ ielts_speaking?: number | undefined;
1266
+ germanTestHandLater?: boolean | undefined;
1267
+ goetheZertifikat?: string | undefined;
1268
+ testdaf?: string | undefined;
1269
+ dsh?: string | undefined;
1270
+ gre?: string | undefined;
1271
+ gre_verbal?: number | undefined;
1272
+ gre_quantitative?: number | undefined;
1273
+ gre_analytical_writing?: number | undefined;
1274
+ gmat?: string | undefined;
1275
+ ml_required?: string | undefined;
1276
+ ml_requirements?: string | undefined;
1277
+ sop_required?: string | undefined;
1278
+ sop_requirements?: string | undefined;
1279
+ phs_required?: string | undefined;
1280
+ phs_requirements?: string | undefined;
1281
+ rl_required?: string | undefined;
1282
+ rl_requirements?: string | undefined;
1283
+ is_rl_specific?: boolean | undefined;
1284
+ essay_required?: string | undefined;
1285
+ essay_requirements?: string | undefined;
1286
+ essay_difficulty?: string | undefined;
1287
+ portfolio_required?: string | undefined;
1288
+ portfolio_requirements?: string | undefined;
1289
+ supplementary_form_required?: string | undefined;
1290
+ supplementary_form_requirements?: string | undefined;
1291
+ curriculum_analysis_required?: string | undefined;
1292
+ curriculum_analysis_requirements?: string | undefined;
1293
+ scholarship_form_required?: string | undefined;
1294
+ scholarship_form_requirements?: string | undefined;
1295
+ module_description_required?: string | undefined;
1296
+ ects_requirements?: string | undefined;
1297
+ special_notes?: string | undefined;
1298
+ comments?: string | undefined;
1299
+ application_portal_a?: string | undefined;
1300
+ application_portal_b?: string | undefined;
1301
+ application_portal_a_instructions?: string | undefined;
1302
+ application_portal_b_instructions?: string | undefined;
1303
+ uni_assist_link?: string | undefined;
1304
+ website?: string | undefined;
1305
+ fpso?: string | undefined;
1306
+ updatedAt?: Date | undefined;
1307
+ whoupdated?: string | undefined;
1308
+ tuition_fees?: string | undefined;
1309
+ contact?: string | undefined;
1310
+ city?: string | undefined;
1311
+ country?: string | undefined;
1312
+ isPrivateSchool?: boolean | undefined;
1313
+ isPartnerSchool?: boolean | undefined;
1314
+ schoolType?: string | undefined;
1315
+ tags?: string[] | undefined;
1316
+ url?: string | undefined;
1317
+ isNC?: boolean | undefined;
1318
+ zipCode?: string | undefined;
1319
+ vcId?: string | undefined;
1320
+ }[] | undefined;
1321
+ keywordsets?: {
1322
+ _id: string;
1323
+ description?: string | undefined;
1324
+ categoryName?: string | undefined;
1325
+ keywords?: {
1326
+ zh?: string[] | undefined;
1327
+ en?: string[] | undefined;
1328
+ } | undefined;
1329
+ antiKeywords?: {
1330
+ zh?: string[] | undefined;
1331
+ en?: string[] | undefined;
1332
+ } | undefined;
1333
+ }[] | undefined;
1334
+ }>>;
1335
+ }, "strip", z.ZodTypeAny, {
1336
+ success: boolean;
1337
+ data?: {
1338
+ requirement: {
1339
+ _id: string;
1340
+ fpso?: string | undefined;
1341
+ programId?: string[] | undefined;
1342
+ attributes?: string[] | undefined;
1343
+ program_categories?: {
1344
+ program_category?: string | undefined;
1345
+ category_description?: string | undefined;
1346
+ requiredECTS?: number | undefined;
1347
+ keywordSets?: string[] | undefined;
1348
+ maxScore?: number | undefined;
1349
+ }[] | undefined;
1350
+ admissionDescription?: string | undefined;
1351
+ gpaScoreBoundaryGPA?: number | undefined;
1352
+ gpaScore?: number | undefined;
1353
+ gpaMinScore?: number | undefined;
1354
+ coursesScore?: number | undefined;
1355
+ cvScore?: number | undefined;
1356
+ mlScore?: number | undefined;
1357
+ rlScore?: number | undefined;
1358
+ essayScore?: number | undefined;
1359
+ gmatScore?: number | undefined;
1360
+ greScore?: number | undefined;
1361
+ interviewScore?: number | undefined;
1362
+ workExperienceScore?: number | undefined;
1363
+ testScore?: number | undefined;
1364
+ firstRoundConsidered?: string[] | undefined;
1365
+ secondRoundConsidered?: string[] | undefined;
1366
+ directRejectionScore?: number | undefined;
1367
+ directAdmissionScore?: number | undefined;
1368
+ directRejectionSecondScore?: number | undefined;
1369
+ directAdmissionSecondScore?: number | undefined;
1370
+ };
1371
+ distinctPrograms?: {
1372
+ school: string;
1373
+ program_name: string;
1374
+ _id: string;
1375
+ isArchiv?: boolean | undefined;
1376
+ isLocked?: boolean | undefined;
1377
+ programSubjects?: string[] | undefined;
1378
+ degree?: string | undefined;
1379
+ semester?: string | undefined;
1380
+ lang?: string | undefined;
1381
+ gpa_requirement?: string | undefined;
1382
+ allowOnlyGraduatedApplicant?: boolean | undefined;
1383
+ application_start?: string | undefined;
1384
+ application_deadline?: string | undefined;
1385
+ uni_assist?: string | undefined;
1386
+ englishTestHandLater?: boolean | undefined;
1387
+ toefl?: string | undefined;
1388
+ toefl_reading?: number | undefined;
1389
+ toefl_listening?: number | undefined;
1390
+ toefl_writing?: number | undefined;
1391
+ toefl_speaking?: number | undefined;
1392
+ ielts?: string | undefined;
1393
+ ielts_reading?: number | undefined;
1394
+ ielts_listening?: number | undefined;
1395
+ ielts_writing?: number | undefined;
1396
+ ielts_speaking?: number | undefined;
1397
+ germanTestHandLater?: boolean | undefined;
1398
+ goetheZertifikat?: string | undefined;
1399
+ testdaf?: string | undefined;
1400
+ dsh?: string | undefined;
1401
+ gre?: string | undefined;
1402
+ gre_verbal?: number | undefined;
1403
+ gre_quantitative?: number | undefined;
1404
+ gre_analytical_writing?: number | undefined;
1405
+ gmat?: string | undefined;
1406
+ ml_required?: string | undefined;
1407
+ ml_requirements?: string | undefined;
1408
+ sop_required?: string | undefined;
1409
+ sop_requirements?: string | undefined;
1410
+ phs_required?: string | undefined;
1411
+ phs_requirements?: string | undefined;
1412
+ rl_required?: string | undefined;
1413
+ rl_requirements?: string | undefined;
1414
+ is_rl_specific?: boolean | undefined;
1415
+ essay_required?: string | undefined;
1416
+ essay_requirements?: string | undefined;
1417
+ essay_difficulty?: string | undefined;
1418
+ portfolio_required?: string | undefined;
1419
+ portfolio_requirements?: string | undefined;
1420
+ supplementary_form_required?: string | undefined;
1421
+ supplementary_form_requirements?: string | undefined;
1422
+ curriculum_analysis_required?: string | undefined;
1423
+ curriculum_analysis_requirements?: string | undefined;
1424
+ scholarship_form_required?: string | undefined;
1425
+ scholarship_form_requirements?: string | undefined;
1426
+ module_description_required?: string | undefined;
1427
+ ects_requirements?: string | undefined;
1428
+ special_notes?: string | undefined;
1429
+ comments?: string | undefined;
1430
+ application_portal_a?: string | undefined;
1431
+ application_portal_b?: string | undefined;
1432
+ application_portal_a_instructions?: string | undefined;
1433
+ application_portal_b_instructions?: string | undefined;
1434
+ uni_assist_link?: string | undefined;
1435
+ website?: string | undefined;
1436
+ fpso?: string | undefined;
1437
+ updatedAt?: Date | undefined;
1438
+ whoupdated?: string | undefined;
1439
+ tuition_fees?: string | undefined;
1440
+ contact?: string | undefined;
1441
+ city?: string | undefined;
1442
+ country?: string | undefined;
1443
+ isPrivateSchool?: boolean | undefined;
1444
+ isPartnerSchool?: boolean | undefined;
1445
+ schoolType?: string | undefined;
1446
+ tags?: string[] | undefined;
1447
+ url?: string | undefined;
1448
+ isNC?: boolean | undefined;
1449
+ zipCode?: string | undefined;
1450
+ vcId?: string | undefined;
1451
+ }[] | undefined;
1452
+ keywordsets?: {
1453
+ _id: string;
1454
+ description?: string | undefined;
1455
+ categoryName?: string | undefined;
1456
+ keywords?: {
1457
+ zh?: string[] | undefined;
1458
+ en?: string[] | undefined;
1459
+ } | undefined;
1460
+ antiKeywords?: {
1461
+ zh?: string[] | undefined;
1462
+ en?: string[] | undefined;
1463
+ } | undefined;
1464
+ }[] | undefined;
1465
+ } | undefined;
1466
+ }, {
1467
+ success: boolean;
1468
+ data?: {
1469
+ requirement: {
1470
+ _id: string;
1471
+ fpso?: string | undefined;
1472
+ programId?: string[] | undefined;
1473
+ attributes?: string[] | undefined;
1474
+ program_categories?: {
1475
+ program_category?: string | undefined;
1476
+ category_description?: string | undefined;
1477
+ requiredECTS?: number | undefined;
1478
+ keywordSets?: string[] | undefined;
1479
+ maxScore?: number | undefined;
1480
+ }[] | undefined;
1481
+ admissionDescription?: string | undefined;
1482
+ gpaScoreBoundaryGPA?: number | undefined;
1483
+ gpaScore?: number | undefined;
1484
+ gpaMinScore?: number | undefined;
1485
+ coursesScore?: number | undefined;
1486
+ cvScore?: number | undefined;
1487
+ mlScore?: number | undefined;
1488
+ rlScore?: number | undefined;
1489
+ essayScore?: number | undefined;
1490
+ gmatScore?: number | undefined;
1491
+ greScore?: number | undefined;
1492
+ interviewScore?: number | undefined;
1493
+ workExperienceScore?: number | undefined;
1494
+ testScore?: number | undefined;
1495
+ firstRoundConsidered?: string[] | undefined;
1496
+ secondRoundConsidered?: string[] | undefined;
1497
+ directRejectionScore?: number | undefined;
1498
+ directAdmissionScore?: number | undefined;
1499
+ directRejectionSecondScore?: number | undefined;
1500
+ directAdmissionSecondScore?: number | undefined;
1501
+ };
1502
+ distinctPrograms?: {
1503
+ school: string;
1504
+ program_name: string;
1505
+ _id: string;
1506
+ isArchiv?: boolean | undefined;
1507
+ isLocked?: boolean | undefined;
1508
+ programSubjects?: string[] | undefined;
1509
+ degree?: string | undefined;
1510
+ semester?: string | undefined;
1511
+ lang?: string | undefined;
1512
+ gpa_requirement?: string | undefined;
1513
+ allowOnlyGraduatedApplicant?: boolean | undefined;
1514
+ application_start?: string | undefined;
1515
+ application_deadline?: string | undefined;
1516
+ uni_assist?: string | undefined;
1517
+ englishTestHandLater?: boolean | undefined;
1518
+ toefl?: string | undefined;
1519
+ toefl_reading?: number | undefined;
1520
+ toefl_listening?: number | undefined;
1521
+ toefl_writing?: number | undefined;
1522
+ toefl_speaking?: number | undefined;
1523
+ ielts?: string | undefined;
1524
+ ielts_reading?: number | undefined;
1525
+ ielts_listening?: number | undefined;
1526
+ ielts_writing?: number | undefined;
1527
+ ielts_speaking?: number | undefined;
1528
+ germanTestHandLater?: boolean | undefined;
1529
+ goetheZertifikat?: string | undefined;
1530
+ testdaf?: string | undefined;
1531
+ dsh?: string | undefined;
1532
+ gre?: string | undefined;
1533
+ gre_verbal?: number | undefined;
1534
+ gre_quantitative?: number | undefined;
1535
+ gre_analytical_writing?: number | undefined;
1536
+ gmat?: string | undefined;
1537
+ ml_required?: string | undefined;
1538
+ ml_requirements?: string | undefined;
1539
+ sop_required?: string | undefined;
1540
+ sop_requirements?: string | undefined;
1541
+ phs_required?: string | undefined;
1542
+ phs_requirements?: string | undefined;
1543
+ rl_required?: string | undefined;
1544
+ rl_requirements?: string | undefined;
1545
+ is_rl_specific?: boolean | undefined;
1546
+ essay_required?: string | undefined;
1547
+ essay_requirements?: string | undefined;
1548
+ essay_difficulty?: string | undefined;
1549
+ portfolio_required?: string | undefined;
1550
+ portfolio_requirements?: string | undefined;
1551
+ supplementary_form_required?: string | undefined;
1552
+ supplementary_form_requirements?: string | undefined;
1553
+ curriculum_analysis_required?: string | undefined;
1554
+ curriculum_analysis_requirements?: string | undefined;
1555
+ scholarship_form_required?: string | undefined;
1556
+ scholarship_form_requirements?: string | undefined;
1557
+ module_description_required?: string | undefined;
1558
+ ects_requirements?: string | undefined;
1559
+ special_notes?: string | undefined;
1560
+ comments?: string | undefined;
1561
+ application_portal_a?: string | undefined;
1562
+ application_portal_b?: string | undefined;
1563
+ application_portal_a_instructions?: string | undefined;
1564
+ application_portal_b_instructions?: string | undefined;
1565
+ uni_assist_link?: string | undefined;
1566
+ website?: string | undefined;
1567
+ fpso?: string | undefined;
1568
+ updatedAt?: Date | undefined;
1569
+ whoupdated?: string | undefined;
1570
+ tuition_fees?: string | undefined;
1571
+ contact?: string | undefined;
1572
+ city?: string | undefined;
1573
+ country?: string | undefined;
1574
+ isPrivateSchool?: boolean | undefined;
1575
+ isPartnerSchool?: boolean | undefined;
1576
+ schoolType?: string | undefined;
1577
+ tags?: string[] | undefined;
1578
+ url?: string | undefined;
1579
+ isNC?: boolean | undefined;
1580
+ zipCode?: string | undefined;
1581
+ vcId?: string | undefined;
1582
+ }[] | undefined;
1583
+ keywordsets?: {
1584
+ _id: string;
1585
+ description?: string | undefined;
1586
+ categoryName?: string | undefined;
1587
+ keywords?: {
1588
+ zh?: string[] | undefined;
1589
+ en?: string[] | undefined;
1590
+ } | undefined;
1591
+ antiKeywords?: {
1592
+ zh?: string[] | undefined;
1593
+ en?: string[] | undefined;
1594
+ } | undefined;
1595
+ }[] | undefined;
1596
+ } | undefined;
1597
+ }>;
1598
+ export declare const GetProgramsAndKeywordSetsResponseSchema: z.ZodObject<{
1599
+ success: z.ZodBoolean;
1600
+ message: z.ZodOptional<z.ZodString>;
1601
+ } & {
1602
+ data: z.ZodOptional<z.ZodObject<{
1603
+ distinctPrograms: z.ZodOptional<z.ZodArray<z.ZodObject<{
1604
+ isArchiv: z.ZodOptional<z.ZodBoolean>;
1605
+ isLocked: z.ZodOptional<z.ZodBoolean>;
1606
+ school: z.ZodString;
1607
+ program_name: z.ZodString;
1608
+ programSubjects: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1609
+ degree: z.ZodOptional<z.ZodString>;
1610
+ semester: z.ZodOptional<z.ZodString>;
1611
+ lang: z.ZodOptional<z.ZodString>;
1612
+ gpa_requirement: z.ZodOptional<z.ZodString>;
1613
+ allowOnlyGraduatedApplicant: z.ZodOptional<z.ZodBoolean>;
1614
+ application_start: z.ZodOptional<z.ZodString>;
1615
+ application_deadline: z.ZodOptional<z.ZodString>;
1616
+ uni_assist: z.ZodOptional<z.ZodString>;
1617
+ englishTestHandLater: z.ZodOptional<z.ZodBoolean>;
1618
+ toefl: z.ZodOptional<z.ZodString>;
1619
+ toefl_reading: z.ZodOptional<z.ZodNumber>;
1620
+ toefl_listening: z.ZodOptional<z.ZodNumber>;
1621
+ toefl_writing: z.ZodOptional<z.ZodNumber>;
1622
+ toefl_speaking: z.ZodOptional<z.ZodNumber>;
1623
+ ielts: z.ZodOptional<z.ZodString>;
1624
+ ielts_reading: z.ZodOptional<z.ZodNumber>;
1625
+ ielts_listening: z.ZodOptional<z.ZodNumber>;
1626
+ ielts_writing: z.ZodOptional<z.ZodNumber>;
1627
+ ielts_speaking: z.ZodOptional<z.ZodNumber>;
1628
+ germanTestHandLater: z.ZodOptional<z.ZodBoolean>;
1629
+ goetheZertifikat: z.ZodOptional<z.ZodString>;
1630
+ testdaf: z.ZodOptional<z.ZodString>;
1631
+ dsh: z.ZodOptional<z.ZodString>;
1632
+ gre: z.ZodOptional<z.ZodString>;
1633
+ gre_verbal: z.ZodOptional<z.ZodNumber>;
1634
+ gre_quantitative: z.ZodOptional<z.ZodNumber>;
1635
+ gre_analytical_writing: z.ZodOptional<z.ZodNumber>;
1636
+ gmat: z.ZodOptional<z.ZodString>;
1637
+ ml_required: z.ZodOptional<z.ZodString>;
1638
+ ml_requirements: z.ZodOptional<z.ZodString>;
1639
+ sop_required: z.ZodOptional<z.ZodString>;
1640
+ sop_requirements: z.ZodOptional<z.ZodString>;
1641
+ phs_required: z.ZodOptional<z.ZodString>;
1642
+ phs_requirements: z.ZodOptional<z.ZodString>;
1643
+ rl_required: z.ZodOptional<z.ZodString>;
1644
+ rl_requirements: z.ZodOptional<z.ZodString>;
1645
+ is_rl_specific: z.ZodOptional<z.ZodBoolean>;
1646
+ essay_required: z.ZodOptional<z.ZodString>;
1647
+ essay_requirements: z.ZodOptional<z.ZodString>;
1648
+ essay_difficulty: z.ZodOptional<z.ZodString>;
1649
+ portfolio_required: z.ZodOptional<z.ZodString>;
1650
+ portfolio_requirements: z.ZodOptional<z.ZodString>;
1651
+ supplementary_form_required: z.ZodOptional<z.ZodString>;
1652
+ supplementary_form_requirements: z.ZodOptional<z.ZodString>;
1653
+ curriculum_analysis_required: z.ZodOptional<z.ZodString>;
1654
+ curriculum_analysis_requirements: z.ZodOptional<z.ZodString>;
1655
+ scholarship_form_required: z.ZodOptional<z.ZodString>;
1656
+ scholarship_form_requirements: z.ZodOptional<z.ZodString>;
1657
+ module_description_required: z.ZodOptional<z.ZodString>;
1658
+ ects_requirements: z.ZodOptional<z.ZodString>;
1659
+ special_notes: z.ZodOptional<z.ZodString>;
1660
+ comments: z.ZodOptional<z.ZodString>;
1661
+ application_portal_a: z.ZodOptional<z.ZodString>;
1662
+ application_portal_b: z.ZodOptional<z.ZodString>;
1663
+ application_portal_a_instructions: z.ZodOptional<z.ZodString>;
1664
+ application_portal_b_instructions: z.ZodOptional<z.ZodString>;
1665
+ uni_assist_link: z.ZodOptional<z.ZodString>;
1666
+ website: z.ZodOptional<z.ZodString>;
1667
+ fpso: z.ZodOptional<z.ZodString>;
1668
+ updatedAt: z.ZodOptional<z.ZodDate>;
1669
+ whoupdated: z.ZodOptional<z.ZodString>;
1670
+ tuition_fees: z.ZodOptional<z.ZodString>;
1671
+ contact: z.ZodOptional<z.ZodString>;
1672
+ city: z.ZodOptional<z.ZodString>;
1673
+ country: z.ZodOptional<z.ZodString>;
1674
+ isPrivateSchool: z.ZodOptional<z.ZodBoolean>;
1675
+ isPartnerSchool: z.ZodOptional<z.ZodBoolean>;
1676
+ schoolType: z.ZodOptional<z.ZodString>;
1677
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1678
+ url: z.ZodOptional<z.ZodString>;
1679
+ isNC: z.ZodOptional<z.ZodBoolean>;
1680
+ zipCode: z.ZodOptional<z.ZodString>;
1681
+ } & {
1682
+ _id: z.ZodString;
1683
+ vcId: z.ZodOptional<z.ZodString>;
1684
+ }, "strip", z.ZodTypeAny, {
1685
+ school: string;
1686
+ program_name: string;
1687
+ _id: string;
1688
+ isArchiv?: boolean | undefined;
1689
+ isLocked?: boolean | undefined;
1690
+ programSubjects?: string[] | undefined;
1691
+ degree?: string | undefined;
1692
+ semester?: string | undefined;
1693
+ lang?: string | undefined;
1694
+ gpa_requirement?: string | undefined;
1695
+ allowOnlyGraduatedApplicant?: boolean | undefined;
1696
+ application_start?: string | undefined;
1697
+ application_deadline?: string | undefined;
1698
+ uni_assist?: string | undefined;
1699
+ englishTestHandLater?: boolean | undefined;
1700
+ toefl?: string | undefined;
1701
+ toefl_reading?: number | undefined;
1702
+ toefl_listening?: number | undefined;
1703
+ toefl_writing?: number | undefined;
1704
+ toefl_speaking?: number | undefined;
1705
+ ielts?: string | undefined;
1706
+ ielts_reading?: number | undefined;
1707
+ ielts_listening?: number | undefined;
1708
+ ielts_writing?: number | undefined;
1709
+ ielts_speaking?: number | undefined;
1710
+ germanTestHandLater?: boolean | undefined;
1711
+ goetheZertifikat?: string | undefined;
1712
+ testdaf?: string | undefined;
1713
+ dsh?: string | undefined;
1714
+ gre?: string | undefined;
1715
+ gre_verbal?: number | undefined;
1716
+ gre_quantitative?: number | undefined;
1717
+ gre_analytical_writing?: number | undefined;
1718
+ gmat?: string | undefined;
1719
+ ml_required?: string | undefined;
1720
+ ml_requirements?: string | undefined;
1721
+ sop_required?: string | undefined;
1722
+ sop_requirements?: string | undefined;
1723
+ phs_required?: string | undefined;
1724
+ phs_requirements?: string | undefined;
1725
+ rl_required?: string | undefined;
1726
+ rl_requirements?: string | undefined;
1727
+ is_rl_specific?: boolean | undefined;
1728
+ essay_required?: string | undefined;
1729
+ essay_requirements?: string | undefined;
1730
+ essay_difficulty?: string | undefined;
1731
+ portfolio_required?: string | undefined;
1732
+ portfolio_requirements?: string | undefined;
1733
+ supplementary_form_required?: string | undefined;
1734
+ supplementary_form_requirements?: string | undefined;
1735
+ curriculum_analysis_required?: string | undefined;
1736
+ curriculum_analysis_requirements?: string | undefined;
1737
+ scholarship_form_required?: string | undefined;
1738
+ scholarship_form_requirements?: string | undefined;
1739
+ module_description_required?: string | undefined;
1740
+ ects_requirements?: string | undefined;
1741
+ special_notes?: string | undefined;
1742
+ comments?: string | undefined;
1743
+ application_portal_a?: string | undefined;
1744
+ application_portal_b?: string | undefined;
1745
+ application_portal_a_instructions?: string | undefined;
1746
+ application_portal_b_instructions?: string | undefined;
1747
+ uni_assist_link?: string | undefined;
1748
+ website?: string | undefined;
1749
+ fpso?: string | undefined;
1750
+ updatedAt?: Date | undefined;
1751
+ whoupdated?: string | undefined;
1752
+ tuition_fees?: string | undefined;
1753
+ contact?: string | undefined;
1754
+ city?: string | undefined;
1755
+ country?: string | undefined;
1756
+ isPrivateSchool?: boolean | undefined;
1757
+ isPartnerSchool?: boolean | undefined;
1758
+ schoolType?: string | undefined;
1759
+ tags?: string[] | undefined;
1760
+ url?: string | undefined;
1761
+ isNC?: boolean | undefined;
1762
+ zipCode?: string | undefined;
1763
+ vcId?: string | undefined;
1764
+ }, {
1765
+ school: string;
1766
+ program_name: string;
1767
+ _id: string;
1768
+ isArchiv?: boolean | undefined;
1769
+ isLocked?: boolean | undefined;
1770
+ programSubjects?: string[] | undefined;
1771
+ degree?: string | undefined;
1772
+ semester?: string | undefined;
1773
+ lang?: string | undefined;
1774
+ gpa_requirement?: string | undefined;
1775
+ allowOnlyGraduatedApplicant?: boolean | undefined;
1776
+ application_start?: string | undefined;
1777
+ application_deadline?: string | undefined;
1778
+ uni_assist?: string | undefined;
1779
+ englishTestHandLater?: boolean | undefined;
1780
+ toefl?: string | undefined;
1781
+ toefl_reading?: number | undefined;
1782
+ toefl_listening?: number | undefined;
1783
+ toefl_writing?: number | undefined;
1784
+ toefl_speaking?: number | undefined;
1785
+ ielts?: string | undefined;
1786
+ ielts_reading?: number | undefined;
1787
+ ielts_listening?: number | undefined;
1788
+ ielts_writing?: number | undefined;
1789
+ ielts_speaking?: number | undefined;
1790
+ germanTestHandLater?: boolean | undefined;
1791
+ goetheZertifikat?: string | undefined;
1792
+ testdaf?: string | undefined;
1793
+ dsh?: string | undefined;
1794
+ gre?: string | undefined;
1795
+ gre_verbal?: number | undefined;
1796
+ gre_quantitative?: number | undefined;
1797
+ gre_analytical_writing?: number | undefined;
1798
+ gmat?: string | undefined;
1799
+ ml_required?: string | undefined;
1800
+ ml_requirements?: string | undefined;
1801
+ sop_required?: string | undefined;
1802
+ sop_requirements?: string | undefined;
1803
+ phs_required?: string | undefined;
1804
+ phs_requirements?: string | undefined;
1805
+ rl_required?: string | undefined;
1806
+ rl_requirements?: string | undefined;
1807
+ is_rl_specific?: boolean | undefined;
1808
+ essay_required?: string | undefined;
1809
+ essay_requirements?: string | undefined;
1810
+ essay_difficulty?: string | undefined;
1811
+ portfolio_required?: string | undefined;
1812
+ portfolio_requirements?: string | undefined;
1813
+ supplementary_form_required?: string | undefined;
1814
+ supplementary_form_requirements?: string | undefined;
1815
+ curriculum_analysis_required?: string | undefined;
1816
+ curriculum_analysis_requirements?: string | undefined;
1817
+ scholarship_form_required?: string | undefined;
1818
+ scholarship_form_requirements?: string | undefined;
1819
+ module_description_required?: string | undefined;
1820
+ ects_requirements?: string | undefined;
1821
+ special_notes?: string | undefined;
1822
+ comments?: string | undefined;
1823
+ application_portal_a?: string | undefined;
1824
+ application_portal_b?: string | undefined;
1825
+ application_portal_a_instructions?: string | undefined;
1826
+ application_portal_b_instructions?: string | undefined;
1827
+ uni_assist_link?: string | undefined;
1828
+ website?: string | undefined;
1829
+ fpso?: string | undefined;
1830
+ updatedAt?: Date | undefined;
1831
+ whoupdated?: string | undefined;
1832
+ tuition_fees?: string | undefined;
1833
+ contact?: string | undefined;
1834
+ city?: string | undefined;
1835
+ country?: string | undefined;
1836
+ isPrivateSchool?: boolean | undefined;
1837
+ isPartnerSchool?: boolean | undefined;
1838
+ schoolType?: string | undefined;
1839
+ tags?: string[] | undefined;
1840
+ url?: string | undefined;
1841
+ isNC?: boolean | undefined;
1842
+ zipCode?: string | undefined;
1843
+ vcId?: string | undefined;
1844
+ }>, "many">>;
1845
+ keywordsets: z.ZodOptional<z.ZodArray<z.ZodObject<{
1846
+ categoryName: z.ZodOptional<z.ZodString>;
1847
+ description: z.ZodOptional<z.ZodString>;
1848
+ keywords: z.ZodOptional<z.ZodObject<{
1849
+ zh: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1850
+ en: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1851
+ }, "strip", z.ZodTypeAny, {
1852
+ zh?: string[] | undefined;
1853
+ en?: string[] | undefined;
1854
+ }, {
1855
+ zh?: string[] | undefined;
1856
+ en?: string[] | undefined;
1857
+ }>>;
1858
+ antiKeywords: z.ZodOptional<z.ZodObject<{
1859
+ zh: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1860
+ en: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1861
+ }, "strip", z.ZodTypeAny, {
1862
+ zh?: string[] | undefined;
1863
+ en?: string[] | undefined;
1864
+ }, {
1865
+ zh?: string[] | undefined;
1866
+ en?: string[] | undefined;
1867
+ }>>;
1868
+ } & {
1869
+ _id: z.ZodString;
1870
+ }, "strip", z.ZodTypeAny, {
1871
+ _id: string;
1872
+ description?: string | undefined;
1873
+ categoryName?: string | undefined;
1874
+ keywords?: {
1875
+ zh?: string[] | undefined;
1876
+ en?: string[] | undefined;
1877
+ } | undefined;
1878
+ antiKeywords?: {
1879
+ zh?: string[] | undefined;
1880
+ en?: string[] | undefined;
1881
+ } | undefined;
1882
+ }, {
1883
+ _id: string;
1884
+ description?: string | undefined;
1885
+ categoryName?: string | undefined;
1886
+ keywords?: {
1887
+ zh?: string[] | undefined;
1888
+ en?: string[] | undefined;
1889
+ } | undefined;
1890
+ antiKeywords?: {
1891
+ zh?: string[] | undefined;
1892
+ en?: string[] | undefined;
1893
+ } | undefined;
1894
+ }>, "many">>;
1895
+ }, "strip", z.ZodTypeAny, {
1896
+ distinctPrograms?: {
1897
+ school: string;
1898
+ program_name: string;
1899
+ _id: string;
1900
+ isArchiv?: boolean | undefined;
1901
+ isLocked?: boolean | undefined;
1902
+ programSubjects?: string[] | undefined;
1903
+ degree?: string | undefined;
1904
+ semester?: string | undefined;
1905
+ lang?: string | undefined;
1906
+ gpa_requirement?: string | undefined;
1907
+ allowOnlyGraduatedApplicant?: boolean | undefined;
1908
+ application_start?: string | undefined;
1909
+ application_deadline?: string | undefined;
1910
+ uni_assist?: string | undefined;
1911
+ englishTestHandLater?: boolean | undefined;
1912
+ toefl?: string | undefined;
1913
+ toefl_reading?: number | undefined;
1914
+ toefl_listening?: number | undefined;
1915
+ toefl_writing?: number | undefined;
1916
+ toefl_speaking?: number | undefined;
1917
+ ielts?: string | undefined;
1918
+ ielts_reading?: number | undefined;
1919
+ ielts_listening?: number | undefined;
1920
+ ielts_writing?: number | undefined;
1921
+ ielts_speaking?: number | undefined;
1922
+ germanTestHandLater?: boolean | undefined;
1923
+ goetheZertifikat?: string | undefined;
1924
+ testdaf?: string | undefined;
1925
+ dsh?: string | undefined;
1926
+ gre?: string | undefined;
1927
+ gre_verbal?: number | undefined;
1928
+ gre_quantitative?: number | undefined;
1929
+ gre_analytical_writing?: number | undefined;
1930
+ gmat?: string | undefined;
1931
+ ml_required?: string | undefined;
1932
+ ml_requirements?: string | undefined;
1933
+ sop_required?: string | undefined;
1934
+ sop_requirements?: string | undefined;
1935
+ phs_required?: string | undefined;
1936
+ phs_requirements?: string | undefined;
1937
+ rl_required?: string | undefined;
1938
+ rl_requirements?: string | undefined;
1939
+ is_rl_specific?: boolean | undefined;
1940
+ essay_required?: string | undefined;
1941
+ essay_requirements?: string | undefined;
1942
+ essay_difficulty?: string | undefined;
1943
+ portfolio_required?: string | undefined;
1944
+ portfolio_requirements?: string | undefined;
1945
+ supplementary_form_required?: string | undefined;
1946
+ supplementary_form_requirements?: string | undefined;
1947
+ curriculum_analysis_required?: string | undefined;
1948
+ curriculum_analysis_requirements?: string | undefined;
1949
+ scholarship_form_required?: string | undefined;
1950
+ scholarship_form_requirements?: string | undefined;
1951
+ module_description_required?: string | undefined;
1952
+ ects_requirements?: string | undefined;
1953
+ special_notes?: string | undefined;
1954
+ comments?: string | undefined;
1955
+ application_portal_a?: string | undefined;
1956
+ application_portal_b?: string | undefined;
1957
+ application_portal_a_instructions?: string | undefined;
1958
+ application_portal_b_instructions?: string | undefined;
1959
+ uni_assist_link?: string | undefined;
1960
+ website?: string | undefined;
1961
+ fpso?: string | undefined;
1962
+ updatedAt?: Date | undefined;
1963
+ whoupdated?: string | undefined;
1964
+ tuition_fees?: string | undefined;
1965
+ contact?: string | undefined;
1966
+ city?: string | undefined;
1967
+ country?: string | undefined;
1968
+ isPrivateSchool?: boolean | undefined;
1969
+ isPartnerSchool?: boolean | undefined;
1970
+ schoolType?: string | undefined;
1971
+ tags?: string[] | undefined;
1972
+ url?: string | undefined;
1973
+ isNC?: boolean | undefined;
1974
+ zipCode?: string | undefined;
1975
+ vcId?: string | undefined;
1976
+ }[] | undefined;
1977
+ keywordsets?: {
1978
+ _id: string;
1979
+ description?: string | undefined;
1980
+ categoryName?: string | undefined;
1981
+ keywords?: {
1982
+ zh?: string[] | undefined;
1983
+ en?: string[] | undefined;
1984
+ } | undefined;
1985
+ antiKeywords?: {
1986
+ zh?: string[] | undefined;
1987
+ en?: string[] | undefined;
1988
+ } | undefined;
1989
+ }[] | undefined;
1990
+ }, {
1991
+ distinctPrograms?: {
1992
+ school: string;
1993
+ program_name: string;
1994
+ _id: string;
1995
+ isArchiv?: boolean | undefined;
1996
+ isLocked?: boolean | undefined;
1997
+ programSubjects?: string[] | undefined;
1998
+ degree?: string | undefined;
1999
+ semester?: string | undefined;
2000
+ lang?: string | undefined;
2001
+ gpa_requirement?: string | undefined;
2002
+ allowOnlyGraduatedApplicant?: boolean | undefined;
2003
+ application_start?: string | undefined;
2004
+ application_deadline?: string | undefined;
2005
+ uni_assist?: string | undefined;
2006
+ englishTestHandLater?: boolean | undefined;
2007
+ toefl?: string | undefined;
2008
+ toefl_reading?: number | undefined;
2009
+ toefl_listening?: number | undefined;
2010
+ toefl_writing?: number | undefined;
2011
+ toefl_speaking?: number | undefined;
2012
+ ielts?: string | undefined;
2013
+ ielts_reading?: number | undefined;
2014
+ ielts_listening?: number | undefined;
2015
+ ielts_writing?: number | undefined;
2016
+ ielts_speaking?: number | undefined;
2017
+ germanTestHandLater?: boolean | undefined;
2018
+ goetheZertifikat?: string | undefined;
2019
+ testdaf?: string | undefined;
2020
+ dsh?: string | undefined;
2021
+ gre?: string | undefined;
2022
+ gre_verbal?: number | undefined;
2023
+ gre_quantitative?: number | undefined;
2024
+ gre_analytical_writing?: number | undefined;
2025
+ gmat?: string | undefined;
2026
+ ml_required?: string | undefined;
2027
+ ml_requirements?: string | undefined;
2028
+ sop_required?: string | undefined;
2029
+ sop_requirements?: string | undefined;
2030
+ phs_required?: string | undefined;
2031
+ phs_requirements?: string | undefined;
2032
+ rl_required?: string | undefined;
2033
+ rl_requirements?: string | undefined;
2034
+ is_rl_specific?: boolean | undefined;
2035
+ essay_required?: string | undefined;
2036
+ essay_requirements?: string | undefined;
2037
+ essay_difficulty?: string | undefined;
2038
+ portfolio_required?: string | undefined;
2039
+ portfolio_requirements?: string | undefined;
2040
+ supplementary_form_required?: string | undefined;
2041
+ supplementary_form_requirements?: string | undefined;
2042
+ curriculum_analysis_required?: string | undefined;
2043
+ curriculum_analysis_requirements?: string | undefined;
2044
+ scholarship_form_required?: string | undefined;
2045
+ scholarship_form_requirements?: string | undefined;
2046
+ module_description_required?: string | undefined;
2047
+ ects_requirements?: string | undefined;
2048
+ special_notes?: string | undefined;
2049
+ comments?: string | undefined;
2050
+ application_portal_a?: string | undefined;
2051
+ application_portal_b?: string | undefined;
2052
+ application_portal_a_instructions?: string | undefined;
2053
+ application_portal_b_instructions?: string | undefined;
2054
+ uni_assist_link?: string | undefined;
2055
+ website?: string | undefined;
2056
+ fpso?: string | undefined;
2057
+ updatedAt?: Date | undefined;
2058
+ whoupdated?: string | undefined;
2059
+ tuition_fees?: string | undefined;
2060
+ contact?: string | undefined;
2061
+ city?: string | undefined;
2062
+ country?: string | undefined;
2063
+ isPrivateSchool?: boolean | undefined;
2064
+ isPartnerSchool?: boolean | undefined;
2065
+ schoolType?: string | undefined;
2066
+ tags?: string[] | undefined;
2067
+ url?: string | undefined;
2068
+ isNC?: boolean | undefined;
2069
+ zipCode?: string | undefined;
2070
+ vcId?: string | undefined;
2071
+ }[] | undefined;
2072
+ keywordsets?: {
2073
+ _id: string;
2074
+ description?: string | undefined;
2075
+ categoryName?: string | undefined;
2076
+ keywords?: {
2077
+ zh?: string[] | undefined;
2078
+ en?: string[] | undefined;
2079
+ } | undefined;
2080
+ antiKeywords?: {
2081
+ zh?: string[] | undefined;
2082
+ en?: string[] | undefined;
2083
+ } | undefined;
2084
+ }[] | undefined;
2085
+ }>>;
2086
+ }, "strip", z.ZodTypeAny, {
2087
+ success: boolean;
2088
+ message?: string | undefined;
2089
+ data?: {
2090
+ distinctPrograms?: {
2091
+ school: string;
2092
+ program_name: string;
2093
+ _id: string;
2094
+ isArchiv?: boolean | undefined;
2095
+ isLocked?: boolean | undefined;
2096
+ programSubjects?: string[] | undefined;
2097
+ degree?: string | undefined;
2098
+ semester?: string | undefined;
2099
+ lang?: string | undefined;
2100
+ gpa_requirement?: string | undefined;
2101
+ allowOnlyGraduatedApplicant?: boolean | undefined;
2102
+ application_start?: string | undefined;
2103
+ application_deadline?: string | undefined;
2104
+ uni_assist?: string | undefined;
2105
+ englishTestHandLater?: boolean | undefined;
2106
+ toefl?: string | undefined;
2107
+ toefl_reading?: number | undefined;
2108
+ toefl_listening?: number | undefined;
2109
+ toefl_writing?: number | undefined;
2110
+ toefl_speaking?: number | undefined;
2111
+ ielts?: string | undefined;
2112
+ ielts_reading?: number | undefined;
2113
+ ielts_listening?: number | undefined;
2114
+ ielts_writing?: number | undefined;
2115
+ ielts_speaking?: number | undefined;
2116
+ germanTestHandLater?: boolean | undefined;
2117
+ goetheZertifikat?: string | undefined;
2118
+ testdaf?: string | undefined;
2119
+ dsh?: string | undefined;
2120
+ gre?: string | undefined;
2121
+ gre_verbal?: number | undefined;
2122
+ gre_quantitative?: number | undefined;
2123
+ gre_analytical_writing?: number | undefined;
2124
+ gmat?: string | undefined;
2125
+ ml_required?: string | undefined;
2126
+ ml_requirements?: string | undefined;
2127
+ sop_required?: string | undefined;
2128
+ sop_requirements?: string | undefined;
2129
+ phs_required?: string | undefined;
2130
+ phs_requirements?: string | undefined;
2131
+ rl_required?: string | undefined;
2132
+ rl_requirements?: string | undefined;
2133
+ is_rl_specific?: boolean | undefined;
2134
+ essay_required?: string | undefined;
2135
+ essay_requirements?: string | undefined;
2136
+ essay_difficulty?: string | undefined;
2137
+ portfolio_required?: string | undefined;
2138
+ portfolio_requirements?: string | undefined;
2139
+ supplementary_form_required?: string | undefined;
2140
+ supplementary_form_requirements?: string | undefined;
2141
+ curriculum_analysis_required?: string | undefined;
2142
+ curriculum_analysis_requirements?: string | undefined;
2143
+ scholarship_form_required?: string | undefined;
2144
+ scholarship_form_requirements?: string | undefined;
2145
+ module_description_required?: string | undefined;
2146
+ ects_requirements?: string | undefined;
2147
+ special_notes?: string | undefined;
2148
+ comments?: string | undefined;
2149
+ application_portal_a?: string | undefined;
2150
+ application_portal_b?: string | undefined;
2151
+ application_portal_a_instructions?: string | undefined;
2152
+ application_portal_b_instructions?: string | undefined;
2153
+ uni_assist_link?: string | undefined;
2154
+ website?: string | undefined;
2155
+ fpso?: string | undefined;
2156
+ updatedAt?: Date | undefined;
2157
+ whoupdated?: string | undefined;
2158
+ tuition_fees?: string | undefined;
2159
+ contact?: string | undefined;
2160
+ city?: string | undefined;
2161
+ country?: string | undefined;
2162
+ isPrivateSchool?: boolean | undefined;
2163
+ isPartnerSchool?: boolean | undefined;
2164
+ schoolType?: string | undefined;
2165
+ tags?: string[] | undefined;
2166
+ url?: string | undefined;
2167
+ isNC?: boolean | undefined;
2168
+ zipCode?: string | undefined;
2169
+ vcId?: string | undefined;
2170
+ }[] | undefined;
2171
+ keywordsets?: {
2172
+ _id: string;
2173
+ description?: string | undefined;
2174
+ categoryName?: string | undefined;
2175
+ keywords?: {
2176
+ zh?: string[] | undefined;
2177
+ en?: string[] | undefined;
2178
+ } | undefined;
2179
+ antiKeywords?: {
2180
+ zh?: string[] | undefined;
2181
+ en?: string[] | undefined;
2182
+ } | undefined;
2183
+ }[] | undefined;
2184
+ } | undefined;
2185
+ }, {
2186
+ success: boolean;
2187
+ message?: string | undefined;
2188
+ data?: {
2189
+ distinctPrograms?: {
2190
+ school: string;
2191
+ program_name: string;
2192
+ _id: string;
2193
+ isArchiv?: boolean | undefined;
2194
+ isLocked?: boolean | undefined;
2195
+ programSubjects?: string[] | undefined;
2196
+ degree?: string | undefined;
2197
+ semester?: string | undefined;
2198
+ lang?: string | undefined;
2199
+ gpa_requirement?: string | undefined;
2200
+ allowOnlyGraduatedApplicant?: boolean | undefined;
2201
+ application_start?: string | undefined;
2202
+ application_deadline?: string | undefined;
2203
+ uni_assist?: string | undefined;
2204
+ englishTestHandLater?: boolean | undefined;
2205
+ toefl?: string | undefined;
2206
+ toefl_reading?: number | undefined;
2207
+ toefl_listening?: number | undefined;
2208
+ toefl_writing?: number | undefined;
2209
+ toefl_speaking?: number | undefined;
2210
+ ielts?: string | undefined;
2211
+ ielts_reading?: number | undefined;
2212
+ ielts_listening?: number | undefined;
2213
+ ielts_writing?: number | undefined;
2214
+ ielts_speaking?: number | undefined;
2215
+ germanTestHandLater?: boolean | undefined;
2216
+ goetheZertifikat?: string | undefined;
2217
+ testdaf?: string | undefined;
2218
+ dsh?: string | undefined;
2219
+ gre?: string | undefined;
2220
+ gre_verbal?: number | undefined;
2221
+ gre_quantitative?: number | undefined;
2222
+ gre_analytical_writing?: number | undefined;
2223
+ gmat?: string | undefined;
2224
+ ml_required?: string | undefined;
2225
+ ml_requirements?: string | undefined;
2226
+ sop_required?: string | undefined;
2227
+ sop_requirements?: string | undefined;
2228
+ phs_required?: string | undefined;
2229
+ phs_requirements?: string | undefined;
2230
+ rl_required?: string | undefined;
2231
+ rl_requirements?: string | undefined;
2232
+ is_rl_specific?: boolean | undefined;
2233
+ essay_required?: string | undefined;
2234
+ essay_requirements?: string | undefined;
2235
+ essay_difficulty?: string | undefined;
2236
+ portfolio_required?: string | undefined;
2237
+ portfolio_requirements?: string | undefined;
2238
+ supplementary_form_required?: string | undefined;
2239
+ supplementary_form_requirements?: string | undefined;
2240
+ curriculum_analysis_required?: string | undefined;
2241
+ curriculum_analysis_requirements?: string | undefined;
2242
+ scholarship_form_required?: string | undefined;
2243
+ scholarship_form_requirements?: string | undefined;
2244
+ module_description_required?: string | undefined;
2245
+ ects_requirements?: string | undefined;
2246
+ special_notes?: string | undefined;
2247
+ comments?: string | undefined;
2248
+ application_portal_a?: string | undefined;
2249
+ application_portal_b?: string | undefined;
2250
+ application_portal_a_instructions?: string | undefined;
2251
+ application_portal_b_instructions?: string | undefined;
2252
+ uni_assist_link?: string | undefined;
2253
+ website?: string | undefined;
2254
+ fpso?: string | undefined;
2255
+ updatedAt?: Date | undefined;
2256
+ whoupdated?: string | undefined;
2257
+ tuition_fees?: string | undefined;
2258
+ contact?: string | undefined;
2259
+ city?: string | undefined;
2260
+ country?: string | undefined;
2261
+ isPrivateSchool?: boolean | undefined;
2262
+ isPartnerSchool?: boolean | undefined;
2263
+ schoolType?: string | undefined;
2264
+ tags?: string[] | undefined;
2265
+ url?: string | undefined;
2266
+ isNC?: boolean | undefined;
2267
+ zipCode?: string | undefined;
2268
+ vcId?: string | undefined;
2269
+ }[] | undefined;
2270
+ keywordsets?: {
2271
+ _id: string;
2272
+ description?: string | undefined;
2273
+ categoryName?: string | undefined;
2274
+ keywords?: {
2275
+ zh?: string[] | undefined;
2276
+ en?: string[] | undefined;
2277
+ } | undefined;
2278
+ antiKeywords?: {
2279
+ zh?: string[] | undefined;
2280
+ en?: string[] | undefined;
2281
+ } | undefined;
2282
+ }[] | undefined;
2283
+ } | undefined;
2284
+ }>;
2285
+ export declare const CreateProgramRequirementResponseSchema: z.ZodObject<{
2286
+ success: z.ZodBoolean;
2287
+ message: z.ZodOptional<z.ZodString>;
2288
+ } & {
2289
+ data: z.ZodOptional<z.ZodObject<{
2290
+ programId: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2291
+ program_categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
2292
+ program_category: z.ZodOptional<z.ZodString>;
2293
+ category_description: z.ZodOptional<z.ZodString>;
2294
+ requiredECTS: z.ZodOptional<z.ZodNumber>;
2295
+ keywordSets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2296
+ maxScore: z.ZodOptional<z.ZodNumber>;
2297
+ }, "strip", z.ZodTypeAny, {
2298
+ program_category?: string | undefined;
2299
+ category_description?: string | undefined;
2300
+ requiredECTS?: number | undefined;
2301
+ keywordSets?: string[] | undefined;
2302
+ maxScore?: number | undefined;
2303
+ }, {
2304
+ program_category?: string | undefined;
2305
+ category_description?: string | undefined;
2306
+ requiredECTS?: number | undefined;
2307
+ keywordSets?: string[] | undefined;
2308
+ maxScore?: number | undefined;
2309
+ }>, "many">>;
2310
+ attributes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2311
+ fpso: z.ZodOptional<z.ZodString>;
2312
+ admissionDescription: z.ZodOptional<z.ZodString>;
2313
+ gpaScoreBoundaryGPA: z.ZodOptional<z.ZodNumber>;
2314
+ gpaScore: z.ZodOptional<z.ZodNumber>;
2315
+ gpaMinScore: z.ZodOptional<z.ZodNumber>;
2316
+ coursesScore: z.ZodOptional<z.ZodNumber>;
2317
+ cvScore: z.ZodOptional<z.ZodNumber>;
2318
+ mlScore: z.ZodOptional<z.ZodNumber>;
2319
+ rlScore: z.ZodOptional<z.ZodNumber>;
2320
+ essayScore: z.ZodOptional<z.ZodNumber>;
2321
+ gmatScore: z.ZodOptional<z.ZodNumber>;
2322
+ greScore: z.ZodOptional<z.ZodNumber>;
2323
+ interviewScore: z.ZodOptional<z.ZodNumber>;
2324
+ workExperienceScore: z.ZodOptional<z.ZodNumber>;
2325
+ testScore: z.ZodOptional<z.ZodNumber>;
2326
+ firstRoundConsidered: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2327
+ secondRoundConsidered: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2328
+ directRejectionScore: z.ZodOptional<z.ZodNumber>;
2329
+ directAdmissionScore: z.ZodOptional<z.ZodNumber>;
2330
+ directRejectionSecondScore: z.ZodOptional<z.ZodNumber>;
2331
+ directAdmissionSecondScore: z.ZodOptional<z.ZodNumber>;
2332
+ } & {
2333
+ _id: z.ZodString;
2334
+ }, "strip", z.ZodTypeAny, {
2335
+ _id: string;
2336
+ fpso?: string | undefined;
2337
+ programId?: string[] | undefined;
2338
+ attributes?: string[] | undefined;
2339
+ program_categories?: {
2340
+ program_category?: string | undefined;
2341
+ category_description?: string | undefined;
2342
+ requiredECTS?: number | undefined;
2343
+ keywordSets?: string[] | undefined;
2344
+ maxScore?: number | undefined;
2345
+ }[] | undefined;
2346
+ admissionDescription?: string | undefined;
2347
+ gpaScoreBoundaryGPA?: number | undefined;
2348
+ gpaScore?: number | undefined;
2349
+ gpaMinScore?: number | undefined;
2350
+ coursesScore?: number | undefined;
2351
+ cvScore?: number | undefined;
2352
+ mlScore?: number | undefined;
2353
+ rlScore?: number | undefined;
2354
+ essayScore?: number | undefined;
2355
+ gmatScore?: number | undefined;
2356
+ greScore?: number | undefined;
2357
+ interviewScore?: number | undefined;
2358
+ workExperienceScore?: number | undefined;
2359
+ testScore?: number | undefined;
2360
+ firstRoundConsidered?: string[] | undefined;
2361
+ secondRoundConsidered?: string[] | undefined;
2362
+ directRejectionScore?: number | undefined;
2363
+ directAdmissionScore?: number | undefined;
2364
+ directRejectionSecondScore?: number | undefined;
2365
+ directAdmissionSecondScore?: number | undefined;
2366
+ }, {
2367
+ _id: string;
2368
+ fpso?: string | undefined;
2369
+ programId?: string[] | undefined;
2370
+ attributes?: string[] | undefined;
2371
+ program_categories?: {
2372
+ program_category?: string | undefined;
2373
+ category_description?: string | undefined;
2374
+ requiredECTS?: number | undefined;
2375
+ keywordSets?: string[] | undefined;
2376
+ maxScore?: number | undefined;
2377
+ }[] | undefined;
2378
+ admissionDescription?: string | undefined;
2379
+ gpaScoreBoundaryGPA?: number | undefined;
2380
+ gpaScore?: number | undefined;
2381
+ gpaMinScore?: number | undefined;
2382
+ coursesScore?: number | undefined;
2383
+ cvScore?: number | undefined;
2384
+ mlScore?: number | undefined;
2385
+ rlScore?: number | undefined;
2386
+ essayScore?: number | undefined;
2387
+ gmatScore?: number | undefined;
2388
+ greScore?: number | undefined;
2389
+ interviewScore?: number | undefined;
2390
+ workExperienceScore?: number | undefined;
2391
+ testScore?: number | undefined;
2392
+ firstRoundConsidered?: string[] | undefined;
2393
+ secondRoundConsidered?: string[] | undefined;
2394
+ directRejectionScore?: number | undefined;
2395
+ directAdmissionScore?: number | undefined;
2396
+ directRejectionSecondScore?: number | undefined;
2397
+ directAdmissionSecondScore?: number | undefined;
2398
+ }>>;
2399
+ }, "strip", z.ZodTypeAny, {
2400
+ success: boolean;
2401
+ message?: string | undefined;
2402
+ data?: {
2403
+ _id: string;
2404
+ fpso?: string | undefined;
2405
+ programId?: string[] | undefined;
2406
+ attributes?: string[] | undefined;
2407
+ program_categories?: {
2408
+ program_category?: string | undefined;
2409
+ category_description?: string | undefined;
2410
+ requiredECTS?: number | undefined;
2411
+ keywordSets?: string[] | undefined;
2412
+ maxScore?: number | undefined;
2413
+ }[] | undefined;
2414
+ admissionDescription?: string | undefined;
2415
+ gpaScoreBoundaryGPA?: number | undefined;
2416
+ gpaScore?: number | undefined;
2417
+ gpaMinScore?: number | undefined;
2418
+ coursesScore?: number | undefined;
2419
+ cvScore?: number | undefined;
2420
+ mlScore?: number | undefined;
2421
+ rlScore?: number | undefined;
2422
+ essayScore?: number | undefined;
2423
+ gmatScore?: number | undefined;
2424
+ greScore?: number | undefined;
2425
+ interviewScore?: number | undefined;
2426
+ workExperienceScore?: number | undefined;
2427
+ testScore?: number | undefined;
2428
+ firstRoundConsidered?: string[] | undefined;
2429
+ secondRoundConsidered?: string[] | undefined;
2430
+ directRejectionScore?: number | undefined;
2431
+ directAdmissionScore?: number | undefined;
2432
+ directRejectionSecondScore?: number | undefined;
2433
+ directAdmissionSecondScore?: number | undefined;
2434
+ } | undefined;
2435
+ }, {
2436
+ success: boolean;
2437
+ message?: string | undefined;
2438
+ data?: {
2439
+ _id: string;
2440
+ fpso?: string | undefined;
2441
+ programId?: string[] | undefined;
2442
+ attributes?: string[] | undefined;
2443
+ program_categories?: {
2444
+ program_category?: string | undefined;
2445
+ category_description?: string | undefined;
2446
+ requiredECTS?: number | undefined;
2447
+ keywordSets?: string[] | undefined;
2448
+ maxScore?: number | undefined;
2449
+ }[] | undefined;
2450
+ admissionDescription?: string | undefined;
2451
+ gpaScoreBoundaryGPA?: number | undefined;
2452
+ gpaScore?: number | undefined;
2453
+ gpaMinScore?: number | undefined;
2454
+ coursesScore?: number | undefined;
2455
+ cvScore?: number | undefined;
2456
+ mlScore?: number | undefined;
2457
+ rlScore?: number | undefined;
2458
+ essayScore?: number | undefined;
2459
+ gmatScore?: number | undefined;
2460
+ greScore?: number | undefined;
2461
+ interviewScore?: number | undefined;
2462
+ workExperienceScore?: number | undefined;
2463
+ testScore?: number | undefined;
2464
+ firstRoundConsidered?: string[] | undefined;
2465
+ secondRoundConsidered?: string[] | undefined;
2466
+ directRejectionScore?: number | undefined;
2467
+ directAdmissionScore?: number | undefined;
2468
+ directRejectionSecondScore?: number | undefined;
2469
+ directAdmissionSecondScore?: number | undefined;
2470
+ } | undefined;
2471
+ }>;
2472
+ export declare const UpdateProgramRequirementResponseSchema: z.ZodObject<{
2473
+ success: z.ZodBoolean;
2474
+ message: z.ZodOptional<z.ZodString>;
2475
+ } & {
2476
+ data: z.ZodOptional<z.ZodObject<{
2477
+ programId: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2478
+ program_categories: z.ZodOptional<z.ZodArray<z.ZodObject<{
2479
+ program_category: z.ZodOptional<z.ZodString>;
2480
+ category_description: z.ZodOptional<z.ZodString>;
2481
+ requiredECTS: z.ZodOptional<z.ZodNumber>;
2482
+ keywordSets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2483
+ maxScore: z.ZodOptional<z.ZodNumber>;
2484
+ }, "strip", z.ZodTypeAny, {
2485
+ program_category?: string | undefined;
2486
+ category_description?: string | undefined;
2487
+ requiredECTS?: number | undefined;
2488
+ keywordSets?: string[] | undefined;
2489
+ maxScore?: number | undefined;
2490
+ }, {
2491
+ program_category?: string | undefined;
2492
+ category_description?: string | undefined;
2493
+ requiredECTS?: number | undefined;
2494
+ keywordSets?: string[] | undefined;
2495
+ maxScore?: number | undefined;
2496
+ }>, "many">>;
2497
+ attributes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2498
+ fpso: z.ZodOptional<z.ZodString>;
2499
+ admissionDescription: z.ZodOptional<z.ZodString>;
2500
+ gpaScoreBoundaryGPA: z.ZodOptional<z.ZodNumber>;
2501
+ gpaScore: z.ZodOptional<z.ZodNumber>;
2502
+ gpaMinScore: z.ZodOptional<z.ZodNumber>;
2503
+ coursesScore: z.ZodOptional<z.ZodNumber>;
2504
+ cvScore: z.ZodOptional<z.ZodNumber>;
2505
+ mlScore: z.ZodOptional<z.ZodNumber>;
2506
+ rlScore: z.ZodOptional<z.ZodNumber>;
2507
+ essayScore: z.ZodOptional<z.ZodNumber>;
2508
+ gmatScore: z.ZodOptional<z.ZodNumber>;
2509
+ greScore: z.ZodOptional<z.ZodNumber>;
2510
+ interviewScore: z.ZodOptional<z.ZodNumber>;
2511
+ workExperienceScore: z.ZodOptional<z.ZodNumber>;
2512
+ testScore: z.ZodOptional<z.ZodNumber>;
2513
+ firstRoundConsidered: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2514
+ secondRoundConsidered: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2515
+ directRejectionScore: z.ZodOptional<z.ZodNumber>;
2516
+ directAdmissionScore: z.ZodOptional<z.ZodNumber>;
2517
+ directRejectionSecondScore: z.ZodOptional<z.ZodNumber>;
2518
+ directAdmissionSecondScore: z.ZodOptional<z.ZodNumber>;
2519
+ } & {
2520
+ _id: z.ZodString;
2521
+ }, "strip", z.ZodTypeAny, {
2522
+ _id: string;
2523
+ fpso?: string | undefined;
2524
+ programId?: string[] | undefined;
2525
+ attributes?: string[] | undefined;
2526
+ program_categories?: {
2527
+ program_category?: string | undefined;
2528
+ category_description?: string | undefined;
2529
+ requiredECTS?: number | undefined;
2530
+ keywordSets?: string[] | undefined;
2531
+ maxScore?: number | undefined;
2532
+ }[] | undefined;
2533
+ admissionDescription?: string | undefined;
2534
+ gpaScoreBoundaryGPA?: number | undefined;
2535
+ gpaScore?: number | undefined;
2536
+ gpaMinScore?: number | undefined;
2537
+ coursesScore?: number | undefined;
2538
+ cvScore?: number | undefined;
2539
+ mlScore?: number | undefined;
2540
+ rlScore?: number | undefined;
2541
+ essayScore?: number | undefined;
2542
+ gmatScore?: number | undefined;
2543
+ greScore?: number | undefined;
2544
+ interviewScore?: number | undefined;
2545
+ workExperienceScore?: number | undefined;
2546
+ testScore?: number | undefined;
2547
+ firstRoundConsidered?: string[] | undefined;
2548
+ secondRoundConsidered?: string[] | undefined;
2549
+ directRejectionScore?: number | undefined;
2550
+ directAdmissionScore?: number | undefined;
2551
+ directRejectionSecondScore?: number | undefined;
2552
+ directAdmissionSecondScore?: number | undefined;
2553
+ }, {
2554
+ _id: string;
2555
+ fpso?: string | undefined;
2556
+ programId?: string[] | undefined;
2557
+ attributes?: string[] | undefined;
2558
+ program_categories?: {
2559
+ program_category?: string | undefined;
2560
+ category_description?: string | undefined;
2561
+ requiredECTS?: number | undefined;
2562
+ keywordSets?: string[] | undefined;
2563
+ maxScore?: number | undefined;
2564
+ }[] | undefined;
2565
+ admissionDescription?: string | undefined;
2566
+ gpaScoreBoundaryGPA?: number | undefined;
2567
+ gpaScore?: number | undefined;
2568
+ gpaMinScore?: number | undefined;
2569
+ coursesScore?: number | undefined;
2570
+ cvScore?: number | undefined;
2571
+ mlScore?: number | undefined;
2572
+ rlScore?: number | undefined;
2573
+ essayScore?: number | undefined;
2574
+ gmatScore?: number | undefined;
2575
+ greScore?: number | undefined;
2576
+ interviewScore?: number | undefined;
2577
+ workExperienceScore?: number | undefined;
2578
+ testScore?: number | undefined;
2579
+ firstRoundConsidered?: string[] | undefined;
2580
+ secondRoundConsidered?: string[] | undefined;
2581
+ directRejectionScore?: number | undefined;
2582
+ directAdmissionScore?: number | undefined;
2583
+ directRejectionSecondScore?: number | undefined;
2584
+ directAdmissionSecondScore?: number | undefined;
2585
+ }>>;
2586
+ }, "strip", z.ZodTypeAny, {
2587
+ success: boolean;
2588
+ message?: string | undefined;
2589
+ data?: {
2590
+ _id: string;
2591
+ fpso?: string | undefined;
2592
+ programId?: string[] | undefined;
2593
+ attributes?: string[] | undefined;
2594
+ program_categories?: {
2595
+ program_category?: string | undefined;
2596
+ category_description?: string | undefined;
2597
+ requiredECTS?: number | undefined;
2598
+ keywordSets?: string[] | undefined;
2599
+ maxScore?: number | undefined;
2600
+ }[] | undefined;
2601
+ admissionDescription?: string | undefined;
2602
+ gpaScoreBoundaryGPA?: number | undefined;
2603
+ gpaScore?: number | undefined;
2604
+ gpaMinScore?: number | undefined;
2605
+ coursesScore?: number | undefined;
2606
+ cvScore?: number | undefined;
2607
+ mlScore?: number | undefined;
2608
+ rlScore?: number | undefined;
2609
+ essayScore?: number | undefined;
2610
+ gmatScore?: number | undefined;
2611
+ greScore?: number | undefined;
2612
+ interviewScore?: number | undefined;
2613
+ workExperienceScore?: number | undefined;
2614
+ testScore?: number | undefined;
2615
+ firstRoundConsidered?: string[] | undefined;
2616
+ secondRoundConsidered?: string[] | undefined;
2617
+ directRejectionScore?: number | undefined;
2618
+ directAdmissionScore?: number | undefined;
2619
+ directRejectionSecondScore?: number | undefined;
2620
+ directAdmissionSecondScore?: number | undefined;
2621
+ } | undefined;
2622
+ }, {
2623
+ success: boolean;
2624
+ message?: string | undefined;
2625
+ data?: {
2626
+ _id: string;
2627
+ fpso?: string | undefined;
2628
+ programId?: string[] | undefined;
2629
+ attributes?: string[] | undefined;
2630
+ program_categories?: {
2631
+ program_category?: string | undefined;
2632
+ category_description?: string | undefined;
2633
+ requiredECTS?: number | undefined;
2634
+ keywordSets?: string[] | undefined;
2635
+ maxScore?: number | undefined;
2636
+ }[] | undefined;
2637
+ admissionDescription?: string | undefined;
2638
+ gpaScoreBoundaryGPA?: number | undefined;
2639
+ gpaScore?: number | undefined;
2640
+ gpaMinScore?: number | undefined;
2641
+ coursesScore?: number | undefined;
2642
+ cvScore?: number | undefined;
2643
+ mlScore?: number | undefined;
2644
+ rlScore?: number | undefined;
2645
+ essayScore?: number | undefined;
2646
+ gmatScore?: number | undefined;
2647
+ greScore?: number | undefined;
2648
+ interviewScore?: number | undefined;
2649
+ workExperienceScore?: number | undefined;
2650
+ testScore?: number | undefined;
2651
+ firstRoundConsidered?: string[] | undefined;
2652
+ secondRoundConsidered?: string[] | undefined;
2653
+ directRejectionScore?: number | undefined;
2654
+ directAdmissionScore?: number | undefined;
2655
+ directRejectionSecondScore?: number | undefined;
2656
+ directAdmissionSecondScore?: number | undefined;
2657
+ } | undefined;
2658
+ }>;
2659
+ export declare const DeleteProgramRequirementResponseSchema: z.ZodObject<{
2660
+ success: z.ZodBoolean;
2661
+ message: z.ZodOptional<z.ZodString>;
2662
+ }, "strip", z.ZodTypeAny, {
2663
+ success: boolean;
2664
+ message?: string | undefined;
2665
+ }, {
2666
+ success: boolean;
2667
+ message?: string | undefined;
2668
+ }>;
3
2669
  /** Payload returned by GET /api/program-requirements/programs-and-keywords */
4
- export interface ProgramsAndKeywordsData {
5
- distinctPrograms?: IProgramWithId[];
6
- keywordsets?: IKeywordsetWithId[];
7
- }
2670
+ export type ProgramsAndKeywordsData = z.infer<typeof ProgramsAndKeywordsDataSchema>;
8
2671
  /** GET /api/program-requirements */
9
- export type GetProgramRequirementsResponse = ApiResponse<IProgramrequirementWithId[]>;
2672
+ export type GetProgramRequirementsResponse = z.infer<typeof GetProgramRequirementsResponseSchema>;
10
2673
  /**
11
2674
  * GET /api/program-requirements/:programRequirementId
12
2675
  * Non-standard: data wraps requirement + supporting lists
13
2676
  */
14
- export interface GetProgramRequirementResponse {
15
- success: boolean;
16
- data?: {
17
- requirement: IProgramrequirementWithId;
18
- distinctPrograms?: IProgramWithId[];
19
- keywordsets?: IKeywordsetWithId[];
20
- };
21
- }
2677
+ export type GetProgramRequirementResponse = z.infer<typeof GetProgramRequirementResponseSchema>;
22
2678
  /** GET /api/program-requirements/programs-and-keywords */
23
- export type GetProgramsAndKeywordSetsResponse = ApiResponse<ProgramsAndKeywordsData>;
2679
+ export type GetProgramsAndKeywordSetsResponse = z.infer<typeof GetProgramsAndKeywordSetsResponseSchema>;
24
2680
  /** POST /api/program-requirements/new */
25
- export type CreateProgramRequirementResponse = ApiResponse<IProgramrequirementWithId>;
2681
+ export type CreateProgramRequirementResponse = z.infer<typeof CreateProgramRequirementResponseSchema>;
26
2682
  /** PUT /api/program-requirements/:programRequirementId */
27
- export type UpdateProgramRequirementResponse = ApiResponse<IProgramrequirementWithId>;
2683
+ export type UpdateProgramRequirementResponse = z.infer<typeof UpdateProgramRequirementResponseSchema>;
28
2684
  /** DELETE /api/program-requirements/:programRequirementId */
29
- export type DeleteProgramRequirementResponse = SuccessResponse;
2685
+ export type DeleteProgramRequirementResponse = z.infer<typeof DeleteProgramRequirementResponseSchema>;