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