@adaptware/eagles-db 0.4.35 → 0.4.37

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.
package/client/index.d.ts CHANGED
@@ -554,7 +554,8 @@ export const ApplicationStatus: {
554
554
  IN_PROGRESS: 'IN_PROGRESS',
555
555
  SELECTED: 'SELECTED',
556
556
  SHORTLISTED: 'SHORTLISTED',
557
- REJECTED: 'REJECTED'
557
+ REJECTED: 'REJECTED',
558
+ ON_HOLD: 'ON_HOLD'
558
559
  };
559
560
 
560
561
  export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus]
@@ -18858,6 +18859,7 @@ export namespace Prisma {
18858
18859
  source_id: string | null
18859
18860
  round_no: number | null
18860
18861
  is_jaf_completed: boolean | null
18862
+ proceed_to_next_round: boolean | null
18861
18863
  on_notice_period: boolean | null
18862
18864
  expected_joining_date: Date | null
18863
18865
  current_ctc: string | null
@@ -18888,6 +18890,7 @@ export namespace Prisma {
18888
18890
  source_id: string | null
18889
18891
  round_no: number | null
18890
18892
  is_jaf_completed: boolean | null
18893
+ proceed_to_next_round: boolean | null
18891
18894
  on_notice_period: boolean | null
18892
18895
  expected_joining_date: Date | null
18893
18896
  current_ctc: string | null
@@ -18918,6 +18921,7 @@ export namespace Prisma {
18918
18921
  source_id: number
18919
18922
  round_no: number
18920
18923
  is_jaf_completed: number
18924
+ proceed_to_next_round: number
18921
18925
  on_notice_period: number
18922
18926
  expected_joining_date: number
18923
18927
  current_ctc: number
@@ -18962,6 +18966,7 @@ export namespace Prisma {
18962
18966
  source_id?: true
18963
18967
  round_no?: true
18964
18968
  is_jaf_completed?: true
18969
+ proceed_to_next_round?: true
18965
18970
  on_notice_period?: true
18966
18971
  expected_joining_date?: true
18967
18972
  current_ctc?: true
@@ -18992,6 +18997,7 @@ export namespace Prisma {
18992
18997
  source_id?: true
18993
18998
  round_no?: true
18994
18999
  is_jaf_completed?: true
19000
+ proceed_to_next_round?: true
18995
19001
  on_notice_period?: true
18996
19002
  expected_joining_date?: true
18997
19003
  current_ctc?: true
@@ -19022,6 +19028,7 @@ export namespace Prisma {
19022
19028
  source_id?: true
19023
19029
  round_no?: true
19024
19030
  is_jaf_completed?: true
19031
+ proceed_to_next_round?: true
19025
19032
  on_notice_period?: true
19026
19033
  expected_joining_date?: true
19027
19034
  current_ctc?: true
@@ -19139,6 +19146,7 @@ export namespace Prisma {
19139
19146
  source_id: string | null
19140
19147
  round_no: number
19141
19148
  is_jaf_completed: boolean
19149
+ proceed_to_next_round: boolean | null
19142
19150
  on_notice_period: boolean
19143
19151
  expected_joining_date: Date | null
19144
19152
  current_ctc: string | null
@@ -19188,6 +19196,7 @@ export namespace Prisma {
19188
19196
  source_id?: boolean
19189
19197
  round_no?: boolean
19190
19198
  is_jaf_completed?: boolean
19199
+ proceed_to_next_round?: boolean
19191
19200
  on_notice_period?: boolean
19192
19201
  expected_joining_date?: boolean
19193
19202
  current_ctc?: boolean
@@ -19235,6 +19244,7 @@ export namespace Prisma {
19235
19244
  source_id?: boolean
19236
19245
  round_no?: boolean
19237
19246
  is_jaf_completed?: boolean
19247
+ proceed_to_next_round?: boolean
19238
19248
  on_notice_period?: boolean
19239
19249
  expected_joining_date?: boolean
19240
19250
  current_ctc?: boolean
@@ -19273,6 +19283,7 @@ export namespace Prisma {
19273
19283
  source_id?: boolean
19274
19284
  round_no?: boolean
19275
19285
  is_jaf_completed?: boolean
19286
+ proceed_to_next_round?: boolean
19276
19287
  on_notice_period?: boolean
19277
19288
  expected_joining_date?: boolean
19278
19289
  current_ctc?: boolean
@@ -19311,6 +19322,7 @@ export namespace Prisma {
19311
19322
  source_id?: boolean
19312
19323
  round_no?: boolean
19313
19324
  is_jaf_completed?: boolean
19325
+ proceed_to_next_round?: boolean
19314
19326
  on_notice_period?: boolean
19315
19327
  expected_joining_date?: boolean
19316
19328
  current_ctc?: boolean
@@ -19327,7 +19339,7 @@ export namespace Prisma {
19327
19339
  is_active?: boolean
19328
19340
  }
19329
19341
 
19330
- export type ApplicationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "candidate_id" | "resume_id" | "organisation_id" | "job_description_id" | "fit_check_score" | "applied_at" | "evaluation_plan_id" | "fit_check_id" | "recruiter_id" | "source_id" | "round_no" | "is_jaf_completed" | "on_notice_period" | "expected_joining_date" | "current_ctc" | "expected_ctc" | "notice_period" | "preferred_location" | "evaluationComment" | "fit_check_status" | "status" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["application"]>
19342
+ export type ApplicationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "candidate_id" | "resume_id" | "organisation_id" | "job_description_id" | "fit_check_score" | "applied_at" | "evaluation_plan_id" | "fit_check_id" | "recruiter_id" | "source_id" | "round_no" | "is_jaf_completed" | "proceed_to_next_round" | "on_notice_period" | "expected_joining_date" | "current_ctc" | "expected_ctc" | "notice_period" | "preferred_location" | "evaluationComment" | "fit_check_status" | "status" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["application"]>
19331
19343
  export type ApplicationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19332
19344
  evaluation_plan?: boolean | Application$evaluation_planArgs<ExtArgs>
19333
19345
  candidate?: boolean | UserDefaultArgs<ExtArgs>
@@ -19402,6 +19414,7 @@ export namespace Prisma {
19402
19414
  source_id: string | null
19403
19415
  round_no: number
19404
19416
  is_jaf_completed: boolean
19417
+ proceed_to_next_round: boolean | null
19405
19418
  on_notice_period: boolean
19406
19419
  expected_joining_date: Date | null
19407
19420
  current_ctc: string | null
@@ -19868,6 +19881,7 @@ export namespace Prisma {
19868
19881
  readonly source_id: FieldRef<"Application", 'String'>
19869
19882
  readonly round_no: FieldRef<"Application", 'Int'>
19870
19883
  readonly is_jaf_completed: FieldRef<"Application", 'Boolean'>
19884
+ readonly proceed_to_next_round: FieldRef<"Application", 'Boolean'>
19871
19885
  readonly on_notice_period: FieldRef<"Application", 'Boolean'>
19872
19886
  readonly expected_joining_date: FieldRef<"Application", 'DateTime'>
19873
19887
  readonly current_ctc: FieldRef<"Application", 'String'>
@@ -44151,6 +44165,7 @@ export namespace Prisma {
44151
44165
  organisation?: boolean | Document$organisationArgs<ExtArgs>
44152
44166
  candidate?: boolean | Document$candidateArgs<ExtArgs>
44153
44167
  resume?: boolean | Document$resumeArgs<ExtArgs>
44168
+ resume_rendered_export?: boolean | Document$resume_rendered_exportArgs<ExtArgs>
44154
44169
  job_description_source?: boolean | Document$job_description_sourceArgs<ExtArgs>
44155
44170
  job_description_rendered?: boolean | Document$job_description_renderedArgs<ExtArgs>
44156
44171
  interview_recording?: boolean | Document$interview_recordingArgs<ExtArgs>
@@ -44229,6 +44244,7 @@ export namespace Prisma {
44229
44244
  organisation?: boolean | Document$organisationArgs<ExtArgs>
44230
44245
  candidate?: boolean | Document$candidateArgs<ExtArgs>
44231
44246
  resume?: boolean | Document$resumeArgs<ExtArgs>
44247
+ resume_rendered_export?: boolean | Document$resume_rendered_exportArgs<ExtArgs>
44232
44248
  job_description_source?: boolean | Document$job_description_sourceArgs<ExtArgs>
44233
44249
  job_description_rendered?: boolean | Document$job_description_renderedArgs<ExtArgs>
44234
44250
  interview_recording?: boolean | Document$interview_recordingArgs<ExtArgs>
@@ -44252,6 +44268,7 @@ export namespace Prisma {
44252
44268
  organisation: Prisma.$OrganisationPayload<ExtArgs> | null
44253
44269
  candidate: Prisma.$UserPayload<ExtArgs> | null
44254
44270
  resume: Prisma.$ResumePayload<ExtArgs> | null
44271
+ resume_rendered_export: Prisma.$ResumePayload<ExtArgs> | null
44255
44272
  job_description_source: Prisma.$JobDescriptionPayload<ExtArgs> | null
44256
44273
  job_description_rendered: Prisma.$JobDescriptionPayload<ExtArgs> | null
44257
44274
  interview_recording: Prisma.$InterviewPayload<ExtArgs> | null
@@ -44674,6 +44691,7 @@ export namespace Prisma {
44674
44691
  organisation<T extends Document$organisationArgs<ExtArgs> = {}>(args?: Subset<T, Document$organisationArgs<ExtArgs>>): Prisma__OrganisationClient<$Result.GetResult<Prisma.$OrganisationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
44675
44692
  candidate<T extends Document$candidateArgs<ExtArgs> = {}>(args?: Subset<T, Document$candidateArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
44676
44693
  resume<T extends Document$resumeArgs<ExtArgs> = {}>(args?: Subset<T, Document$resumeArgs<ExtArgs>>): Prisma__ResumeClient<$Result.GetResult<Prisma.$ResumePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
44694
+ resume_rendered_export<T extends Document$resume_rendered_exportArgs<ExtArgs> = {}>(args?: Subset<T, Document$resume_rendered_exportArgs<ExtArgs>>): Prisma__ResumeClient<$Result.GetResult<Prisma.$ResumePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
44677
44695
  job_description_source<T extends Document$job_description_sourceArgs<ExtArgs> = {}>(args?: Subset<T, Document$job_description_sourceArgs<ExtArgs>>): Prisma__JobDescriptionClient<$Result.GetResult<Prisma.$JobDescriptionPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
44678
44696
  job_description_rendered<T extends Document$job_description_renderedArgs<ExtArgs> = {}>(args?: Subset<T, Document$job_description_renderedArgs<ExtArgs>>): Prisma__JobDescriptionClient<$Result.GetResult<Prisma.$JobDescriptionPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
44679
44697
  interview_recording<T extends Document$interview_recordingArgs<ExtArgs> = {}>(args?: Subset<T, Document$interview_recordingArgs<ExtArgs>>): Prisma__InterviewClient<$Result.GetResult<Prisma.$InterviewPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
@@ -45178,6 +45196,25 @@ export namespace Prisma {
45178
45196
  where?: ResumeWhereInput
45179
45197
  }
45180
45198
 
45199
+ /**
45200
+ * Document.resume_rendered_export
45201
+ */
45202
+ export type Document$resume_rendered_exportArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
45203
+ /**
45204
+ * Select specific fields to fetch from the Resume
45205
+ */
45206
+ select?: ResumeSelect<ExtArgs> | null
45207
+ /**
45208
+ * Omit specific fields from the Resume
45209
+ */
45210
+ omit?: ResumeOmit<ExtArgs> | null
45211
+ /**
45212
+ * Choose, which related nodes to fetch as well
45213
+ */
45214
+ include?: ResumeInclude<ExtArgs> | null
45215
+ where?: ResumeWhereInput
45216
+ }
45217
+
45181
45218
  /**
45182
45219
  * Document.job_description_source
45183
45220
  */
@@ -45354,6 +45391,7 @@ export namespace Prisma {
45354
45391
  elimination_round: boolean | null
45355
45392
  evaluation_type: $Enums.EvaluationType | null
45356
45393
  type_of_round: $Enums.RoundType | null
45394
+ round_purpose: string | null
45357
45395
  timeline: number | null
45358
45396
  order_no: number | null
45359
45397
  plan_type: $Enums.EvaluationPlanType | null
@@ -45381,6 +45419,7 @@ export namespace Prisma {
45381
45419
  elimination_round: boolean | null
45382
45420
  evaluation_type: $Enums.EvaluationType | null
45383
45421
  type_of_round: $Enums.RoundType | null
45422
+ round_purpose: string | null
45384
45423
  timeline: number | null
45385
45424
  order_no: number | null
45386
45425
  plan_type: $Enums.EvaluationPlanType | null
@@ -45409,6 +45448,7 @@ export namespace Prisma {
45409
45448
  elimination_round: number
45410
45449
  evaluation_type: number
45411
45450
  type_of_round: number
45451
+ round_purpose: number
45412
45452
  timeline: number
45413
45453
  order_no: number
45414
45454
  details: number
@@ -45453,6 +45493,7 @@ export namespace Prisma {
45453
45493
  elimination_round?: true
45454
45494
  evaluation_type?: true
45455
45495
  type_of_round?: true
45496
+ round_purpose?: true
45456
45497
  timeline?: true
45457
45498
  order_no?: true
45458
45499
  plan_type?: true
@@ -45480,6 +45521,7 @@ export namespace Prisma {
45480
45521
  elimination_round?: true
45481
45522
  evaluation_type?: true
45482
45523
  type_of_round?: true
45524
+ round_purpose?: true
45483
45525
  timeline?: true
45484
45526
  order_no?: true
45485
45527
  plan_type?: true
@@ -45508,6 +45550,7 @@ export namespace Prisma {
45508
45550
  elimination_round?: true
45509
45551
  evaluation_type?: true
45510
45552
  type_of_round?: true
45553
+ round_purpose?: true
45511
45554
  timeline?: true
45512
45555
  order_no?: true
45513
45556
  details?: true
@@ -45624,6 +45667,7 @@ export namespace Prisma {
45624
45667
  elimination_round: boolean
45625
45668
  evaluation_type: $Enums.EvaluationType
45626
45669
  type_of_round: $Enums.RoundType
45670
+ round_purpose: string | null
45627
45671
  timeline: number | null
45628
45672
  order_no: number | null
45629
45673
  details: JsonValue | null
@@ -45672,6 +45716,7 @@ export namespace Prisma {
45672
45716
  elimination_round?: boolean
45673
45717
  evaluation_type?: boolean
45674
45718
  type_of_round?: boolean
45719
+ round_purpose?: boolean
45675
45720
  timeline?: boolean
45676
45721
  order_no?: boolean
45677
45722
  details?: boolean
@@ -45709,6 +45754,7 @@ export namespace Prisma {
45709
45754
  elimination_round?: boolean
45710
45755
  evaluation_type?: boolean
45711
45756
  type_of_round?: boolean
45757
+ round_purpose?: boolean
45712
45758
  timeline?: boolean
45713
45759
  order_no?: boolean
45714
45760
  details?: boolean
@@ -45741,6 +45787,7 @@ export namespace Prisma {
45741
45787
  elimination_round?: boolean
45742
45788
  evaluation_type?: boolean
45743
45789
  type_of_round?: boolean
45790
+ round_purpose?: boolean
45744
45791
  timeline?: boolean
45745
45792
  order_no?: boolean
45746
45793
  details?: boolean
@@ -45773,6 +45820,7 @@ export namespace Prisma {
45773
45820
  elimination_round?: boolean
45774
45821
  evaluation_type?: boolean
45775
45822
  type_of_round?: boolean
45823
+ round_purpose?: boolean
45776
45824
  timeline?: boolean
45777
45825
  order_no?: boolean
45778
45826
  details?: boolean
@@ -45789,7 +45837,7 @@ export namespace Prisma {
45789
45837
  is_active?: boolean
45790
45838
  }
45791
45839
 
45792
- export type EvaluationPlanOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "job_description_id" | "assessment_id" | "assignment_library_id" | "title" | "description" | "format" | "topics" | "assignee" | "elimination_round" | "evaluation_type" | "type_of_round" | "timeline" | "order_no" | "details" | "plan_type" | "share_scope" | "duration" | "duration_unit" | "deadline" | "category" | "created_by" | "updated_by" | "created_at" | "updated_at" | "is_active", ExtArgs["result"]["evaluationPlan"]>
45840
+ export type EvaluationPlanOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "job_description_id" | "assessment_id" | "assignment_library_id" | "title" | "description" | "format" | "topics" | "assignee" | "elimination_round" | "evaluation_type" | "type_of_round" | "round_purpose" | "timeline" | "order_no" | "details" | "plan_type" | "share_scope" | "duration" | "duration_unit" | "deadline" | "category" | "created_by" | "updated_by" | "created_at" | "updated_at" | "is_active", ExtArgs["result"]["evaluationPlan"]>
45793
45841
  export type EvaluationPlanInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
45794
45842
  jobDescription?: boolean | JobDescriptionDefaultArgs<ExtArgs>
45795
45843
  questions?: boolean | EvaluationPlan$questionsArgs<ExtArgs>
@@ -45835,6 +45883,7 @@ export namespace Prisma {
45835
45883
  elimination_round: boolean
45836
45884
  evaluation_type: $Enums.EvaluationType
45837
45885
  type_of_round: $Enums.RoundType
45886
+ round_purpose: string | null
45838
45887
  timeline: number | null
45839
45888
  order_no: number | null
45840
45889
  details: Prisma.JsonValue | null
@@ -46291,6 +46340,7 @@ export namespace Prisma {
46291
46340
  readonly elimination_round: FieldRef<"EvaluationPlan", 'Boolean'>
46292
46341
  readonly evaluation_type: FieldRef<"EvaluationPlan", 'EvaluationType'>
46293
46342
  readonly type_of_round: FieldRef<"EvaluationPlan", 'RoundType'>
46343
+ readonly round_purpose: FieldRef<"EvaluationPlan", 'String'>
46294
46344
  readonly timeline: FieldRef<"EvaluationPlan", 'Int'>
46295
46345
  readonly order_no: FieldRef<"EvaluationPlan", 'Int'>
46296
46346
  readonly details: FieldRef<"EvaluationPlan", 'Json'>
@@ -79304,6 +79354,7 @@ export namespace Prisma {
79304
79354
  description: string | null
79305
79355
  order_no: number | null
79306
79356
  format: $Enums.EvaluationRoundFormat | null
79357
+ round_purpose: string | null
79307
79358
  assignee: string | null
79308
79359
  elimination_round: boolean | null
79309
79360
  evaluation_type: $Enums.EvaluationType | null
@@ -79340,6 +79391,7 @@ export namespace Prisma {
79340
79391
  description: string | null
79341
79392
  order_no: number | null
79342
79393
  format: $Enums.EvaluationRoundFormat | null
79394
+ round_purpose: string | null
79343
79395
  assignee: string | null
79344
79396
  elimination_round: boolean | null
79345
79397
  evaluation_type: $Enums.EvaluationType | null
@@ -79376,6 +79428,7 @@ export namespace Prisma {
79376
79428
  description: number
79377
79429
  order_no: number
79378
79430
  format: number
79431
+ round_purpose: number
79379
79432
  topics: number
79380
79433
  assignee: number
79381
79434
  elimination_round: number
@@ -79428,6 +79481,7 @@ export namespace Prisma {
79428
79481
  description?: true
79429
79482
  order_no?: true
79430
79483
  format?: true
79484
+ round_purpose?: true
79431
79485
  assignee?: true
79432
79486
  elimination_round?: true
79433
79487
  evaluation_type?: true
@@ -79464,6 +79518,7 @@ export namespace Prisma {
79464
79518
  description?: true
79465
79519
  order_no?: true
79466
79520
  format?: true
79521
+ round_purpose?: true
79467
79522
  assignee?: true
79468
79523
  elimination_round?: true
79469
79524
  evaluation_type?: true
@@ -79500,6 +79555,7 @@ export namespace Prisma {
79500
79555
  description?: true
79501
79556
  order_no?: true
79502
79557
  format?: true
79558
+ round_purpose?: true
79503
79559
  topics?: true
79504
79560
  assignee?: true
79505
79561
  elimination_round?: true
@@ -79625,6 +79681,7 @@ export namespace Prisma {
79625
79681
  description: string | null
79626
79682
  order_no: number | null
79627
79683
  format: $Enums.EvaluationRoundFormat | null
79684
+ round_purpose: string | null
79628
79685
  topics: string[]
79629
79686
  assignee: string | null
79630
79687
  elimination_round: boolean | null
@@ -79682,6 +79739,7 @@ export namespace Prisma {
79682
79739
  description?: boolean
79683
79740
  order_no?: boolean
79684
79741
  format?: boolean
79742
+ round_purpose?: boolean
79685
79743
  topics?: boolean
79686
79744
  assignee?: boolean
79687
79745
  elimination_round?: boolean
@@ -79729,6 +79787,7 @@ export namespace Prisma {
79729
79787
  description?: boolean
79730
79788
  order_no?: boolean
79731
79789
  format?: boolean
79790
+ round_purpose?: boolean
79732
79791
  topics?: boolean
79733
79792
  assignee?: boolean
79734
79793
  elimination_round?: boolean
@@ -79775,6 +79834,7 @@ export namespace Prisma {
79775
79834
  description?: boolean
79776
79835
  order_no?: boolean
79777
79836
  format?: boolean
79837
+ round_purpose?: boolean
79778
79838
  topics?: boolean
79779
79839
  assignee?: boolean
79780
79840
  elimination_round?: boolean
@@ -79821,6 +79881,7 @@ export namespace Prisma {
79821
79881
  description?: boolean
79822
79882
  order_no?: boolean
79823
79883
  format?: boolean
79884
+ round_purpose?: boolean
79824
79885
  topics?: boolean
79825
79886
  assignee?: boolean
79826
79887
  elimination_round?: boolean
@@ -79839,7 +79900,7 @@ export namespace Prisma {
79839
79900
  is_current?: boolean
79840
79901
  }
79841
79902
 
79842
- export type OngoingEvaluationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "application_id" | "candidate_id" | "resume_id" | "job_description_id" | "evaluation_plan_id" | "interview_id" | "assignment_id" | "assessment_id" | "state" | "round_status" | "comments" | "completed_at" | "is_committed" | "title" | "description" | "order_no" | "format" | "topics" | "assignee" | "elimination_round" | "evaluation_type" | "type_of_round" | "duration" | "deadline" | "duration_unit" | "details" | "category" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "is_current", ExtArgs["result"]["ongoingEvaluation"]>
79903
+ export type OngoingEvaluationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "application_id" | "candidate_id" | "resume_id" | "job_description_id" | "evaluation_plan_id" | "interview_id" | "assignment_id" | "assessment_id" | "state" | "round_status" | "comments" | "completed_at" | "is_committed" | "title" | "description" | "order_no" | "format" | "round_purpose" | "topics" | "assignee" | "elimination_round" | "evaluation_type" | "type_of_round" | "duration" | "deadline" | "duration_unit" | "details" | "category" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "is_current", ExtArgs["result"]["ongoingEvaluation"]>
79843
79904
  export type OngoingEvaluationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
79844
79905
  jobDescription?: boolean | OngoingEvaluation$jobDescriptionArgs<ExtArgs>
79845
79906
  application?: boolean | ApplicationDefaultArgs<ExtArgs>
@@ -79908,6 +79969,7 @@ export namespace Prisma {
79908
79969
  description: string | null
79909
79970
  order_no: number | null
79910
79971
  format: $Enums.EvaluationRoundFormat | null
79972
+ round_purpose: string | null
79911
79973
  topics: string[]
79912
79974
  assignee: string | null
79913
79975
  elimination_round: boolean | null
@@ -80375,6 +80437,7 @@ export namespace Prisma {
80375
80437
  readonly description: FieldRef<"OngoingEvaluation", 'String'>
80376
80438
  readonly order_no: FieldRef<"OngoingEvaluation", 'Int'>
80377
80439
  readonly format: FieldRef<"OngoingEvaluation", 'EvaluationRoundFormat'>
80440
+ readonly round_purpose: FieldRef<"OngoingEvaluation", 'String'>
80378
80441
  readonly topics: FieldRef<"OngoingEvaluation", 'String[]'>
80379
80442
  readonly assignee: FieldRef<"OngoingEvaluation", 'String'>
80380
80443
  readonly elimination_round: FieldRef<"OngoingEvaluation", 'Boolean'>
@@ -96156,6 +96219,8 @@ export namespace Prisma {
96156
96219
  job_description_id: string | null
96157
96220
  uploaded_resume_path: string | null
96158
96221
  document_id: string | null
96222
+ rendered_export_document_id: string | null
96223
+ resume_template_id: string | null
96159
96224
  file_hash: string | null
96160
96225
  created_at: Date | null
96161
96226
  updated_at: Date | null
@@ -96173,6 +96238,8 @@ export namespace Prisma {
96173
96238
  job_description_id: string | null
96174
96239
  uploaded_resume_path: string | null
96175
96240
  document_id: string | null
96241
+ rendered_export_document_id: string | null
96242
+ resume_template_id: string | null
96176
96243
  file_hash: string | null
96177
96244
  created_at: Date | null
96178
96245
  updated_at: Date | null
@@ -96190,6 +96257,8 @@ export namespace Prisma {
96190
96257
  job_description_id: number
96191
96258
  uploaded_resume_path: number
96192
96259
  document_id: number
96260
+ rendered_export_document_id: number
96261
+ resume_template_id: number
96193
96262
  file_hash: number
96194
96263
  summary: number
96195
96264
  created_at: number
@@ -96218,6 +96287,8 @@ export namespace Prisma {
96218
96287
  job_description_id?: true
96219
96288
  uploaded_resume_path?: true
96220
96289
  document_id?: true
96290
+ rendered_export_document_id?: true
96291
+ resume_template_id?: true
96221
96292
  file_hash?: true
96222
96293
  created_at?: true
96223
96294
  updated_at?: true
@@ -96235,6 +96306,8 @@ export namespace Prisma {
96235
96306
  job_description_id?: true
96236
96307
  uploaded_resume_path?: true
96237
96308
  document_id?: true
96309
+ rendered_export_document_id?: true
96310
+ resume_template_id?: true
96238
96311
  file_hash?: true
96239
96312
  created_at?: true
96240
96313
  updated_at?: true
@@ -96252,6 +96325,8 @@ export namespace Prisma {
96252
96325
  job_description_id?: true
96253
96326
  uploaded_resume_path?: true
96254
96327
  document_id?: true
96328
+ rendered_export_document_id?: true
96329
+ resume_template_id?: true
96255
96330
  file_hash?: true
96256
96331
  summary?: true
96257
96332
  created_at?: true
@@ -96357,6 +96432,8 @@ export namespace Prisma {
96357
96432
  job_description_id: string | null
96358
96433
  uploaded_resume_path: string | null
96359
96434
  document_id: string | null
96435
+ rendered_export_document_id: string | null
96436
+ resume_template_id: string | null
96360
96437
  file_hash: string | null
96361
96438
  summary: JsonValue | null
96362
96439
  created_at: Date
@@ -96394,6 +96471,8 @@ export namespace Prisma {
96394
96471
  job_description_id?: boolean
96395
96472
  uploaded_resume_path?: boolean
96396
96473
  document_id?: boolean
96474
+ rendered_export_document_id?: boolean
96475
+ resume_template_id?: boolean
96397
96476
  file_hash?: boolean
96398
96477
  summary?: boolean
96399
96478
  created_at?: boolean
@@ -96407,6 +96486,7 @@ export namespace Prisma {
96407
96486
  organisation?: boolean | Resume$organisationArgs<ExtArgs>
96408
96487
  job_description?: boolean | Resume$job_descriptionArgs<ExtArgs>
96409
96488
  document?: boolean | Resume$documentArgs<ExtArgs>
96489
+ rendered_export_document?: boolean | Resume$rendered_export_documentArgs<ExtArgs>
96410
96490
  applications?: boolean | Resume$applicationsArgs<ExtArgs>
96411
96491
  interviews?: boolean | Resume$interviewsArgs<ExtArgs>
96412
96492
  ongoing_evaluations?: boolean | Resume$ongoing_evaluationsArgs<ExtArgs>
@@ -96423,6 +96503,8 @@ export namespace Prisma {
96423
96503
  job_description_id?: boolean
96424
96504
  uploaded_resume_path?: boolean
96425
96505
  document_id?: boolean
96506
+ rendered_export_document_id?: boolean
96507
+ resume_template_id?: boolean
96426
96508
  file_hash?: boolean
96427
96509
  summary?: boolean
96428
96510
  created_at?: boolean
@@ -96436,6 +96518,7 @@ export namespace Prisma {
96436
96518
  organisation?: boolean | Resume$organisationArgs<ExtArgs>
96437
96519
  job_description?: boolean | Resume$job_descriptionArgs<ExtArgs>
96438
96520
  document?: boolean | Resume$documentArgs<ExtArgs>
96521
+ rendered_export_document?: boolean | Resume$rendered_export_documentArgs<ExtArgs>
96439
96522
  }, ExtArgs["result"]["resume"]>
96440
96523
 
96441
96524
  export type ResumeSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
@@ -96445,6 +96528,8 @@ export namespace Prisma {
96445
96528
  job_description_id?: boolean
96446
96529
  uploaded_resume_path?: boolean
96447
96530
  document_id?: boolean
96531
+ rendered_export_document_id?: boolean
96532
+ resume_template_id?: boolean
96448
96533
  file_hash?: boolean
96449
96534
  summary?: boolean
96450
96535
  created_at?: boolean
@@ -96458,6 +96543,7 @@ export namespace Prisma {
96458
96543
  organisation?: boolean | Resume$organisationArgs<ExtArgs>
96459
96544
  job_description?: boolean | Resume$job_descriptionArgs<ExtArgs>
96460
96545
  document?: boolean | Resume$documentArgs<ExtArgs>
96546
+ rendered_export_document?: boolean | Resume$rendered_export_documentArgs<ExtArgs>
96461
96547
  }, ExtArgs["result"]["resume"]>
96462
96548
 
96463
96549
  export type ResumeSelectScalar = {
@@ -96467,6 +96553,8 @@ export namespace Prisma {
96467
96553
  job_description_id?: boolean
96468
96554
  uploaded_resume_path?: boolean
96469
96555
  document_id?: boolean
96556
+ rendered_export_document_id?: boolean
96557
+ resume_template_id?: boolean
96470
96558
  file_hash?: boolean
96471
96559
  summary?: boolean
96472
96560
  created_at?: boolean
@@ -96478,12 +96566,13 @@ export namespace Prisma {
96478
96566
  yearsOfExperience?: boolean
96479
96567
  }
96480
96568
 
96481
- export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "document_id" | "file_hash" | "summary" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "name" | "yearsOfExperience", ExtArgs["result"]["resume"]>
96569
+ export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "document_id" | "rendered_export_document_id" | "resume_template_id" | "file_hash" | "summary" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "name" | "yearsOfExperience", ExtArgs["result"]["resume"]>
96482
96570
  export type ResumeInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
96483
96571
  user?: boolean | Resume$userArgs<ExtArgs>
96484
96572
  organisation?: boolean | Resume$organisationArgs<ExtArgs>
96485
96573
  job_description?: boolean | Resume$job_descriptionArgs<ExtArgs>
96486
96574
  document?: boolean | Resume$documentArgs<ExtArgs>
96575
+ rendered_export_document?: boolean | Resume$rendered_export_documentArgs<ExtArgs>
96487
96576
  applications?: boolean | Resume$applicationsArgs<ExtArgs>
96488
96577
  interviews?: boolean | Resume$interviewsArgs<ExtArgs>
96489
96578
  ongoing_evaluations?: boolean | Resume$ongoing_evaluationsArgs<ExtArgs>
@@ -96497,12 +96586,14 @@ export namespace Prisma {
96497
96586
  organisation?: boolean | Resume$organisationArgs<ExtArgs>
96498
96587
  job_description?: boolean | Resume$job_descriptionArgs<ExtArgs>
96499
96588
  document?: boolean | Resume$documentArgs<ExtArgs>
96589
+ rendered_export_document?: boolean | Resume$rendered_export_documentArgs<ExtArgs>
96500
96590
  }
96501
96591
  export type ResumeIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
96502
96592
  user?: boolean | Resume$userArgs<ExtArgs>
96503
96593
  organisation?: boolean | Resume$organisationArgs<ExtArgs>
96504
96594
  job_description?: boolean | Resume$job_descriptionArgs<ExtArgs>
96505
96595
  document?: boolean | Resume$documentArgs<ExtArgs>
96596
+ rendered_export_document?: boolean | Resume$rendered_export_documentArgs<ExtArgs>
96506
96597
  }
96507
96598
 
96508
96599
  export type $ResumePayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -96512,6 +96603,7 @@ export namespace Prisma {
96512
96603
  organisation: Prisma.$OrganisationPayload<ExtArgs> | null
96513
96604
  job_description: Prisma.$JobDescriptionPayload<ExtArgs> | null
96514
96605
  document: Prisma.$DocumentPayload<ExtArgs> | null
96606
+ rendered_export_document: Prisma.$DocumentPayload<ExtArgs> | null
96515
96607
  applications: Prisma.$ApplicationPayload<ExtArgs>[]
96516
96608
  interviews: Prisma.$InterviewPayload<ExtArgs>[]
96517
96609
  ongoing_evaluations: Prisma.$OngoingEvaluationPayload<ExtArgs>[]
@@ -96529,6 +96621,14 @@ export namespace Prisma {
96529
96621
  */
96530
96622
  uploaded_resume_path: string | null
96531
96623
  document_id: string | null
96624
+ /**
96625
+ * Latest ATS template export (PDF). Null until first successful export.
96626
+ */
96627
+ rendered_export_document_id: string | null
96628
+ /**
96629
+ * Last chosen ATS layout template id (e.g. ats-classic). Set on first export.
96630
+ */
96631
+ resume_template_id: string | null
96532
96632
  /**
96533
96633
  * @deprecated Prefer `Document.file_hash`. Kept for legacy read fallback.
96534
96634
  */
@@ -96939,6 +97039,7 @@ export namespace Prisma {
96939
97039
  organisation<T extends Resume$organisationArgs<ExtArgs> = {}>(args?: Subset<T, Resume$organisationArgs<ExtArgs>>): Prisma__OrganisationClient<$Result.GetResult<Prisma.$OrganisationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
96940
97040
  job_description<T extends Resume$job_descriptionArgs<ExtArgs> = {}>(args?: Subset<T, Resume$job_descriptionArgs<ExtArgs>>): Prisma__JobDescriptionClient<$Result.GetResult<Prisma.$JobDescriptionPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
96941
97041
  document<T extends Resume$documentArgs<ExtArgs> = {}>(args?: Subset<T, Resume$documentArgs<ExtArgs>>): Prisma__DocumentClient<$Result.GetResult<Prisma.$DocumentPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
97042
+ rendered_export_document<T extends Resume$rendered_export_documentArgs<ExtArgs> = {}>(args?: Subset<T, Resume$rendered_export_documentArgs<ExtArgs>>): Prisma__DocumentClient<$Result.GetResult<Prisma.$DocumentPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
96942
97043
  applications<T extends Resume$applicationsArgs<ExtArgs> = {}>(args?: Subset<T, Resume$applicationsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ApplicationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
96943
97044
  interviews<T extends Resume$interviewsArgs<ExtArgs> = {}>(args?: Subset<T, Resume$interviewsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$InterviewPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
96944
97045
  ongoing_evaluations<T extends Resume$ongoing_evaluationsArgs<ExtArgs> = {}>(args?: Subset<T, Resume$ongoing_evaluationsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$OngoingEvaluationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
@@ -96980,6 +97081,8 @@ export namespace Prisma {
96980
97081
  readonly job_description_id: FieldRef<"Resume", 'String'>
96981
97082
  readonly uploaded_resume_path: FieldRef<"Resume", 'String'>
96982
97083
  readonly document_id: FieldRef<"Resume", 'String'>
97084
+ readonly rendered_export_document_id: FieldRef<"Resume", 'String'>
97085
+ readonly resume_template_id: FieldRef<"Resume", 'String'>
96983
97086
  readonly file_hash: FieldRef<"Resume", 'String'>
96984
97087
  readonly summary: FieldRef<"Resume", 'Json'>
96985
97088
  readonly created_at: FieldRef<"Resume", 'DateTime'>
@@ -97460,6 +97563,25 @@ export namespace Prisma {
97460
97563
  where?: DocumentWhereInput
97461
97564
  }
97462
97565
 
97566
+ /**
97567
+ * Resume.rendered_export_document
97568
+ */
97569
+ export type Resume$rendered_export_documentArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
97570
+ /**
97571
+ * Select specific fields to fetch from the Document
97572
+ */
97573
+ select?: DocumentSelect<ExtArgs> | null
97574
+ /**
97575
+ * Omit specific fields from the Document
97576
+ */
97577
+ omit?: DocumentOmit<ExtArgs> | null
97578
+ /**
97579
+ * Choose, which related nodes to fetch as well
97580
+ */
97581
+ include?: DocumentInclude<ExtArgs> | null
97582
+ where?: DocumentWhereInput
97583
+ }
97584
+
97463
97585
  /**
97464
97586
  * Resume.applications
97465
97587
  */
@@ -114939,6 +115061,7 @@ export namespace Prisma {
114939
115061
  source_id: 'source_id',
114940
115062
  round_no: 'round_no',
114941
115063
  is_jaf_completed: 'is_jaf_completed',
115064
+ proceed_to_next_round: 'proceed_to_next_round',
114942
115065
  on_notice_period: 'on_notice_period',
114943
115066
  expected_joining_date: 'expected_joining_date',
114944
115067
  current_ctc: 'current_ctc',
@@ -115451,6 +115574,7 @@ export namespace Prisma {
115451
115574
  elimination_round: 'elimination_round',
115452
115575
  evaluation_type: 'evaluation_type',
115453
115576
  type_of_round: 'type_of_round',
115577
+ round_purpose: 'round_purpose',
115454
115578
  timeline: 'timeline',
115455
115579
  order_no: 'order_no',
115456
115580
  details: 'details',
@@ -116117,6 +116241,7 @@ export namespace Prisma {
116117
116241
  description: 'description',
116118
116242
  order_no: 'order_no',
116119
116243
  format: 'format',
116244
+ round_purpose: 'round_purpose',
116120
116245
  topics: 'topics',
116121
116246
  assignee: 'assignee',
116122
116247
  elimination_round: 'elimination_round',
@@ -116392,6 +116517,8 @@ export namespace Prisma {
116392
116517
  job_description_id: 'job_description_id',
116393
116518
  uploaded_resume_path: 'uploaded_resume_path',
116394
116519
  document_id: 'document_id',
116520
+ rendered_export_document_id: 'rendered_export_document_id',
116521
+ resume_template_id: 'resume_template_id',
116395
116522
  file_hash: 'file_hash',
116396
116523
  summary: 'summary',
116397
116524
  created_at: 'created_at',
@@ -118333,6 +118460,7 @@ export namespace Prisma {
118333
118460
  source_id?: StringNullableFilter<"Application"> | string | null
118334
118461
  round_no?: IntFilter<"Application"> | number
118335
118462
  is_jaf_completed?: BoolFilter<"Application"> | boolean
118463
+ proceed_to_next_round?: BoolNullableFilter<"Application"> | boolean | null
118336
118464
  on_notice_period?: BoolFilter<"Application"> | boolean
118337
118465
  expected_joining_date?: DateTimeNullableFilter<"Application"> | Date | string | null
118338
118466
  current_ctc?: StringNullableFilter<"Application"> | string | null
@@ -118379,6 +118507,7 @@ export namespace Prisma {
118379
118507
  source_id?: SortOrderInput | SortOrder
118380
118508
  round_no?: SortOrder
118381
118509
  is_jaf_completed?: SortOrder
118510
+ proceed_to_next_round?: SortOrderInput | SortOrder
118382
118511
  on_notice_period?: SortOrder
118383
118512
  expected_joining_date?: SortOrderInput | SortOrder
118384
118513
  current_ctc?: SortOrderInput | SortOrder
@@ -118429,6 +118558,7 @@ export namespace Prisma {
118429
118558
  source_id?: StringNullableFilter<"Application"> | string | null
118430
118559
  round_no?: IntFilter<"Application"> | number
118431
118560
  is_jaf_completed?: BoolFilter<"Application"> | boolean
118561
+ proceed_to_next_round?: BoolNullableFilter<"Application"> | boolean | null
118432
118562
  on_notice_period?: BoolFilter<"Application"> | boolean
118433
118563
  expected_joining_date?: DateTimeNullableFilter<"Application"> | Date | string | null
118434
118564
  current_ctc?: StringNullableFilter<"Application"> | string | null
@@ -118475,6 +118605,7 @@ export namespace Prisma {
118475
118605
  source_id?: SortOrderInput | SortOrder
118476
118606
  round_no?: SortOrder
118477
118607
  is_jaf_completed?: SortOrder
118608
+ proceed_to_next_round?: SortOrderInput | SortOrder
118478
118609
  on_notice_period?: SortOrder
118479
118610
  expected_joining_date?: SortOrderInput | SortOrder
118480
118611
  current_ctc?: SortOrderInput | SortOrder
@@ -118513,6 +118644,7 @@ export namespace Prisma {
118513
118644
  source_id?: StringNullableWithAggregatesFilter<"Application"> | string | null
118514
118645
  round_no?: IntWithAggregatesFilter<"Application"> | number
118515
118646
  is_jaf_completed?: BoolWithAggregatesFilter<"Application"> | boolean
118647
+ proceed_to_next_round?: BoolNullableWithAggregatesFilter<"Application"> | boolean | null
118516
118648
  on_notice_period?: BoolWithAggregatesFilter<"Application"> | boolean
118517
118649
  expected_joining_date?: DateTimeNullableWithAggregatesFilter<"Application"> | Date | string | null
118518
118650
  current_ctc?: StringNullableWithAggregatesFilter<"Application"> | string | null
@@ -120958,6 +121090,7 @@ export namespace Prisma {
120958
121090
  organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
120959
121091
  candidate?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
120960
121092
  resume?: XOR<ResumeNullableScalarRelationFilter, ResumeWhereInput> | null
121093
+ resume_rendered_export?: XOR<ResumeNullableScalarRelationFilter, ResumeWhereInput> | null
120961
121094
  job_description_source?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
120962
121095
  job_description_rendered?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
120963
121096
  interview_recording?: XOR<InterviewNullableScalarRelationFilter, InterviewWhereInput> | null
@@ -120987,6 +121120,7 @@ export namespace Prisma {
120987
121120
  organisation?: OrganisationOrderByWithRelationInput
120988
121121
  candidate?: UserOrderByWithRelationInput
120989
121122
  resume?: ResumeOrderByWithRelationInput
121123
+ resume_rendered_export?: ResumeOrderByWithRelationInput
120990
121124
  job_description_source?: JobDescriptionOrderByWithRelationInput
120991
121125
  job_description_rendered?: JobDescriptionOrderByWithRelationInput
120992
121126
  interview_recording?: InterviewOrderByWithRelationInput
@@ -121019,6 +121153,7 @@ export namespace Prisma {
121019
121153
  organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
121020
121154
  candidate?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
121021
121155
  resume?: XOR<ResumeNullableScalarRelationFilter, ResumeWhereInput> | null
121156
+ resume_rendered_export?: XOR<ResumeNullableScalarRelationFilter, ResumeWhereInput> | null
121022
121157
  job_description_source?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
121023
121158
  job_description_rendered?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
121024
121159
  interview_recording?: XOR<InterviewNullableScalarRelationFilter, InterviewWhereInput> | null
@@ -121091,6 +121226,7 @@ export namespace Prisma {
121091
121226
  elimination_round?: BoolFilter<"EvaluationPlan"> | boolean
121092
121227
  evaluation_type?: EnumEvaluationTypeFilter<"EvaluationPlan"> | $Enums.EvaluationType
121093
121228
  type_of_round?: EnumRoundTypeFilter<"EvaluationPlan"> | $Enums.RoundType
121229
+ round_purpose?: StringNullableFilter<"EvaluationPlan"> | string | null
121094
121230
  timeline?: IntNullableFilter<"EvaluationPlan"> | number | null
121095
121231
  order_no?: IntNullableFilter<"EvaluationPlan"> | number | null
121096
121232
  details?: JsonNullableFilter<"EvaluationPlan">
@@ -121127,6 +121263,7 @@ export namespace Prisma {
121127
121263
  elimination_round?: SortOrder
121128
121264
  evaluation_type?: SortOrder
121129
121265
  type_of_round?: SortOrder
121266
+ round_purpose?: SortOrderInput | SortOrder
121130
121267
  timeline?: SortOrderInput | SortOrder
121131
121268
  order_no?: SortOrderInput | SortOrder
121132
121269
  details?: SortOrderInput | SortOrder
@@ -121166,6 +121303,7 @@ export namespace Prisma {
121166
121303
  elimination_round?: BoolFilter<"EvaluationPlan"> | boolean
121167
121304
  evaluation_type?: EnumEvaluationTypeFilter<"EvaluationPlan"> | $Enums.EvaluationType
121168
121305
  type_of_round?: EnumRoundTypeFilter<"EvaluationPlan"> | $Enums.RoundType
121306
+ round_purpose?: StringNullableFilter<"EvaluationPlan"> | string | null
121169
121307
  timeline?: IntNullableFilter<"EvaluationPlan"> | number | null
121170
121308
  order_no?: IntNullableFilter<"EvaluationPlan"> | number | null
121171
121309
  details?: JsonNullableFilter<"EvaluationPlan">
@@ -121202,6 +121340,7 @@ export namespace Prisma {
121202
121340
  elimination_round?: SortOrder
121203
121341
  evaluation_type?: SortOrder
121204
121342
  type_of_round?: SortOrder
121343
+ round_purpose?: SortOrderInput | SortOrder
121205
121344
  timeline?: SortOrderInput | SortOrder
121206
121345
  order_no?: SortOrderInput | SortOrder
121207
121346
  details?: SortOrderInput | SortOrder
@@ -121239,6 +121378,7 @@ export namespace Prisma {
121239
121378
  elimination_round?: BoolWithAggregatesFilter<"EvaluationPlan"> | boolean
121240
121379
  evaluation_type?: EnumEvaluationTypeWithAggregatesFilter<"EvaluationPlan"> | $Enums.EvaluationType
121241
121380
  type_of_round?: EnumRoundTypeWithAggregatesFilter<"EvaluationPlan"> | $Enums.RoundType
121381
+ round_purpose?: StringNullableWithAggregatesFilter<"EvaluationPlan"> | string | null
121242
121382
  timeline?: IntNullableWithAggregatesFilter<"EvaluationPlan"> | number | null
121243
121383
  order_no?: IntNullableWithAggregatesFilter<"EvaluationPlan"> | number | null
121244
121384
  details?: JsonNullableWithAggregatesFilter<"EvaluationPlan">
@@ -124580,6 +124720,7 @@ export namespace Prisma {
124580
124720
  description?: StringNullableFilter<"OngoingEvaluation"> | string | null
124581
124721
  order_no?: IntNullableFilter<"OngoingEvaluation"> | number | null
124582
124722
  format?: EnumEvaluationRoundFormatNullableFilter<"OngoingEvaluation"> | $Enums.EvaluationRoundFormat | null
124723
+ round_purpose?: StringNullableFilter<"OngoingEvaluation"> | string | null
124583
124724
  topics?: StringNullableListFilter<"OngoingEvaluation">
124584
124725
  assignee?: StringNullableFilter<"OngoingEvaluation"> | string | null
124585
124726
  elimination_round?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
@@ -124627,6 +124768,7 @@ export namespace Prisma {
124627
124768
  description?: SortOrderInput | SortOrder
124628
124769
  order_no?: SortOrderInput | SortOrder
124629
124770
  format?: SortOrderInput | SortOrder
124771
+ round_purpose?: SortOrderInput | SortOrder
124630
124772
  topics?: SortOrder
124631
124773
  assignee?: SortOrderInput | SortOrder
124632
124774
  elimination_round?: SortOrderInput | SortOrder
@@ -124678,6 +124820,7 @@ export namespace Prisma {
124678
124820
  description?: StringNullableFilter<"OngoingEvaluation"> | string | null
124679
124821
  order_no?: IntNullableFilter<"OngoingEvaluation"> | number | null
124680
124822
  format?: EnumEvaluationRoundFormatNullableFilter<"OngoingEvaluation"> | $Enums.EvaluationRoundFormat | null
124823
+ round_purpose?: StringNullableFilter<"OngoingEvaluation"> | string | null
124681
124824
  topics?: StringNullableListFilter<"OngoingEvaluation">
124682
124825
  assignee?: StringNullableFilter<"OngoingEvaluation"> | string | null
124683
124826
  elimination_round?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
@@ -124725,6 +124868,7 @@ export namespace Prisma {
124725
124868
  description?: SortOrderInput | SortOrder
124726
124869
  order_no?: SortOrderInput | SortOrder
124727
124870
  format?: SortOrderInput | SortOrder
124871
+ round_purpose?: SortOrderInput | SortOrder
124728
124872
  topics?: SortOrder
124729
124873
  assignee?: SortOrderInput | SortOrder
124730
124874
  elimination_round?: SortOrderInput | SortOrder
@@ -124771,6 +124915,7 @@ export namespace Prisma {
124771
124915
  description?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
124772
124916
  order_no?: IntNullableWithAggregatesFilter<"OngoingEvaluation"> | number | null
124773
124917
  format?: EnumEvaluationRoundFormatNullableWithAggregatesFilter<"OngoingEvaluation"> | $Enums.EvaluationRoundFormat | null
124918
+ round_purpose?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
124774
124919
  topics?: StringNullableListFilter<"OngoingEvaluation">
124775
124920
  assignee?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
124776
124921
  elimination_round?: BoolNullableWithAggregatesFilter<"OngoingEvaluation"> | boolean | null
@@ -126132,6 +126277,8 @@ export namespace Prisma {
126132
126277
  job_description_id?: StringNullableFilter<"Resume"> | string | null
126133
126278
  uploaded_resume_path?: StringNullableFilter<"Resume"> | string | null
126134
126279
  document_id?: StringNullableFilter<"Resume"> | string | null
126280
+ rendered_export_document_id?: StringNullableFilter<"Resume"> | string | null
126281
+ resume_template_id?: StringNullableFilter<"Resume"> | string | null
126135
126282
  file_hash?: StringNullableFilter<"Resume"> | string | null
126136
126283
  summary?: JsonNullableFilter<"Resume">
126137
126284
  created_at?: DateTimeFilter<"Resume"> | Date | string
@@ -126145,6 +126292,7 @@ export namespace Prisma {
126145
126292
  organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
126146
126293
  job_description?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
126147
126294
  document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
126295
+ rendered_export_document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
126148
126296
  applications?: ApplicationListRelationFilter
126149
126297
  interviews?: InterviewListRelationFilter
126150
126298
  ongoing_evaluations?: OngoingEvaluationListRelationFilter
@@ -126160,6 +126308,8 @@ export namespace Prisma {
126160
126308
  job_description_id?: SortOrderInput | SortOrder
126161
126309
  uploaded_resume_path?: SortOrderInput | SortOrder
126162
126310
  document_id?: SortOrderInput | SortOrder
126311
+ rendered_export_document_id?: SortOrderInput | SortOrder
126312
+ resume_template_id?: SortOrderInput | SortOrder
126163
126313
  file_hash?: SortOrderInput | SortOrder
126164
126314
  summary?: SortOrderInput | SortOrder
126165
126315
  created_at?: SortOrder
@@ -126173,6 +126323,7 @@ export namespace Prisma {
126173
126323
  organisation?: OrganisationOrderByWithRelationInput
126174
126324
  job_description?: JobDescriptionOrderByWithRelationInput
126175
126325
  document?: DocumentOrderByWithRelationInput
126326
+ rendered_export_document?: DocumentOrderByWithRelationInput
126176
126327
  applications?: ApplicationOrderByRelationAggregateInput
126177
126328
  interviews?: InterviewOrderByRelationAggregateInput
126178
126329
  ongoing_evaluations?: OngoingEvaluationOrderByRelationAggregateInput
@@ -126184,6 +126335,7 @@ export namespace Prisma {
126184
126335
  export type ResumeWhereUniqueInput = Prisma.AtLeast<{
126185
126336
  id?: string
126186
126337
  document_id?: string
126338
+ rendered_export_document_id?: string
126187
126339
  AND?: ResumeWhereInput | ResumeWhereInput[]
126188
126340
  OR?: ResumeWhereInput[]
126189
126341
  NOT?: ResumeWhereInput | ResumeWhereInput[]
@@ -126191,6 +126343,7 @@ export namespace Prisma {
126191
126343
  organisation_id?: StringNullableFilter<"Resume"> | string | null
126192
126344
  job_description_id?: StringNullableFilter<"Resume"> | string | null
126193
126345
  uploaded_resume_path?: StringNullableFilter<"Resume"> | string | null
126346
+ resume_template_id?: StringNullableFilter<"Resume"> | string | null
126194
126347
  file_hash?: StringNullableFilter<"Resume"> | string | null
126195
126348
  summary?: JsonNullableFilter<"Resume">
126196
126349
  created_at?: DateTimeFilter<"Resume"> | Date | string
@@ -126204,13 +126357,14 @@ export namespace Prisma {
126204
126357
  organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
126205
126358
  job_description?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
126206
126359
  document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
126360
+ rendered_export_document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
126207
126361
  applications?: ApplicationListRelationFilter
126208
126362
  interviews?: InterviewListRelationFilter
126209
126363
  ongoing_evaluations?: OngoingEvaluationListRelationFilter
126210
126364
  resume_data?: ResumeDataListRelationFilter
126211
126365
  fit_check?: FitCheckListRelationFilter
126212
126366
  candidate_profile?: XOR<CandidateProfileNullableScalarRelationFilter, CandidateProfileWhereInput> | null
126213
- }, "id" | "document_id">
126367
+ }, "id" | "document_id" | "rendered_export_document_id">
126214
126368
 
126215
126369
  export type ResumeOrderByWithAggregationInput = {
126216
126370
  id?: SortOrder
@@ -126219,6 +126373,8 @@ export namespace Prisma {
126219
126373
  job_description_id?: SortOrderInput | SortOrder
126220
126374
  uploaded_resume_path?: SortOrderInput | SortOrder
126221
126375
  document_id?: SortOrderInput | SortOrder
126376
+ rendered_export_document_id?: SortOrderInput | SortOrder
126377
+ resume_template_id?: SortOrderInput | SortOrder
126222
126378
  file_hash?: SortOrderInput | SortOrder
126223
126379
  summary?: SortOrderInput | SortOrder
126224
126380
  created_at?: SortOrder
@@ -126245,6 +126401,8 @@ export namespace Prisma {
126245
126401
  job_description_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
126246
126402
  uploaded_resume_path?: StringNullableWithAggregatesFilter<"Resume"> | string | null
126247
126403
  document_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
126404
+ rendered_export_document_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
126405
+ resume_template_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
126248
126406
  file_hash?: StringNullableWithAggregatesFilter<"Resume"> | string | null
126249
126407
  summary?: JsonNullableWithAggregatesFilter<"Resume">
126250
126408
  created_at?: DateTimeWithAggregatesFilter<"Resume"> | Date | string
@@ -128814,6 +128972,7 @@ export namespace Prisma {
128814
128972
  applied_at?: Date | string
128815
128973
  round_no?: number
128816
128974
  is_jaf_completed?: boolean
128975
+ proceed_to_next_round?: boolean | null
128817
128976
  on_notice_period?: boolean
128818
128977
  expected_joining_date?: Date | string | null
128819
128978
  current_ctc?: string | null
@@ -128860,6 +129019,7 @@ export namespace Prisma {
128860
129019
  source_id?: string | null
128861
129020
  round_no?: number
128862
129021
  is_jaf_completed?: boolean
129022
+ proceed_to_next_round?: boolean | null
128863
129023
  on_notice_period?: boolean
128864
129024
  expected_joining_date?: Date | string | null
128865
129025
  current_ctc?: string | null
@@ -128890,6 +129050,7 @@ export namespace Prisma {
128890
129050
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
128891
129051
  round_no?: IntFieldUpdateOperationsInput | number
128892
129052
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
129053
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
128893
129054
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
128894
129055
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
128895
129056
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -128936,6 +129097,7 @@ export namespace Prisma {
128936
129097
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
128937
129098
  round_no?: IntFieldUpdateOperationsInput | number
128938
129099
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
129100
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
128939
129101
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
128940
129102
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
128941
129103
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -128974,6 +129136,7 @@ export namespace Prisma {
128974
129136
  source_id?: string | null
128975
129137
  round_no?: number
128976
129138
  is_jaf_completed?: boolean
129139
+ proceed_to_next_round?: boolean | null
128977
129140
  on_notice_period?: boolean
128978
129141
  expected_joining_date?: Date | string | null
128979
129142
  current_ctc?: string | null
@@ -128996,6 +129159,7 @@ export namespace Prisma {
128996
129159
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
128997
129160
  round_no?: IntFieldUpdateOperationsInput | number
128998
129161
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
129162
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
128999
129163
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
129000
129164
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
129001
129165
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -129026,6 +129190,7 @@ export namespace Prisma {
129026
129190
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
129027
129191
  round_no?: IntFieldUpdateOperationsInput | number
129028
129192
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
129193
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
129029
129194
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
129030
129195
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
129031
129196
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -131889,6 +132054,7 @@ export namespace Prisma {
131889
132054
  organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
131890
132055
  candidate?: UserCreateNestedOneWithoutDocumentsInput
131891
132056
  resume?: ResumeCreateNestedOneWithoutDocumentInput
132057
+ resume_rendered_export?: ResumeCreateNestedOneWithoutRendered_export_documentInput
131892
132058
  job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
131893
132059
  job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
131894
132060
  interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
@@ -131916,6 +132082,7 @@ export namespace Prisma {
131916
132082
  updated_by: string
131917
132083
  is_active?: boolean
131918
132084
  resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
132085
+ resume_rendered_export?: ResumeUncheckedCreateNestedOneWithoutRendered_export_documentInput
131919
132086
  job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
131920
132087
  job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
131921
132088
  interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
@@ -131943,6 +132110,7 @@ export namespace Prisma {
131943
132110
  organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
131944
132111
  candidate?: UserUpdateOneWithoutDocumentsNestedInput
131945
132112
  resume?: ResumeUpdateOneWithoutDocumentNestedInput
132113
+ resume_rendered_export?: ResumeUpdateOneWithoutRendered_export_documentNestedInput
131946
132114
  job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
131947
132115
  job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
131948
132116
  interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
@@ -131970,6 +132138,7 @@ export namespace Prisma {
131970
132138
  updated_by?: StringFieldUpdateOperationsInput | string
131971
132139
  is_active?: BoolFieldUpdateOperationsInput | boolean
131972
132140
  resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
132141
+ resume_rendered_export?: ResumeUncheckedUpdateOneWithoutRendered_export_documentNestedInput
131973
132142
  job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
131974
132143
  job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
131975
132144
  interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
@@ -132046,6 +132215,7 @@ export namespace Prisma {
132046
132215
  elimination_round?: boolean
132047
132216
  evaluation_type?: $Enums.EvaluationType
132048
132217
  type_of_round: $Enums.RoundType
132218
+ round_purpose?: string | null
132049
132219
  timeline?: number | null
132050
132220
  order_no?: number | null
132051
132221
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -132082,6 +132252,7 @@ export namespace Prisma {
132082
132252
  elimination_round?: boolean
132083
132253
  evaluation_type?: $Enums.EvaluationType
132084
132254
  type_of_round: $Enums.RoundType
132255
+ round_purpose?: string | null
132085
132256
  timeline?: number | null
132086
132257
  order_no?: number | null
132087
132258
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -132112,6 +132283,7 @@ export namespace Prisma {
132112
132283
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
132113
132284
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
132114
132285
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
132286
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
132115
132287
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
132116
132288
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
132117
132289
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -132148,6 +132320,7 @@ export namespace Prisma {
132148
132320
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
132149
132321
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
132150
132322
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
132323
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
132151
132324
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
132152
132325
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
132153
132326
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -132181,6 +132354,7 @@ export namespace Prisma {
132181
132354
  elimination_round?: boolean
132182
132355
  evaluation_type?: $Enums.EvaluationType
132183
132356
  type_of_round: $Enums.RoundType
132357
+ round_purpose?: string | null
132184
132358
  timeline?: number | null
132185
132359
  order_no?: number | null
132186
132360
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -132207,6 +132381,7 @@ export namespace Prisma {
132207
132381
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
132208
132382
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
132209
132383
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
132384
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
132210
132385
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
132211
132386
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
132212
132387
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -132236,6 +132411,7 @@ export namespace Prisma {
132236
132411
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
132237
132412
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
132238
132413
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
132414
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
132239
132415
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
132240
132416
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
132241
132417
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -136200,6 +136376,7 @@ export namespace Prisma {
136200
136376
  description?: string | null
136201
136377
  order_no?: number | null
136202
136378
  format?: $Enums.EvaluationRoundFormat | null
136379
+ round_purpose?: string | null
136203
136380
  topics?: OngoingEvaluationCreatetopicsInput | string[]
136204
136381
  assignee?: string | null
136205
136382
  elimination_round?: boolean | null
@@ -136247,6 +136424,7 @@ export namespace Prisma {
136247
136424
  description?: string | null
136248
136425
  order_no?: number | null
136249
136426
  format?: $Enums.EvaluationRoundFormat | null
136427
+ round_purpose?: string | null
136250
136428
  topics?: OngoingEvaluationCreatetopicsInput | string[]
136251
136429
  assignee?: string | null
136252
136430
  elimination_round?: boolean | null
@@ -136278,6 +136456,7 @@ export namespace Prisma {
136278
136456
  description?: NullableStringFieldUpdateOperationsInput | string | null
136279
136457
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
136280
136458
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
136459
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
136281
136460
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
136282
136461
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
136283
136462
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -136325,6 +136504,7 @@ export namespace Prisma {
136325
136504
  description?: NullableStringFieldUpdateOperationsInput | string | null
136326
136505
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
136327
136506
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
136507
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
136328
136508
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
136329
136509
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
136330
136510
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -136364,6 +136544,7 @@ export namespace Prisma {
136364
136544
  description?: string | null
136365
136545
  order_no?: number | null
136366
136546
  format?: $Enums.EvaluationRoundFormat | null
136547
+ round_purpose?: string | null
136367
136548
  topics?: OngoingEvaluationCreatetopicsInput | string[]
136368
136549
  assignee?: string | null
136369
136550
  elimination_round?: boolean | null
@@ -136394,6 +136575,7 @@ export namespace Prisma {
136394
136575
  description?: NullableStringFieldUpdateOperationsInput | string | null
136395
136576
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
136396
136577
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
136578
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
136397
136579
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
136398
136580
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
136399
136581
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -136432,6 +136614,7 @@ export namespace Prisma {
136432
136614
  description?: NullableStringFieldUpdateOperationsInput | string | null
136433
136615
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
136434
136616
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
136617
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
136435
136618
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
136436
136619
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
136437
136620
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -138052,6 +138235,7 @@ export namespace Prisma {
138052
138235
  export type ResumeCreateInput = {
138053
138236
  id?: string
138054
138237
  uploaded_resume_path?: string | null
138238
+ resume_template_id?: string | null
138055
138239
  file_hash?: string | null
138056
138240
  summary?: NullableJsonNullValueInput | InputJsonValue
138057
138241
  created_at?: Date | string
@@ -138065,6 +138249,7 @@ export namespace Prisma {
138065
138249
  organisation?: OrganisationCreateNestedOneWithoutResumesInput
138066
138250
  job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
138067
138251
  document?: DocumentCreateNestedOneWithoutResumeInput
138252
+ rendered_export_document?: DocumentCreateNestedOneWithoutResume_rendered_exportInput
138068
138253
  applications?: ApplicationCreateNestedManyWithoutResumeInput
138069
138254
  interviews?: InterviewCreateNestedManyWithoutResumeInput
138070
138255
  ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutResumeInput
@@ -138080,6 +138265,8 @@ export namespace Prisma {
138080
138265
  job_description_id?: string | null
138081
138266
  uploaded_resume_path?: string | null
138082
138267
  document_id?: string | null
138268
+ rendered_export_document_id?: string | null
138269
+ resume_template_id?: string | null
138083
138270
  file_hash?: string | null
138084
138271
  summary?: NullableJsonNullValueInput | InputJsonValue
138085
138272
  created_at?: Date | string
@@ -138100,6 +138287,7 @@ export namespace Prisma {
138100
138287
  export type ResumeUpdateInput = {
138101
138288
  id?: StringFieldUpdateOperationsInput | string
138102
138289
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
138290
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
138103
138291
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
138104
138292
  summary?: NullableJsonNullValueInput | InputJsonValue
138105
138293
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -138113,6 +138301,7 @@ export namespace Prisma {
138113
138301
  organisation?: OrganisationUpdateOneWithoutResumesNestedInput
138114
138302
  job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
138115
138303
  document?: DocumentUpdateOneWithoutResumeNestedInput
138304
+ rendered_export_document?: DocumentUpdateOneWithoutResume_rendered_exportNestedInput
138116
138305
  applications?: ApplicationUpdateManyWithoutResumeNestedInput
138117
138306
  interviews?: InterviewUpdateManyWithoutResumeNestedInput
138118
138307
  ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutResumeNestedInput
@@ -138128,6 +138317,8 @@ export namespace Prisma {
138128
138317
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
138129
138318
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
138130
138319
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
138320
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
138321
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
138131
138322
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
138132
138323
  summary?: NullableJsonNullValueInput | InputJsonValue
138133
138324
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -138152,6 +138343,8 @@ export namespace Prisma {
138152
138343
  job_description_id?: string | null
138153
138344
  uploaded_resume_path?: string | null
138154
138345
  document_id?: string | null
138346
+ rendered_export_document_id?: string | null
138347
+ resume_template_id?: string | null
138155
138348
  file_hash?: string | null
138156
138349
  summary?: NullableJsonNullValueInput | InputJsonValue
138157
138350
  created_at?: Date | string
@@ -138166,6 +138359,7 @@ export namespace Prisma {
138166
138359
  export type ResumeUpdateManyMutationInput = {
138167
138360
  id?: StringFieldUpdateOperationsInput | string
138168
138361
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
138362
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
138169
138363
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
138170
138364
  summary?: NullableJsonNullValueInput | InputJsonValue
138171
138365
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -138184,6 +138378,8 @@ export namespace Prisma {
138184
138378
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
138185
138379
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
138186
138380
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
138381
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
138382
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
138187
138383
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
138188
138384
  summary?: NullableJsonNullValueInput | InputJsonValue
138189
138385
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -141079,6 +141275,11 @@ export namespace Prisma {
141079
141275
  fit_check_score?: SortOrder
141080
141276
  }
141081
141277
 
141278
+ export type BoolNullableFilter<$PrismaModel = never> = {
141279
+ equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
141280
+ not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
141281
+ }
141282
+
141082
141283
  export type EnumFitCheckStatusNullableFilter<$PrismaModel = never> = {
141083
141284
  equals?: $Enums.FitCheckStatus | EnumFitCheckStatusFieldRefInput<$PrismaModel> | null
141084
141285
  in?: $Enums.FitCheckStatus[] | ListEnumFitCheckStatusFieldRefInput<$PrismaModel> | null
@@ -141217,6 +141418,7 @@ export namespace Prisma {
141217
141418
  source_id?: SortOrder
141218
141419
  round_no?: SortOrder
141219
141420
  is_jaf_completed?: SortOrder
141421
+ proceed_to_next_round?: SortOrder
141220
141422
  on_notice_period?: SortOrder
141221
141423
  expected_joining_date?: SortOrder
141222
141424
  current_ctc?: SortOrder
@@ -141253,6 +141455,7 @@ export namespace Prisma {
141253
141455
  source_id?: SortOrder
141254
141456
  round_no?: SortOrder
141255
141457
  is_jaf_completed?: SortOrder
141458
+ proceed_to_next_round?: SortOrder
141256
141459
  on_notice_period?: SortOrder
141257
141460
  expected_joining_date?: SortOrder
141258
141461
  current_ctc?: SortOrder
@@ -141283,6 +141486,7 @@ export namespace Prisma {
141283
141486
  source_id?: SortOrder
141284
141487
  round_no?: SortOrder
141285
141488
  is_jaf_completed?: SortOrder
141489
+ proceed_to_next_round?: SortOrder
141286
141490
  on_notice_period?: SortOrder
141287
141491
  expected_joining_date?: SortOrder
141288
141492
  current_ctc?: SortOrder
@@ -141305,6 +141509,14 @@ export namespace Prisma {
141305
141509
  notice_period?: SortOrder
141306
141510
  }
141307
141511
 
141512
+ export type BoolNullableWithAggregatesFilter<$PrismaModel = never> = {
141513
+ equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
141514
+ not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
141515
+ _count?: NestedIntNullableFilter<$PrismaModel>
141516
+ _min?: NestedBoolNullableFilter<$PrismaModel>
141517
+ _max?: NestedBoolNullableFilter<$PrismaModel>
141518
+ }
141519
+
141308
141520
  export type EnumFitCheckStatusNullableWithAggregatesFilter<$PrismaModel = never> = {
141309
141521
  equals?: $Enums.FitCheckStatus | EnumFitCheckStatusFieldRefInput<$PrismaModel> | null
141310
141522
  in?: $Enums.FitCheckStatus[] | ListEnumFitCheckStatusFieldRefInput<$PrismaModel> | null
@@ -143262,6 +143474,7 @@ export namespace Prisma {
143262
143474
  elimination_round?: SortOrder
143263
143475
  evaluation_type?: SortOrder
143264
143476
  type_of_round?: SortOrder
143477
+ round_purpose?: SortOrder
143265
143478
  timeline?: SortOrder
143266
143479
  order_no?: SortOrder
143267
143480
  details?: SortOrder
@@ -143297,6 +143510,7 @@ export namespace Prisma {
143297
143510
  elimination_round?: SortOrder
143298
143511
  evaluation_type?: SortOrder
143299
143512
  type_of_round?: SortOrder
143513
+ round_purpose?: SortOrder
143300
143514
  timeline?: SortOrder
143301
143515
  order_no?: SortOrder
143302
143516
  plan_type?: SortOrder
@@ -143324,6 +143538,7 @@ export namespace Prisma {
143324
143538
  elimination_round?: SortOrder
143325
143539
  evaluation_type?: SortOrder
143326
143540
  type_of_round?: SortOrder
143541
+ round_purpose?: SortOrder
143327
143542
  timeline?: SortOrder
143328
143543
  order_no?: SortOrder
143329
143544
  plan_type?: SortOrder
@@ -144185,11 +144400,6 @@ export namespace Prisma {
144185
144400
  not?: NestedEnumInterviewRecommendationNullableFilter<$PrismaModel> | $Enums.InterviewRecommendation | null
144186
144401
  }
144187
144402
 
144188
- export type BoolNullableFilter<$PrismaModel = never> = {
144189
- equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
144190
- not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
144191
- }
144192
-
144193
144403
  export type InterviewRoundAnalyticsCountOrderByAggregateInput = {
144194
144404
  id?: SortOrder
144195
144405
  organisation_id?: SortOrder
@@ -144382,14 +144592,6 @@ export namespace Prisma {
144382
144592
  _max?: NestedEnumInterviewRecommendationNullableFilter<$PrismaModel>
144383
144593
  }
144384
144594
 
144385
- export type BoolNullableWithAggregatesFilter<$PrismaModel = never> = {
144386
- equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
144387
- not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
144388
- _count?: NestedIntNullableFilter<$PrismaModel>
144389
- _min?: NestedBoolNullableFilter<$PrismaModel>
144390
- _max?: NestedBoolNullableFilter<$PrismaModel>
144391
- }
144392
-
144393
144595
  export type InterviewRoundAnalyticsDailySnapshot_dateInterview_idCompoundUniqueInput = {
144394
144596
  snapshot_date: Date | string
144395
144597
  interview_id: string
@@ -145857,6 +146059,7 @@ export namespace Prisma {
145857
146059
  description?: SortOrder
145858
146060
  order_no?: SortOrder
145859
146061
  format?: SortOrder
146062
+ round_purpose?: SortOrder
145860
146063
  topics?: SortOrder
145861
146064
  assignee?: SortOrder
145862
146065
  elimination_round?: SortOrder
@@ -145901,6 +146104,7 @@ export namespace Prisma {
145901
146104
  description?: SortOrder
145902
146105
  order_no?: SortOrder
145903
146106
  format?: SortOrder
146107
+ round_purpose?: SortOrder
145904
146108
  assignee?: SortOrder
145905
146109
  elimination_round?: SortOrder
145906
146110
  evaluation_type?: SortOrder
@@ -145937,6 +146141,7 @@ export namespace Prisma {
145937
146141
  description?: SortOrder
145938
146142
  order_no?: SortOrder
145939
146143
  format?: SortOrder
146144
+ round_purpose?: SortOrder
145940
146145
  assignee?: SortOrder
145941
146146
  elimination_round?: SortOrder
145942
146147
  evaluation_type?: SortOrder
@@ -146992,6 +147197,8 @@ export namespace Prisma {
146992
147197
  job_description_id?: SortOrder
146993
147198
  uploaded_resume_path?: SortOrder
146994
147199
  document_id?: SortOrder
147200
+ rendered_export_document_id?: SortOrder
147201
+ resume_template_id?: SortOrder
146995
147202
  file_hash?: SortOrder
146996
147203
  summary?: SortOrder
146997
147204
  created_at?: SortOrder
@@ -147014,6 +147221,8 @@ export namespace Prisma {
147014
147221
  job_description_id?: SortOrder
147015
147222
  uploaded_resume_path?: SortOrder
147016
147223
  document_id?: SortOrder
147224
+ rendered_export_document_id?: SortOrder
147225
+ resume_template_id?: SortOrder
147017
147226
  file_hash?: SortOrder
147018
147227
  created_at?: SortOrder
147019
147228
  updated_at?: SortOrder
@@ -147031,6 +147240,8 @@ export namespace Prisma {
147031
147240
  job_description_id?: SortOrder
147032
147241
  uploaded_resume_path?: SortOrder
147033
147242
  document_id?: SortOrder
147243
+ rendered_export_document_id?: SortOrder
147244
+ resume_template_id?: SortOrder
147034
147245
  file_hash?: SortOrder
147035
147246
  created_at?: SortOrder
147036
147247
  updated_at?: SortOrder
@@ -148530,6 +148741,10 @@ export namespace Prisma {
148530
148741
  connect?: JobApplicationResponseWhereUniqueInput | JobApplicationResponseWhereUniqueInput[]
148531
148742
  }
148532
148743
 
148744
+ export type NullableBoolFieldUpdateOperationsInput = {
148745
+ set?: boolean | null
148746
+ }
148747
+
148533
148748
  export type NullableEnumFitCheckStatusFieldUpdateOperationsInput = {
148534
148749
  set?: $Enums.FitCheckStatus | null
148535
148750
  }
@@ -149920,6 +150135,12 @@ export namespace Prisma {
149920
150135
  connect?: ResumeWhereUniqueInput
149921
150136
  }
149922
150137
 
150138
+ export type ResumeCreateNestedOneWithoutRendered_export_documentInput = {
150139
+ create?: XOR<ResumeCreateWithoutRendered_export_documentInput, ResumeUncheckedCreateWithoutRendered_export_documentInput>
150140
+ connectOrCreate?: ResumeCreateOrConnectWithoutRendered_export_documentInput
150141
+ connect?: ResumeWhereUniqueInput
150142
+ }
150143
+
149923
150144
  export type JobDescriptionCreateNestedOneWithoutSource_documentInput = {
149924
150145
  create?: XOR<JobDescriptionCreateWithoutSource_documentInput, JobDescriptionUncheckedCreateWithoutSource_documentInput>
149925
150146
  connectOrCreate?: JobDescriptionCreateOrConnectWithoutSource_documentInput
@@ -149963,6 +150184,12 @@ export namespace Prisma {
149963
150184
  connect?: ResumeWhereUniqueInput
149964
150185
  }
149965
150186
 
150187
+ export type ResumeUncheckedCreateNestedOneWithoutRendered_export_documentInput = {
150188
+ create?: XOR<ResumeCreateWithoutRendered_export_documentInput, ResumeUncheckedCreateWithoutRendered_export_documentInput>
150189
+ connectOrCreate?: ResumeCreateOrConnectWithoutRendered_export_documentInput
150190
+ connect?: ResumeWhereUniqueInput
150191
+ }
150192
+
149966
150193
  export type JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput = {
149967
150194
  create?: XOR<JobDescriptionCreateWithoutSource_documentInput, JobDescriptionUncheckedCreateWithoutSource_documentInput>
149968
150195
  connectOrCreate?: JobDescriptionCreateOrConnectWithoutSource_documentInput
@@ -150038,6 +150265,16 @@ export namespace Prisma {
150038
150265
  update?: XOR<XOR<ResumeUpdateToOneWithWhereWithoutDocumentInput, ResumeUpdateWithoutDocumentInput>, ResumeUncheckedUpdateWithoutDocumentInput>
150039
150266
  }
150040
150267
 
150268
+ export type ResumeUpdateOneWithoutRendered_export_documentNestedInput = {
150269
+ create?: XOR<ResumeCreateWithoutRendered_export_documentInput, ResumeUncheckedCreateWithoutRendered_export_documentInput>
150270
+ connectOrCreate?: ResumeCreateOrConnectWithoutRendered_export_documentInput
150271
+ upsert?: ResumeUpsertWithoutRendered_export_documentInput
150272
+ disconnect?: ResumeWhereInput | boolean
150273
+ delete?: ResumeWhereInput | boolean
150274
+ connect?: ResumeWhereUniqueInput
150275
+ update?: XOR<XOR<ResumeUpdateToOneWithWhereWithoutRendered_export_documentInput, ResumeUpdateWithoutRendered_export_documentInput>, ResumeUncheckedUpdateWithoutRendered_export_documentInput>
150276
+ }
150277
+
150041
150278
  export type JobDescriptionUpdateOneWithoutSource_documentNestedInput = {
150042
150279
  create?: XOR<JobDescriptionCreateWithoutSource_documentInput, JobDescriptionUncheckedCreateWithoutSource_documentInput>
150043
150280
  connectOrCreate?: JobDescriptionCreateOrConnectWithoutSource_documentInput
@@ -150112,6 +150349,16 @@ export namespace Prisma {
150112
150349
  update?: XOR<XOR<ResumeUpdateToOneWithWhereWithoutDocumentInput, ResumeUpdateWithoutDocumentInput>, ResumeUncheckedUpdateWithoutDocumentInput>
150113
150350
  }
150114
150351
 
150352
+ export type ResumeUncheckedUpdateOneWithoutRendered_export_documentNestedInput = {
150353
+ create?: XOR<ResumeCreateWithoutRendered_export_documentInput, ResumeUncheckedCreateWithoutRendered_export_documentInput>
150354
+ connectOrCreate?: ResumeCreateOrConnectWithoutRendered_export_documentInput
150355
+ upsert?: ResumeUpsertWithoutRendered_export_documentInput
150356
+ disconnect?: ResumeWhereInput | boolean
150357
+ delete?: ResumeWhereInput | boolean
150358
+ connect?: ResumeWhereUniqueInput
150359
+ update?: XOR<XOR<ResumeUpdateToOneWithWhereWithoutRendered_export_documentInput, ResumeUpdateWithoutRendered_export_documentInput>, ResumeUncheckedUpdateWithoutRendered_export_documentInput>
150360
+ }
150361
+
150115
150362
  export type JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput = {
150116
150363
  create?: XOR<JobDescriptionCreateWithoutSource_documentInput, JobDescriptionUncheckedCreateWithoutSource_documentInput>
150117
150364
  connectOrCreate?: JobDescriptionCreateOrConnectWithoutSource_documentInput
@@ -151157,10 +151404,6 @@ export namespace Prisma {
151157
151404
  set?: $Enums.InterviewRecommendation | null
151158
151405
  }
151159
151406
 
151160
- export type NullableBoolFieldUpdateOperationsInput = {
151161
- set?: boolean | null
151162
- }
151163
-
151164
151407
  export type JobApplicationFieldCreateoptionsInput = {
151165
151408
  set: string[]
151166
151409
  }
@@ -154030,6 +154273,12 @@ export namespace Prisma {
154030
154273
  connect?: DocumentWhereUniqueInput
154031
154274
  }
154032
154275
 
154276
+ export type DocumentCreateNestedOneWithoutResume_rendered_exportInput = {
154277
+ create?: XOR<DocumentCreateWithoutResume_rendered_exportInput, DocumentUncheckedCreateWithoutResume_rendered_exportInput>
154278
+ connectOrCreate?: DocumentCreateOrConnectWithoutResume_rendered_exportInput
154279
+ connect?: DocumentWhereUniqueInput
154280
+ }
154281
+
154033
154282
  export type ApplicationCreateNestedManyWithoutResumeInput = {
154034
154283
  create?: XOR<ApplicationCreateWithoutResumeInput, ApplicationUncheckedCreateWithoutResumeInput> | ApplicationCreateWithoutResumeInput[] | ApplicationUncheckedCreateWithoutResumeInput[]
154035
154284
  connectOrCreate?: ApplicationCreateOrConnectWithoutResumeInput | ApplicationCreateOrConnectWithoutResumeInput[]
@@ -154152,6 +154401,16 @@ export namespace Prisma {
154152
154401
  update?: XOR<XOR<DocumentUpdateToOneWithWhereWithoutResumeInput, DocumentUpdateWithoutResumeInput>, DocumentUncheckedUpdateWithoutResumeInput>
154153
154402
  }
154154
154403
 
154404
+ export type DocumentUpdateOneWithoutResume_rendered_exportNestedInput = {
154405
+ create?: XOR<DocumentCreateWithoutResume_rendered_exportInput, DocumentUncheckedCreateWithoutResume_rendered_exportInput>
154406
+ connectOrCreate?: DocumentCreateOrConnectWithoutResume_rendered_exportInput
154407
+ upsert?: DocumentUpsertWithoutResume_rendered_exportInput
154408
+ disconnect?: DocumentWhereInput | boolean
154409
+ delete?: DocumentWhereInput | boolean
154410
+ connect?: DocumentWhereUniqueInput
154411
+ update?: XOR<XOR<DocumentUpdateToOneWithWhereWithoutResume_rendered_exportInput, DocumentUpdateWithoutResume_rendered_exportInput>, DocumentUncheckedUpdateWithoutResume_rendered_exportInput>
154412
+ }
154413
+
154155
154414
  export type ApplicationUpdateManyWithoutResumeNestedInput = {
154156
154415
  create?: XOR<ApplicationCreateWithoutResumeInput, ApplicationUncheckedCreateWithoutResumeInput> | ApplicationCreateWithoutResumeInput[] | ApplicationUncheckedCreateWithoutResumeInput[]
154157
154416
  connectOrCreate?: ApplicationCreateOrConnectWithoutResumeInput | ApplicationCreateOrConnectWithoutResumeInput[]
@@ -156436,6 +156695,11 @@ export namespace Prisma {
156436
156695
  _max?: NestedEnumApplicationStatusNullableFilter<$PrismaModel>
156437
156696
  }
156438
156697
 
156698
+ export type NestedBoolNullableFilter<$PrismaModel = never> = {
156699
+ equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
156700
+ not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
156701
+ }
156702
+
156439
156703
  export type NestedEnumFitCheckStatusNullableFilter<$PrismaModel = never> = {
156440
156704
  equals?: $Enums.FitCheckStatus | EnumFitCheckStatusFieldRefInput<$PrismaModel> | null
156441
156705
  in?: $Enums.FitCheckStatus[] | ListEnumFitCheckStatusFieldRefInput<$PrismaModel> | null
@@ -156450,6 +156714,14 @@ export namespace Prisma {
156450
156714
  not?: NestedEnumApplicationStatusFilter<$PrismaModel> | $Enums.ApplicationStatus
156451
156715
  }
156452
156716
 
156717
+ export type NestedBoolNullableWithAggregatesFilter<$PrismaModel = never> = {
156718
+ equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
156719
+ not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
156720
+ _count?: NestedIntNullableFilter<$PrismaModel>
156721
+ _min?: NestedBoolNullableFilter<$PrismaModel>
156722
+ _max?: NestedBoolNullableFilter<$PrismaModel>
156723
+ }
156724
+
156453
156725
  export type NestedEnumFitCheckStatusNullableWithAggregatesFilter<$PrismaModel = never> = {
156454
156726
  equals?: $Enums.FitCheckStatus | EnumFitCheckStatusFieldRefInput<$PrismaModel> | null
156455
156727
  in?: $Enums.FitCheckStatus[] | ListEnumFitCheckStatusFieldRefInput<$PrismaModel> | null
@@ -157067,11 +157339,6 @@ export namespace Prisma {
157067
157339
  not?: NestedEnumInterviewRecommendationNullableFilter<$PrismaModel> | $Enums.InterviewRecommendation | null
157068
157340
  }
157069
157341
 
157070
- export type NestedBoolNullableFilter<$PrismaModel = never> = {
157071
- equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
157072
- not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
157073
- }
157074
-
157075
157342
  export type NestedEnumInterviewPlatformNullableWithAggregatesFilter<$PrismaModel = never> = {
157076
157343
  equals?: $Enums.InterviewPlatform | EnumInterviewPlatformFieldRefInput<$PrismaModel> | null
157077
157344
  in?: $Enums.InterviewPlatform[] | ListEnumInterviewPlatformFieldRefInput<$PrismaModel> | null
@@ -157102,14 +157369,6 @@ export namespace Prisma {
157102
157369
  _max?: NestedEnumInterviewRecommendationNullableFilter<$PrismaModel>
157103
157370
  }
157104
157371
 
157105
- export type NestedBoolNullableWithAggregatesFilter<$PrismaModel = never> = {
157106
- equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
157107
- not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
157108
- _count?: NestedIntNullableFilter<$PrismaModel>
157109
- _min?: NestedBoolNullableFilter<$PrismaModel>
157110
- _max?: NestedBoolNullableFilter<$PrismaModel>
157111
- }
157112
-
157113
157372
  export type NestedEnumJobApplicationFieldTypeFilter<$PrismaModel = never> = {
157114
157373
  equals?: $Enums.JobApplicationFieldType | EnumJobApplicationFieldTypeFieldRefInput<$PrismaModel>
157115
157374
  in?: $Enums.JobApplicationFieldType[] | ListEnumJobApplicationFieldTypeFieldRefInput<$PrismaModel>
@@ -159286,6 +159545,7 @@ export namespace Prisma {
159286
159545
  applied_at?: Date | string
159287
159546
  round_no?: number
159288
159547
  is_jaf_completed?: boolean
159548
+ proceed_to_next_round?: boolean | null
159289
159549
  on_notice_period?: boolean
159290
159550
  expected_joining_date?: Date | string | null
159291
159551
  current_ctc?: string | null
@@ -159331,6 +159591,7 @@ export namespace Prisma {
159331
159591
  source_id?: string | null
159332
159592
  round_no?: number
159333
159593
  is_jaf_completed?: boolean
159594
+ proceed_to_next_round?: boolean | null
159334
159595
  on_notice_period?: boolean
159335
159596
  expected_joining_date?: Date | string | null
159336
159597
  current_ctc?: string | null
@@ -159537,6 +159798,7 @@ export namespace Prisma {
159537
159798
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
159538
159799
  round_no?: IntFieldUpdateOperationsInput | number
159539
159800
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
159801
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
159540
159802
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
159541
159803
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
159542
159804
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -159582,6 +159844,7 @@ export namespace Prisma {
159582
159844
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
159583
159845
  round_no?: IntFieldUpdateOperationsInput | number
159584
159846
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
159847
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
159585
159848
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
159586
159849
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
159587
159850
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -159615,6 +159878,7 @@ export namespace Prisma {
159615
159878
  elimination_round?: boolean
159616
159879
  evaluation_type?: $Enums.EvaluationType
159617
159880
  type_of_round: $Enums.RoundType
159881
+ round_purpose?: string | null
159618
159882
  timeline?: number | null
159619
159883
  order_no?: number | null
159620
159884
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -159650,6 +159914,7 @@ export namespace Prisma {
159650
159914
  elimination_round?: boolean
159651
159915
  evaluation_type?: $Enums.EvaluationType
159652
159916
  type_of_round: $Enums.RoundType
159917
+ round_purpose?: string | null
159653
159918
  timeline?: number | null
159654
159919
  order_no?: number | null
159655
159920
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -159935,6 +160200,7 @@ export namespace Prisma {
159935
160200
  export type ResumeCreateWithoutApplicationsInput = {
159936
160201
  id?: string
159937
160202
  uploaded_resume_path?: string | null
160203
+ resume_template_id?: string | null
159938
160204
  file_hash?: string | null
159939
160205
  summary?: NullableJsonNullValueInput | InputJsonValue
159940
160206
  created_at?: Date | string
@@ -159948,6 +160214,7 @@ export namespace Prisma {
159948
160214
  organisation?: OrganisationCreateNestedOneWithoutResumesInput
159949
160215
  job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
159950
160216
  document?: DocumentCreateNestedOneWithoutResumeInput
160217
+ rendered_export_document?: DocumentCreateNestedOneWithoutResume_rendered_exportInput
159951
160218
  interviews?: InterviewCreateNestedManyWithoutResumeInput
159952
160219
  ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutResumeInput
159953
160220
  resume_data?: ResumeDataCreateNestedManyWithoutResumeInput
@@ -159962,6 +160229,8 @@ export namespace Prisma {
159962
160229
  job_description_id?: string | null
159963
160230
  uploaded_resume_path?: string | null
159964
160231
  document_id?: string | null
160232
+ rendered_export_document_id?: string | null
160233
+ resume_template_id?: string | null
159965
160234
  file_hash?: string | null
159966
160235
  summary?: NullableJsonNullValueInput | InputJsonValue
159967
160236
  created_at?: Date | string
@@ -160527,6 +160796,7 @@ export namespace Prisma {
160527
160796
  description?: string | null
160528
160797
  order_no?: number | null
160529
160798
  format?: $Enums.EvaluationRoundFormat | null
160799
+ round_purpose?: string | null
160530
160800
  topics?: OngoingEvaluationCreatetopicsInput | string[]
160531
160801
  assignee?: string | null
160532
160802
  elimination_round?: boolean | null
@@ -160572,6 +160842,7 @@ export namespace Prisma {
160572
160842
  description?: string | null
160573
160843
  order_no?: number | null
160574
160844
  format?: $Enums.EvaluationRoundFormat | null
160845
+ round_purpose?: string | null
160575
160846
  topics?: OngoingEvaluationCreatetopicsInput | string[]
160576
160847
  assignee?: string | null
160577
160848
  elimination_round?: boolean | null
@@ -160854,6 +161125,7 @@ export namespace Prisma {
160854
161125
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
160855
161126
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
160856
161127
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
161128
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
160857
161129
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
160858
161130
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
160859
161131
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -160889,6 +161161,7 @@ export namespace Prisma {
160889
161161
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
160890
161162
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
160891
161163
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
161164
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
160892
161165
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
160893
161166
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
160894
161167
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -161192,6 +161465,7 @@ export namespace Prisma {
161192
161465
  export type ResumeUpdateWithoutApplicationsInput = {
161193
161466
  id?: StringFieldUpdateOperationsInput | string
161194
161467
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
161468
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
161195
161469
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
161196
161470
  summary?: NullableJsonNullValueInput | InputJsonValue
161197
161471
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -161205,6 +161479,7 @@ export namespace Prisma {
161205
161479
  organisation?: OrganisationUpdateOneWithoutResumesNestedInput
161206
161480
  job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
161207
161481
  document?: DocumentUpdateOneWithoutResumeNestedInput
161482
+ rendered_export_document?: DocumentUpdateOneWithoutResume_rendered_exportNestedInput
161208
161483
  interviews?: InterviewUpdateManyWithoutResumeNestedInput
161209
161484
  ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutResumeNestedInput
161210
161485
  resume_data?: ResumeDataUpdateManyWithoutResumeNestedInput
@@ -161219,6 +161494,8 @@ export namespace Prisma {
161219
161494
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
161220
161495
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
161221
161496
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
161497
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
161498
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
161222
161499
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
161223
161500
  summary?: NullableJsonNullValueInput | InputJsonValue
161224
161501
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -161764,6 +162041,7 @@ export namespace Prisma {
161764
162041
  description?: StringNullableFilter<"OngoingEvaluation"> | string | null
161765
162042
  order_no?: IntNullableFilter<"OngoingEvaluation"> | number | null
161766
162043
  format?: EnumEvaluationRoundFormatNullableFilter<"OngoingEvaluation"> | $Enums.EvaluationRoundFormat | null
162044
+ round_purpose?: StringNullableFilter<"OngoingEvaluation"> | string | null
161767
162045
  topics?: StringNullableListFilter<"OngoingEvaluation">
161768
162046
  assignee?: StringNullableFilter<"OngoingEvaluation"> | string | null
161769
162047
  elimination_round?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
@@ -163367,6 +163645,7 @@ export namespace Prisma {
163367
163645
  description?: string | null
163368
163646
  order_no?: number | null
163369
163647
  format?: $Enums.EvaluationRoundFormat | null
163648
+ round_purpose?: string | null
163370
163649
  topics?: OngoingEvaluationCreatetopicsInput | string[]
163371
163650
  assignee?: string | null
163372
163651
  elimination_round?: boolean | null
@@ -163412,6 +163691,7 @@ export namespace Prisma {
163412
163691
  description?: string | null
163413
163692
  order_no?: number | null
163414
163693
  format?: $Enums.EvaluationRoundFormat | null
163694
+ round_purpose?: string | null
163415
163695
  topics?: OngoingEvaluationCreatetopicsInput | string[]
163416
163696
  assignee?: string | null
163417
163697
  elimination_round?: boolean | null
@@ -164153,6 +164433,7 @@ export namespace Prisma {
164153
164433
  description?: NullableStringFieldUpdateOperationsInput | string | null
164154
164434
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
164155
164435
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
164436
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
164156
164437
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
164157
164438
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
164158
164439
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -164198,6 +164479,7 @@ export namespace Prisma {
164198
164479
  description?: NullableStringFieldUpdateOperationsInput | string | null
164199
164480
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
164200
164481
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
164482
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
164201
164483
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
164202
164484
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
164203
164485
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -164434,6 +164716,7 @@ export namespace Prisma {
164434
164716
  elimination_round?: boolean
164435
164717
  evaluation_type?: $Enums.EvaluationType
164436
164718
  type_of_round: $Enums.RoundType
164719
+ round_purpose?: string | null
164437
164720
  timeline?: number | null
164438
164721
  order_no?: number | null
164439
164722
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -164468,6 +164751,7 @@ export namespace Prisma {
164468
164751
  elimination_round?: boolean
164469
164752
  evaluation_type?: $Enums.EvaluationType
164470
164753
  type_of_round: $Enums.RoundType
164754
+ round_purpose?: string | null
164471
164755
  timeline?: number | null
164472
164756
  order_no?: number | null
164473
164757
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -164716,6 +165000,7 @@ export namespace Prisma {
164716
165000
  elimination_round?: BoolFilter<"EvaluationPlan"> | boolean
164717
165001
  evaluation_type?: EnumEvaluationTypeFilter<"EvaluationPlan"> | $Enums.EvaluationType
164718
165002
  type_of_round?: EnumRoundTypeFilter<"EvaluationPlan"> | $Enums.RoundType
165003
+ round_purpose?: StringNullableFilter<"EvaluationPlan"> | string | null
164719
165004
  timeline?: IntNullableFilter<"EvaluationPlan"> | number | null
164720
165005
  order_no?: IntNullableFilter<"EvaluationPlan"> | number | null
164721
165006
  details?: JsonNullableFilter<"EvaluationPlan">
@@ -165477,6 +165762,7 @@ export namespace Prisma {
165477
165762
  applied_at?: Date | string
165478
165763
  round_no?: number
165479
165764
  is_jaf_completed?: boolean
165765
+ proceed_to_next_round?: boolean | null
165480
165766
  on_notice_period?: boolean
165481
165767
  expected_joining_date?: Date | string | null
165482
165768
  current_ctc?: string | null
@@ -165522,6 +165808,7 @@ export namespace Prisma {
165522
165808
  source_id?: string | null
165523
165809
  round_no?: number
165524
165810
  is_jaf_completed?: boolean
165811
+ proceed_to_next_round?: boolean | null
165525
165812
  on_notice_period?: boolean
165526
165813
  expected_joining_date?: Date | string | null
165527
165814
  current_ctc?: string | null
@@ -165562,6 +165849,7 @@ export namespace Prisma {
165562
165849
  description?: string | null
165563
165850
  order_no?: number | null
165564
165851
  format?: $Enums.EvaluationRoundFormat | null
165852
+ round_purpose?: string | null
165565
165853
  topics?: OngoingEvaluationCreatetopicsInput | string[]
165566
165854
  assignee?: string | null
165567
165855
  elimination_round?: boolean | null
@@ -165608,6 +165896,7 @@ export namespace Prisma {
165608
165896
  description?: string | null
165609
165897
  order_no?: number | null
165610
165898
  format?: $Enums.EvaluationRoundFormat | null
165899
+ round_purpose?: string | null
165611
165900
  topics?: OngoingEvaluationCreatetopicsInput | string[]
165612
165901
  assignee?: string | null
165613
165902
  elimination_round?: boolean | null
@@ -165650,6 +165939,7 @@ export namespace Prisma {
165650
165939
  organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
165651
165940
  candidate?: UserCreateNestedOneWithoutDocumentsInput
165652
165941
  resume?: ResumeCreateNestedOneWithoutDocumentInput
165942
+ resume_rendered_export?: ResumeCreateNestedOneWithoutRendered_export_documentInput
165653
165943
  job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
165654
165944
  job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
165655
165945
  interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
@@ -165676,6 +165966,7 @@ export namespace Prisma {
165676
165966
  updated_by: string
165677
165967
  is_active?: boolean
165678
165968
  resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
165969
+ resume_rendered_export?: ResumeUncheckedCreateNestedOneWithoutRendered_export_documentInput
165679
165970
  job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
165680
165971
  job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
165681
165972
  interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
@@ -165707,6 +165998,7 @@ export namespace Prisma {
165707
165998
  organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
165708
165999
  candidate?: UserCreateNestedOneWithoutDocumentsInput
165709
166000
  resume?: ResumeCreateNestedOneWithoutDocumentInput
166001
+ resume_rendered_export?: ResumeCreateNestedOneWithoutRendered_export_documentInput
165710
166002
  job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
165711
166003
  job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
165712
166004
  interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
@@ -165733,6 +166025,7 @@ export namespace Prisma {
165733
166025
  updated_by: string
165734
166026
  is_active?: boolean
165735
166027
  resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
166028
+ resume_rendered_export?: ResumeUncheckedCreateNestedOneWithoutRendered_export_documentInput
165736
166029
  job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
165737
166030
  job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
165738
166031
  interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
@@ -166331,6 +166624,7 @@ export namespace Prisma {
166331
166624
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
166332
166625
  round_no?: IntFieldUpdateOperationsInput | number
166333
166626
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
166627
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
166334
166628
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
166335
166629
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
166336
166630
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -166376,6 +166670,7 @@ export namespace Prisma {
166376
166670
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
166377
166671
  round_no?: IntFieldUpdateOperationsInput | number
166378
166672
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
166673
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
166379
166674
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
166380
166675
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
166381
166676
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -166422,6 +166717,7 @@ export namespace Prisma {
166422
166717
  description?: NullableStringFieldUpdateOperationsInput | string | null
166423
166718
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
166424
166719
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
166720
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
166425
166721
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
166426
166722
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
166427
166723
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -166468,6 +166764,7 @@ export namespace Prisma {
166468
166764
  description?: NullableStringFieldUpdateOperationsInput | string | null
166469
166765
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
166470
166766
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
166767
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
166471
166768
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
166472
166769
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
166473
166770
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -166516,6 +166813,7 @@ export namespace Prisma {
166516
166813
  organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
166517
166814
  candidate?: UserUpdateOneWithoutDocumentsNestedInput
166518
166815
  resume?: ResumeUpdateOneWithoutDocumentNestedInput
166816
+ resume_rendered_export?: ResumeUpdateOneWithoutRendered_export_documentNestedInput
166519
166817
  job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
166520
166818
  job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
166521
166819
  interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
@@ -166542,6 +166840,7 @@ export namespace Prisma {
166542
166840
  updated_by?: StringFieldUpdateOperationsInput | string
166543
166841
  is_active?: BoolFieldUpdateOperationsInput | boolean
166544
166842
  resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
166843
+ resume_rendered_export?: ResumeUncheckedUpdateOneWithoutRendered_export_documentNestedInput
166545
166844
  job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
166546
166845
  job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
166547
166846
  interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
@@ -166579,6 +166878,7 @@ export namespace Prisma {
166579
166878
  organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
166580
166879
  candidate?: UserUpdateOneWithoutDocumentsNestedInput
166581
166880
  resume?: ResumeUpdateOneWithoutDocumentNestedInput
166881
+ resume_rendered_export?: ResumeUpdateOneWithoutRendered_export_documentNestedInput
166582
166882
  job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
166583
166883
  job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
166584
166884
  interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
@@ -166605,6 +166905,7 @@ export namespace Prisma {
166605
166905
  updated_by?: StringFieldUpdateOperationsInput | string
166606
166906
  is_active?: BoolFieldUpdateOperationsInput | boolean
166607
166907
  resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
166908
+ resume_rendered_export?: ResumeUncheckedUpdateOneWithoutRendered_export_documentNestedInput
166608
166909
  job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
166609
166910
  job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
166610
166911
  interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
@@ -166818,6 +167119,7 @@ export namespace Prisma {
166818
167119
  elimination_round?: boolean
166819
167120
  evaluation_type?: $Enums.EvaluationType
166820
167121
  type_of_round: $Enums.RoundType
167122
+ round_purpose?: string | null
166821
167123
  timeline?: number | null
166822
167124
  order_no?: number | null
166823
167125
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -166852,6 +167154,7 @@ export namespace Prisma {
166852
167154
  elimination_round?: boolean
166853
167155
  evaluation_type?: $Enums.EvaluationType
166854
167156
  type_of_round: $Enums.RoundType
167157
+ round_purpose?: string | null
166855
167158
  timeline?: number | null
166856
167159
  order_no?: number | null
166857
167160
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -168164,6 +168467,7 @@ export namespace Prisma {
168164
168467
  export type ResumeCreateWithoutCandidate_profileInput = {
168165
168468
  id?: string
168166
168469
  uploaded_resume_path?: string | null
168470
+ resume_template_id?: string | null
168167
168471
  file_hash?: string | null
168168
168472
  summary?: NullableJsonNullValueInput | InputJsonValue
168169
168473
  created_at?: Date | string
@@ -168177,6 +168481,7 @@ export namespace Prisma {
168177
168481
  organisation?: OrganisationCreateNestedOneWithoutResumesInput
168178
168482
  job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
168179
168483
  document?: DocumentCreateNestedOneWithoutResumeInput
168484
+ rendered_export_document?: DocumentCreateNestedOneWithoutResume_rendered_exportInput
168180
168485
  applications?: ApplicationCreateNestedManyWithoutResumeInput
168181
168486
  interviews?: InterviewCreateNestedManyWithoutResumeInput
168182
168487
  ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutResumeInput
@@ -168191,6 +168496,8 @@ export namespace Prisma {
168191
168496
  job_description_id?: string | null
168192
168497
  uploaded_resume_path?: string | null
168193
168498
  document_id?: string | null
168499
+ rendered_export_document_id?: string | null
168500
+ resume_template_id?: string | null
168194
168501
  file_hash?: string | null
168195
168502
  summary?: NullableJsonNullValueInput | InputJsonValue
168196
168503
  created_at?: Date | string
@@ -168387,6 +168694,7 @@ export namespace Prisma {
168387
168694
  export type ResumeUpdateWithoutCandidate_profileInput = {
168388
168695
  id?: StringFieldUpdateOperationsInput | string
168389
168696
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
168697
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
168390
168698
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
168391
168699
  summary?: NullableJsonNullValueInput | InputJsonValue
168392
168700
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -168400,6 +168708,7 @@ export namespace Prisma {
168400
168708
  organisation?: OrganisationUpdateOneWithoutResumesNestedInput
168401
168709
  job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
168402
168710
  document?: DocumentUpdateOneWithoutResumeNestedInput
168711
+ rendered_export_document?: DocumentUpdateOneWithoutResume_rendered_exportNestedInput
168403
168712
  applications?: ApplicationUpdateManyWithoutResumeNestedInput
168404
168713
  interviews?: InterviewUpdateManyWithoutResumeNestedInput
168405
168714
  ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutResumeNestedInput
@@ -168414,6 +168723,8 @@ export namespace Prisma {
168414
168723
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
168415
168724
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
168416
168725
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
168726
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
168727
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
168417
168728
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
168418
168729
  summary?: NullableJsonNullValueInput | InputJsonValue
168419
168730
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -168936,6 +169247,7 @@ export namespace Prisma {
168936
169247
  applied_at?: Date | string
168937
169248
  round_no?: number
168938
169249
  is_jaf_completed?: boolean
169250
+ proceed_to_next_round?: boolean | null
168939
169251
  on_notice_period?: boolean
168940
169252
  expected_joining_date?: Date | string | null
168941
169253
  current_ctc?: string | null
@@ -168981,6 +169293,7 @@ export namespace Prisma {
168981
169293
  source_id?: string | null
168982
169294
  round_no?: number
168983
169295
  is_jaf_completed?: boolean
169296
+ proceed_to_next_round?: boolean | null
168984
169297
  on_notice_period?: boolean
168985
169298
  expected_joining_date?: Date | string | null
168986
169299
  current_ctc?: string | null
@@ -169333,6 +169646,7 @@ export namespace Prisma {
169333
169646
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
169334
169647
  round_no?: IntFieldUpdateOperationsInput | number
169335
169648
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
169649
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
169336
169650
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
169337
169651
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
169338
169652
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -169378,6 +169692,7 @@ export namespace Prisma {
169378
169692
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
169379
169693
  round_no?: IntFieldUpdateOperationsInput | number
169380
169694
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
169695
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
169381
169696
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
169382
169697
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
169383
169698
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -169711,6 +170026,7 @@ export namespace Prisma {
169711
170026
  applied_at?: Date | string
169712
170027
  round_no?: number
169713
170028
  is_jaf_completed?: boolean
170029
+ proceed_to_next_round?: boolean | null
169714
170030
  on_notice_period?: boolean
169715
170031
  expected_joining_date?: Date | string | null
169716
170032
  current_ctc?: string | null
@@ -169756,6 +170072,7 @@ export namespace Prisma {
169756
170072
  source_id?: string | null
169757
170073
  round_no?: number
169758
170074
  is_jaf_completed?: boolean
170075
+ proceed_to_next_round?: boolean | null
169759
170076
  on_notice_period?: boolean
169760
170077
  expected_joining_date?: Date | string | null
169761
170078
  current_ctc?: string | null
@@ -170101,6 +170418,7 @@ export namespace Prisma {
170101
170418
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
170102
170419
  round_no?: IntFieldUpdateOperationsInput | number
170103
170420
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
170421
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
170104
170422
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
170105
170423
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
170106
170424
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -170146,6 +170464,7 @@ export namespace Prisma {
170146
170464
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
170147
170465
  round_no?: IntFieldUpdateOperationsInput | number
170148
170466
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
170467
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
170149
170468
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
170150
170469
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
170151
170470
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -170529,6 +170848,7 @@ export namespace Prisma {
170529
170848
  export type ResumeCreateWithoutDocumentInput = {
170530
170849
  id?: string
170531
170850
  uploaded_resume_path?: string | null
170851
+ resume_template_id?: string | null
170532
170852
  file_hash?: string | null
170533
170853
  summary?: NullableJsonNullValueInput | InputJsonValue
170534
170854
  created_at?: Date | string
@@ -170541,6 +170861,7 @@ export namespace Prisma {
170541
170861
  user?: UserCreateNestedOneWithoutResumeInput
170542
170862
  organisation?: OrganisationCreateNestedOneWithoutResumesInput
170543
170863
  job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
170864
+ rendered_export_document?: DocumentCreateNestedOneWithoutResume_rendered_exportInput
170544
170865
  applications?: ApplicationCreateNestedManyWithoutResumeInput
170545
170866
  interviews?: InterviewCreateNestedManyWithoutResumeInput
170546
170867
  ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutResumeInput
@@ -170555,6 +170876,8 @@ export namespace Prisma {
170555
170876
  organisation_id?: string | null
170556
170877
  job_description_id?: string | null
170557
170878
  uploaded_resume_path?: string | null
170879
+ rendered_export_document_id?: string | null
170880
+ resume_template_id?: string | null
170558
170881
  file_hash?: string | null
170559
170882
  summary?: NullableJsonNullValueInput | InputJsonValue
170560
170883
  created_at?: Date | string
@@ -170577,6 +170900,61 @@ export namespace Prisma {
170577
170900
  create: XOR<ResumeCreateWithoutDocumentInput, ResumeUncheckedCreateWithoutDocumentInput>
170578
170901
  }
170579
170902
 
170903
+ export type ResumeCreateWithoutRendered_export_documentInput = {
170904
+ id?: string
170905
+ uploaded_resume_path?: string | null
170906
+ resume_template_id?: string | null
170907
+ file_hash?: string | null
170908
+ summary?: NullableJsonNullValueInput | InputJsonValue
170909
+ created_at?: Date | string
170910
+ updated_at?: Date | string
170911
+ created_by: string
170912
+ updated_by: string
170913
+ is_active?: boolean
170914
+ name?: string | null
170915
+ yearsOfExperience?: number | null
170916
+ user?: UserCreateNestedOneWithoutResumeInput
170917
+ organisation?: OrganisationCreateNestedOneWithoutResumesInput
170918
+ job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
170919
+ document?: DocumentCreateNestedOneWithoutResumeInput
170920
+ applications?: ApplicationCreateNestedManyWithoutResumeInput
170921
+ interviews?: InterviewCreateNestedManyWithoutResumeInput
170922
+ ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutResumeInput
170923
+ resume_data?: ResumeDataCreateNestedManyWithoutResumeInput
170924
+ fit_check?: FitCheckCreateNestedManyWithoutResumeInput
170925
+ candidate_profile?: CandidateProfileCreateNestedOneWithoutResumeInput
170926
+ }
170927
+
170928
+ export type ResumeUncheckedCreateWithoutRendered_export_documentInput = {
170929
+ id?: string
170930
+ user_id?: string | null
170931
+ organisation_id?: string | null
170932
+ job_description_id?: string | null
170933
+ uploaded_resume_path?: string | null
170934
+ document_id?: string | null
170935
+ resume_template_id?: string | null
170936
+ file_hash?: string | null
170937
+ summary?: NullableJsonNullValueInput | InputJsonValue
170938
+ created_at?: Date | string
170939
+ updated_at?: Date | string
170940
+ created_by: string
170941
+ updated_by: string
170942
+ is_active?: boolean
170943
+ name?: string | null
170944
+ yearsOfExperience?: number | null
170945
+ applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
170946
+ interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
170947
+ ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
170948
+ resume_data?: ResumeDataUncheckedCreateNestedManyWithoutResumeInput
170949
+ fit_check?: FitCheckUncheckedCreateNestedManyWithoutResumeInput
170950
+ candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutResumeInput
170951
+ }
170952
+
170953
+ export type ResumeCreateOrConnectWithoutRendered_export_documentInput = {
170954
+ where: ResumeWhereUniqueInput
170955
+ create: XOR<ResumeCreateWithoutRendered_export_documentInput, ResumeUncheckedCreateWithoutRendered_export_documentInput>
170956
+ }
170957
+
170580
170958
  export type JobDescriptionCreateWithoutSource_documentInput = {
170581
170959
  id?: string
170582
170960
  status?: $Enums.JobDescriptionStatus
@@ -171320,6 +171698,7 @@ export namespace Prisma {
171320
171698
  export type ResumeUpdateWithoutDocumentInput = {
171321
171699
  id?: StringFieldUpdateOperationsInput | string
171322
171700
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
171701
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
171323
171702
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
171324
171703
  summary?: NullableJsonNullValueInput | InputJsonValue
171325
171704
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -171332,6 +171711,7 @@ export namespace Prisma {
171332
171711
  user?: UserUpdateOneWithoutResumeNestedInput
171333
171712
  organisation?: OrganisationUpdateOneWithoutResumesNestedInput
171334
171713
  job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
171714
+ rendered_export_document?: DocumentUpdateOneWithoutResume_rendered_exportNestedInput
171335
171715
  applications?: ApplicationUpdateManyWithoutResumeNestedInput
171336
171716
  interviews?: InterviewUpdateManyWithoutResumeNestedInput
171337
171717
  ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutResumeNestedInput
@@ -171346,6 +171726,69 @@ export namespace Prisma {
171346
171726
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
171347
171727
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
171348
171728
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
171729
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
171730
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
171731
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
171732
+ summary?: NullableJsonNullValueInput | InputJsonValue
171733
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
171734
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
171735
+ created_by?: StringFieldUpdateOperationsInput | string
171736
+ updated_by?: StringFieldUpdateOperationsInput | string
171737
+ is_active?: BoolFieldUpdateOperationsInput | boolean
171738
+ name?: NullableStringFieldUpdateOperationsInput | string | null
171739
+ yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
171740
+ applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
171741
+ interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
171742
+ ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
171743
+ resume_data?: ResumeDataUncheckedUpdateManyWithoutResumeNestedInput
171744
+ fit_check?: FitCheckUncheckedUpdateManyWithoutResumeNestedInput
171745
+ candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutResumeNestedInput
171746
+ }
171747
+
171748
+ export type ResumeUpsertWithoutRendered_export_documentInput = {
171749
+ update: XOR<ResumeUpdateWithoutRendered_export_documentInput, ResumeUncheckedUpdateWithoutRendered_export_documentInput>
171750
+ create: XOR<ResumeCreateWithoutRendered_export_documentInput, ResumeUncheckedCreateWithoutRendered_export_documentInput>
171751
+ where?: ResumeWhereInput
171752
+ }
171753
+
171754
+ export type ResumeUpdateToOneWithWhereWithoutRendered_export_documentInput = {
171755
+ where?: ResumeWhereInput
171756
+ data: XOR<ResumeUpdateWithoutRendered_export_documentInput, ResumeUncheckedUpdateWithoutRendered_export_documentInput>
171757
+ }
171758
+
171759
+ export type ResumeUpdateWithoutRendered_export_documentInput = {
171760
+ id?: StringFieldUpdateOperationsInput | string
171761
+ uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
171762
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
171763
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
171764
+ summary?: NullableJsonNullValueInput | InputJsonValue
171765
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
171766
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
171767
+ created_by?: StringFieldUpdateOperationsInput | string
171768
+ updated_by?: StringFieldUpdateOperationsInput | string
171769
+ is_active?: BoolFieldUpdateOperationsInput | boolean
171770
+ name?: NullableStringFieldUpdateOperationsInput | string | null
171771
+ yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
171772
+ user?: UserUpdateOneWithoutResumeNestedInput
171773
+ organisation?: OrganisationUpdateOneWithoutResumesNestedInput
171774
+ job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
171775
+ document?: DocumentUpdateOneWithoutResumeNestedInput
171776
+ applications?: ApplicationUpdateManyWithoutResumeNestedInput
171777
+ interviews?: InterviewUpdateManyWithoutResumeNestedInput
171778
+ ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutResumeNestedInput
171779
+ resume_data?: ResumeDataUpdateManyWithoutResumeNestedInput
171780
+ fit_check?: FitCheckUpdateManyWithoutResumeNestedInput
171781
+ candidate_profile?: CandidateProfileUpdateOneWithoutResumeNestedInput
171782
+ }
171783
+
171784
+ export type ResumeUncheckedUpdateWithoutRendered_export_documentInput = {
171785
+ id?: StringFieldUpdateOperationsInput | string
171786
+ user_id?: NullableStringFieldUpdateOperationsInput | string | null
171787
+ organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
171788
+ job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
171789
+ uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
171790
+ document_id?: NullableStringFieldUpdateOperationsInput | string | null
171791
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
171349
171792
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
171350
171793
  summary?: NullableJsonNullValueInput | InputJsonValue
171351
171794
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -172083,6 +172526,7 @@ export namespace Prisma {
172083
172526
  applied_at?: Date | string
172084
172527
  round_no?: number
172085
172528
  is_jaf_completed?: boolean
172529
+ proceed_to_next_round?: boolean | null
172086
172530
  on_notice_period?: boolean
172087
172531
  expected_joining_date?: Date | string | null
172088
172532
  current_ctc?: string | null
@@ -172127,6 +172571,7 @@ export namespace Prisma {
172127
172571
  source_id?: string | null
172128
172572
  round_no?: number
172129
172573
  is_jaf_completed?: boolean
172574
+ proceed_to_next_round?: boolean | null
172130
172575
  on_notice_period?: boolean
172131
172576
  expected_joining_date?: Date | string | null
172132
172577
  current_ctc?: string | null
@@ -172243,6 +172688,7 @@ export namespace Prisma {
172243
172688
  description?: string | null
172244
172689
  order_no?: number | null
172245
172690
  format?: $Enums.EvaluationRoundFormat | null
172691
+ round_purpose?: string | null
172246
172692
  topics?: OngoingEvaluationCreatetopicsInput | string[]
172247
172693
  assignee?: string | null
172248
172694
  elimination_round?: boolean | null
@@ -172288,6 +172734,7 @@ export namespace Prisma {
172288
172734
  description?: string | null
172289
172735
  order_no?: number | null
172290
172736
  format?: $Enums.EvaluationRoundFormat | null
172737
+ round_purpose?: string | null
172291
172738
  topics?: OngoingEvaluationCreatetopicsInput | string[]
172292
172739
  assignee?: string | null
172293
172740
  elimination_round?: boolean | null
@@ -172481,6 +172928,7 @@ export namespace Prisma {
172481
172928
  source_id?: StringNullableFilter<"Application"> | string | null
172482
172929
  round_no?: IntFilter<"Application"> | number
172483
172930
  is_jaf_completed?: BoolFilter<"Application"> | boolean
172931
+ proceed_to_next_round?: BoolNullableFilter<"Application"> | boolean | null
172484
172932
  on_notice_period?: BoolFilter<"Application"> | boolean
172485
172933
  expected_joining_date?: DateTimeNullableFilter<"Application"> | Date | string | null
172486
172934
  current_ctc?: StringNullableFilter<"Application"> | string | null
@@ -173088,6 +173536,7 @@ export namespace Prisma {
173088
173536
  export type ResumeCreateWithoutFit_checkInput = {
173089
173537
  id?: string
173090
173538
  uploaded_resume_path?: string | null
173539
+ resume_template_id?: string | null
173091
173540
  file_hash?: string | null
173092
173541
  summary?: NullableJsonNullValueInput | InputJsonValue
173093
173542
  created_at?: Date | string
@@ -173101,6 +173550,7 @@ export namespace Prisma {
173101
173550
  organisation?: OrganisationCreateNestedOneWithoutResumesInput
173102
173551
  job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
173103
173552
  document?: DocumentCreateNestedOneWithoutResumeInput
173553
+ rendered_export_document?: DocumentCreateNestedOneWithoutResume_rendered_exportInput
173104
173554
  applications?: ApplicationCreateNestedManyWithoutResumeInput
173105
173555
  interviews?: InterviewCreateNestedManyWithoutResumeInput
173106
173556
  ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutResumeInput
@@ -173115,6 +173565,8 @@ export namespace Prisma {
173115
173565
  job_description_id?: string | null
173116
173566
  uploaded_resume_path?: string | null
173117
173567
  document_id?: string | null
173568
+ rendered_export_document_id?: string | null
173569
+ resume_template_id?: string | null
173118
173570
  file_hash?: string | null
173119
173571
  summary?: NullableJsonNullValueInput | InputJsonValue
173120
173572
  created_at?: Date | string
@@ -173235,6 +173687,7 @@ export namespace Prisma {
173235
173687
  applied_at?: Date | string
173236
173688
  round_no?: number
173237
173689
  is_jaf_completed?: boolean
173690
+ proceed_to_next_round?: boolean | null
173238
173691
  on_notice_period?: boolean
173239
173692
  expected_joining_date?: Date | string | null
173240
173693
  current_ctc?: string | null
@@ -173279,6 +173732,7 @@ export namespace Prisma {
173279
173732
  source_id?: string | null
173280
173733
  round_no?: number
173281
173734
  is_jaf_completed?: boolean
173735
+ proceed_to_next_round?: boolean | null
173282
173736
  on_notice_period?: boolean
173283
173737
  expected_joining_date?: Date | string | null
173284
173738
  current_ctc?: string | null
@@ -173592,6 +174046,7 @@ export namespace Prisma {
173592
174046
  export type ResumeUpdateWithoutFit_checkInput = {
173593
174047
  id?: StringFieldUpdateOperationsInput | string
173594
174048
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
174049
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
173595
174050
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
173596
174051
  summary?: NullableJsonNullValueInput | InputJsonValue
173597
174052
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -173605,6 +174060,7 @@ export namespace Prisma {
173605
174060
  organisation?: OrganisationUpdateOneWithoutResumesNestedInput
173606
174061
  job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
173607
174062
  document?: DocumentUpdateOneWithoutResumeNestedInput
174063
+ rendered_export_document?: DocumentUpdateOneWithoutResume_rendered_exportNestedInput
173608
174064
  applications?: ApplicationUpdateManyWithoutResumeNestedInput
173609
174065
  interviews?: InterviewUpdateManyWithoutResumeNestedInput
173610
174066
  ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutResumeNestedInput
@@ -173619,6 +174075,8 @@ export namespace Prisma {
173619
174075
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
173620
174076
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
173621
174077
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
174078
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
174079
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
173622
174080
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
173623
174081
  summary?: NullableJsonNullValueInput | InputJsonValue
173624
174082
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -173751,6 +174209,7 @@ export namespace Prisma {
173751
174209
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
173752
174210
  round_no?: IntFieldUpdateOperationsInput | number
173753
174211
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
174212
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
173754
174213
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
173755
174214
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
173756
174215
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -173795,6 +174254,7 @@ export namespace Prisma {
173795
174254
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
173796
174255
  round_no?: IntFieldUpdateOperationsInput | number
173797
174256
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
174257
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
173798
174258
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
173799
174259
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
173800
174260
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -175183,6 +175643,7 @@ export namespace Prisma {
175183
175643
  organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
175184
175644
  candidate?: UserCreateNestedOneWithoutDocumentsInput
175185
175645
  resume?: ResumeCreateNestedOneWithoutDocumentInput
175646
+ resume_rendered_export?: ResumeCreateNestedOneWithoutRendered_export_documentInput
175186
175647
  job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
175187
175648
  job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
175188
175649
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
@@ -175209,6 +175670,7 @@ export namespace Prisma {
175209
175670
  updated_by: string
175210
175671
  is_active?: boolean
175211
175672
  resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
175673
+ resume_rendered_export?: ResumeUncheckedCreateNestedOneWithoutRendered_export_documentInput
175212
175674
  job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
175213
175675
  job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
175214
175676
  job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
@@ -175317,6 +175779,7 @@ export namespace Prisma {
175317
175779
  export type ResumeCreateWithoutInterviewsInput = {
175318
175780
  id?: string
175319
175781
  uploaded_resume_path?: string | null
175782
+ resume_template_id?: string | null
175320
175783
  file_hash?: string | null
175321
175784
  summary?: NullableJsonNullValueInput | InputJsonValue
175322
175785
  created_at?: Date | string
@@ -175330,6 +175793,7 @@ export namespace Prisma {
175330
175793
  organisation?: OrganisationCreateNestedOneWithoutResumesInput
175331
175794
  job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
175332
175795
  document?: DocumentCreateNestedOneWithoutResumeInput
175796
+ rendered_export_document?: DocumentCreateNestedOneWithoutResume_rendered_exportInput
175333
175797
  applications?: ApplicationCreateNestedManyWithoutResumeInput
175334
175798
  ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutResumeInput
175335
175799
  resume_data?: ResumeDataCreateNestedManyWithoutResumeInput
@@ -175344,6 +175808,8 @@ export namespace Prisma {
175344
175808
  job_description_id?: string | null
175345
175809
  uploaded_resume_path?: string | null
175346
175810
  document_id?: string | null
175811
+ rendered_export_document_id?: string | null
175812
+ resume_template_id?: string | null
175347
175813
  file_hash?: string | null
175348
175814
  summary?: NullableJsonNullValueInput | InputJsonValue
175349
175815
  created_at?: Date | string
@@ -175375,6 +175841,7 @@ export namespace Prisma {
175375
175841
  elimination_round?: boolean
175376
175842
  evaluation_type?: $Enums.EvaluationType
175377
175843
  type_of_round: $Enums.RoundType
175844
+ round_purpose?: string | null
175378
175845
  timeline?: number | null
175379
175846
  order_no?: number | null
175380
175847
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -175410,6 +175877,7 @@ export namespace Prisma {
175410
175877
  elimination_round?: boolean
175411
175878
  evaluation_type?: $Enums.EvaluationType
175412
175879
  type_of_round: $Enums.RoundType
175880
+ round_purpose?: string | null
175413
175881
  timeline?: number | null
175414
175882
  order_no?: number | null
175415
175883
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -175440,6 +175908,7 @@ export namespace Prisma {
175440
175908
  applied_at?: Date | string
175441
175909
  round_no?: number
175442
175910
  is_jaf_completed?: boolean
175911
+ proceed_to_next_round?: boolean | null
175443
175912
  on_notice_period?: boolean
175444
175913
  expected_joining_date?: Date | string | null
175445
175914
  current_ctc?: string | null
@@ -175485,6 +175954,7 @@ export namespace Prisma {
175485
175954
  source_id?: string | null
175486
175955
  round_no?: number
175487
175956
  is_jaf_completed?: boolean
175957
+ proceed_to_next_round?: boolean | null
175488
175958
  on_notice_period?: boolean
175489
175959
  expected_joining_date?: Date | string | null
175490
175960
  current_ctc?: string | null
@@ -175525,6 +175995,7 @@ export namespace Prisma {
175525
175995
  description?: string | null
175526
175996
  order_no?: number | null
175527
175997
  format?: $Enums.EvaluationRoundFormat | null
175998
+ round_purpose?: string | null
175528
175999
  topics?: OngoingEvaluationCreatetopicsInput | string[]
175529
176000
  assignee?: string | null
175530
176001
  elimination_round?: boolean | null
@@ -175570,6 +176041,7 @@ export namespace Prisma {
175570
176041
  description?: string | null
175571
176042
  order_no?: number | null
175572
176043
  format?: $Enums.EvaluationRoundFormat | null
176044
+ round_purpose?: string | null
175573
176045
  topics?: OngoingEvaluationCreatetopicsInput | string[]
175574
176046
  assignee?: string | null
175575
176047
  elimination_round?: boolean | null
@@ -176278,6 +176750,7 @@ export namespace Prisma {
176278
176750
  organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
176279
176751
  candidate?: UserUpdateOneWithoutDocumentsNestedInput
176280
176752
  resume?: ResumeUpdateOneWithoutDocumentNestedInput
176753
+ resume_rendered_export?: ResumeUpdateOneWithoutRendered_export_documentNestedInput
176281
176754
  job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
176282
176755
  job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
176283
176756
  job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
@@ -176304,6 +176777,7 @@ export namespace Prisma {
176304
176777
  updated_by?: StringFieldUpdateOperationsInput | string
176305
176778
  is_active?: BoolFieldUpdateOperationsInput | boolean
176306
176779
  resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
176780
+ resume_rendered_export?: ResumeUncheckedUpdateOneWithoutRendered_export_documentNestedInput
176307
176781
  job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
176308
176782
  job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
176309
176783
  job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
@@ -176424,6 +176898,7 @@ export namespace Prisma {
176424
176898
  export type ResumeUpdateWithoutInterviewsInput = {
176425
176899
  id?: StringFieldUpdateOperationsInput | string
176426
176900
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
176901
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
176427
176902
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
176428
176903
  summary?: NullableJsonNullValueInput | InputJsonValue
176429
176904
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -176437,6 +176912,7 @@ export namespace Prisma {
176437
176912
  organisation?: OrganisationUpdateOneWithoutResumesNestedInput
176438
176913
  job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
176439
176914
  document?: DocumentUpdateOneWithoutResumeNestedInput
176915
+ rendered_export_document?: DocumentUpdateOneWithoutResume_rendered_exportNestedInput
176440
176916
  applications?: ApplicationUpdateManyWithoutResumeNestedInput
176441
176917
  ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutResumeNestedInput
176442
176918
  resume_data?: ResumeDataUpdateManyWithoutResumeNestedInput
@@ -176451,6 +176927,8 @@ export namespace Prisma {
176451
176927
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
176452
176928
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
176453
176929
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
176930
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
176931
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
176454
176932
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
176455
176933
  summary?: NullableJsonNullValueInput | InputJsonValue
176456
176934
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -176488,6 +176966,7 @@ export namespace Prisma {
176488
176966
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
176489
176967
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
176490
176968
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
176969
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
176491
176970
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
176492
176971
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
176493
176972
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -176523,6 +177002,7 @@ export namespace Prisma {
176523
177002
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
176524
177003
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
176525
177004
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
177005
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
176526
177006
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
176527
177007
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
176528
177008
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -176559,6 +177039,7 @@ export namespace Prisma {
176559
177039
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
176560
177040
  round_no?: IntFieldUpdateOperationsInput | number
176561
177041
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
177042
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
176562
177043
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
176563
177044
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
176564
177045
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -176604,6 +177085,7 @@ export namespace Prisma {
176604
177085
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
176605
177086
  round_no?: IntFieldUpdateOperationsInput | number
176606
177087
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
177088
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
176607
177089
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
176608
177090
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
176609
177091
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -176650,6 +177132,7 @@ export namespace Prisma {
176650
177132
  description?: NullableStringFieldUpdateOperationsInput | string | null
176651
177133
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
176652
177134
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
177135
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
176653
177136
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
176654
177137
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
176655
177138
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -176695,6 +177178,7 @@ export namespace Prisma {
176695
177178
  description?: NullableStringFieldUpdateOperationsInput | string | null
176696
177179
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
176697
177180
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
177181
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
176698
177182
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
176699
177183
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
176700
177184
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -177515,6 +177999,7 @@ export namespace Prisma {
177515
177999
  applied_at?: Date | string
177516
178000
  round_no?: number
177517
178001
  is_jaf_completed?: boolean
178002
+ proceed_to_next_round?: boolean | null
177518
178003
  on_notice_period?: boolean
177519
178004
  expected_joining_date?: Date | string | null
177520
178005
  current_ctc?: string | null
@@ -177560,6 +178045,7 @@ export namespace Prisma {
177560
178045
  source_id?: string | null
177561
178046
  round_no?: number
177562
178047
  is_jaf_completed?: boolean
178048
+ proceed_to_next_round?: boolean | null
177563
178049
  on_notice_period?: boolean
177564
178050
  expected_joining_date?: Date | string | null
177565
178051
  current_ctc?: string | null
@@ -177646,6 +178132,7 @@ export namespace Prisma {
177646
178132
  organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
177647
178133
  candidate?: UserCreateNestedOneWithoutDocumentsInput
177648
178134
  resume?: ResumeCreateNestedOneWithoutDocumentInput
178135
+ resume_rendered_export?: ResumeCreateNestedOneWithoutRendered_export_documentInput
177649
178136
  job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
177650
178137
  job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
177651
178138
  interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
@@ -177672,6 +178159,7 @@ export namespace Prisma {
177672
178159
  updated_by: string
177673
178160
  is_active?: boolean
177674
178161
  resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
178162
+ resume_rendered_export?: ResumeUncheckedCreateNestedOneWithoutRendered_export_documentInput
177675
178163
  job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
177676
178164
  job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
177677
178165
  interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
@@ -177701,6 +178189,7 @@ export namespace Prisma {
177701
178189
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
177702
178190
  round_no?: IntFieldUpdateOperationsInput | number
177703
178191
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
178192
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
177704
178193
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
177705
178194
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
177706
178195
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -177746,6 +178235,7 @@ export namespace Prisma {
177746
178235
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
177747
178236
  round_no?: IntFieldUpdateOperationsInput | number
177748
178237
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
178238
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
177749
178239
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
177750
178240
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
177751
178241
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -177844,6 +178334,7 @@ export namespace Prisma {
177844
178334
  organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
177845
178335
  candidate?: UserUpdateOneWithoutDocumentsNestedInput
177846
178336
  resume?: ResumeUpdateOneWithoutDocumentNestedInput
178337
+ resume_rendered_export?: ResumeUpdateOneWithoutRendered_export_documentNestedInput
177847
178338
  job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
177848
178339
  job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
177849
178340
  interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
@@ -177870,6 +178361,7 @@ export namespace Prisma {
177870
178361
  updated_by?: StringFieldUpdateOperationsInput | string
177871
178362
  is_active?: BoolFieldUpdateOperationsInput | boolean
177872
178363
  resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
178364
+ resume_rendered_export?: ResumeUncheckedUpdateOneWithoutRendered_export_documentNestedInput
177873
178365
  job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
177874
178366
  job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
177875
178367
  interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
@@ -178380,6 +178872,7 @@ export namespace Prisma {
178380
178872
  organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
178381
178873
  candidate?: UserCreateNestedOneWithoutDocumentsInput
178382
178874
  resume?: ResumeCreateNestedOneWithoutDocumentInput
178875
+ resume_rendered_export?: ResumeCreateNestedOneWithoutRendered_export_documentInput
178383
178876
  job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
178384
178877
  interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
178385
178878
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
@@ -178406,6 +178899,7 @@ export namespace Prisma {
178406
178899
  updated_by: string
178407
178900
  is_active?: boolean
178408
178901
  resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
178902
+ resume_rendered_export?: ResumeUncheckedCreateNestedOneWithoutRendered_export_documentInput
178409
178903
  job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
178410
178904
  interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
178411
178905
  job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
@@ -178601,6 +179095,7 @@ export namespace Prisma {
178601
179095
  organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
178602
179096
  candidate?: UserCreateNestedOneWithoutDocumentsInput
178603
179097
  resume?: ResumeCreateNestedOneWithoutDocumentInput
179098
+ resume_rendered_export?: ResumeCreateNestedOneWithoutRendered_export_documentInput
178604
179099
  job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
178605
179100
  interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
178606
179101
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
@@ -178627,6 +179122,7 @@ export namespace Prisma {
178627
179122
  updated_by: string
178628
179123
  is_active?: boolean
178629
179124
  resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
179125
+ resume_rendered_export?: ResumeUncheckedCreateNestedOneWithoutRendered_export_documentInput
178630
179126
  job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
178631
179127
  interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
178632
179128
  job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
@@ -178645,6 +179141,7 @@ export namespace Prisma {
178645
179141
  applied_at?: Date | string
178646
179142
  round_no?: number
178647
179143
  is_jaf_completed?: boolean
179144
+ proceed_to_next_round?: boolean | null
178648
179145
  on_notice_period?: boolean
178649
179146
  expected_joining_date?: Date | string | null
178650
179147
  current_ctc?: string | null
@@ -178689,6 +179186,7 @@ export namespace Prisma {
178689
179186
  source_id?: string | null
178690
179187
  round_no?: number
178691
179188
  is_jaf_completed?: boolean
179189
+ proceed_to_next_round?: boolean | null
178692
179190
  on_notice_period?: boolean
178693
179191
  expected_joining_date?: Date | string | null
178694
179192
  current_ctc?: string | null
@@ -179021,6 +179519,7 @@ export namespace Prisma {
179021
179519
  elimination_round?: boolean
179022
179520
  evaluation_type?: $Enums.EvaluationType
179023
179521
  type_of_round: $Enums.RoundType
179522
+ round_purpose?: string | null
179024
179523
  timeline?: number | null
179025
179524
  order_no?: number | null
179026
179525
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -179055,6 +179554,7 @@ export namespace Prisma {
179055
179554
  elimination_round?: boolean
179056
179555
  evaluation_type?: $Enums.EvaluationType
179057
179556
  type_of_round: $Enums.RoundType
179557
+ round_purpose?: string | null
179058
179558
  timeline?: number | null
179059
179559
  order_no?: number | null
179060
179560
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -179097,6 +179597,7 @@ export namespace Prisma {
179097
179597
  description?: string | null
179098
179598
  order_no?: number | null
179099
179599
  format?: $Enums.EvaluationRoundFormat | null
179600
+ round_purpose?: string | null
179100
179601
  topics?: OngoingEvaluationCreatetopicsInput | string[]
179101
179602
  assignee?: string | null
179102
179603
  elimination_round?: boolean | null
@@ -179142,6 +179643,7 @@ export namespace Prisma {
179142
179643
  description?: string | null
179143
179644
  order_no?: number | null
179144
179645
  format?: $Enums.EvaluationRoundFormat | null
179646
+ round_purpose?: string | null
179145
179647
  topics?: OngoingEvaluationCreatetopicsInput | string[]
179146
179648
  assignee?: string | null
179147
179649
  elimination_round?: boolean | null
@@ -179244,6 +179746,7 @@ export namespace Prisma {
179244
179746
  export type ResumeCreateWithoutJob_descriptionInput = {
179245
179747
  id?: string
179246
179748
  uploaded_resume_path?: string | null
179749
+ resume_template_id?: string | null
179247
179750
  file_hash?: string | null
179248
179751
  summary?: NullableJsonNullValueInput | InputJsonValue
179249
179752
  created_at?: Date | string
@@ -179256,6 +179759,7 @@ export namespace Prisma {
179256
179759
  user?: UserCreateNestedOneWithoutResumeInput
179257
179760
  organisation?: OrganisationCreateNestedOneWithoutResumesInput
179258
179761
  document?: DocumentCreateNestedOneWithoutResumeInput
179762
+ rendered_export_document?: DocumentCreateNestedOneWithoutResume_rendered_exportInput
179259
179763
  applications?: ApplicationCreateNestedManyWithoutResumeInput
179260
179764
  interviews?: InterviewCreateNestedManyWithoutResumeInput
179261
179765
  ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutResumeInput
@@ -179270,6 +179774,8 @@ export namespace Prisma {
179270
179774
  organisation_id?: string | null
179271
179775
  uploaded_resume_path?: string | null
179272
179776
  document_id?: string | null
179777
+ rendered_export_document_id?: string | null
179778
+ resume_template_id?: string | null
179273
179779
  file_hash?: string | null
179274
179780
  summary?: NullableJsonNullValueInput | InputJsonValue
179275
179781
  created_at?: Date | string
@@ -179913,6 +180419,7 @@ export namespace Prisma {
179913
180419
  organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
179914
180420
  candidate?: UserUpdateOneWithoutDocumentsNestedInput
179915
180421
  resume?: ResumeUpdateOneWithoutDocumentNestedInput
180422
+ resume_rendered_export?: ResumeUpdateOneWithoutRendered_export_documentNestedInput
179916
180423
  job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
179917
180424
  interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
179918
180425
  job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
@@ -179939,6 +180446,7 @@ export namespace Prisma {
179939
180446
  updated_by?: StringFieldUpdateOperationsInput | string
179940
180447
  is_active?: BoolFieldUpdateOperationsInput | boolean
179941
180448
  resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
180449
+ resume_rendered_export?: ResumeUncheckedUpdateOneWithoutRendered_export_documentNestedInput
179942
180450
  job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
179943
180451
  interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
179944
180452
  job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
@@ -180152,6 +180660,7 @@ export namespace Prisma {
180152
180660
  organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
180153
180661
  candidate?: UserUpdateOneWithoutDocumentsNestedInput
180154
180662
  resume?: ResumeUpdateOneWithoutDocumentNestedInput
180663
+ resume_rendered_export?: ResumeUpdateOneWithoutRendered_export_documentNestedInput
180155
180664
  job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
180156
180665
  interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
180157
180666
  job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
@@ -180178,6 +180687,7 @@ export namespace Prisma {
180178
180687
  updated_by?: StringFieldUpdateOperationsInput | string
180179
180688
  is_active?: BoolFieldUpdateOperationsInput | boolean
180180
180689
  resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
180690
+ resume_rendered_export?: ResumeUncheckedUpdateOneWithoutRendered_export_documentNestedInput
180181
180691
  job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
180182
180692
  interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
180183
180693
  job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
@@ -180438,6 +180948,8 @@ export namespace Prisma {
180438
180948
  job_description_id?: StringNullableFilter<"Resume"> | string | null
180439
180949
  uploaded_resume_path?: StringNullableFilter<"Resume"> | string | null
180440
180950
  document_id?: StringNullableFilter<"Resume"> | string | null
180951
+ rendered_export_document_id?: StringNullableFilter<"Resume"> | string | null
180952
+ resume_template_id?: StringNullableFilter<"Resume"> | string | null
180441
180953
  file_hash?: StringNullableFilter<"Resume"> | string | null
180442
180954
  summary?: JsonNullableFilter<"Resume">
180443
180955
  created_at?: DateTimeFilter<"Resume"> | Date | string
@@ -183167,6 +183679,7 @@ export namespace Prisma {
183167
183679
  applied_at?: Date | string
183168
183680
  round_no?: number
183169
183681
  is_jaf_completed?: boolean
183682
+ proceed_to_next_round?: boolean | null
183170
183683
  on_notice_period?: boolean
183171
183684
  expected_joining_date?: Date | string | null
183172
183685
  current_ctc?: string | null
@@ -183212,6 +183725,7 @@ export namespace Prisma {
183212
183725
  source_id?: string | null
183213
183726
  round_no?: number
183214
183727
  is_jaf_completed?: boolean
183728
+ proceed_to_next_round?: boolean | null
183215
183729
  on_notice_period?: boolean
183216
183730
  expected_joining_date?: Date | string | null
183217
183731
  current_ctc?: string | null
@@ -183412,6 +183926,7 @@ export namespace Prisma {
183412
183926
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
183413
183927
  round_no?: IntFieldUpdateOperationsInput | number
183414
183928
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
183929
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
183415
183930
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
183416
183931
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
183417
183932
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -183457,6 +183972,7 @@ export namespace Prisma {
183457
183972
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
183458
183973
  round_no?: IntFieldUpdateOperationsInput | number
183459
183974
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
183975
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
183460
183976
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
183461
183977
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
183462
183978
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -183740,6 +184256,7 @@ export namespace Prisma {
183740
184256
  applied_at?: Date | string
183741
184257
  round_no?: number
183742
184258
  is_jaf_completed?: boolean
184259
+ proceed_to_next_round?: boolean | null
183743
184260
  on_notice_period?: boolean
183744
184261
  expected_joining_date?: Date | string | null
183745
184262
  current_ctc?: string | null
@@ -183785,6 +184302,7 @@ export namespace Prisma {
183785
184302
  source_id?: string | null
183786
184303
  round_no?: number
183787
184304
  is_jaf_completed?: boolean
184305
+ proceed_to_next_round?: boolean | null
183788
184306
  on_notice_period?: boolean
183789
184307
  expected_joining_date?: Date | string | null
183790
184308
  current_ctc?: string | null
@@ -183971,6 +184489,7 @@ export namespace Prisma {
183971
184489
  export type ResumeCreateWithoutOngoing_evaluationsInput = {
183972
184490
  id?: string
183973
184491
  uploaded_resume_path?: string | null
184492
+ resume_template_id?: string | null
183974
184493
  file_hash?: string | null
183975
184494
  summary?: NullableJsonNullValueInput | InputJsonValue
183976
184495
  created_at?: Date | string
@@ -183984,6 +184503,7 @@ export namespace Prisma {
183984
184503
  organisation?: OrganisationCreateNestedOneWithoutResumesInput
183985
184504
  job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
183986
184505
  document?: DocumentCreateNestedOneWithoutResumeInput
184506
+ rendered_export_document?: DocumentCreateNestedOneWithoutResume_rendered_exportInput
183987
184507
  applications?: ApplicationCreateNestedManyWithoutResumeInput
183988
184508
  interviews?: InterviewCreateNestedManyWithoutResumeInput
183989
184509
  resume_data?: ResumeDataCreateNestedManyWithoutResumeInput
@@ -183998,6 +184518,8 @@ export namespace Prisma {
183998
184518
  job_description_id?: string | null
183999
184519
  uploaded_resume_path?: string | null
184000
184520
  document_id?: string | null
184521
+ rendered_export_document_id?: string | null
184522
+ resume_template_id?: string | null
184001
184523
  file_hash?: string | null
184002
184524
  summary?: NullableJsonNullValueInput | InputJsonValue
184003
184525
  created_at?: Date | string
@@ -184132,6 +184654,7 @@ export namespace Prisma {
184132
184654
  elimination_round?: boolean
184133
184655
  evaluation_type?: $Enums.EvaluationType
184134
184656
  type_of_round: $Enums.RoundType
184657
+ round_purpose?: string | null
184135
184658
  timeline?: number | null
184136
184659
  order_no?: number | null
184137
184660
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -184167,6 +184690,7 @@ export namespace Prisma {
184167
184690
  elimination_round?: boolean
184168
184691
  evaluation_type?: $Enums.EvaluationType
184169
184692
  type_of_round: $Enums.RoundType
184693
+ round_purpose?: string | null
184170
184694
  timeline?: number | null
184171
184695
  order_no?: number | null
184172
184696
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -184526,6 +185050,7 @@ export namespace Prisma {
184526
185050
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
184527
185051
  round_no?: IntFieldUpdateOperationsInput | number
184528
185052
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
185053
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
184529
185054
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
184530
185055
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
184531
185056
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -184571,6 +185096,7 @@ export namespace Prisma {
184571
185096
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
184572
185097
  round_no?: IntFieldUpdateOperationsInput | number
184573
185098
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
185099
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
184574
185100
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
184575
185101
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
184576
185102
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -184769,6 +185295,7 @@ export namespace Prisma {
184769
185295
  export type ResumeUpdateWithoutOngoing_evaluationsInput = {
184770
185296
  id?: StringFieldUpdateOperationsInput | string
184771
185297
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
185298
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
184772
185299
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
184773
185300
  summary?: NullableJsonNullValueInput | InputJsonValue
184774
185301
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -184782,6 +185309,7 @@ export namespace Prisma {
184782
185309
  organisation?: OrganisationUpdateOneWithoutResumesNestedInput
184783
185310
  job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
184784
185311
  document?: DocumentUpdateOneWithoutResumeNestedInput
185312
+ rendered_export_document?: DocumentUpdateOneWithoutResume_rendered_exportNestedInput
184785
185313
  applications?: ApplicationUpdateManyWithoutResumeNestedInput
184786
185314
  interviews?: InterviewUpdateManyWithoutResumeNestedInput
184787
185315
  resume_data?: ResumeDataUpdateManyWithoutResumeNestedInput
@@ -184796,6 +185324,8 @@ export namespace Prisma {
184796
185324
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
184797
185325
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
184798
185326
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
185327
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
185328
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
184799
185329
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
184800
185330
  summary?: NullableJsonNullValueInput | InputJsonValue
184801
185331
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -184942,6 +185472,7 @@ export namespace Prisma {
184942
185472
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
184943
185473
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
184944
185474
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
185475
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
184945
185476
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
184946
185477
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
184947
185478
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -184977,6 +185508,7 @@ export namespace Prisma {
184977
185508
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
184978
185509
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
184979
185510
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
185511
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
184980
185512
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
184981
185513
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
184982
185514
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -185399,6 +185931,7 @@ export namespace Prisma {
185399
185931
  applied_at?: Date | string
185400
185932
  round_no?: number
185401
185933
  is_jaf_completed?: boolean
185934
+ proceed_to_next_round?: boolean | null
185402
185935
  on_notice_period?: boolean
185403
185936
  expected_joining_date?: Date | string | null
185404
185937
  current_ctc?: string | null
@@ -185443,6 +185976,7 @@ export namespace Prisma {
185443
185976
  source_id?: string | null
185444
185977
  round_no?: number
185445
185978
  is_jaf_completed?: boolean
185979
+ proceed_to_next_round?: boolean | null
185446
185980
  on_notice_period?: boolean
185447
185981
  expected_joining_date?: Date | string | null
185448
185982
  current_ctc?: string | null
@@ -186016,6 +186550,7 @@ export namespace Prisma {
186016
186550
  export type ResumeCreateWithoutOrganisationInput = {
186017
186551
  id?: string
186018
186552
  uploaded_resume_path?: string | null
186553
+ resume_template_id?: string | null
186019
186554
  file_hash?: string | null
186020
186555
  summary?: NullableJsonNullValueInput | InputJsonValue
186021
186556
  created_at?: Date | string
@@ -186028,6 +186563,7 @@ export namespace Prisma {
186028
186563
  user?: UserCreateNestedOneWithoutResumeInput
186029
186564
  job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
186030
186565
  document?: DocumentCreateNestedOneWithoutResumeInput
186566
+ rendered_export_document?: DocumentCreateNestedOneWithoutResume_rendered_exportInput
186031
186567
  applications?: ApplicationCreateNestedManyWithoutResumeInput
186032
186568
  interviews?: InterviewCreateNestedManyWithoutResumeInput
186033
186569
  ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutResumeInput
@@ -186042,6 +186578,8 @@ export namespace Prisma {
186042
186578
  job_description_id?: string | null
186043
186579
  uploaded_resume_path?: string | null
186044
186580
  document_id?: string | null
186581
+ rendered_export_document_id?: string | null
186582
+ resume_template_id?: string | null
186045
186583
  file_hash?: string | null
186046
186584
  summary?: NullableJsonNullValueInput | InputJsonValue
186047
186585
  created_at?: Date | string
@@ -186151,6 +186689,7 @@ export namespace Prisma {
186151
186689
  description?: string | null
186152
186690
  order_no?: number | null
186153
186691
  format?: $Enums.EvaluationRoundFormat | null
186692
+ round_purpose?: string | null
186154
186693
  topics?: OngoingEvaluationCreatetopicsInput | string[]
186155
186694
  assignee?: string | null
186156
186695
  elimination_round?: boolean | null
@@ -186196,6 +186735,7 @@ export namespace Prisma {
186196
186735
  description?: string | null
186197
186736
  order_no?: number | null
186198
186737
  format?: $Enums.EvaluationRoundFormat | null
186738
+ round_purpose?: string | null
186199
186739
  topics?: OngoingEvaluationCreatetopicsInput | string[]
186200
186740
  assignee?: string | null
186201
186741
  elimination_round?: boolean | null
@@ -186687,6 +187227,7 @@ export namespace Prisma {
186687
187227
  is_active?: boolean
186688
187228
  candidate?: UserCreateNestedOneWithoutDocumentsInput
186689
187229
  resume?: ResumeCreateNestedOneWithoutDocumentInput
187230
+ resume_rendered_export?: ResumeCreateNestedOneWithoutRendered_export_documentInput
186690
187231
  job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
186691
187232
  job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
186692
187233
  interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
@@ -186713,6 +187254,7 @@ export namespace Prisma {
186713
187254
  updated_by: string
186714
187255
  is_active?: boolean
186715
187256
  resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
187257
+ resume_rendered_export?: ResumeUncheckedCreateNestedOneWithoutRendered_export_documentInput
186716
187258
  job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
186717
187259
  job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
186718
187260
  interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
@@ -188285,6 +188827,7 @@ export namespace Prisma {
188285
188827
  elimination_round?: boolean
188286
188828
  evaluation_type?: $Enums.EvaluationType
188287
188829
  type_of_round: $Enums.RoundType
188830
+ round_purpose?: string | null
188288
188831
  timeline?: number | null
188289
188832
  order_no?: number | null
188290
188833
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -188320,6 +188863,7 @@ export namespace Prisma {
188320
188863
  elimination_round?: boolean
188321
188864
  evaluation_type?: $Enums.EvaluationType
188322
188865
  type_of_round: $Enums.RoundType
188866
+ round_purpose?: string | null
188323
188867
  timeline?: number | null
188324
188868
  order_no?: number | null
188325
188869
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -188621,6 +189165,7 @@ export namespace Prisma {
188621
189165
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
188622
189166
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
188623
189167
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
189168
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
188624
189169
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
188625
189170
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
188626
189171
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -188656,6 +189201,7 @@ export namespace Prisma {
188656
189201
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
188657
189202
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
188658
189203
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
189204
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
188659
189205
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
188660
189206
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
188661
189207
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -189505,6 +190051,7 @@ export namespace Prisma {
189505
190051
  is_active?: boolean
189506
190052
  organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
189507
190053
  candidate?: UserCreateNestedOneWithoutDocumentsInput
190054
+ resume_rendered_export?: ResumeCreateNestedOneWithoutRendered_export_documentInput
189508
190055
  job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
189509
190056
  job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
189510
190057
  interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
@@ -189531,6 +190078,7 @@ export namespace Prisma {
189531
190078
  created_by: string
189532
190079
  updated_by: string
189533
190080
  is_active?: boolean
190081
+ resume_rendered_export?: ResumeUncheckedCreateNestedOneWithoutRendered_export_documentInput
189534
190082
  job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
189535
190083
  job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
189536
190084
  interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
@@ -189544,12 +190092,72 @@ export namespace Prisma {
189544
190092
  create: XOR<DocumentCreateWithoutResumeInput, DocumentUncheckedCreateWithoutResumeInput>
189545
190093
  }
189546
190094
 
190095
+ export type DocumentCreateWithoutResume_rendered_exportInput = {
190096
+ id?: string
190097
+ original_file_name: string
190098
+ stored_file_name: string
190099
+ file_extension?: string | null
190100
+ s3_bucket?: string | null
190101
+ s3_key?: string | null
190102
+ mime_type?: string | null
190103
+ file_size?: bigint | number | null
190104
+ file_hash?: string | null
190105
+ metadata?: NullableJsonNullValueInput | InputJsonValue
190106
+ created_at?: Date | string
190107
+ updated_at?: Date | string
190108
+ created_by: string
190109
+ updated_by: string
190110
+ is_active?: boolean
190111
+ organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
190112
+ candidate?: UserCreateNestedOneWithoutDocumentsInput
190113
+ resume?: ResumeCreateNestedOneWithoutDocumentInput
190114
+ job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
190115
+ job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
190116
+ interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
190117
+ job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
190118
+ assignment_solution?: AssignmentCreateNestedOneWithoutSolution_documentInput
190119
+ assignment_zip?: AssignmentCreateNestedOneWithoutZip_documentInput
190120
+ }
190121
+
190122
+ export type DocumentUncheckedCreateWithoutResume_rendered_exportInput = {
190123
+ id?: string
190124
+ organisation_id?: string | null
190125
+ candidate_id?: string | null
190126
+ original_file_name: string
190127
+ stored_file_name: string
190128
+ file_extension?: string | null
190129
+ s3_bucket?: string | null
190130
+ s3_key?: string | null
190131
+ mime_type?: string | null
190132
+ file_size?: bigint | number | null
190133
+ file_hash?: string | null
190134
+ metadata?: NullableJsonNullValueInput | InputJsonValue
190135
+ created_at?: Date | string
190136
+ updated_at?: Date | string
190137
+ created_by: string
190138
+ updated_by: string
190139
+ is_active?: boolean
190140
+ resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
190141
+ job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
190142
+ job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
190143
+ interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
190144
+ job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
190145
+ assignment_solution?: AssignmentUncheckedCreateNestedOneWithoutSolution_documentInput
190146
+ assignment_zip?: AssignmentUncheckedCreateNestedOneWithoutZip_documentInput
190147
+ }
190148
+
190149
+ export type DocumentCreateOrConnectWithoutResume_rendered_exportInput = {
190150
+ where: DocumentWhereUniqueInput
190151
+ create: XOR<DocumentCreateWithoutResume_rendered_exportInput, DocumentUncheckedCreateWithoutResume_rendered_exportInput>
190152
+ }
190153
+
189547
190154
  export type ApplicationCreateWithoutResumeInput = {
189548
190155
  id?: string
189549
190156
  fit_check_score?: number | null
189550
190157
  applied_at?: Date | string
189551
190158
  round_no?: number
189552
190159
  is_jaf_completed?: boolean
190160
+ proceed_to_next_round?: boolean | null
189553
190161
  on_notice_period?: boolean
189554
190162
  expected_joining_date?: Date | string | null
189555
190163
  current_ctc?: string | null
@@ -189594,6 +190202,7 @@ export namespace Prisma {
189594
190202
  source_id?: string | null
189595
190203
  round_no?: number
189596
190204
  is_jaf_completed?: boolean
190205
+ proceed_to_next_round?: boolean | null
189597
190206
  on_notice_period?: boolean
189598
190207
  expected_joining_date?: Date | string | null
189599
190208
  current_ctc?: string | null
@@ -189758,6 +190367,7 @@ export namespace Prisma {
189758
190367
  description?: string | null
189759
190368
  order_no?: number | null
189760
190369
  format?: $Enums.EvaluationRoundFormat | null
190370
+ round_purpose?: string | null
189761
190371
  topics?: OngoingEvaluationCreatetopicsInput | string[]
189762
190372
  assignee?: string | null
189763
190373
  elimination_round?: boolean | null
@@ -189803,6 +190413,7 @@ export namespace Prisma {
189803
190413
  description?: string | null
189804
190414
  order_no?: number | null
189805
190415
  format?: $Enums.EvaluationRoundFormat | null
190416
+ round_purpose?: string | null
189806
190417
  topics?: OngoingEvaluationCreatetopicsInput | string[]
189807
190418
  assignee?: string | null
189808
190419
  elimination_round?: boolean | null
@@ -190387,6 +190998,7 @@ export namespace Prisma {
190387
190998
  is_active?: BoolFieldUpdateOperationsInput | boolean
190388
190999
  organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
190389
191000
  candidate?: UserUpdateOneWithoutDocumentsNestedInput
191001
+ resume_rendered_export?: ResumeUpdateOneWithoutRendered_export_documentNestedInput
190390
191002
  job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
190391
191003
  job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
190392
191004
  interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
@@ -190413,6 +191025,72 @@ export namespace Prisma {
190413
191025
  created_by?: StringFieldUpdateOperationsInput | string
190414
191026
  updated_by?: StringFieldUpdateOperationsInput | string
190415
191027
  is_active?: BoolFieldUpdateOperationsInput | boolean
191028
+ resume_rendered_export?: ResumeUncheckedUpdateOneWithoutRendered_export_documentNestedInput
191029
+ job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
191030
+ job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
191031
+ interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
191032
+ job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
191033
+ assignment_solution?: AssignmentUncheckedUpdateOneWithoutSolution_documentNestedInput
191034
+ assignment_zip?: AssignmentUncheckedUpdateOneWithoutZip_documentNestedInput
191035
+ }
191036
+
191037
+ export type DocumentUpsertWithoutResume_rendered_exportInput = {
191038
+ update: XOR<DocumentUpdateWithoutResume_rendered_exportInput, DocumentUncheckedUpdateWithoutResume_rendered_exportInput>
191039
+ create: XOR<DocumentCreateWithoutResume_rendered_exportInput, DocumentUncheckedCreateWithoutResume_rendered_exportInput>
191040
+ where?: DocumentWhereInput
191041
+ }
191042
+
191043
+ export type DocumentUpdateToOneWithWhereWithoutResume_rendered_exportInput = {
191044
+ where?: DocumentWhereInput
191045
+ data: XOR<DocumentUpdateWithoutResume_rendered_exportInput, DocumentUncheckedUpdateWithoutResume_rendered_exportInput>
191046
+ }
191047
+
191048
+ export type DocumentUpdateWithoutResume_rendered_exportInput = {
191049
+ id?: StringFieldUpdateOperationsInput | string
191050
+ original_file_name?: StringFieldUpdateOperationsInput | string
191051
+ stored_file_name?: StringFieldUpdateOperationsInput | string
191052
+ file_extension?: NullableStringFieldUpdateOperationsInput | string | null
191053
+ s3_bucket?: NullableStringFieldUpdateOperationsInput | string | null
191054
+ s3_key?: NullableStringFieldUpdateOperationsInput | string | null
191055
+ mime_type?: NullableStringFieldUpdateOperationsInput | string | null
191056
+ file_size?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
191057
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
191058
+ metadata?: NullableJsonNullValueInput | InputJsonValue
191059
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
191060
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
191061
+ created_by?: StringFieldUpdateOperationsInput | string
191062
+ updated_by?: StringFieldUpdateOperationsInput | string
191063
+ is_active?: BoolFieldUpdateOperationsInput | boolean
191064
+ organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
191065
+ candidate?: UserUpdateOneWithoutDocumentsNestedInput
191066
+ resume?: ResumeUpdateOneWithoutDocumentNestedInput
191067
+ job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
191068
+ job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
191069
+ interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
191070
+ job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
191071
+ assignment_solution?: AssignmentUpdateOneWithoutSolution_documentNestedInput
191072
+ assignment_zip?: AssignmentUpdateOneWithoutZip_documentNestedInput
191073
+ }
191074
+
191075
+ export type DocumentUncheckedUpdateWithoutResume_rendered_exportInput = {
191076
+ id?: StringFieldUpdateOperationsInput | string
191077
+ organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
191078
+ candidate_id?: NullableStringFieldUpdateOperationsInput | string | null
191079
+ original_file_name?: StringFieldUpdateOperationsInput | string
191080
+ stored_file_name?: StringFieldUpdateOperationsInput | string
191081
+ file_extension?: NullableStringFieldUpdateOperationsInput | string | null
191082
+ s3_bucket?: NullableStringFieldUpdateOperationsInput | string | null
191083
+ s3_key?: NullableStringFieldUpdateOperationsInput | string | null
191084
+ mime_type?: NullableStringFieldUpdateOperationsInput | string | null
191085
+ file_size?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
191086
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
191087
+ metadata?: NullableJsonNullValueInput | InputJsonValue
191088
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
191089
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
191090
+ created_by?: StringFieldUpdateOperationsInput | string
191091
+ updated_by?: StringFieldUpdateOperationsInput | string
191092
+ is_active?: BoolFieldUpdateOperationsInput | boolean
191093
+ resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
190416
191094
  job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
190417
191095
  job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
190418
191096
  interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
@@ -190572,6 +191250,7 @@ export namespace Prisma {
190572
191250
  export type ResumeCreateWithoutResume_dataInput = {
190573
191251
  id?: string
190574
191252
  uploaded_resume_path?: string | null
191253
+ resume_template_id?: string | null
190575
191254
  file_hash?: string | null
190576
191255
  summary?: NullableJsonNullValueInput | InputJsonValue
190577
191256
  created_at?: Date | string
@@ -190585,6 +191264,7 @@ export namespace Prisma {
190585
191264
  organisation?: OrganisationCreateNestedOneWithoutResumesInput
190586
191265
  job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
190587
191266
  document?: DocumentCreateNestedOneWithoutResumeInput
191267
+ rendered_export_document?: DocumentCreateNestedOneWithoutResume_rendered_exportInput
190588
191268
  applications?: ApplicationCreateNestedManyWithoutResumeInput
190589
191269
  interviews?: InterviewCreateNestedManyWithoutResumeInput
190590
191270
  ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutResumeInput
@@ -190599,6 +191279,8 @@ export namespace Prisma {
190599
191279
  job_description_id?: string | null
190600
191280
  uploaded_resume_path?: string | null
190601
191281
  document_id?: string | null
191282
+ rendered_export_document_id?: string | null
191283
+ resume_template_id?: string | null
190602
191284
  file_hash?: string | null
190603
191285
  summary?: NullableJsonNullValueInput | InputJsonValue
190604
191286
  created_at?: Date | string
@@ -190634,6 +191316,7 @@ export namespace Prisma {
190634
191316
  export type ResumeUpdateWithoutResume_dataInput = {
190635
191317
  id?: StringFieldUpdateOperationsInput | string
190636
191318
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
191319
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
190637
191320
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
190638
191321
  summary?: NullableJsonNullValueInput | InputJsonValue
190639
191322
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -190647,6 +191330,7 @@ export namespace Prisma {
190647
191330
  organisation?: OrganisationUpdateOneWithoutResumesNestedInput
190648
191331
  job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
190649
191332
  document?: DocumentUpdateOneWithoutResumeNestedInput
191333
+ rendered_export_document?: DocumentUpdateOneWithoutResume_rendered_exportNestedInput
190650
191334
  applications?: ApplicationUpdateManyWithoutResumeNestedInput
190651
191335
  interviews?: InterviewUpdateManyWithoutResumeNestedInput
190652
191336
  ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutResumeNestedInput
@@ -190661,6 +191345,8 @@ export namespace Prisma {
190661
191345
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
190662
191346
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
190663
191347
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
191348
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
191349
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
190664
191350
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
190665
191351
  summary?: NullableJsonNullValueInput | InputJsonValue
190666
191352
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -190857,6 +191543,7 @@ export namespace Prisma {
190857
191543
  applied_at?: Date | string
190858
191544
  round_no?: number
190859
191545
  is_jaf_completed?: boolean
191546
+ proceed_to_next_round?: boolean | null
190860
191547
  on_notice_period?: boolean
190861
191548
  expected_joining_date?: Date | string | null
190862
191549
  current_ctc?: string | null
@@ -190901,6 +191588,7 @@ export namespace Prisma {
190901
191588
  recruiter_id?: string | null
190902
191589
  round_no?: number
190903
191590
  is_jaf_completed?: boolean
191591
+ proceed_to_next_round?: boolean | null
190904
191592
  on_notice_period?: boolean
190905
191593
  expected_joining_date?: Date | string | null
190906
191594
  current_ctc?: string | null
@@ -192282,6 +192970,7 @@ export namespace Prisma {
192282
192970
  applied_at?: Date | string
192283
192971
  round_no?: number
192284
192972
  is_jaf_completed?: boolean
192973
+ proceed_to_next_round?: boolean | null
192285
192974
  on_notice_period?: boolean
192286
192975
  expected_joining_date?: Date | string | null
192287
192976
  current_ctc?: string | null
@@ -192326,6 +193015,7 @@ export namespace Prisma {
192326
193015
  source_id?: string | null
192327
193016
  round_no?: number
192328
193017
  is_jaf_completed?: boolean
193018
+ proceed_to_next_round?: boolean | null
192329
193019
  on_notice_period?: boolean
192330
193020
  expected_joining_date?: Date | string | null
192331
193021
  current_ctc?: string | null
@@ -192363,6 +193053,7 @@ export namespace Prisma {
192363
193053
  export type ResumeCreateWithoutUserInput = {
192364
193054
  id?: string
192365
193055
  uploaded_resume_path?: string | null
193056
+ resume_template_id?: string | null
192366
193057
  file_hash?: string | null
192367
193058
  summary?: NullableJsonNullValueInput | InputJsonValue
192368
193059
  created_at?: Date | string
@@ -192375,6 +193066,7 @@ export namespace Prisma {
192375
193066
  organisation?: OrganisationCreateNestedOneWithoutResumesInput
192376
193067
  job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
192377
193068
  document?: DocumentCreateNestedOneWithoutResumeInput
193069
+ rendered_export_document?: DocumentCreateNestedOneWithoutResume_rendered_exportInput
192378
193070
  applications?: ApplicationCreateNestedManyWithoutResumeInput
192379
193071
  interviews?: InterviewCreateNestedManyWithoutResumeInput
192380
193072
  ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutResumeInput
@@ -192389,6 +193081,8 @@ export namespace Prisma {
192389
193081
  job_description_id?: string | null
192390
193082
  uploaded_resume_path?: string | null
192391
193083
  document_id?: string | null
193084
+ rendered_export_document_id?: string | null
193085
+ resume_template_id?: string | null
192392
193086
  file_hash?: string | null
192393
193087
  summary?: NullableJsonNullValueInput | InputJsonValue
192394
193088
  created_at?: Date | string
@@ -193467,6 +194161,7 @@ export namespace Prisma {
193467
194161
  description?: string | null
193468
194162
  order_no?: number | null
193469
194163
  format?: $Enums.EvaluationRoundFormat | null
194164
+ round_purpose?: string | null
193470
194165
  topics?: OngoingEvaluationCreatetopicsInput | string[]
193471
194166
  assignee?: string | null
193472
194167
  elimination_round?: boolean | null
@@ -193512,6 +194207,7 @@ export namespace Prisma {
193512
194207
  description?: string | null
193513
194208
  order_no?: number | null
193514
194209
  format?: $Enums.EvaluationRoundFormat | null
194210
+ round_purpose?: string | null
193515
194211
  topics?: OngoingEvaluationCreatetopicsInput | string[]
193516
194212
  assignee?: string | null
193517
194213
  elimination_round?: boolean | null
@@ -194029,6 +194725,7 @@ export namespace Prisma {
194029
194725
  applied_at?: Date | string
194030
194726
  round_no?: number
194031
194727
  is_jaf_completed?: boolean
194728
+ proceed_to_next_round?: boolean | null
194032
194729
  on_notice_period?: boolean
194033
194730
  expected_joining_date?: Date | string | null
194034
194731
  current_ctc?: string | null
@@ -194073,6 +194770,7 @@ export namespace Prisma {
194073
194770
  source_id?: string | null
194074
194771
  round_no?: number
194075
194772
  is_jaf_completed?: boolean
194773
+ proceed_to_next_round?: boolean | null
194076
194774
  on_notice_period?: boolean
194077
194775
  expected_joining_date?: Date | string | null
194078
194776
  current_ctc?: string | null
@@ -194125,6 +194823,7 @@ export namespace Prisma {
194125
194823
  is_active?: boolean
194126
194824
  organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
194127
194825
  resume?: ResumeCreateNestedOneWithoutDocumentInput
194826
+ resume_rendered_export?: ResumeCreateNestedOneWithoutRendered_export_documentInput
194128
194827
  job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
194129
194828
  job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
194130
194829
  interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
@@ -194151,6 +194850,7 @@ export namespace Prisma {
194151
194850
  updated_by: string
194152
194851
  is_active?: boolean
194153
194852
  resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
194853
+ resume_rendered_export?: ResumeUncheckedCreateNestedOneWithoutRendered_export_documentInput
194154
194854
  job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
194155
194855
  job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
194156
194856
  interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
@@ -196371,6 +197071,7 @@ export namespace Prisma {
196371
197071
  description?: string | null
196372
197072
  order_no?: number | null
196373
197073
  format?: $Enums.EvaluationRoundFormat | null
197074
+ round_purpose?: string | null
196374
197075
  topics?: OngoingEvaluationCreatetopicsInput | string[]
196375
197076
  assignee?: string | null
196376
197077
  elimination_round?: boolean | null
@@ -196721,6 +197422,7 @@ export namespace Prisma {
196721
197422
  description?: NullableStringFieldUpdateOperationsInput | string | null
196722
197423
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
196723
197424
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
197425
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
196724
197426
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
196725
197427
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
196726
197428
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -196766,6 +197468,7 @@ export namespace Prisma {
196766
197468
  description?: NullableStringFieldUpdateOperationsInput | string | null
196767
197469
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
196768
197470
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
197471
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
196769
197472
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
196770
197473
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
196771
197474
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -196804,6 +197507,7 @@ export namespace Prisma {
196804
197507
  description?: NullableStringFieldUpdateOperationsInput | string | null
196805
197508
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
196806
197509
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
197510
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
196807
197511
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
196808
197512
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
196809
197513
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -197219,6 +197923,7 @@ export namespace Prisma {
197219
197923
  elimination_round?: boolean
197220
197924
  evaluation_type?: $Enums.EvaluationType
197221
197925
  type_of_round: $Enums.RoundType
197926
+ round_purpose?: string | null
197222
197927
  timeline?: number | null
197223
197928
  order_no?: number | null
197224
197929
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -197366,6 +198071,7 @@ export namespace Prisma {
197366
198071
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
197367
198072
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
197368
198073
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
198074
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
197369
198075
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
197370
198076
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
197371
198077
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -197400,6 +198106,7 @@ export namespace Prisma {
197400
198106
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
197401
198107
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
197402
198108
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
198109
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
197403
198110
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
197404
198111
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
197405
198112
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -197432,6 +198139,7 @@ export namespace Prisma {
197432
198139
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
197433
198140
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
197434
198141
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
198142
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
197435
198143
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
197436
198144
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
197437
198145
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -197460,6 +198168,7 @@ export namespace Prisma {
197460
198168
  elimination_round?: boolean
197461
198169
  evaluation_type?: $Enums.EvaluationType
197462
198170
  type_of_round: $Enums.RoundType
198171
+ round_purpose?: string | null
197463
198172
  timeline?: number | null
197464
198173
  order_no?: number | null
197465
198174
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -197511,6 +198220,7 @@ export namespace Prisma {
197511
198220
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
197512
198221
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
197513
198222
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
198223
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
197514
198224
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
197515
198225
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
197516
198226
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -197545,6 +198255,7 @@ export namespace Prisma {
197545
198255
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
197546
198256
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
197547
198257
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
198258
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
197548
198259
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
197549
198260
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
197550
198261
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -197577,6 +198288,7 @@ export namespace Prisma {
197577
198288
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
197578
198289
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
197579
198290
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
198291
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
197580
198292
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
197581
198293
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
197582
198294
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -198119,6 +198831,7 @@ export namespace Prisma {
198119
198831
  source_id?: string | null
198120
198832
  round_no?: number
198121
198833
  is_jaf_completed?: boolean
198834
+ proceed_to_next_round?: boolean | null
198122
198835
  on_notice_period?: boolean
198123
198836
  expected_joining_date?: Date | string | null
198124
198837
  current_ctc?: string | null
@@ -198154,6 +198867,7 @@ export namespace Prisma {
198154
198867
  description?: string | null
198155
198868
  order_no?: number | null
198156
198869
  format?: $Enums.EvaluationRoundFormat | null
198870
+ round_purpose?: string | null
198157
198871
  topics?: OngoingEvaluationCreatetopicsInput | string[]
198158
198872
  assignee?: string | null
198159
198873
  elimination_round?: boolean | null
@@ -198388,6 +199102,7 @@ export namespace Prisma {
198388
199102
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
198389
199103
  round_no?: IntFieldUpdateOperationsInput | number
198390
199104
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
199105
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
198391
199106
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
198392
199107
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
198393
199108
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -198432,6 +199147,7 @@ export namespace Prisma {
198432
199147
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
198433
199148
  round_no?: IntFieldUpdateOperationsInput | number
198434
199149
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
199150
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
198435
199151
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
198436
199152
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
198437
199153
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -198469,6 +199185,7 @@ export namespace Prisma {
198469
199185
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
198470
199186
  round_no?: IntFieldUpdateOperationsInput | number
198471
199187
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
199188
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
198472
199189
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
198473
199190
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
198474
199191
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -198497,6 +199214,7 @@ export namespace Prisma {
198497
199214
  description?: NullableStringFieldUpdateOperationsInput | string | null
198498
199215
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
198499
199216
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
199217
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
198500
199218
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
198501
199219
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
198502
199220
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -198542,6 +199260,7 @@ export namespace Prisma {
198542
199260
  description?: NullableStringFieldUpdateOperationsInput | string | null
198543
199261
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
198544
199262
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
199263
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
198545
199264
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
198546
199265
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
198547
199266
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -198580,6 +199299,7 @@ export namespace Prisma {
198580
199299
  description?: NullableStringFieldUpdateOperationsInput | string | null
198581
199300
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
198582
199301
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
199302
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
198583
199303
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
198584
199304
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
198585
199305
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -199015,6 +199735,7 @@ export namespace Prisma {
199015
199735
  source_id?: string | null
199016
199736
  round_no?: number
199017
199737
  is_jaf_completed?: boolean
199738
+ proceed_to_next_round?: boolean | null
199018
199739
  on_notice_period?: boolean
199019
199740
  expected_joining_date?: Date | string | null
199020
199741
  current_ctc?: string | null
@@ -199159,6 +199880,7 @@ export namespace Prisma {
199159
199880
  elimination_round?: boolean
199160
199881
  evaluation_type?: $Enums.EvaluationType
199161
199882
  type_of_round: $Enums.RoundType
199883
+ round_purpose?: string | null
199162
199884
  timeline?: number | null
199163
199885
  order_no?: number | null
199164
199886
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -199194,6 +199916,7 @@ export namespace Prisma {
199194
199916
  description?: string | null
199195
199917
  order_no?: number | null
199196
199918
  format?: $Enums.EvaluationRoundFormat | null
199919
+ round_purpose?: string | null
199197
199920
  topics?: OngoingEvaluationCreatetopicsInput | string[]
199198
199921
  assignee?: string | null
199199
199922
  elimination_round?: boolean | null
@@ -199241,6 +199964,8 @@ export namespace Prisma {
199241
199964
  organisation_id?: string | null
199242
199965
  uploaded_resume_path?: string | null
199243
199966
  document_id?: string | null
199967
+ rendered_export_document_id?: string | null
199968
+ resume_template_id?: string | null
199244
199969
  file_hash?: string | null
199245
199970
  summary?: NullableJsonNullValueInput | InputJsonValue
199246
199971
  created_at?: Date | string
@@ -199334,6 +200059,7 @@ export namespace Prisma {
199334
200059
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
199335
200060
  round_no?: IntFieldUpdateOperationsInput | number
199336
200061
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
200062
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
199337
200063
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
199338
200064
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
199339
200065
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -199378,6 +200104,7 @@ export namespace Prisma {
199378
200104
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
199379
200105
  round_no?: IntFieldUpdateOperationsInput | number
199380
200106
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
200107
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
199381
200108
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
199382
200109
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
199383
200110
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -199415,6 +200142,7 @@ export namespace Prisma {
199415
200142
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
199416
200143
  round_no?: IntFieldUpdateOperationsInput | number
199417
200144
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
200145
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
199418
200146
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
199419
200147
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
199420
200148
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -199805,6 +200533,7 @@ export namespace Prisma {
199805
200533
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
199806
200534
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
199807
200535
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
200536
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
199808
200537
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
199809
200538
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
199810
200539
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -199839,6 +200568,7 @@ export namespace Prisma {
199839
200568
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
199840
200569
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
199841
200570
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
200571
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
199842
200572
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
199843
200573
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
199844
200574
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -199871,6 +200601,7 @@ export namespace Prisma {
199871
200601
  elimination_round?: BoolFieldUpdateOperationsInput | boolean
199872
200602
  evaluation_type?: EnumEvaluationTypeFieldUpdateOperationsInput | $Enums.EvaluationType
199873
200603
  type_of_round?: EnumRoundTypeFieldUpdateOperationsInput | $Enums.RoundType
200604
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
199874
200605
  timeline?: NullableIntFieldUpdateOperationsInput | number | null
199875
200606
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
199876
200607
  details?: NullableJsonNullValueInput | InputJsonValue
@@ -199899,6 +200630,7 @@ export namespace Prisma {
199899
200630
  description?: NullableStringFieldUpdateOperationsInput | string | null
199900
200631
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
199901
200632
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
200633
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
199902
200634
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
199903
200635
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
199904
200636
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -199944,6 +200676,7 @@ export namespace Prisma {
199944
200676
  description?: NullableStringFieldUpdateOperationsInput | string | null
199945
200677
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
199946
200678
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
200679
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
199947
200680
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
199948
200681
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
199949
200682
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -199982,6 +200715,7 @@ export namespace Prisma {
199982
200715
  description?: NullableStringFieldUpdateOperationsInput | string | null
199983
200716
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
199984
200717
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
200718
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
199985
200719
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
199986
200720
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
199987
200721
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -200076,6 +200810,7 @@ export namespace Prisma {
200076
200810
  export type ResumeUpdateWithoutJob_descriptionInput = {
200077
200811
  id?: StringFieldUpdateOperationsInput | string
200078
200812
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
200813
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
200079
200814
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
200080
200815
  summary?: NullableJsonNullValueInput | InputJsonValue
200081
200816
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -200088,6 +200823,7 @@ export namespace Prisma {
200088
200823
  user?: UserUpdateOneWithoutResumeNestedInput
200089
200824
  organisation?: OrganisationUpdateOneWithoutResumesNestedInput
200090
200825
  document?: DocumentUpdateOneWithoutResumeNestedInput
200826
+ rendered_export_document?: DocumentUpdateOneWithoutResume_rendered_exportNestedInput
200091
200827
  applications?: ApplicationUpdateManyWithoutResumeNestedInput
200092
200828
  interviews?: InterviewUpdateManyWithoutResumeNestedInput
200093
200829
  ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutResumeNestedInput
@@ -200102,6 +200838,8 @@ export namespace Prisma {
200102
200838
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
200103
200839
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
200104
200840
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
200841
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
200842
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
200105
200843
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
200106
200844
  summary?: NullableJsonNullValueInput | InputJsonValue
200107
200845
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -200125,6 +200863,8 @@ export namespace Prisma {
200125
200863
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
200126
200864
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
200127
200865
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
200866
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
200867
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
200128
200868
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
200129
200869
  summary?: NullableJsonNullValueInput | InputJsonValue
200130
200870
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -200756,6 +201496,7 @@ export namespace Prisma {
200756
201496
  source_id?: string | null
200757
201497
  round_no?: number
200758
201498
  is_jaf_completed?: boolean
201499
+ proceed_to_next_round?: boolean | null
200759
201500
  on_notice_period?: boolean
200760
201501
  expected_joining_date?: Date | string | null
200761
201502
  current_ctc?: string | null
@@ -200974,6 +201715,8 @@ export namespace Prisma {
200974
201715
  job_description_id?: string | null
200975
201716
  uploaded_resume_path?: string | null
200976
201717
  document_id?: string | null
201718
+ rendered_export_document_id?: string | null
201719
+ resume_template_id?: string | null
200977
201720
  file_hash?: string | null
200978
201721
  summary?: NullableJsonNullValueInput | InputJsonValue
200979
201722
  created_at?: Date | string
@@ -201028,6 +201771,7 @@ export namespace Prisma {
201028
201771
  description?: string | null
201029
201772
  order_no?: number | null
201030
201773
  format?: $Enums.EvaluationRoundFormat | null
201774
+ round_purpose?: string | null
201031
201775
  topics?: OngoingEvaluationCreatetopicsInput | string[]
201032
201776
  assignee?: string | null
201033
201777
  elimination_round?: boolean | null
@@ -201453,6 +202197,7 @@ export namespace Prisma {
201453
202197
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
201454
202198
  round_no?: IntFieldUpdateOperationsInput | number
201455
202199
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
202200
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
201456
202201
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
201457
202202
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
201458
202203
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -201497,6 +202242,7 @@ export namespace Prisma {
201497
202242
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
201498
202243
  round_no?: IntFieldUpdateOperationsInput | number
201499
202244
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
202245
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
201500
202246
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
201501
202247
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
201502
202248
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -201534,6 +202280,7 @@ export namespace Prisma {
201534
202280
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
201535
202281
  round_no?: IntFieldUpdateOperationsInput | number
201536
202282
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
202283
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
201537
202284
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
201538
202285
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
201539
202286
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -202205,6 +202952,7 @@ export namespace Prisma {
202205
202952
  export type ResumeUpdateWithoutOrganisationInput = {
202206
202953
  id?: StringFieldUpdateOperationsInput | string
202207
202954
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
202955
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
202208
202956
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
202209
202957
  summary?: NullableJsonNullValueInput | InputJsonValue
202210
202958
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -202217,6 +202965,7 @@ export namespace Prisma {
202217
202965
  user?: UserUpdateOneWithoutResumeNestedInput
202218
202966
  job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
202219
202967
  document?: DocumentUpdateOneWithoutResumeNestedInput
202968
+ rendered_export_document?: DocumentUpdateOneWithoutResume_rendered_exportNestedInput
202220
202969
  applications?: ApplicationUpdateManyWithoutResumeNestedInput
202221
202970
  interviews?: InterviewUpdateManyWithoutResumeNestedInput
202222
202971
  ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutResumeNestedInput
@@ -202231,6 +202980,8 @@ export namespace Prisma {
202231
202980
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
202232
202981
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
202233
202982
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
202983
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
202984
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
202234
202985
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
202235
202986
  summary?: NullableJsonNullValueInput | InputJsonValue
202236
202987
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -202254,6 +203005,8 @@ export namespace Prisma {
202254
203005
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
202255
203006
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
202256
203007
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
203008
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
203009
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
202257
203010
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
202258
203011
  summary?: NullableJsonNullValueInput | InputJsonValue
202259
203012
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -202351,6 +203104,7 @@ export namespace Prisma {
202351
203104
  description?: NullableStringFieldUpdateOperationsInput | string | null
202352
203105
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
202353
203106
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
203107
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
202354
203108
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
202355
203109
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
202356
203110
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -202396,6 +203150,7 @@ export namespace Prisma {
202396
203150
  description?: NullableStringFieldUpdateOperationsInput | string | null
202397
203151
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
202398
203152
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
203153
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
202399
203154
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
202400
203155
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
202401
203156
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -202434,6 +203189,7 @@ export namespace Prisma {
202434
203189
  description?: NullableStringFieldUpdateOperationsInput | string | null
202435
203190
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
202436
203191
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
203192
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
202437
203193
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
202438
203194
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
202439
203195
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -202979,6 +203735,7 @@ export namespace Prisma {
202979
203735
  is_active?: BoolFieldUpdateOperationsInput | boolean
202980
203736
  candidate?: UserUpdateOneWithoutDocumentsNestedInput
202981
203737
  resume?: ResumeUpdateOneWithoutDocumentNestedInput
203738
+ resume_rendered_export?: ResumeUpdateOneWithoutRendered_export_documentNestedInput
202982
203739
  job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
202983
203740
  job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
202984
203741
  interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
@@ -203005,6 +203762,7 @@ export namespace Prisma {
203005
203762
  updated_by?: StringFieldUpdateOperationsInput | string
203006
203763
  is_active?: BoolFieldUpdateOperationsInput | boolean
203007
203764
  resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
203765
+ resume_rendered_export?: ResumeUncheckedUpdateOneWithoutRendered_export_documentNestedInput
203008
203766
  job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
203009
203767
  job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
203010
203768
  interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
@@ -203222,6 +203980,7 @@ export namespace Prisma {
203222
203980
  source_id?: string | null
203223
203981
  round_no?: number
203224
203982
  is_jaf_completed?: boolean
203983
+ proceed_to_next_round?: boolean | null
203225
203984
  on_notice_period?: boolean
203226
203985
  expected_joining_date?: Date | string | null
203227
203986
  current_ctc?: string | null
@@ -203304,6 +204063,7 @@ export namespace Prisma {
203304
204063
  description?: string | null
203305
204064
  order_no?: number | null
203306
204065
  format?: $Enums.EvaluationRoundFormat | null
204066
+ round_purpose?: string | null
203307
204067
  topics?: OngoingEvaluationCreatetopicsInput | string[]
203308
204068
  assignee?: string | null
203309
204069
  elimination_round?: boolean | null
@@ -203372,6 +204132,7 @@ export namespace Prisma {
203372
204132
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
203373
204133
  round_no?: IntFieldUpdateOperationsInput | number
203374
204134
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
204135
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
203375
204136
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
203376
204137
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
203377
204138
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -203416,6 +204177,7 @@ export namespace Prisma {
203416
204177
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
203417
204178
  round_no?: IntFieldUpdateOperationsInput | number
203418
204179
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
204180
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
203419
204181
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
203420
204182
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
203421
204183
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -203453,6 +204215,7 @@ export namespace Prisma {
203453
204215
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
203454
204216
  round_no?: IntFieldUpdateOperationsInput | number
203455
204217
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
204218
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
203456
204219
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
203457
204220
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
203458
204221
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -203636,6 +204399,7 @@ export namespace Prisma {
203636
204399
  description?: NullableStringFieldUpdateOperationsInput | string | null
203637
204400
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
203638
204401
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
204402
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
203639
204403
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
203640
204404
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
203641
204405
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -203681,6 +204445,7 @@ export namespace Prisma {
203681
204445
  description?: NullableStringFieldUpdateOperationsInput | string | null
203682
204446
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
203683
204447
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
204448
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
203684
204449
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
203685
204450
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
203686
204451
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -203719,6 +204484,7 @@ export namespace Prisma {
203719
204484
  description?: NullableStringFieldUpdateOperationsInput | string | null
203720
204485
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
203721
204486
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
204487
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
203722
204488
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
203723
204489
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
203724
204490
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -203896,6 +204662,7 @@ export namespace Prisma {
203896
204662
  recruiter_id?: string | null
203897
204663
  round_no?: number
203898
204664
  is_jaf_completed?: boolean
204665
+ proceed_to_next_round?: boolean | null
203899
204666
  on_notice_period?: boolean
203900
204667
  expected_joining_date?: Date | string | null
203901
204668
  current_ctc?: string | null
@@ -203958,6 +204725,7 @@ export namespace Prisma {
203958
204725
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
203959
204726
  round_no?: IntFieldUpdateOperationsInput | number
203960
204727
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
204728
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
203961
204729
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
203962
204730
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
203963
204731
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -204002,6 +204770,7 @@ export namespace Prisma {
204002
204770
  recruiter_id?: NullableStringFieldUpdateOperationsInput | string | null
204003
204771
  round_no?: IntFieldUpdateOperationsInput | number
204004
204772
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
204773
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
204005
204774
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
204006
204775
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
204007
204776
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -204039,6 +204808,7 @@ export namespace Prisma {
204039
204808
  recruiter_id?: NullableStringFieldUpdateOperationsInput | string | null
204040
204809
  round_no?: IntFieldUpdateOperationsInput | number
204041
204810
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
204811
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
204042
204812
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
204043
204813
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
204044
204814
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -204136,6 +204906,7 @@ export namespace Prisma {
204136
204906
  source_id?: string | null
204137
204907
  round_no?: number
204138
204908
  is_jaf_completed?: boolean
204909
+ proceed_to_next_round?: boolean | null
204139
204910
  on_notice_period?: boolean
204140
204911
  expected_joining_date?: Date | string | null
204141
204912
  current_ctc?: string | null
@@ -204158,6 +204929,8 @@ export namespace Prisma {
204158
204929
  job_description_id?: string | null
204159
204930
  uploaded_resume_path?: string | null
204160
204931
  document_id?: string | null
204932
+ rendered_export_document_id?: string | null
204933
+ resume_template_id?: string | null
204161
204934
  file_hash?: string | null
204162
204935
  summary?: NullableJsonNullValueInput | InputJsonValue
204163
204936
  created_at?: Date | string
@@ -204509,6 +205282,7 @@ export namespace Prisma {
204509
205282
  description?: string | null
204510
205283
  order_no?: number | null
204511
205284
  format?: $Enums.EvaluationRoundFormat | null
205285
+ round_purpose?: string | null
204512
205286
  topics?: OngoingEvaluationCreatetopicsInput | string[]
204513
205287
  assignee?: string | null
204514
205288
  elimination_round?: boolean | null
@@ -204702,6 +205476,7 @@ export namespace Prisma {
204702
205476
  source_id?: string | null
204703
205477
  round_no?: number
204704
205478
  is_jaf_completed?: boolean
205479
+ proceed_to_next_round?: boolean | null
204705
205480
  on_notice_period?: boolean
204706
205481
  expected_joining_date?: Date | string | null
204707
205482
  current_ctc?: string | null
@@ -204743,6 +205518,7 @@ export namespace Prisma {
204743
205518
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
204744
205519
  round_no?: IntFieldUpdateOperationsInput | number
204745
205520
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
205521
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
204746
205522
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
204747
205523
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
204748
205524
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -204787,6 +205563,7 @@ export namespace Prisma {
204787
205563
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
204788
205564
  round_no?: IntFieldUpdateOperationsInput | number
204789
205565
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
205566
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
204790
205567
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
204791
205568
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
204792
205569
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -204824,6 +205601,7 @@ export namespace Prisma {
204824
205601
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
204825
205602
  round_no?: IntFieldUpdateOperationsInput | number
204826
205603
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
205604
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
204827
205605
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
204828
205606
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
204829
205607
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -204843,6 +205621,7 @@ export namespace Prisma {
204843
205621
  export type ResumeUpdateWithoutUserInput = {
204844
205622
  id?: StringFieldUpdateOperationsInput | string
204845
205623
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
205624
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
204846
205625
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
204847
205626
  summary?: NullableJsonNullValueInput | InputJsonValue
204848
205627
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -204855,6 +205634,7 @@ export namespace Prisma {
204855
205634
  organisation?: OrganisationUpdateOneWithoutResumesNestedInput
204856
205635
  job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
204857
205636
  document?: DocumentUpdateOneWithoutResumeNestedInput
205637
+ rendered_export_document?: DocumentUpdateOneWithoutResume_rendered_exportNestedInput
204858
205638
  applications?: ApplicationUpdateManyWithoutResumeNestedInput
204859
205639
  interviews?: InterviewUpdateManyWithoutResumeNestedInput
204860
205640
  ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutResumeNestedInput
@@ -204869,6 +205649,8 @@ export namespace Prisma {
204869
205649
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
204870
205650
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
204871
205651
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
205652
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
205653
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
204872
205654
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
204873
205655
  summary?: NullableJsonNullValueInput | InputJsonValue
204874
205656
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -204892,6 +205674,8 @@ export namespace Prisma {
204892
205674
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
204893
205675
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
204894
205676
  document_id?: NullableStringFieldUpdateOperationsInput | string | null
205677
+ rendered_export_document_id?: NullableStringFieldUpdateOperationsInput | string | null
205678
+ resume_template_id?: NullableStringFieldUpdateOperationsInput | string | null
204895
205679
  file_hash?: NullableStringFieldUpdateOperationsInput | string | null
204896
205680
  summary?: NullableJsonNullValueInput | InputJsonValue
204897
205681
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -206080,6 +206864,7 @@ export namespace Prisma {
206080
206864
  description?: NullableStringFieldUpdateOperationsInput | string | null
206081
206865
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
206082
206866
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
206867
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
206083
206868
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
206084
206869
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
206085
206870
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -206125,6 +206910,7 @@ export namespace Prisma {
206125
206910
  description?: NullableStringFieldUpdateOperationsInput | string | null
206126
206911
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
206127
206912
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
206913
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
206128
206914
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
206129
206915
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
206130
206916
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -206163,6 +206949,7 @@ export namespace Prisma {
206163
206949
  description?: NullableStringFieldUpdateOperationsInput | string | null
206164
206950
  order_no?: NullableIntFieldUpdateOperationsInput | number | null
206165
206951
  format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
206952
+ round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
206166
206953
  topics?: OngoingEvaluationUpdatetopicsInput | string[]
206167
206954
  assignee?: NullableStringFieldUpdateOperationsInput | string | null
206168
206955
  elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
@@ -206679,6 +207466,7 @@ export namespace Prisma {
206679
207466
  applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
206680
207467
  round_no?: IntFieldUpdateOperationsInput | number
206681
207468
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
207469
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
206682
207470
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
206683
207471
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
206684
207472
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -206723,6 +207511,7 @@ export namespace Prisma {
206723
207511
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
206724
207512
  round_no?: IntFieldUpdateOperationsInput | number
206725
207513
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
207514
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
206726
207515
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
206727
207516
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
206728
207517
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -206760,6 +207549,7 @@ export namespace Prisma {
206760
207549
  source_id?: NullableStringFieldUpdateOperationsInput | string | null
206761
207550
  round_no?: IntFieldUpdateOperationsInput | number
206762
207551
  is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
207552
+ proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
206763
207553
  on_notice_period?: BoolFieldUpdateOperationsInput | boolean
206764
207554
  expected_joining_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
206765
207555
  current_ctc?: NullableStringFieldUpdateOperationsInput | string | null
@@ -206794,6 +207584,7 @@ export namespace Prisma {
206794
207584
  is_active?: BoolFieldUpdateOperationsInput | boolean
206795
207585
  organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
206796
207586
  resume?: ResumeUpdateOneWithoutDocumentNestedInput
207587
+ resume_rendered_export?: ResumeUpdateOneWithoutRendered_export_documentNestedInput
206797
207588
  job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
206798
207589
  job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
206799
207590
  interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
@@ -206820,6 +207611,7 @@ export namespace Prisma {
206820
207611
  updated_by?: StringFieldUpdateOperationsInput | string
206821
207612
  is_active?: BoolFieldUpdateOperationsInput | boolean
206822
207613
  resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
207614
+ resume_rendered_export?: ResumeUncheckedUpdateOneWithoutRendered_export_documentNestedInput
206823
207615
  job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
206824
207616
  job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
206825
207617
  interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput