@taiger-common/model 1.0.42 → 1.0.45

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 (36) hide show
  1. package/dist/cjs/model/Application.js +2 -1
  2. package/dist/cjs/model/Program.js +3 -5
  3. package/dist/cjs/model/index.js +0 -1
  4. package/dist/esm/model/Application.js +2 -1
  5. package/dist/esm/model/Program.js +3 -5
  6. package/dist/esm/model/index.js +0 -1
  7. package/dist/types/model/Allcourse.d.ts +4 -26
  8. package/dist/types/model/Application.d.ts +51 -157
  9. package/dist/types/model/Audit.d.ts +15 -43
  10. package/dist/types/model/Basedocumentationslink.d.ts +11 -16
  11. package/dist/types/model/Communication.d.ts +20 -71
  12. package/dist/types/model/Complaint.d.ts +24 -170
  13. package/dist/types/model/Course.d.ts +23 -49
  14. package/dist/types/model/Docspage.d.ts +14 -37
  15. package/dist/types/model/Documentation.d.ts +15 -28
  16. package/dist/types/model/Documentthread.d.ts +32 -181
  17. package/dist/types/model/Event.d.ts +14 -54
  18. package/dist/types/model/Internaldoc.d.ts +15 -28
  19. package/dist/types/model/Interval.d.ts +13 -26
  20. package/dist/types/model/Interview.d.ts +18 -50
  21. package/dist/types/model/InterviewSurveyResponse.d.ts +17 -62
  22. package/dist/types/model/Keywordset.d.ts +14 -44
  23. package/dist/types/model/Note.d.ts +10 -13
  24. package/dist/types/model/Permission.d.ts +20 -56
  25. package/dist/types/model/Program.d.ts +85 -255
  26. package/dist/types/model/Programrequirement.d.ts +37 -140
  27. package/dist/types/model/ResponseTime.d.ts +10 -17
  28. package/dist/types/model/SurveyInput.d.ts +21 -90
  29. package/dist/types/model/Template.d.ts +8 -13
  30. package/dist/types/model/Tenant.d.ts +10 -13
  31. package/dist/types/model/Ticket.d.ts +14 -38
  32. package/dist/types/model/Token.d.ts +9 -12
  33. package/dist/types/model/User.d.ts +199 -1
  34. package/dist/types/model/index.d.ts +0 -1
  35. package/dist/umd/index.js +1 -1
  36. package/package.json +1 -1
@@ -26,12 +26,89 @@
26
26
  import { Schema } from 'mongoose';
27
27
  export declare const PROGRAM_SUBJECT_KEYS: string[];
28
28
  export declare const DIFFICULTY_KEYS: string[];
29
+ export interface IProgram {
30
+ isArchiv?: boolean;
31
+ isLocked?: boolean;
32
+ school: string;
33
+ program_name: string;
34
+ programSubjects?: string[];
35
+ degree?: string;
36
+ semester?: string;
37
+ lang?: string;
38
+ gpa_requirement?: string;
39
+ allowOnlyGraduatedApplicant?: boolean;
40
+ application_start?: string;
41
+ application_deadline?: string;
42
+ uni_assist?: string;
43
+ englishTestHandLater?: boolean;
44
+ toefl?: string;
45
+ toefl_reading?: number;
46
+ toefl_listening?: number;
47
+ toefl_writing?: number;
48
+ toefl_speaking?: number;
49
+ ielts?: string;
50
+ ielts_reading?: number;
51
+ ielts_listening?: number;
52
+ ielts_writing?: number;
53
+ ielts_speaking?: number;
54
+ germanTestHandLater?: boolean;
55
+ goetheZertifikat?: string;
56
+ testdaf?: string;
57
+ dsh?: string;
58
+ gre?: string;
59
+ gre_verbal?: number;
60
+ gre_quantitative?: number;
61
+ gre_analytical_writing?: number;
62
+ gmat?: string;
63
+ ml_required?: string;
64
+ ml_requirements?: string;
65
+ sop_required?: string;
66
+ sop_requirements?: string;
67
+ phs_required?: string;
68
+ phs_requirements?: string;
69
+ rl_required?: string;
70
+ rl_requirements?: string;
71
+ is_rl_specific?: boolean;
72
+ essay_required?: string;
73
+ essay_requirements?: string;
74
+ essay_difficulty?: string;
75
+ portfolio_required?: string;
76
+ portfolio_requirements?: string;
77
+ supplementary_form_required?: string;
78
+ supplementary_form_requirements?: string;
79
+ curriculum_analysis_required?: string;
80
+ curriculum_analysis_requirements?: string;
81
+ scholarship_form_required?: string;
82
+ scholarship_form_requirements?: string;
83
+ module_description_required?: string;
84
+ ects_requirements?: string;
85
+ special_notes?: string;
86
+ comments?: string;
87
+ application_portal_a?: string;
88
+ application_portal_b?: string;
89
+ application_portal_a_instructions?: string;
90
+ application_portal_b_instructions?: string;
91
+ uni_assist_link?: string;
92
+ website?: string;
93
+ fpso?: string;
94
+ updatedAt?: Date;
95
+ whoupdated?: string;
96
+ tuition_fees?: string;
97
+ contact?: string;
98
+ city?: string;
99
+ country?: string;
100
+ isPrivateSchool?: boolean;
101
+ isPartnerSchool?: boolean;
102
+ schoolType?: string;
103
+ isEssayConsultantNeeded?: boolean;
104
+ tags?: string[];
105
+ url?: string;
106
+ isNC?: boolean;
107
+ zipCode?: string;
108
+ vcId?: Schema.Types.ObjectId;
109
+ }
29
110
  export declare const programModule: {
30
111
  isArchiv: BooleanConstructor;
31
- isLocked: {
32
- type: BooleanConstructor;
33
- default: boolean;
34
- };
35
112
  school: {
36
113
  type: StringConstructor;
37
114
  default: string;
@@ -268,258 +345,11 @@ export declare const programModule: {
268
345
  };
269
346
  vcId: typeof Schema.Types.ObjectId;
270
347
  };
271
- export declare const programSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
272
- timestamps: true;
273
- }, {
274
- createdAt: NativeDate;
275
- updatedAt: NativeDate;
276
- } & {
277
- isEssayConsultantNeeded: boolean;
278
- isLocked: boolean;
279
- school: string;
280
- program_name: string;
281
- programSubjects: string[];
282
- allowOnlyGraduatedApplicant: boolean;
283
- englishTestHandLater: boolean;
284
- germanTestHandLater: boolean;
285
- city: string;
286
- tags: string[];
287
- isNC: boolean;
288
- zipCode: string;
289
- updatedAt?: NativeDate | null | undefined;
290
- uni_assist?: string | null | undefined;
291
- application_portal_a?: string | null | undefined;
292
- application_portal_b?: string | null | undefined;
293
- comments?: string | null | undefined;
294
- country?: string | null | undefined;
295
- isArchiv?: boolean | null | undefined;
296
- degree?: string | null | undefined;
297
- semester?: string | null | undefined;
298
- lang?: string | null | undefined;
299
- gpa_requirement?: string | null | undefined;
300
- application_start?: string | null | undefined;
301
- application_deadline?: string | null | undefined;
302
- toefl?: string | null | undefined;
303
- toefl_reading?: number | null | undefined;
304
- toefl_listening?: number | null | undefined;
305
- toefl_writing?: number | null | undefined;
306
- toefl_speaking?: number | null | undefined;
307
- ielts?: string | null | undefined;
308
- ielts_reading?: number | null | undefined;
309
- ielts_listening?: number | null | undefined;
310
- ielts_writing?: number | null | undefined;
311
- ielts_speaking?: number | null | undefined;
312
- goetheZertifikat?: string | null | undefined;
313
- testdaf?: string | null | undefined;
314
- dsh?: string | null | undefined;
315
- gre?: string | null | undefined;
316
- gre_verbal?: number | null | undefined;
317
- gre_quantitative?: number | null | undefined;
318
- gre_analytical_writing?: number | null | undefined;
319
- gmat?: string | null | undefined;
320
- ml_required?: string | null | undefined;
321
- ml_requirements?: string | null | undefined;
322
- sop_required?: string | null | undefined;
323
- sop_requirements?: string | null | undefined;
324
- phs_required?: string | null | undefined;
325
- phs_requirements?: string | null | undefined;
326
- rl_required?: string | null | undefined;
327
- rl_requirements?: string | null | undefined;
328
- is_rl_specific?: boolean | null | undefined;
329
- essay_required?: string | null | undefined;
330
- essay_requirements?: string | null | undefined;
331
- essay_difficulty?: string | null | undefined;
332
- portfolio_required?: string | null | undefined;
333
- portfolio_requirements?: string | null | undefined;
334
- supplementary_form_required?: string | null | undefined;
335
- supplementary_form_requirements?: string | null | undefined;
336
- curriculum_analysis_required?: string | null | undefined;
337
- curriculum_analysis_requirements?: string | null | undefined;
338
- scholarship_form_required?: string | null | undefined;
339
- scholarship_form_requirements?: string | null | undefined;
340
- module_description_required?: string | null | undefined;
341
- ects_requirements?: string | null | undefined;
342
- special_notes?: string | null | undefined;
343
- application_portal_a_instructions?: string | null | undefined;
344
- application_portal_b_instructions?: string | null | undefined;
345
- uni_assist_link?: string | null | undefined;
346
- website?: string | null | undefined;
347
- fpso?: string | null | undefined;
348
- whoupdated?: string | null | undefined;
349
- tuition_fees?: string | null | undefined;
350
- contact?: string | null | undefined;
351
- isPrivateSchool?: boolean | null | undefined;
352
- isPartnerSchool?: boolean | null | undefined;
353
- schoolType?: import("@taiger-common/core").SchoolType | null | undefined;
354
- url?: string | null | undefined;
355
- vcId?: import("mongoose").Types.ObjectId | null | undefined;
356
- }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
357
- createdAt: NativeDate;
358
- updatedAt: NativeDate;
359
- } & {
360
- isEssayConsultantNeeded: boolean;
361
- isLocked: boolean;
362
- school: string;
363
- program_name: string;
364
- programSubjects: string[];
365
- allowOnlyGraduatedApplicant: boolean;
366
- englishTestHandLater: boolean;
367
- germanTestHandLater: boolean;
368
- city: string;
369
- tags: string[];
370
- isNC: boolean;
371
- zipCode: string;
372
- updatedAt?: NativeDate | null | undefined;
373
- uni_assist?: string | null | undefined;
374
- application_portal_a?: string | null | undefined;
375
- application_portal_b?: string | null | undefined;
376
- comments?: string | null | undefined;
377
- country?: string | null | undefined;
378
- isArchiv?: boolean | null | undefined;
379
- degree?: string | null | undefined;
380
- semester?: string | null | undefined;
381
- lang?: string | null | undefined;
382
- gpa_requirement?: string | null | undefined;
383
- application_start?: string | null | undefined;
384
- application_deadline?: string | null | undefined;
385
- toefl?: string | null | undefined;
386
- toefl_reading?: number | null | undefined;
387
- toefl_listening?: number | null | undefined;
388
- toefl_writing?: number | null | undefined;
389
- toefl_speaking?: number | null | undefined;
390
- ielts?: string | null | undefined;
391
- ielts_reading?: number | null | undefined;
392
- ielts_listening?: number | null | undefined;
393
- ielts_writing?: number | null | undefined;
394
- ielts_speaking?: number | null | undefined;
395
- goetheZertifikat?: string | null | undefined;
396
- testdaf?: string | null | undefined;
397
- dsh?: string | null | undefined;
398
- gre?: string | null | undefined;
399
- gre_verbal?: number | null | undefined;
400
- gre_quantitative?: number | null | undefined;
401
- gre_analytical_writing?: number | null | undefined;
402
- gmat?: string | null | undefined;
403
- ml_required?: string | null | undefined;
404
- ml_requirements?: string | null | undefined;
405
- sop_required?: string | null | undefined;
406
- sop_requirements?: string | null | undefined;
407
- phs_required?: string | null | undefined;
408
- phs_requirements?: string | null | undefined;
409
- rl_required?: string | null | undefined;
410
- rl_requirements?: string | null | undefined;
411
- is_rl_specific?: boolean | null | undefined;
412
- essay_required?: string | null | undefined;
413
- essay_requirements?: string | null | undefined;
414
- essay_difficulty?: string | null | undefined;
415
- portfolio_required?: string | null | undefined;
416
- portfolio_requirements?: string | null | undefined;
417
- supplementary_form_required?: string | null | undefined;
418
- supplementary_form_requirements?: string | null | undefined;
419
- curriculum_analysis_required?: string | null | undefined;
420
- curriculum_analysis_requirements?: string | null | undefined;
421
- scholarship_form_required?: string | null | undefined;
422
- scholarship_form_requirements?: string | null | undefined;
423
- module_description_required?: string | null | undefined;
424
- ects_requirements?: string | null | undefined;
425
- special_notes?: string | null | undefined;
426
- application_portal_a_instructions?: string | null | undefined;
427
- application_portal_b_instructions?: string | null | undefined;
428
- uni_assist_link?: string | null | undefined;
429
- website?: string | null | undefined;
430
- fpso?: string | null | undefined;
431
- whoupdated?: string | null | undefined;
432
- tuition_fees?: string | null | undefined;
433
- contact?: string | null | undefined;
434
- isPrivateSchool?: boolean | null | undefined;
435
- isPartnerSchool?: boolean | null | undefined;
436
- schoolType?: import("@taiger-common/core").SchoolType | null | undefined;
437
- url?: string | null | undefined;
438
- vcId?: import("mongoose").Types.ObjectId | null | undefined;
439
- }>> & import("mongoose").FlatRecord<{
440
- createdAt: NativeDate;
441
- updatedAt: NativeDate;
348
+ export declare const programSchema: Schema<IProgram, import("mongoose").Model<IProgram, any, any, any, import("mongoose").Document<unknown, any, IProgram> & IProgram & {
349
+ _id: import("mongoose").Types.ObjectId;
442
350
  } & {
443
- isEssayConsultantNeeded: boolean;
444
- isLocked: boolean;
445
- school: string;
446
- program_name: string;
447
- programSubjects: string[];
448
- allowOnlyGraduatedApplicant: boolean;
449
- englishTestHandLater: boolean;
450
- germanTestHandLater: boolean;
451
- city: string;
452
- tags: string[];
453
- isNC: boolean;
454
- zipCode: string;
455
- updatedAt?: NativeDate | null | undefined;
456
- uni_assist?: string | null | undefined;
457
- application_portal_a?: string | null | undefined;
458
- application_portal_b?: string | null | undefined;
459
- comments?: string | null | undefined;
460
- country?: string | null | undefined;
461
- isArchiv?: boolean | null | undefined;
462
- degree?: string | null | undefined;
463
- semester?: string | null | undefined;
464
- lang?: string | null | undefined;
465
- gpa_requirement?: string | null | undefined;
466
- application_start?: string | null | undefined;
467
- application_deadline?: string | null | undefined;
468
- toefl?: string | null | undefined;
469
- toefl_reading?: number | null | undefined;
470
- toefl_listening?: number | null | undefined;
471
- toefl_writing?: number | null | undefined;
472
- toefl_speaking?: number | null | undefined;
473
- ielts?: string | null | undefined;
474
- ielts_reading?: number | null | undefined;
475
- ielts_listening?: number | null | undefined;
476
- ielts_writing?: number | null | undefined;
477
- ielts_speaking?: number | null | undefined;
478
- goetheZertifikat?: string | null | undefined;
479
- testdaf?: string | null | undefined;
480
- dsh?: string | null | undefined;
481
- gre?: string | null | undefined;
482
- gre_verbal?: number | null | undefined;
483
- gre_quantitative?: number | null | undefined;
484
- gre_analytical_writing?: number | null | undefined;
485
- gmat?: string | null | undefined;
486
- ml_required?: string | null | undefined;
487
- ml_requirements?: string | null | undefined;
488
- sop_required?: string | null | undefined;
489
- sop_requirements?: string | null | undefined;
490
- phs_required?: string | null | undefined;
491
- phs_requirements?: string | null | undefined;
492
- rl_required?: string | null | undefined;
493
- rl_requirements?: string | null | undefined;
494
- is_rl_specific?: boolean | null | undefined;
495
- essay_required?: string | null | undefined;
496
- essay_requirements?: string | null | undefined;
497
- essay_difficulty?: string | null | undefined;
498
- portfolio_required?: string | null | undefined;
499
- portfolio_requirements?: string | null | undefined;
500
- supplementary_form_required?: string | null | undefined;
501
- supplementary_form_requirements?: string | null | undefined;
502
- curriculum_analysis_required?: string | null | undefined;
503
- curriculum_analysis_requirements?: string | null | undefined;
504
- scholarship_form_required?: string | null | undefined;
505
- scholarship_form_requirements?: string | null | undefined;
506
- module_description_required?: string | null | undefined;
507
- ects_requirements?: string | null | undefined;
508
- special_notes?: string | null | undefined;
509
- application_portal_a_instructions?: string | null | undefined;
510
- application_portal_b_instructions?: string | null | undefined;
511
- uni_assist_link?: string | null | undefined;
512
- website?: string | null | undefined;
513
- fpso?: string | null | undefined;
514
- whoupdated?: string | null | undefined;
515
- tuition_fees?: string | null | undefined;
516
- contact?: string | null | undefined;
517
- isPrivateSchool?: boolean | null | undefined;
518
- isPartnerSchool?: boolean | null | undefined;
519
- schoolType?: import("@taiger-common/core").SchoolType | null | undefined;
520
- url?: string | null | undefined;
521
- vcId?: import("mongoose").Types.ObjectId | null | undefined;
522
- }> & {
351
+ __v: number;
352
+ }, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IProgram, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<IProgram>> & import("mongoose").FlatRecord<IProgram> & {
523
353
  _id: import("mongoose").Types.ObjectId;
524
354
  } & {
525
355
  __v: number;
@@ -24,147 +24,44 @@
24
24
  /// <reference types="mongoose/types/inferschematype" />
25
25
  /// <reference types="mongoose/types/inferrawdoctype" />
26
26
  import { Schema } from 'mongoose';
27
- export declare const programRequirementSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
28
- timestamps: true;
29
- }, {
30
- createdAt: NativeDate;
31
- updatedAt: NativeDate;
32
- } & {
33
- programId: import("mongoose").Types.ObjectId[];
34
- program_categories: import("mongoose").Types.DocumentArray<{
35
- program_category: string;
36
- category_description: string;
37
- requiredECTS: number;
38
- keywordSets: import("mongoose").Types.ObjectId[];
39
- maxScore: number;
40
- }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
41
- program_category: string;
42
- category_description: string;
43
- requiredECTS: number;
44
- keywordSets: import("mongoose").Types.ObjectId[];
45
- maxScore: number;
46
- }> & {
47
- program_category: string;
48
- category_description: string;
49
- requiredECTS: number;
50
- keywordSets: import("mongoose").Types.ObjectId[];
51
- maxScore: number;
52
- }>;
53
- attributes: string[];
54
- admissionDescription: string;
55
- gpaScoreBoundaryGPA: number;
56
- gpaScore: number;
57
- gpaMinScore: number;
58
- coursesScore: number;
59
- cvScore: number;
60
- mlScore: number;
61
- rlScore: number;
62
- essayScore: number;
63
- gmatScore: number;
64
- greScore: number;
65
- interviewScore: number;
66
- workExperienceScore: number;
67
- testScore: number;
68
- firstRoundConsidered: string[];
69
- secondRoundConsidered: string[];
70
- directRejectionScore: number;
71
- directAdmissionScore: number;
72
- directRejectionSecondScore: number;
73
- directAdmissionSecondScore: number;
74
- fpso?: string | null | undefined;
75
- }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
76
- createdAt: NativeDate;
77
- updatedAt: NativeDate;
78
- } & {
79
- programId: import("mongoose").Types.ObjectId[];
80
- program_categories: import("mongoose").Types.DocumentArray<{
81
- program_category: string;
82
- category_description: string;
83
- requiredECTS: number;
84
- keywordSets: import("mongoose").Types.ObjectId[];
85
- maxScore: number;
86
- }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
87
- program_category: string;
88
- category_description: string;
89
- requiredECTS: number;
90
- keywordSets: import("mongoose").Types.ObjectId[];
91
- maxScore: number;
92
- }> & {
93
- program_category: string;
94
- category_description: string;
95
- requiredECTS: number;
96
- keywordSets: import("mongoose").Types.ObjectId[];
97
- maxScore: number;
98
- }>;
99
- attributes: string[];
100
- admissionDescription: string;
101
- gpaScoreBoundaryGPA: number;
102
- gpaScore: number;
103
- gpaMinScore: number;
104
- coursesScore: number;
105
- cvScore: number;
106
- mlScore: number;
107
- rlScore: number;
108
- essayScore: number;
109
- gmatScore: number;
110
- greScore: number;
111
- interviewScore: number;
112
- workExperienceScore: number;
113
- testScore: number;
114
- firstRoundConsidered: string[];
115
- secondRoundConsidered: string[];
116
- directRejectionScore: number;
117
- directAdmissionScore: number;
118
- directRejectionSecondScore: number;
119
- directAdmissionSecondScore: number;
120
- fpso?: string | null | undefined;
121
- }>> & import("mongoose").FlatRecord<{
122
- createdAt: NativeDate;
123
- updatedAt: NativeDate;
27
+ export interface IProgramrequirementProgramCategory {
28
+ program_category?: string;
29
+ category_description?: string;
30
+ requiredECTS?: number;
31
+ keywordSets?: Schema.Types.ObjectId[];
32
+ maxScore?: number;
33
+ }
34
+ export interface IProgramrequirement {
35
+ programId?: Schema.Types.ObjectId[];
36
+ program_categories?: IProgramrequirementProgramCategory[];
37
+ attributes?: string[];
38
+ fpso?: string;
39
+ admissionDescription?: string;
40
+ gpaScoreBoundaryGPA?: number;
41
+ gpaScore?: number;
42
+ gpaMinScore?: number;
43
+ coursesScore?: number;
44
+ cvScore?: number;
45
+ mlScore?: number;
46
+ rlScore?: number;
47
+ essayScore?: number;
48
+ gmatScore?: number;
49
+ greScore?: number;
50
+ interviewScore?: number;
51
+ workExperienceScore?: number;
52
+ testScore?: number;
53
+ firstRoundConsidered?: string[];
54
+ secondRoundConsidered?: string[];
55
+ directRejectionScore?: number;
56
+ directAdmissionScore?: number;
57
+ directRejectionSecondScore?: number;
58
+ directAdmissionSecondScore?: number;
59
+ }
60
+ export declare const programRequirementSchema: Schema<IProgramrequirement, import("mongoose").Model<IProgramrequirement, any, any, any, import("mongoose").Document<unknown, any, IProgramrequirement> & IProgramrequirement & {
61
+ _id: import("mongoose").Types.ObjectId;
124
62
  } & {
125
- programId: import("mongoose").Types.ObjectId[];
126
- program_categories: import("mongoose").Types.DocumentArray<{
127
- program_category: string;
128
- category_description: string;
129
- requiredECTS: number;
130
- keywordSets: import("mongoose").Types.ObjectId[];
131
- maxScore: number;
132
- }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
133
- program_category: string;
134
- category_description: string;
135
- requiredECTS: number;
136
- keywordSets: import("mongoose").Types.ObjectId[];
137
- maxScore: number;
138
- }> & {
139
- program_category: string;
140
- category_description: string;
141
- requiredECTS: number;
142
- keywordSets: import("mongoose").Types.ObjectId[];
143
- maxScore: number;
144
- }>;
145
- attributes: string[];
146
- admissionDescription: string;
147
- gpaScoreBoundaryGPA: number;
148
- gpaScore: number;
149
- gpaMinScore: number;
150
- coursesScore: number;
151
- cvScore: number;
152
- mlScore: number;
153
- rlScore: number;
154
- essayScore: number;
155
- gmatScore: number;
156
- greScore: number;
157
- interviewScore: number;
158
- workExperienceScore: number;
159
- testScore: number;
160
- firstRoundConsidered: string[];
161
- secondRoundConsidered: string[];
162
- directRejectionScore: number;
163
- directAdmissionScore: number;
164
- directRejectionSecondScore: number;
165
- directAdmissionSecondScore: number;
166
- fpso?: string | null | undefined;
167
- }> & {
63
+ __v: number;
64
+ }, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IProgramrequirement, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<IProgramrequirement>> & import("mongoose").FlatRecord<IProgramrequirement> & {
168
65
  _id: import("mongoose").Types.ObjectId;
169
66
  } & {
170
67
  __v: number;
@@ -24,25 +24,18 @@
24
24
  /// <reference types="mongoose/types/inferschematype" />
25
25
  /// <reference types="mongoose/types/inferrawdoctype" />
26
26
  import { Schema } from 'mongoose';
27
- export declare const ResponseTimeSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, {
28
- updatedAt: NativeDate;
27
+ export interface IResponseTime {
28
+ thread_id?: Schema.Types.ObjectId;
29
+ student_id?: Schema.Types.ObjectId;
29
30
  interval_type: string;
30
31
  intervalAvg: number;
31
- student_id?: import("mongoose").Types.ObjectId | null | undefined;
32
- thread_id?: import("mongoose").Types.ObjectId | null | undefined;
33
- }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
34
- updatedAt: NativeDate;
35
- interval_type: string;
36
- intervalAvg: number;
37
- student_id?: import("mongoose").Types.ObjectId | null | undefined;
38
- thread_id?: import("mongoose").Types.ObjectId | null | undefined;
39
- }>> & import("mongoose").FlatRecord<{
40
- updatedAt: NativeDate;
41
- interval_type: string;
42
- intervalAvg: number;
43
- student_id?: import("mongoose").Types.ObjectId | null | undefined;
44
- thread_id?: import("mongoose").Types.ObjectId | null | undefined;
45
- }> & {
32
+ updatedAt?: Date;
33
+ }
34
+ export declare const ResponseTimeSchema: Schema<IResponseTime, import("mongoose").Model<IResponseTime, any, any, any, import("mongoose").Document<unknown, any, IResponseTime> & IResponseTime & {
35
+ _id: import("mongoose").Types.ObjectId;
36
+ } & {
37
+ __v: number;
38
+ }, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, IResponseTime, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<IResponseTime>> & import("mongoose").FlatRecord<IResponseTime> & {
46
39
  _id: import("mongoose").Types.ObjectId;
47
40
  } & {
48
41
  __v: number;