@adaptware/eagles-db 0.4.2 → 0.4.6
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/edge.js +4 -5
- package/client/index-browser.js +1 -2
- package/client/index.d.ts +182 -303
- package/client/index.js +4 -5
- package/client/package.json +1 -1
- package/client/schema.prisma +3 -7
- package/client/wasm.js +1 -2
- package/package.json +1 -1
- package/prisma/schema/jobDescription.prisma +0 -2
- package/prisma/schema/ongoingEvaluation.prisma +3 -5
package/client/index.d.ts
CHANGED
|
@@ -38196,7 +38196,6 @@ export namespace Prisma {
|
|
|
38196
38196
|
summary: number
|
|
38197
38197
|
ai_insight: number
|
|
38198
38198
|
job_fit_comparison: number
|
|
38199
|
-
recommendation_config: number
|
|
38200
38199
|
created_at: number
|
|
38201
38200
|
updated_at: number
|
|
38202
38201
|
created_by: number
|
|
@@ -38263,7 +38262,6 @@ export namespace Prisma {
|
|
|
38263
38262
|
summary?: true
|
|
38264
38263
|
ai_insight?: true
|
|
38265
38264
|
job_fit_comparison?: true
|
|
38266
|
-
recommendation_config?: true
|
|
38267
38265
|
created_at?: true
|
|
38268
38266
|
updated_at?: true
|
|
38269
38267
|
created_by?: true
|
|
@@ -38373,7 +38371,6 @@ export namespace Prisma {
|
|
|
38373
38371
|
summary: JsonValue | null
|
|
38374
38372
|
ai_insight: JsonValue | null
|
|
38375
38373
|
job_fit_comparison: JsonValue | null
|
|
38376
|
-
recommendation_config: JsonValue | null
|
|
38377
38374
|
created_at: Date
|
|
38378
38375
|
updated_at: Date
|
|
38379
38376
|
created_by: string
|
|
@@ -38415,7 +38412,6 @@ export namespace Prisma {
|
|
|
38415
38412
|
summary?: boolean
|
|
38416
38413
|
ai_insight?: boolean
|
|
38417
38414
|
job_fit_comparison?: boolean
|
|
38418
|
-
recommendation_config?: boolean
|
|
38419
38415
|
created_at?: boolean
|
|
38420
38416
|
updated_at?: boolean
|
|
38421
38417
|
created_by?: boolean
|
|
@@ -38456,7 +38452,6 @@ export namespace Prisma {
|
|
|
38456
38452
|
summary?: boolean
|
|
38457
38453
|
ai_insight?: boolean
|
|
38458
38454
|
job_fit_comparison?: boolean
|
|
38459
|
-
recommendation_config?: boolean
|
|
38460
38455
|
created_at?: boolean
|
|
38461
38456
|
updated_at?: boolean
|
|
38462
38457
|
created_by?: boolean
|
|
@@ -38482,7 +38477,6 @@ export namespace Prisma {
|
|
|
38482
38477
|
summary?: boolean
|
|
38483
38478
|
ai_insight?: boolean
|
|
38484
38479
|
job_fit_comparison?: boolean
|
|
38485
|
-
recommendation_config?: boolean
|
|
38486
38480
|
created_at?: boolean
|
|
38487
38481
|
updated_at?: boolean
|
|
38488
38482
|
created_by?: boolean
|
|
@@ -38508,7 +38502,6 @@ export namespace Prisma {
|
|
|
38508
38502
|
summary?: boolean
|
|
38509
38503
|
ai_insight?: boolean
|
|
38510
38504
|
job_fit_comparison?: boolean
|
|
38511
|
-
recommendation_config?: boolean
|
|
38512
38505
|
created_at?: boolean
|
|
38513
38506
|
updated_at?: boolean
|
|
38514
38507
|
created_by?: boolean
|
|
@@ -38518,7 +38511,7 @@ export namespace Prisma {
|
|
|
38518
38511
|
job_profile_id?: boolean
|
|
38519
38512
|
}
|
|
38520
38513
|
|
|
38521
|
-
export type JobDescriptionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "hiring_manager_id" | "status" | "screeningQuestions" | "recommendedQuestions" | "uploaded_job_description_path" | "is_plan_published" | "is_posted" | "summary" | "ai_insight" | "job_fit_comparison" | "
|
|
38514
|
+
export type JobDescriptionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "hiring_manager_id" | "status" | "screeningQuestions" | "recommendedQuestions" | "uploaded_job_description_path" | "is_plan_published" | "is_posted" | "summary" | "ai_insight" | "job_fit_comparison" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "openings" | "job_profile_id", ExtArgs["result"]["jobDescription"]>
|
|
38522
38515
|
export type JobDescriptionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
38523
38516
|
job_profile?: boolean | JobDescription$job_profileArgs<ExtArgs>
|
|
38524
38517
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
@@ -38584,10 +38577,6 @@ export namespace Prisma {
|
|
|
38584
38577
|
summary: Prisma.JsonValue | null
|
|
38585
38578
|
ai_insight: Prisma.JsonValue | null
|
|
38586
38579
|
job_fit_comparison: Prisma.JsonValue | null
|
|
38587
|
-
/**
|
|
38588
|
-
* Per-job thresholds for AI round recommendation (interview vs work-sample routing).
|
|
38589
|
-
*/
|
|
38590
|
-
recommendation_config: Prisma.JsonValue | null
|
|
38591
38580
|
created_at: Date
|
|
38592
38581
|
updated_at: Date
|
|
38593
38582
|
created_by: string
|
|
@@ -39047,7 +39036,6 @@ export namespace Prisma {
|
|
|
39047
39036
|
readonly summary: FieldRef<"JobDescription", 'Json'>
|
|
39048
39037
|
readonly ai_insight: FieldRef<"JobDescription", 'Json'>
|
|
39049
39038
|
readonly job_fit_comparison: FieldRef<"JobDescription", 'Json'>
|
|
39050
|
-
readonly recommendation_config: FieldRef<"JobDescription", 'Json'>
|
|
39051
39039
|
readonly created_at: FieldRef<"JobDescription", 'DateTime'>
|
|
39052
39040
|
readonly updated_at: FieldRef<"JobDescription", 'DateTime'>
|
|
39053
39041
|
readonly created_by: FieldRef<"JobDescription", 'String'>
|
|
@@ -45708,7 +45696,6 @@ export namespace Prisma {
|
|
|
45708
45696
|
resume_id: string | null
|
|
45709
45697
|
job_description_id: string | null
|
|
45710
45698
|
evaluation_plan_id: string | null
|
|
45711
|
-
is_committed: boolean | null
|
|
45712
45699
|
interview_id: string | null
|
|
45713
45700
|
assignment_id: string | null
|
|
45714
45701
|
assessment_id: string | null
|
|
@@ -45716,6 +45703,7 @@ export namespace Prisma {
|
|
|
45716
45703
|
round_status: $Enums.OngoingEvaluationRoundStatus | null
|
|
45717
45704
|
comments: string | null
|
|
45718
45705
|
completed_at: Date | null
|
|
45706
|
+
is_committed: boolean | null
|
|
45719
45707
|
title: string | null
|
|
45720
45708
|
description: string | null
|
|
45721
45709
|
order_no: number | null
|
|
@@ -45743,7 +45731,6 @@ export namespace Prisma {
|
|
|
45743
45731
|
resume_id: string | null
|
|
45744
45732
|
job_description_id: string | null
|
|
45745
45733
|
evaluation_plan_id: string | null
|
|
45746
|
-
is_committed: boolean | null
|
|
45747
45734
|
interview_id: string | null
|
|
45748
45735
|
assignment_id: string | null
|
|
45749
45736
|
assessment_id: string | null
|
|
@@ -45751,6 +45738,7 @@ export namespace Prisma {
|
|
|
45751
45738
|
round_status: $Enums.OngoingEvaluationRoundStatus | null
|
|
45752
45739
|
comments: string | null
|
|
45753
45740
|
completed_at: Date | null
|
|
45741
|
+
is_committed: boolean | null
|
|
45754
45742
|
title: string | null
|
|
45755
45743
|
description: string | null
|
|
45756
45744
|
order_no: number | null
|
|
@@ -45778,7 +45766,6 @@ export namespace Prisma {
|
|
|
45778
45766
|
resume_id: number
|
|
45779
45767
|
job_description_id: number
|
|
45780
45768
|
evaluation_plan_id: number
|
|
45781
|
-
is_committed: number
|
|
45782
45769
|
interview_id: number
|
|
45783
45770
|
assignment_id: number
|
|
45784
45771
|
assessment_id: number
|
|
@@ -45786,6 +45773,7 @@ export namespace Prisma {
|
|
|
45786
45773
|
round_status: number
|
|
45787
45774
|
comments: number
|
|
45788
45775
|
completed_at: number
|
|
45776
|
+
is_committed: number
|
|
45789
45777
|
title: number
|
|
45790
45778
|
description: number
|
|
45791
45779
|
order_no: number
|
|
@@ -45829,7 +45817,6 @@ export namespace Prisma {
|
|
|
45829
45817
|
resume_id?: true
|
|
45830
45818
|
job_description_id?: true
|
|
45831
45819
|
evaluation_plan_id?: true
|
|
45832
|
-
is_committed?: true
|
|
45833
45820
|
interview_id?: true
|
|
45834
45821
|
assignment_id?: true
|
|
45835
45822
|
assessment_id?: true
|
|
@@ -45837,6 +45824,7 @@ export namespace Prisma {
|
|
|
45837
45824
|
round_status?: true
|
|
45838
45825
|
comments?: true
|
|
45839
45826
|
completed_at?: true
|
|
45827
|
+
is_committed?: true
|
|
45840
45828
|
title?: true
|
|
45841
45829
|
description?: true
|
|
45842
45830
|
order_no?: true
|
|
@@ -45864,7 +45852,6 @@ export namespace Prisma {
|
|
|
45864
45852
|
resume_id?: true
|
|
45865
45853
|
job_description_id?: true
|
|
45866
45854
|
evaluation_plan_id?: true
|
|
45867
|
-
is_committed?: true
|
|
45868
45855
|
interview_id?: true
|
|
45869
45856
|
assignment_id?: true
|
|
45870
45857
|
assessment_id?: true
|
|
@@ -45872,6 +45859,7 @@ export namespace Prisma {
|
|
|
45872
45859
|
round_status?: true
|
|
45873
45860
|
comments?: true
|
|
45874
45861
|
completed_at?: true
|
|
45862
|
+
is_committed?: true
|
|
45875
45863
|
title?: true
|
|
45876
45864
|
description?: true
|
|
45877
45865
|
order_no?: true
|
|
@@ -45899,7 +45887,6 @@ export namespace Prisma {
|
|
|
45899
45887
|
resume_id?: true
|
|
45900
45888
|
job_description_id?: true
|
|
45901
45889
|
evaluation_plan_id?: true
|
|
45902
|
-
is_committed?: true
|
|
45903
45890
|
interview_id?: true
|
|
45904
45891
|
assignment_id?: true
|
|
45905
45892
|
assessment_id?: true
|
|
@@ -45907,6 +45894,7 @@ export namespace Prisma {
|
|
|
45907
45894
|
round_status?: true
|
|
45908
45895
|
comments?: true
|
|
45909
45896
|
completed_at?: true
|
|
45897
|
+
is_committed?: true
|
|
45910
45898
|
title?: true
|
|
45911
45899
|
description?: true
|
|
45912
45900
|
order_no?: true
|
|
@@ -46022,8 +46010,7 @@ export namespace Prisma {
|
|
|
46022
46010
|
candidate_id: string
|
|
46023
46011
|
resume_id: string
|
|
46024
46012
|
job_description_id: string
|
|
46025
|
-
evaluation_plan_id: string
|
|
46026
|
-
is_committed: boolean | null
|
|
46013
|
+
evaluation_plan_id: string
|
|
46027
46014
|
interview_id: string | null
|
|
46028
46015
|
assignment_id: string | null
|
|
46029
46016
|
assessment_id: string | null
|
|
@@ -46031,6 +46018,7 @@ export namespace Prisma {
|
|
|
46031
46018
|
round_status: $Enums.OngoingEvaluationRoundStatus | null
|
|
46032
46019
|
comments: string | null
|
|
46033
46020
|
completed_at: Date | null
|
|
46021
|
+
is_committed: boolean | null
|
|
46034
46022
|
title: string | null
|
|
46035
46023
|
description: string | null
|
|
46036
46024
|
order_no: number | null
|
|
@@ -46079,7 +46067,6 @@ export namespace Prisma {
|
|
|
46079
46067
|
resume_id?: boolean
|
|
46080
46068
|
job_description_id?: boolean
|
|
46081
46069
|
evaluation_plan_id?: boolean
|
|
46082
|
-
is_committed?: boolean
|
|
46083
46070
|
interview_id?: boolean
|
|
46084
46071
|
assignment_id?: boolean
|
|
46085
46072
|
assessment_id?: boolean
|
|
@@ -46087,6 +46074,7 @@ export namespace Prisma {
|
|
|
46087
46074
|
round_status?: boolean
|
|
46088
46075
|
comments?: boolean
|
|
46089
46076
|
completed_at?: boolean
|
|
46077
|
+
is_committed?: boolean
|
|
46090
46078
|
title?: boolean
|
|
46091
46079
|
description?: boolean
|
|
46092
46080
|
order_no?: boolean
|
|
@@ -46111,7 +46099,7 @@ export namespace Prisma {
|
|
|
46111
46099
|
candidate?: boolean | OngoingEvaluation$candidateArgs<ExtArgs>
|
|
46112
46100
|
resume?: boolean | OngoingEvaluation$resumeArgs<ExtArgs>
|
|
46113
46101
|
organisation?: boolean | OngoingEvaluation$organisationArgs<ExtArgs>
|
|
46114
|
-
evaluation_plan?: boolean |
|
|
46102
|
+
evaluation_plan?: boolean | EvaluationPlanDefaultArgs<ExtArgs>
|
|
46115
46103
|
interview?: boolean | OngoingEvaluation$interviewArgs<ExtArgs>
|
|
46116
46104
|
assignment?: boolean | OngoingEvaluation$assignmentArgs<ExtArgs>
|
|
46117
46105
|
assessment?: boolean | OngoingEvaluation$assessmentArgs<ExtArgs>
|
|
@@ -46125,7 +46113,6 @@ export namespace Prisma {
|
|
|
46125
46113
|
resume_id?: boolean
|
|
46126
46114
|
job_description_id?: boolean
|
|
46127
46115
|
evaluation_plan_id?: boolean
|
|
46128
|
-
is_committed?: boolean
|
|
46129
46116
|
interview_id?: boolean
|
|
46130
46117
|
assignment_id?: boolean
|
|
46131
46118
|
assessment_id?: boolean
|
|
@@ -46133,6 +46120,7 @@ export namespace Prisma {
|
|
|
46133
46120
|
round_status?: boolean
|
|
46134
46121
|
comments?: boolean
|
|
46135
46122
|
completed_at?: boolean
|
|
46123
|
+
is_committed?: boolean
|
|
46136
46124
|
title?: boolean
|
|
46137
46125
|
description?: boolean
|
|
46138
46126
|
order_no?: boolean
|
|
@@ -46157,7 +46145,7 @@ export namespace Prisma {
|
|
|
46157
46145
|
candidate?: boolean | OngoingEvaluation$candidateArgs<ExtArgs>
|
|
46158
46146
|
resume?: boolean | OngoingEvaluation$resumeArgs<ExtArgs>
|
|
46159
46147
|
organisation?: boolean | OngoingEvaluation$organisationArgs<ExtArgs>
|
|
46160
|
-
evaluation_plan?: boolean |
|
|
46148
|
+
evaluation_plan?: boolean | EvaluationPlanDefaultArgs<ExtArgs>
|
|
46161
46149
|
interview?: boolean | OngoingEvaluation$interviewArgs<ExtArgs>
|
|
46162
46150
|
assessment?: boolean | OngoingEvaluation$assessmentArgs<ExtArgs>
|
|
46163
46151
|
}, ExtArgs["result"]["ongoingEvaluation"]>
|
|
@@ -46170,7 +46158,6 @@ export namespace Prisma {
|
|
|
46170
46158
|
resume_id?: boolean
|
|
46171
46159
|
job_description_id?: boolean
|
|
46172
46160
|
evaluation_plan_id?: boolean
|
|
46173
|
-
is_committed?: boolean
|
|
46174
46161
|
interview_id?: boolean
|
|
46175
46162
|
assignment_id?: boolean
|
|
46176
46163
|
assessment_id?: boolean
|
|
@@ -46178,6 +46165,7 @@ export namespace Prisma {
|
|
|
46178
46165
|
round_status?: boolean
|
|
46179
46166
|
comments?: boolean
|
|
46180
46167
|
completed_at?: boolean
|
|
46168
|
+
is_committed?: boolean
|
|
46181
46169
|
title?: boolean
|
|
46182
46170
|
description?: boolean
|
|
46183
46171
|
order_no?: boolean
|
|
@@ -46202,7 +46190,7 @@ export namespace Prisma {
|
|
|
46202
46190
|
candidate?: boolean | OngoingEvaluation$candidateArgs<ExtArgs>
|
|
46203
46191
|
resume?: boolean | OngoingEvaluation$resumeArgs<ExtArgs>
|
|
46204
46192
|
organisation?: boolean | OngoingEvaluation$organisationArgs<ExtArgs>
|
|
46205
|
-
evaluation_plan?: boolean |
|
|
46193
|
+
evaluation_plan?: boolean | EvaluationPlanDefaultArgs<ExtArgs>
|
|
46206
46194
|
interview?: boolean | OngoingEvaluation$interviewArgs<ExtArgs>
|
|
46207
46195
|
assessment?: boolean | OngoingEvaluation$assessmentArgs<ExtArgs>
|
|
46208
46196
|
}, ExtArgs["result"]["ongoingEvaluation"]>
|
|
@@ -46215,7 +46203,6 @@ export namespace Prisma {
|
|
|
46215
46203
|
resume_id?: boolean
|
|
46216
46204
|
job_description_id?: boolean
|
|
46217
46205
|
evaluation_plan_id?: boolean
|
|
46218
|
-
is_committed?: boolean
|
|
46219
46206
|
interview_id?: boolean
|
|
46220
46207
|
assignment_id?: boolean
|
|
46221
46208
|
assessment_id?: boolean
|
|
@@ -46223,6 +46210,7 @@ export namespace Prisma {
|
|
|
46223
46210
|
round_status?: boolean
|
|
46224
46211
|
comments?: boolean
|
|
46225
46212
|
completed_at?: boolean
|
|
46213
|
+
is_committed?: boolean
|
|
46226
46214
|
title?: boolean
|
|
46227
46215
|
description?: boolean
|
|
46228
46216
|
order_no?: boolean
|
|
@@ -46244,14 +46232,14 @@ export namespace Prisma {
|
|
|
46244
46232
|
is_current?: boolean
|
|
46245
46233
|
}
|
|
46246
46234
|
|
|
46247
|
-
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" | "
|
|
46235
|
+
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" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "is_current", ExtArgs["result"]["ongoingEvaluation"]>
|
|
46248
46236
|
export type OngoingEvaluationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46249
46237
|
jobDescription?: boolean | OngoingEvaluation$jobDescriptionArgs<ExtArgs>
|
|
46250
46238
|
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
46251
46239
|
candidate?: boolean | OngoingEvaluation$candidateArgs<ExtArgs>
|
|
46252
46240
|
resume?: boolean | OngoingEvaluation$resumeArgs<ExtArgs>
|
|
46253
46241
|
organisation?: boolean | OngoingEvaluation$organisationArgs<ExtArgs>
|
|
46254
|
-
evaluation_plan?: boolean |
|
|
46242
|
+
evaluation_plan?: boolean | EvaluationPlanDefaultArgs<ExtArgs>
|
|
46255
46243
|
interview?: boolean | OngoingEvaluation$interviewArgs<ExtArgs>
|
|
46256
46244
|
assignment?: boolean | OngoingEvaluation$assignmentArgs<ExtArgs>
|
|
46257
46245
|
assessment?: boolean | OngoingEvaluation$assessmentArgs<ExtArgs>
|
|
@@ -46262,7 +46250,7 @@ export namespace Prisma {
|
|
|
46262
46250
|
candidate?: boolean | OngoingEvaluation$candidateArgs<ExtArgs>
|
|
46263
46251
|
resume?: boolean | OngoingEvaluation$resumeArgs<ExtArgs>
|
|
46264
46252
|
organisation?: boolean | OngoingEvaluation$organisationArgs<ExtArgs>
|
|
46265
|
-
evaluation_plan?: boolean |
|
|
46253
|
+
evaluation_plan?: boolean | EvaluationPlanDefaultArgs<ExtArgs>
|
|
46266
46254
|
interview?: boolean | OngoingEvaluation$interviewArgs<ExtArgs>
|
|
46267
46255
|
assessment?: boolean | OngoingEvaluation$assessmentArgs<ExtArgs>
|
|
46268
46256
|
}
|
|
@@ -46272,7 +46260,7 @@ export namespace Prisma {
|
|
|
46272
46260
|
candidate?: boolean | OngoingEvaluation$candidateArgs<ExtArgs>
|
|
46273
46261
|
resume?: boolean | OngoingEvaluation$resumeArgs<ExtArgs>
|
|
46274
46262
|
organisation?: boolean | OngoingEvaluation$organisationArgs<ExtArgs>
|
|
46275
|
-
evaluation_plan?: boolean |
|
|
46263
|
+
evaluation_plan?: boolean | EvaluationPlanDefaultArgs<ExtArgs>
|
|
46276
46264
|
interview?: boolean | OngoingEvaluation$interviewArgs<ExtArgs>
|
|
46277
46265
|
assessment?: boolean | OngoingEvaluation$assessmentArgs<ExtArgs>
|
|
46278
46266
|
}
|
|
@@ -46285,7 +46273,7 @@ export namespace Prisma {
|
|
|
46285
46273
|
candidate: Prisma.$UserPayload<ExtArgs> | null
|
|
46286
46274
|
resume: Prisma.$ResumePayload<ExtArgs> | null
|
|
46287
46275
|
organisation: Prisma.$OrganisationPayload<ExtArgs> | null
|
|
46288
|
-
evaluation_plan: Prisma.$EvaluationPlanPayload<ExtArgs>
|
|
46276
|
+
evaluation_plan: Prisma.$EvaluationPlanPayload<ExtArgs>
|
|
46289
46277
|
interview: Prisma.$InterviewPayload<ExtArgs> | null
|
|
46290
46278
|
assignment: Prisma.$AssignmentPayload<ExtArgs> | null
|
|
46291
46279
|
assessment: Prisma.$AssessmentPayload<ExtArgs> | null
|
|
@@ -46297,11 +46285,7 @@ export namespace Prisma {
|
|
|
46297
46285
|
candidate_id: string
|
|
46298
46286
|
resume_id: string
|
|
46299
46287
|
job_description_id: string
|
|
46300
|
-
evaluation_plan_id: string
|
|
46301
|
-
/**
|
|
46302
|
-
* null = legacy row; false = pre-Proceed draft; true = committed pipeline round
|
|
46303
|
-
*/
|
|
46304
|
-
is_committed: boolean | null
|
|
46288
|
+
evaluation_plan_id: string
|
|
46305
46289
|
interview_id: string | null
|
|
46306
46290
|
assignment_id: string | null
|
|
46307
46291
|
assessment_id: string | null
|
|
@@ -46309,6 +46293,7 @@ export namespace Prisma {
|
|
|
46309
46293
|
round_status: $Enums.OngoingEvaluationRoundStatus | null
|
|
46310
46294
|
comments: string | null
|
|
46311
46295
|
completed_at: Date | null
|
|
46296
|
+
is_committed: boolean | null
|
|
46312
46297
|
/**
|
|
46313
46298
|
* Evaluation Plan Fields Filled After Round Started
|
|
46314
46299
|
*/
|
|
@@ -46730,7 +46715,7 @@ export namespace Prisma {
|
|
|
46730
46715
|
candidate<T extends OngoingEvaluation$candidateArgs<ExtArgs> = {}>(args?: Subset<T, OngoingEvaluation$candidateArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
46731
46716
|
resume<T extends OngoingEvaluation$resumeArgs<ExtArgs> = {}>(args?: Subset<T, OngoingEvaluation$resumeArgs<ExtArgs>>): Prisma__ResumeClient<$Result.GetResult<Prisma.$ResumePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
46732
46717
|
organisation<T extends OngoingEvaluation$organisationArgs<ExtArgs> = {}>(args?: Subset<T, OngoingEvaluation$organisationArgs<ExtArgs>>): Prisma__OrganisationClient<$Result.GetResult<Prisma.$OrganisationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
46733
|
-
evaluation_plan<T extends
|
|
46718
|
+
evaluation_plan<T extends EvaluationPlanDefaultArgs<ExtArgs> = {}>(args?: Subset<T, EvaluationPlanDefaultArgs<ExtArgs>>): Prisma__EvaluationPlanClient<$Result.GetResult<Prisma.$EvaluationPlanPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
46734
46719
|
interview<T extends OngoingEvaluation$interviewArgs<ExtArgs> = {}>(args?: Subset<T, OngoingEvaluation$interviewArgs<ExtArgs>>): Prisma__InterviewClient<$Result.GetResult<Prisma.$InterviewPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
46735
46720
|
assignment<T extends OngoingEvaluation$assignmentArgs<ExtArgs> = {}>(args?: Subset<T, OngoingEvaluation$assignmentArgs<ExtArgs>>): Prisma__AssignmentClient<$Result.GetResult<Prisma.$AssignmentPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
46736
46721
|
assessment<T extends OngoingEvaluation$assessmentArgs<ExtArgs> = {}>(args?: Subset<T, OngoingEvaluation$assessmentArgs<ExtArgs>>): Prisma__AssessmentClient<$Result.GetResult<Prisma.$AssessmentPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
@@ -46770,7 +46755,6 @@ export namespace Prisma {
|
|
|
46770
46755
|
readonly resume_id: FieldRef<"OngoingEvaluation", 'String'>
|
|
46771
46756
|
readonly job_description_id: FieldRef<"OngoingEvaluation", 'String'>
|
|
46772
46757
|
readonly evaluation_plan_id: FieldRef<"OngoingEvaluation", 'String'>
|
|
46773
|
-
readonly is_committed: FieldRef<"OngoingEvaluation", 'Boolean'>
|
|
46774
46758
|
readonly interview_id: FieldRef<"OngoingEvaluation", 'String'>
|
|
46775
46759
|
readonly assignment_id: FieldRef<"OngoingEvaluation", 'String'>
|
|
46776
46760
|
readonly assessment_id: FieldRef<"OngoingEvaluation", 'String'>
|
|
@@ -46778,6 +46762,7 @@ export namespace Prisma {
|
|
|
46778
46762
|
readonly round_status: FieldRef<"OngoingEvaluation", 'OngoingEvaluationRoundStatus'>
|
|
46779
46763
|
readonly comments: FieldRef<"OngoingEvaluation", 'String'>
|
|
46780
46764
|
readonly completed_at: FieldRef<"OngoingEvaluation", 'DateTime'>
|
|
46765
|
+
readonly is_committed: FieldRef<"OngoingEvaluation", 'Boolean'>
|
|
46781
46766
|
readonly title: FieldRef<"OngoingEvaluation", 'String'>
|
|
46782
46767
|
readonly description: FieldRef<"OngoingEvaluation", 'String'>
|
|
46783
46768
|
readonly order_no: FieldRef<"OngoingEvaluation", 'Int'>
|
|
@@ -47268,25 +47253,6 @@ export namespace Prisma {
|
|
|
47268
47253
|
where?: OrganisationWhereInput
|
|
47269
47254
|
}
|
|
47270
47255
|
|
|
47271
|
-
/**
|
|
47272
|
-
* OngoingEvaluation.evaluation_plan
|
|
47273
|
-
*/
|
|
47274
|
-
export type OngoingEvaluation$evaluation_planArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
47275
|
-
/**
|
|
47276
|
-
* Select specific fields to fetch from the EvaluationPlan
|
|
47277
|
-
*/
|
|
47278
|
-
select?: EvaluationPlanSelect<ExtArgs> | null
|
|
47279
|
-
/**
|
|
47280
|
-
* Omit specific fields from the EvaluationPlan
|
|
47281
|
-
*/
|
|
47282
|
-
omit?: EvaluationPlanOmit<ExtArgs> | null
|
|
47283
|
-
/**
|
|
47284
|
-
* Choose, which related nodes to fetch as well
|
|
47285
|
-
*/
|
|
47286
|
-
include?: EvaluationPlanInclude<ExtArgs> | null
|
|
47287
|
-
where?: EvaluationPlanWhereInput
|
|
47288
|
-
}
|
|
47289
|
-
|
|
47290
47256
|
/**
|
|
47291
47257
|
* OngoingEvaluation.interview
|
|
47292
47258
|
*/
|
|
@@ -67374,7 +67340,6 @@ export namespace Prisma {
|
|
|
67374
67340
|
summary: 'summary',
|
|
67375
67341
|
ai_insight: 'ai_insight',
|
|
67376
67342
|
job_fit_comparison: 'job_fit_comparison',
|
|
67377
|
-
recommendation_config: 'recommendation_config',
|
|
67378
67343
|
created_at: 'created_at',
|
|
67379
67344
|
updated_at: 'updated_at',
|
|
67380
67345
|
created_by: 'created_by',
|
|
@@ -67486,7 +67451,6 @@ export namespace Prisma {
|
|
|
67486
67451
|
resume_id: 'resume_id',
|
|
67487
67452
|
job_description_id: 'job_description_id',
|
|
67488
67453
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
67489
|
-
is_committed: 'is_committed',
|
|
67490
67454
|
interview_id: 'interview_id',
|
|
67491
67455
|
assignment_id: 'assignment_id',
|
|
67492
67456
|
assessment_id: 'assessment_id',
|
|
@@ -67494,6 +67458,7 @@ export namespace Prisma {
|
|
|
67494
67458
|
round_status: 'round_status',
|
|
67495
67459
|
comments: 'comments',
|
|
67496
67460
|
completed_at: 'completed_at',
|
|
67461
|
+
is_committed: 'is_committed',
|
|
67497
67462
|
title: 'title',
|
|
67498
67463
|
description: 'description',
|
|
67499
67464
|
order_no: 'order_no',
|
|
@@ -71278,7 +71243,6 @@ export namespace Prisma {
|
|
|
71278
71243
|
summary?: JsonNullableFilter<"JobDescription">
|
|
71279
71244
|
ai_insight?: JsonNullableFilter<"JobDescription">
|
|
71280
71245
|
job_fit_comparison?: JsonNullableFilter<"JobDescription">
|
|
71281
|
-
recommendation_config?: JsonNullableFilter<"JobDescription">
|
|
71282
71246
|
created_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
71283
71247
|
updated_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
71284
71248
|
created_by?: StringFilter<"JobDescription"> | string
|
|
@@ -71318,7 +71282,6 @@ export namespace Prisma {
|
|
|
71318
71282
|
summary?: SortOrderInput | SortOrder
|
|
71319
71283
|
ai_insight?: SortOrderInput | SortOrder
|
|
71320
71284
|
job_fit_comparison?: SortOrderInput | SortOrder
|
|
71321
|
-
recommendation_config?: SortOrderInput | SortOrder
|
|
71322
71285
|
created_at?: SortOrder
|
|
71323
71286
|
updated_at?: SortOrder
|
|
71324
71287
|
created_by?: SortOrder
|
|
@@ -71361,7 +71324,6 @@ export namespace Prisma {
|
|
|
71361
71324
|
summary?: JsonNullableFilter<"JobDescription">
|
|
71362
71325
|
ai_insight?: JsonNullableFilter<"JobDescription">
|
|
71363
71326
|
job_fit_comparison?: JsonNullableFilter<"JobDescription">
|
|
71364
|
-
recommendation_config?: JsonNullableFilter<"JobDescription">
|
|
71365
71327
|
created_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
71366
71328
|
updated_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
71367
71329
|
created_by?: StringFilter<"JobDescription"> | string
|
|
@@ -71401,7 +71363,6 @@ export namespace Prisma {
|
|
|
71401
71363
|
summary?: SortOrderInput | SortOrder
|
|
71402
71364
|
ai_insight?: SortOrderInput | SortOrder
|
|
71403
71365
|
job_fit_comparison?: SortOrderInput | SortOrder
|
|
71404
|
-
recommendation_config?: SortOrderInput | SortOrder
|
|
71405
71366
|
created_at?: SortOrder
|
|
71406
71367
|
updated_at?: SortOrder
|
|
71407
71368
|
created_by?: SortOrder
|
|
@@ -71432,7 +71393,6 @@ export namespace Prisma {
|
|
|
71432
71393
|
summary?: JsonNullableWithAggregatesFilter<"JobDescription">
|
|
71433
71394
|
ai_insight?: JsonNullableWithAggregatesFilter<"JobDescription">
|
|
71434
71395
|
job_fit_comparison?: JsonNullableWithAggregatesFilter<"JobDescription">
|
|
71435
|
-
recommendation_config?: JsonNullableWithAggregatesFilter<"JobDescription">
|
|
71436
71396
|
created_at?: DateTimeWithAggregatesFilter<"JobDescription"> | Date | string
|
|
71437
71397
|
updated_at?: DateTimeWithAggregatesFilter<"JobDescription"> | Date | string
|
|
71438
71398
|
created_by?: StringWithAggregatesFilter<"JobDescription"> | string
|
|
@@ -71926,8 +71886,7 @@ export namespace Prisma {
|
|
|
71926
71886
|
candidate_id?: StringFilter<"OngoingEvaluation"> | string
|
|
71927
71887
|
resume_id?: StringFilter<"OngoingEvaluation"> | string
|
|
71928
71888
|
job_description_id?: StringFilter<"OngoingEvaluation"> | string
|
|
71929
|
-
evaluation_plan_id?:
|
|
71930
|
-
is_committed?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
|
|
71889
|
+
evaluation_plan_id?: StringFilter<"OngoingEvaluation"> | string
|
|
71931
71890
|
interview_id?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
71932
71891
|
assignment_id?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
71933
71892
|
assessment_id?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
@@ -71935,6 +71894,7 @@ export namespace Prisma {
|
|
|
71935
71894
|
round_status?: EnumOngoingEvaluationRoundStatusNullableFilter<"OngoingEvaluation"> | $Enums.OngoingEvaluationRoundStatus | null
|
|
71936
71895
|
comments?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
71937
71896
|
completed_at?: DateTimeNullableFilter<"OngoingEvaluation"> | Date | string | null
|
|
71897
|
+
is_committed?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
|
|
71938
71898
|
title?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
71939
71899
|
description?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
71940
71900
|
order_no?: IntNullableFilter<"OngoingEvaluation"> | number | null
|
|
@@ -71959,7 +71919,7 @@ export namespace Prisma {
|
|
|
71959
71919
|
candidate?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
71960
71920
|
resume?: XOR<ResumeNullableScalarRelationFilter, ResumeWhereInput> | null
|
|
71961
71921
|
organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
|
|
71962
|
-
evaluation_plan?: XOR<
|
|
71922
|
+
evaluation_plan?: XOR<EvaluationPlanScalarRelationFilter, EvaluationPlanWhereInput>
|
|
71963
71923
|
interview?: XOR<InterviewNullableScalarRelationFilter, InterviewWhereInput> | null
|
|
71964
71924
|
assignment?: XOR<AssignmentNullableScalarRelationFilter, AssignmentWhereInput> | null
|
|
71965
71925
|
assessment?: XOR<AssessmentNullableScalarRelationFilter, AssessmentWhereInput> | null
|
|
@@ -71972,8 +71932,7 @@ export namespace Prisma {
|
|
|
71972
71932
|
candidate_id?: SortOrder
|
|
71973
71933
|
resume_id?: SortOrder
|
|
71974
71934
|
job_description_id?: SortOrder
|
|
71975
|
-
evaluation_plan_id?:
|
|
71976
|
-
is_committed?: SortOrderInput | SortOrder
|
|
71935
|
+
evaluation_plan_id?: SortOrder
|
|
71977
71936
|
interview_id?: SortOrderInput | SortOrder
|
|
71978
71937
|
assignment_id?: SortOrderInput | SortOrder
|
|
71979
71938
|
assessment_id?: SortOrderInput | SortOrder
|
|
@@ -71981,6 +71940,7 @@ export namespace Prisma {
|
|
|
71981
71940
|
round_status?: SortOrderInput | SortOrder
|
|
71982
71941
|
comments?: SortOrderInput | SortOrder
|
|
71983
71942
|
completed_at?: SortOrderInput | SortOrder
|
|
71943
|
+
is_committed?: SortOrderInput | SortOrder
|
|
71984
71944
|
title?: SortOrderInput | SortOrder
|
|
71985
71945
|
description?: SortOrderInput | SortOrder
|
|
71986
71946
|
order_no?: SortOrderInput | SortOrder
|
|
@@ -72025,12 +71985,12 @@ export namespace Prisma {
|
|
|
72025
71985
|
candidate_id?: StringFilter<"OngoingEvaluation"> | string
|
|
72026
71986
|
resume_id?: StringFilter<"OngoingEvaluation"> | string
|
|
72027
71987
|
job_description_id?: StringFilter<"OngoingEvaluation"> | string
|
|
72028
|
-
evaluation_plan_id?:
|
|
72029
|
-
is_committed?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
|
|
71988
|
+
evaluation_plan_id?: StringFilter<"OngoingEvaluation"> | string
|
|
72030
71989
|
state?: EnumOngoingEvaluationStateNullableFilter<"OngoingEvaluation"> | $Enums.OngoingEvaluationState | null
|
|
72031
71990
|
round_status?: EnumOngoingEvaluationRoundStatusNullableFilter<"OngoingEvaluation"> | $Enums.OngoingEvaluationRoundStatus | null
|
|
72032
71991
|
comments?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
72033
71992
|
completed_at?: DateTimeNullableFilter<"OngoingEvaluation"> | Date | string | null
|
|
71993
|
+
is_committed?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
|
|
72034
71994
|
title?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
72035
71995
|
description?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
72036
71996
|
order_no?: IntNullableFilter<"OngoingEvaluation"> | number | null
|
|
@@ -72055,7 +72015,7 @@ export namespace Prisma {
|
|
|
72055
72015
|
candidate?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
72056
72016
|
resume?: XOR<ResumeNullableScalarRelationFilter, ResumeWhereInput> | null
|
|
72057
72017
|
organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
|
|
72058
|
-
evaluation_plan?: XOR<
|
|
72018
|
+
evaluation_plan?: XOR<EvaluationPlanScalarRelationFilter, EvaluationPlanWhereInput>
|
|
72059
72019
|
interview?: XOR<InterviewNullableScalarRelationFilter, InterviewWhereInput> | null
|
|
72060
72020
|
assignment?: XOR<AssignmentNullableScalarRelationFilter, AssignmentWhereInput> | null
|
|
72061
72021
|
assessment?: XOR<AssessmentNullableScalarRelationFilter, AssessmentWhereInput> | null
|
|
@@ -72068,8 +72028,7 @@ export namespace Prisma {
|
|
|
72068
72028
|
candidate_id?: SortOrder
|
|
72069
72029
|
resume_id?: SortOrder
|
|
72070
72030
|
job_description_id?: SortOrder
|
|
72071
|
-
evaluation_plan_id?:
|
|
72072
|
-
is_committed?: SortOrderInput | SortOrder
|
|
72031
|
+
evaluation_plan_id?: SortOrder
|
|
72073
72032
|
interview_id?: SortOrderInput | SortOrder
|
|
72074
72033
|
assignment_id?: SortOrderInput | SortOrder
|
|
72075
72034
|
assessment_id?: SortOrderInput | SortOrder
|
|
@@ -72077,6 +72036,7 @@ export namespace Prisma {
|
|
|
72077
72036
|
round_status?: SortOrderInput | SortOrder
|
|
72078
72037
|
comments?: SortOrderInput | SortOrder
|
|
72079
72038
|
completed_at?: SortOrderInput | SortOrder
|
|
72039
|
+
is_committed?: SortOrderInput | SortOrder
|
|
72080
72040
|
title?: SortOrderInput | SortOrder
|
|
72081
72041
|
description?: SortOrderInput | SortOrder
|
|
72082
72042
|
order_no?: SortOrderInput | SortOrder
|
|
@@ -72113,8 +72073,7 @@ export namespace Prisma {
|
|
|
72113
72073
|
candidate_id?: StringWithAggregatesFilter<"OngoingEvaluation"> | string
|
|
72114
72074
|
resume_id?: StringWithAggregatesFilter<"OngoingEvaluation"> | string
|
|
72115
72075
|
job_description_id?: StringWithAggregatesFilter<"OngoingEvaluation"> | string
|
|
72116
|
-
evaluation_plan_id?:
|
|
72117
|
-
is_committed?: BoolNullableWithAggregatesFilter<"OngoingEvaluation"> | boolean | null
|
|
72076
|
+
evaluation_plan_id?: StringWithAggregatesFilter<"OngoingEvaluation"> | string
|
|
72118
72077
|
interview_id?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
|
|
72119
72078
|
assignment_id?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
|
|
72120
72079
|
assessment_id?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
|
|
@@ -72122,6 +72081,7 @@ export namespace Prisma {
|
|
|
72122
72081
|
round_status?: EnumOngoingEvaluationRoundStatusNullableWithAggregatesFilter<"OngoingEvaluation"> | $Enums.OngoingEvaluationRoundStatus | null
|
|
72123
72082
|
comments?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
|
|
72124
72083
|
completed_at?: DateTimeNullableWithAggregatesFilter<"OngoingEvaluation"> | Date | string | null
|
|
72084
|
+
is_committed?: BoolNullableWithAggregatesFilter<"OngoingEvaluation"> | boolean | null
|
|
72125
72085
|
title?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
|
|
72126
72086
|
description?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
|
|
72127
72087
|
order_no?: IntNullableWithAggregatesFilter<"OngoingEvaluation"> | number | null
|
|
@@ -77016,7 +76976,6 @@ export namespace Prisma {
|
|
|
77016
76976
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
77017
76977
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77018
76978
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77019
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
77020
76979
|
created_at?: Date | string
|
|
77021
76980
|
updated_at?: Date | string
|
|
77022
76981
|
created_by: string
|
|
@@ -77055,7 +77014,6 @@ export namespace Prisma {
|
|
|
77055
77014
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
77056
77015
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77057
77016
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77058
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
77059
77017
|
created_at?: Date | string
|
|
77060
77018
|
updated_at?: Date | string
|
|
77061
77019
|
created_by: string
|
|
@@ -77090,7 +77048,6 @@ export namespace Prisma {
|
|
|
77090
77048
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
77091
77049
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77092
77050
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77093
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
77094
77051
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77095
77052
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77096
77053
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -77129,7 +77086,6 @@ export namespace Prisma {
|
|
|
77129
77086
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
77130
77087
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77131
77088
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77132
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
77133
77089
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77134
77090
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77135
77091
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -77166,7 +77122,6 @@ export namespace Prisma {
|
|
|
77166
77122
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
77167
77123
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77168
77124
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77169
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
77170
77125
|
created_at?: Date | string
|
|
77171
77126
|
updated_at?: Date | string
|
|
77172
77127
|
created_by: string
|
|
@@ -77187,7 +77142,6 @@ export namespace Prisma {
|
|
|
77187
77142
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
77188
77143
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77189
77144
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77190
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
77191
77145
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77192
77146
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77193
77147
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -77209,7 +77163,6 @@ export namespace Prisma {
|
|
|
77209
77163
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
77210
77164
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77211
77165
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77212
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
77213
77166
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77214
77167
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77215
77168
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -77747,12 +77700,12 @@ export namespace Prisma {
|
|
|
77747
77700
|
|
|
77748
77701
|
export type OngoingEvaluationCreateInput = {
|
|
77749
77702
|
id?: string
|
|
77750
|
-
is_committed?: boolean | null
|
|
77751
77703
|
assignment_id?: string | null
|
|
77752
77704
|
state?: $Enums.OngoingEvaluationState | null
|
|
77753
77705
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
77754
77706
|
comments?: string | null
|
|
77755
77707
|
completed_at?: Date | string | null
|
|
77708
|
+
is_committed?: boolean | null
|
|
77756
77709
|
title?: string | null
|
|
77757
77710
|
description?: string | null
|
|
77758
77711
|
order_no?: number | null
|
|
@@ -77777,7 +77730,7 @@ export namespace Prisma {
|
|
|
77777
77730
|
candidate?: UserCreateNestedOneWithoutOngoing_evaluationsInput
|
|
77778
77731
|
resume?: ResumeCreateNestedOneWithoutOngoing_evaluationsInput
|
|
77779
77732
|
organisation?: OrganisationCreateNestedOneWithoutOngoing_evaluationsInput
|
|
77780
|
-
evaluation_plan
|
|
77733
|
+
evaluation_plan: EvaluationPlanCreateNestedOneWithoutOngoing_evaluationsInput
|
|
77781
77734
|
interview?: InterviewCreateNestedOneWithoutOngoing_evaluationInput
|
|
77782
77735
|
assignment?: AssignmentCreateNestedOneWithoutOngoing_evaluationInput
|
|
77783
77736
|
assessment?: AssessmentCreateNestedOneWithoutOngoingEvaluationInput
|
|
@@ -77790,8 +77743,7 @@ export namespace Prisma {
|
|
|
77790
77743
|
candidate_id: string
|
|
77791
77744
|
resume_id: string
|
|
77792
77745
|
job_description_id: string
|
|
77793
|
-
evaluation_plan_id
|
|
77794
|
-
is_committed?: boolean | null
|
|
77746
|
+
evaluation_plan_id: string
|
|
77795
77747
|
interview_id?: string | null
|
|
77796
77748
|
assignment_id?: string | null
|
|
77797
77749
|
assessment_id?: string | null
|
|
@@ -77799,6 +77751,7 @@ export namespace Prisma {
|
|
|
77799
77751
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
77800
77752
|
comments?: string | null
|
|
77801
77753
|
completed_at?: Date | string | null
|
|
77754
|
+
is_committed?: boolean | null
|
|
77802
77755
|
title?: string | null
|
|
77803
77756
|
description?: string | null
|
|
77804
77757
|
order_no?: number | null
|
|
@@ -77823,12 +77776,12 @@ export namespace Prisma {
|
|
|
77823
77776
|
|
|
77824
77777
|
export type OngoingEvaluationUpdateInput = {
|
|
77825
77778
|
id?: StringFieldUpdateOperationsInput | string
|
|
77826
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77827
77779
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77828
77780
|
state?: NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput | $Enums.OngoingEvaluationState | null
|
|
77829
77781
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
77830
77782
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77831
77783
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
77784
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77832
77785
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77833
77786
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77834
77787
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -77853,7 +77806,7 @@ export namespace Prisma {
|
|
|
77853
77806
|
candidate?: UserUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
77854
77807
|
resume?: ResumeUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
77855
77808
|
organisation?: OrganisationUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
77856
|
-
evaluation_plan?:
|
|
77809
|
+
evaluation_plan?: EvaluationPlanUpdateOneRequiredWithoutOngoing_evaluationsNestedInput
|
|
77857
77810
|
interview?: InterviewUpdateOneWithoutOngoing_evaluationNestedInput
|
|
77858
77811
|
assignment?: AssignmentUpdateOneWithoutOngoing_evaluationNestedInput
|
|
77859
77812
|
assessment?: AssessmentUpdateOneWithoutOngoingEvaluationNestedInput
|
|
@@ -77866,8 +77819,7 @@ export namespace Prisma {
|
|
|
77866
77819
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
77867
77820
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
77868
77821
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
77869
|
-
evaluation_plan_id?:
|
|
77870
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77822
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
77871
77823
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77872
77824
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77873
77825
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -77875,6 +77827,7 @@ export namespace Prisma {
|
|
|
77875
77827
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
77876
77828
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77877
77829
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
77830
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77878
77831
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77879
77832
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77880
77833
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -77904,8 +77857,7 @@ export namespace Prisma {
|
|
|
77904
77857
|
candidate_id: string
|
|
77905
77858
|
resume_id: string
|
|
77906
77859
|
job_description_id: string
|
|
77907
|
-
evaluation_plan_id
|
|
77908
|
-
is_committed?: boolean | null
|
|
77860
|
+
evaluation_plan_id: string
|
|
77909
77861
|
interview_id?: string | null
|
|
77910
77862
|
assignment_id?: string | null
|
|
77911
77863
|
assessment_id?: string | null
|
|
@@ -77913,6 +77865,7 @@ export namespace Prisma {
|
|
|
77913
77865
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
77914
77866
|
comments?: string | null
|
|
77915
77867
|
completed_at?: Date | string | null
|
|
77868
|
+
is_committed?: boolean | null
|
|
77916
77869
|
title?: string | null
|
|
77917
77870
|
description?: string | null
|
|
77918
77871
|
order_no?: number | null
|
|
@@ -77936,12 +77889,12 @@ export namespace Prisma {
|
|
|
77936
77889
|
|
|
77937
77890
|
export type OngoingEvaluationUpdateManyMutationInput = {
|
|
77938
77891
|
id?: StringFieldUpdateOperationsInput | string
|
|
77939
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77940
77892
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77941
77893
|
state?: NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput | $Enums.OngoingEvaluationState | null
|
|
77942
77894
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
77943
77895
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77944
77896
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
77897
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77945
77898
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77946
77899
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77947
77900
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -77970,8 +77923,7 @@ export namespace Prisma {
|
|
|
77970
77923
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
77971
77924
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
77972
77925
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
77973
|
-
evaluation_plan_id?:
|
|
77974
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77926
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
77975
77927
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77976
77928
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77977
77929
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -77979,6 +77931,7 @@ export namespace Prisma {
|
|
|
77979
77931
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
77980
77932
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77981
77933
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
77934
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77982
77935
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77983
77936
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77984
77937
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -82536,7 +82489,6 @@ export namespace Prisma {
|
|
|
82536
82489
|
summary?: SortOrder
|
|
82537
82490
|
ai_insight?: SortOrder
|
|
82538
82491
|
job_fit_comparison?: SortOrder
|
|
82539
|
-
recommendation_config?: SortOrder
|
|
82540
82492
|
created_at?: SortOrder
|
|
82541
82493
|
updated_at?: SortOrder
|
|
82542
82494
|
created_by?: SortOrder
|
|
@@ -82844,11 +82796,6 @@ export namespace Prisma {
|
|
|
82844
82796
|
is_active?: SortOrder
|
|
82845
82797
|
}
|
|
82846
82798
|
|
|
82847
|
-
export type BoolNullableFilter<$PrismaModel = never> = {
|
|
82848
|
-
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
82849
|
-
not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
|
|
82850
|
-
}
|
|
82851
|
-
|
|
82852
82799
|
export type EnumOngoingEvaluationStateNullableFilter<$PrismaModel = never> = {
|
|
82853
82800
|
equals?: $Enums.OngoingEvaluationState | EnumOngoingEvaluationStateFieldRefInput<$PrismaModel> | null
|
|
82854
82801
|
in?: $Enums.OngoingEvaluationState[] | ListEnumOngoingEvaluationStateFieldRefInput<$PrismaModel> | null
|
|
@@ -82863,6 +82810,11 @@ export namespace Prisma {
|
|
|
82863
82810
|
not?: NestedEnumOngoingEvaluationRoundStatusNullableFilter<$PrismaModel> | $Enums.OngoingEvaluationRoundStatus | null
|
|
82864
82811
|
}
|
|
82865
82812
|
|
|
82813
|
+
export type BoolNullableFilter<$PrismaModel = never> = {
|
|
82814
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
82815
|
+
not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
|
|
82816
|
+
}
|
|
82817
|
+
|
|
82866
82818
|
export type EnumRoundTypeNullableFilter<$PrismaModel = never> = {
|
|
82867
82819
|
equals?: $Enums.RoundType | EnumRoundTypeFieldRefInput<$PrismaModel> | null
|
|
82868
82820
|
in?: $Enums.RoundType[] | ListEnumRoundTypeFieldRefInput<$PrismaModel> | null
|
|
@@ -82875,6 +82827,11 @@ export namespace Prisma {
|
|
|
82875
82827
|
isNot?: JobDescriptionWhereInput | null
|
|
82876
82828
|
}
|
|
82877
82829
|
|
|
82830
|
+
export type EvaluationPlanScalarRelationFilter = {
|
|
82831
|
+
is?: EvaluationPlanWhereInput
|
|
82832
|
+
isNot?: EvaluationPlanWhereInput
|
|
82833
|
+
}
|
|
82834
|
+
|
|
82878
82835
|
export type InterviewNullableScalarRelationFilter = {
|
|
82879
82836
|
is?: InterviewWhereInput | null
|
|
82880
82837
|
isNot?: InterviewWhereInput | null
|
|
@@ -82903,7 +82860,6 @@ export namespace Prisma {
|
|
|
82903
82860
|
resume_id?: SortOrder
|
|
82904
82861
|
job_description_id?: SortOrder
|
|
82905
82862
|
evaluation_plan_id?: SortOrder
|
|
82906
|
-
is_committed?: SortOrder
|
|
82907
82863
|
interview_id?: SortOrder
|
|
82908
82864
|
assignment_id?: SortOrder
|
|
82909
82865
|
assessment_id?: SortOrder
|
|
@@ -82911,6 +82867,7 @@ export namespace Prisma {
|
|
|
82911
82867
|
round_status?: SortOrder
|
|
82912
82868
|
comments?: SortOrder
|
|
82913
82869
|
completed_at?: SortOrder
|
|
82870
|
+
is_committed?: SortOrder
|
|
82914
82871
|
title?: SortOrder
|
|
82915
82872
|
description?: SortOrder
|
|
82916
82873
|
order_no?: SortOrder
|
|
@@ -82946,7 +82903,6 @@ export namespace Prisma {
|
|
|
82946
82903
|
resume_id?: SortOrder
|
|
82947
82904
|
job_description_id?: SortOrder
|
|
82948
82905
|
evaluation_plan_id?: SortOrder
|
|
82949
|
-
is_committed?: SortOrder
|
|
82950
82906
|
interview_id?: SortOrder
|
|
82951
82907
|
assignment_id?: SortOrder
|
|
82952
82908
|
assessment_id?: SortOrder
|
|
@@ -82954,6 +82910,7 @@ export namespace Prisma {
|
|
|
82954
82910
|
round_status?: SortOrder
|
|
82955
82911
|
comments?: SortOrder
|
|
82956
82912
|
completed_at?: SortOrder
|
|
82913
|
+
is_committed?: SortOrder
|
|
82957
82914
|
title?: SortOrder
|
|
82958
82915
|
description?: SortOrder
|
|
82959
82916
|
order_no?: SortOrder
|
|
@@ -82981,7 +82938,6 @@ export namespace Prisma {
|
|
|
82981
82938
|
resume_id?: SortOrder
|
|
82982
82939
|
job_description_id?: SortOrder
|
|
82983
82940
|
evaluation_plan_id?: SortOrder
|
|
82984
|
-
is_committed?: SortOrder
|
|
82985
82941
|
interview_id?: SortOrder
|
|
82986
82942
|
assignment_id?: SortOrder
|
|
82987
82943
|
assessment_id?: SortOrder
|
|
@@ -82989,6 +82945,7 @@ export namespace Prisma {
|
|
|
82989
82945
|
round_status?: SortOrder
|
|
82990
82946
|
comments?: SortOrder
|
|
82991
82947
|
completed_at?: SortOrder
|
|
82948
|
+
is_committed?: SortOrder
|
|
82992
82949
|
title?: SortOrder
|
|
82993
82950
|
description?: SortOrder
|
|
82994
82951
|
order_no?: SortOrder
|
|
@@ -83014,14 +82971,6 @@ export namespace Prisma {
|
|
|
83014
82971
|
deadline?: SortOrder
|
|
83015
82972
|
}
|
|
83016
82973
|
|
|
83017
|
-
export type BoolNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
83018
|
-
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
83019
|
-
not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
|
|
83020
|
-
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
83021
|
-
_min?: NestedBoolNullableFilter<$PrismaModel>
|
|
83022
|
-
_max?: NestedBoolNullableFilter<$PrismaModel>
|
|
83023
|
-
}
|
|
83024
|
-
|
|
83025
82974
|
export type EnumOngoingEvaluationStateNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
83026
82975
|
equals?: $Enums.OngoingEvaluationState | EnumOngoingEvaluationStateFieldRefInput<$PrismaModel> | null
|
|
83027
82976
|
in?: $Enums.OngoingEvaluationState[] | ListEnumOngoingEvaluationStateFieldRefInput<$PrismaModel> | null
|
|
@@ -83042,6 +82991,14 @@ export namespace Prisma {
|
|
|
83042
82991
|
_max?: NestedEnumOngoingEvaluationRoundStatusNullableFilter<$PrismaModel>
|
|
83043
82992
|
}
|
|
83044
82993
|
|
|
82994
|
+
export type BoolNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
82995
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
82996
|
+
not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
|
|
82997
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
82998
|
+
_min?: NestedBoolNullableFilter<$PrismaModel>
|
|
82999
|
+
_max?: NestedBoolNullableFilter<$PrismaModel>
|
|
83000
|
+
}
|
|
83001
|
+
|
|
83045
83002
|
export type EnumRoundTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
83046
83003
|
equals?: $Enums.RoundType | EnumRoundTypeFieldRefInput<$PrismaModel> | null
|
|
83047
83004
|
in?: $Enums.RoundType[] | ListEnumRoundTypeFieldRefInput<$PrismaModel> | null
|
|
@@ -87160,10 +87117,6 @@ export namespace Prisma {
|
|
|
87160
87117
|
connect?: AssignmentWhereUniqueInput
|
|
87161
87118
|
}
|
|
87162
87119
|
|
|
87163
|
-
export type NullableBoolFieldUpdateOperationsInput = {
|
|
87164
|
-
set?: boolean | null
|
|
87165
|
-
}
|
|
87166
|
-
|
|
87167
87120
|
export type NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput = {
|
|
87168
87121
|
set?: $Enums.OngoingEvaluationState | null
|
|
87169
87122
|
}
|
|
@@ -87172,6 +87125,10 @@ export namespace Prisma {
|
|
|
87172
87125
|
set?: $Enums.OngoingEvaluationRoundStatus | null
|
|
87173
87126
|
}
|
|
87174
87127
|
|
|
87128
|
+
export type NullableBoolFieldUpdateOperationsInput = {
|
|
87129
|
+
set?: boolean | null
|
|
87130
|
+
}
|
|
87131
|
+
|
|
87175
87132
|
export type OngoingEvaluationUpdatetopicsInput = {
|
|
87176
87133
|
set?: string[]
|
|
87177
87134
|
push?: string | string[]
|
|
@@ -87229,12 +87186,10 @@ export namespace Prisma {
|
|
|
87229
87186
|
update?: XOR<XOR<OrganisationUpdateToOneWithWhereWithoutOngoing_evaluationsInput, OrganisationUpdateWithoutOngoing_evaluationsInput>, OrganisationUncheckedUpdateWithoutOngoing_evaluationsInput>
|
|
87230
87187
|
}
|
|
87231
87188
|
|
|
87232
|
-
export type
|
|
87189
|
+
export type EvaluationPlanUpdateOneRequiredWithoutOngoing_evaluationsNestedInput = {
|
|
87233
87190
|
create?: XOR<EvaluationPlanCreateWithoutOngoing_evaluationsInput, EvaluationPlanUncheckedCreateWithoutOngoing_evaluationsInput>
|
|
87234
87191
|
connectOrCreate?: EvaluationPlanCreateOrConnectWithoutOngoing_evaluationsInput
|
|
87235
87192
|
upsert?: EvaluationPlanUpsertWithoutOngoing_evaluationsInput
|
|
87236
|
-
disconnect?: EvaluationPlanWhereInput | boolean
|
|
87237
|
-
delete?: EvaluationPlanWhereInput | boolean
|
|
87238
87193
|
connect?: EvaluationPlanWhereUniqueInput
|
|
87239
87194
|
update?: XOR<XOR<EvaluationPlanUpdateToOneWithWhereWithoutOngoing_evaluationsInput, EvaluationPlanUpdateWithoutOngoing_evaluationsInput>, EvaluationPlanUncheckedUpdateWithoutOngoing_evaluationsInput>
|
|
87240
87195
|
}
|
|
@@ -90910,11 +90865,6 @@ export namespace Prisma {
|
|
|
90910
90865
|
_max?: NestedEnumJobProfileStatusFilter<$PrismaModel>
|
|
90911
90866
|
}
|
|
90912
90867
|
|
|
90913
|
-
export type NestedBoolNullableFilter<$PrismaModel = never> = {
|
|
90914
|
-
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
90915
|
-
not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
|
|
90916
|
-
}
|
|
90917
|
-
|
|
90918
90868
|
export type NestedEnumOngoingEvaluationStateNullableFilter<$PrismaModel = never> = {
|
|
90919
90869
|
equals?: $Enums.OngoingEvaluationState | EnumOngoingEvaluationStateFieldRefInput<$PrismaModel> | null
|
|
90920
90870
|
in?: $Enums.OngoingEvaluationState[] | ListEnumOngoingEvaluationStateFieldRefInput<$PrismaModel> | null
|
|
@@ -90929,6 +90879,11 @@ export namespace Prisma {
|
|
|
90929
90879
|
not?: NestedEnumOngoingEvaluationRoundStatusNullableFilter<$PrismaModel> | $Enums.OngoingEvaluationRoundStatus | null
|
|
90930
90880
|
}
|
|
90931
90881
|
|
|
90882
|
+
export type NestedBoolNullableFilter<$PrismaModel = never> = {
|
|
90883
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
90884
|
+
not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
|
|
90885
|
+
}
|
|
90886
|
+
|
|
90932
90887
|
export type NestedEnumRoundTypeNullableFilter<$PrismaModel = never> = {
|
|
90933
90888
|
equals?: $Enums.RoundType | EnumRoundTypeFieldRefInput<$PrismaModel> | null
|
|
90934
90889
|
in?: $Enums.RoundType[] | ListEnumRoundTypeFieldRefInput<$PrismaModel> | null
|
|
@@ -90936,14 +90891,6 @@ export namespace Prisma {
|
|
|
90936
90891
|
not?: NestedEnumRoundTypeNullableFilter<$PrismaModel> | $Enums.RoundType | null
|
|
90937
90892
|
}
|
|
90938
90893
|
|
|
90939
|
-
export type NestedBoolNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
90940
|
-
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
90941
|
-
not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
|
|
90942
|
-
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
90943
|
-
_min?: NestedBoolNullableFilter<$PrismaModel>
|
|
90944
|
-
_max?: NestedBoolNullableFilter<$PrismaModel>
|
|
90945
|
-
}
|
|
90946
|
-
|
|
90947
90894
|
export type NestedEnumOngoingEvaluationStateNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
90948
90895
|
equals?: $Enums.OngoingEvaluationState | EnumOngoingEvaluationStateFieldRefInput<$PrismaModel> | null
|
|
90949
90896
|
in?: $Enums.OngoingEvaluationState[] | ListEnumOngoingEvaluationStateFieldRefInput<$PrismaModel> | null
|
|
@@ -90964,6 +90911,14 @@ export namespace Prisma {
|
|
|
90964
90911
|
_max?: NestedEnumOngoingEvaluationRoundStatusNullableFilter<$PrismaModel>
|
|
90965
90912
|
}
|
|
90966
90913
|
|
|
90914
|
+
export type NestedBoolNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
90915
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
90916
|
+
not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
|
|
90917
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
90918
|
+
_min?: NestedBoolNullableFilter<$PrismaModel>
|
|
90919
|
+
_max?: NestedBoolNullableFilter<$PrismaModel>
|
|
90920
|
+
}
|
|
90921
|
+
|
|
90967
90922
|
export type NestedEnumRoundTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
90968
90923
|
equals?: $Enums.RoundType | EnumRoundTypeFieldRefInput<$PrismaModel> | null
|
|
90969
90924
|
in?: $Enums.RoundType[] | ListEnumRoundTypeFieldRefInput<$PrismaModel> | null
|
|
@@ -93283,7 +93238,6 @@ export namespace Prisma {
|
|
|
93283
93238
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
93284
93239
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
93285
93240
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
93286
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
93287
93241
|
created_at?: Date | string
|
|
93288
93242
|
updated_at?: Date | string
|
|
93289
93243
|
created_by: string
|
|
@@ -93321,7 +93275,6 @@ export namespace Prisma {
|
|
|
93321
93275
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
93322
93276
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
93323
93277
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
93324
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
93325
93278
|
created_at?: Date | string
|
|
93326
93279
|
updated_at?: Date | string
|
|
93327
93280
|
created_by: string
|
|
@@ -93592,12 +93545,12 @@ export namespace Prisma {
|
|
|
93592
93545
|
|
|
93593
93546
|
export type OngoingEvaluationCreateWithoutApplicationInput = {
|
|
93594
93547
|
id?: string
|
|
93595
|
-
is_committed?: boolean | null
|
|
93596
93548
|
assignment_id?: string | null
|
|
93597
93549
|
state?: $Enums.OngoingEvaluationState | null
|
|
93598
93550
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
93599
93551
|
comments?: string | null
|
|
93600
93552
|
completed_at?: Date | string | null
|
|
93553
|
+
is_committed?: boolean | null
|
|
93601
93554
|
title?: string | null
|
|
93602
93555
|
description?: string | null
|
|
93603
93556
|
order_no?: number | null
|
|
@@ -93621,7 +93574,7 @@ export namespace Prisma {
|
|
|
93621
93574
|
candidate?: UserCreateNestedOneWithoutOngoing_evaluationsInput
|
|
93622
93575
|
resume?: ResumeCreateNestedOneWithoutOngoing_evaluationsInput
|
|
93623
93576
|
organisation?: OrganisationCreateNestedOneWithoutOngoing_evaluationsInput
|
|
93624
|
-
evaluation_plan
|
|
93577
|
+
evaluation_plan: EvaluationPlanCreateNestedOneWithoutOngoing_evaluationsInput
|
|
93625
93578
|
interview?: InterviewCreateNestedOneWithoutOngoing_evaluationInput
|
|
93626
93579
|
assignment?: AssignmentCreateNestedOneWithoutOngoing_evaluationInput
|
|
93627
93580
|
assessment?: AssessmentCreateNestedOneWithoutOngoingEvaluationInput
|
|
@@ -93633,8 +93586,7 @@ export namespace Prisma {
|
|
|
93633
93586
|
candidate_id: string
|
|
93634
93587
|
resume_id: string
|
|
93635
93588
|
job_description_id: string
|
|
93636
|
-
evaluation_plan_id
|
|
93637
|
-
is_committed?: boolean | null
|
|
93589
|
+
evaluation_plan_id: string
|
|
93638
93590
|
interview_id?: string | null
|
|
93639
93591
|
assignment_id?: string | null
|
|
93640
93592
|
assessment_id?: string | null
|
|
@@ -93642,6 +93594,7 @@ export namespace Prisma {
|
|
|
93642
93594
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
93643
93595
|
comments?: string | null
|
|
93644
93596
|
completed_at?: Date | string | null
|
|
93597
|
+
is_committed?: boolean | null
|
|
93645
93598
|
title?: string | null
|
|
93646
93599
|
description?: string | null
|
|
93647
93600
|
order_no?: number | null
|
|
@@ -94130,7 +94083,6 @@ export namespace Prisma {
|
|
|
94130
94083
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94131
94084
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
94132
94085
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94133
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
94134
94086
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94135
94087
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94136
94088
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -94168,7 +94120,6 @@ export namespace Prisma {
|
|
|
94168
94120
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94169
94121
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
94170
94122
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94171
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
94172
94123
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94173
94124
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94174
94125
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -94403,8 +94354,7 @@ export namespace Prisma {
|
|
|
94403
94354
|
candidate_id?: StringFilter<"OngoingEvaluation"> | string
|
|
94404
94355
|
resume_id?: StringFilter<"OngoingEvaluation"> | string
|
|
94405
94356
|
job_description_id?: StringFilter<"OngoingEvaluation"> | string
|
|
94406
|
-
evaluation_plan_id?:
|
|
94407
|
-
is_committed?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
|
|
94357
|
+
evaluation_plan_id?: StringFilter<"OngoingEvaluation"> | string
|
|
94408
94358
|
interview_id?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
94409
94359
|
assignment_id?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
94410
94360
|
assessment_id?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
@@ -94412,6 +94362,7 @@ export namespace Prisma {
|
|
|
94412
94362
|
round_status?: EnumOngoingEvaluationRoundStatusNullableFilter<"OngoingEvaluation"> | $Enums.OngoingEvaluationRoundStatus | null
|
|
94413
94363
|
comments?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
94414
94364
|
completed_at?: DateTimeNullableFilter<"OngoingEvaluation"> | Date | string | null
|
|
94365
|
+
is_committed?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
|
|
94415
94366
|
title?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
94416
94367
|
description?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
94417
94368
|
order_no?: IntNullableFilter<"OngoingEvaluation"> | number | null
|
|
@@ -94507,7 +94458,6 @@ export namespace Prisma {
|
|
|
94507
94458
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94508
94459
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
94509
94460
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94510
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
94511
94461
|
created_at?: Date | string
|
|
94512
94462
|
updated_at?: Date | string
|
|
94513
94463
|
created_by: string
|
|
@@ -94545,7 +94495,6 @@ export namespace Prisma {
|
|
|
94545
94495
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94546
94496
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
94547
94497
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94548
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
94549
94498
|
created_at?: Date | string
|
|
94550
94499
|
updated_at?: Date | string
|
|
94551
94500
|
created_by: string
|
|
@@ -94825,7 +94774,6 @@ export namespace Prisma {
|
|
|
94825
94774
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94826
94775
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
94827
94776
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94828
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
94829
94777
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94830
94778
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94831
94779
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -94863,7 +94811,6 @@ export namespace Prisma {
|
|
|
94863
94811
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94864
94812
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
94865
94813
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94866
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
94867
94814
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94868
94815
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94869
94816
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -95749,12 +95696,12 @@ export namespace Prisma {
|
|
|
95749
95696
|
|
|
95750
95697
|
export type OngoingEvaluationCreateWithoutAssessmentInput = {
|
|
95751
95698
|
id?: string
|
|
95752
|
-
is_committed?: boolean | null
|
|
95753
95699
|
assignment_id?: string | null
|
|
95754
95700
|
state?: $Enums.OngoingEvaluationState | null
|
|
95755
95701
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
95756
95702
|
comments?: string | null
|
|
95757
95703
|
completed_at?: Date | string | null
|
|
95704
|
+
is_committed?: boolean | null
|
|
95758
95705
|
title?: string | null
|
|
95759
95706
|
description?: string | null
|
|
95760
95707
|
order_no?: number | null
|
|
@@ -95779,7 +95726,7 @@ export namespace Prisma {
|
|
|
95779
95726
|
candidate?: UserCreateNestedOneWithoutOngoing_evaluationsInput
|
|
95780
95727
|
resume?: ResumeCreateNestedOneWithoutOngoing_evaluationsInput
|
|
95781
95728
|
organisation?: OrganisationCreateNestedOneWithoutOngoing_evaluationsInput
|
|
95782
|
-
evaluation_plan
|
|
95729
|
+
evaluation_plan: EvaluationPlanCreateNestedOneWithoutOngoing_evaluationsInput
|
|
95783
95730
|
interview?: InterviewCreateNestedOneWithoutOngoing_evaluationInput
|
|
95784
95731
|
assignment?: AssignmentCreateNestedOneWithoutOngoing_evaluationInput
|
|
95785
95732
|
}
|
|
@@ -95791,14 +95738,14 @@ export namespace Prisma {
|
|
|
95791
95738
|
candidate_id: string
|
|
95792
95739
|
resume_id: string
|
|
95793
95740
|
job_description_id: string
|
|
95794
|
-
evaluation_plan_id
|
|
95795
|
-
is_committed?: boolean | null
|
|
95741
|
+
evaluation_plan_id: string
|
|
95796
95742
|
interview_id?: string | null
|
|
95797
95743
|
assignment_id?: string | null
|
|
95798
95744
|
state?: $Enums.OngoingEvaluationState | null
|
|
95799
95745
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
95800
95746
|
comments?: string | null
|
|
95801
95747
|
completed_at?: Date | string | null
|
|
95748
|
+
is_committed?: boolean | null
|
|
95802
95749
|
title?: string | null
|
|
95803
95750
|
description?: string | null
|
|
95804
95751
|
order_no?: number | null
|
|
@@ -96489,12 +96436,12 @@ export namespace Prisma {
|
|
|
96489
96436
|
|
|
96490
96437
|
export type OngoingEvaluationUpdateWithoutAssessmentInput = {
|
|
96491
96438
|
id?: StringFieldUpdateOperationsInput | string
|
|
96492
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
96493
96439
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96494
96440
|
state?: NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput | $Enums.OngoingEvaluationState | null
|
|
96495
96441
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
96496
96442
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96497
96443
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
96444
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
96498
96445
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96499
96446
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96500
96447
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -96519,7 +96466,7 @@ export namespace Prisma {
|
|
|
96519
96466
|
candidate?: UserUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
96520
96467
|
resume?: ResumeUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
96521
96468
|
organisation?: OrganisationUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
96522
|
-
evaluation_plan?:
|
|
96469
|
+
evaluation_plan?: EvaluationPlanUpdateOneRequiredWithoutOngoing_evaluationsNestedInput
|
|
96523
96470
|
interview?: InterviewUpdateOneWithoutOngoing_evaluationNestedInput
|
|
96524
96471
|
assignment?: AssignmentUpdateOneWithoutOngoing_evaluationNestedInput
|
|
96525
96472
|
}
|
|
@@ -96531,14 +96478,14 @@ export namespace Prisma {
|
|
|
96531
96478
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
96532
96479
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
96533
96480
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
96534
|
-
evaluation_plan_id?:
|
|
96535
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
96481
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
96536
96482
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96537
96483
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96538
96484
|
state?: NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput | $Enums.OngoingEvaluationState | null
|
|
96539
96485
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
96540
96486
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96541
96487
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
96488
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
96542
96489
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96543
96490
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96544
96491
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -97651,7 +97598,6 @@ export namespace Prisma {
|
|
|
97651
97598
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
97652
97599
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
97653
97600
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
97654
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
97655
97601
|
created_at?: Date | string
|
|
97656
97602
|
updated_at?: Date | string
|
|
97657
97603
|
created_by: string
|
|
@@ -97689,7 +97635,6 @@ export namespace Prisma {
|
|
|
97689
97635
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
97690
97636
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
97691
97637
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
97692
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
97693
97638
|
created_at?: Date | string
|
|
97694
97639
|
updated_at?: Date | string
|
|
97695
97640
|
created_by: string
|
|
@@ -97784,12 +97729,12 @@ export namespace Prisma {
|
|
|
97784
97729
|
|
|
97785
97730
|
export type OngoingEvaluationCreateWithoutAssignmentInput = {
|
|
97786
97731
|
id?: string
|
|
97787
|
-
is_committed?: boolean | null
|
|
97788
97732
|
assignment_id?: string | null
|
|
97789
97733
|
state?: $Enums.OngoingEvaluationState | null
|
|
97790
97734
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
97791
97735
|
comments?: string | null
|
|
97792
97736
|
completed_at?: Date | string | null
|
|
97737
|
+
is_committed?: boolean | null
|
|
97793
97738
|
title?: string | null
|
|
97794
97739
|
description?: string | null
|
|
97795
97740
|
order_no?: number | null
|
|
@@ -97814,7 +97759,7 @@ export namespace Prisma {
|
|
|
97814
97759
|
candidate?: UserCreateNestedOneWithoutOngoing_evaluationsInput
|
|
97815
97760
|
resume?: ResumeCreateNestedOneWithoutOngoing_evaluationsInput
|
|
97816
97761
|
organisation?: OrganisationCreateNestedOneWithoutOngoing_evaluationsInput
|
|
97817
|
-
evaluation_plan
|
|
97762
|
+
evaluation_plan: EvaluationPlanCreateNestedOneWithoutOngoing_evaluationsInput
|
|
97818
97763
|
interview?: InterviewCreateNestedOneWithoutOngoing_evaluationInput
|
|
97819
97764
|
assessment?: AssessmentCreateNestedOneWithoutOngoingEvaluationInput
|
|
97820
97765
|
}
|
|
@@ -97826,8 +97771,7 @@ export namespace Prisma {
|
|
|
97826
97771
|
candidate_id: string
|
|
97827
97772
|
resume_id: string
|
|
97828
97773
|
job_description_id: string
|
|
97829
|
-
evaluation_plan_id
|
|
97830
|
-
is_committed?: boolean | null
|
|
97774
|
+
evaluation_plan_id: string
|
|
97831
97775
|
interview_id?: string | null
|
|
97832
97776
|
assignment_id?: string | null
|
|
97833
97777
|
assessment_id?: string | null
|
|
@@ -97835,6 +97779,7 @@ export namespace Prisma {
|
|
|
97835
97779
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
97836
97780
|
comments?: string | null
|
|
97837
97781
|
completed_at?: Date | string | null
|
|
97782
|
+
is_committed?: boolean | null
|
|
97838
97783
|
title?: string | null
|
|
97839
97784
|
description?: string | null
|
|
97840
97785
|
order_no?: number | null
|
|
@@ -98317,7 +98262,6 @@ export namespace Prisma {
|
|
|
98317
98262
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98318
98263
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
98319
98264
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
98320
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
98321
98265
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98322
98266
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98323
98267
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98355,7 +98299,6 @@ export namespace Prisma {
|
|
|
98355
98299
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98356
98300
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
98357
98301
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
98358
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
98359
98302
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98360
98303
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98361
98304
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98462,12 +98405,12 @@ export namespace Prisma {
|
|
|
98462
98405
|
|
|
98463
98406
|
export type OngoingEvaluationUpdateWithoutAssignmentInput = {
|
|
98464
98407
|
id?: StringFieldUpdateOperationsInput | string
|
|
98465
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98466
98408
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98467
98409
|
state?: NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput | $Enums.OngoingEvaluationState | null
|
|
98468
98410
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
98469
98411
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98470
98412
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98413
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98471
98414
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98472
98415
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98473
98416
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -98492,7 +98435,7 @@ export namespace Prisma {
|
|
|
98492
98435
|
candidate?: UserUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
98493
98436
|
resume?: ResumeUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
98494
98437
|
organisation?: OrganisationUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
98495
|
-
evaluation_plan?:
|
|
98438
|
+
evaluation_plan?: EvaluationPlanUpdateOneRequiredWithoutOngoing_evaluationsNestedInput
|
|
98496
98439
|
interview?: InterviewUpdateOneWithoutOngoing_evaluationNestedInput
|
|
98497
98440
|
assessment?: AssessmentUpdateOneWithoutOngoingEvaluationNestedInput
|
|
98498
98441
|
}
|
|
@@ -98504,8 +98447,7 @@ export namespace Prisma {
|
|
|
98504
98447
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
98505
98448
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
98506
98449
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
98507
|
-
evaluation_plan_id?:
|
|
98508
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98450
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
98509
98451
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98510
98452
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98511
98453
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -98513,6 +98455,7 @@ export namespace Prisma {
|
|
|
98513
98455
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
98514
98456
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98515
98457
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98458
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98516
98459
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98517
98460
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98518
98461
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -98628,7 +98571,6 @@ export namespace Prisma {
|
|
|
98628
98571
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98629
98572
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
98630
98573
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
98631
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
98632
98574
|
created_at?: Date | string
|
|
98633
98575
|
updated_at?: Date | string
|
|
98634
98576
|
created_by: string
|
|
@@ -98666,7 +98608,6 @@ export namespace Prisma {
|
|
|
98666
98608
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98667
98609
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
98668
98610
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
98669
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
98670
98611
|
created_at?: Date | string
|
|
98671
98612
|
updated_at?: Date | string
|
|
98672
98613
|
created_by: string
|
|
@@ -98931,7 +98872,6 @@ export namespace Prisma {
|
|
|
98931
98872
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98932
98873
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
98933
98874
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
98934
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
98935
98875
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98936
98876
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98937
98877
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98969,7 +98909,6 @@ export namespace Prisma {
|
|
|
98969
98909
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98970
98910
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
98971
98911
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
98972
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
98973
98912
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98974
98913
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98975
98914
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99335,7 +99274,6 @@ export namespace Prisma {
|
|
|
99335
99274
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
99336
99275
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
99337
99276
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
99338
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
99339
99277
|
created_at?: Date | string
|
|
99340
99278
|
updated_at?: Date | string
|
|
99341
99279
|
created_by: string
|
|
@@ -99373,7 +99311,6 @@ export namespace Prisma {
|
|
|
99373
99311
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
99374
99312
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
99375
99313
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
99376
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
99377
99314
|
created_at?: Date | string
|
|
99378
99315
|
updated_at?: Date | string
|
|
99379
99316
|
created_by: string
|
|
@@ -99423,7 +99360,6 @@ export namespace Prisma {
|
|
|
99423
99360
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
99424
99361
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
99425
99362
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
99426
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
99427
99363
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99428
99364
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99429
99365
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99461,7 +99397,6 @@ export namespace Prisma {
|
|
|
99461
99397
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
99462
99398
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
99463
99399
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
99464
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
99465
99400
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99466
99401
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99467
99402
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100199,7 +100134,6 @@ export namespace Prisma {
|
|
|
100199
100134
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
100200
100135
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
100201
100136
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
100202
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
100203
100137
|
created_at?: Date | string
|
|
100204
100138
|
updated_at?: Date | string
|
|
100205
100139
|
created_by: string
|
|
@@ -100237,7 +100171,6 @@ export namespace Prisma {
|
|
|
100237
100171
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
100238
100172
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
100239
100173
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
100240
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
100241
100174
|
created_at?: Date | string
|
|
100242
100175
|
updated_at?: Date | string
|
|
100243
100176
|
created_by: string
|
|
@@ -100567,12 +100500,12 @@ export namespace Prisma {
|
|
|
100567
100500
|
|
|
100568
100501
|
export type OngoingEvaluationCreateWithoutEvaluation_planInput = {
|
|
100569
100502
|
id?: string
|
|
100570
|
-
is_committed?: boolean | null
|
|
100571
100503
|
assignment_id?: string | null
|
|
100572
100504
|
state?: $Enums.OngoingEvaluationState | null
|
|
100573
100505
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
100574
100506
|
comments?: string | null
|
|
100575
100507
|
completed_at?: Date | string | null
|
|
100508
|
+
is_committed?: boolean | null
|
|
100576
100509
|
title?: string | null
|
|
100577
100510
|
description?: string | null
|
|
100578
100511
|
order_no?: number | null
|
|
@@ -100609,7 +100542,6 @@ export namespace Prisma {
|
|
|
100609
100542
|
candidate_id: string
|
|
100610
100543
|
resume_id: string
|
|
100611
100544
|
job_description_id: string
|
|
100612
|
-
is_committed?: boolean | null
|
|
100613
100545
|
interview_id?: string | null
|
|
100614
100546
|
assignment_id?: string | null
|
|
100615
100547
|
assessment_id?: string | null
|
|
@@ -100617,6 +100549,7 @@ export namespace Prisma {
|
|
|
100617
100549
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
100618
100550
|
comments?: string | null
|
|
100619
100551
|
completed_at?: Date | string | null
|
|
100552
|
+
is_committed?: boolean | null
|
|
100620
100553
|
title?: string | null
|
|
100621
100554
|
description?: string | null
|
|
100622
100555
|
order_no?: number | null
|
|
@@ -100671,7 +100604,6 @@ export namespace Prisma {
|
|
|
100671
100604
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
100672
100605
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
100673
100606
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
100674
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
100675
100607
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100676
100608
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100677
100609
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100709,7 +100641,6 @@ export namespace Prisma {
|
|
|
100709
100641
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
100710
100642
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
100711
100643
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
100712
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
100713
100644
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100714
100645
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100715
100646
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101417,7 +101348,6 @@ export namespace Prisma {
|
|
|
101417
101348
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
101418
101349
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
101419
101350
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
101420
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
101421
101351
|
created_at?: Date | string
|
|
101422
101352
|
updated_at?: Date | string
|
|
101423
101353
|
created_by: string
|
|
@@ -101455,7 +101385,6 @@ export namespace Prisma {
|
|
|
101455
101385
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
101456
101386
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
101457
101387
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
101458
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
101459
101388
|
created_at?: Date | string
|
|
101460
101389
|
updated_at?: Date | string
|
|
101461
101390
|
created_by: string
|
|
@@ -101867,7 +101796,6 @@ export namespace Prisma {
|
|
|
101867
101796
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
101868
101797
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
101869
101798
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
101870
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
101871
101799
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101872
101800
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101873
101801
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101905,7 +101833,6 @@ export namespace Prisma {
|
|
|
101905
101833
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
101906
101834
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
101907
101835
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
101908
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
101909
101836
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101910
101837
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101911
101838
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -102482,7 +102409,6 @@ export namespace Prisma {
|
|
|
102482
102409
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
102483
102410
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
102484
102411
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
102485
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
102486
102412
|
created_at?: Date | string
|
|
102487
102413
|
updated_at?: Date | string
|
|
102488
102414
|
created_by: string
|
|
@@ -102520,7 +102446,6 @@ export namespace Prisma {
|
|
|
102520
102446
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
102521
102447
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
102522
102448
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
102523
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
102524
102449
|
created_at?: Date | string
|
|
102525
102450
|
updated_at?: Date | string
|
|
102526
102451
|
created_by: string
|
|
@@ -102570,7 +102495,6 @@ export namespace Prisma {
|
|
|
102570
102495
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
102571
102496
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
102572
102497
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
102573
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
102574
102498
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102575
102499
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102576
102500
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -102608,7 +102532,6 @@ export namespace Prisma {
|
|
|
102608
102532
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
102609
102533
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
102610
102534
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
102611
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
102612
102535
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102613
102536
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102614
102537
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -103191,7 +103114,6 @@ export namespace Prisma {
|
|
|
103191
103114
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
103192
103115
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
103193
103116
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
103194
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
103195
103117
|
created_at?: Date | string
|
|
103196
103118
|
updated_at?: Date | string
|
|
103197
103119
|
created_by: string
|
|
@@ -103229,7 +103151,6 @@ export namespace Prisma {
|
|
|
103229
103151
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
103230
103152
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
103231
103153
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
103232
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
103233
103154
|
created_at?: Date | string
|
|
103234
103155
|
updated_at?: Date | string
|
|
103235
103156
|
created_by: string
|
|
@@ -103438,12 +103359,12 @@ export namespace Prisma {
|
|
|
103438
103359
|
|
|
103439
103360
|
export type OngoingEvaluationCreateWithoutInterviewInput = {
|
|
103440
103361
|
id?: string
|
|
103441
|
-
is_committed?: boolean | null
|
|
103442
103362
|
assignment_id?: string | null
|
|
103443
103363
|
state?: $Enums.OngoingEvaluationState | null
|
|
103444
103364
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
103445
103365
|
comments?: string | null
|
|
103446
103366
|
completed_at?: Date | string | null
|
|
103367
|
+
is_committed?: boolean | null
|
|
103447
103368
|
title?: string | null
|
|
103448
103369
|
description?: string | null
|
|
103449
103370
|
order_no?: number | null
|
|
@@ -103468,7 +103389,7 @@ export namespace Prisma {
|
|
|
103468
103389
|
candidate?: UserCreateNestedOneWithoutOngoing_evaluationsInput
|
|
103469
103390
|
resume?: ResumeCreateNestedOneWithoutOngoing_evaluationsInput
|
|
103470
103391
|
organisation?: OrganisationCreateNestedOneWithoutOngoing_evaluationsInput
|
|
103471
|
-
evaluation_plan
|
|
103392
|
+
evaluation_plan: EvaluationPlanCreateNestedOneWithoutOngoing_evaluationsInput
|
|
103472
103393
|
assignment?: AssignmentCreateNestedOneWithoutOngoing_evaluationInput
|
|
103473
103394
|
assessment?: AssessmentCreateNestedOneWithoutOngoingEvaluationInput
|
|
103474
103395
|
}
|
|
@@ -103480,14 +103401,14 @@ export namespace Prisma {
|
|
|
103480
103401
|
candidate_id: string
|
|
103481
103402
|
resume_id: string
|
|
103482
103403
|
job_description_id: string
|
|
103483
|
-
evaluation_plan_id
|
|
103484
|
-
is_committed?: boolean | null
|
|
103404
|
+
evaluation_plan_id: string
|
|
103485
103405
|
assignment_id?: string | null
|
|
103486
103406
|
assessment_id?: string | null
|
|
103487
103407
|
state?: $Enums.OngoingEvaluationState | null
|
|
103488
103408
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
103489
103409
|
comments?: string | null
|
|
103490
103410
|
completed_at?: Date | string | null
|
|
103411
|
+
is_committed?: boolean | null
|
|
103491
103412
|
title?: string | null
|
|
103492
103413
|
description?: string | null
|
|
103493
103414
|
order_no?: number | null
|
|
@@ -104155,7 +104076,6 @@ export namespace Prisma {
|
|
|
104155
104076
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
104156
104077
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
104157
104078
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
104158
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
104159
104079
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104160
104080
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104161
104081
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -104193,7 +104113,6 @@ export namespace Prisma {
|
|
|
104193
104113
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
104194
104114
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
104195
104115
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
104196
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
104197
104116
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104198
104117
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104199
104118
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -104426,12 +104345,12 @@ export namespace Prisma {
|
|
|
104426
104345
|
|
|
104427
104346
|
export type OngoingEvaluationUpdateWithoutInterviewInput = {
|
|
104428
104347
|
id?: StringFieldUpdateOperationsInput | string
|
|
104429
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
104430
104348
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104431
104349
|
state?: NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput | $Enums.OngoingEvaluationState | null
|
|
104432
104350
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
104433
104351
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104434
104352
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104353
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
104435
104354
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104436
104355
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104437
104356
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -104456,7 +104375,7 @@ export namespace Prisma {
|
|
|
104456
104375
|
candidate?: UserUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
104457
104376
|
resume?: ResumeUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
104458
104377
|
organisation?: OrganisationUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
104459
|
-
evaluation_plan?:
|
|
104378
|
+
evaluation_plan?: EvaluationPlanUpdateOneRequiredWithoutOngoing_evaluationsNestedInput
|
|
104460
104379
|
assignment?: AssignmentUpdateOneWithoutOngoing_evaluationNestedInput
|
|
104461
104380
|
assessment?: AssessmentUpdateOneWithoutOngoingEvaluationNestedInput
|
|
104462
104381
|
}
|
|
@@ -104468,14 +104387,14 @@ export namespace Prisma {
|
|
|
104468
104387
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
104469
104388
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
104470
104389
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
104471
|
-
evaluation_plan_id?:
|
|
104472
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
104390
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
104473
104391
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104474
104392
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104475
104393
|
state?: NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput | $Enums.OngoingEvaluationState | null
|
|
104476
104394
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
104477
104395
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104478
104396
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104397
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
104479
104398
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104480
104399
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104481
104400
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -105495,12 +105414,12 @@ export namespace Prisma {
|
|
|
105495
105414
|
|
|
105496
105415
|
export type OngoingEvaluationCreateWithoutJobDescriptionInput = {
|
|
105497
105416
|
id?: string
|
|
105498
|
-
is_committed?: boolean | null
|
|
105499
105417
|
assignment_id?: string | null
|
|
105500
105418
|
state?: $Enums.OngoingEvaluationState | null
|
|
105501
105419
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
105502
105420
|
comments?: string | null
|
|
105503
105421
|
completed_at?: Date | string | null
|
|
105422
|
+
is_committed?: boolean | null
|
|
105504
105423
|
title?: string | null
|
|
105505
105424
|
description?: string | null
|
|
105506
105425
|
order_no?: number | null
|
|
@@ -105524,7 +105443,7 @@ export namespace Prisma {
|
|
|
105524
105443
|
candidate?: UserCreateNestedOneWithoutOngoing_evaluationsInput
|
|
105525
105444
|
resume?: ResumeCreateNestedOneWithoutOngoing_evaluationsInput
|
|
105526
105445
|
organisation?: OrganisationCreateNestedOneWithoutOngoing_evaluationsInput
|
|
105527
|
-
evaluation_plan
|
|
105446
|
+
evaluation_plan: EvaluationPlanCreateNestedOneWithoutOngoing_evaluationsInput
|
|
105528
105447
|
interview?: InterviewCreateNestedOneWithoutOngoing_evaluationInput
|
|
105529
105448
|
assignment?: AssignmentCreateNestedOneWithoutOngoing_evaluationInput
|
|
105530
105449
|
assessment?: AssessmentCreateNestedOneWithoutOngoingEvaluationInput
|
|
@@ -105536,8 +105455,7 @@ export namespace Prisma {
|
|
|
105536
105455
|
application_id: string
|
|
105537
105456
|
candidate_id: string
|
|
105538
105457
|
resume_id: string
|
|
105539
|
-
evaluation_plan_id
|
|
105540
|
-
is_committed?: boolean | null
|
|
105458
|
+
evaluation_plan_id: string
|
|
105541
105459
|
interview_id?: string | null
|
|
105542
105460
|
assignment_id?: string | null
|
|
105543
105461
|
assessment_id?: string | null
|
|
@@ -105545,6 +105463,7 @@ export namespace Prisma {
|
|
|
105545
105463
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
105546
105464
|
comments?: string | null
|
|
105547
105465
|
completed_at?: Date | string | null
|
|
105466
|
+
is_committed?: boolean | null
|
|
105548
105467
|
title?: string | null
|
|
105549
105468
|
description?: string | null
|
|
105550
105469
|
order_no?: number | null
|
|
@@ -106824,7 +106743,6 @@ export namespace Prisma {
|
|
|
106824
106743
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
106825
106744
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
106826
106745
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
106827
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
106828
106746
|
created_at?: Date | string
|
|
106829
106747
|
updated_at?: Date | string
|
|
106830
106748
|
created_by: string
|
|
@@ -106862,7 +106780,6 @@ export namespace Prisma {
|
|
|
106862
106780
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
106863
106781
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
106864
106782
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
106865
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
106866
106783
|
created_at?: Date | string
|
|
106867
106784
|
updated_at?: Date | string
|
|
106868
106785
|
created_by: string
|
|
@@ -106912,7 +106829,6 @@ export namespace Prisma {
|
|
|
106912
106829
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
106913
106830
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
106914
106831
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
106915
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
106916
106832
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106917
106833
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106918
106834
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -106950,7 +106866,6 @@ export namespace Prisma {
|
|
|
106950
106866
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
106951
106867
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
106952
106868
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
106953
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
106954
106869
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106955
106870
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106956
106871
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -107508,7 +107423,6 @@ export namespace Prisma {
|
|
|
107508
107423
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
107509
107424
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
107510
107425
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
107511
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
107512
107426
|
created_at?: Date | string
|
|
107513
107427
|
updated_at?: Date | string
|
|
107514
107428
|
created_by: string
|
|
@@ -107546,7 +107460,6 @@ export namespace Prisma {
|
|
|
107546
107460
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
107547
107461
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
107548
107462
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
107549
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
107550
107463
|
created_at?: Date | string
|
|
107551
107464
|
updated_at?: Date | string
|
|
107552
107465
|
created_by: string
|
|
@@ -108159,7 +108072,6 @@ export namespace Prisma {
|
|
|
108159
108072
|
summary?: JsonNullableFilter<"JobDescription">
|
|
108160
108073
|
ai_insight?: JsonNullableFilter<"JobDescription">
|
|
108161
108074
|
job_fit_comparison?: JsonNullableFilter<"JobDescription">
|
|
108162
|
-
recommendation_config?: JsonNullableFilter<"JobDescription">
|
|
108163
108075
|
created_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
108164
108076
|
updated_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
108165
108077
|
created_by?: StringFilter<"JobDescription"> | string
|
|
@@ -109436,7 +109348,6 @@ export namespace Prisma {
|
|
|
109436
109348
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
109437
109349
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
109438
109350
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
109439
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
109440
109351
|
created_at?: Date | string
|
|
109441
109352
|
updated_at?: Date | string
|
|
109442
109353
|
created_by: string
|
|
@@ -109474,7 +109385,6 @@ export namespace Prisma {
|
|
|
109474
109385
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
109475
109386
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
109476
109387
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
109477
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
109478
109388
|
created_at?: Date | string
|
|
109479
109389
|
updated_at?: Date | string
|
|
109480
109390
|
created_by: string
|
|
@@ -110142,7 +110052,6 @@ export namespace Prisma {
|
|
|
110142
110052
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
110143
110053
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
110144
110054
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
110145
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
110146
110055
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
110147
110056
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
110148
110057
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -110180,7 +110089,6 @@ export namespace Prisma {
|
|
|
110180
110089
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
110181
110090
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
110182
110091
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
110183
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
110184
110092
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
110185
110093
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
110186
110094
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -111138,7 +111046,6 @@ export namespace Prisma {
|
|
|
111138
111046
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
111139
111047
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
111140
111048
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
111141
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
111142
111049
|
created_at?: Date | string
|
|
111143
111050
|
updated_at?: Date | string
|
|
111144
111051
|
created_by: string
|
|
@@ -111175,7 +111082,6 @@ export namespace Prisma {
|
|
|
111175
111082
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
111176
111083
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
111177
111084
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
111178
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
111179
111085
|
created_at?: Date | string
|
|
111180
111086
|
updated_at?: Date | string
|
|
111181
111087
|
created_by: string
|
|
@@ -111727,12 +111633,12 @@ export namespace Prisma {
|
|
|
111727
111633
|
|
|
111728
111634
|
export type OngoingEvaluationCreateWithoutOrganisationInput = {
|
|
111729
111635
|
id?: string
|
|
111730
|
-
is_committed?: boolean | null
|
|
111731
111636
|
assignment_id?: string | null
|
|
111732
111637
|
state?: $Enums.OngoingEvaluationState | null
|
|
111733
111638
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
111734
111639
|
comments?: string | null
|
|
111735
111640
|
completed_at?: Date | string | null
|
|
111641
|
+
is_committed?: boolean | null
|
|
111736
111642
|
title?: string | null
|
|
111737
111643
|
description?: string | null
|
|
111738
111644
|
order_no?: number | null
|
|
@@ -111756,7 +111662,7 @@ export namespace Prisma {
|
|
|
111756
111662
|
application: ApplicationCreateNestedOneWithoutOngoing_evaluationsInput
|
|
111757
111663
|
candidate?: UserCreateNestedOneWithoutOngoing_evaluationsInput
|
|
111758
111664
|
resume?: ResumeCreateNestedOneWithoutOngoing_evaluationsInput
|
|
111759
|
-
evaluation_plan
|
|
111665
|
+
evaluation_plan: EvaluationPlanCreateNestedOneWithoutOngoing_evaluationsInput
|
|
111760
111666
|
interview?: InterviewCreateNestedOneWithoutOngoing_evaluationInput
|
|
111761
111667
|
assignment?: AssignmentCreateNestedOneWithoutOngoing_evaluationInput
|
|
111762
111668
|
assessment?: AssessmentCreateNestedOneWithoutOngoingEvaluationInput
|
|
@@ -111768,8 +111674,7 @@ export namespace Prisma {
|
|
|
111768
111674
|
candidate_id: string
|
|
111769
111675
|
resume_id: string
|
|
111770
111676
|
job_description_id: string
|
|
111771
|
-
evaluation_plan_id
|
|
111772
|
-
is_committed?: boolean | null
|
|
111677
|
+
evaluation_plan_id: string
|
|
111773
111678
|
interview_id?: string | null
|
|
111774
111679
|
assignment_id?: string | null
|
|
111775
111680
|
assessment_id?: string | null
|
|
@@ -111777,6 +111682,7 @@ export namespace Prisma {
|
|
|
111777
111682
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
111778
111683
|
comments?: string | null
|
|
111779
111684
|
completed_at?: Date | string | null
|
|
111685
|
+
is_committed?: boolean | null
|
|
111780
111686
|
title?: string | null
|
|
111781
111687
|
description?: string | null
|
|
111782
111688
|
order_no?: number | null
|
|
@@ -114135,7 +114041,6 @@ export namespace Prisma {
|
|
|
114135
114041
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
114136
114042
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
114137
114043
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
114138
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
114139
114044
|
created_at?: Date | string
|
|
114140
114045
|
updated_at?: Date | string
|
|
114141
114046
|
created_by: string
|
|
@@ -114173,7 +114078,6 @@ export namespace Prisma {
|
|
|
114173
114078
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
114174
114079
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
114175
114080
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
114176
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
114177
114081
|
created_at?: Date | string
|
|
114178
114082
|
updated_at?: Date | string
|
|
114179
114083
|
created_by: string
|
|
@@ -114385,12 +114289,12 @@ export namespace Prisma {
|
|
|
114385
114289
|
|
|
114386
114290
|
export type OngoingEvaluationCreateWithoutResumeInput = {
|
|
114387
114291
|
id?: string
|
|
114388
|
-
is_committed?: boolean | null
|
|
114389
114292
|
assignment_id?: string | null
|
|
114390
114293
|
state?: $Enums.OngoingEvaluationState | null
|
|
114391
114294
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
114392
114295
|
comments?: string | null
|
|
114393
114296
|
completed_at?: Date | string | null
|
|
114297
|
+
is_committed?: boolean | null
|
|
114394
114298
|
title?: string | null
|
|
114395
114299
|
description?: string | null
|
|
114396
114300
|
order_no?: number | null
|
|
@@ -114414,7 +114318,7 @@ export namespace Prisma {
|
|
|
114414
114318
|
application: ApplicationCreateNestedOneWithoutOngoing_evaluationsInput
|
|
114415
114319
|
candidate?: UserCreateNestedOneWithoutOngoing_evaluationsInput
|
|
114416
114320
|
organisation?: OrganisationCreateNestedOneWithoutOngoing_evaluationsInput
|
|
114417
|
-
evaluation_plan
|
|
114321
|
+
evaluation_plan: EvaluationPlanCreateNestedOneWithoutOngoing_evaluationsInput
|
|
114418
114322
|
interview?: InterviewCreateNestedOneWithoutOngoing_evaluationInput
|
|
114419
114323
|
assignment?: AssignmentCreateNestedOneWithoutOngoing_evaluationInput
|
|
114420
114324
|
assessment?: AssessmentCreateNestedOneWithoutOngoingEvaluationInput
|
|
@@ -114426,8 +114330,7 @@ export namespace Prisma {
|
|
|
114426
114330
|
application_id: string
|
|
114427
114331
|
candidate_id: string
|
|
114428
114332
|
job_description_id: string
|
|
114429
|
-
evaluation_plan_id
|
|
114430
|
-
is_committed?: boolean | null
|
|
114333
|
+
evaluation_plan_id: string
|
|
114431
114334
|
interview_id?: string | null
|
|
114432
114335
|
assignment_id?: string | null
|
|
114433
114336
|
assessment_id?: string | null
|
|
@@ -114435,6 +114338,7 @@ export namespace Prisma {
|
|
|
114435
114338
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
114436
114339
|
comments?: string | null
|
|
114437
114340
|
completed_at?: Date | string | null
|
|
114341
|
+
is_committed?: boolean | null
|
|
114438
114342
|
title?: string | null
|
|
114439
114343
|
description?: string | null
|
|
114440
114344
|
order_no?: number | null
|
|
@@ -114888,7 +114792,6 @@ export namespace Prisma {
|
|
|
114888
114792
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
114889
114793
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
114890
114794
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
114891
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
114892
114795
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114893
114796
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114894
114797
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -114926,7 +114829,6 @@ export namespace Prisma {
|
|
|
114926
114829
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
114927
114830
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
114928
114831
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
114929
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
114930
114832
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114931
114833
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114932
114834
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -115804,7 +115706,6 @@ export namespace Prisma {
|
|
|
115804
115706
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
115805
115707
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
115806
115708
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
115807
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
115808
115709
|
created_at?: Date | string
|
|
115809
115710
|
updated_at?: Date | string
|
|
115810
115711
|
created_by: string
|
|
@@ -115842,7 +115743,6 @@ export namespace Prisma {
|
|
|
115842
115743
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
115843
115744
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
115844
115745
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
115845
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
115846
115746
|
created_at?: Date | string
|
|
115847
115747
|
updated_at?: Date | string
|
|
115848
115748
|
created_by: string
|
|
@@ -116044,7 +115944,6 @@ export namespace Prisma {
|
|
|
116044
115944
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
116045
115945
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
116046
115946
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
116047
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
116048
115947
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116049
115948
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116050
115949
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116082,7 +115981,6 @@ export namespace Prisma {
|
|
|
116082
115981
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
116083
115982
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
116084
115983
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
116085
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
116086
115984
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116087
115985
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116088
115986
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116459,7 +116357,6 @@ export namespace Prisma {
|
|
|
116459
116357
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
116460
116358
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
116461
116359
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
116462
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
116463
116360
|
created_at?: Date | string
|
|
116464
116361
|
updated_at?: Date | string
|
|
116465
116362
|
created_by: string
|
|
@@ -116497,7 +116394,6 @@ export namespace Prisma {
|
|
|
116497
116394
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
116498
116395
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
116499
116396
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
116500
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
116501
116397
|
created_at?: Date | string
|
|
116502
116398
|
updated_at?: Date | string
|
|
116503
116399
|
created_by: string
|
|
@@ -116536,7 +116432,6 @@ export namespace Prisma {
|
|
|
116536
116432
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
116537
116433
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
116538
116434
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
116539
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
116540
116435
|
created_at?: Date | string
|
|
116541
116436
|
updated_at?: Date | string
|
|
116542
116437
|
created_by: string
|
|
@@ -116573,7 +116468,6 @@ export namespace Prisma {
|
|
|
116573
116468
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
116574
116469
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
116575
116470
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
116576
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
116577
116471
|
created_at?: Date | string
|
|
116578
116472
|
updated_at?: Date | string
|
|
116579
116473
|
created_by: string
|
|
@@ -117359,12 +117253,12 @@ export namespace Prisma {
|
|
|
117359
117253
|
|
|
117360
117254
|
export type OngoingEvaluationCreateWithoutCandidateInput = {
|
|
117361
117255
|
id?: string
|
|
117362
|
-
is_committed?: boolean | null
|
|
117363
117256
|
assignment_id?: string | null
|
|
117364
117257
|
state?: $Enums.OngoingEvaluationState | null
|
|
117365
117258
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
117366
117259
|
comments?: string | null
|
|
117367
117260
|
completed_at?: Date | string | null
|
|
117261
|
+
is_committed?: boolean | null
|
|
117368
117262
|
title?: string | null
|
|
117369
117263
|
description?: string | null
|
|
117370
117264
|
order_no?: number | null
|
|
@@ -117388,7 +117282,7 @@ export namespace Prisma {
|
|
|
117388
117282
|
application: ApplicationCreateNestedOneWithoutOngoing_evaluationsInput
|
|
117389
117283
|
resume?: ResumeCreateNestedOneWithoutOngoing_evaluationsInput
|
|
117390
117284
|
organisation?: OrganisationCreateNestedOneWithoutOngoing_evaluationsInput
|
|
117391
|
-
evaluation_plan
|
|
117285
|
+
evaluation_plan: EvaluationPlanCreateNestedOneWithoutOngoing_evaluationsInput
|
|
117392
117286
|
interview?: InterviewCreateNestedOneWithoutOngoing_evaluationInput
|
|
117393
117287
|
assignment?: AssignmentCreateNestedOneWithoutOngoing_evaluationInput
|
|
117394
117288
|
assessment?: AssessmentCreateNestedOneWithoutOngoingEvaluationInput
|
|
@@ -117400,8 +117294,7 @@ export namespace Prisma {
|
|
|
117400
117294
|
application_id: string
|
|
117401
117295
|
resume_id: string
|
|
117402
117296
|
job_description_id: string
|
|
117403
|
-
evaluation_plan_id
|
|
117404
|
-
is_committed?: boolean | null
|
|
117297
|
+
evaluation_plan_id: string
|
|
117405
117298
|
interview_id?: string | null
|
|
117406
117299
|
assignment_id?: string | null
|
|
117407
117300
|
assessment_id?: string | null
|
|
@@ -117409,6 +117302,7 @@ export namespace Prisma {
|
|
|
117409
117302
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
117410
117303
|
comments?: string | null
|
|
117411
117304
|
completed_at?: Date | string | null
|
|
117305
|
+
is_committed?: boolean | null
|
|
117412
117306
|
title?: string | null
|
|
117413
117307
|
description?: string | null
|
|
117414
117308
|
order_no?: number | null
|
|
@@ -119999,8 +119893,7 @@ export namespace Prisma {
|
|
|
119999
119893
|
candidate_id: string
|
|
120000
119894
|
resume_id: string
|
|
120001
119895
|
job_description_id: string
|
|
120002
|
-
evaluation_plan_id
|
|
120003
|
-
is_committed?: boolean | null
|
|
119896
|
+
evaluation_plan_id: string
|
|
120004
119897
|
interview_id?: string | null
|
|
120005
119898
|
assignment_id?: string | null
|
|
120006
119899
|
assessment_id?: string | null
|
|
@@ -120008,6 +119901,7 @@ export namespace Prisma {
|
|
|
120008
119901
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
120009
119902
|
comments?: string | null
|
|
120010
119903
|
completed_at?: Date | string | null
|
|
119904
|
+
is_committed?: boolean | null
|
|
120011
119905
|
title?: string | null
|
|
120012
119906
|
description?: string | null
|
|
120013
119907
|
order_no?: number | null
|
|
@@ -120269,12 +120163,12 @@ export namespace Prisma {
|
|
|
120269
120163
|
|
|
120270
120164
|
export type OngoingEvaluationUpdateWithoutApplicationInput = {
|
|
120271
120165
|
id?: StringFieldUpdateOperationsInput | string
|
|
120272
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
120273
120166
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120274
120167
|
state?: NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput | $Enums.OngoingEvaluationState | null
|
|
120275
120168
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
120276
120169
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120277
120170
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120171
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
120278
120172
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120279
120173
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120280
120174
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -120298,7 +120192,7 @@ export namespace Prisma {
|
|
|
120298
120192
|
candidate?: UserUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
120299
120193
|
resume?: ResumeUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
120300
120194
|
organisation?: OrganisationUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
120301
|
-
evaluation_plan?:
|
|
120195
|
+
evaluation_plan?: EvaluationPlanUpdateOneRequiredWithoutOngoing_evaluationsNestedInput
|
|
120302
120196
|
interview?: InterviewUpdateOneWithoutOngoing_evaluationNestedInput
|
|
120303
120197
|
assignment?: AssignmentUpdateOneWithoutOngoing_evaluationNestedInput
|
|
120304
120198
|
assessment?: AssessmentUpdateOneWithoutOngoingEvaluationNestedInput
|
|
@@ -120310,8 +120204,7 @@ export namespace Prisma {
|
|
|
120310
120204
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
120311
120205
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
120312
120206
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
120313
|
-
evaluation_plan_id?:
|
|
120314
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
120207
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
120315
120208
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120316
120209
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120317
120210
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -120319,6 +120212,7 @@ export namespace Prisma {
|
|
|
120319
120212
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
120320
120213
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120321
120214
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120215
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
120322
120216
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120323
120217
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120324
120218
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -120347,8 +120241,7 @@ export namespace Prisma {
|
|
|
120347
120241
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
120348
120242
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
120349
120243
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
120350
|
-
evaluation_plan_id?:
|
|
120351
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
120244
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
120352
120245
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120353
120246
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120354
120247
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -120356,6 +120249,7 @@ export namespace Prisma {
|
|
|
120356
120249
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
120357
120250
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120358
120251
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120252
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
120359
120253
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120360
120254
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120361
120255
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -121089,7 +120983,6 @@ export namespace Prisma {
|
|
|
121089
120983
|
candidate_id: string
|
|
121090
120984
|
resume_id: string
|
|
121091
120985
|
job_description_id: string
|
|
121092
|
-
is_committed?: boolean | null
|
|
121093
120986
|
interview_id?: string | null
|
|
121094
120987
|
assignment_id?: string | null
|
|
121095
120988
|
assessment_id?: string | null
|
|
@@ -121097,6 +120990,7 @@ export namespace Prisma {
|
|
|
121097
120990
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
121098
120991
|
comments?: string | null
|
|
121099
120992
|
completed_at?: Date | string | null
|
|
120993
|
+
is_committed?: boolean | null
|
|
121100
120994
|
title?: string | null
|
|
121101
120995
|
description?: string | null
|
|
121102
120996
|
order_no?: number | null
|
|
@@ -121406,12 +121300,12 @@ export namespace Prisma {
|
|
|
121406
121300
|
|
|
121407
121301
|
export type OngoingEvaluationUpdateWithoutEvaluation_planInput = {
|
|
121408
121302
|
id?: StringFieldUpdateOperationsInput | string
|
|
121409
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
121410
121303
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121411
121304
|
state?: NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput | $Enums.OngoingEvaluationState | null
|
|
121412
121305
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
121413
121306
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121414
121307
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121308
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
121415
121309
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121416
121310
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121417
121311
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -121448,7 +121342,6 @@ export namespace Prisma {
|
|
|
121448
121342
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
121449
121343
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
121450
121344
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
121451
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
121452
121345
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121453
121346
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121454
121347
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -121456,6 +121349,7 @@ export namespace Prisma {
|
|
|
121456
121349
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
121457
121350
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121458
121351
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121352
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
121459
121353
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121460
121354
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121461
121355
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -121485,7 +121379,6 @@ export namespace Prisma {
|
|
|
121485
121379
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
121486
121380
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
121487
121381
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
121488
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
121489
121382
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121490
121383
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121491
121384
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -121493,6 +121386,7 @@ export namespace Prisma {
|
|
|
121493
121386
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
121494
121387
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121495
121388
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121389
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
121496
121390
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121497
121391
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121498
121392
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -121940,8 +121834,7 @@ export namespace Prisma {
|
|
|
121940
121834
|
application_id: string
|
|
121941
121835
|
candidate_id: string
|
|
121942
121836
|
resume_id: string
|
|
121943
|
-
evaluation_plan_id
|
|
121944
|
-
is_committed?: boolean | null
|
|
121837
|
+
evaluation_plan_id: string
|
|
121945
121838
|
interview_id?: string | null
|
|
121946
121839
|
assignment_id?: string | null
|
|
121947
121840
|
assessment_id?: string | null
|
|
@@ -121949,6 +121842,7 @@ export namespace Prisma {
|
|
|
121949
121842
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
121950
121843
|
comments?: string | null
|
|
121951
121844
|
completed_at?: Date | string | null
|
|
121845
|
+
is_committed?: boolean | null
|
|
121952
121846
|
title?: string | null
|
|
121953
121847
|
description?: string | null
|
|
121954
121848
|
order_no?: number | null
|
|
@@ -122560,12 +122454,12 @@ export namespace Prisma {
|
|
|
122560
122454
|
|
|
122561
122455
|
export type OngoingEvaluationUpdateWithoutJobDescriptionInput = {
|
|
122562
122456
|
id?: StringFieldUpdateOperationsInput | string
|
|
122563
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
122564
122457
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122565
122458
|
state?: NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput | $Enums.OngoingEvaluationState | null
|
|
122566
122459
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
122567
122460
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122568
122461
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
122462
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
122569
122463
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122570
122464
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122571
122465
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -122589,7 +122483,7 @@ export namespace Prisma {
|
|
|
122589
122483
|
candidate?: UserUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
122590
122484
|
resume?: ResumeUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
122591
122485
|
organisation?: OrganisationUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
122592
|
-
evaluation_plan?:
|
|
122486
|
+
evaluation_plan?: EvaluationPlanUpdateOneRequiredWithoutOngoing_evaluationsNestedInput
|
|
122593
122487
|
interview?: InterviewUpdateOneWithoutOngoing_evaluationNestedInput
|
|
122594
122488
|
assignment?: AssignmentUpdateOneWithoutOngoing_evaluationNestedInput
|
|
122595
122489
|
assessment?: AssessmentUpdateOneWithoutOngoingEvaluationNestedInput
|
|
@@ -122601,8 +122495,7 @@ export namespace Prisma {
|
|
|
122601
122495
|
application_id?: StringFieldUpdateOperationsInput | string
|
|
122602
122496
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
122603
122497
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
122604
|
-
evaluation_plan_id?:
|
|
122605
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
122498
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
122606
122499
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122607
122500
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122608
122501
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -122610,6 +122503,7 @@ export namespace Prisma {
|
|
|
122610
122503
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
122611
122504
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122612
122505
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
122506
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
122613
122507
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122614
122508
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122615
122509
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -122638,8 +122532,7 @@ export namespace Prisma {
|
|
|
122638
122532
|
application_id?: StringFieldUpdateOperationsInput | string
|
|
122639
122533
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
122640
122534
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
122641
|
-
evaluation_plan_id?:
|
|
122642
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
122535
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
122643
122536
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122644
122537
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122645
122538
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -122647,6 +122540,7 @@ export namespace Prisma {
|
|
|
122647
122540
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
122648
122541
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122649
122542
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
122543
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
122650
122544
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122651
122545
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122652
122546
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -123084,7 +122978,6 @@ export namespace Prisma {
|
|
|
123084
122978
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123085
122979
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123086
122980
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123087
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123088
122981
|
created_at?: Date | string
|
|
123089
122982
|
updated_at?: Date | string
|
|
123090
122983
|
created_by: string
|
|
@@ -123104,7 +122997,6 @@ export namespace Prisma {
|
|
|
123104
122997
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123105
122998
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123106
122999
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123107
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123108
123000
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123109
123001
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123110
123002
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123142,7 +123034,6 @@ export namespace Prisma {
|
|
|
123142
123034
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123143
123035
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123144
123036
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123145
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123146
123037
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123147
123038
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123148
123039
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123178,7 +123069,6 @@ export namespace Prisma {
|
|
|
123178
123069
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123179
123070
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123180
123071
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123181
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123182
123072
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123183
123073
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123184
123074
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123276,7 +123166,6 @@ export namespace Prisma {
|
|
|
123276
123166
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123277
123167
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123278
123168
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123279
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123280
123169
|
created_at?: Date | string
|
|
123281
123170
|
updated_at?: Date | string
|
|
123282
123171
|
created_by: string
|
|
@@ -123484,8 +123373,7 @@ export namespace Prisma {
|
|
|
123484
123373
|
candidate_id: string
|
|
123485
123374
|
resume_id: string
|
|
123486
123375
|
job_description_id: string
|
|
123487
|
-
evaluation_plan_id
|
|
123488
|
-
is_committed?: boolean | null
|
|
123376
|
+
evaluation_plan_id: string
|
|
123489
123377
|
interview_id?: string | null
|
|
123490
123378
|
assignment_id?: string | null
|
|
123491
123379
|
assessment_id?: string | null
|
|
@@ -123493,6 +123381,7 @@ export namespace Prisma {
|
|
|
123493
123381
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
123494
123382
|
comments?: string | null
|
|
123495
123383
|
completed_at?: Date | string | null
|
|
123384
|
+
is_committed?: boolean | null
|
|
123496
123385
|
title?: string | null
|
|
123497
123386
|
description?: string | null
|
|
123498
123387
|
order_no?: number | null
|
|
@@ -123903,7 +123792,6 @@ export namespace Prisma {
|
|
|
123903
123792
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123904
123793
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123905
123794
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123906
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123907
123795
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123908
123796
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123909
123797
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123940,7 +123828,6 @@ export namespace Prisma {
|
|
|
123940
123828
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123941
123829
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123942
123830
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123943
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123944
123831
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123945
123832
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123946
123833
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123976,7 +123863,6 @@ export namespace Prisma {
|
|
|
123976
123863
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123977
123864
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123978
123865
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123979
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123980
123866
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123981
123867
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123982
123868
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -124606,12 +124492,12 @@ export namespace Prisma {
|
|
|
124606
124492
|
|
|
124607
124493
|
export type OngoingEvaluationUpdateWithoutOrganisationInput = {
|
|
124608
124494
|
id?: StringFieldUpdateOperationsInput | string
|
|
124609
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
124610
124495
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124611
124496
|
state?: NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput | $Enums.OngoingEvaluationState | null
|
|
124612
124497
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
124613
124498
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124614
124499
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
124500
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
124615
124501
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124616
124502
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124617
124503
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -124635,7 +124521,7 @@ export namespace Prisma {
|
|
|
124635
124521
|
application?: ApplicationUpdateOneRequiredWithoutOngoing_evaluationsNestedInput
|
|
124636
124522
|
candidate?: UserUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
124637
124523
|
resume?: ResumeUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
124638
|
-
evaluation_plan?:
|
|
124524
|
+
evaluation_plan?: EvaluationPlanUpdateOneRequiredWithoutOngoing_evaluationsNestedInput
|
|
124639
124525
|
interview?: InterviewUpdateOneWithoutOngoing_evaluationNestedInput
|
|
124640
124526
|
assignment?: AssignmentUpdateOneWithoutOngoing_evaluationNestedInput
|
|
124641
124527
|
assessment?: AssessmentUpdateOneWithoutOngoingEvaluationNestedInput
|
|
@@ -124647,8 +124533,7 @@ export namespace Prisma {
|
|
|
124647
124533
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
124648
124534
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
124649
124535
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
124650
|
-
evaluation_plan_id?:
|
|
124651
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
124536
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
124652
124537
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124653
124538
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124654
124539
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -124656,6 +124541,7 @@ export namespace Prisma {
|
|
|
124656
124541
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
124657
124542
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124658
124543
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
124544
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
124659
124545
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124660
124546
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124661
124547
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -124684,8 +124570,7 @@ export namespace Prisma {
|
|
|
124684
124570
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
124685
124571
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
124686
124572
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
124687
|
-
evaluation_plan_id?:
|
|
124688
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
124573
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
124689
124574
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124690
124575
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124691
124576
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -124693,6 +124578,7 @@ export namespace Prisma {
|
|
|
124693
124578
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
124694
124579
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124695
124580
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
124581
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
124696
124582
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124697
124583
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124698
124584
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -125090,8 +124976,7 @@ export namespace Prisma {
|
|
|
125090
124976
|
application_id: string
|
|
125091
124977
|
candidate_id: string
|
|
125092
124978
|
job_description_id: string
|
|
125093
|
-
evaluation_plan_id
|
|
125094
|
-
is_committed?: boolean | null
|
|
124979
|
+
evaluation_plan_id: string
|
|
125095
124980
|
interview_id?: string | null
|
|
125096
124981
|
assignment_id?: string | null
|
|
125097
124982
|
assessment_id?: string | null
|
|
@@ -125099,6 +124984,7 @@ export namespace Prisma {
|
|
|
125099
124984
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
125100
124985
|
comments?: string | null
|
|
125101
124986
|
completed_at?: Date | string | null
|
|
124987
|
+
is_committed?: boolean | null
|
|
125102
124988
|
title?: string | null
|
|
125103
124989
|
description?: string | null
|
|
125104
124990
|
order_no?: number | null
|
|
@@ -125397,12 +125283,12 @@ export namespace Prisma {
|
|
|
125397
125283
|
|
|
125398
125284
|
export type OngoingEvaluationUpdateWithoutResumeInput = {
|
|
125399
125285
|
id?: StringFieldUpdateOperationsInput | string
|
|
125400
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
125401
125286
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125402
125287
|
state?: NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput | $Enums.OngoingEvaluationState | null
|
|
125403
125288
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
125404
125289
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125405
125290
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
125291
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
125406
125292
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125407
125293
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125408
125294
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -125426,7 +125312,7 @@ export namespace Prisma {
|
|
|
125426
125312
|
application?: ApplicationUpdateOneRequiredWithoutOngoing_evaluationsNestedInput
|
|
125427
125313
|
candidate?: UserUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
125428
125314
|
organisation?: OrganisationUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
125429
|
-
evaluation_plan?:
|
|
125315
|
+
evaluation_plan?: EvaluationPlanUpdateOneRequiredWithoutOngoing_evaluationsNestedInput
|
|
125430
125316
|
interview?: InterviewUpdateOneWithoutOngoing_evaluationNestedInput
|
|
125431
125317
|
assignment?: AssignmentUpdateOneWithoutOngoing_evaluationNestedInput
|
|
125432
125318
|
assessment?: AssessmentUpdateOneWithoutOngoingEvaluationNestedInput
|
|
@@ -125438,8 +125324,7 @@ export namespace Prisma {
|
|
|
125438
125324
|
application_id?: StringFieldUpdateOperationsInput | string
|
|
125439
125325
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
125440
125326
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
125441
|
-
evaluation_plan_id?:
|
|
125442
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
125327
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
125443
125328
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125444
125329
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125445
125330
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -125447,6 +125332,7 @@ export namespace Prisma {
|
|
|
125447
125332
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
125448
125333
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125449
125334
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
125335
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
125450
125336
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125451
125337
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125452
125338
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -125475,8 +125361,7 @@ export namespace Prisma {
|
|
|
125475
125361
|
application_id?: StringFieldUpdateOperationsInput | string
|
|
125476
125362
|
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
125477
125363
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
125478
|
-
evaluation_plan_id?:
|
|
125479
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
125364
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
125480
125365
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125481
125366
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125482
125367
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -125484,6 +125369,7 @@ export namespace Prisma {
|
|
|
125484
125369
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
125485
125370
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125486
125371
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
125372
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
125487
125373
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125488
125374
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125489
125375
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -125760,7 +125646,6 @@ export namespace Prisma {
|
|
|
125760
125646
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
125761
125647
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
125762
125648
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
125763
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
125764
125649
|
created_at?: Date | string
|
|
125765
125650
|
updated_at?: Date | string
|
|
125766
125651
|
created_by: string
|
|
@@ -126060,8 +125945,7 @@ export namespace Prisma {
|
|
|
126060
125945
|
application_id: string
|
|
126061
125946
|
resume_id: string
|
|
126062
125947
|
job_description_id: string
|
|
126063
|
-
evaluation_plan_id
|
|
126064
|
-
is_committed?: boolean | null
|
|
125948
|
+
evaluation_plan_id: string
|
|
126065
125949
|
interview_id?: string | null
|
|
126066
125950
|
assignment_id?: string | null
|
|
126067
125951
|
assessment_id?: string | null
|
|
@@ -126069,6 +125953,7 @@ export namespace Prisma {
|
|
|
126069
125953
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
126070
125954
|
comments?: string | null
|
|
126071
125955
|
completed_at?: Date | string | null
|
|
125956
|
+
is_committed?: boolean | null
|
|
126072
125957
|
title?: string | null
|
|
126073
125958
|
description?: string | null
|
|
126074
125959
|
order_no?: number | null
|
|
@@ -126408,7 +126293,6 @@ export namespace Prisma {
|
|
|
126408
126293
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
126409
126294
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
126410
126295
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
126411
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
126412
126296
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126413
126297
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126414
126298
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -126446,7 +126330,6 @@ export namespace Prisma {
|
|
|
126446
126330
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
126447
126331
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
126448
126332
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
126449
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
126450
126333
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126451
126334
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126452
126335
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -126482,7 +126365,6 @@ export namespace Prisma {
|
|
|
126482
126365
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
126483
126366
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
126484
126367
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
126485
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
126486
126368
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126487
126369
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126488
126370
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -126503,7 +126385,6 @@ export namespace Prisma {
|
|
|
126503
126385
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
126504
126386
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
126505
126387
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
126506
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
126507
126388
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126508
126389
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126509
126390
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -126540,7 +126421,6 @@ export namespace Prisma {
|
|
|
126540
126421
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
126541
126422
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
126542
126423
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
126543
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
126544
126424
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126545
126425
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126546
126426
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -126576,7 +126456,6 @@ export namespace Prisma {
|
|
|
126576
126456
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
126577
126457
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
126578
126458
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
126579
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
126580
126459
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126581
126460
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126582
126461
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -127492,12 +127371,12 @@ export namespace Prisma {
|
|
|
127492
127371
|
|
|
127493
127372
|
export type OngoingEvaluationUpdateWithoutCandidateInput = {
|
|
127494
127373
|
id?: StringFieldUpdateOperationsInput | string
|
|
127495
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127496
127374
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127497
127375
|
state?: NullableEnumOngoingEvaluationStateFieldUpdateOperationsInput | $Enums.OngoingEvaluationState | null
|
|
127498
127376
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
127499
127377
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127500
127378
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127379
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127501
127380
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127502
127381
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127503
127382
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -127521,7 +127400,7 @@ export namespace Prisma {
|
|
|
127521
127400
|
application?: ApplicationUpdateOneRequiredWithoutOngoing_evaluationsNestedInput
|
|
127522
127401
|
resume?: ResumeUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
127523
127402
|
organisation?: OrganisationUpdateOneWithoutOngoing_evaluationsNestedInput
|
|
127524
|
-
evaluation_plan?:
|
|
127403
|
+
evaluation_plan?: EvaluationPlanUpdateOneRequiredWithoutOngoing_evaluationsNestedInput
|
|
127525
127404
|
interview?: InterviewUpdateOneWithoutOngoing_evaluationNestedInput
|
|
127526
127405
|
assignment?: AssignmentUpdateOneWithoutOngoing_evaluationNestedInput
|
|
127527
127406
|
assessment?: AssessmentUpdateOneWithoutOngoingEvaluationNestedInput
|
|
@@ -127533,8 +127412,7 @@ export namespace Prisma {
|
|
|
127533
127412
|
application_id?: StringFieldUpdateOperationsInput | string
|
|
127534
127413
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
127535
127414
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
127536
|
-
evaluation_plan_id?:
|
|
127537
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127415
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
127538
127416
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127539
127417
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127540
127418
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -127542,6 +127420,7 @@ export namespace Prisma {
|
|
|
127542
127420
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
127543
127421
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127544
127422
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127423
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127545
127424
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127546
127425
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127547
127426
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -127570,8 +127449,7 @@ export namespace Prisma {
|
|
|
127570
127449
|
application_id?: StringFieldUpdateOperationsInput | string
|
|
127571
127450
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
127572
127451
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
127573
|
-
evaluation_plan_id?:
|
|
127574
|
-
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127452
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
127575
127453
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127576
127454
|
assignment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127577
127455
|
assessment_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -127579,6 +127457,7 @@ export namespace Prisma {
|
|
|
127579
127457
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
127580
127458
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127581
127459
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127460
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127582
127461
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127583
127462
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127584
127463
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|