@adaptware/eagles-db 0.4.3 → 0.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/edge.js +4 -4
- package/client/index-browser.js +1 -1
- package/client/index.d.ts +84 -108
- package/client/index.js +4 -4
- package/client/package.json +1 -1
- package/client/schema.prisma +1 -2
- package/client/wasm.js +1 -1
- package/package.json +1 -1
- package/prisma/schema/jobDescription.prisma +0 -2
- package/prisma/schema/ongoingEvaluation.prisma +1 -0
package/client/index.d.ts
CHANGED
|
@@ -38196,7 +38196,6 @@ export namespace Prisma {
|
|
|
38196
38196
|
summary: number
|
|
38197
38197
|
ai_insight: number
|
|
38198
38198
|
job_fit_comparison: number
|
|
38199
|
-
recommendation_config: number
|
|
38200
38199
|
created_at: number
|
|
38201
38200
|
updated_at: number
|
|
38202
38201
|
created_by: number
|
|
@@ -38263,7 +38262,6 @@ export namespace Prisma {
|
|
|
38263
38262
|
summary?: true
|
|
38264
38263
|
ai_insight?: true
|
|
38265
38264
|
job_fit_comparison?: true
|
|
38266
|
-
recommendation_config?: true
|
|
38267
38265
|
created_at?: true
|
|
38268
38266
|
updated_at?: true
|
|
38269
38267
|
created_by?: true
|
|
@@ -38373,7 +38371,6 @@ export namespace Prisma {
|
|
|
38373
38371
|
summary: JsonValue | null
|
|
38374
38372
|
ai_insight: JsonValue | null
|
|
38375
38373
|
job_fit_comparison: JsonValue | null
|
|
38376
|
-
recommendation_config: JsonValue | null
|
|
38377
38374
|
created_at: Date
|
|
38378
38375
|
updated_at: Date
|
|
38379
38376
|
created_by: string
|
|
@@ -38415,7 +38412,6 @@ export namespace Prisma {
|
|
|
38415
38412
|
summary?: boolean
|
|
38416
38413
|
ai_insight?: boolean
|
|
38417
38414
|
job_fit_comparison?: boolean
|
|
38418
|
-
recommendation_config?: boolean
|
|
38419
38415
|
created_at?: boolean
|
|
38420
38416
|
updated_at?: boolean
|
|
38421
38417
|
created_by?: boolean
|
|
@@ -38456,7 +38452,6 @@ export namespace Prisma {
|
|
|
38456
38452
|
summary?: boolean
|
|
38457
38453
|
ai_insight?: boolean
|
|
38458
38454
|
job_fit_comparison?: boolean
|
|
38459
|
-
recommendation_config?: boolean
|
|
38460
38455
|
created_at?: boolean
|
|
38461
38456
|
updated_at?: boolean
|
|
38462
38457
|
created_by?: boolean
|
|
@@ -38482,7 +38477,6 @@ export namespace Prisma {
|
|
|
38482
38477
|
summary?: boolean
|
|
38483
38478
|
ai_insight?: boolean
|
|
38484
38479
|
job_fit_comparison?: boolean
|
|
38485
|
-
recommendation_config?: boolean
|
|
38486
38480
|
created_at?: boolean
|
|
38487
38481
|
updated_at?: boolean
|
|
38488
38482
|
created_by?: boolean
|
|
@@ -38508,7 +38502,6 @@ export namespace Prisma {
|
|
|
38508
38502
|
summary?: boolean
|
|
38509
38503
|
ai_insight?: boolean
|
|
38510
38504
|
job_fit_comparison?: boolean
|
|
38511
|
-
recommendation_config?: boolean
|
|
38512
38505
|
created_at?: boolean
|
|
38513
38506
|
updated_at?: boolean
|
|
38514
38507
|
created_by?: boolean
|
|
@@ -38518,7 +38511,7 @@ export namespace Prisma {
|
|
|
38518
38511
|
job_profile_id?: boolean
|
|
38519
38512
|
}
|
|
38520
38513
|
|
|
38521
|
-
export type JobDescriptionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "hiring_manager_id" | "status" | "screeningQuestions" | "recommendedQuestions" | "uploaded_job_description_path" | "is_plan_published" | "is_posted" | "summary" | "ai_insight" | "job_fit_comparison" | "
|
|
38514
|
+
export type JobDescriptionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "hiring_manager_id" | "status" | "screeningQuestions" | "recommendedQuestions" | "uploaded_job_description_path" | "is_plan_published" | "is_posted" | "summary" | "ai_insight" | "job_fit_comparison" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "openings" | "job_profile_id", ExtArgs["result"]["jobDescription"]>
|
|
38522
38515
|
export type JobDescriptionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
38523
38516
|
job_profile?: boolean | JobDescription$job_profileArgs<ExtArgs>
|
|
38524
38517
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
@@ -38584,10 +38577,6 @@ export namespace Prisma {
|
|
|
38584
38577
|
summary: Prisma.JsonValue | null
|
|
38585
38578
|
ai_insight: Prisma.JsonValue | null
|
|
38586
38579
|
job_fit_comparison: Prisma.JsonValue | null
|
|
38587
|
-
/**
|
|
38588
|
-
* Per-job thresholds for AI round recommendation (interview vs work-sample routing).
|
|
38589
|
-
*/
|
|
38590
|
-
recommendation_config: Prisma.JsonValue | null
|
|
38591
38580
|
created_at: Date
|
|
38592
38581
|
updated_at: Date
|
|
38593
38582
|
created_by: string
|
|
@@ -39047,7 +39036,6 @@ export namespace Prisma {
|
|
|
39047
39036
|
readonly summary: FieldRef<"JobDescription", 'Json'>
|
|
39048
39037
|
readonly ai_insight: FieldRef<"JobDescription", 'Json'>
|
|
39049
39038
|
readonly job_fit_comparison: FieldRef<"JobDescription", 'Json'>
|
|
39050
|
-
readonly recommendation_config: FieldRef<"JobDescription", 'Json'>
|
|
39051
39039
|
readonly created_at: FieldRef<"JobDescription", 'DateTime'>
|
|
39052
39040
|
readonly updated_at: FieldRef<"JobDescription", 'DateTime'>
|
|
39053
39041
|
readonly created_by: FieldRef<"JobDescription", 'String'>
|
|
@@ -45715,6 +45703,7 @@ export namespace Prisma {
|
|
|
45715
45703
|
round_status: $Enums.OngoingEvaluationRoundStatus | null
|
|
45716
45704
|
comments: string | null
|
|
45717
45705
|
completed_at: Date | null
|
|
45706
|
+
is_committed: boolean | null
|
|
45718
45707
|
title: string | null
|
|
45719
45708
|
description: string | null
|
|
45720
45709
|
order_no: number | null
|
|
@@ -45749,6 +45738,7 @@ export namespace Prisma {
|
|
|
45749
45738
|
round_status: $Enums.OngoingEvaluationRoundStatus | null
|
|
45750
45739
|
comments: string | null
|
|
45751
45740
|
completed_at: Date | null
|
|
45741
|
+
is_committed: boolean | null
|
|
45752
45742
|
title: string | null
|
|
45753
45743
|
description: string | null
|
|
45754
45744
|
order_no: number | null
|
|
@@ -45783,6 +45773,7 @@ export namespace Prisma {
|
|
|
45783
45773
|
round_status: number
|
|
45784
45774
|
comments: number
|
|
45785
45775
|
completed_at: number
|
|
45776
|
+
is_committed: number
|
|
45786
45777
|
title: number
|
|
45787
45778
|
description: number
|
|
45788
45779
|
order_no: number
|
|
@@ -45833,6 +45824,7 @@ export namespace Prisma {
|
|
|
45833
45824
|
round_status?: true
|
|
45834
45825
|
comments?: true
|
|
45835
45826
|
completed_at?: true
|
|
45827
|
+
is_committed?: true
|
|
45836
45828
|
title?: true
|
|
45837
45829
|
description?: true
|
|
45838
45830
|
order_no?: true
|
|
@@ -45867,6 +45859,7 @@ export namespace Prisma {
|
|
|
45867
45859
|
round_status?: true
|
|
45868
45860
|
comments?: true
|
|
45869
45861
|
completed_at?: true
|
|
45862
|
+
is_committed?: true
|
|
45870
45863
|
title?: true
|
|
45871
45864
|
description?: true
|
|
45872
45865
|
order_no?: true
|
|
@@ -45901,6 +45894,7 @@ export namespace Prisma {
|
|
|
45901
45894
|
round_status?: true
|
|
45902
45895
|
comments?: true
|
|
45903
45896
|
completed_at?: true
|
|
45897
|
+
is_committed?: true
|
|
45904
45898
|
title?: true
|
|
45905
45899
|
description?: true
|
|
45906
45900
|
order_no?: true
|
|
@@ -46024,6 +46018,7 @@ export namespace Prisma {
|
|
|
46024
46018
|
round_status: $Enums.OngoingEvaluationRoundStatus | null
|
|
46025
46019
|
comments: string | null
|
|
46026
46020
|
completed_at: Date | null
|
|
46021
|
+
is_committed: boolean | null
|
|
46027
46022
|
title: string | null
|
|
46028
46023
|
description: string | null
|
|
46029
46024
|
order_no: number | null
|
|
@@ -46079,6 +46074,7 @@ export namespace Prisma {
|
|
|
46079
46074
|
round_status?: boolean
|
|
46080
46075
|
comments?: boolean
|
|
46081
46076
|
completed_at?: boolean
|
|
46077
|
+
is_committed?: boolean
|
|
46082
46078
|
title?: boolean
|
|
46083
46079
|
description?: boolean
|
|
46084
46080
|
order_no?: boolean
|
|
@@ -46124,6 +46120,7 @@ export namespace Prisma {
|
|
|
46124
46120
|
round_status?: boolean
|
|
46125
46121
|
comments?: boolean
|
|
46126
46122
|
completed_at?: boolean
|
|
46123
|
+
is_committed?: boolean
|
|
46127
46124
|
title?: boolean
|
|
46128
46125
|
description?: boolean
|
|
46129
46126
|
order_no?: boolean
|
|
@@ -46168,6 +46165,7 @@ export namespace Prisma {
|
|
|
46168
46165
|
round_status?: boolean
|
|
46169
46166
|
comments?: boolean
|
|
46170
46167
|
completed_at?: boolean
|
|
46168
|
+
is_committed?: boolean
|
|
46171
46169
|
title?: boolean
|
|
46172
46170
|
description?: boolean
|
|
46173
46171
|
order_no?: boolean
|
|
@@ -46212,6 +46210,7 @@ export namespace Prisma {
|
|
|
46212
46210
|
round_status?: boolean
|
|
46213
46211
|
comments?: boolean
|
|
46214
46212
|
completed_at?: boolean
|
|
46213
|
+
is_committed?: boolean
|
|
46215
46214
|
title?: boolean
|
|
46216
46215
|
description?: boolean
|
|
46217
46216
|
order_no?: boolean
|
|
@@ -46233,7 +46232,7 @@ export namespace Prisma {
|
|
|
46233
46232
|
is_current?: boolean
|
|
46234
46233
|
}
|
|
46235
46234
|
|
|
46236
|
-
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" | "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"]>
|
|
46235
|
+
export type OngoingEvaluationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "application_id" | "candidate_id" | "resume_id" | "job_description_id" | "evaluation_plan_id" | "interview_id" | "assignment_id" | "assessment_id" | "state" | "round_status" | "comments" | "completed_at" | "is_committed" | "title" | "description" | "order_no" | "format" | "topics" | "assignee" | "elimination_round" | "evaluation_type" | "type_of_round" | "duration" | "deadline" | "duration_unit" | "details" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "is_current", ExtArgs["result"]["ongoingEvaluation"]>
|
|
46237
46236
|
export type OngoingEvaluationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46238
46237
|
jobDescription?: boolean | OngoingEvaluation$jobDescriptionArgs<ExtArgs>
|
|
46239
46238
|
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
@@ -46294,6 +46293,7 @@ export namespace Prisma {
|
|
|
46294
46293
|
round_status: $Enums.OngoingEvaluationRoundStatus | null
|
|
46295
46294
|
comments: string | null
|
|
46296
46295
|
completed_at: Date | null
|
|
46296
|
+
is_committed: boolean | null
|
|
46297
46297
|
/**
|
|
46298
46298
|
* Evaluation Plan Fields Filled After Round Started
|
|
46299
46299
|
*/
|
|
@@ -46762,6 +46762,7 @@ export namespace Prisma {
|
|
|
46762
46762
|
readonly round_status: FieldRef<"OngoingEvaluation", 'OngoingEvaluationRoundStatus'>
|
|
46763
46763
|
readonly comments: FieldRef<"OngoingEvaluation", 'String'>
|
|
46764
46764
|
readonly completed_at: FieldRef<"OngoingEvaluation", 'DateTime'>
|
|
46765
|
+
readonly is_committed: FieldRef<"OngoingEvaluation", 'Boolean'>
|
|
46765
46766
|
readonly title: FieldRef<"OngoingEvaluation", 'String'>
|
|
46766
46767
|
readonly description: FieldRef<"OngoingEvaluation", 'String'>
|
|
46767
46768
|
readonly order_no: FieldRef<"OngoingEvaluation", 'Int'>
|
|
@@ -67339,7 +67340,6 @@ export namespace Prisma {
|
|
|
67339
67340
|
summary: 'summary',
|
|
67340
67341
|
ai_insight: 'ai_insight',
|
|
67341
67342
|
job_fit_comparison: 'job_fit_comparison',
|
|
67342
|
-
recommendation_config: 'recommendation_config',
|
|
67343
67343
|
created_at: 'created_at',
|
|
67344
67344
|
updated_at: 'updated_at',
|
|
67345
67345
|
created_by: 'created_by',
|
|
@@ -67458,6 +67458,7 @@ export namespace Prisma {
|
|
|
67458
67458
|
round_status: 'round_status',
|
|
67459
67459
|
comments: 'comments',
|
|
67460
67460
|
completed_at: 'completed_at',
|
|
67461
|
+
is_committed: 'is_committed',
|
|
67461
67462
|
title: 'title',
|
|
67462
67463
|
description: 'description',
|
|
67463
67464
|
order_no: 'order_no',
|
|
@@ -71242,7 +71243,6 @@ export namespace Prisma {
|
|
|
71242
71243
|
summary?: JsonNullableFilter<"JobDescription">
|
|
71243
71244
|
ai_insight?: JsonNullableFilter<"JobDescription">
|
|
71244
71245
|
job_fit_comparison?: JsonNullableFilter<"JobDescription">
|
|
71245
|
-
recommendation_config?: JsonNullableFilter<"JobDescription">
|
|
71246
71246
|
created_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
71247
71247
|
updated_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
71248
71248
|
created_by?: StringFilter<"JobDescription"> | string
|
|
@@ -71282,7 +71282,6 @@ export namespace Prisma {
|
|
|
71282
71282
|
summary?: SortOrderInput | SortOrder
|
|
71283
71283
|
ai_insight?: SortOrderInput | SortOrder
|
|
71284
71284
|
job_fit_comparison?: SortOrderInput | SortOrder
|
|
71285
|
-
recommendation_config?: SortOrderInput | SortOrder
|
|
71286
71285
|
created_at?: SortOrder
|
|
71287
71286
|
updated_at?: SortOrder
|
|
71288
71287
|
created_by?: SortOrder
|
|
@@ -71325,7 +71324,6 @@ export namespace Prisma {
|
|
|
71325
71324
|
summary?: JsonNullableFilter<"JobDescription">
|
|
71326
71325
|
ai_insight?: JsonNullableFilter<"JobDescription">
|
|
71327
71326
|
job_fit_comparison?: JsonNullableFilter<"JobDescription">
|
|
71328
|
-
recommendation_config?: JsonNullableFilter<"JobDescription">
|
|
71329
71327
|
created_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
71330
71328
|
updated_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
71331
71329
|
created_by?: StringFilter<"JobDescription"> | string
|
|
@@ -71365,7 +71363,6 @@ export namespace Prisma {
|
|
|
71365
71363
|
summary?: SortOrderInput | SortOrder
|
|
71366
71364
|
ai_insight?: SortOrderInput | SortOrder
|
|
71367
71365
|
job_fit_comparison?: SortOrderInput | SortOrder
|
|
71368
|
-
recommendation_config?: SortOrderInput | SortOrder
|
|
71369
71366
|
created_at?: SortOrder
|
|
71370
71367
|
updated_at?: SortOrder
|
|
71371
71368
|
created_by?: SortOrder
|
|
@@ -71396,7 +71393,6 @@ export namespace Prisma {
|
|
|
71396
71393
|
summary?: JsonNullableWithAggregatesFilter<"JobDescription">
|
|
71397
71394
|
ai_insight?: JsonNullableWithAggregatesFilter<"JobDescription">
|
|
71398
71395
|
job_fit_comparison?: JsonNullableWithAggregatesFilter<"JobDescription">
|
|
71399
|
-
recommendation_config?: JsonNullableWithAggregatesFilter<"JobDescription">
|
|
71400
71396
|
created_at?: DateTimeWithAggregatesFilter<"JobDescription"> | Date | string
|
|
71401
71397
|
updated_at?: DateTimeWithAggregatesFilter<"JobDescription"> | Date | string
|
|
71402
71398
|
created_by?: StringWithAggregatesFilter<"JobDescription"> | string
|
|
@@ -71898,6 +71894,7 @@ export namespace Prisma {
|
|
|
71898
71894
|
round_status?: EnumOngoingEvaluationRoundStatusNullableFilter<"OngoingEvaluation"> | $Enums.OngoingEvaluationRoundStatus | null
|
|
71899
71895
|
comments?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
71900
71896
|
completed_at?: DateTimeNullableFilter<"OngoingEvaluation"> | Date | string | null
|
|
71897
|
+
is_committed?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
|
|
71901
71898
|
title?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
71902
71899
|
description?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
71903
71900
|
order_no?: IntNullableFilter<"OngoingEvaluation"> | number | null
|
|
@@ -71943,6 +71940,7 @@ export namespace Prisma {
|
|
|
71943
71940
|
round_status?: SortOrderInput | SortOrder
|
|
71944
71941
|
comments?: SortOrderInput | SortOrder
|
|
71945
71942
|
completed_at?: SortOrderInput | SortOrder
|
|
71943
|
+
is_committed?: SortOrderInput | SortOrder
|
|
71946
71944
|
title?: SortOrderInput | SortOrder
|
|
71947
71945
|
description?: SortOrderInput | SortOrder
|
|
71948
71946
|
order_no?: SortOrderInput | SortOrder
|
|
@@ -71992,6 +71990,7 @@ export namespace Prisma {
|
|
|
71992
71990
|
round_status?: EnumOngoingEvaluationRoundStatusNullableFilter<"OngoingEvaluation"> | $Enums.OngoingEvaluationRoundStatus | null
|
|
71993
71991
|
comments?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
71994
71992
|
completed_at?: DateTimeNullableFilter<"OngoingEvaluation"> | Date | string | null
|
|
71993
|
+
is_committed?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
|
|
71995
71994
|
title?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
71996
71995
|
description?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
71997
71996
|
order_no?: IntNullableFilter<"OngoingEvaluation"> | number | null
|
|
@@ -72037,6 +72036,7 @@ export namespace Prisma {
|
|
|
72037
72036
|
round_status?: SortOrderInput | SortOrder
|
|
72038
72037
|
comments?: SortOrderInput | SortOrder
|
|
72039
72038
|
completed_at?: SortOrderInput | SortOrder
|
|
72039
|
+
is_committed?: SortOrderInput | SortOrder
|
|
72040
72040
|
title?: SortOrderInput | SortOrder
|
|
72041
72041
|
description?: SortOrderInput | SortOrder
|
|
72042
72042
|
order_no?: SortOrderInput | SortOrder
|
|
@@ -72081,6 +72081,7 @@ export namespace Prisma {
|
|
|
72081
72081
|
round_status?: EnumOngoingEvaluationRoundStatusNullableWithAggregatesFilter<"OngoingEvaluation"> | $Enums.OngoingEvaluationRoundStatus | null
|
|
72082
72082
|
comments?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
|
|
72083
72083
|
completed_at?: DateTimeNullableWithAggregatesFilter<"OngoingEvaluation"> | Date | string | null
|
|
72084
|
+
is_committed?: BoolNullableWithAggregatesFilter<"OngoingEvaluation"> | boolean | null
|
|
72084
72085
|
title?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
|
|
72085
72086
|
description?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
|
|
72086
72087
|
order_no?: IntNullableWithAggregatesFilter<"OngoingEvaluation"> | number | null
|
|
@@ -76975,7 +76976,6 @@ export namespace Prisma {
|
|
|
76975
76976
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
76976
76977
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
76977
76978
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
76978
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
76979
76979
|
created_at?: Date | string
|
|
76980
76980
|
updated_at?: Date | string
|
|
76981
76981
|
created_by: string
|
|
@@ -77014,7 +77014,6 @@ export namespace Prisma {
|
|
|
77014
77014
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
77015
77015
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77016
77016
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77017
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
77018
77017
|
created_at?: Date | string
|
|
77019
77018
|
updated_at?: Date | string
|
|
77020
77019
|
created_by: string
|
|
@@ -77049,7 +77048,6 @@ export namespace Prisma {
|
|
|
77049
77048
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
77050
77049
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77051
77050
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77052
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
77053
77051
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77054
77052
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77055
77053
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -77088,7 +77086,6 @@ export namespace Prisma {
|
|
|
77088
77086
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
77089
77087
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77090
77088
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77091
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
77092
77089
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77093
77090
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77094
77091
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -77125,7 +77122,6 @@ export namespace Prisma {
|
|
|
77125
77122
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
77126
77123
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77127
77124
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77128
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
77129
77125
|
created_at?: Date | string
|
|
77130
77126
|
updated_at?: Date | string
|
|
77131
77127
|
created_by: string
|
|
@@ -77146,7 +77142,6 @@ export namespace Prisma {
|
|
|
77146
77142
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
77147
77143
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77148
77144
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77149
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
77150
77145
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77151
77146
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77152
77147
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -77168,7 +77163,6 @@ export namespace Prisma {
|
|
|
77168
77163
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
77169
77164
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77170
77165
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77171
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
77172
77166
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77173
77167
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77174
77168
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -77711,6 +77705,7 @@ export namespace Prisma {
|
|
|
77711
77705
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
77712
77706
|
comments?: string | null
|
|
77713
77707
|
completed_at?: Date | string | null
|
|
77708
|
+
is_committed?: boolean | null
|
|
77714
77709
|
title?: string | null
|
|
77715
77710
|
description?: string | null
|
|
77716
77711
|
order_no?: number | null
|
|
@@ -77756,6 +77751,7 @@ export namespace Prisma {
|
|
|
77756
77751
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
77757
77752
|
comments?: string | null
|
|
77758
77753
|
completed_at?: Date | string | null
|
|
77754
|
+
is_committed?: boolean | null
|
|
77759
77755
|
title?: string | null
|
|
77760
77756
|
description?: string | null
|
|
77761
77757
|
order_no?: number | null
|
|
@@ -77785,6 +77781,7 @@ export namespace Prisma {
|
|
|
77785
77781
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
77786
77782
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77787
77783
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
77784
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77788
77785
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77789
77786
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77790
77787
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -77830,6 +77827,7 @@ export namespace Prisma {
|
|
|
77830
77827
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
77831
77828
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77832
77829
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
77830
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77833
77831
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77834
77832
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77835
77833
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -77867,6 +77865,7 @@ export namespace Prisma {
|
|
|
77867
77865
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
77868
77866
|
comments?: string | null
|
|
77869
77867
|
completed_at?: Date | string | null
|
|
77868
|
+
is_committed?: boolean | null
|
|
77870
77869
|
title?: string | null
|
|
77871
77870
|
description?: string | null
|
|
77872
77871
|
order_no?: number | null
|
|
@@ -77895,6 +77894,7 @@ export namespace Prisma {
|
|
|
77895
77894
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
77896
77895
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77897
77896
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
77897
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77898
77898
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77899
77899
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77900
77900
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -77931,6 +77931,7 @@ export namespace Prisma {
|
|
|
77931
77931
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
77932
77932
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77933
77933
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
77934
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77934
77935
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77935
77936
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77936
77937
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -82488,7 +82489,6 @@ export namespace Prisma {
|
|
|
82488
82489
|
summary?: SortOrder
|
|
82489
82490
|
ai_insight?: SortOrder
|
|
82490
82491
|
job_fit_comparison?: SortOrder
|
|
82491
|
-
recommendation_config?: SortOrder
|
|
82492
82492
|
created_at?: SortOrder
|
|
82493
82493
|
updated_at?: SortOrder
|
|
82494
82494
|
created_by?: SortOrder
|
|
@@ -82867,6 +82867,7 @@ export namespace Prisma {
|
|
|
82867
82867
|
round_status?: SortOrder
|
|
82868
82868
|
comments?: SortOrder
|
|
82869
82869
|
completed_at?: SortOrder
|
|
82870
|
+
is_committed?: SortOrder
|
|
82870
82871
|
title?: SortOrder
|
|
82871
82872
|
description?: SortOrder
|
|
82872
82873
|
order_no?: SortOrder
|
|
@@ -82909,6 +82910,7 @@ export namespace Prisma {
|
|
|
82909
82910
|
round_status?: SortOrder
|
|
82910
82911
|
comments?: SortOrder
|
|
82911
82912
|
completed_at?: SortOrder
|
|
82913
|
+
is_committed?: SortOrder
|
|
82912
82914
|
title?: SortOrder
|
|
82913
82915
|
description?: SortOrder
|
|
82914
82916
|
order_no?: SortOrder
|
|
@@ -82943,6 +82945,7 @@ export namespace Prisma {
|
|
|
82943
82945
|
round_status?: SortOrder
|
|
82944
82946
|
comments?: SortOrder
|
|
82945
82947
|
completed_at?: SortOrder
|
|
82948
|
+
is_committed?: SortOrder
|
|
82946
82949
|
title?: SortOrder
|
|
82947
82950
|
description?: SortOrder
|
|
82948
82951
|
order_no?: SortOrder
|
|
@@ -87122,15 +87125,15 @@ export namespace Prisma {
|
|
|
87122
87125
|
set?: $Enums.OngoingEvaluationRoundStatus | null
|
|
87123
87126
|
}
|
|
87124
87127
|
|
|
87128
|
+
export type NullableBoolFieldUpdateOperationsInput = {
|
|
87129
|
+
set?: boolean | null
|
|
87130
|
+
}
|
|
87131
|
+
|
|
87125
87132
|
export type OngoingEvaluationUpdatetopicsInput = {
|
|
87126
87133
|
set?: string[]
|
|
87127
87134
|
push?: string | string[]
|
|
87128
87135
|
}
|
|
87129
87136
|
|
|
87130
|
-
export type NullableBoolFieldUpdateOperationsInput = {
|
|
87131
|
-
set?: boolean | null
|
|
87132
|
-
}
|
|
87133
|
-
|
|
87134
87137
|
export type NullableEnumRoundTypeFieldUpdateOperationsInput = {
|
|
87135
87138
|
set?: $Enums.RoundType | null
|
|
87136
87139
|
}
|
|
@@ -93235,7 +93238,6 @@ export namespace Prisma {
|
|
|
93235
93238
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
93236
93239
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
93237
93240
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
93238
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
93239
93241
|
created_at?: Date | string
|
|
93240
93242
|
updated_at?: Date | string
|
|
93241
93243
|
created_by: string
|
|
@@ -93273,7 +93275,6 @@ export namespace Prisma {
|
|
|
93273
93275
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
93274
93276
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
93275
93277
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
93276
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
93277
93278
|
created_at?: Date | string
|
|
93278
93279
|
updated_at?: Date | string
|
|
93279
93280
|
created_by: string
|
|
@@ -93549,6 +93550,7 @@ export namespace Prisma {
|
|
|
93549
93550
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
93550
93551
|
comments?: string | null
|
|
93551
93552
|
completed_at?: Date | string | null
|
|
93553
|
+
is_committed?: boolean | null
|
|
93552
93554
|
title?: string | null
|
|
93553
93555
|
description?: string | null
|
|
93554
93556
|
order_no?: number | null
|
|
@@ -93592,6 +93594,7 @@ export namespace Prisma {
|
|
|
93592
93594
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
93593
93595
|
comments?: string | null
|
|
93594
93596
|
completed_at?: Date | string | null
|
|
93597
|
+
is_committed?: boolean | null
|
|
93595
93598
|
title?: string | null
|
|
93596
93599
|
description?: string | null
|
|
93597
93600
|
order_no?: number | null
|
|
@@ -94080,7 +94083,6 @@ export namespace Prisma {
|
|
|
94080
94083
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94081
94084
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
94082
94085
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94083
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
94084
94086
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94085
94087
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94086
94088
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -94118,7 +94120,6 @@ export namespace Prisma {
|
|
|
94118
94120
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94119
94121
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
94120
94122
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94121
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
94122
94123
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94123
94124
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94124
94125
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -94361,6 +94362,7 @@ export namespace Prisma {
|
|
|
94361
94362
|
round_status?: EnumOngoingEvaluationRoundStatusNullableFilter<"OngoingEvaluation"> | $Enums.OngoingEvaluationRoundStatus | null
|
|
94362
94363
|
comments?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
94363
94364
|
completed_at?: DateTimeNullableFilter<"OngoingEvaluation"> | Date | string | null
|
|
94365
|
+
is_committed?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
|
|
94364
94366
|
title?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
94365
94367
|
description?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
94366
94368
|
order_no?: IntNullableFilter<"OngoingEvaluation"> | number | null
|
|
@@ -94456,7 +94458,6 @@ export namespace Prisma {
|
|
|
94456
94458
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94457
94459
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
94458
94460
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94459
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
94460
94461
|
created_at?: Date | string
|
|
94461
94462
|
updated_at?: Date | string
|
|
94462
94463
|
created_by: string
|
|
@@ -94494,7 +94495,6 @@ export namespace Prisma {
|
|
|
94494
94495
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94495
94496
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
94496
94497
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94497
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
94498
94498
|
created_at?: Date | string
|
|
94499
94499
|
updated_at?: Date | string
|
|
94500
94500
|
created_by: string
|
|
@@ -94774,7 +94774,6 @@ export namespace Prisma {
|
|
|
94774
94774
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94775
94775
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
94776
94776
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94777
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
94778
94777
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94779
94778
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94780
94779
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -94812,7 +94811,6 @@ export namespace Prisma {
|
|
|
94812
94811
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94813
94812
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
94814
94813
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94815
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
94816
94814
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94817
94815
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94818
94816
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -95703,6 +95701,7 @@ export namespace Prisma {
|
|
|
95703
95701
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
95704
95702
|
comments?: string | null
|
|
95705
95703
|
completed_at?: Date | string | null
|
|
95704
|
+
is_committed?: boolean | null
|
|
95706
95705
|
title?: string | null
|
|
95707
95706
|
description?: string | null
|
|
95708
95707
|
order_no?: number | null
|
|
@@ -95746,6 +95745,7 @@ export namespace Prisma {
|
|
|
95746
95745
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
95747
95746
|
comments?: string | null
|
|
95748
95747
|
completed_at?: Date | string | null
|
|
95748
|
+
is_committed?: boolean | null
|
|
95749
95749
|
title?: string | null
|
|
95750
95750
|
description?: string | null
|
|
95751
95751
|
order_no?: number | null
|
|
@@ -96441,6 +96441,7 @@ export namespace Prisma {
|
|
|
96441
96441
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
96442
96442
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96443
96443
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
96444
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
96444
96445
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96445
96446
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96446
96447
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -96484,6 +96485,7 @@ export namespace Prisma {
|
|
|
96484
96485
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
96485
96486
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96486
96487
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
96488
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
96487
96489
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96488
96490
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96489
96491
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -97596,7 +97598,6 @@ export namespace Prisma {
|
|
|
97596
97598
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
97597
97599
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
97598
97600
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
97599
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
97600
97601
|
created_at?: Date | string
|
|
97601
97602
|
updated_at?: Date | string
|
|
97602
97603
|
created_by: string
|
|
@@ -97634,7 +97635,6 @@ export namespace Prisma {
|
|
|
97634
97635
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
97635
97636
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
97636
97637
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
97637
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
97638
97638
|
created_at?: Date | string
|
|
97639
97639
|
updated_at?: Date | string
|
|
97640
97640
|
created_by: string
|
|
@@ -97734,6 +97734,7 @@ export namespace Prisma {
|
|
|
97734
97734
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
97735
97735
|
comments?: string | null
|
|
97736
97736
|
completed_at?: Date | string | null
|
|
97737
|
+
is_committed?: boolean | null
|
|
97737
97738
|
title?: string | null
|
|
97738
97739
|
description?: string | null
|
|
97739
97740
|
order_no?: number | null
|
|
@@ -97778,6 +97779,7 @@ export namespace Prisma {
|
|
|
97778
97779
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
97779
97780
|
comments?: string | null
|
|
97780
97781
|
completed_at?: Date | string | null
|
|
97782
|
+
is_committed?: boolean | null
|
|
97781
97783
|
title?: string | null
|
|
97782
97784
|
description?: string | null
|
|
97783
97785
|
order_no?: number | null
|
|
@@ -98260,7 +98262,6 @@ export namespace Prisma {
|
|
|
98260
98262
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98261
98263
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
98262
98264
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
98263
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
98264
98265
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98265
98266
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98266
98267
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98298,7 +98299,6 @@ export namespace Prisma {
|
|
|
98298
98299
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98299
98300
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
98300
98301
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
98301
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
98302
98302
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98303
98303
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98304
98304
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98410,6 +98410,7 @@ export namespace Prisma {
|
|
|
98410
98410
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
98411
98411
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98412
98412
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98413
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98413
98414
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98414
98415
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98415
98416
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -98454,6 +98455,7 @@ export namespace Prisma {
|
|
|
98454
98455
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
98455
98456
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98456
98457
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98458
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98457
98459
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98458
98460
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98459
98461
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -98569,7 +98571,6 @@ export namespace Prisma {
|
|
|
98569
98571
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98570
98572
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
98571
98573
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
98572
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
98573
98574
|
created_at?: Date | string
|
|
98574
98575
|
updated_at?: Date | string
|
|
98575
98576
|
created_by: string
|
|
@@ -98607,7 +98608,6 @@ export namespace Prisma {
|
|
|
98607
98608
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98608
98609
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
98609
98610
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
98610
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
98611
98611
|
created_at?: Date | string
|
|
98612
98612
|
updated_at?: Date | string
|
|
98613
98613
|
created_by: string
|
|
@@ -98872,7 +98872,6 @@ export namespace Prisma {
|
|
|
98872
98872
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98873
98873
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
98874
98874
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
98875
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
98876
98875
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98877
98876
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98878
98877
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98910,7 +98909,6 @@ export namespace Prisma {
|
|
|
98910
98909
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98911
98910
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
98912
98911
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
98913
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
98914
98912
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98915
98913
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98916
98914
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99276,7 +99274,6 @@ export namespace Prisma {
|
|
|
99276
99274
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
99277
99275
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
99278
99276
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
99279
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
99280
99277
|
created_at?: Date | string
|
|
99281
99278
|
updated_at?: Date | string
|
|
99282
99279
|
created_by: string
|
|
@@ -99314,7 +99311,6 @@ export namespace Prisma {
|
|
|
99314
99311
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
99315
99312
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
99316
99313
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
99317
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
99318
99314
|
created_at?: Date | string
|
|
99319
99315
|
updated_at?: Date | string
|
|
99320
99316
|
created_by: string
|
|
@@ -99364,7 +99360,6 @@ export namespace Prisma {
|
|
|
99364
99360
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
99365
99361
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
99366
99362
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
99367
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
99368
99363
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99369
99364
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99370
99365
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99402,7 +99397,6 @@ export namespace Prisma {
|
|
|
99402
99397
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
99403
99398
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
99404
99399
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
99405
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
99406
99400
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99407
99401
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99408
99402
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100140,7 +100134,6 @@ export namespace Prisma {
|
|
|
100140
100134
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
100141
100135
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
100142
100136
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
100143
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
100144
100137
|
created_at?: Date | string
|
|
100145
100138
|
updated_at?: Date | string
|
|
100146
100139
|
created_by: string
|
|
@@ -100178,7 +100171,6 @@ export namespace Prisma {
|
|
|
100178
100171
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
100179
100172
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
100180
100173
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
100181
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
100182
100174
|
created_at?: Date | string
|
|
100183
100175
|
updated_at?: Date | string
|
|
100184
100176
|
created_by: string
|
|
@@ -100513,6 +100505,7 @@ export namespace Prisma {
|
|
|
100513
100505
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
100514
100506
|
comments?: string | null
|
|
100515
100507
|
completed_at?: Date | string | null
|
|
100508
|
+
is_committed?: boolean | null
|
|
100516
100509
|
title?: string | null
|
|
100517
100510
|
description?: string | null
|
|
100518
100511
|
order_no?: number | null
|
|
@@ -100556,6 +100549,7 @@ export namespace Prisma {
|
|
|
100556
100549
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
100557
100550
|
comments?: string | null
|
|
100558
100551
|
completed_at?: Date | string | null
|
|
100552
|
+
is_committed?: boolean | null
|
|
100559
100553
|
title?: string | null
|
|
100560
100554
|
description?: string | null
|
|
100561
100555
|
order_no?: number | null
|
|
@@ -100610,7 +100604,6 @@ export namespace Prisma {
|
|
|
100610
100604
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
100611
100605
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
100612
100606
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
100613
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
100614
100607
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100615
100608
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100616
100609
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100648,7 +100641,6 @@ export namespace Prisma {
|
|
|
100648
100641
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
100649
100642
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
100650
100643
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
100651
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
100652
100644
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100653
100645
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100654
100646
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101356,7 +101348,6 @@ export namespace Prisma {
|
|
|
101356
101348
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
101357
101349
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
101358
101350
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
101359
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
101360
101351
|
created_at?: Date | string
|
|
101361
101352
|
updated_at?: Date | string
|
|
101362
101353
|
created_by: string
|
|
@@ -101394,7 +101385,6 @@ export namespace Prisma {
|
|
|
101394
101385
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
101395
101386
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
101396
101387
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
101397
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
101398
101388
|
created_at?: Date | string
|
|
101399
101389
|
updated_at?: Date | string
|
|
101400
101390
|
created_by: string
|
|
@@ -101806,7 +101796,6 @@ export namespace Prisma {
|
|
|
101806
101796
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
101807
101797
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
101808
101798
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
101809
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
101810
101799
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101811
101800
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101812
101801
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101844,7 +101833,6 @@ export namespace Prisma {
|
|
|
101844
101833
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
101845
101834
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
101846
101835
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
101847
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
101848
101836
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101849
101837
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101850
101838
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -102421,7 +102409,6 @@ export namespace Prisma {
|
|
|
102421
102409
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
102422
102410
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
102423
102411
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
102424
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
102425
102412
|
created_at?: Date | string
|
|
102426
102413
|
updated_at?: Date | string
|
|
102427
102414
|
created_by: string
|
|
@@ -102459,7 +102446,6 @@ export namespace Prisma {
|
|
|
102459
102446
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
102460
102447
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
102461
102448
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
102462
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
102463
102449
|
created_at?: Date | string
|
|
102464
102450
|
updated_at?: Date | string
|
|
102465
102451
|
created_by: string
|
|
@@ -102509,7 +102495,6 @@ export namespace Prisma {
|
|
|
102509
102495
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
102510
102496
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
102511
102497
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
102512
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
102513
102498
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102514
102499
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102515
102500
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -102547,7 +102532,6 @@ export namespace Prisma {
|
|
|
102547
102532
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
102548
102533
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
102549
102534
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
102550
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
102551
102535
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102552
102536
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102553
102537
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -103130,7 +103114,6 @@ export namespace Prisma {
|
|
|
103130
103114
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
103131
103115
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
103132
103116
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
103133
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
103134
103117
|
created_at?: Date | string
|
|
103135
103118
|
updated_at?: Date | string
|
|
103136
103119
|
created_by: string
|
|
@@ -103168,7 +103151,6 @@ export namespace Prisma {
|
|
|
103168
103151
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
103169
103152
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
103170
103153
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
103171
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
103172
103154
|
created_at?: Date | string
|
|
103173
103155
|
updated_at?: Date | string
|
|
103174
103156
|
created_by: string
|
|
@@ -103382,6 +103364,7 @@ export namespace Prisma {
|
|
|
103382
103364
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
103383
103365
|
comments?: string | null
|
|
103384
103366
|
completed_at?: Date | string | null
|
|
103367
|
+
is_committed?: boolean | null
|
|
103385
103368
|
title?: string | null
|
|
103386
103369
|
description?: string | null
|
|
103387
103370
|
order_no?: number | null
|
|
@@ -103425,6 +103408,7 @@ export namespace Prisma {
|
|
|
103425
103408
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
103426
103409
|
comments?: string | null
|
|
103427
103410
|
completed_at?: Date | string | null
|
|
103411
|
+
is_committed?: boolean | null
|
|
103428
103412
|
title?: string | null
|
|
103429
103413
|
description?: string | null
|
|
103430
103414
|
order_no?: number | null
|
|
@@ -104092,7 +104076,6 @@ export namespace Prisma {
|
|
|
104092
104076
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
104093
104077
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
104094
104078
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
104095
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
104096
104079
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104097
104080
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104098
104081
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -104130,7 +104113,6 @@ export namespace Prisma {
|
|
|
104130
104113
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
104131
104114
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
104132
104115
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
104133
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
104134
104116
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104135
104117
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104136
104118
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -104368,6 +104350,7 @@ export namespace Prisma {
|
|
|
104368
104350
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
104369
104351
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104370
104352
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104353
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
104371
104354
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104372
104355
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104373
104356
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -104411,6 +104394,7 @@ export namespace Prisma {
|
|
|
104411
104394
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
104412
104395
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104413
104396
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104397
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
104414
104398
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104415
104399
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104416
104400
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -105435,6 +105419,7 @@ export namespace Prisma {
|
|
|
105435
105419
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
105436
105420
|
comments?: string | null
|
|
105437
105421
|
completed_at?: Date | string | null
|
|
105422
|
+
is_committed?: boolean | null
|
|
105438
105423
|
title?: string | null
|
|
105439
105424
|
description?: string | null
|
|
105440
105425
|
order_no?: number | null
|
|
@@ -105478,6 +105463,7 @@ export namespace Prisma {
|
|
|
105478
105463
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
105479
105464
|
comments?: string | null
|
|
105480
105465
|
completed_at?: Date | string | null
|
|
105466
|
+
is_committed?: boolean | null
|
|
105481
105467
|
title?: string | null
|
|
105482
105468
|
description?: string | null
|
|
105483
105469
|
order_no?: number | null
|
|
@@ -106757,7 +106743,6 @@ export namespace Prisma {
|
|
|
106757
106743
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
106758
106744
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
106759
106745
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
106760
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
106761
106746
|
created_at?: Date | string
|
|
106762
106747
|
updated_at?: Date | string
|
|
106763
106748
|
created_by: string
|
|
@@ -106795,7 +106780,6 @@ export namespace Prisma {
|
|
|
106795
106780
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
106796
106781
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
106797
106782
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
106798
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
106799
106783
|
created_at?: Date | string
|
|
106800
106784
|
updated_at?: Date | string
|
|
106801
106785
|
created_by: string
|
|
@@ -106845,7 +106829,6 @@ export namespace Prisma {
|
|
|
106845
106829
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
106846
106830
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
106847
106831
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
106848
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
106849
106832
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106850
106833
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106851
106834
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -106883,7 +106866,6 @@ export namespace Prisma {
|
|
|
106883
106866
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
106884
106867
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
106885
106868
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
106886
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
106887
106869
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106888
106870
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106889
106871
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -107441,7 +107423,6 @@ export namespace Prisma {
|
|
|
107441
107423
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
107442
107424
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
107443
107425
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
107444
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
107445
107426
|
created_at?: Date | string
|
|
107446
107427
|
updated_at?: Date | string
|
|
107447
107428
|
created_by: string
|
|
@@ -107479,7 +107460,6 @@ export namespace Prisma {
|
|
|
107479
107460
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
107480
107461
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
107481
107462
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
107482
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
107483
107463
|
created_at?: Date | string
|
|
107484
107464
|
updated_at?: Date | string
|
|
107485
107465
|
created_by: string
|
|
@@ -108092,7 +108072,6 @@ export namespace Prisma {
|
|
|
108092
108072
|
summary?: JsonNullableFilter<"JobDescription">
|
|
108093
108073
|
ai_insight?: JsonNullableFilter<"JobDescription">
|
|
108094
108074
|
job_fit_comparison?: JsonNullableFilter<"JobDescription">
|
|
108095
|
-
recommendation_config?: JsonNullableFilter<"JobDescription">
|
|
108096
108075
|
created_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
108097
108076
|
updated_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
108098
108077
|
created_by?: StringFilter<"JobDescription"> | string
|
|
@@ -109369,7 +109348,6 @@ export namespace Prisma {
|
|
|
109369
109348
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
109370
109349
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
109371
109350
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
109372
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
109373
109351
|
created_at?: Date | string
|
|
109374
109352
|
updated_at?: Date | string
|
|
109375
109353
|
created_by: string
|
|
@@ -109407,7 +109385,6 @@ export namespace Prisma {
|
|
|
109407
109385
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
109408
109386
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
109409
109387
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
109410
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
109411
109388
|
created_at?: Date | string
|
|
109412
109389
|
updated_at?: Date | string
|
|
109413
109390
|
created_by: string
|
|
@@ -110075,7 +110052,6 @@ export namespace Prisma {
|
|
|
110075
110052
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
110076
110053
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
110077
110054
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
110078
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
110079
110055
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
110080
110056
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
110081
110057
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -110113,7 +110089,6 @@ export namespace Prisma {
|
|
|
110113
110089
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
110114
110090
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
110115
110091
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
110116
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
110117
110092
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
110118
110093
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
110119
110094
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -111071,7 +111046,6 @@ export namespace Prisma {
|
|
|
111071
111046
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
111072
111047
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
111073
111048
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
111074
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
111075
111049
|
created_at?: Date | string
|
|
111076
111050
|
updated_at?: Date | string
|
|
111077
111051
|
created_by: string
|
|
@@ -111108,7 +111082,6 @@ export namespace Prisma {
|
|
|
111108
111082
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
111109
111083
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
111110
111084
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
111111
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
111112
111085
|
created_at?: Date | string
|
|
111113
111086
|
updated_at?: Date | string
|
|
111114
111087
|
created_by: string
|
|
@@ -111665,6 +111638,7 @@ export namespace Prisma {
|
|
|
111665
111638
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
111666
111639
|
comments?: string | null
|
|
111667
111640
|
completed_at?: Date | string | null
|
|
111641
|
+
is_committed?: boolean | null
|
|
111668
111642
|
title?: string | null
|
|
111669
111643
|
description?: string | null
|
|
111670
111644
|
order_no?: number | null
|
|
@@ -111708,6 +111682,7 @@ export namespace Prisma {
|
|
|
111708
111682
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
111709
111683
|
comments?: string | null
|
|
111710
111684
|
completed_at?: Date | string | null
|
|
111685
|
+
is_committed?: boolean | null
|
|
111711
111686
|
title?: string | null
|
|
111712
111687
|
description?: string | null
|
|
111713
111688
|
order_no?: number | null
|
|
@@ -114066,7 +114041,6 @@ export namespace Prisma {
|
|
|
114066
114041
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
114067
114042
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
114068
114043
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
114069
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
114070
114044
|
created_at?: Date | string
|
|
114071
114045
|
updated_at?: Date | string
|
|
114072
114046
|
created_by: string
|
|
@@ -114104,7 +114078,6 @@ export namespace Prisma {
|
|
|
114104
114078
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
114105
114079
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
114106
114080
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
114107
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
114108
114081
|
created_at?: Date | string
|
|
114109
114082
|
updated_at?: Date | string
|
|
114110
114083
|
created_by: string
|
|
@@ -114321,6 +114294,7 @@ export namespace Prisma {
|
|
|
114321
114294
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
114322
114295
|
comments?: string | null
|
|
114323
114296
|
completed_at?: Date | string | null
|
|
114297
|
+
is_committed?: boolean | null
|
|
114324
114298
|
title?: string | null
|
|
114325
114299
|
description?: string | null
|
|
114326
114300
|
order_no?: number | null
|
|
@@ -114364,6 +114338,7 @@ export namespace Prisma {
|
|
|
114364
114338
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
114365
114339
|
comments?: string | null
|
|
114366
114340
|
completed_at?: Date | string | null
|
|
114341
|
+
is_committed?: boolean | null
|
|
114367
114342
|
title?: string | null
|
|
114368
114343
|
description?: string | null
|
|
114369
114344
|
order_no?: number | null
|
|
@@ -114817,7 +114792,6 @@ export namespace Prisma {
|
|
|
114817
114792
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
114818
114793
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
114819
114794
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
114820
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
114821
114795
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114822
114796
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114823
114797
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -114855,7 +114829,6 @@ export namespace Prisma {
|
|
|
114855
114829
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
114856
114830
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
114857
114831
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
114858
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
114859
114832
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114860
114833
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
114861
114834
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -115733,7 +115706,6 @@ export namespace Prisma {
|
|
|
115733
115706
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
115734
115707
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
115735
115708
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
115736
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
115737
115709
|
created_at?: Date | string
|
|
115738
115710
|
updated_at?: Date | string
|
|
115739
115711
|
created_by: string
|
|
@@ -115771,7 +115743,6 @@ export namespace Prisma {
|
|
|
115771
115743
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
115772
115744
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
115773
115745
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
115774
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
115775
115746
|
created_at?: Date | string
|
|
115776
115747
|
updated_at?: Date | string
|
|
115777
115748
|
created_by: string
|
|
@@ -115973,7 +115944,6 @@ export namespace Prisma {
|
|
|
115973
115944
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
115974
115945
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
115975
115946
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
115976
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
115977
115947
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115978
115948
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115979
115949
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116011,7 +115981,6 @@ export namespace Prisma {
|
|
|
116011
115981
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
116012
115982
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
116013
115983
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
116014
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
116015
115984
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116016
115985
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116017
115986
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116388,7 +116357,6 @@ export namespace Prisma {
|
|
|
116388
116357
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
116389
116358
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
116390
116359
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
116391
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
116392
116360
|
created_at?: Date | string
|
|
116393
116361
|
updated_at?: Date | string
|
|
116394
116362
|
created_by: string
|
|
@@ -116426,7 +116394,6 @@ export namespace Prisma {
|
|
|
116426
116394
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
116427
116395
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
116428
116396
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
116429
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
116430
116397
|
created_at?: Date | string
|
|
116431
116398
|
updated_at?: Date | string
|
|
116432
116399
|
created_by: string
|
|
@@ -116465,7 +116432,6 @@ export namespace Prisma {
|
|
|
116465
116432
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
116466
116433
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
116467
116434
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
116468
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
116469
116435
|
created_at?: Date | string
|
|
116470
116436
|
updated_at?: Date | string
|
|
116471
116437
|
created_by: string
|
|
@@ -116502,7 +116468,6 @@ export namespace Prisma {
|
|
|
116502
116468
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
116503
116469
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
116504
116470
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
116505
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
116506
116471
|
created_at?: Date | string
|
|
116507
116472
|
updated_at?: Date | string
|
|
116508
116473
|
created_by: string
|
|
@@ -117293,6 +117258,7 @@ export namespace Prisma {
|
|
|
117293
117258
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
117294
117259
|
comments?: string | null
|
|
117295
117260
|
completed_at?: Date | string | null
|
|
117261
|
+
is_committed?: boolean | null
|
|
117296
117262
|
title?: string | null
|
|
117297
117263
|
description?: string | null
|
|
117298
117264
|
order_no?: number | null
|
|
@@ -117336,6 +117302,7 @@ export namespace Prisma {
|
|
|
117336
117302
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
117337
117303
|
comments?: string | null
|
|
117338
117304
|
completed_at?: Date | string | null
|
|
117305
|
+
is_committed?: boolean | null
|
|
117339
117306
|
title?: string | null
|
|
117340
117307
|
description?: string | null
|
|
117341
117308
|
order_no?: number | null
|
|
@@ -119934,6 +119901,7 @@ export namespace Prisma {
|
|
|
119934
119901
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
119935
119902
|
comments?: string | null
|
|
119936
119903
|
completed_at?: Date | string | null
|
|
119904
|
+
is_committed?: boolean | null
|
|
119937
119905
|
title?: string | null
|
|
119938
119906
|
description?: string | null
|
|
119939
119907
|
order_no?: number | null
|
|
@@ -120200,6 +120168,7 @@ export namespace Prisma {
|
|
|
120200
120168
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
120201
120169
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120202
120170
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120171
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
120203
120172
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120204
120173
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120205
120174
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -120243,6 +120212,7 @@ export namespace Prisma {
|
|
|
120243
120212
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
120244
120213
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120245
120214
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120215
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
120246
120216
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120247
120217
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120248
120218
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -120279,6 +120249,7 @@ export namespace Prisma {
|
|
|
120279
120249
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
120280
120250
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120281
120251
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120252
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
120282
120253
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120283
120254
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120284
120255
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -121019,6 +120990,7 @@ export namespace Prisma {
|
|
|
121019
120990
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
121020
120991
|
comments?: string | null
|
|
121021
120992
|
completed_at?: Date | string | null
|
|
120993
|
+
is_committed?: boolean | null
|
|
121022
120994
|
title?: string | null
|
|
121023
120995
|
description?: string | null
|
|
121024
120996
|
order_no?: number | null
|
|
@@ -121333,6 +121305,7 @@ export namespace Prisma {
|
|
|
121333
121305
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
121334
121306
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121335
121307
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121308
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
121336
121309
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121337
121310
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121338
121311
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -121376,6 +121349,7 @@ export namespace Prisma {
|
|
|
121376
121349
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
121377
121350
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121378
121351
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121352
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
121379
121353
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121380
121354
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121381
121355
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -121412,6 +121386,7 @@ export namespace Prisma {
|
|
|
121412
121386
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
121413
121387
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121414
121388
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121389
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
121415
121390
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121416
121391
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121417
121392
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -121867,6 +121842,7 @@ export namespace Prisma {
|
|
|
121867
121842
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
121868
121843
|
comments?: string | null
|
|
121869
121844
|
completed_at?: Date | string | null
|
|
121845
|
+
is_committed?: boolean | null
|
|
121870
121846
|
title?: string | null
|
|
121871
121847
|
description?: string | null
|
|
121872
121848
|
order_no?: number | null
|
|
@@ -122483,6 +122459,7 @@ export namespace Prisma {
|
|
|
122483
122459
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
122484
122460
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122485
122461
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
122462
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
122486
122463
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122487
122464
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122488
122465
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -122526,6 +122503,7 @@ export namespace Prisma {
|
|
|
122526
122503
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
122527
122504
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122528
122505
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
122506
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
122529
122507
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122530
122508
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122531
122509
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -122562,6 +122540,7 @@ export namespace Prisma {
|
|
|
122562
122540
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
122563
122541
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122564
122542
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
122543
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
122565
122544
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122566
122545
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122567
122546
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -122999,7 +122978,6 @@ export namespace Prisma {
|
|
|
122999
122978
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123000
122979
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123001
122980
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123002
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123003
122981
|
created_at?: Date | string
|
|
123004
122982
|
updated_at?: Date | string
|
|
123005
122983
|
created_by: string
|
|
@@ -123019,7 +122997,6 @@ export namespace Prisma {
|
|
|
123019
122997
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123020
122998
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123021
122999
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123022
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123023
123000
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123024
123001
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123025
123002
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123057,7 +123034,6 @@ export namespace Prisma {
|
|
|
123057
123034
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123058
123035
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123059
123036
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123060
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123061
123037
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123062
123038
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123063
123039
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123093,7 +123069,6 @@ export namespace Prisma {
|
|
|
123093
123069
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123094
123070
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123095
123071
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123096
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123097
123072
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123098
123073
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123099
123074
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123191,7 +123166,6 @@ export namespace Prisma {
|
|
|
123191
123166
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123192
123167
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123193
123168
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123194
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123195
123169
|
created_at?: Date | string
|
|
123196
123170
|
updated_at?: Date | string
|
|
123197
123171
|
created_by: string
|
|
@@ -123407,6 +123381,7 @@ export namespace Prisma {
|
|
|
123407
123381
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
123408
123382
|
comments?: string | null
|
|
123409
123383
|
completed_at?: Date | string | null
|
|
123384
|
+
is_committed?: boolean | null
|
|
123410
123385
|
title?: string | null
|
|
123411
123386
|
description?: string | null
|
|
123412
123387
|
order_no?: number | null
|
|
@@ -123817,7 +123792,6 @@ export namespace Prisma {
|
|
|
123817
123792
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123818
123793
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123819
123794
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123820
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123821
123795
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123822
123796
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123823
123797
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123854,7 +123828,6 @@ export namespace Prisma {
|
|
|
123854
123828
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123855
123829
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123856
123830
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123857
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123858
123831
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123859
123832
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123860
123833
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123890,7 +123863,6 @@ export namespace Prisma {
|
|
|
123890
123863
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
123891
123864
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
123892
123865
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
123893
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
123894
123866
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123895
123867
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123896
123868
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -124525,6 +124497,7 @@ export namespace Prisma {
|
|
|
124525
124497
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
124526
124498
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124527
124499
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
124500
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
124528
124501
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124529
124502
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124530
124503
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -124568,6 +124541,7 @@ export namespace Prisma {
|
|
|
124568
124541
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
124569
124542
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124570
124543
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
124544
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
124571
124545
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124572
124546
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124573
124547
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -124604,6 +124578,7 @@ export namespace Prisma {
|
|
|
124604
124578
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
124605
124579
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124606
124580
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
124581
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
124607
124582
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124608
124583
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124609
124584
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -125009,6 +124984,7 @@ export namespace Prisma {
|
|
|
125009
124984
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
125010
124985
|
comments?: string | null
|
|
125011
124986
|
completed_at?: Date | string | null
|
|
124987
|
+
is_committed?: boolean | null
|
|
125012
124988
|
title?: string | null
|
|
125013
124989
|
description?: string | null
|
|
125014
124990
|
order_no?: number | null
|
|
@@ -125312,6 +125288,7 @@ export namespace Prisma {
|
|
|
125312
125288
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
125313
125289
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125314
125290
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
125291
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
125315
125292
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125316
125293
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125317
125294
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -125355,6 +125332,7 @@ export namespace Prisma {
|
|
|
125355
125332
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
125356
125333
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125357
125334
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
125335
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
125358
125336
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125359
125337
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125360
125338
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -125391,6 +125369,7 @@ export namespace Prisma {
|
|
|
125391
125369
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
125392
125370
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125393
125371
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
125372
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
125394
125373
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125395
125374
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125396
125375
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -125667,7 +125646,6 @@ export namespace Prisma {
|
|
|
125667
125646
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
125668
125647
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
125669
125648
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
125670
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
125671
125649
|
created_at?: Date | string
|
|
125672
125650
|
updated_at?: Date | string
|
|
125673
125651
|
created_by: string
|
|
@@ -125975,6 +125953,7 @@ export namespace Prisma {
|
|
|
125975
125953
|
round_status?: $Enums.OngoingEvaluationRoundStatus | null
|
|
125976
125954
|
comments?: string | null
|
|
125977
125955
|
completed_at?: Date | string | null
|
|
125956
|
+
is_committed?: boolean | null
|
|
125978
125957
|
title?: string | null
|
|
125979
125958
|
description?: string | null
|
|
125980
125959
|
order_no?: number | null
|
|
@@ -126314,7 +126293,6 @@ export namespace Prisma {
|
|
|
126314
126293
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
126315
126294
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
126316
126295
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
126317
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
126318
126296
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126319
126297
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126320
126298
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -126352,7 +126330,6 @@ export namespace Prisma {
|
|
|
126352
126330
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
126353
126331
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
126354
126332
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
126355
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
126356
126333
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126357
126334
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126358
126335
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -126388,7 +126365,6 @@ export namespace Prisma {
|
|
|
126388
126365
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
126389
126366
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
126390
126367
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
126391
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
126392
126368
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126393
126369
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126394
126370
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -126409,7 +126385,6 @@ export namespace Prisma {
|
|
|
126409
126385
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
126410
126386
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
126411
126387
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
126412
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
126413
126388
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126414
126389
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126415
126390
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -126446,7 +126421,6 @@ export namespace Prisma {
|
|
|
126446
126421
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
126447
126422
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
126448
126423
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
126449
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
126450
126424
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126451
126425
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126452
126426
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -126482,7 +126456,6 @@ export namespace Prisma {
|
|
|
126482
126456
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
126483
126457
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
126484
126458
|
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
126485
|
-
recommendation_config?: NullableJsonNullValueInput | InputJsonValue
|
|
126486
126459
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126487
126460
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
126488
126461
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -127403,6 +127376,7 @@ export namespace Prisma {
|
|
|
127403
127376
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
127404
127377
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127405
127378
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127379
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127406
127380
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127407
127381
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127408
127382
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -127446,6 +127420,7 @@ export namespace Prisma {
|
|
|
127446
127420
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
127447
127421
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127448
127422
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127423
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127449
127424
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127450
127425
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127451
127426
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -127482,6 +127457,7 @@ export namespace Prisma {
|
|
|
127482
127457
|
round_status?: NullableEnumOngoingEvaluationRoundStatusFieldUpdateOperationsInput | $Enums.OngoingEvaluationRoundStatus | null
|
|
127483
127458
|
comments?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127484
127459
|
completed_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
127460
|
+
is_committed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
127485
127461
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127486
127462
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127487
127463
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|