@taiger-common/model 1.0.47 → 1.0.49

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,36 @@
1
+ /// <reference types="mongoose/types/aggregate" />
2
+ /// <reference types="mongoose/types/callback" />
3
+ /// <reference types="mongoose/types/collection" />
4
+ /// <reference types="mongoose/types/connection" />
5
+ /// <reference types="mongoose/types/cursor" />
6
+ /// <reference types="mongoose/types/document" />
7
+ /// <reference types="mongoose/types/error" />
8
+ /// <reference types="mongoose/types/expressions" />
9
+ /// <reference types="mongoose/types/helpers" />
10
+ /// <reference types="mongoose/types/middlewares" />
11
+ /// <reference types="mongoose/types/indexes" />
12
+ /// <reference types="mongoose/types/models" />
13
+ /// <reference types="mongoose/types/mongooseoptions" />
14
+ /// <reference types="mongoose/types/pipelinestage" />
15
+ /// <reference types="mongoose/types/populate" />
16
+ /// <reference types="mongoose/types/query" />
17
+ /// <reference types="mongoose/types/schemaoptions" />
18
+ /// <reference types="mongoose/types/schematypes" />
19
+ /// <reference types="mongoose/types/session" />
20
+ /// <reference types="mongoose/types/types" />
21
+ /// <reference types="mongoose/types/utility" />
22
+ /// <reference types="mongoose/types/validation" />
23
+ /// <reference types="mongoose/types/virtuals" />
24
+ /// <reference types="mongoose/types/inferschematype" />
25
+ /// <reference types="mongoose/types/inferrawdoctype" />
1
26
  import { Schema } from 'mongoose';
27
+ export declare enum DocumentStatusType {
28
+ Uploaded = "uploaded",
29
+ Missing = "missing",
30
+ Accepted = "accepted",
31
+ Rejected = "rejected",
32
+ NotNeeded = "notneeded"
33
+ }
2
34
  export interface IUserNotification {
3
35
  isRead_survey_not_complete?: boolean;
4
36
  isRead_uni_assist_task_assigned?: boolean;
@@ -198,3 +230,1917 @@ export interface IExternal extends IUser {
198
230
  can_add_articles?: boolean;
199
231
  };
200
232
  }
233
+ export declare const ManagerType: {
234
+ Agent: string;
235
+ Editor: string;
236
+ AgentAndEditor: string;
237
+ None: string;
238
+ };
239
+ export declare const options: {
240
+ discriminatorKey: string;
241
+ timestamps: boolean;
242
+ };
243
+ export declare const attributeSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, {
244
+ name: string;
245
+ value: number;
246
+ }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
247
+ name: string;
248
+ value: number;
249
+ }>> & import("mongoose").FlatRecord<{
250
+ name: string;
251
+ value: number;
252
+ }> & {
253
+ _id: import("mongoose").Types.ObjectId;
254
+ } & {
255
+ __v: number;
256
+ }>;
257
+ export declare const userSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
258
+ discriminatorKey: string;
259
+ timestamps: boolean;
260
+ }, {
261
+ role: string;
262
+ archiv: boolean;
263
+ birthday: string;
264
+ isAccountActivated: boolean;
265
+ password?: string | null | undefined;
266
+ linkedIn?: string | null | undefined;
267
+ lineId?: string | null | undefined;
268
+ lastLoginAt?: NativeDate | null | undefined;
269
+ firstname?: string | null | undefined;
270
+ firstname_chinese?: string | null | undefined;
271
+ lastname?: string | null | undefined;
272
+ lastname_chinese?: string | null | undefined;
273
+ email?: string | null | undefined;
274
+ pictureUrl?: string | null | undefined;
275
+ notification?: {
276
+ isRead_survey_not_complete: boolean;
277
+ isRead_uni_assist_task_assigned: boolean;
278
+ isRead_new_agent_assigned: boolean;
279
+ isRead_new_editor_assigned: boolean;
280
+ isRead_new_cvmlrl_tasks_created: boolean;
281
+ isRead_new_cvmlrl_messsage: boolean;
282
+ isRead_base_documents_missing: boolean;
283
+ isRead_base_documents_rejected: boolean;
284
+ isRead_new_programs_assigned: boolean;
285
+ } | null | undefined;
286
+ taigerai?: {
287
+ feedback?: {
288
+ message: string;
289
+ updatedAt?: NativeDate | null | undefined;
290
+ } | null | undefined;
291
+ input?: {
292
+ path: string;
293
+ name: string;
294
+ status: DocumentStatusType;
295
+ file_category: string;
296
+ updatedAt?: NativeDate | null | undefined;
297
+ } | null | undefined;
298
+ output?: {
299
+ path: string;
300
+ name: string;
301
+ status: DocumentStatusType;
302
+ file_category: string;
303
+ updatedAt?: NativeDate | null | undefined;
304
+ } | null | undefined;
305
+ } | null | undefined;
306
+ application_preference?: {
307
+ expected_application_date: string;
308
+ expected_application_semester: string;
309
+ target_program_language: string;
310
+ target_application_field: string;
311
+ targetApplicationSubjects: string[];
312
+ target_degree: string;
313
+ considered_privat_universities: string;
314
+ special_wished: string;
315
+ application_outside_germany: string;
316
+ updatedAt?: NativeDate | null | undefined;
317
+ } | null | undefined;
318
+ academic_background?: {
319
+ university?: {
320
+ high_school_isGraduated: string;
321
+ attended_high_school: string;
322
+ high_school_graduated_year: string;
323
+ attended_university: string;
324
+ attended_university_program: string;
325
+ isGraduated: string;
326
+ expected_grad_date: string;
327
+ Has_Exchange_Experience: string;
328
+ isSecondGraduated: string;
329
+ expectedSecondDegreeGradDate: string;
330
+ attendedSecondDegreeUniversity: string;
331
+ attendedSecondDegreeProgram: string;
332
+ Has_Internship_Experience: string;
333
+ Has_Working_Experience: string;
334
+ updatedAt?: NativeDate | null | undefined;
335
+ Highest_GPA_Uni?: number | null | undefined;
336
+ Passing_GPA_Uni?: number | null | undefined;
337
+ My_GPA_Uni?: number | null | undefined;
338
+ highestSecondDegreeGPA?: number | null | undefined;
339
+ passingSecondDegreeGPA?: number | null | undefined;
340
+ mySecondDegreeGPA?: number | null | undefined;
341
+ } | null | undefined;
342
+ language?: {
343
+ english_isPassed: string;
344
+ english_certificate: string;
345
+ english_score: string;
346
+ english_score_reading: string;
347
+ english_score_listening: string;
348
+ english_score_writing: string;
349
+ english_score_speaking: string;
350
+ english_test_date: string;
351
+ german_isPassed: string;
352
+ german_certificate: string;
353
+ german_score: string;
354
+ german_test_date: string;
355
+ gre_isPassed: string;
356
+ gre_certificate: string;
357
+ gre_score: string;
358
+ gre_test_date: string;
359
+ gmat_isPassed: string;
360
+ gmat_certificate: string;
361
+ gmat_score: string;
362
+ gmat_test_date: string;
363
+ updatedAt?: NativeDate | null | undefined;
364
+ } | null | undefined;
365
+ } | null | undefined;
366
+ } | ({
367
+ createdAt: NativeDate;
368
+ updatedAt: NativeDate;
369
+ } & {
370
+ role: string;
371
+ archiv: boolean;
372
+ birthday: string;
373
+ isAccountActivated: boolean;
374
+ password?: string | null | undefined;
375
+ linkedIn?: string | null | undefined;
376
+ lineId?: string | null | undefined;
377
+ lastLoginAt?: NativeDate | null | undefined;
378
+ firstname?: string | null | undefined;
379
+ firstname_chinese?: string | null | undefined;
380
+ lastname?: string | null | undefined;
381
+ lastname_chinese?: string | null | undefined;
382
+ email?: string | null | undefined;
383
+ pictureUrl?: string | null | undefined;
384
+ notification?: {
385
+ isRead_survey_not_complete: boolean;
386
+ isRead_uni_assist_task_assigned: boolean;
387
+ isRead_new_agent_assigned: boolean;
388
+ isRead_new_editor_assigned: boolean;
389
+ isRead_new_cvmlrl_tasks_created: boolean;
390
+ isRead_new_cvmlrl_messsage: boolean;
391
+ isRead_base_documents_missing: boolean;
392
+ isRead_base_documents_rejected: boolean;
393
+ isRead_new_programs_assigned: boolean;
394
+ } | null | undefined;
395
+ taigerai?: {
396
+ feedback?: {
397
+ message: string;
398
+ updatedAt?: NativeDate | null | undefined;
399
+ } | null | undefined;
400
+ input?: {
401
+ path: string;
402
+ name: string;
403
+ status: DocumentStatusType;
404
+ file_category: string;
405
+ updatedAt?: NativeDate | null | undefined;
406
+ } | null | undefined;
407
+ output?: {
408
+ path: string;
409
+ name: string;
410
+ status: DocumentStatusType;
411
+ file_category: string;
412
+ updatedAt?: NativeDate | null | undefined;
413
+ } | null | undefined;
414
+ } | null | undefined;
415
+ application_preference?: {
416
+ expected_application_date: string;
417
+ expected_application_semester: string;
418
+ target_program_language: string;
419
+ target_application_field: string;
420
+ targetApplicationSubjects: string[];
421
+ target_degree: string;
422
+ considered_privat_universities: string;
423
+ special_wished: string;
424
+ application_outside_germany: string;
425
+ updatedAt?: NativeDate | null | undefined;
426
+ } | null | undefined;
427
+ academic_background?: {
428
+ university?: {
429
+ high_school_isGraduated: string;
430
+ attended_high_school: string;
431
+ high_school_graduated_year: string;
432
+ attended_university: string;
433
+ attended_university_program: string;
434
+ isGraduated: string;
435
+ expected_grad_date: string;
436
+ Has_Exchange_Experience: string;
437
+ isSecondGraduated: string;
438
+ expectedSecondDegreeGradDate: string;
439
+ attendedSecondDegreeUniversity: string;
440
+ attendedSecondDegreeProgram: string;
441
+ Has_Internship_Experience: string;
442
+ Has_Working_Experience: string;
443
+ updatedAt?: NativeDate | null | undefined;
444
+ Highest_GPA_Uni?: number | null | undefined;
445
+ Passing_GPA_Uni?: number | null | undefined;
446
+ My_GPA_Uni?: number | null | undefined;
447
+ highestSecondDegreeGPA?: number | null | undefined;
448
+ passingSecondDegreeGPA?: number | null | undefined;
449
+ mySecondDegreeGPA?: number | null | undefined;
450
+ } | null | undefined;
451
+ language?: {
452
+ english_isPassed: string;
453
+ english_certificate: string;
454
+ english_score: string;
455
+ english_score_reading: string;
456
+ english_score_listening: string;
457
+ english_score_writing: string;
458
+ english_score_speaking: string;
459
+ english_test_date: string;
460
+ german_isPassed: string;
461
+ german_certificate: string;
462
+ german_score: string;
463
+ german_test_date: string;
464
+ gre_isPassed: string;
465
+ gre_certificate: string;
466
+ gre_score: string;
467
+ gre_test_date: string;
468
+ gmat_isPassed: string;
469
+ gmat_certificate: string;
470
+ gmat_score: string;
471
+ gmat_test_date: string;
472
+ updatedAt?: NativeDate | null | undefined;
473
+ } | null | undefined;
474
+ } | null | undefined;
475
+ }), import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
476
+ role: string;
477
+ archiv: boolean;
478
+ birthday: string;
479
+ isAccountActivated: boolean;
480
+ password?: string | null | undefined;
481
+ linkedIn?: string | null | undefined;
482
+ lineId?: string | null | undefined;
483
+ lastLoginAt?: NativeDate | null | undefined;
484
+ firstname?: string | null | undefined;
485
+ firstname_chinese?: string | null | undefined;
486
+ lastname?: string | null | undefined;
487
+ lastname_chinese?: string | null | undefined;
488
+ email?: string | null | undefined;
489
+ pictureUrl?: string | null | undefined;
490
+ notification?: {
491
+ isRead_survey_not_complete: boolean;
492
+ isRead_uni_assist_task_assigned: boolean;
493
+ isRead_new_agent_assigned: boolean;
494
+ isRead_new_editor_assigned: boolean;
495
+ isRead_new_cvmlrl_tasks_created: boolean;
496
+ isRead_new_cvmlrl_messsage: boolean;
497
+ isRead_base_documents_missing: boolean;
498
+ isRead_base_documents_rejected: boolean;
499
+ isRead_new_programs_assigned: boolean;
500
+ } | null | undefined;
501
+ taigerai?: {
502
+ feedback?: {
503
+ message: string;
504
+ updatedAt?: NativeDate | null | undefined;
505
+ } | null | undefined;
506
+ input?: {
507
+ path: string;
508
+ name: string;
509
+ status: DocumentStatusType;
510
+ file_category: string;
511
+ updatedAt?: NativeDate | null | undefined;
512
+ } | null | undefined;
513
+ output?: {
514
+ path: string;
515
+ name: string;
516
+ status: DocumentStatusType;
517
+ file_category: string;
518
+ updatedAt?: NativeDate | null | undefined;
519
+ } | null | undefined;
520
+ } | null | undefined;
521
+ application_preference?: {
522
+ expected_application_date: string;
523
+ expected_application_semester: string;
524
+ target_program_language: string;
525
+ target_application_field: string;
526
+ targetApplicationSubjects: string[];
527
+ target_degree: string;
528
+ considered_privat_universities: string;
529
+ special_wished: string;
530
+ application_outside_germany: string;
531
+ updatedAt?: NativeDate | null | undefined;
532
+ } | null | undefined;
533
+ academic_background?: {
534
+ university?: {
535
+ high_school_isGraduated: string;
536
+ attended_high_school: string;
537
+ high_school_graduated_year: string;
538
+ attended_university: string;
539
+ attended_university_program: string;
540
+ isGraduated: string;
541
+ expected_grad_date: string;
542
+ Has_Exchange_Experience: string;
543
+ isSecondGraduated: string;
544
+ expectedSecondDegreeGradDate: string;
545
+ attendedSecondDegreeUniversity: string;
546
+ attendedSecondDegreeProgram: string;
547
+ Has_Internship_Experience: string;
548
+ Has_Working_Experience: string;
549
+ updatedAt?: NativeDate | null | undefined;
550
+ Highest_GPA_Uni?: number | null | undefined;
551
+ Passing_GPA_Uni?: number | null | undefined;
552
+ My_GPA_Uni?: number | null | undefined;
553
+ highestSecondDegreeGPA?: number | null | undefined;
554
+ passingSecondDegreeGPA?: number | null | undefined;
555
+ mySecondDegreeGPA?: number | null | undefined;
556
+ } | null | undefined;
557
+ language?: {
558
+ english_isPassed: string;
559
+ english_certificate: string;
560
+ english_score: string;
561
+ english_score_reading: string;
562
+ english_score_listening: string;
563
+ english_score_writing: string;
564
+ english_score_speaking: string;
565
+ english_test_date: string;
566
+ german_isPassed: string;
567
+ german_certificate: string;
568
+ german_score: string;
569
+ german_test_date: string;
570
+ gre_isPassed: string;
571
+ gre_certificate: string;
572
+ gre_score: string;
573
+ gre_test_date: string;
574
+ gmat_isPassed: string;
575
+ gmat_certificate: string;
576
+ gmat_score: string;
577
+ gmat_test_date: string;
578
+ updatedAt?: NativeDate | null | undefined;
579
+ } | null | undefined;
580
+ } | null | undefined;
581
+ } | ({
582
+ createdAt: NativeDate;
583
+ updatedAt: NativeDate;
584
+ } & {
585
+ role: string;
586
+ archiv: boolean;
587
+ birthday: string;
588
+ isAccountActivated: boolean;
589
+ password?: string | null | undefined;
590
+ linkedIn?: string | null | undefined;
591
+ lineId?: string | null | undefined;
592
+ lastLoginAt?: NativeDate | null | undefined;
593
+ firstname?: string | null | undefined;
594
+ firstname_chinese?: string | null | undefined;
595
+ lastname?: string | null | undefined;
596
+ lastname_chinese?: string | null | undefined;
597
+ email?: string | null | undefined;
598
+ pictureUrl?: string | null | undefined;
599
+ notification?: {
600
+ isRead_survey_not_complete: boolean;
601
+ isRead_uni_assist_task_assigned: boolean;
602
+ isRead_new_agent_assigned: boolean;
603
+ isRead_new_editor_assigned: boolean;
604
+ isRead_new_cvmlrl_tasks_created: boolean;
605
+ isRead_new_cvmlrl_messsage: boolean;
606
+ isRead_base_documents_missing: boolean;
607
+ isRead_base_documents_rejected: boolean;
608
+ isRead_new_programs_assigned: boolean;
609
+ } | null | undefined;
610
+ taigerai?: {
611
+ feedback?: {
612
+ message: string;
613
+ updatedAt?: NativeDate | null | undefined;
614
+ } | null | undefined;
615
+ input?: {
616
+ path: string;
617
+ name: string;
618
+ status: DocumentStatusType;
619
+ file_category: string;
620
+ updatedAt?: NativeDate | null | undefined;
621
+ } | null | undefined;
622
+ output?: {
623
+ path: string;
624
+ name: string;
625
+ status: DocumentStatusType;
626
+ file_category: string;
627
+ updatedAt?: NativeDate | null | undefined;
628
+ } | null | undefined;
629
+ } | null | undefined;
630
+ application_preference?: {
631
+ expected_application_date: string;
632
+ expected_application_semester: string;
633
+ target_program_language: string;
634
+ target_application_field: string;
635
+ targetApplicationSubjects: string[];
636
+ target_degree: string;
637
+ considered_privat_universities: string;
638
+ special_wished: string;
639
+ application_outside_germany: string;
640
+ updatedAt?: NativeDate | null | undefined;
641
+ } | null | undefined;
642
+ academic_background?: {
643
+ university?: {
644
+ high_school_isGraduated: string;
645
+ attended_high_school: string;
646
+ high_school_graduated_year: string;
647
+ attended_university: string;
648
+ attended_university_program: string;
649
+ isGraduated: string;
650
+ expected_grad_date: string;
651
+ Has_Exchange_Experience: string;
652
+ isSecondGraduated: string;
653
+ expectedSecondDegreeGradDate: string;
654
+ attendedSecondDegreeUniversity: string;
655
+ attendedSecondDegreeProgram: string;
656
+ Has_Internship_Experience: string;
657
+ Has_Working_Experience: string;
658
+ updatedAt?: NativeDate | null | undefined;
659
+ Highest_GPA_Uni?: number | null | undefined;
660
+ Passing_GPA_Uni?: number | null | undefined;
661
+ My_GPA_Uni?: number | null | undefined;
662
+ highestSecondDegreeGPA?: number | null | undefined;
663
+ passingSecondDegreeGPA?: number | null | undefined;
664
+ mySecondDegreeGPA?: number | null | undefined;
665
+ } | null | undefined;
666
+ language?: {
667
+ english_isPassed: string;
668
+ english_certificate: string;
669
+ english_score: string;
670
+ english_score_reading: string;
671
+ english_score_listening: string;
672
+ english_score_writing: string;
673
+ english_score_speaking: string;
674
+ english_test_date: string;
675
+ german_isPassed: string;
676
+ german_certificate: string;
677
+ german_score: string;
678
+ german_test_date: string;
679
+ gre_isPassed: string;
680
+ gre_certificate: string;
681
+ gre_score: string;
682
+ gre_test_date: string;
683
+ gmat_isPassed: string;
684
+ gmat_certificate: string;
685
+ gmat_score: string;
686
+ gmat_test_date: string;
687
+ updatedAt?: NativeDate | null | undefined;
688
+ } | null | undefined;
689
+ } | null | undefined;
690
+ })>> & ((import("mongoose").FlatRecord<{
691
+ role: string;
692
+ archiv: boolean;
693
+ birthday: string;
694
+ isAccountActivated: boolean;
695
+ password?: string | null | undefined;
696
+ linkedIn?: string | null | undefined;
697
+ lineId?: string | null | undefined;
698
+ lastLoginAt?: NativeDate | null | undefined;
699
+ firstname?: string | null | undefined;
700
+ firstname_chinese?: string | null | undefined;
701
+ lastname?: string | null | undefined;
702
+ lastname_chinese?: string | null | undefined;
703
+ email?: string | null | undefined;
704
+ pictureUrl?: string | null | undefined;
705
+ notification?: {
706
+ isRead_survey_not_complete: boolean;
707
+ isRead_uni_assist_task_assigned: boolean;
708
+ isRead_new_agent_assigned: boolean;
709
+ isRead_new_editor_assigned: boolean;
710
+ isRead_new_cvmlrl_tasks_created: boolean;
711
+ isRead_new_cvmlrl_messsage: boolean;
712
+ isRead_base_documents_missing: boolean;
713
+ isRead_base_documents_rejected: boolean;
714
+ isRead_new_programs_assigned: boolean;
715
+ } | null | undefined;
716
+ taigerai?: {
717
+ feedback?: {
718
+ message: string;
719
+ updatedAt?: NativeDate | null | undefined;
720
+ } | null | undefined;
721
+ input?: {
722
+ path: string;
723
+ name: string;
724
+ status: DocumentStatusType;
725
+ file_category: string;
726
+ updatedAt?: NativeDate | null | undefined;
727
+ } | null | undefined;
728
+ output?: {
729
+ path: string;
730
+ name: string;
731
+ status: DocumentStatusType;
732
+ file_category: string;
733
+ updatedAt?: NativeDate | null | undefined;
734
+ } | null | undefined;
735
+ } | null | undefined;
736
+ application_preference?: {
737
+ expected_application_date: string;
738
+ expected_application_semester: string;
739
+ target_program_language: string;
740
+ target_application_field: string;
741
+ targetApplicationSubjects: string[];
742
+ target_degree: string;
743
+ considered_privat_universities: string;
744
+ special_wished: string;
745
+ application_outside_germany: string;
746
+ updatedAt?: NativeDate | null | undefined;
747
+ } | null | undefined;
748
+ academic_background?: {
749
+ university?: {
750
+ high_school_isGraduated: string;
751
+ attended_high_school: string;
752
+ high_school_graduated_year: string;
753
+ attended_university: string;
754
+ attended_university_program: string;
755
+ isGraduated: string;
756
+ expected_grad_date: string;
757
+ Has_Exchange_Experience: string;
758
+ isSecondGraduated: string;
759
+ expectedSecondDegreeGradDate: string;
760
+ attendedSecondDegreeUniversity: string;
761
+ attendedSecondDegreeProgram: string;
762
+ Has_Internship_Experience: string;
763
+ Has_Working_Experience: string;
764
+ updatedAt?: NativeDate | null | undefined;
765
+ Highest_GPA_Uni?: number | null | undefined;
766
+ Passing_GPA_Uni?: number | null | undefined;
767
+ My_GPA_Uni?: number | null | undefined;
768
+ highestSecondDegreeGPA?: number | null | undefined;
769
+ passingSecondDegreeGPA?: number | null | undefined;
770
+ mySecondDegreeGPA?: number | null | undefined;
771
+ } | null | undefined;
772
+ language?: {
773
+ english_isPassed: string;
774
+ english_certificate: string;
775
+ english_score: string;
776
+ english_score_reading: string;
777
+ english_score_listening: string;
778
+ english_score_writing: string;
779
+ english_score_speaking: string;
780
+ english_test_date: string;
781
+ german_isPassed: string;
782
+ german_certificate: string;
783
+ german_score: string;
784
+ german_test_date: string;
785
+ gre_isPassed: string;
786
+ gre_certificate: string;
787
+ gre_score: string;
788
+ gre_test_date: string;
789
+ gmat_isPassed: string;
790
+ gmat_certificate: string;
791
+ gmat_score: string;
792
+ gmat_test_date: string;
793
+ updatedAt?: NativeDate | null | undefined;
794
+ } | null | undefined;
795
+ } | null | undefined;
796
+ }> & {
797
+ _id: import("mongoose").Types.ObjectId;
798
+ } & {
799
+ __v: number;
800
+ }) | (import("mongoose").FlatRecord<{
801
+ createdAt: NativeDate;
802
+ updatedAt: NativeDate;
803
+ } & {
804
+ role: string;
805
+ archiv: boolean;
806
+ birthday: string;
807
+ isAccountActivated: boolean;
808
+ password?: string | null | undefined;
809
+ linkedIn?: string | null | undefined;
810
+ lineId?: string | null | undefined;
811
+ lastLoginAt?: NativeDate | null | undefined;
812
+ firstname?: string | null | undefined;
813
+ firstname_chinese?: string | null | undefined;
814
+ lastname?: string | null | undefined;
815
+ lastname_chinese?: string | null | undefined;
816
+ email?: string | null | undefined;
817
+ pictureUrl?: string | null | undefined;
818
+ notification?: {
819
+ isRead_survey_not_complete: boolean;
820
+ isRead_uni_assist_task_assigned: boolean;
821
+ isRead_new_agent_assigned: boolean;
822
+ isRead_new_editor_assigned: boolean;
823
+ isRead_new_cvmlrl_tasks_created: boolean;
824
+ isRead_new_cvmlrl_messsage: boolean;
825
+ isRead_base_documents_missing: boolean;
826
+ isRead_base_documents_rejected: boolean;
827
+ isRead_new_programs_assigned: boolean;
828
+ } | null | undefined;
829
+ taigerai?: {
830
+ feedback?: {
831
+ message: string;
832
+ updatedAt?: NativeDate | null | undefined;
833
+ } | null | undefined;
834
+ input?: {
835
+ path: string;
836
+ name: string;
837
+ status: DocumentStatusType;
838
+ file_category: string;
839
+ updatedAt?: NativeDate | null | undefined;
840
+ } | null | undefined;
841
+ output?: {
842
+ path: string;
843
+ name: string;
844
+ status: DocumentStatusType;
845
+ file_category: string;
846
+ updatedAt?: NativeDate | null | undefined;
847
+ } | null | undefined;
848
+ } | null | undefined;
849
+ application_preference?: {
850
+ expected_application_date: string;
851
+ expected_application_semester: string;
852
+ target_program_language: string;
853
+ target_application_field: string;
854
+ targetApplicationSubjects: string[];
855
+ target_degree: string;
856
+ considered_privat_universities: string;
857
+ special_wished: string;
858
+ application_outside_germany: string;
859
+ updatedAt?: NativeDate | null | undefined;
860
+ } | null | undefined;
861
+ academic_background?: {
862
+ university?: {
863
+ high_school_isGraduated: string;
864
+ attended_high_school: string;
865
+ high_school_graduated_year: string;
866
+ attended_university: string;
867
+ attended_university_program: string;
868
+ isGraduated: string;
869
+ expected_grad_date: string;
870
+ Has_Exchange_Experience: string;
871
+ isSecondGraduated: string;
872
+ expectedSecondDegreeGradDate: string;
873
+ attendedSecondDegreeUniversity: string;
874
+ attendedSecondDegreeProgram: string;
875
+ Has_Internship_Experience: string;
876
+ Has_Working_Experience: string;
877
+ updatedAt?: NativeDate | null | undefined;
878
+ Highest_GPA_Uni?: number | null | undefined;
879
+ Passing_GPA_Uni?: number | null | undefined;
880
+ My_GPA_Uni?: number | null | undefined;
881
+ highestSecondDegreeGPA?: number | null | undefined;
882
+ passingSecondDegreeGPA?: number | null | undefined;
883
+ mySecondDegreeGPA?: number | null | undefined;
884
+ } | null | undefined;
885
+ language?: {
886
+ english_isPassed: string;
887
+ english_certificate: string;
888
+ english_score: string;
889
+ english_score_reading: string;
890
+ english_score_listening: string;
891
+ english_score_writing: string;
892
+ english_score_speaking: string;
893
+ english_test_date: string;
894
+ german_isPassed: string;
895
+ german_certificate: string;
896
+ german_score: string;
897
+ german_test_date: string;
898
+ gre_isPassed: string;
899
+ gre_certificate: string;
900
+ gre_score: string;
901
+ gre_test_date: string;
902
+ gmat_isPassed: string;
903
+ gmat_certificate: string;
904
+ gmat_score: string;
905
+ gmat_test_date: string;
906
+ updatedAt?: NativeDate | null | undefined;
907
+ } | null | undefined;
908
+ } | null | undefined;
909
+ }> & {
910
+ _id: import("mongoose").Types.ObjectId;
911
+ } & {
912
+ __v: number;
913
+ }))>;
914
+ export declare const studentSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
915
+ discriminatorKey: string;
916
+ timestamps: boolean;
917
+ }, {
918
+ attributes: import("mongoose").Types.DocumentArray<{
919
+ required?: unknown;
920
+ type?: {
921
+ name: string;
922
+ value: number;
923
+ } | null | undefined;
924
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
925
+ required?: unknown;
926
+ type?: {
927
+ name: string;
928
+ value: number;
929
+ } | null | undefined;
930
+ }> & {
931
+ required?: unknown;
932
+ type?: {
933
+ name: string;
934
+ value: number;
935
+ } | null | undefined;
936
+ }>;
937
+ agents: import("mongoose").Types.ObjectId[];
938
+ editors: import("mongoose").Types.ObjectId[];
939
+ needEditor: boolean;
940
+ applying_program_count: number;
941
+ profile: import("mongoose").Types.DocumentArray<{
942
+ path: string;
943
+ required: boolean;
944
+ name: string;
945
+ status: DocumentStatusType;
946
+ feedback: string;
947
+ updatedAt?: NativeDate | null | undefined;
948
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
949
+ path: string;
950
+ required: boolean;
951
+ name: string;
952
+ status: DocumentStatusType;
953
+ feedback: string;
954
+ updatedAt?: NativeDate | null | undefined;
955
+ }> & {
956
+ path: string;
957
+ required: boolean;
958
+ name: string;
959
+ status: DocumentStatusType;
960
+ feedback: string;
961
+ updatedAt?: NativeDate | null | undefined;
962
+ }>;
963
+ generaldocs_threads: import("mongoose").Types.DocumentArray<{
964
+ isFinalVersion: boolean;
965
+ latest_message_left_by_id: string;
966
+ updatedAt?: NativeDate | null | undefined;
967
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
968
+ createdAt?: NativeDate | null | undefined;
969
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
970
+ isFinalVersion: boolean;
971
+ latest_message_left_by_id: string;
972
+ updatedAt?: NativeDate | null | undefined;
973
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
974
+ createdAt?: NativeDate | null | undefined;
975
+ }> & {
976
+ isFinalVersion: boolean;
977
+ latest_message_left_by_id: string;
978
+ updatedAt?: NativeDate | null | undefined;
979
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
980
+ createdAt?: NativeDate | null | undefined;
981
+ }>;
982
+ } | ({
983
+ createdAt: NativeDate;
984
+ updatedAt: NativeDate;
985
+ } & {
986
+ attributes: import("mongoose").Types.DocumentArray<{
987
+ required?: unknown;
988
+ type?: {
989
+ name: string;
990
+ value: number;
991
+ } | null | undefined;
992
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
993
+ required?: unknown;
994
+ type?: {
995
+ name: string;
996
+ value: number;
997
+ } | null | undefined;
998
+ }> & {
999
+ required?: unknown;
1000
+ type?: {
1001
+ name: string;
1002
+ value: number;
1003
+ } | null | undefined;
1004
+ }>;
1005
+ agents: import("mongoose").Types.ObjectId[];
1006
+ editors: import("mongoose").Types.ObjectId[];
1007
+ needEditor: boolean;
1008
+ applying_program_count: number;
1009
+ profile: import("mongoose").Types.DocumentArray<{
1010
+ path: string;
1011
+ required: boolean;
1012
+ name: string;
1013
+ status: DocumentStatusType;
1014
+ feedback: string;
1015
+ updatedAt?: NativeDate | null | undefined;
1016
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1017
+ path: string;
1018
+ required: boolean;
1019
+ name: string;
1020
+ status: DocumentStatusType;
1021
+ feedback: string;
1022
+ updatedAt?: NativeDate | null | undefined;
1023
+ }> & {
1024
+ path: string;
1025
+ required: boolean;
1026
+ name: string;
1027
+ status: DocumentStatusType;
1028
+ feedback: string;
1029
+ updatedAt?: NativeDate | null | undefined;
1030
+ }>;
1031
+ generaldocs_threads: import("mongoose").Types.DocumentArray<{
1032
+ isFinalVersion: boolean;
1033
+ latest_message_left_by_id: string;
1034
+ updatedAt?: NativeDate | null | undefined;
1035
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1036
+ createdAt?: NativeDate | null | undefined;
1037
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1038
+ isFinalVersion: boolean;
1039
+ latest_message_left_by_id: string;
1040
+ updatedAt?: NativeDate | null | undefined;
1041
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1042
+ createdAt?: NativeDate | null | undefined;
1043
+ }> & {
1044
+ isFinalVersion: boolean;
1045
+ latest_message_left_by_id: string;
1046
+ updatedAt?: NativeDate | null | undefined;
1047
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1048
+ createdAt?: NativeDate | null | undefined;
1049
+ }>;
1050
+ }), import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
1051
+ attributes: import("mongoose").Types.DocumentArray<{
1052
+ required?: unknown;
1053
+ type?: {
1054
+ name: string;
1055
+ value: number;
1056
+ } | null | undefined;
1057
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1058
+ required?: unknown;
1059
+ type?: {
1060
+ name: string;
1061
+ value: number;
1062
+ } | null | undefined;
1063
+ }> & {
1064
+ required?: unknown;
1065
+ type?: {
1066
+ name: string;
1067
+ value: number;
1068
+ } | null | undefined;
1069
+ }>;
1070
+ agents: import("mongoose").Types.ObjectId[];
1071
+ editors: import("mongoose").Types.ObjectId[];
1072
+ needEditor: boolean;
1073
+ applying_program_count: number;
1074
+ profile: import("mongoose").Types.DocumentArray<{
1075
+ path: string;
1076
+ required: boolean;
1077
+ name: string;
1078
+ status: DocumentStatusType;
1079
+ feedback: string;
1080
+ updatedAt?: NativeDate | null | undefined;
1081
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1082
+ path: string;
1083
+ required: boolean;
1084
+ name: string;
1085
+ status: DocumentStatusType;
1086
+ feedback: string;
1087
+ updatedAt?: NativeDate | null | undefined;
1088
+ }> & {
1089
+ path: string;
1090
+ required: boolean;
1091
+ name: string;
1092
+ status: DocumentStatusType;
1093
+ feedback: string;
1094
+ updatedAt?: NativeDate | null | undefined;
1095
+ }>;
1096
+ generaldocs_threads: import("mongoose").Types.DocumentArray<{
1097
+ isFinalVersion: boolean;
1098
+ latest_message_left_by_id: string;
1099
+ updatedAt?: NativeDate | null | undefined;
1100
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1101
+ createdAt?: NativeDate | null | undefined;
1102
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1103
+ isFinalVersion: boolean;
1104
+ latest_message_left_by_id: string;
1105
+ updatedAt?: NativeDate | null | undefined;
1106
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1107
+ createdAt?: NativeDate | null | undefined;
1108
+ }> & {
1109
+ isFinalVersion: boolean;
1110
+ latest_message_left_by_id: string;
1111
+ updatedAt?: NativeDate | null | undefined;
1112
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1113
+ createdAt?: NativeDate | null | undefined;
1114
+ }>;
1115
+ } | ({
1116
+ createdAt: NativeDate;
1117
+ updatedAt: NativeDate;
1118
+ } & {
1119
+ attributes: import("mongoose").Types.DocumentArray<{
1120
+ required?: unknown;
1121
+ type?: {
1122
+ name: string;
1123
+ value: number;
1124
+ } | null | undefined;
1125
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1126
+ required?: unknown;
1127
+ type?: {
1128
+ name: string;
1129
+ value: number;
1130
+ } | null | undefined;
1131
+ }> & {
1132
+ required?: unknown;
1133
+ type?: {
1134
+ name: string;
1135
+ value: number;
1136
+ } | null | undefined;
1137
+ }>;
1138
+ agents: import("mongoose").Types.ObjectId[];
1139
+ editors: import("mongoose").Types.ObjectId[];
1140
+ needEditor: boolean;
1141
+ applying_program_count: number;
1142
+ profile: import("mongoose").Types.DocumentArray<{
1143
+ path: string;
1144
+ required: boolean;
1145
+ name: string;
1146
+ status: DocumentStatusType;
1147
+ feedback: string;
1148
+ updatedAt?: NativeDate | null | undefined;
1149
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1150
+ path: string;
1151
+ required: boolean;
1152
+ name: string;
1153
+ status: DocumentStatusType;
1154
+ feedback: string;
1155
+ updatedAt?: NativeDate | null | undefined;
1156
+ }> & {
1157
+ path: string;
1158
+ required: boolean;
1159
+ name: string;
1160
+ status: DocumentStatusType;
1161
+ feedback: string;
1162
+ updatedAt?: NativeDate | null | undefined;
1163
+ }>;
1164
+ generaldocs_threads: import("mongoose").Types.DocumentArray<{
1165
+ isFinalVersion: boolean;
1166
+ latest_message_left_by_id: string;
1167
+ updatedAt?: NativeDate | null | undefined;
1168
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1169
+ createdAt?: NativeDate | null | undefined;
1170
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1171
+ isFinalVersion: boolean;
1172
+ latest_message_left_by_id: string;
1173
+ updatedAt?: NativeDate | null | undefined;
1174
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1175
+ createdAt?: NativeDate | null | undefined;
1176
+ }> & {
1177
+ isFinalVersion: boolean;
1178
+ latest_message_left_by_id: string;
1179
+ updatedAt?: NativeDate | null | undefined;
1180
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1181
+ createdAt?: NativeDate | null | undefined;
1182
+ }>;
1183
+ })>> & ((import("mongoose").FlatRecord<{
1184
+ attributes: import("mongoose").Types.DocumentArray<{
1185
+ required?: unknown;
1186
+ type?: {
1187
+ name: string;
1188
+ value: number;
1189
+ } | null | undefined;
1190
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1191
+ required?: unknown;
1192
+ type?: {
1193
+ name: string;
1194
+ value: number;
1195
+ } | null | undefined;
1196
+ }> & {
1197
+ required?: unknown;
1198
+ type?: {
1199
+ name: string;
1200
+ value: number;
1201
+ } | null | undefined;
1202
+ }>;
1203
+ agents: import("mongoose").Types.ObjectId[];
1204
+ editors: import("mongoose").Types.ObjectId[];
1205
+ needEditor: boolean;
1206
+ applying_program_count: number;
1207
+ profile: import("mongoose").Types.DocumentArray<{
1208
+ path: string;
1209
+ required: boolean;
1210
+ name: string;
1211
+ status: DocumentStatusType;
1212
+ feedback: string;
1213
+ updatedAt?: NativeDate | null | undefined;
1214
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1215
+ path: string;
1216
+ required: boolean;
1217
+ name: string;
1218
+ status: DocumentStatusType;
1219
+ feedback: string;
1220
+ updatedAt?: NativeDate | null | undefined;
1221
+ }> & {
1222
+ path: string;
1223
+ required: boolean;
1224
+ name: string;
1225
+ status: DocumentStatusType;
1226
+ feedback: string;
1227
+ updatedAt?: NativeDate | null | undefined;
1228
+ }>;
1229
+ generaldocs_threads: import("mongoose").Types.DocumentArray<{
1230
+ isFinalVersion: boolean;
1231
+ latest_message_left_by_id: string;
1232
+ updatedAt?: NativeDate | null | undefined;
1233
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1234
+ createdAt?: NativeDate | null | undefined;
1235
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1236
+ isFinalVersion: boolean;
1237
+ latest_message_left_by_id: string;
1238
+ updatedAt?: NativeDate | null | undefined;
1239
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1240
+ createdAt?: NativeDate | null | undefined;
1241
+ }> & {
1242
+ isFinalVersion: boolean;
1243
+ latest_message_left_by_id: string;
1244
+ updatedAt?: NativeDate | null | undefined;
1245
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1246
+ createdAt?: NativeDate | null | undefined;
1247
+ }>;
1248
+ }> & {
1249
+ _id: import("mongoose").Types.ObjectId;
1250
+ } & {
1251
+ __v: number;
1252
+ }) | (import("mongoose").FlatRecord<{
1253
+ createdAt: NativeDate;
1254
+ updatedAt: NativeDate;
1255
+ } & {
1256
+ attributes: import("mongoose").Types.DocumentArray<{
1257
+ required?: unknown;
1258
+ type?: {
1259
+ name: string;
1260
+ value: number;
1261
+ } | null | undefined;
1262
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1263
+ required?: unknown;
1264
+ type?: {
1265
+ name: string;
1266
+ value: number;
1267
+ } | null | undefined;
1268
+ }> & {
1269
+ required?: unknown;
1270
+ type?: {
1271
+ name: string;
1272
+ value: number;
1273
+ } | null | undefined;
1274
+ }>;
1275
+ agents: import("mongoose").Types.ObjectId[];
1276
+ editors: import("mongoose").Types.ObjectId[];
1277
+ needEditor: boolean;
1278
+ applying_program_count: number;
1279
+ profile: import("mongoose").Types.DocumentArray<{
1280
+ path: string;
1281
+ required: boolean;
1282
+ name: string;
1283
+ status: DocumentStatusType;
1284
+ feedback: string;
1285
+ updatedAt?: NativeDate | null | undefined;
1286
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1287
+ path: string;
1288
+ required: boolean;
1289
+ name: string;
1290
+ status: DocumentStatusType;
1291
+ feedback: string;
1292
+ updatedAt?: NativeDate | null | undefined;
1293
+ }> & {
1294
+ path: string;
1295
+ required: boolean;
1296
+ name: string;
1297
+ status: DocumentStatusType;
1298
+ feedback: string;
1299
+ updatedAt?: NativeDate | null | undefined;
1300
+ }>;
1301
+ generaldocs_threads: import("mongoose").Types.DocumentArray<{
1302
+ isFinalVersion: boolean;
1303
+ latest_message_left_by_id: string;
1304
+ updatedAt?: NativeDate | null | undefined;
1305
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1306
+ createdAt?: NativeDate | null | undefined;
1307
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1308
+ isFinalVersion: boolean;
1309
+ latest_message_left_by_id: string;
1310
+ updatedAt?: NativeDate | null | undefined;
1311
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1312
+ createdAt?: NativeDate | null | undefined;
1313
+ }> & {
1314
+ isFinalVersion: boolean;
1315
+ latest_message_left_by_id: string;
1316
+ updatedAt?: NativeDate | null | undefined;
1317
+ doc_thread_id?: import("mongoose").Types.ObjectId | null | undefined;
1318
+ createdAt?: NativeDate | null | undefined;
1319
+ }>;
1320
+ }> & {
1321
+ _id: import("mongoose").Types.ObjectId;
1322
+ } & {
1323
+ __v: number;
1324
+ }))>;
1325
+ export declare const externalSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
1326
+ discriminatorKey: string;
1327
+ timestamps: boolean;
1328
+ }, {
1329
+ attribute?: {
1330
+ can_update_program_list: boolean;
1331
+ can_update_course_analysis: boolean;
1332
+ can_add_articles: boolean;
1333
+ } | null | undefined;
1334
+ } | ({
1335
+ createdAt: NativeDate;
1336
+ updatedAt: NativeDate;
1337
+ } & {
1338
+ attribute?: {
1339
+ can_update_program_list: boolean;
1340
+ can_update_course_analysis: boolean;
1341
+ can_add_articles: boolean;
1342
+ } | null | undefined;
1343
+ }), import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
1344
+ attribute?: {
1345
+ can_update_program_list: boolean;
1346
+ can_update_course_analysis: boolean;
1347
+ can_add_articles: boolean;
1348
+ } | null | undefined;
1349
+ } | ({
1350
+ createdAt: NativeDate;
1351
+ updatedAt: NativeDate;
1352
+ } & {
1353
+ attribute?: {
1354
+ can_update_program_list: boolean;
1355
+ can_update_course_analysis: boolean;
1356
+ can_add_articles: boolean;
1357
+ } | null | undefined;
1358
+ })>> & ((import("mongoose").FlatRecord<{
1359
+ attribute?: {
1360
+ can_update_program_list: boolean;
1361
+ can_update_course_analysis: boolean;
1362
+ can_add_articles: boolean;
1363
+ } | null | undefined;
1364
+ }> & {
1365
+ _id: import("mongoose").Types.ObjectId;
1366
+ } & {
1367
+ __v: number;
1368
+ }) | (import("mongoose").FlatRecord<{
1369
+ createdAt: NativeDate;
1370
+ updatedAt: NativeDate;
1371
+ } & {
1372
+ attribute?: {
1373
+ can_update_program_list: boolean;
1374
+ can_update_course_analysis: boolean;
1375
+ can_add_articles: boolean;
1376
+ } | null | undefined;
1377
+ }> & {
1378
+ _id: import("mongoose").Types.ObjectId;
1379
+ } & {
1380
+ __v: number;
1381
+ }))>;
1382
+ export declare const managerSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
1383
+ discriminatorKey: string;
1384
+ timestamps: boolean;
1385
+ }, {
1386
+ agents: import("mongoose").Types.ObjectId[];
1387
+ editors: import("mongoose").Types.ObjectId[];
1388
+ manager_type: string;
1389
+ attribute?: {
1390
+ can_write_ml: boolean;
1391
+ can_write_rl: boolean;
1392
+ can_write_cv: boolean;
1393
+ can_write_essay: boolean;
1394
+ can_do_interview: boolean;
1395
+ } | null | undefined;
1396
+ manager_notification?: {
1397
+ isRead_new_programs_assigned: boolean;
1398
+ isRead_new_base_docs_uploaded: import("mongoose").Types.DocumentArray<{
1399
+ student_id: string;
1400
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1401
+ student_id: string;
1402
+ }> & {
1403
+ student_id: string;
1404
+ }>;
1405
+ } | null | undefined;
1406
+ } | ({
1407
+ createdAt: NativeDate;
1408
+ updatedAt: NativeDate;
1409
+ } & {
1410
+ agents: import("mongoose").Types.ObjectId[];
1411
+ editors: import("mongoose").Types.ObjectId[];
1412
+ manager_type: string;
1413
+ attribute?: {
1414
+ can_write_ml: boolean;
1415
+ can_write_rl: boolean;
1416
+ can_write_cv: boolean;
1417
+ can_write_essay: boolean;
1418
+ can_do_interview: boolean;
1419
+ } | null | undefined;
1420
+ manager_notification?: {
1421
+ isRead_new_programs_assigned: boolean;
1422
+ isRead_new_base_docs_uploaded: import("mongoose").Types.DocumentArray<{
1423
+ student_id: string;
1424
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1425
+ student_id: string;
1426
+ }> & {
1427
+ student_id: string;
1428
+ }>;
1429
+ } | null | undefined;
1430
+ }), import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
1431
+ agents: import("mongoose").Types.ObjectId[];
1432
+ editors: import("mongoose").Types.ObjectId[];
1433
+ manager_type: string;
1434
+ attribute?: {
1435
+ can_write_ml: boolean;
1436
+ can_write_rl: boolean;
1437
+ can_write_cv: boolean;
1438
+ can_write_essay: boolean;
1439
+ can_do_interview: boolean;
1440
+ } | null | undefined;
1441
+ manager_notification?: {
1442
+ isRead_new_programs_assigned: boolean;
1443
+ isRead_new_base_docs_uploaded: import("mongoose").Types.DocumentArray<{
1444
+ student_id: string;
1445
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1446
+ student_id: string;
1447
+ }> & {
1448
+ student_id: string;
1449
+ }>;
1450
+ } | null | undefined;
1451
+ } | ({
1452
+ createdAt: NativeDate;
1453
+ updatedAt: NativeDate;
1454
+ } & {
1455
+ agents: import("mongoose").Types.ObjectId[];
1456
+ editors: import("mongoose").Types.ObjectId[];
1457
+ manager_type: string;
1458
+ attribute?: {
1459
+ can_write_ml: boolean;
1460
+ can_write_rl: boolean;
1461
+ can_write_cv: boolean;
1462
+ can_write_essay: boolean;
1463
+ can_do_interview: boolean;
1464
+ } | null | undefined;
1465
+ manager_notification?: {
1466
+ isRead_new_programs_assigned: boolean;
1467
+ isRead_new_base_docs_uploaded: import("mongoose").Types.DocumentArray<{
1468
+ student_id: string;
1469
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1470
+ student_id: string;
1471
+ }> & {
1472
+ student_id: string;
1473
+ }>;
1474
+ } | null | undefined;
1475
+ })>> & ((import("mongoose").FlatRecord<{
1476
+ agents: import("mongoose").Types.ObjectId[];
1477
+ editors: import("mongoose").Types.ObjectId[];
1478
+ manager_type: string;
1479
+ attribute?: {
1480
+ can_write_ml: boolean;
1481
+ can_write_rl: boolean;
1482
+ can_write_cv: boolean;
1483
+ can_write_essay: boolean;
1484
+ can_do_interview: boolean;
1485
+ } | null | undefined;
1486
+ manager_notification?: {
1487
+ isRead_new_programs_assigned: boolean;
1488
+ isRead_new_base_docs_uploaded: import("mongoose").Types.DocumentArray<{
1489
+ student_id: string;
1490
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1491
+ student_id: string;
1492
+ }> & {
1493
+ student_id: string;
1494
+ }>;
1495
+ } | null | undefined;
1496
+ }> & {
1497
+ _id: import("mongoose").Types.ObjectId;
1498
+ } & {
1499
+ __v: number;
1500
+ }) | (import("mongoose").FlatRecord<{
1501
+ createdAt: NativeDate;
1502
+ updatedAt: NativeDate;
1503
+ } & {
1504
+ agents: import("mongoose").Types.ObjectId[];
1505
+ editors: import("mongoose").Types.ObjectId[];
1506
+ manager_type: string;
1507
+ attribute?: {
1508
+ can_write_ml: boolean;
1509
+ can_write_rl: boolean;
1510
+ can_write_cv: boolean;
1511
+ can_write_essay: boolean;
1512
+ can_do_interview: boolean;
1513
+ } | null | undefined;
1514
+ manager_notification?: {
1515
+ isRead_new_programs_assigned: boolean;
1516
+ isRead_new_base_docs_uploaded: import("mongoose").Types.DocumentArray<{
1517
+ student_id: string;
1518
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1519
+ student_id: string;
1520
+ }> & {
1521
+ student_id: string;
1522
+ }>;
1523
+ } | null | undefined;
1524
+ }> & {
1525
+ _id: import("mongoose").Types.ObjectId;
1526
+ } & {
1527
+ __v: number;
1528
+ }))>;
1529
+ export declare const agentSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
1530
+ discriminatorKey: string;
1531
+ timestamps: boolean;
1532
+ }, {
1533
+ timezone: string;
1534
+ selfIntroduction: string;
1535
+ officehours?: {
1536
+ Monday?: {
1537
+ active: boolean;
1538
+ time_slots: any[];
1539
+ } | null | undefined;
1540
+ Tuesday?: {
1541
+ active: boolean;
1542
+ time_slots: any[];
1543
+ } | null | undefined;
1544
+ Wednesday?: {
1545
+ active: boolean;
1546
+ time_slots: any[];
1547
+ } | null | undefined;
1548
+ Thursday?: {
1549
+ active: boolean;
1550
+ time_slots: any[];
1551
+ } | null | undefined;
1552
+ Friday?: {
1553
+ active: boolean;
1554
+ time_slots: any[];
1555
+ } | null | undefined;
1556
+ Saturday?: {
1557
+ active: boolean;
1558
+ time_slots: any[];
1559
+ } | null | undefined;
1560
+ Sunday?: {
1561
+ active: boolean;
1562
+ time_slots: any[];
1563
+ } | null | undefined;
1564
+ } | null | undefined;
1565
+ agent_notification?: {
1566
+ isRead_new_programs_assigned: boolean;
1567
+ isRead_new_base_docs_uploaded: import("mongoose").Types.DocumentArray<{
1568
+ student_id: string;
1569
+ student_firstname: string;
1570
+ student_lastname: string;
1571
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1572
+ student_id: string;
1573
+ student_firstname: string;
1574
+ student_lastname: string;
1575
+ }> & {
1576
+ student_id: string;
1577
+ student_firstname: string;
1578
+ student_lastname: string;
1579
+ }>;
1580
+ isRead_new_survey_updated: boolean;
1581
+ isRead_applications_status_changed: boolean;
1582
+ } | null | undefined;
1583
+ } | ({
1584
+ createdAt: NativeDate;
1585
+ updatedAt: NativeDate;
1586
+ } & {
1587
+ timezone: string;
1588
+ selfIntroduction: string;
1589
+ officehours?: {
1590
+ Monday?: {
1591
+ active: boolean;
1592
+ time_slots: any[];
1593
+ } | null | undefined;
1594
+ Tuesday?: {
1595
+ active: boolean;
1596
+ time_slots: any[];
1597
+ } | null | undefined;
1598
+ Wednesday?: {
1599
+ active: boolean;
1600
+ time_slots: any[];
1601
+ } | null | undefined;
1602
+ Thursday?: {
1603
+ active: boolean;
1604
+ time_slots: any[];
1605
+ } | null | undefined;
1606
+ Friday?: {
1607
+ active: boolean;
1608
+ time_slots: any[];
1609
+ } | null | undefined;
1610
+ Saturday?: {
1611
+ active: boolean;
1612
+ time_slots: any[];
1613
+ } | null | undefined;
1614
+ Sunday?: {
1615
+ active: boolean;
1616
+ time_slots: any[];
1617
+ } | null | undefined;
1618
+ } | null | undefined;
1619
+ agent_notification?: {
1620
+ isRead_new_programs_assigned: boolean;
1621
+ isRead_new_base_docs_uploaded: import("mongoose").Types.DocumentArray<{
1622
+ student_id: string;
1623
+ student_firstname: string;
1624
+ student_lastname: string;
1625
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1626
+ student_id: string;
1627
+ student_firstname: string;
1628
+ student_lastname: string;
1629
+ }> & {
1630
+ student_id: string;
1631
+ student_firstname: string;
1632
+ student_lastname: string;
1633
+ }>;
1634
+ isRead_new_survey_updated: boolean;
1635
+ isRead_applications_status_changed: boolean;
1636
+ } | null | undefined;
1637
+ }), import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
1638
+ timezone: string;
1639
+ selfIntroduction: string;
1640
+ officehours?: {
1641
+ Monday?: {
1642
+ active: boolean;
1643
+ time_slots: any[];
1644
+ } | null | undefined;
1645
+ Tuesday?: {
1646
+ active: boolean;
1647
+ time_slots: any[];
1648
+ } | null | undefined;
1649
+ Wednesday?: {
1650
+ active: boolean;
1651
+ time_slots: any[];
1652
+ } | null | undefined;
1653
+ Thursday?: {
1654
+ active: boolean;
1655
+ time_slots: any[];
1656
+ } | null | undefined;
1657
+ Friday?: {
1658
+ active: boolean;
1659
+ time_slots: any[];
1660
+ } | null | undefined;
1661
+ Saturday?: {
1662
+ active: boolean;
1663
+ time_slots: any[];
1664
+ } | null | undefined;
1665
+ Sunday?: {
1666
+ active: boolean;
1667
+ time_slots: any[];
1668
+ } | null | undefined;
1669
+ } | null | undefined;
1670
+ agent_notification?: {
1671
+ isRead_new_programs_assigned: boolean;
1672
+ isRead_new_base_docs_uploaded: import("mongoose").Types.DocumentArray<{
1673
+ student_id: string;
1674
+ student_firstname: string;
1675
+ student_lastname: string;
1676
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1677
+ student_id: string;
1678
+ student_firstname: string;
1679
+ student_lastname: string;
1680
+ }> & {
1681
+ student_id: string;
1682
+ student_firstname: string;
1683
+ student_lastname: string;
1684
+ }>;
1685
+ isRead_new_survey_updated: boolean;
1686
+ isRead_applications_status_changed: boolean;
1687
+ } | null | undefined;
1688
+ } | ({
1689
+ createdAt: NativeDate;
1690
+ updatedAt: NativeDate;
1691
+ } & {
1692
+ timezone: string;
1693
+ selfIntroduction: string;
1694
+ officehours?: {
1695
+ Monday?: {
1696
+ active: boolean;
1697
+ time_slots: any[];
1698
+ } | null | undefined;
1699
+ Tuesday?: {
1700
+ active: boolean;
1701
+ time_slots: any[];
1702
+ } | null | undefined;
1703
+ Wednesday?: {
1704
+ active: boolean;
1705
+ time_slots: any[];
1706
+ } | null | undefined;
1707
+ Thursday?: {
1708
+ active: boolean;
1709
+ time_slots: any[];
1710
+ } | null | undefined;
1711
+ Friday?: {
1712
+ active: boolean;
1713
+ time_slots: any[];
1714
+ } | null | undefined;
1715
+ Saturday?: {
1716
+ active: boolean;
1717
+ time_slots: any[];
1718
+ } | null | undefined;
1719
+ Sunday?: {
1720
+ active: boolean;
1721
+ time_slots: any[];
1722
+ } | null | undefined;
1723
+ } | null | undefined;
1724
+ agent_notification?: {
1725
+ isRead_new_programs_assigned: boolean;
1726
+ isRead_new_base_docs_uploaded: import("mongoose").Types.DocumentArray<{
1727
+ student_id: string;
1728
+ student_firstname: string;
1729
+ student_lastname: string;
1730
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1731
+ student_id: string;
1732
+ student_firstname: string;
1733
+ student_lastname: string;
1734
+ }> & {
1735
+ student_id: string;
1736
+ student_firstname: string;
1737
+ student_lastname: string;
1738
+ }>;
1739
+ isRead_new_survey_updated: boolean;
1740
+ isRead_applications_status_changed: boolean;
1741
+ } | null | undefined;
1742
+ })>> & ((import("mongoose").FlatRecord<{
1743
+ timezone: string;
1744
+ selfIntroduction: string;
1745
+ officehours?: {
1746
+ Monday?: {
1747
+ active: boolean;
1748
+ time_slots: any[];
1749
+ } | null | undefined;
1750
+ Tuesday?: {
1751
+ active: boolean;
1752
+ time_slots: any[];
1753
+ } | null | undefined;
1754
+ Wednesday?: {
1755
+ active: boolean;
1756
+ time_slots: any[];
1757
+ } | null | undefined;
1758
+ Thursday?: {
1759
+ active: boolean;
1760
+ time_slots: any[];
1761
+ } | null | undefined;
1762
+ Friday?: {
1763
+ active: boolean;
1764
+ time_slots: any[];
1765
+ } | null | undefined;
1766
+ Saturday?: {
1767
+ active: boolean;
1768
+ time_slots: any[];
1769
+ } | null | undefined;
1770
+ Sunday?: {
1771
+ active: boolean;
1772
+ time_slots: any[];
1773
+ } | null | undefined;
1774
+ } | null | undefined;
1775
+ agent_notification?: {
1776
+ isRead_new_programs_assigned: boolean;
1777
+ isRead_new_base_docs_uploaded: import("mongoose").Types.DocumentArray<{
1778
+ student_id: string;
1779
+ student_firstname: string;
1780
+ student_lastname: string;
1781
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1782
+ student_id: string;
1783
+ student_firstname: string;
1784
+ student_lastname: string;
1785
+ }> & {
1786
+ student_id: string;
1787
+ student_firstname: string;
1788
+ student_lastname: string;
1789
+ }>;
1790
+ isRead_new_survey_updated: boolean;
1791
+ isRead_applications_status_changed: boolean;
1792
+ } | null | undefined;
1793
+ }> & {
1794
+ _id: import("mongoose").Types.ObjectId;
1795
+ } & {
1796
+ __v: number;
1797
+ }) | (import("mongoose").FlatRecord<{
1798
+ createdAt: NativeDate;
1799
+ updatedAt: NativeDate;
1800
+ } & {
1801
+ timezone: string;
1802
+ selfIntroduction: string;
1803
+ officehours?: {
1804
+ Monday?: {
1805
+ active: boolean;
1806
+ time_slots: any[];
1807
+ } | null | undefined;
1808
+ Tuesday?: {
1809
+ active: boolean;
1810
+ time_slots: any[];
1811
+ } | null | undefined;
1812
+ Wednesday?: {
1813
+ active: boolean;
1814
+ time_slots: any[];
1815
+ } | null | undefined;
1816
+ Thursday?: {
1817
+ active: boolean;
1818
+ time_slots: any[];
1819
+ } | null | undefined;
1820
+ Friday?: {
1821
+ active: boolean;
1822
+ time_slots: any[];
1823
+ } | null | undefined;
1824
+ Saturday?: {
1825
+ active: boolean;
1826
+ time_slots: any[];
1827
+ } | null | undefined;
1828
+ Sunday?: {
1829
+ active: boolean;
1830
+ time_slots: any[];
1831
+ } | null | undefined;
1832
+ } | null | undefined;
1833
+ agent_notification?: {
1834
+ isRead_new_programs_assigned: boolean;
1835
+ isRead_new_base_docs_uploaded: import("mongoose").Types.DocumentArray<{
1836
+ student_id: string;
1837
+ student_firstname: string;
1838
+ student_lastname: string;
1839
+ }, import("mongoose").Types.Subdocument<import("mongoose").Types.ObjectId, any, {
1840
+ student_id: string;
1841
+ student_firstname: string;
1842
+ student_lastname: string;
1843
+ }> & {
1844
+ student_id: string;
1845
+ student_firstname: string;
1846
+ student_lastname: string;
1847
+ }>;
1848
+ isRead_new_survey_updated: boolean;
1849
+ isRead_applications_status_changed: boolean;
1850
+ } | null | undefined;
1851
+ }> & {
1852
+ _id: import("mongoose").Types.ObjectId;
1853
+ } & {
1854
+ __v: number;
1855
+ }))>;
1856
+ export declare const editorSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
1857
+ discriminatorKey: string;
1858
+ timestamps: boolean;
1859
+ }, {
1860
+ timezone: string;
1861
+ officehours?: {
1862
+ Monday?: {
1863
+ active: boolean;
1864
+ time_slots: any[];
1865
+ } | null | undefined;
1866
+ Tuesday?: {
1867
+ active: boolean;
1868
+ time_slots: any[];
1869
+ } | null | undefined;
1870
+ Wednesday?: {
1871
+ active: boolean;
1872
+ time_slots: any[];
1873
+ } | null | undefined;
1874
+ Thursday?: {
1875
+ active: boolean;
1876
+ time_slots: any[];
1877
+ } | null | undefined;
1878
+ Friday?: {
1879
+ active: boolean;
1880
+ time_slots: any[];
1881
+ } | null | undefined;
1882
+ Saturday?: {
1883
+ active: boolean;
1884
+ time_slots: any[];
1885
+ } | null | undefined;
1886
+ Sunday?: {
1887
+ active: boolean;
1888
+ time_slots: any[];
1889
+ } | null | undefined;
1890
+ } | null | undefined;
1891
+ editor_notification?: {
1892
+ isRead_survey_not_complete: boolean;
1893
+ isRead_base_documents_missing: boolean;
1894
+ isRead_base_documents_rejected: boolean;
1895
+ isRead_new_programs_assigned: boolean;
1896
+ } | null | undefined;
1897
+ attribute?: {
1898
+ can_write_ml: boolean;
1899
+ can_write_rl: boolean;
1900
+ can_write_cv: boolean;
1901
+ can_write_essay: boolean;
1902
+ can_do_interview: boolean;
1903
+ } | null | undefined;
1904
+ } | ({
1905
+ createdAt: NativeDate;
1906
+ updatedAt: NativeDate;
1907
+ } & {
1908
+ timezone: string;
1909
+ officehours?: {
1910
+ Monday?: {
1911
+ active: boolean;
1912
+ time_slots: any[];
1913
+ } | null | undefined;
1914
+ Tuesday?: {
1915
+ active: boolean;
1916
+ time_slots: any[];
1917
+ } | null | undefined;
1918
+ Wednesday?: {
1919
+ active: boolean;
1920
+ time_slots: any[];
1921
+ } | null | undefined;
1922
+ Thursday?: {
1923
+ active: boolean;
1924
+ time_slots: any[];
1925
+ } | null | undefined;
1926
+ Friday?: {
1927
+ active: boolean;
1928
+ time_slots: any[];
1929
+ } | null | undefined;
1930
+ Saturday?: {
1931
+ active: boolean;
1932
+ time_slots: any[];
1933
+ } | null | undefined;
1934
+ Sunday?: {
1935
+ active: boolean;
1936
+ time_slots: any[];
1937
+ } | null | undefined;
1938
+ } | null | undefined;
1939
+ editor_notification?: {
1940
+ isRead_survey_not_complete: boolean;
1941
+ isRead_base_documents_missing: boolean;
1942
+ isRead_base_documents_rejected: boolean;
1943
+ isRead_new_programs_assigned: boolean;
1944
+ } | null | undefined;
1945
+ attribute?: {
1946
+ can_write_ml: boolean;
1947
+ can_write_rl: boolean;
1948
+ can_write_cv: boolean;
1949
+ can_write_essay: boolean;
1950
+ can_do_interview: boolean;
1951
+ } | null | undefined;
1952
+ }), import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
1953
+ timezone: string;
1954
+ officehours?: {
1955
+ Monday?: {
1956
+ active: boolean;
1957
+ time_slots: any[];
1958
+ } | null | undefined;
1959
+ Tuesday?: {
1960
+ active: boolean;
1961
+ time_slots: any[];
1962
+ } | null | undefined;
1963
+ Wednesday?: {
1964
+ active: boolean;
1965
+ time_slots: any[];
1966
+ } | null | undefined;
1967
+ Thursday?: {
1968
+ active: boolean;
1969
+ time_slots: any[];
1970
+ } | null | undefined;
1971
+ Friday?: {
1972
+ active: boolean;
1973
+ time_slots: any[];
1974
+ } | null | undefined;
1975
+ Saturday?: {
1976
+ active: boolean;
1977
+ time_slots: any[];
1978
+ } | null | undefined;
1979
+ Sunday?: {
1980
+ active: boolean;
1981
+ time_slots: any[];
1982
+ } | null | undefined;
1983
+ } | null | undefined;
1984
+ editor_notification?: {
1985
+ isRead_survey_not_complete: boolean;
1986
+ isRead_base_documents_missing: boolean;
1987
+ isRead_base_documents_rejected: boolean;
1988
+ isRead_new_programs_assigned: boolean;
1989
+ } | null | undefined;
1990
+ attribute?: {
1991
+ can_write_ml: boolean;
1992
+ can_write_rl: boolean;
1993
+ can_write_cv: boolean;
1994
+ can_write_essay: boolean;
1995
+ can_do_interview: boolean;
1996
+ } | null | undefined;
1997
+ } | ({
1998
+ createdAt: NativeDate;
1999
+ updatedAt: NativeDate;
2000
+ } & {
2001
+ timezone: string;
2002
+ officehours?: {
2003
+ Monday?: {
2004
+ active: boolean;
2005
+ time_slots: any[];
2006
+ } | null | undefined;
2007
+ Tuesday?: {
2008
+ active: boolean;
2009
+ time_slots: any[];
2010
+ } | null | undefined;
2011
+ Wednesday?: {
2012
+ active: boolean;
2013
+ time_slots: any[];
2014
+ } | null | undefined;
2015
+ Thursday?: {
2016
+ active: boolean;
2017
+ time_slots: any[];
2018
+ } | null | undefined;
2019
+ Friday?: {
2020
+ active: boolean;
2021
+ time_slots: any[];
2022
+ } | null | undefined;
2023
+ Saturday?: {
2024
+ active: boolean;
2025
+ time_slots: any[];
2026
+ } | null | undefined;
2027
+ Sunday?: {
2028
+ active: boolean;
2029
+ time_slots: any[];
2030
+ } | null | undefined;
2031
+ } | null | undefined;
2032
+ editor_notification?: {
2033
+ isRead_survey_not_complete: boolean;
2034
+ isRead_base_documents_missing: boolean;
2035
+ isRead_base_documents_rejected: boolean;
2036
+ isRead_new_programs_assigned: boolean;
2037
+ } | null | undefined;
2038
+ attribute?: {
2039
+ can_write_ml: boolean;
2040
+ can_write_rl: boolean;
2041
+ can_write_cv: boolean;
2042
+ can_write_essay: boolean;
2043
+ can_do_interview: boolean;
2044
+ } | null | undefined;
2045
+ })>> & ((import("mongoose").FlatRecord<{
2046
+ timezone: string;
2047
+ officehours?: {
2048
+ Monday?: {
2049
+ active: boolean;
2050
+ time_slots: any[];
2051
+ } | null | undefined;
2052
+ Tuesday?: {
2053
+ active: boolean;
2054
+ time_slots: any[];
2055
+ } | null | undefined;
2056
+ Wednesday?: {
2057
+ active: boolean;
2058
+ time_slots: any[];
2059
+ } | null | undefined;
2060
+ Thursday?: {
2061
+ active: boolean;
2062
+ time_slots: any[];
2063
+ } | null | undefined;
2064
+ Friday?: {
2065
+ active: boolean;
2066
+ time_slots: any[];
2067
+ } | null | undefined;
2068
+ Saturday?: {
2069
+ active: boolean;
2070
+ time_slots: any[];
2071
+ } | null | undefined;
2072
+ Sunday?: {
2073
+ active: boolean;
2074
+ time_slots: any[];
2075
+ } | null | undefined;
2076
+ } | null | undefined;
2077
+ editor_notification?: {
2078
+ isRead_survey_not_complete: boolean;
2079
+ isRead_base_documents_missing: boolean;
2080
+ isRead_base_documents_rejected: boolean;
2081
+ isRead_new_programs_assigned: boolean;
2082
+ } | null | undefined;
2083
+ attribute?: {
2084
+ can_write_ml: boolean;
2085
+ can_write_rl: boolean;
2086
+ can_write_cv: boolean;
2087
+ can_write_essay: boolean;
2088
+ can_do_interview: boolean;
2089
+ } | null | undefined;
2090
+ }> & {
2091
+ _id: import("mongoose").Types.ObjectId;
2092
+ } & {
2093
+ __v: number;
2094
+ }) | (import("mongoose").FlatRecord<{
2095
+ createdAt: NativeDate;
2096
+ updatedAt: NativeDate;
2097
+ } & {
2098
+ timezone: string;
2099
+ officehours?: {
2100
+ Monday?: {
2101
+ active: boolean;
2102
+ time_slots: any[];
2103
+ } | null | undefined;
2104
+ Tuesday?: {
2105
+ active: boolean;
2106
+ time_slots: any[];
2107
+ } | null | undefined;
2108
+ Wednesday?: {
2109
+ active: boolean;
2110
+ time_slots: any[];
2111
+ } | null | undefined;
2112
+ Thursday?: {
2113
+ active: boolean;
2114
+ time_slots: any[];
2115
+ } | null | undefined;
2116
+ Friday?: {
2117
+ active: boolean;
2118
+ time_slots: any[];
2119
+ } | null | undefined;
2120
+ Saturday?: {
2121
+ active: boolean;
2122
+ time_slots: any[];
2123
+ } | null | undefined;
2124
+ Sunday?: {
2125
+ active: boolean;
2126
+ time_slots: any[];
2127
+ } | null | undefined;
2128
+ } | null | undefined;
2129
+ editor_notification?: {
2130
+ isRead_survey_not_complete: boolean;
2131
+ isRead_base_documents_missing: boolean;
2132
+ isRead_base_documents_rejected: boolean;
2133
+ isRead_new_programs_assigned: boolean;
2134
+ } | null | undefined;
2135
+ attribute?: {
2136
+ can_write_ml: boolean;
2137
+ can_write_rl: boolean;
2138
+ can_write_cv: boolean;
2139
+ can_write_essay: boolean;
2140
+ can_do_interview: boolean;
2141
+ } | null | undefined;
2142
+ }> & {
2143
+ _id: import("mongoose").Types.ObjectId;
2144
+ } & {
2145
+ __v: number;
2146
+ }))>;