@adaptware/eagles-db 0.1.34 → 0.1.36
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 +12 -12
- package/client/index-browser.js +6 -6
- package/client/index.d.ts +417 -445
- package/client/index.js +14 -14
- package/client/{libquery_engine-darwin-arm64.dylib.node → libquery_engine-darwin.dylib.node} +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +8 -8
- package/client/wasm.js +6 -6
- package/package.json +1 -1
- package/prisma/schema/fitCheck.prisma +5 -5
- package/prisma/schema/jobDescription.prisma +1 -2
- package/prisma/schema/resume.prisma +8 -7
- package/prisma/schema/suggestion.prisma +1 -1
- package/prisma/.DS_Store +0 -0
package/client/index.d.ts
CHANGED
|
@@ -23984,20 +23984,20 @@ export namespace Prisma {
|
|
|
23984
23984
|
}
|
|
23985
23985
|
|
|
23986
23986
|
export type FitCheckAvgAggregateOutputType = {
|
|
23987
|
-
skills_score: number | null
|
|
23988
23987
|
responsibilities_score: number | null
|
|
23989
23988
|
experience_score: number | null
|
|
23990
23989
|
organisation_value_score: number | null
|
|
23991
23990
|
qualifications_score: number | null
|
|
23991
|
+
skills_score: number | null
|
|
23992
23992
|
overall_score: number | null
|
|
23993
23993
|
}
|
|
23994
23994
|
|
|
23995
23995
|
export type FitCheckSumAggregateOutputType = {
|
|
23996
|
-
skills_score: number | null
|
|
23997
23996
|
responsibilities_score: number | null
|
|
23998
23997
|
experience_score: number | null
|
|
23999
23998
|
organisation_value_score: number | null
|
|
24000
23999
|
qualifications_score: number | null
|
|
24000
|
+
skills_score: number | null
|
|
24001
24001
|
overall_score: number | null
|
|
24002
24002
|
}
|
|
24003
24003
|
|
|
@@ -24006,12 +24006,12 @@ export namespace Prisma {
|
|
|
24006
24006
|
organisation_id: string | null
|
|
24007
24007
|
resume_id: string | null
|
|
24008
24008
|
job_description_id: string | null
|
|
24009
|
-
skills_score: number | null
|
|
24010
24009
|
responsibilities_score: number | null
|
|
24011
24010
|
experience_score: number | null
|
|
24012
24011
|
organisation_value_score: number | null
|
|
24013
24012
|
qualifications_score: number | null
|
|
24014
24013
|
fit_check_status: $Enums.FitCheckStatus | null
|
|
24014
|
+
skills_score: number | null
|
|
24015
24015
|
overall_score: number | null
|
|
24016
24016
|
created_by: string | null
|
|
24017
24017
|
updated_by: string | null
|
|
@@ -24025,12 +24025,12 @@ export namespace Prisma {
|
|
|
24025
24025
|
organisation_id: string | null
|
|
24026
24026
|
resume_id: string | null
|
|
24027
24027
|
job_description_id: string | null
|
|
24028
|
-
skills_score: number | null
|
|
24029
24028
|
responsibilities_score: number | null
|
|
24030
24029
|
experience_score: number | null
|
|
24031
24030
|
organisation_value_score: number | null
|
|
24032
24031
|
qualifications_score: number | null
|
|
24033
24032
|
fit_check_status: $Enums.FitCheckStatus | null
|
|
24033
|
+
skills_score: number | null
|
|
24034
24034
|
overall_score: number | null
|
|
24035
24035
|
created_by: string | null
|
|
24036
24036
|
updated_by: string | null
|
|
@@ -24045,7 +24045,6 @@ export namespace Prisma {
|
|
|
24045
24045
|
resume_id: number
|
|
24046
24046
|
job_description_id: number
|
|
24047
24047
|
skills_match: number
|
|
24048
|
-
skills_score: number
|
|
24049
24048
|
responsibilities_match: number
|
|
24050
24049
|
responsibilities_score: number
|
|
24051
24050
|
experience_match: number
|
|
@@ -24054,17 +24053,18 @@ export namespace Prisma {
|
|
|
24054
24053
|
organisation_value_match: number
|
|
24055
24054
|
qualifications_match: number
|
|
24056
24055
|
qualifications_score: number
|
|
24057
|
-
overall_analysis: number
|
|
24058
24056
|
fit: number
|
|
24059
24057
|
fit_check_status: number
|
|
24060
24058
|
skills_analysis: number
|
|
24061
|
-
|
|
24059
|
+
overall_analysis: number
|
|
24060
|
+
skills_score: number
|
|
24062
24061
|
overall_score: number
|
|
24063
24062
|
short_match_analysis: number
|
|
24063
|
+
fit_comparison: number
|
|
24064
|
+
recommendation: number
|
|
24064
24065
|
candidate_analysis: number
|
|
24065
24066
|
technical_analysis: number
|
|
24066
24067
|
competency_analysis: number
|
|
24067
|
-
recommendation: number
|
|
24068
24068
|
created_by: number
|
|
24069
24069
|
updated_by: number
|
|
24070
24070
|
is_active: number
|
|
@@ -24075,20 +24075,20 @@ export namespace Prisma {
|
|
|
24075
24075
|
|
|
24076
24076
|
|
|
24077
24077
|
export type FitCheckAvgAggregateInputType = {
|
|
24078
|
-
skills_score?: true
|
|
24079
24078
|
responsibilities_score?: true
|
|
24080
24079
|
experience_score?: true
|
|
24081
24080
|
organisation_value_score?: true
|
|
24082
24081
|
qualifications_score?: true
|
|
24082
|
+
skills_score?: true
|
|
24083
24083
|
overall_score?: true
|
|
24084
24084
|
}
|
|
24085
24085
|
|
|
24086
24086
|
export type FitCheckSumAggregateInputType = {
|
|
24087
|
-
skills_score?: true
|
|
24088
24087
|
responsibilities_score?: true
|
|
24089
24088
|
experience_score?: true
|
|
24090
24089
|
organisation_value_score?: true
|
|
24091
24090
|
qualifications_score?: true
|
|
24091
|
+
skills_score?: true
|
|
24092
24092
|
overall_score?: true
|
|
24093
24093
|
}
|
|
24094
24094
|
|
|
@@ -24097,12 +24097,12 @@ export namespace Prisma {
|
|
|
24097
24097
|
organisation_id?: true
|
|
24098
24098
|
resume_id?: true
|
|
24099
24099
|
job_description_id?: true
|
|
24100
|
-
skills_score?: true
|
|
24101
24100
|
responsibilities_score?: true
|
|
24102
24101
|
experience_score?: true
|
|
24103
24102
|
organisation_value_score?: true
|
|
24104
24103
|
qualifications_score?: true
|
|
24105
24104
|
fit_check_status?: true
|
|
24105
|
+
skills_score?: true
|
|
24106
24106
|
overall_score?: true
|
|
24107
24107
|
created_by?: true
|
|
24108
24108
|
updated_by?: true
|
|
@@ -24116,12 +24116,12 @@ export namespace Prisma {
|
|
|
24116
24116
|
organisation_id?: true
|
|
24117
24117
|
resume_id?: true
|
|
24118
24118
|
job_description_id?: true
|
|
24119
|
-
skills_score?: true
|
|
24120
24119
|
responsibilities_score?: true
|
|
24121
24120
|
experience_score?: true
|
|
24122
24121
|
organisation_value_score?: true
|
|
24123
24122
|
qualifications_score?: true
|
|
24124
24123
|
fit_check_status?: true
|
|
24124
|
+
skills_score?: true
|
|
24125
24125
|
overall_score?: true
|
|
24126
24126
|
created_by?: true
|
|
24127
24127
|
updated_by?: true
|
|
@@ -24136,7 +24136,6 @@ export namespace Prisma {
|
|
|
24136
24136
|
resume_id?: true
|
|
24137
24137
|
job_description_id?: true
|
|
24138
24138
|
skills_match?: true
|
|
24139
|
-
skills_score?: true
|
|
24140
24139
|
responsibilities_match?: true
|
|
24141
24140
|
responsibilities_score?: true
|
|
24142
24141
|
experience_match?: true
|
|
@@ -24145,17 +24144,18 @@ export namespace Prisma {
|
|
|
24145
24144
|
organisation_value_match?: true
|
|
24146
24145
|
qualifications_match?: true
|
|
24147
24146
|
qualifications_score?: true
|
|
24148
|
-
overall_analysis?: true
|
|
24149
24147
|
fit?: true
|
|
24150
24148
|
fit_check_status?: true
|
|
24151
24149
|
skills_analysis?: true
|
|
24152
|
-
|
|
24150
|
+
overall_analysis?: true
|
|
24151
|
+
skills_score?: true
|
|
24153
24152
|
overall_score?: true
|
|
24154
24153
|
short_match_analysis?: true
|
|
24154
|
+
fit_comparison?: true
|
|
24155
|
+
recommendation?: true
|
|
24155
24156
|
candidate_analysis?: true
|
|
24156
24157
|
technical_analysis?: true
|
|
24157
24158
|
competency_analysis?: true
|
|
24158
|
-
recommendation?: true
|
|
24159
24159
|
created_by?: true
|
|
24160
24160
|
updated_by?: true
|
|
24161
24161
|
is_active?: true
|
|
@@ -24256,7 +24256,6 @@ export namespace Prisma {
|
|
|
24256
24256
|
resume_id: string
|
|
24257
24257
|
job_description_id: string
|
|
24258
24258
|
skills_match: string[]
|
|
24259
|
-
skills_score: number | null
|
|
24260
24259
|
responsibilities_match: string[]
|
|
24261
24260
|
responsibilities_score: number | null
|
|
24262
24261
|
experience_match: string[]
|
|
@@ -24265,17 +24264,18 @@ export namespace Prisma {
|
|
|
24265
24264
|
organisation_value_match: string[]
|
|
24266
24265
|
qualifications_match: string[]
|
|
24267
24266
|
qualifications_score: number | null
|
|
24268
|
-
overall_analysis: string[]
|
|
24269
24267
|
fit: JsonValue[]
|
|
24270
24268
|
fit_check_status: $Enums.FitCheckStatus | null
|
|
24271
24269
|
skills_analysis: JsonValue | null
|
|
24272
|
-
|
|
24270
|
+
overall_analysis: JsonValue | null
|
|
24271
|
+
skills_score: number | null
|
|
24273
24272
|
overall_score: number
|
|
24274
24273
|
short_match_analysis: JsonValue[]
|
|
24274
|
+
fit_comparison: JsonValue | null
|
|
24275
|
+
recommendation: JsonValue | null
|
|
24275
24276
|
candidate_analysis: JsonValue[]
|
|
24276
24277
|
technical_analysis: JsonValue[]
|
|
24277
24278
|
competency_analysis: JsonValue[]
|
|
24278
|
-
recommendation: JsonValue | null
|
|
24279
24279
|
created_by: string
|
|
24280
24280
|
updated_by: string
|
|
24281
24281
|
is_active: boolean
|
|
@@ -24308,7 +24308,6 @@ export namespace Prisma {
|
|
|
24308
24308
|
resume_id?: boolean
|
|
24309
24309
|
job_description_id?: boolean
|
|
24310
24310
|
skills_match?: boolean
|
|
24311
|
-
skills_score?: boolean
|
|
24312
24311
|
responsibilities_match?: boolean
|
|
24313
24312
|
responsibilities_score?: boolean
|
|
24314
24313
|
experience_match?: boolean
|
|
@@ -24317,17 +24316,18 @@ export namespace Prisma {
|
|
|
24317
24316
|
organisation_value_match?: boolean
|
|
24318
24317
|
qualifications_match?: boolean
|
|
24319
24318
|
qualifications_score?: boolean
|
|
24320
|
-
overall_analysis?: boolean
|
|
24321
24319
|
fit?: boolean
|
|
24322
24320
|
fit_check_status?: boolean
|
|
24323
24321
|
skills_analysis?: boolean
|
|
24324
|
-
|
|
24322
|
+
overall_analysis?: boolean
|
|
24323
|
+
skills_score?: boolean
|
|
24325
24324
|
overall_score?: boolean
|
|
24326
24325
|
short_match_analysis?: boolean
|
|
24326
|
+
fit_comparison?: boolean
|
|
24327
|
+
recommendation?: boolean
|
|
24327
24328
|
candidate_analysis?: boolean
|
|
24328
24329
|
technical_analysis?: boolean
|
|
24329
24330
|
competency_analysis?: boolean
|
|
24330
|
-
recommendation?: boolean
|
|
24331
24331
|
created_by?: boolean
|
|
24332
24332
|
updated_by?: boolean
|
|
24333
24333
|
is_active?: boolean
|
|
@@ -24345,7 +24345,6 @@ export namespace Prisma {
|
|
|
24345
24345
|
resume_id?: boolean
|
|
24346
24346
|
job_description_id?: boolean
|
|
24347
24347
|
skills_match?: boolean
|
|
24348
|
-
skills_score?: boolean
|
|
24349
24348
|
responsibilities_match?: boolean
|
|
24350
24349
|
responsibilities_score?: boolean
|
|
24351
24350
|
experience_match?: boolean
|
|
@@ -24354,17 +24353,18 @@ export namespace Prisma {
|
|
|
24354
24353
|
organisation_value_match?: boolean
|
|
24355
24354
|
qualifications_match?: boolean
|
|
24356
24355
|
qualifications_score?: boolean
|
|
24357
|
-
overall_analysis?: boolean
|
|
24358
24356
|
fit?: boolean
|
|
24359
24357
|
fit_check_status?: boolean
|
|
24360
24358
|
skills_analysis?: boolean
|
|
24361
|
-
|
|
24359
|
+
overall_analysis?: boolean
|
|
24360
|
+
skills_score?: boolean
|
|
24362
24361
|
overall_score?: boolean
|
|
24363
24362
|
short_match_analysis?: boolean
|
|
24363
|
+
fit_comparison?: boolean
|
|
24364
|
+
recommendation?: boolean
|
|
24364
24365
|
candidate_analysis?: boolean
|
|
24365
24366
|
technical_analysis?: boolean
|
|
24366
24367
|
competency_analysis?: boolean
|
|
24367
|
-
recommendation?: boolean
|
|
24368
24368
|
created_by?: boolean
|
|
24369
24369
|
updated_by?: boolean
|
|
24370
24370
|
is_active?: boolean
|
|
@@ -24381,7 +24381,6 @@ export namespace Prisma {
|
|
|
24381
24381
|
resume_id?: boolean
|
|
24382
24382
|
job_description_id?: boolean
|
|
24383
24383
|
skills_match?: boolean
|
|
24384
|
-
skills_score?: boolean
|
|
24385
24384
|
responsibilities_match?: boolean
|
|
24386
24385
|
responsibilities_score?: boolean
|
|
24387
24386
|
experience_match?: boolean
|
|
@@ -24390,17 +24389,18 @@ export namespace Prisma {
|
|
|
24390
24389
|
organisation_value_match?: boolean
|
|
24391
24390
|
qualifications_match?: boolean
|
|
24392
24391
|
qualifications_score?: boolean
|
|
24393
|
-
overall_analysis?: boolean
|
|
24394
24392
|
fit?: boolean
|
|
24395
24393
|
fit_check_status?: boolean
|
|
24396
24394
|
skills_analysis?: boolean
|
|
24397
|
-
|
|
24395
|
+
overall_analysis?: boolean
|
|
24396
|
+
skills_score?: boolean
|
|
24398
24397
|
overall_score?: boolean
|
|
24399
24398
|
short_match_analysis?: boolean
|
|
24399
|
+
fit_comparison?: boolean
|
|
24400
|
+
recommendation?: boolean
|
|
24400
24401
|
candidate_analysis?: boolean
|
|
24401
24402
|
technical_analysis?: boolean
|
|
24402
24403
|
competency_analysis?: boolean
|
|
24403
|
-
recommendation?: boolean
|
|
24404
24404
|
created_by?: boolean
|
|
24405
24405
|
updated_by?: boolean
|
|
24406
24406
|
is_active?: boolean
|
|
@@ -24417,7 +24417,6 @@ export namespace Prisma {
|
|
|
24417
24417
|
resume_id?: boolean
|
|
24418
24418
|
job_description_id?: boolean
|
|
24419
24419
|
skills_match?: boolean
|
|
24420
|
-
skills_score?: boolean
|
|
24421
24420
|
responsibilities_match?: boolean
|
|
24422
24421
|
responsibilities_score?: boolean
|
|
24423
24422
|
experience_match?: boolean
|
|
@@ -24426,17 +24425,18 @@ export namespace Prisma {
|
|
|
24426
24425
|
organisation_value_match?: boolean
|
|
24427
24426
|
qualifications_match?: boolean
|
|
24428
24427
|
qualifications_score?: boolean
|
|
24429
|
-
overall_analysis?: boolean
|
|
24430
24428
|
fit?: boolean
|
|
24431
24429
|
fit_check_status?: boolean
|
|
24432
24430
|
skills_analysis?: boolean
|
|
24433
|
-
|
|
24431
|
+
overall_analysis?: boolean
|
|
24432
|
+
skills_score?: boolean
|
|
24434
24433
|
overall_score?: boolean
|
|
24435
24434
|
short_match_analysis?: boolean
|
|
24435
|
+
fit_comparison?: boolean
|
|
24436
|
+
recommendation?: boolean
|
|
24436
24437
|
candidate_analysis?: boolean
|
|
24437
24438
|
technical_analysis?: boolean
|
|
24438
24439
|
competency_analysis?: boolean
|
|
24439
|
-
recommendation?: boolean
|
|
24440
24440
|
created_by?: boolean
|
|
24441
24441
|
updated_by?: boolean
|
|
24442
24442
|
is_active?: boolean
|
|
@@ -24444,7 +24444,7 @@ export namespace Prisma {
|
|
|
24444
24444
|
updated_at?: boolean
|
|
24445
24445
|
}
|
|
24446
24446
|
|
|
24447
|
-
export type FitCheckOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "resume_id" | "job_description_id" | "skills_match" | "
|
|
24447
|
+
export type FitCheckOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "resume_id" | "job_description_id" | "skills_match" | "responsibilities_match" | "responsibilities_score" | "experience_match" | "experience_score" | "organisation_value_score" | "organisation_value_match" | "qualifications_match" | "qualifications_score" | "fit" | "fit_check_status" | "skills_analysis" | "overall_analysis" | "skills_score" | "overall_score" | "short_match_analysis" | "fit_comparison" | "recommendation" | "candidate_analysis" | "technical_analysis" | "competency_analysis" | "created_by" | "updated_by" | "is_active" | "created_at" | "updated_at", ExtArgs["result"]["fitCheck"]>
|
|
24448
24448
|
export type FitCheckInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24449
24449
|
organisation?: boolean | FitCheck$organisationArgs<ExtArgs>
|
|
24450
24450
|
resume?: boolean | ResumeDefaultArgs<ExtArgs>
|
|
@@ -24488,7 +24488,6 @@ export namespace Prisma {
|
|
|
24488
24488
|
* Old Fields will be deprecated soon
|
|
24489
24489
|
*/
|
|
24490
24490
|
skills_match: string[]
|
|
24491
|
-
skills_score: number | null
|
|
24492
24491
|
responsibilities_match: string[]
|
|
24493
24492
|
responsibilities_score: number | null
|
|
24494
24493
|
experience_match: string[]
|
|
@@ -24497,17 +24496,18 @@ export namespace Prisma {
|
|
|
24497
24496
|
organisation_value_match: string[]
|
|
24498
24497
|
qualifications_match: string[]
|
|
24499
24498
|
qualifications_score: number | null
|
|
24500
|
-
overall_analysis: string[]
|
|
24501
24499
|
fit: Prisma.JsonValue[]
|
|
24502
24500
|
fit_check_status: $Enums.FitCheckStatus | null
|
|
24503
24501
|
skills_analysis: Prisma.JsonValue | null
|
|
24504
|
-
|
|
24502
|
+
overall_analysis: Prisma.JsonValue | null
|
|
24503
|
+
skills_score: number | null
|
|
24505
24504
|
overall_score: number
|
|
24506
24505
|
short_match_analysis: Prisma.JsonValue[]
|
|
24506
|
+
fit_comparison: Prisma.JsonValue | null
|
|
24507
|
+
recommendation: Prisma.JsonValue | null
|
|
24507
24508
|
candidate_analysis: Prisma.JsonValue[]
|
|
24508
24509
|
technical_analysis: Prisma.JsonValue[]
|
|
24509
24510
|
competency_analysis: Prisma.JsonValue[]
|
|
24510
|
-
recommendation: Prisma.JsonValue | null
|
|
24511
24511
|
/**
|
|
24512
24512
|
* Audit fields
|
|
24513
24513
|
*/
|
|
@@ -24951,7 +24951,6 @@ export namespace Prisma {
|
|
|
24951
24951
|
readonly resume_id: FieldRef<"FitCheck", 'String'>
|
|
24952
24952
|
readonly job_description_id: FieldRef<"FitCheck", 'String'>
|
|
24953
24953
|
readonly skills_match: FieldRef<"FitCheck", 'String[]'>
|
|
24954
|
-
readonly skills_score: FieldRef<"FitCheck", 'Float'>
|
|
24955
24954
|
readonly responsibilities_match: FieldRef<"FitCheck", 'String[]'>
|
|
24956
24955
|
readonly responsibilities_score: FieldRef<"FitCheck", 'Float'>
|
|
24957
24956
|
readonly experience_match: FieldRef<"FitCheck", 'String[]'>
|
|
@@ -24960,17 +24959,18 @@ export namespace Prisma {
|
|
|
24960
24959
|
readonly organisation_value_match: FieldRef<"FitCheck", 'String[]'>
|
|
24961
24960
|
readonly qualifications_match: FieldRef<"FitCheck", 'String[]'>
|
|
24962
24961
|
readonly qualifications_score: FieldRef<"FitCheck", 'Float'>
|
|
24963
|
-
readonly overall_analysis: FieldRef<"FitCheck", 'String[]'>
|
|
24964
24962
|
readonly fit: FieldRef<"FitCheck", 'Json[]'>
|
|
24965
24963
|
readonly fit_check_status: FieldRef<"FitCheck", 'FitCheckStatus'>
|
|
24966
24964
|
readonly skills_analysis: FieldRef<"FitCheck", 'Json'>
|
|
24967
|
-
readonly
|
|
24965
|
+
readonly overall_analysis: FieldRef<"FitCheck", 'Json'>
|
|
24966
|
+
readonly skills_score: FieldRef<"FitCheck", 'Float'>
|
|
24968
24967
|
readonly overall_score: FieldRef<"FitCheck", 'Float'>
|
|
24969
24968
|
readonly short_match_analysis: FieldRef<"FitCheck", 'Json[]'>
|
|
24969
|
+
readonly fit_comparison: FieldRef<"FitCheck", 'Json'>
|
|
24970
|
+
readonly recommendation: FieldRef<"FitCheck", 'Json'>
|
|
24970
24971
|
readonly candidate_analysis: FieldRef<"FitCheck", 'Json[]'>
|
|
24971
24972
|
readonly technical_analysis: FieldRef<"FitCheck", 'Json[]'>
|
|
24972
24973
|
readonly competency_analysis: FieldRef<"FitCheck", 'Json[]'>
|
|
24973
|
-
readonly recommendation: FieldRef<"FitCheck", 'Json'>
|
|
24974
24974
|
readonly created_by: FieldRef<"FitCheck", 'String'>
|
|
24975
24975
|
readonly updated_by: FieldRef<"FitCheck", 'String'>
|
|
24976
24976
|
readonly is_active: FieldRef<"FitCheck", 'Boolean'>
|
|
@@ -31771,7 +31771,6 @@ export namespace Prisma {
|
|
|
31771
31771
|
hiring_manager_id: string | null
|
|
31772
31772
|
status: $Enums.JobDescriptionStatus | null
|
|
31773
31773
|
uploaded_job_description_path: string | null
|
|
31774
|
-
is_plan_locked: boolean | null
|
|
31775
31774
|
is_plan_published: boolean | null
|
|
31776
31775
|
is_posted: boolean | null
|
|
31777
31776
|
created_at: Date | null
|
|
@@ -31788,7 +31787,6 @@ export namespace Prisma {
|
|
|
31788
31787
|
hiring_manager_id: string | null
|
|
31789
31788
|
status: $Enums.JobDescriptionStatus | null
|
|
31790
31789
|
uploaded_job_description_path: string | null
|
|
31791
|
-
is_plan_locked: boolean | null
|
|
31792
31790
|
is_plan_published: boolean | null
|
|
31793
31791
|
is_posted: boolean | null
|
|
31794
31792
|
created_at: Date | null
|
|
@@ -31807,11 +31805,10 @@ export namespace Prisma {
|
|
|
31807
31805
|
screeningQuestions: number
|
|
31808
31806
|
recommendedQuestions: number
|
|
31809
31807
|
uploaded_job_description_path: number
|
|
31810
|
-
is_plan_locked: number
|
|
31811
31808
|
is_plan_published: number
|
|
31812
31809
|
is_posted: number
|
|
31813
31810
|
ai_insight: number
|
|
31814
|
-
|
|
31811
|
+
job_fit_comparison: number
|
|
31815
31812
|
created_at: number
|
|
31816
31813
|
updated_at: number
|
|
31817
31814
|
created_by: number
|
|
@@ -31836,7 +31833,6 @@ export namespace Prisma {
|
|
|
31836
31833
|
hiring_manager_id?: true
|
|
31837
31834
|
status?: true
|
|
31838
31835
|
uploaded_job_description_path?: true
|
|
31839
|
-
is_plan_locked?: true
|
|
31840
31836
|
is_plan_published?: true
|
|
31841
31837
|
is_posted?: true
|
|
31842
31838
|
created_at?: true
|
|
@@ -31853,7 +31849,6 @@ export namespace Prisma {
|
|
|
31853
31849
|
hiring_manager_id?: true
|
|
31854
31850
|
status?: true
|
|
31855
31851
|
uploaded_job_description_path?: true
|
|
31856
|
-
is_plan_locked?: true
|
|
31857
31852
|
is_plan_published?: true
|
|
31858
31853
|
is_posted?: true
|
|
31859
31854
|
created_at?: true
|
|
@@ -31872,11 +31867,10 @@ export namespace Prisma {
|
|
|
31872
31867
|
screeningQuestions?: true
|
|
31873
31868
|
recommendedQuestions?: true
|
|
31874
31869
|
uploaded_job_description_path?: true
|
|
31875
|
-
is_plan_locked?: true
|
|
31876
31870
|
is_plan_published?: true
|
|
31877
31871
|
is_posted?: true
|
|
31878
31872
|
ai_insight?: true
|
|
31879
|
-
|
|
31873
|
+
job_fit_comparison?: true
|
|
31880
31874
|
created_at?: true
|
|
31881
31875
|
updated_at?: true
|
|
31882
31876
|
created_by?: true
|
|
@@ -31980,11 +31974,10 @@ export namespace Prisma {
|
|
|
31980
31974
|
screeningQuestions: string[]
|
|
31981
31975
|
recommendedQuestions: JsonValue[]
|
|
31982
31976
|
uploaded_job_description_path: string | null
|
|
31983
|
-
is_plan_locked: boolean | null
|
|
31984
31977
|
is_plan_published: boolean
|
|
31985
31978
|
is_posted: boolean
|
|
31986
31979
|
ai_insight: JsonValue | null
|
|
31987
|
-
|
|
31980
|
+
job_fit_comparison: JsonValue | null
|
|
31988
31981
|
created_at: Date
|
|
31989
31982
|
updated_at: Date
|
|
31990
31983
|
created_by: string
|
|
@@ -32020,11 +32013,10 @@ export namespace Prisma {
|
|
|
32020
32013
|
screeningQuestions?: boolean
|
|
32021
32014
|
recommendedQuestions?: boolean
|
|
32022
32015
|
uploaded_job_description_path?: boolean
|
|
32023
|
-
is_plan_locked?: boolean
|
|
32024
32016
|
is_plan_published?: boolean
|
|
32025
32017
|
is_posted?: boolean
|
|
32026
32018
|
ai_insight?: boolean
|
|
32027
|
-
|
|
32019
|
+
job_fit_comparison?: boolean
|
|
32028
32020
|
created_at?: boolean
|
|
32029
32021
|
updated_at?: boolean
|
|
32030
32022
|
created_by?: boolean
|
|
@@ -32056,11 +32048,10 @@ export namespace Prisma {
|
|
|
32056
32048
|
screeningQuestions?: boolean
|
|
32057
32049
|
recommendedQuestions?: boolean
|
|
32058
32050
|
uploaded_job_description_path?: boolean
|
|
32059
|
-
is_plan_locked?: boolean
|
|
32060
32051
|
is_plan_published?: boolean
|
|
32061
32052
|
is_posted?: boolean
|
|
32062
32053
|
ai_insight?: boolean
|
|
32063
|
-
|
|
32054
|
+
job_fit_comparison?: boolean
|
|
32064
32055
|
created_at?: boolean
|
|
32065
32056
|
updated_at?: boolean
|
|
32066
32057
|
created_by?: boolean
|
|
@@ -32079,11 +32070,10 @@ export namespace Prisma {
|
|
|
32079
32070
|
screeningQuestions?: boolean
|
|
32080
32071
|
recommendedQuestions?: boolean
|
|
32081
32072
|
uploaded_job_description_path?: boolean
|
|
32082
|
-
is_plan_locked?: boolean
|
|
32083
32073
|
is_plan_published?: boolean
|
|
32084
32074
|
is_posted?: boolean
|
|
32085
32075
|
ai_insight?: boolean
|
|
32086
|
-
|
|
32076
|
+
job_fit_comparison?: boolean
|
|
32087
32077
|
created_at?: boolean
|
|
32088
32078
|
updated_at?: boolean
|
|
32089
32079
|
created_by?: boolean
|
|
@@ -32102,11 +32092,10 @@ export namespace Prisma {
|
|
|
32102
32092
|
screeningQuestions?: boolean
|
|
32103
32093
|
recommendedQuestions?: boolean
|
|
32104
32094
|
uploaded_job_description_path?: boolean
|
|
32105
|
-
is_plan_locked?: boolean
|
|
32106
32095
|
is_plan_published?: boolean
|
|
32107
32096
|
is_posted?: boolean
|
|
32108
32097
|
ai_insight?: boolean
|
|
32109
|
-
|
|
32098
|
+
job_fit_comparison?: boolean
|
|
32110
32099
|
created_at?: boolean
|
|
32111
32100
|
updated_at?: boolean
|
|
32112
32101
|
created_by?: boolean
|
|
@@ -32115,7 +32104,7 @@ export namespace Prisma {
|
|
|
32115
32104
|
openings?: boolean
|
|
32116
32105
|
}
|
|
32117
32106
|
|
|
32118
|
-
export type JobDescriptionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "hiring_manager_id" | "status" | "screeningQuestions" | "recommendedQuestions" | "uploaded_job_description_path" | "
|
|
32107
|
+
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" | "ai_insight" | "job_fit_comparison" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "openings", ExtArgs["result"]["jobDescription"]>
|
|
32119
32108
|
export type JobDescriptionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
32120
32109
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
32121
32110
|
applications?: boolean | JobDescription$applicationsArgs<ExtArgs>
|
|
@@ -32168,11 +32157,10 @@ export namespace Prisma {
|
|
|
32168
32157
|
screeningQuestions: string[]
|
|
32169
32158
|
recommendedQuestions: Prisma.JsonValue[]
|
|
32170
32159
|
uploaded_job_description_path: string | null
|
|
32171
|
-
is_plan_locked: boolean | null
|
|
32172
32160
|
is_plan_published: boolean
|
|
32173
32161
|
is_posted: boolean
|
|
32174
32162
|
ai_insight: Prisma.JsonValue | null
|
|
32175
|
-
|
|
32163
|
+
job_fit_comparison: Prisma.JsonValue | null
|
|
32176
32164
|
created_at: Date
|
|
32177
32165
|
updated_at: Date
|
|
32178
32166
|
created_by: string
|
|
@@ -32623,11 +32611,10 @@ export namespace Prisma {
|
|
|
32623
32611
|
readonly screeningQuestions: FieldRef<"JobDescription", 'String[]'>
|
|
32624
32612
|
readonly recommendedQuestions: FieldRef<"JobDescription", 'Json[]'>
|
|
32625
32613
|
readonly uploaded_job_description_path: FieldRef<"JobDescription", 'String'>
|
|
32626
|
-
readonly is_plan_locked: FieldRef<"JobDescription", 'Boolean'>
|
|
32627
32614
|
readonly is_plan_published: FieldRef<"JobDescription", 'Boolean'>
|
|
32628
32615
|
readonly is_posted: FieldRef<"JobDescription", 'Boolean'>
|
|
32629
32616
|
readonly ai_insight: FieldRef<"JobDescription", 'Json'>
|
|
32630
|
-
readonly
|
|
32617
|
+
readonly job_fit_comparison: FieldRef<"JobDescription", 'Json'>
|
|
32631
32618
|
readonly created_at: FieldRef<"JobDescription", 'DateTime'>
|
|
32632
32619
|
readonly updated_at: FieldRef<"JobDescription", 'DateTime'>
|
|
32633
32620
|
readonly created_by: FieldRef<"JobDescription", 'String'>
|
|
@@ -44922,6 +44909,7 @@ export namespace Prisma {
|
|
|
44922
44909
|
created_by: string | null
|
|
44923
44910
|
updated_by: string | null
|
|
44924
44911
|
is_active: boolean | null
|
|
44912
|
+
name: string | null
|
|
44925
44913
|
yearsOfExperience: number | null
|
|
44926
44914
|
}
|
|
44927
44915
|
|
|
@@ -44936,6 +44924,7 @@ export namespace Prisma {
|
|
|
44936
44924
|
created_by: string | null
|
|
44937
44925
|
updated_by: string | null
|
|
44938
44926
|
is_active: boolean | null
|
|
44927
|
+
name: string | null
|
|
44939
44928
|
yearsOfExperience: number | null
|
|
44940
44929
|
}
|
|
44941
44930
|
|
|
@@ -44950,6 +44939,7 @@ export namespace Prisma {
|
|
|
44950
44939
|
created_by: number
|
|
44951
44940
|
updated_by: number
|
|
44952
44941
|
is_active: number
|
|
44942
|
+
name: number
|
|
44953
44943
|
yearsOfExperience: number
|
|
44954
44944
|
_all: number
|
|
44955
44945
|
}
|
|
@@ -44974,6 +44964,7 @@ export namespace Prisma {
|
|
|
44974
44964
|
created_by?: true
|
|
44975
44965
|
updated_by?: true
|
|
44976
44966
|
is_active?: true
|
|
44967
|
+
name?: true
|
|
44977
44968
|
yearsOfExperience?: true
|
|
44978
44969
|
}
|
|
44979
44970
|
|
|
@@ -44988,6 +44979,7 @@ export namespace Prisma {
|
|
|
44988
44979
|
created_by?: true
|
|
44989
44980
|
updated_by?: true
|
|
44990
44981
|
is_active?: true
|
|
44982
|
+
name?: true
|
|
44991
44983
|
yearsOfExperience?: true
|
|
44992
44984
|
}
|
|
44993
44985
|
|
|
@@ -45002,6 +44994,7 @@ export namespace Prisma {
|
|
|
45002
44994
|
created_by?: true
|
|
45003
44995
|
updated_by?: true
|
|
45004
44996
|
is_active?: true
|
|
44997
|
+
name?: true
|
|
45005
44998
|
yearsOfExperience?: true
|
|
45006
44999
|
_all?: true
|
|
45007
45000
|
}
|
|
@@ -45103,6 +45096,7 @@ export namespace Prisma {
|
|
|
45103
45096
|
created_by: string
|
|
45104
45097
|
updated_by: string
|
|
45105
45098
|
is_active: boolean
|
|
45099
|
+
name: string | null
|
|
45106
45100
|
yearsOfExperience: number | null
|
|
45107
45101
|
_count: ResumeCountAggregateOutputType | null
|
|
45108
45102
|
_avg: ResumeAvgAggregateOutputType | null
|
|
@@ -45136,6 +45130,7 @@ export namespace Prisma {
|
|
|
45136
45130
|
created_by?: boolean
|
|
45137
45131
|
updated_by?: boolean
|
|
45138
45132
|
is_active?: boolean
|
|
45133
|
+
name?: boolean
|
|
45139
45134
|
yearsOfExperience?: boolean
|
|
45140
45135
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
45141
45136
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
@@ -45160,6 +45155,7 @@ export namespace Prisma {
|
|
|
45160
45155
|
created_by?: boolean
|
|
45161
45156
|
updated_by?: boolean
|
|
45162
45157
|
is_active?: boolean
|
|
45158
|
+
name?: boolean
|
|
45163
45159
|
yearsOfExperience?: boolean
|
|
45164
45160
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
45165
45161
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
@@ -45177,6 +45173,7 @@ export namespace Prisma {
|
|
|
45177
45173
|
created_by?: boolean
|
|
45178
45174
|
updated_by?: boolean
|
|
45179
45175
|
is_active?: boolean
|
|
45176
|
+
name?: boolean
|
|
45180
45177
|
yearsOfExperience?: boolean
|
|
45181
45178
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
45182
45179
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
@@ -45194,10 +45191,11 @@ export namespace Prisma {
|
|
|
45194
45191
|
created_by?: boolean
|
|
45195
45192
|
updated_by?: boolean
|
|
45196
45193
|
is_active?: boolean
|
|
45194
|
+
name?: boolean
|
|
45197
45195
|
yearsOfExperience?: boolean
|
|
45198
45196
|
}
|
|
45199
45197
|
|
|
45200
|
-
export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "yearsOfExperience", ExtArgs["result"]["resume"]>
|
|
45198
|
+
export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "name" | "yearsOfExperience", ExtArgs["result"]["resume"]>
|
|
45201
45199
|
export type ResumeInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45202
45200
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
45203
45201
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
@@ -45245,6 +45243,7 @@ export namespace Prisma {
|
|
|
45245
45243
|
created_by: string
|
|
45246
45244
|
updated_by: string
|
|
45247
45245
|
is_active: boolean
|
|
45246
|
+
name: string | null
|
|
45248
45247
|
yearsOfExperience: number | null
|
|
45249
45248
|
}, ExtArgs["result"]["resume"]>
|
|
45250
45249
|
composites: {}
|
|
@@ -45688,6 +45687,7 @@ export namespace Prisma {
|
|
|
45688
45687
|
readonly created_by: FieldRef<"Resume", 'String'>
|
|
45689
45688
|
readonly updated_by: FieldRef<"Resume", 'String'>
|
|
45690
45689
|
readonly is_active: FieldRef<"Resume", 'Boolean'>
|
|
45690
|
+
readonly name: FieldRef<"Resume", 'String'>
|
|
45691
45691
|
readonly yearsOfExperience: FieldRef<"Resume", 'Int'>
|
|
45692
45692
|
}
|
|
45693
45693
|
|
|
@@ -47583,7 +47583,7 @@ export namespace Prisma {
|
|
|
47583
47583
|
interview_id: string | null
|
|
47584
47584
|
transcript_id: string | null
|
|
47585
47585
|
organisation_id: string
|
|
47586
|
-
suggestion: string
|
|
47586
|
+
suggestion: string | null
|
|
47587
47587
|
question: string | null
|
|
47588
47588
|
created_at: Date
|
|
47589
47589
|
updated_at: Date
|
|
@@ -47701,7 +47701,7 @@ export namespace Prisma {
|
|
|
47701
47701
|
interview_id: string | null
|
|
47702
47702
|
transcript_id: string | null
|
|
47703
47703
|
organisation_id: string
|
|
47704
|
-
suggestion: string
|
|
47704
|
+
suggestion: string | null
|
|
47705
47705
|
question: string | null
|
|
47706
47706
|
created_at: Date
|
|
47707
47707
|
updated_at: Date
|
|
@@ -53397,7 +53397,6 @@ export namespace Prisma {
|
|
|
53397
53397
|
resume_id: 'resume_id',
|
|
53398
53398
|
job_description_id: 'job_description_id',
|
|
53399
53399
|
skills_match: 'skills_match',
|
|
53400
|
-
skills_score: 'skills_score',
|
|
53401
53400
|
responsibilities_match: 'responsibilities_match',
|
|
53402
53401
|
responsibilities_score: 'responsibilities_score',
|
|
53403
53402
|
experience_match: 'experience_match',
|
|
@@ -53406,17 +53405,18 @@ export namespace Prisma {
|
|
|
53406
53405
|
organisation_value_match: 'organisation_value_match',
|
|
53407
53406
|
qualifications_match: 'qualifications_match',
|
|
53408
53407
|
qualifications_score: 'qualifications_score',
|
|
53409
|
-
overall_analysis: 'overall_analysis',
|
|
53410
53408
|
fit: 'fit',
|
|
53411
53409
|
fit_check_status: 'fit_check_status',
|
|
53412
53410
|
skills_analysis: 'skills_analysis',
|
|
53413
|
-
|
|
53411
|
+
overall_analysis: 'overall_analysis',
|
|
53412
|
+
skills_score: 'skills_score',
|
|
53414
53413
|
overall_score: 'overall_score',
|
|
53415
53414
|
short_match_analysis: 'short_match_analysis',
|
|
53415
|
+
fit_comparison: 'fit_comparison',
|
|
53416
|
+
recommendation: 'recommendation',
|
|
53416
53417
|
candidate_analysis: 'candidate_analysis',
|
|
53417
53418
|
technical_analysis: 'technical_analysis',
|
|
53418
53419
|
competency_analysis: 'competency_analysis',
|
|
53419
|
-
recommendation: 'recommendation',
|
|
53420
53420
|
created_by: 'created_by',
|
|
53421
53421
|
updated_by: 'updated_by',
|
|
53422
53422
|
is_active: 'is_active',
|
|
@@ -53533,11 +53533,10 @@ export namespace Prisma {
|
|
|
53533
53533
|
screeningQuestions: 'screeningQuestions',
|
|
53534
53534
|
recommendedQuestions: 'recommendedQuestions',
|
|
53535
53535
|
uploaded_job_description_path: 'uploaded_job_description_path',
|
|
53536
|
-
is_plan_locked: 'is_plan_locked',
|
|
53537
53536
|
is_plan_published: 'is_plan_published',
|
|
53538
53537
|
is_posted: 'is_posted',
|
|
53539
53538
|
ai_insight: 'ai_insight',
|
|
53540
|
-
|
|
53539
|
+
job_fit_comparison: 'job_fit_comparison',
|
|
53541
53540
|
created_at: 'created_at',
|
|
53542
53541
|
updated_at: 'updated_at',
|
|
53543
53542
|
created_by: 'created_by',
|
|
@@ -53744,6 +53743,7 @@ export namespace Prisma {
|
|
|
53744
53743
|
created_by: 'created_by',
|
|
53745
53744
|
updated_by: 'updated_by',
|
|
53746
53745
|
is_active: 'is_active',
|
|
53746
|
+
name: 'name',
|
|
53747
53747
|
yearsOfExperience: 'yearsOfExperience'
|
|
53748
53748
|
};
|
|
53749
53749
|
|
|
@@ -55922,7 +55922,6 @@ export namespace Prisma {
|
|
|
55922
55922
|
resume_id?: StringFilter<"FitCheck"> | string
|
|
55923
55923
|
job_description_id?: StringFilter<"FitCheck"> | string
|
|
55924
55924
|
skills_match?: StringNullableListFilter<"FitCheck">
|
|
55925
|
-
skills_score?: FloatNullableFilter<"FitCheck"> | number | null
|
|
55926
55925
|
responsibilities_match?: StringNullableListFilter<"FitCheck">
|
|
55927
55926
|
responsibilities_score?: FloatNullableFilter<"FitCheck"> | number | null
|
|
55928
55927
|
experience_match?: StringNullableListFilter<"FitCheck">
|
|
@@ -55931,17 +55930,18 @@ export namespace Prisma {
|
|
|
55931
55930
|
organisation_value_match?: StringNullableListFilter<"FitCheck">
|
|
55932
55931
|
qualifications_match?: StringNullableListFilter<"FitCheck">
|
|
55933
55932
|
qualifications_score?: FloatNullableFilter<"FitCheck"> | number | null
|
|
55934
|
-
overall_analysis?: StringNullableListFilter<"FitCheck">
|
|
55935
55933
|
fit?: JsonNullableListFilter<"FitCheck">
|
|
55936
55934
|
fit_check_status?: EnumFitCheckStatusNullableFilter<"FitCheck"> | $Enums.FitCheckStatus | null
|
|
55937
55935
|
skills_analysis?: JsonNullableFilter<"FitCheck">
|
|
55938
|
-
|
|
55936
|
+
overall_analysis?: JsonNullableFilter<"FitCheck">
|
|
55937
|
+
skills_score?: FloatNullableFilter<"FitCheck"> | number | null
|
|
55939
55938
|
overall_score?: FloatFilter<"FitCheck"> | number
|
|
55940
55939
|
short_match_analysis?: JsonNullableListFilter<"FitCheck">
|
|
55940
|
+
fit_comparison?: JsonNullableFilter<"FitCheck">
|
|
55941
|
+
recommendation?: JsonNullableFilter<"FitCheck">
|
|
55941
55942
|
candidate_analysis?: JsonNullableListFilter<"FitCheck">
|
|
55942
55943
|
technical_analysis?: JsonNullableListFilter<"FitCheck">
|
|
55943
55944
|
competency_analysis?: JsonNullableListFilter<"FitCheck">
|
|
55944
|
-
recommendation?: JsonNullableFilter<"FitCheck">
|
|
55945
55945
|
created_by?: StringFilter<"FitCheck"> | string
|
|
55946
55946
|
updated_by?: StringFilter<"FitCheck"> | string
|
|
55947
55947
|
is_active?: BoolFilter<"FitCheck"> | boolean
|
|
@@ -55959,7 +55959,6 @@ export namespace Prisma {
|
|
|
55959
55959
|
resume_id?: SortOrder
|
|
55960
55960
|
job_description_id?: SortOrder
|
|
55961
55961
|
skills_match?: SortOrder
|
|
55962
|
-
skills_score?: SortOrderInput | SortOrder
|
|
55963
55962
|
responsibilities_match?: SortOrder
|
|
55964
55963
|
responsibilities_score?: SortOrderInput | SortOrder
|
|
55965
55964
|
experience_match?: SortOrder
|
|
@@ -55968,17 +55967,18 @@ export namespace Prisma {
|
|
|
55968
55967
|
organisation_value_match?: SortOrder
|
|
55969
55968
|
qualifications_match?: SortOrder
|
|
55970
55969
|
qualifications_score?: SortOrderInput | SortOrder
|
|
55971
|
-
overall_analysis?: SortOrder
|
|
55972
55970
|
fit?: SortOrder
|
|
55973
55971
|
fit_check_status?: SortOrderInput | SortOrder
|
|
55974
55972
|
skills_analysis?: SortOrderInput | SortOrder
|
|
55975
|
-
|
|
55973
|
+
overall_analysis?: SortOrderInput | SortOrder
|
|
55974
|
+
skills_score?: SortOrderInput | SortOrder
|
|
55976
55975
|
overall_score?: SortOrder
|
|
55977
55976
|
short_match_analysis?: SortOrder
|
|
55977
|
+
fit_comparison?: SortOrderInput | SortOrder
|
|
55978
|
+
recommendation?: SortOrderInput | SortOrder
|
|
55978
55979
|
candidate_analysis?: SortOrder
|
|
55979
55980
|
technical_analysis?: SortOrder
|
|
55980
55981
|
competency_analysis?: SortOrder
|
|
55981
|
-
recommendation?: SortOrderInput | SortOrder
|
|
55982
55982
|
created_by?: SortOrder
|
|
55983
55983
|
updated_by?: SortOrder
|
|
55984
55984
|
is_active?: SortOrder
|
|
@@ -56000,7 +56000,6 @@ export namespace Prisma {
|
|
|
56000
56000
|
resume_id?: StringFilter<"FitCheck"> | string
|
|
56001
56001
|
job_description_id?: StringFilter<"FitCheck"> | string
|
|
56002
56002
|
skills_match?: StringNullableListFilter<"FitCheck">
|
|
56003
|
-
skills_score?: FloatNullableFilter<"FitCheck"> | number | null
|
|
56004
56003
|
responsibilities_match?: StringNullableListFilter<"FitCheck">
|
|
56005
56004
|
responsibilities_score?: FloatNullableFilter<"FitCheck"> | number | null
|
|
56006
56005
|
experience_match?: StringNullableListFilter<"FitCheck">
|
|
@@ -56009,17 +56008,18 @@ export namespace Prisma {
|
|
|
56009
56008
|
organisation_value_match?: StringNullableListFilter<"FitCheck">
|
|
56010
56009
|
qualifications_match?: StringNullableListFilter<"FitCheck">
|
|
56011
56010
|
qualifications_score?: FloatNullableFilter<"FitCheck"> | number | null
|
|
56012
|
-
overall_analysis?: StringNullableListFilter<"FitCheck">
|
|
56013
56011
|
fit?: JsonNullableListFilter<"FitCheck">
|
|
56014
56012
|
fit_check_status?: EnumFitCheckStatusNullableFilter<"FitCheck"> | $Enums.FitCheckStatus | null
|
|
56015
56013
|
skills_analysis?: JsonNullableFilter<"FitCheck">
|
|
56016
|
-
|
|
56014
|
+
overall_analysis?: JsonNullableFilter<"FitCheck">
|
|
56015
|
+
skills_score?: FloatNullableFilter<"FitCheck"> | number | null
|
|
56017
56016
|
overall_score?: FloatFilter<"FitCheck"> | number
|
|
56018
56017
|
short_match_analysis?: JsonNullableListFilter<"FitCheck">
|
|
56018
|
+
fit_comparison?: JsonNullableFilter<"FitCheck">
|
|
56019
|
+
recommendation?: JsonNullableFilter<"FitCheck">
|
|
56019
56020
|
candidate_analysis?: JsonNullableListFilter<"FitCheck">
|
|
56020
56021
|
technical_analysis?: JsonNullableListFilter<"FitCheck">
|
|
56021
56022
|
competency_analysis?: JsonNullableListFilter<"FitCheck">
|
|
56022
|
-
recommendation?: JsonNullableFilter<"FitCheck">
|
|
56023
56023
|
created_by?: StringFilter<"FitCheck"> | string
|
|
56024
56024
|
updated_by?: StringFilter<"FitCheck"> | string
|
|
56025
56025
|
is_active?: BoolFilter<"FitCheck"> | boolean
|
|
@@ -56037,7 +56037,6 @@ export namespace Prisma {
|
|
|
56037
56037
|
resume_id?: SortOrder
|
|
56038
56038
|
job_description_id?: SortOrder
|
|
56039
56039
|
skills_match?: SortOrder
|
|
56040
|
-
skills_score?: SortOrderInput | SortOrder
|
|
56041
56040
|
responsibilities_match?: SortOrder
|
|
56042
56041
|
responsibilities_score?: SortOrderInput | SortOrder
|
|
56043
56042
|
experience_match?: SortOrder
|
|
@@ -56046,17 +56045,18 @@ export namespace Prisma {
|
|
|
56046
56045
|
organisation_value_match?: SortOrder
|
|
56047
56046
|
qualifications_match?: SortOrder
|
|
56048
56047
|
qualifications_score?: SortOrderInput | SortOrder
|
|
56049
|
-
overall_analysis?: SortOrder
|
|
56050
56048
|
fit?: SortOrder
|
|
56051
56049
|
fit_check_status?: SortOrderInput | SortOrder
|
|
56052
56050
|
skills_analysis?: SortOrderInput | SortOrder
|
|
56053
|
-
|
|
56051
|
+
overall_analysis?: SortOrderInput | SortOrder
|
|
56052
|
+
skills_score?: SortOrderInput | SortOrder
|
|
56054
56053
|
overall_score?: SortOrder
|
|
56055
56054
|
short_match_analysis?: SortOrder
|
|
56055
|
+
fit_comparison?: SortOrderInput | SortOrder
|
|
56056
|
+
recommendation?: SortOrderInput | SortOrder
|
|
56056
56057
|
candidate_analysis?: SortOrder
|
|
56057
56058
|
technical_analysis?: SortOrder
|
|
56058
56059
|
competency_analysis?: SortOrder
|
|
56059
|
-
recommendation?: SortOrderInput | SortOrder
|
|
56060
56060
|
created_by?: SortOrder
|
|
56061
56061
|
updated_by?: SortOrder
|
|
56062
56062
|
is_active?: SortOrder
|
|
@@ -56078,7 +56078,6 @@ export namespace Prisma {
|
|
|
56078
56078
|
resume_id?: StringWithAggregatesFilter<"FitCheck"> | string
|
|
56079
56079
|
job_description_id?: StringWithAggregatesFilter<"FitCheck"> | string
|
|
56080
56080
|
skills_match?: StringNullableListFilter<"FitCheck">
|
|
56081
|
-
skills_score?: FloatNullableWithAggregatesFilter<"FitCheck"> | number | null
|
|
56082
56081
|
responsibilities_match?: StringNullableListFilter<"FitCheck">
|
|
56083
56082
|
responsibilities_score?: FloatNullableWithAggregatesFilter<"FitCheck"> | number | null
|
|
56084
56083
|
experience_match?: StringNullableListFilter<"FitCheck">
|
|
@@ -56087,17 +56086,18 @@ export namespace Prisma {
|
|
|
56087
56086
|
organisation_value_match?: StringNullableListFilter<"FitCheck">
|
|
56088
56087
|
qualifications_match?: StringNullableListFilter<"FitCheck">
|
|
56089
56088
|
qualifications_score?: FloatNullableWithAggregatesFilter<"FitCheck"> | number | null
|
|
56090
|
-
overall_analysis?: StringNullableListFilter<"FitCheck">
|
|
56091
56089
|
fit?: JsonNullableListFilter<"FitCheck">
|
|
56092
56090
|
fit_check_status?: EnumFitCheckStatusNullableWithAggregatesFilter<"FitCheck"> | $Enums.FitCheckStatus | null
|
|
56093
56091
|
skills_analysis?: JsonNullableWithAggregatesFilter<"FitCheck">
|
|
56094
|
-
|
|
56092
|
+
overall_analysis?: JsonNullableWithAggregatesFilter<"FitCheck">
|
|
56093
|
+
skills_score?: FloatNullableWithAggregatesFilter<"FitCheck"> | number | null
|
|
56095
56094
|
overall_score?: FloatWithAggregatesFilter<"FitCheck"> | number
|
|
56096
56095
|
short_match_analysis?: JsonNullableListFilter<"FitCheck">
|
|
56096
|
+
fit_comparison?: JsonNullableWithAggregatesFilter<"FitCheck">
|
|
56097
|
+
recommendation?: JsonNullableWithAggregatesFilter<"FitCheck">
|
|
56097
56098
|
candidate_analysis?: JsonNullableListFilter<"FitCheck">
|
|
56098
56099
|
technical_analysis?: JsonNullableListFilter<"FitCheck">
|
|
56099
56100
|
competency_analysis?: JsonNullableListFilter<"FitCheck">
|
|
56100
|
-
recommendation?: JsonNullableWithAggregatesFilter<"FitCheck">
|
|
56101
56101
|
created_by?: StringWithAggregatesFilter<"FitCheck"> | string
|
|
56102
56102
|
updated_by?: StringWithAggregatesFilter<"FitCheck"> | string
|
|
56103
56103
|
is_active?: BoolWithAggregatesFilter<"FitCheck"> | boolean
|
|
@@ -56658,11 +56658,10 @@ export namespace Prisma {
|
|
|
56658
56658
|
screeningQuestions?: StringNullableListFilter<"JobDescription">
|
|
56659
56659
|
recommendedQuestions?: JsonNullableListFilter<"JobDescription">
|
|
56660
56660
|
uploaded_job_description_path?: StringNullableFilter<"JobDescription"> | string | null
|
|
56661
|
-
is_plan_locked?: BoolNullableFilter<"JobDescription"> | boolean | null
|
|
56662
56661
|
is_plan_published?: BoolFilter<"JobDescription"> | boolean
|
|
56663
56662
|
is_posted?: BoolFilter<"JobDescription"> | boolean
|
|
56664
56663
|
ai_insight?: JsonNullableFilter<"JobDescription">
|
|
56665
|
-
|
|
56664
|
+
job_fit_comparison?: JsonNullableFilter<"JobDescription">
|
|
56666
56665
|
created_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
56667
56666
|
updated_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
56668
56667
|
created_by?: StringFilter<"JobDescription"> | string
|
|
@@ -56693,11 +56692,10 @@ export namespace Prisma {
|
|
|
56693
56692
|
screeningQuestions?: SortOrder
|
|
56694
56693
|
recommendedQuestions?: SortOrder
|
|
56695
56694
|
uploaded_job_description_path?: SortOrderInput | SortOrder
|
|
56696
|
-
is_plan_locked?: SortOrderInput | SortOrder
|
|
56697
56695
|
is_plan_published?: SortOrder
|
|
56698
56696
|
is_posted?: SortOrder
|
|
56699
56697
|
ai_insight?: SortOrderInput | SortOrder
|
|
56700
|
-
|
|
56698
|
+
job_fit_comparison?: SortOrderInput | SortOrder
|
|
56701
56699
|
created_at?: SortOrder
|
|
56702
56700
|
updated_at?: SortOrder
|
|
56703
56701
|
created_by?: SortOrder
|
|
@@ -56731,11 +56729,10 @@ export namespace Prisma {
|
|
|
56731
56729
|
screeningQuestions?: StringNullableListFilter<"JobDescription">
|
|
56732
56730
|
recommendedQuestions?: JsonNullableListFilter<"JobDescription">
|
|
56733
56731
|
uploaded_job_description_path?: StringNullableFilter<"JobDescription"> | string | null
|
|
56734
|
-
is_plan_locked?: BoolNullableFilter<"JobDescription"> | boolean | null
|
|
56735
56732
|
is_plan_published?: BoolFilter<"JobDescription"> | boolean
|
|
56736
56733
|
is_posted?: BoolFilter<"JobDescription"> | boolean
|
|
56737
56734
|
ai_insight?: JsonNullableFilter<"JobDescription">
|
|
56738
|
-
|
|
56735
|
+
job_fit_comparison?: JsonNullableFilter<"JobDescription">
|
|
56739
56736
|
created_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
56740
56737
|
updated_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
56741
56738
|
created_by?: StringFilter<"JobDescription"> | string
|
|
@@ -56766,11 +56763,10 @@ export namespace Prisma {
|
|
|
56766
56763
|
screeningQuestions?: SortOrder
|
|
56767
56764
|
recommendedQuestions?: SortOrder
|
|
56768
56765
|
uploaded_job_description_path?: SortOrderInput | SortOrder
|
|
56769
|
-
is_plan_locked?: SortOrderInput | SortOrder
|
|
56770
56766
|
is_plan_published?: SortOrder
|
|
56771
56767
|
is_posted?: SortOrder
|
|
56772
56768
|
ai_insight?: SortOrderInput | SortOrder
|
|
56773
|
-
|
|
56769
|
+
job_fit_comparison?: SortOrderInput | SortOrder
|
|
56774
56770
|
created_at?: SortOrder
|
|
56775
56771
|
updated_at?: SortOrder
|
|
56776
56772
|
created_by?: SortOrder
|
|
@@ -56795,11 +56791,10 @@ export namespace Prisma {
|
|
|
56795
56791
|
screeningQuestions?: StringNullableListFilter<"JobDescription">
|
|
56796
56792
|
recommendedQuestions?: JsonNullableListFilter<"JobDescription">
|
|
56797
56793
|
uploaded_job_description_path?: StringNullableWithAggregatesFilter<"JobDescription"> | string | null
|
|
56798
|
-
is_plan_locked?: BoolNullableWithAggregatesFilter<"JobDescription"> | boolean | null
|
|
56799
56794
|
is_plan_published?: BoolWithAggregatesFilter<"JobDescription"> | boolean
|
|
56800
56795
|
is_posted?: BoolWithAggregatesFilter<"JobDescription"> | boolean
|
|
56801
56796
|
ai_insight?: JsonNullableWithAggregatesFilter<"JobDescription">
|
|
56802
|
-
|
|
56797
|
+
job_fit_comparison?: JsonNullableWithAggregatesFilter<"JobDescription">
|
|
56803
56798
|
created_at?: DateTimeWithAggregatesFilter<"JobDescription"> | Date | string
|
|
56804
56799
|
updated_at?: DateTimeWithAggregatesFilter<"JobDescription"> | Date | string
|
|
56805
56800
|
created_by?: StringWithAggregatesFilter<"JobDescription"> | string
|
|
@@ -57846,6 +57841,7 @@ export namespace Prisma {
|
|
|
57846
57841
|
created_by?: StringFilter<"Resume"> | string
|
|
57847
57842
|
updated_by?: StringFilter<"Resume"> | string
|
|
57848
57843
|
is_active?: BoolFilter<"Resume"> | boolean
|
|
57844
|
+
name?: StringNullableFilter<"Resume"> | string | null
|
|
57849
57845
|
yearsOfExperience?: IntNullableFilter<"Resume"> | number | null
|
|
57850
57846
|
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
57851
57847
|
organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
|
|
@@ -57869,6 +57865,7 @@ export namespace Prisma {
|
|
|
57869
57865
|
created_by?: SortOrder
|
|
57870
57866
|
updated_by?: SortOrder
|
|
57871
57867
|
is_active?: SortOrder
|
|
57868
|
+
name?: SortOrderInput | SortOrder
|
|
57872
57869
|
yearsOfExperience?: SortOrderInput | SortOrder
|
|
57873
57870
|
user?: UserOrderByWithRelationInput
|
|
57874
57871
|
organisation?: OrganisationOrderByWithRelationInput
|
|
@@ -57895,6 +57892,7 @@ export namespace Prisma {
|
|
|
57895
57892
|
created_by?: StringFilter<"Resume"> | string
|
|
57896
57893
|
updated_by?: StringFilter<"Resume"> | string
|
|
57897
57894
|
is_active?: BoolFilter<"Resume"> | boolean
|
|
57895
|
+
name?: StringNullableFilter<"Resume"> | string | null
|
|
57898
57896
|
yearsOfExperience?: IntNullableFilter<"Resume"> | number | null
|
|
57899
57897
|
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
57900
57898
|
organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
|
|
@@ -57918,6 +57916,7 @@ export namespace Prisma {
|
|
|
57918
57916
|
created_by?: SortOrder
|
|
57919
57917
|
updated_by?: SortOrder
|
|
57920
57918
|
is_active?: SortOrder
|
|
57919
|
+
name?: SortOrderInput | SortOrder
|
|
57921
57920
|
yearsOfExperience?: SortOrderInput | SortOrder
|
|
57922
57921
|
_count?: ResumeCountOrderByAggregateInput
|
|
57923
57922
|
_avg?: ResumeAvgOrderByAggregateInput
|
|
@@ -57940,6 +57939,7 @@ export namespace Prisma {
|
|
|
57940
57939
|
created_by?: StringWithAggregatesFilter<"Resume"> | string
|
|
57941
57940
|
updated_by?: StringWithAggregatesFilter<"Resume"> | string
|
|
57942
57941
|
is_active?: BoolWithAggregatesFilter<"Resume"> | boolean
|
|
57942
|
+
name?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
57943
57943
|
yearsOfExperience?: IntNullableWithAggregatesFilter<"Resume"> | number | null
|
|
57944
57944
|
}
|
|
57945
57945
|
|
|
@@ -58026,7 +58026,7 @@ export namespace Prisma {
|
|
|
58026
58026
|
interview_id?: StringNullableFilter<"Suggestion"> | string | null
|
|
58027
58027
|
transcript_id?: StringNullableFilter<"Suggestion"> | string | null
|
|
58028
58028
|
organisation_id?: StringFilter<"Suggestion"> | string
|
|
58029
|
-
suggestion?:
|
|
58029
|
+
suggestion?: StringNullableFilter<"Suggestion"> | string | null
|
|
58030
58030
|
question?: StringNullableFilter<"Suggestion"> | string | null
|
|
58031
58031
|
created_at?: DateTimeFilter<"Suggestion"> | Date | string
|
|
58032
58032
|
updated_at?: DateTimeFilter<"Suggestion"> | Date | string
|
|
@@ -58043,7 +58043,7 @@ export namespace Prisma {
|
|
|
58043
58043
|
interview_id?: SortOrderInput | SortOrder
|
|
58044
58044
|
transcript_id?: SortOrderInput | SortOrder
|
|
58045
58045
|
organisation_id?: SortOrder
|
|
58046
|
-
suggestion?: SortOrder
|
|
58046
|
+
suggestion?: SortOrderInput | SortOrder
|
|
58047
58047
|
question?: SortOrderInput | SortOrder
|
|
58048
58048
|
created_at?: SortOrder
|
|
58049
58049
|
updated_at?: SortOrder
|
|
@@ -58063,7 +58063,7 @@ export namespace Prisma {
|
|
|
58063
58063
|
NOT?: SuggestionWhereInput | SuggestionWhereInput[]
|
|
58064
58064
|
interview_id?: StringNullableFilter<"Suggestion"> | string | null
|
|
58065
58065
|
organisation_id?: StringFilter<"Suggestion"> | string
|
|
58066
|
-
suggestion?:
|
|
58066
|
+
suggestion?: StringNullableFilter<"Suggestion"> | string | null
|
|
58067
58067
|
question?: StringNullableFilter<"Suggestion"> | string | null
|
|
58068
58068
|
created_at?: DateTimeFilter<"Suggestion"> | Date | string
|
|
58069
58069
|
updated_at?: DateTimeFilter<"Suggestion"> | Date | string
|
|
@@ -58080,7 +58080,7 @@ export namespace Prisma {
|
|
|
58080
58080
|
interview_id?: SortOrderInput | SortOrder
|
|
58081
58081
|
transcript_id?: SortOrderInput | SortOrder
|
|
58082
58082
|
organisation_id?: SortOrder
|
|
58083
|
-
suggestion?: SortOrder
|
|
58083
|
+
suggestion?: SortOrderInput | SortOrder
|
|
58084
58084
|
question?: SortOrderInput | SortOrder
|
|
58085
58085
|
created_at?: SortOrder
|
|
58086
58086
|
updated_at?: SortOrder
|
|
@@ -58100,7 +58100,7 @@ export namespace Prisma {
|
|
|
58100
58100
|
interview_id?: StringNullableWithAggregatesFilter<"Suggestion"> | string | null
|
|
58101
58101
|
transcript_id?: StringNullableWithAggregatesFilter<"Suggestion"> | string | null
|
|
58102
58102
|
organisation_id?: StringWithAggregatesFilter<"Suggestion"> | string
|
|
58103
|
-
suggestion?:
|
|
58103
|
+
suggestion?: StringNullableWithAggregatesFilter<"Suggestion"> | string | null
|
|
58104
58104
|
question?: StringNullableWithAggregatesFilter<"Suggestion"> | string | null
|
|
58105
58105
|
created_at?: DateTimeWithAggregatesFilter<"Suggestion"> | Date | string
|
|
58106
58106
|
updated_at?: DateTimeWithAggregatesFilter<"Suggestion"> | Date | string
|
|
@@ -60282,7 +60282,6 @@ export namespace Prisma {
|
|
|
60282
60282
|
export type FitCheckCreateInput = {
|
|
60283
60283
|
id?: string
|
|
60284
60284
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
60285
|
-
skills_score?: number | null
|
|
60286
60285
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
60287
60286
|
responsibilities_score?: number | null
|
|
60288
60287
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -60291,17 +60290,18 @@ export namespace Prisma {
|
|
|
60291
60290
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
60292
60291
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
60293
60292
|
qualifications_score?: number | null
|
|
60294
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
60295
60293
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
60296
60294
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
60297
60295
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60298
|
-
|
|
60296
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60297
|
+
skills_score?: number | null
|
|
60299
60298
|
overall_score: number
|
|
60300
60299
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
60300
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
60301
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60301
60302
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
60302
60303
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
60303
60304
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
60304
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60305
60305
|
created_by: string
|
|
60306
60306
|
updated_by: string
|
|
60307
60307
|
is_active?: boolean
|
|
@@ -60319,7 +60319,6 @@ export namespace Prisma {
|
|
|
60319
60319
|
resume_id: string
|
|
60320
60320
|
job_description_id: string
|
|
60321
60321
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
60322
|
-
skills_score?: number | null
|
|
60323
60322
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
60324
60323
|
responsibilities_score?: number | null
|
|
60325
60324
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -60328,17 +60327,18 @@ export namespace Prisma {
|
|
|
60328
60327
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
60329
60328
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
60330
60329
|
qualifications_score?: number | null
|
|
60331
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
60332
60330
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
60333
60331
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
60334
60332
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60335
|
-
|
|
60333
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60334
|
+
skills_score?: number | null
|
|
60336
60335
|
overall_score: number
|
|
60337
60336
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
60337
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
60338
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60338
60339
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
60339
60340
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
60340
60341
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
60341
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60342
60342
|
created_by: string
|
|
60343
60343
|
updated_by: string
|
|
60344
60344
|
is_active?: boolean
|
|
@@ -60350,7 +60350,6 @@ export namespace Prisma {
|
|
|
60350
60350
|
export type FitCheckUpdateInput = {
|
|
60351
60351
|
id?: StringFieldUpdateOperationsInput | string
|
|
60352
60352
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
60353
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60354
60353
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
60355
60354
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60356
60355
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -60359,17 +60358,18 @@ export namespace Prisma {
|
|
|
60359
60358
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
60360
60359
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
60361
60360
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60362
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
60363
60361
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
60364
60362
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
60365
60363
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60366
|
-
|
|
60364
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60365
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60367
60366
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
60368
60367
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
60368
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
60369
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60369
60370
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
60370
60371
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
60371
60372
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
60372
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60373
60373
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
60374
60374
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
60375
60375
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -60387,7 +60387,6 @@ export namespace Prisma {
|
|
|
60387
60387
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
60388
60388
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
60389
60389
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
60390
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60391
60390
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
60392
60391
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60393
60392
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -60396,17 +60395,18 @@ export namespace Prisma {
|
|
|
60396
60395
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
60397
60396
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
60398
60397
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60399
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
60400
60398
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
60401
60399
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
60402
60400
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60403
|
-
|
|
60401
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60402
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60404
60403
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
60405
60404
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
60405
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
60406
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60406
60407
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
60407
60408
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
60408
60409
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
60409
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60410
60410
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
60411
60411
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
60412
60412
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -60421,7 +60421,6 @@ export namespace Prisma {
|
|
|
60421
60421
|
resume_id: string
|
|
60422
60422
|
job_description_id: string
|
|
60423
60423
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
60424
|
-
skills_score?: number | null
|
|
60425
60424
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
60426
60425
|
responsibilities_score?: number | null
|
|
60427
60426
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -60430,17 +60429,18 @@ export namespace Prisma {
|
|
|
60430
60429
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
60431
60430
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
60432
60431
|
qualifications_score?: number | null
|
|
60433
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
60434
60432
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
60435
60433
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
60436
60434
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60437
|
-
|
|
60435
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60436
|
+
skills_score?: number | null
|
|
60438
60437
|
overall_score: number
|
|
60439
60438
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
60439
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
60440
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60440
60441
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
60441
60442
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
60442
60443
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
60443
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60444
60444
|
created_by: string
|
|
60445
60445
|
updated_by: string
|
|
60446
60446
|
is_active?: boolean
|
|
@@ -60451,7 +60451,6 @@ export namespace Prisma {
|
|
|
60451
60451
|
export type FitCheckUpdateManyMutationInput = {
|
|
60452
60452
|
id?: StringFieldUpdateOperationsInput | string
|
|
60453
60453
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
60454
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60455
60454
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
60456
60455
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60457
60456
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -60460,17 +60459,18 @@ export namespace Prisma {
|
|
|
60460
60459
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
60461
60460
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
60462
60461
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60463
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
60464
60462
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
60465
60463
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
60466
60464
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60467
|
-
|
|
60465
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60466
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60468
60467
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
60469
60468
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
60469
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
60470
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60470
60471
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
60471
60472
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
60472
60473
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
60473
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60474
60474
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
60475
60475
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
60476
60476
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -60484,7 +60484,6 @@ export namespace Prisma {
|
|
|
60484
60484
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
60485
60485
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
60486
60486
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
60487
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60488
60487
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
60489
60488
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60490
60489
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -60493,17 +60492,18 @@ export namespace Prisma {
|
|
|
60493
60492
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
60494
60493
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
60495
60494
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60496
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
60497
60495
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
60498
60496
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
60499
60497
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60500
|
-
|
|
60498
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
60499
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
60501
60500
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
60502
60501
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
60502
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
60503
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60503
60504
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
60504
60505
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
60505
60506
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
60506
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
60507
60507
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
60508
60508
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
60509
60509
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -61118,11 +61118,10 @@ export namespace Prisma {
|
|
|
61118
61118
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
61119
61119
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
61120
61120
|
uploaded_job_description_path?: string | null
|
|
61121
|
-
is_plan_locked?: boolean | null
|
|
61122
61121
|
is_plan_published?: boolean
|
|
61123
61122
|
is_posted?: boolean
|
|
61124
61123
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
61125
|
-
|
|
61124
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
61126
61125
|
created_at?: Date | string
|
|
61127
61126
|
updated_at?: Date | string
|
|
61128
61127
|
created_by: string
|
|
@@ -61153,11 +61152,10 @@ export namespace Prisma {
|
|
|
61153
61152
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
61154
61153
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
61155
61154
|
uploaded_job_description_path?: string | null
|
|
61156
|
-
is_plan_locked?: boolean | null
|
|
61157
61155
|
is_plan_published?: boolean
|
|
61158
61156
|
is_posted?: boolean
|
|
61159
61157
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
61160
|
-
|
|
61158
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
61161
61159
|
created_at?: Date | string
|
|
61162
61160
|
updated_at?: Date | string
|
|
61163
61161
|
created_by: string
|
|
@@ -61184,11 +61182,10 @@ export namespace Prisma {
|
|
|
61184
61182
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
61185
61183
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
61186
61184
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61187
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
61188
61185
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
61189
61186
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
61190
61187
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
61191
|
-
|
|
61188
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
61192
61189
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61193
61190
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61194
61191
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -61219,11 +61216,10 @@ export namespace Prisma {
|
|
|
61219
61216
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
61220
61217
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
61221
61218
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61222
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
61223
61219
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
61224
61220
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
61225
61221
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
61226
|
-
|
|
61222
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
61227
61223
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61228
61224
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61229
61225
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -61252,11 +61248,10 @@ export namespace Prisma {
|
|
|
61252
61248
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
61253
61249
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
61254
61250
|
uploaded_job_description_path?: string | null
|
|
61255
|
-
is_plan_locked?: boolean | null
|
|
61256
61251
|
is_plan_published?: boolean
|
|
61257
61252
|
is_posted?: boolean
|
|
61258
61253
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
61259
|
-
|
|
61254
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
61260
61255
|
created_at?: Date | string
|
|
61261
61256
|
updated_at?: Date | string
|
|
61262
61257
|
created_by: string
|
|
@@ -61271,11 +61266,10 @@ export namespace Prisma {
|
|
|
61271
61266
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
61272
61267
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
61273
61268
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61274
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
61275
61269
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
61276
61270
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
61277
61271
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
61278
|
-
|
|
61272
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
61279
61273
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61280
61274
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61281
61275
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -61292,11 +61286,10 @@ export namespace Prisma {
|
|
|
61292
61286
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
61293
61287
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
61294
61288
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61295
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
61296
61289
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
61297
61290
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
61298
61291
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
61299
|
-
|
|
61292
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
61300
61293
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61301
61294
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61302
61295
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -62487,6 +62480,7 @@ export namespace Prisma {
|
|
|
62487
62480
|
created_by: string
|
|
62488
62481
|
updated_by: string
|
|
62489
62482
|
is_active?: boolean
|
|
62483
|
+
name?: string | null
|
|
62490
62484
|
yearsOfExperience?: number | null
|
|
62491
62485
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
62492
62486
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -62510,6 +62504,7 @@ export namespace Prisma {
|
|
|
62510
62504
|
created_by: string
|
|
62511
62505
|
updated_by: string
|
|
62512
62506
|
is_active?: boolean
|
|
62507
|
+
name?: string | null
|
|
62513
62508
|
yearsOfExperience?: number | null
|
|
62514
62509
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
62515
62510
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -62527,6 +62522,7 @@ export namespace Prisma {
|
|
|
62527
62522
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
62528
62523
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
62529
62524
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
62525
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62530
62526
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
62531
62527
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
62532
62528
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -62550,6 +62546,7 @@ export namespace Prisma {
|
|
|
62550
62546
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
62551
62547
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
62552
62548
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
62549
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62553
62550
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
62554
62551
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
62555
62552
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -62570,6 +62567,7 @@ export namespace Prisma {
|
|
|
62570
62567
|
created_by: string
|
|
62571
62568
|
updated_by: string
|
|
62572
62569
|
is_active?: boolean
|
|
62570
|
+
name?: string | null
|
|
62573
62571
|
yearsOfExperience?: number | null
|
|
62574
62572
|
}
|
|
62575
62573
|
|
|
@@ -62581,6 +62579,7 @@ export namespace Prisma {
|
|
|
62581
62579
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
62582
62580
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
62583
62581
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
62582
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62584
62583
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
62585
62584
|
}
|
|
62586
62585
|
|
|
@@ -62595,6 +62594,7 @@ export namespace Prisma {
|
|
|
62595
62594
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
62596
62595
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
62597
62596
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
62597
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62598
62598
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
62599
62599
|
}
|
|
62600
62600
|
|
|
@@ -62684,7 +62684,7 @@ export namespace Prisma {
|
|
|
62684
62684
|
export type SuggestionCreateInput = {
|
|
62685
62685
|
id?: string
|
|
62686
62686
|
transcript_id?: string | null
|
|
62687
|
-
suggestion
|
|
62687
|
+
suggestion?: string | null
|
|
62688
62688
|
question?: string | null
|
|
62689
62689
|
created_at?: Date | string
|
|
62690
62690
|
updated_at?: Date | string
|
|
@@ -62701,7 +62701,7 @@ export namespace Prisma {
|
|
|
62701
62701
|
interview_id?: string | null
|
|
62702
62702
|
transcript_id?: string | null
|
|
62703
62703
|
organisation_id: string
|
|
62704
|
-
suggestion
|
|
62704
|
+
suggestion?: string | null
|
|
62705
62705
|
question?: string | null
|
|
62706
62706
|
created_at?: Date | string
|
|
62707
62707
|
updated_at?: Date | string
|
|
@@ -62714,7 +62714,7 @@ export namespace Prisma {
|
|
|
62714
62714
|
export type SuggestionUpdateInput = {
|
|
62715
62715
|
id?: StringFieldUpdateOperationsInput | string
|
|
62716
62716
|
transcript_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62717
|
-
suggestion?:
|
|
62717
|
+
suggestion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62718
62718
|
question?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62719
62719
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62720
62720
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -62731,7 +62731,7 @@ export namespace Prisma {
|
|
|
62731
62731
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62732
62732
|
transcript_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62733
62733
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
62734
|
-
suggestion?:
|
|
62734
|
+
suggestion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62735
62735
|
question?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62736
62736
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62737
62737
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -62746,7 +62746,7 @@ export namespace Prisma {
|
|
|
62746
62746
|
interview_id?: string | null
|
|
62747
62747
|
transcript_id?: string | null
|
|
62748
62748
|
organisation_id: string
|
|
62749
|
-
suggestion
|
|
62749
|
+
suggestion?: string | null
|
|
62750
62750
|
question?: string | null
|
|
62751
62751
|
created_at?: Date | string
|
|
62752
62752
|
updated_at?: Date | string
|
|
@@ -62758,7 +62758,7 @@ export namespace Prisma {
|
|
|
62758
62758
|
export type SuggestionUpdateManyMutationInput = {
|
|
62759
62759
|
id?: StringFieldUpdateOperationsInput | string
|
|
62760
62760
|
transcript_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62761
|
-
suggestion?:
|
|
62761
|
+
suggestion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62762
62762
|
question?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62763
62763
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62764
62764
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -62772,7 +62772,7 @@ export namespace Prisma {
|
|
|
62772
62772
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62773
62773
|
transcript_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62774
62774
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
62775
|
-
suggestion?:
|
|
62775
|
+
suggestion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62776
62776
|
question?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62777
62777
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62778
62778
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -64839,7 +64839,6 @@ export namespace Prisma {
|
|
|
64839
64839
|
resume_id?: SortOrder
|
|
64840
64840
|
job_description_id?: SortOrder
|
|
64841
64841
|
skills_match?: SortOrder
|
|
64842
|
-
skills_score?: SortOrder
|
|
64843
64842
|
responsibilities_match?: SortOrder
|
|
64844
64843
|
responsibilities_score?: SortOrder
|
|
64845
64844
|
experience_match?: SortOrder
|
|
@@ -64848,17 +64847,18 @@ export namespace Prisma {
|
|
|
64848
64847
|
organisation_value_match?: SortOrder
|
|
64849
64848
|
qualifications_match?: SortOrder
|
|
64850
64849
|
qualifications_score?: SortOrder
|
|
64851
|
-
overall_analysis?: SortOrder
|
|
64852
64850
|
fit?: SortOrder
|
|
64853
64851
|
fit_check_status?: SortOrder
|
|
64854
64852
|
skills_analysis?: SortOrder
|
|
64855
|
-
|
|
64853
|
+
overall_analysis?: SortOrder
|
|
64854
|
+
skills_score?: SortOrder
|
|
64856
64855
|
overall_score?: SortOrder
|
|
64857
64856
|
short_match_analysis?: SortOrder
|
|
64857
|
+
fit_comparison?: SortOrder
|
|
64858
|
+
recommendation?: SortOrder
|
|
64858
64859
|
candidate_analysis?: SortOrder
|
|
64859
64860
|
technical_analysis?: SortOrder
|
|
64860
64861
|
competency_analysis?: SortOrder
|
|
64861
|
-
recommendation?: SortOrder
|
|
64862
64862
|
created_by?: SortOrder
|
|
64863
64863
|
updated_by?: SortOrder
|
|
64864
64864
|
is_active?: SortOrder
|
|
@@ -64867,11 +64867,11 @@ export namespace Prisma {
|
|
|
64867
64867
|
}
|
|
64868
64868
|
|
|
64869
64869
|
export type FitCheckAvgOrderByAggregateInput = {
|
|
64870
|
-
skills_score?: SortOrder
|
|
64871
64870
|
responsibilities_score?: SortOrder
|
|
64872
64871
|
experience_score?: SortOrder
|
|
64873
64872
|
organisation_value_score?: SortOrder
|
|
64874
64873
|
qualifications_score?: SortOrder
|
|
64874
|
+
skills_score?: SortOrder
|
|
64875
64875
|
overall_score?: SortOrder
|
|
64876
64876
|
}
|
|
64877
64877
|
|
|
@@ -64880,12 +64880,12 @@ export namespace Prisma {
|
|
|
64880
64880
|
organisation_id?: SortOrder
|
|
64881
64881
|
resume_id?: SortOrder
|
|
64882
64882
|
job_description_id?: SortOrder
|
|
64883
|
-
skills_score?: SortOrder
|
|
64884
64883
|
responsibilities_score?: SortOrder
|
|
64885
64884
|
experience_score?: SortOrder
|
|
64886
64885
|
organisation_value_score?: SortOrder
|
|
64887
64886
|
qualifications_score?: SortOrder
|
|
64888
64887
|
fit_check_status?: SortOrder
|
|
64888
|
+
skills_score?: SortOrder
|
|
64889
64889
|
overall_score?: SortOrder
|
|
64890
64890
|
created_by?: SortOrder
|
|
64891
64891
|
updated_by?: SortOrder
|
|
@@ -64899,12 +64899,12 @@ export namespace Prisma {
|
|
|
64899
64899
|
organisation_id?: SortOrder
|
|
64900
64900
|
resume_id?: SortOrder
|
|
64901
64901
|
job_description_id?: SortOrder
|
|
64902
|
-
skills_score?: SortOrder
|
|
64903
64902
|
responsibilities_score?: SortOrder
|
|
64904
64903
|
experience_score?: SortOrder
|
|
64905
64904
|
organisation_value_score?: SortOrder
|
|
64906
64905
|
qualifications_score?: SortOrder
|
|
64907
64906
|
fit_check_status?: SortOrder
|
|
64907
|
+
skills_score?: SortOrder
|
|
64908
64908
|
overall_score?: SortOrder
|
|
64909
64909
|
created_by?: SortOrder
|
|
64910
64910
|
updated_by?: SortOrder
|
|
@@ -64914,11 +64914,11 @@ export namespace Prisma {
|
|
|
64914
64914
|
}
|
|
64915
64915
|
|
|
64916
64916
|
export type FitCheckSumOrderByAggregateInput = {
|
|
64917
|
-
skills_score?: SortOrder
|
|
64918
64917
|
responsibilities_score?: SortOrder
|
|
64919
64918
|
experience_score?: SortOrder
|
|
64920
64919
|
organisation_value_score?: SortOrder
|
|
64921
64920
|
qualifications_score?: SortOrder
|
|
64921
|
+
skills_score?: SortOrder
|
|
64922
64922
|
overall_score?: SortOrder
|
|
64923
64923
|
}
|
|
64924
64924
|
|
|
@@ -65390,11 +65390,6 @@ export namespace Prisma {
|
|
|
65390
65390
|
not?: NestedEnumJobDescriptionStatusFilter<$PrismaModel> | $Enums.JobDescriptionStatus
|
|
65391
65391
|
}
|
|
65392
65392
|
|
|
65393
|
-
export type BoolNullableFilter<$PrismaModel = never> = {
|
|
65394
|
-
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
65395
|
-
not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
|
|
65396
|
-
}
|
|
65397
|
-
|
|
65398
65393
|
export type FitCheckListRelationFilter = {
|
|
65399
65394
|
every?: FitCheckWhereInput
|
|
65400
65395
|
some?: FitCheckWhereInput
|
|
@@ -65458,11 +65453,10 @@ export namespace Prisma {
|
|
|
65458
65453
|
screeningQuestions?: SortOrder
|
|
65459
65454
|
recommendedQuestions?: SortOrder
|
|
65460
65455
|
uploaded_job_description_path?: SortOrder
|
|
65461
|
-
is_plan_locked?: SortOrder
|
|
65462
65456
|
is_plan_published?: SortOrder
|
|
65463
65457
|
is_posted?: SortOrder
|
|
65464
65458
|
ai_insight?: SortOrder
|
|
65465
|
-
|
|
65459
|
+
job_fit_comparison?: SortOrder
|
|
65466
65460
|
created_at?: SortOrder
|
|
65467
65461
|
updated_at?: SortOrder
|
|
65468
65462
|
created_by?: SortOrder
|
|
@@ -65481,7 +65475,6 @@ export namespace Prisma {
|
|
|
65481
65475
|
hiring_manager_id?: SortOrder
|
|
65482
65476
|
status?: SortOrder
|
|
65483
65477
|
uploaded_job_description_path?: SortOrder
|
|
65484
|
-
is_plan_locked?: SortOrder
|
|
65485
65478
|
is_plan_published?: SortOrder
|
|
65486
65479
|
is_posted?: SortOrder
|
|
65487
65480
|
created_at?: SortOrder
|
|
@@ -65498,7 +65491,6 @@ export namespace Prisma {
|
|
|
65498
65491
|
hiring_manager_id?: SortOrder
|
|
65499
65492
|
status?: SortOrder
|
|
65500
65493
|
uploaded_job_description_path?: SortOrder
|
|
65501
|
-
is_plan_locked?: SortOrder
|
|
65502
65494
|
is_plan_published?: SortOrder
|
|
65503
65495
|
is_posted?: SortOrder
|
|
65504
65496
|
created_at?: SortOrder
|
|
@@ -65523,14 +65515,6 @@ export namespace Prisma {
|
|
|
65523
65515
|
_max?: NestedEnumJobDescriptionStatusFilter<$PrismaModel>
|
|
65524
65516
|
}
|
|
65525
65517
|
|
|
65526
|
-
export type BoolNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
65527
|
-
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
65528
|
-
not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
|
|
65529
|
-
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
65530
|
-
_min?: NestedBoolNullableFilter<$PrismaModel>
|
|
65531
|
-
_max?: NestedBoolNullableFilter<$PrismaModel>
|
|
65532
|
-
}
|
|
65533
|
-
|
|
65534
65518
|
export type JobDescriptionDataJob_description_idKeyCompoundUniqueInput = {
|
|
65535
65519
|
job_description_id: string
|
|
65536
65520
|
key: string
|
|
@@ -65629,6 +65613,11 @@ export namespace Prisma {
|
|
|
65629
65613
|
not?: NestedEnumOngoingEvaluationRoundStatusNullableFilter<$PrismaModel> | $Enums.OngoingEvaluationRoundStatus | null
|
|
65630
65614
|
}
|
|
65631
65615
|
|
|
65616
|
+
export type BoolNullableFilter<$PrismaModel = never> = {
|
|
65617
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
65618
|
+
not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
|
|
65619
|
+
}
|
|
65620
|
+
|
|
65632
65621
|
export type EnumEvaluationTypeNullableFilter<$PrismaModel = never> = {
|
|
65633
65622
|
equals?: $Enums.EvaluationType | EnumEvaluationTypeFieldRefInput<$PrismaModel> | null
|
|
65634
65623
|
in?: $Enums.EvaluationType[] | ListEnumEvaluationTypeFieldRefInput<$PrismaModel> | null
|
|
@@ -65800,6 +65789,14 @@ export namespace Prisma {
|
|
|
65800
65789
|
_max?: NestedEnumOngoingEvaluationRoundStatusNullableFilter<$PrismaModel>
|
|
65801
65790
|
}
|
|
65802
65791
|
|
|
65792
|
+
export type BoolNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
65793
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
65794
|
+
not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
|
|
65795
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
65796
|
+
_min?: NestedBoolNullableFilter<$PrismaModel>
|
|
65797
|
+
_max?: NestedBoolNullableFilter<$PrismaModel>
|
|
65798
|
+
}
|
|
65799
|
+
|
|
65803
65800
|
export type EnumEvaluationTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
65804
65801
|
equals?: $Enums.EvaluationType | EnumEvaluationTypeFieldRefInput<$PrismaModel> | null
|
|
65805
65802
|
in?: $Enums.EvaluationType[] | ListEnumEvaluationTypeFieldRefInput<$PrismaModel> | null
|
|
@@ -66325,6 +66322,7 @@ export namespace Prisma {
|
|
|
66325
66322
|
created_by?: SortOrder
|
|
66326
66323
|
updated_by?: SortOrder
|
|
66327
66324
|
is_active?: SortOrder
|
|
66325
|
+
name?: SortOrder
|
|
66328
66326
|
yearsOfExperience?: SortOrder
|
|
66329
66327
|
}
|
|
66330
66328
|
|
|
@@ -66343,6 +66341,7 @@ export namespace Prisma {
|
|
|
66343
66341
|
created_by?: SortOrder
|
|
66344
66342
|
updated_by?: SortOrder
|
|
66345
66343
|
is_active?: SortOrder
|
|
66344
|
+
name?: SortOrder
|
|
66346
66345
|
yearsOfExperience?: SortOrder
|
|
66347
66346
|
}
|
|
66348
66347
|
|
|
@@ -66357,6 +66356,7 @@ export namespace Prisma {
|
|
|
66357
66356
|
created_by?: SortOrder
|
|
66358
66357
|
updated_by?: SortOrder
|
|
66359
66358
|
is_active?: SortOrder
|
|
66359
|
+
name?: SortOrder
|
|
66360
66360
|
yearsOfExperience?: SortOrder
|
|
66361
66361
|
}
|
|
66362
66362
|
|
|
@@ -67908,10 +67908,6 @@ export namespace Prisma {
|
|
|
67908
67908
|
set: string[]
|
|
67909
67909
|
}
|
|
67910
67910
|
|
|
67911
|
-
export type FitCheckCreateoverall_analysisInput = {
|
|
67912
|
-
set: string[]
|
|
67913
|
-
}
|
|
67914
|
-
|
|
67915
67911
|
export type FitCheckCreatefitInput = {
|
|
67916
67912
|
set: InputJsonValue[]
|
|
67917
67913
|
}
|
|
@@ -67987,11 +67983,6 @@ export namespace Prisma {
|
|
|
67987
67983
|
push?: string | string[]
|
|
67988
67984
|
}
|
|
67989
67985
|
|
|
67990
|
-
export type FitCheckUpdateoverall_analysisInput = {
|
|
67991
|
-
set?: string[]
|
|
67992
|
-
push?: string | string[]
|
|
67993
|
-
}
|
|
67994
|
-
|
|
67995
67986
|
export type FitCheckUpdatefitInput = {
|
|
67996
67987
|
set?: InputJsonValue[]
|
|
67997
67988
|
push?: InputJsonValue | InputJsonValue[]
|
|
@@ -68794,10 +68785,6 @@ export namespace Prisma {
|
|
|
68794
68785
|
push?: InputJsonValue | InputJsonValue[]
|
|
68795
68786
|
}
|
|
68796
68787
|
|
|
68797
|
-
export type NullableBoolFieldUpdateOperationsInput = {
|
|
68798
|
-
set?: boolean | null
|
|
68799
|
-
}
|
|
68800
|
-
|
|
68801
68788
|
export type OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput = {
|
|
68802
68789
|
create?: XOR<OrganisationCreateWithoutJob_descriptionsInput, OrganisationUncheckedCreateWithoutJob_descriptionsInput>
|
|
68803
68790
|
connectOrCreate?: OrganisationCreateOrConnectWithoutJob_descriptionsInput
|
|
@@ -69247,6 +69234,10 @@ export namespace Prisma {
|
|
|
69247
69234
|
push?: string | string[]
|
|
69248
69235
|
}
|
|
69249
69236
|
|
|
69237
|
+
export type NullableBoolFieldUpdateOperationsInput = {
|
|
69238
|
+
set?: boolean | null
|
|
69239
|
+
}
|
|
69240
|
+
|
|
69250
69241
|
export type NullableEnumEvaluationTypeFieldUpdateOperationsInput = {
|
|
69251
69242
|
set?: $Enums.EvaluationType | null
|
|
69252
69243
|
}
|
|
@@ -72295,11 +72286,6 @@ export namespace Prisma {
|
|
|
72295
72286
|
not?: NestedEnumJobDescriptionStatusFilter<$PrismaModel> | $Enums.JobDescriptionStatus
|
|
72296
72287
|
}
|
|
72297
72288
|
|
|
72298
|
-
export type NestedBoolNullableFilter<$PrismaModel = never> = {
|
|
72299
|
-
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
72300
|
-
not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
|
|
72301
|
-
}
|
|
72302
|
-
|
|
72303
72289
|
export type NestedEnumJobDescriptionStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
72304
72290
|
equals?: $Enums.JobDescriptionStatus | EnumJobDescriptionStatusFieldRefInput<$PrismaModel>
|
|
72305
72291
|
in?: $Enums.JobDescriptionStatus[] | ListEnumJobDescriptionStatusFieldRefInput<$PrismaModel>
|
|
@@ -72310,14 +72296,6 @@ export namespace Prisma {
|
|
|
72310
72296
|
_max?: NestedEnumJobDescriptionStatusFilter<$PrismaModel>
|
|
72311
72297
|
}
|
|
72312
72298
|
|
|
72313
|
-
export type NestedBoolNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
72314
|
-
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
72315
|
-
not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
|
|
72316
|
-
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
72317
|
-
_min?: NestedBoolNullableFilter<$PrismaModel>
|
|
72318
|
-
_max?: NestedBoolNullableFilter<$PrismaModel>
|
|
72319
|
-
}
|
|
72320
|
-
|
|
72321
72299
|
export type NestedEnumOngoingEvaluationStatusNullableFilter<$PrismaModel = never> = {
|
|
72322
72300
|
equals?: $Enums.OngoingEvaluationStatus | EnumOngoingEvaluationStatusFieldRefInput<$PrismaModel> | null
|
|
72323
72301
|
in?: $Enums.OngoingEvaluationStatus[] | ListEnumOngoingEvaluationStatusFieldRefInput<$PrismaModel> | null
|
|
@@ -72339,6 +72317,11 @@ export namespace Prisma {
|
|
|
72339
72317
|
not?: NestedEnumOngoingEvaluationRoundStatusNullableFilter<$PrismaModel> | $Enums.OngoingEvaluationRoundStatus | null
|
|
72340
72318
|
}
|
|
72341
72319
|
|
|
72320
|
+
export type NestedBoolNullableFilter<$PrismaModel = never> = {
|
|
72321
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
72322
|
+
not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
|
|
72323
|
+
}
|
|
72324
|
+
|
|
72342
72325
|
export type NestedEnumEvaluationTypeNullableFilter<$PrismaModel = never> = {
|
|
72343
72326
|
equals?: $Enums.EvaluationType | EnumEvaluationTypeFieldRefInput<$PrismaModel> | null
|
|
72344
72327
|
in?: $Enums.EvaluationType[] | ListEnumEvaluationTypeFieldRefInput<$PrismaModel> | null
|
|
@@ -72383,6 +72366,14 @@ export namespace Prisma {
|
|
|
72383
72366
|
_max?: NestedEnumOngoingEvaluationRoundStatusNullableFilter<$PrismaModel>
|
|
72384
72367
|
}
|
|
72385
72368
|
|
|
72369
|
+
export type NestedBoolNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
72370
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel> | null
|
|
72371
|
+
not?: NestedBoolNullableWithAggregatesFilter<$PrismaModel> | boolean | null
|
|
72372
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
72373
|
+
_min?: NestedBoolNullableFilter<$PrismaModel>
|
|
72374
|
+
_max?: NestedBoolNullableFilter<$PrismaModel>
|
|
72375
|
+
}
|
|
72376
|
+
|
|
72386
72377
|
export type NestedEnumEvaluationTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
72387
72378
|
equals?: $Enums.EvaluationType | EnumEvaluationTypeFieldRefInput<$PrismaModel> | null
|
|
72388
72379
|
in?: $Enums.EvaluationType[] | ListEnumEvaluationTypeFieldRefInput<$PrismaModel> | null
|
|
@@ -73967,6 +73958,7 @@ export namespace Prisma {
|
|
|
73967
73958
|
created_by: string
|
|
73968
73959
|
updated_by: string
|
|
73969
73960
|
is_active?: boolean
|
|
73961
|
+
name?: string | null
|
|
73970
73962
|
yearsOfExperience?: number | null
|
|
73971
73963
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
73972
73964
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -73989,6 +73981,7 @@ export namespace Prisma {
|
|
|
73989
73981
|
created_by: string
|
|
73990
73982
|
updated_by: string
|
|
73991
73983
|
is_active?: boolean
|
|
73984
|
+
name?: string | null
|
|
73992
73985
|
yearsOfExperience?: number | null
|
|
73993
73986
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
73994
73987
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -74008,11 +74001,10 @@ export namespace Prisma {
|
|
|
74008
74001
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
74009
74002
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
74010
74003
|
uploaded_job_description_path?: string | null
|
|
74011
|
-
is_plan_locked?: boolean | null
|
|
74012
74004
|
is_plan_published?: boolean
|
|
74013
74005
|
is_posted?: boolean
|
|
74014
74006
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
74015
|
-
|
|
74007
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
74016
74008
|
created_at?: Date | string
|
|
74017
74009
|
updated_at?: Date | string
|
|
74018
74010
|
created_by: string
|
|
@@ -74042,11 +74034,10 @@ export namespace Prisma {
|
|
|
74042
74034
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
74043
74035
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
74044
74036
|
uploaded_job_description_path?: string | null
|
|
74045
|
-
is_plan_locked?: boolean | null
|
|
74046
74037
|
is_plan_published?: boolean
|
|
74047
74038
|
is_posted?: boolean
|
|
74048
74039
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
74049
|
-
|
|
74040
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
74050
74041
|
created_at?: Date | string
|
|
74051
74042
|
updated_at?: Date | string
|
|
74052
74043
|
created_by: string
|
|
@@ -74074,7 +74065,6 @@ export namespace Prisma {
|
|
|
74074
74065
|
export type FitCheckCreateWithoutApplicationInput = {
|
|
74075
74066
|
id?: string
|
|
74076
74067
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
74077
|
-
skills_score?: number | null
|
|
74078
74068
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
74079
74069
|
responsibilities_score?: number | null
|
|
74080
74070
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -74083,17 +74073,18 @@ export namespace Prisma {
|
|
|
74083
74073
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
74084
74074
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
74085
74075
|
qualifications_score?: number | null
|
|
74086
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
74087
74076
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
74088
74077
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
74089
74078
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
74090
|
-
|
|
74079
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
74080
|
+
skills_score?: number | null
|
|
74091
74081
|
overall_score: number
|
|
74092
74082
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
74083
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
74084
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
74093
74085
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
74094
74086
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
74095
74087
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
74096
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
74097
74088
|
created_by: string
|
|
74098
74089
|
updated_by: string
|
|
74099
74090
|
is_active?: boolean
|
|
@@ -74110,7 +74101,6 @@ export namespace Prisma {
|
|
|
74110
74101
|
resume_id: string
|
|
74111
74102
|
job_description_id: string
|
|
74112
74103
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
74113
|
-
skills_score?: number | null
|
|
74114
74104
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
74115
74105
|
responsibilities_score?: number | null
|
|
74116
74106
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -74119,17 +74109,18 @@ export namespace Prisma {
|
|
|
74119
74109
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
74120
74110
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
74121
74111
|
qualifications_score?: number | null
|
|
74122
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
74123
74112
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
74124
74113
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
74125
74114
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
74126
|
-
|
|
74115
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
74116
|
+
skills_score?: number | null
|
|
74127
74117
|
overall_score: number
|
|
74128
74118
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
74119
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
74120
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
74129
74121
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
74130
74122
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
74131
74123
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
74132
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
74133
74124
|
created_by: string
|
|
74134
74125
|
updated_by: string
|
|
74135
74126
|
is_active?: boolean
|
|
@@ -74576,6 +74567,7 @@ export namespace Prisma {
|
|
|
74576
74567
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
74577
74568
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
74578
74569
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
74570
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
74579
74571
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
74580
74572
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
74581
74573
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -74598,6 +74590,7 @@ export namespace Prisma {
|
|
|
74598
74590
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
74599
74591
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
74600
74592
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
74593
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
74601
74594
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
74602
74595
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
74603
74596
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -74623,11 +74616,10 @@ export namespace Prisma {
|
|
|
74623
74616
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
74624
74617
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
74625
74618
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
74626
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
74627
74619
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
74628
74620
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
74629
74621
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
74630
|
-
|
|
74622
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
74631
74623
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
74632
74624
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
74633
74625
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -74657,11 +74649,10 @@ export namespace Prisma {
|
|
|
74657
74649
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
74658
74650
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
74659
74651
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
74660
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
74661
74652
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
74662
74653
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
74663
74654
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
74664
|
-
|
|
74655
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
74665
74656
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
74666
74657
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
74667
74658
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -74695,7 +74686,6 @@ export namespace Prisma {
|
|
|
74695
74686
|
export type FitCheckUpdateWithoutApplicationInput = {
|
|
74696
74687
|
id?: StringFieldUpdateOperationsInput | string
|
|
74697
74688
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
74698
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
74699
74689
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
74700
74690
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
74701
74691
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -74704,17 +74694,18 @@ export namespace Prisma {
|
|
|
74704
74694
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
74705
74695
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
74706
74696
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
74707
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
74708
74697
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
74709
74698
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
74710
74699
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
74711
|
-
|
|
74700
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
74701
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
74712
74702
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
74713
74703
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
74704
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
74705
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
74714
74706
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
74715
74707
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
74716
74708
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
74717
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
74718
74709
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
74719
74710
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
74720
74711
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -74731,7 +74722,6 @@ export namespace Prisma {
|
|
|
74731
74722
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
74732
74723
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
74733
74724
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
74734
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
74735
74725
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
74736
74726
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
74737
74727
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -74740,17 +74730,18 @@ export namespace Prisma {
|
|
|
74740
74730
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
74741
74731
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
74742
74732
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
74743
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
74744
74733
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
74745
74734
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
74746
74735
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
74747
|
-
|
|
74736
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
74737
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
74748
74738
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
74749
74739
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
74740
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
74741
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
74750
74742
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
74751
74743
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
74752
74744
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
74753
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
74754
74745
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
74755
74746
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
74756
74747
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -74862,11 +74853,10 @@ export namespace Prisma {
|
|
|
74862
74853
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
74863
74854
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
74864
74855
|
uploaded_job_description_path?: string | null
|
|
74865
|
-
is_plan_locked?: boolean | null
|
|
74866
74856
|
is_plan_published?: boolean
|
|
74867
74857
|
is_posted?: boolean
|
|
74868
74858
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
74869
|
-
|
|
74859
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
74870
74860
|
created_at?: Date | string
|
|
74871
74861
|
updated_at?: Date | string
|
|
74872
74862
|
created_by: string
|
|
@@ -74896,11 +74886,10 @@ export namespace Prisma {
|
|
|
74896
74886
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
74897
74887
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
74898
74888
|
uploaded_job_description_path?: string | null
|
|
74899
|
-
is_plan_locked?: boolean | null
|
|
74900
74889
|
is_plan_published?: boolean
|
|
74901
74890
|
is_posted?: boolean
|
|
74902
74891
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
74903
|
-
|
|
74892
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
74904
74893
|
created_at?: Date | string
|
|
74905
74894
|
updated_at?: Date | string
|
|
74906
74895
|
created_by: string
|
|
@@ -75128,11 +75117,10 @@ export namespace Prisma {
|
|
|
75128
75117
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
75129
75118
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
75130
75119
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
75131
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
75132
75120
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
75133
75121
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
75134
75122
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
75135
|
-
|
|
75123
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
75136
75124
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75137
75125
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75138
75126
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -75162,11 +75150,10 @@ export namespace Prisma {
|
|
|
75162
75150
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
75163
75151
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
75164
75152
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
75165
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
75166
75153
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
75167
75154
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
75168
75155
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
75169
|
-
|
|
75156
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
75170
75157
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75171
75158
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75172
75159
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -77096,11 +77083,10 @@ export namespace Prisma {
|
|
|
77096
77083
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
77097
77084
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
77098
77085
|
uploaded_job_description_path?: string | null
|
|
77099
|
-
is_plan_locked?: boolean | null
|
|
77100
77086
|
is_plan_published?: boolean
|
|
77101
77087
|
is_posted?: boolean
|
|
77102
77088
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77103
|
-
|
|
77089
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77104
77090
|
created_at?: Date | string
|
|
77105
77091
|
updated_at?: Date | string
|
|
77106
77092
|
created_by: string
|
|
@@ -77130,11 +77116,10 @@ export namespace Prisma {
|
|
|
77130
77116
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
77131
77117
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
77132
77118
|
uploaded_job_description_path?: string | null
|
|
77133
|
-
is_plan_locked?: boolean | null
|
|
77134
77119
|
is_plan_published?: boolean
|
|
77135
77120
|
is_posted?: boolean
|
|
77136
77121
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77137
|
-
|
|
77122
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77138
77123
|
created_at?: Date | string
|
|
77139
77124
|
updated_at?: Date | string
|
|
77140
77125
|
created_by: string
|
|
@@ -77319,11 +77304,10 @@ export namespace Prisma {
|
|
|
77319
77304
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
77320
77305
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
77321
77306
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77322
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77323
77307
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
77324
77308
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
77325
77309
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77326
|
-
|
|
77310
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77327
77311
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77328
77312
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77329
77313
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -77353,11 +77337,10 @@ export namespace Prisma {
|
|
|
77353
77337
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
77354
77338
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
77355
77339
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77356
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77357
77340
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
77358
77341
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
77359
77342
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77360
|
-
|
|
77343
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77361
77344
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77362
77345
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77363
77346
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -77399,11 +77382,10 @@ export namespace Prisma {
|
|
|
77399
77382
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
77400
77383
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
77401
77384
|
uploaded_job_description_path?: string | null
|
|
77402
|
-
is_plan_locked?: boolean | null
|
|
77403
77385
|
is_plan_published?: boolean
|
|
77404
77386
|
is_posted?: boolean
|
|
77405
77387
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77406
|
-
|
|
77388
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77407
77389
|
created_at?: Date | string
|
|
77408
77390
|
updated_at?: Date | string
|
|
77409
77391
|
created_by: string
|
|
@@ -77433,11 +77415,10 @@ export namespace Prisma {
|
|
|
77433
77415
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
77434
77416
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
77435
77417
|
uploaded_job_description_path?: string | null
|
|
77436
|
-
is_plan_locked?: boolean | null
|
|
77437
77418
|
is_plan_published?: boolean
|
|
77438
77419
|
is_posted?: boolean
|
|
77439
77420
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77440
|
-
|
|
77421
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77441
77422
|
created_at?: Date | string
|
|
77442
77423
|
updated_at?: Date | string
|
|
77443
77424
|
created_by: string
|
|
@@ -77479,11 +77460,10 @@ export namespace Prisma {
|
|
|
77479
77460
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
77480
77461
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
77481
77462
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77482
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77483
77463
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
77484
77464
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
77485
77465
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77486
|
-
|
|
77466
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77487
77467
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77488
77468
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77489
77469
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -77513,11 +77493,10 @@ export namespace Prisma {
|
|
|
77513
77493
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
77514
77494
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
77515
77495
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77516
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
77517
77496
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
77518
77497
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
77519
77498
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
77520
|
-
|
|
77499
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
77521
77500
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77522
77501
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77523
77502
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -77896,6 +77875,7 @@ export namespace Prisma {
|
|
|
77896
77875
|
created_by: string
|
|
77897
77876
|
updated_by: string
|
|
77898
77877
|
is_active?: boolean
|
|
77878
|
+
name?: string | null
|
|
77899
77879
|
yearsOfExperience?: number | null
|
|
77900
77880
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
77901
77881
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -77918,6 +77898,7 @@ export namespace Prisma {
|
|
|
77918
77898
|
created_by: string
|
|
77919
77899
|
updated_by: string
|
|
77920
77900
|
is_active?: boolean
|
|
77901
|
+
name?: string | null
|
|
77921
77902
|
yearsOfExperience?: number | null
|
|
77922
77903
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
77923
77904
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -78071,6 +78052,7 @@ export namespace Prisma {
|
|
|
78071
78052
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
78072
78053
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
78073
78054
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
78055
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
78074
78056
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
78075
78057
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
78076
78058
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -78093,6 +78075,7 @@ export namespace Prisma {
|
|
|
78093
78075
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
78094
78076
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
78095
78077
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
78078
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
78096
78079
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
78097
78080
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
78098
78081
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -78107,11 +78090,10 @@ export namespace Prisma {
|
|
|
78107
78090
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
78108
78091
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
78109
78092
|
uploaded_job_description_path?: string | null
|
|
78110
|
-
is_plan_locked?: boolean | null
|
|
78111
78093
|
is_plan_published?: boolean
|
|
78112
78094
|
is_posted?: boolean
|
|
78113
78095
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
78114
|
-
|
|
78096
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
78115
78097
|
created_at?: Date | string
|
|
78116
78098
|
updated_at?: Date | string
|
|
78117
78099
|
created_by: string
|
|
@@ -78141,11 +78123,10 @@ export namespace Prisma {
|
|
|
78141
78123
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
78142
78124
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
78143
78125
|
uploaded_job_description_path?: string | null
|
|
78144
|
-
is_plan_locked?: boolean | null
|
|
78145
78126
|
is_plan_published?: boolean
|
|
78146
78127
|
is_posted?: boolean
|
|
78147
78128
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
78148
|
-
|
|
78129
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
78149
78130
|
created_at?: Date | string
|
|
78150
78131
|
updated_at?: Date | string
|
|
78151
78132
|
created_by: string
|
|
@@ -78560,11 +78541,10 @@ export namespace Prisma {
|
|
|
78560
78541
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
78561
78542
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
78562
78543
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
78563
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
78564
78544
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
78565
78545
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
78566
78546
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
78567
|
-
|
|
78547
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
78568
78548
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
78569
78549
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
78570
78550
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -78594,11 +78574,10 @@ export namespace Prisma {
|
|
|
78594
78574
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
78595
78575
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
78596
78576
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
78597
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
78598
78577
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
78599
78578
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
78600
78579
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
78601
|
-
|
|
78580
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
78602
78581
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
78603
78582
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
78604
78583
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -79061,6 +79040,7 @@ export namespace Prisma {
|
|
|
79061
79040
|
created_by: string
|
|
79062
79041
|
updated_by: string
|
|
79063
79042
|
is_active?: boolean
|
|
79043
|
+
name?: string | null
|
|
79064
79044
|
yearsOfExperience?: number | null
|
|
79065
79045
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
79066
79046
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -79083,6 +79063,7 @@ export namespace Prisma {
|
|
|
79083
79063
|
created_by: string
|
|
79084
79064
|
updated_by: string
|
|
79085
79065
|
is_active?: boolean
|
|
79066
|
+
name?: string | null
|
|
79086
79067
|
yearsOfExperience?: number | null
|
|
79087
79068
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
79088
79069
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -79102,11 +79083,10 @@ export namespace Prisma {
|
|
|
79102
79083
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
79103
79084
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
79104
79085
|
uploaded_job_description_path?: string | null
|
|
79105
|
-
is_plan_locked?: boolean | null
|
|
79106
79086
|
is_plan_published?: boolean
|
|
79107
79087
|
is_posted?: boolean
|
|
79108
79088
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
79109
|
-
|
|
79089
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
79110
79090
|
created_at?: Date | string
|
|
79111
79091
|
updated_at?: Date | string
|
|
79112
79092
|
created_by: string
|
|
@@ -79136,11 +79116,10 @@ export namespace Prisma {
|
|
|
79136
79116
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
79137
79117
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
79138
79118
|
uploaded_job_description_path?: string | null
|
|
79139
|
-
is_plan_locked?: boolean | null
|
|
79140
79119
|
is_plan_published?: boolean
|
|
79141
79120
|
is_posted?: boolean
|
|
79142
79121
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
79143
|
-
|
|
79122
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
79144
79123
|
created_at?: Date | string
|
|
79145
79124
|
updated_at?: Date | string
|
|
79146
79125
|
created_by: string
|
|
@@ -79308,6 +79287,7 @@ export namespace Prisma {
|
|
|
79308
79287
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
79309
79288
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
79310
79289
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
79290
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
79311
79291
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
79312
79292
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
79313
79293
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -79330,6 +79310,7 @@ export namespace Prisma {
|
|
|
79330
79310
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
79331
79311
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
79332
79312
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
79313
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
79333
79314
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
79334
79315
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
79335
79316
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -79355,11 +79336,10 @@ export namespace Prisma {
|
|
|
79355
79336
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
79356
79337
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
79357
79338
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
79358
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
79359
79339
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
79360
79340
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
79361
79341
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
79362
|
-
|
|
79342
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
79363
79343
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79364
79344
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79365
79345
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -79389,11 +79369,10 @@ export namespace Prisma {
|
|
|
79389
79369
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
79390
79370
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
79391
79371
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
79392
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
79393
79372
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
79394
79373
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
79395
79374
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
79396
|
-
|
|
79375
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
79397
79376
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79398
79377
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79399
79378
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -80318,11 +80297,10 @@ export namespace Prisma {
|
|
|
80318
80297
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
80319
80298
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
80320
80299
|
uploaded_job_description_path?: string | null
|
|
80321
|
-
is_plan_locked?: boolean | null
|
|
80322
80300
|
is_plan_published?: boolean
|
|
80323
80301
|
is_posted?: boolean
|
|
80324
80302
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
80325
|
-
|
|
80303
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
80326
80304
|
created_at?: Date | string
|
|
80327
80305
|
updated_at?: Date | string
|
|
80328
80306
|
created_by: string
|
|
@@ -80352,11 +80330,10 @@ export namespace Prisma {
|
|
|
80352
80330
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
80353
80331
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
80354
80332
|
uploaded_job_description_path?: string | null
|
|
80355
|
-
is_plan_locked?: boolean | null
|
|
80356
80333
|
is_plan_published?: boolean
|
|
80357
80334
|
is_posted?: boolean
|
|
80358
80335
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
80359
|
-
|
|
80336
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
80360
80337
|
created_at?: Date | string
|
|
80361
80338
|
updated_at?: Date | string
|
|
80362
80339
|
created_by: string
|
|
@@ -80389,6 +80366,7 @@ export namespace Prisma {
|
|
|
80389
80366
|
created_by: string
|
|
80390
80367
|
updated_by: string
|
|
80391
80368
|
is_active?: boolean
|
|
80369
|
+
name?: string | null
|
|
80392
80370
|
yearsOfExperience?: number | null
|
|
80393
80371
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
80394
80372
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -80411,6 +80389,7 @@ export namespace Prisma {
|
|
|
80411
80389
|
created_by: string
|
|
80412
80390
|
updated_by: string
|
|
80413
80391
|
is_active?: boolean
|
|
80392
|
+
name?: string | null
|
|
80414
80393
|
yearsOfExperience?: number | null
|
|
80415
80394
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
80416
80395
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -80682,7 +80661,7 @@ export namespace Prisma {
|
|
|
80682
80661
|
export type SuggestionCreateWithoutInterviewInput = {
|
|
80683
80662
|
id?: string
|
|
80684
80663
|
transcript_id?: string | null
|
|
80685
|
-
suggestion
|
|
80664
|
+
suggestion?: string | null
|
|
80686
80665
|
question?: string | null
|
|
80687
80666
|
created_at?: Date | string
|
|
80688
80667
|
updated_at?: Date | string
|
|
@@ -80697,7 +80676,7 @@ export namespace Prisma {
|
|
|
80697
80676
|
id?: string
|
|
80698
80677
|
transcript_id?: string | null
|
|
80699
80678
|
organisation_id: string
|
|
80700
|
-
suggestion
|
|
80679
|
+
suggestion?: string | null
|
|
80701
80680
|
question?: string | null
|
|
80702
80681
|
created_at?: Date | string
|
|
80703
80682
|
updated_at?: Date | string
|
|
@@ -81161,11 +81140,10 @@ export namespace Prisma {
|
|
|
81161
81140
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
81162
81141
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
81163
81142
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
81164
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
81165
81143
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
81166
81144
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
81167
81145
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
81168
|
-
|
|
81146
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
81169
81147
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81170
81148
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81171
81149
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -81195,11 +81173,10 @@ export namespace Prisma {
|
|
|
81195
81173
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
81196
81174
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
81197
81175
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
81198
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
81199
81176
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
81200
81177
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
81201
81178
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
81202
|
-
|
|
81179
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
81203
81180
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81204
81181
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81205
81182
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -81238,6 +81215,7 @@ export namespace Prisma {
|
|
|
81238
81215
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
81239
81216
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
81240
81217
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
81218
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
81241
81219
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
81242
81220
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
81243
81221
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -81260,6 +81238,7 @@ export namespace Prisma {
|
|
|
81260
81238
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
81261
81239
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
81262
81240
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
81241
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
81263
81242
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
81264
81243
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
81265
81244
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -81533,7 +81512,7 @@ export namespace Prisma {
|
|
|
81533
81512
|
interview_id?: StringNullableFilter<"Suggestion"> | string | null
|
|
81534
81513
|
transcript_id?: StringNullableFilter<"Suggestion"> | string | null
|
|
81535
81514
|
organisation_id?: StringFilter<"Suggestion"> | string
|
|
81536
|
-
suggestion?:
|
|
81515
|
+
suggestion?: StringNullableFilter<"Suggestion"> | string | null
|
|
81537
81516
|
question?: StringNullableFilter<"Suggestion"> | string | null
|
|
81538
81517
|
created_at?: DateTimeFilter<"Suggestion"> | Date | string
|
|
81539
81518
|
updated_at?: DateTimeFilter<"Suggestion"> | Date | string
|
|
@@ -82144,7 +82123,6 @@ export namespace Prisma {
|
|
|
82144
82123
|
export type FitCheckCreateWithoutJob_descriptionInput = {
|
|
82145
82124
|
id?: string
|
|
82146
82125
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
82147
|
-
skills_score?: number | null
|
|
82148
82126
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
82149
82127
|
responsibilities_score?: number | null
|
|
82150
82128
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -82153,17 +82131,18 @@ export namespace Prisma {
|
|
|
82153
82131
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
82154
82132
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
82155
82133
|
qualifications_score?: number | null
|
|
82156
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
82157
82134
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
82158
82135
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
82159
82136
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
82160
|
-
|
|
82137
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
82138
|
+
skills_score?: number | null
|
|
82161
82139
|
overall_score: number
|
|
82162
82140
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
82141
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
82142
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
82163
82143
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
82164
82144
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
82165
82145
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
82166
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
82167
82146
|
created_by: string
|
|
82168
82147
|
updated_by: string
|
|
82169
82148
|
is_active?: boolean
|
|
@@ -82179,7 +82158,6 @@ export namespace Prisma {
|
|
|
82179
82158
|
organisation_id?: string | null
|
|
82180
82159
|
resume_id: string
|
|
82181
82160
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
82182
|
-
skills_score?: number | null
|
|
82183
82161
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
82184
82162
|
responsibilities_score?: number | null
|
|
82185
82163
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -82188,17 +82166,18 @@ export namespace Prisma {
|
|
|
82188
82166
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
82189
82167
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
82190
82168
|
qualifications_score?: number | null
|
|
82191
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
82192
82169
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
82193
82170
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
82194
82171
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
82195
|
-
|
|
82172
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
82173
|
+
skills_score?: number | null
|
|
82196
82174
|
overall_score: number
|
|
82197
82175
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
82176
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
82177
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
82198
82178
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
82199
82179
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
82200
82180
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
82201
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
82202
82181
|
created_by: string
|
|
82203
82182
|
updated_by: string
|
|
82204
82183
|
is_active?: boolean
|
|
@@ -82463,6 +82442,7 @@ export namespace Prisma {
|
|
|
82463
82442
|
created_by: string
|
|
82464
82443
|
updated_by: string
|
|
82465
82444
|
is_active?: boolean
|
|
82445
|
+
name?: string | null
|
|
82466
82446
|
yearsOfExperience?: number | null
|
|
82467
82447
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
82468
82448
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -82484,6 +82464,7 @@ export namespace Prisma {
|
|
|
82484
82464
|
created_by: string
|
|
82485
82465
|
updated_by: string
|
|
82486
82466
|
is_active?: boolean
|
|
82467
|
+
name?: string | null
|
|
82487
82468
|
yearsOfExperience?: number | null
|
|
82488
82469
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
82489
82470
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -82960,7 +82941,6 @@ export namespace Prisma {
|
|
|
82960
82941
|
resume_id?: StringFilter<"FitCheck"> | string
|
|
82961
82942
|
job_description_id?: StringFilter<"FitCheck"> | string
|
|
82962
82943
|
skills_match?: StringNullableListFilter<"FitCheck">
|
|
82963
|
-
skills_score?: FloatNullableFilter<"FitCheck"> | number | null
|
|
82964
82944
|
responsibilities_match?: StringNullableListFilter<"FitCheck">
|
|
82965
82945
|
responsibilities_score?: FloatNullableFilter<"FitCheck"> | number | null
|
|
82966
82946
|
experience_match?: StringNullableListFilter<"FitCheck">
|
|
@@ -82969,17 +82949,18 @@ export namespace Prisma {
|
|
|
82969
82949
|
organisation_value_match?: StringNullableListFilter<"FitCheck">
|
|
82970
82950
|
qualifications_match?: StringNullableListFilter<"FitCheck">
|
|
82971
82951
|
qualifications_score?: FloatNullableFilter<"FitCheck"> | number | null
|
|
82972
|
-
overall_analysis?: StringNullableListFilter<"FitCheck">
|
|
82973
82952
|
fit?: JsonNullableListFilter<"FitCheck">
|
|
82974
82953
|
fit_check_status?: EnumFitCheckStatusNullableFilter<"FitCheck"> | $Enums.FitCheckStatus | null
|
|
82975
82954
|
skills_analysis?: JsonNullableFilter<"FitCheck">
|
|
82976
|
-
|
|
82955
|
+
overall_analysis?: JsonNullableFilter<"FitCheck">
|
|
82956
|
+
skills_score?: FloatNullableFilter<"FitCheck"> | number | null
|
|
82977
82957
|
overall_score?: FloatFilter<"FitCheck"> | number
|
|
82978
82958
|
short_match_analysis?: JsonNullableListFilter<"FitCheck">
|
|
82959
|
+
fit_comparison?: JsonNullableFilter<"FitCheck">
|
|
82960
|
+
recommendation?: JsonNullableFilter<"FitCheck">
|
|
82979
82961
|
candidate_analysis?: JsonNullableListFilter<"FitCheck">
|
|
82980
82962
|
technical_analysis?: JsonNullableListFilter<"FitCheck">
|
|
82981
82963
|
competency_analysis?: JsonNullableListFilter<"FitCheck">
|
|
82982
|
-
recommendation?: JsonNullableFilter<"FitCheck">
|
|
82983
82964
|
created_by?: StringFilter<"FitCheck"> | string
|
|
82984
82965
|
updated_by?: StringFilter<"FitCheck"> | string
|
|
82985
82966
|
is_active?: BoolFilter<"FitCheck"> | boolean
|
|
@@ -83143,6 +83124,7 @@ export namespace Prisma {
|
|
|
83143
83124
|
created_by?: StringFilter<"Resume"> | string
|
|
83144
83125
|
updated_by?: StringFilter<"Resume"> | string
|
|
83145
83126
|
is_active?: BoolFilter<"Resume"> | boolean
|
|
83127
|
+
name?: StringNullableFilter<"Resume"> | string | null
|
|
83146
83128
|
yearsOfExperience?: IntNullableFilter<"Resume"> | number | null
|
|
83147
83129
|
}
|
|
83148
83130
|
|
|
@@ -83360,11 +83342,10 @@ export namespace Prisma {
|
|
|
83360
83342
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
83361
83343
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
83362
83344
|
uploaded_job_description_path?: string | null
|
|
83363
|
-
is_plan_locked?: boolean | null
|
|
83364
83345
|
is_plan_published?: boolean
|
|
83365
83346
|
is_posted?: boolean
|
|
83366
83347
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
83367
|
-
|
|
83348
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
83368
83349
|
created_at?: Date | string
|
|
83369
83350
|
updated_at?: Date | string
|
|
83370
83351
|
created_by: string
|
|
@@ -83394,11 +83375,10 @@ export namespace Prisma {
|
|
|
83394
83375
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
83395
83376
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
83396
83377
|
uploaded_job_description_path?: string | null
|
|
83397
|
-
is_plan_locked?: boolean | null
|
|
83398
83378
|
is_plan_published?: boolean
|
|
83399
83379
|
is_posted?: boolean
|
|
83400
83380
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
83401
|
-
|
|
83381
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
83402
83382
|
created_at?: Date | string
|
|
83403
83383
|
updated_at?: Date | string
|
|
83404
83384
|
created_by: string
|
|
@@ -83440,11 +83420,10 @@ export namespace Prisma {
|
|
|
83440
83420
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
83441
83421
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
83442
83422
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83443
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
83444
83423
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
83445
83424
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
83446
83425
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
83447
|
-
|
|
83426
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
83448
83427
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83449
83428
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83450
83429
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -83474,11 +83453,10 @@ export namespace Prisma {
|
|
|
83474
83453
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
83475
83454
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
83476
83455
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83477
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
83478
83456
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
83479
83457
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
83480
83458
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
83481
|
-
|
|
83459
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
83482
83460
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83483
83461
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83484
83462
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -83976,11 +83954,10 @@ export namespace Prisma {
|
|
|
83976
83954
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
83977
83955
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
83978
83956
|
uploaded_job_description_path?: string | null
|
|
83979
|
-
is_plan_locked?: boolean | null
|
|
83980
83957
|
is_plan_published?: boolean
|
|
83981
83958
|
is_posted?: boolean
|
|
83982
83959
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
83983
|
-
|
|
83960
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
83984
83961
|
created_at?: Date | string
|
|
83985
83962
|
updated_at?: Date | string
|
|
83986
83963
|
created_by: string
|
|
@@ -84010,11 +83987,10 @@ export namespace Prisma {
|
|
|
84010
83987
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
84011
83988
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
84012
83989
|
uploaded_job_description_path?: string | null
|
|
84013
|
-
is_plan_locked?: boolean | null
|
|
84014
83990
|
is_plan_published?: boolean
|
|
84015
83991
|
is_posted?: boolean
|
|
84016
83992
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
84017
|
-
|
|
83993
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
84018
83994
|
created_at?: Date | string
|
|
84019
83995
|
updated_at?: Date | string
|
|
84020
83996
|
created_by: string
|
|
@@ -84209,6 +84185,7 @@ export namespace Prisma {
|
|
|
84209
84185
|
created_by: string
|
|
84210
84186
|
updated_by: string
|
|
84211
84187
|
is_active?: boolean
|
|
84188
|
+
name?: string | null
|
|
84212
84189
|
yearsOfExperience?: number | null
|
|
84213
84190
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
84214
84191
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -84231,6 +84208,7 @@ export namespace Prisma {
|
|
|
84231
84208
|
created_by: string
|
|
84232
84209
|
updated_by: string
|
|
84233
84210
|
is_active?: boolean
|
|
84211
|
+
name?: string | null
|
|
84234
84212
|
yearsOfExperience?: number | null
|
|
84235
84213
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
84236
84214
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -84466,11 +84444,10 @@ export namespace Prisma {
|
|
|
84466
84444
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
84467
84445
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
84468
84446
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84469
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
84470
84447
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
84471
84448
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
84472
84449
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
84473
|
-
|
|
84450
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
84474
84451
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84475
84452
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84476
84453
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -84500,11 +84477,10 @@ export namespace Prisma {
|
|
|
84500
84477
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
84501
84478
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
84502
84479
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84503
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
84504
84480
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
84505
84481
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
84506
84482
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
84507
|
-
|
|
84483
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
84508
84484
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84509
84485
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84510
84486
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -84717,6 +84693,7 @@ export namespace Prisma {
|
|
|
84717
84693
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
84718
84694
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
84719
84695
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
84696
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84720
84697
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
84721
84698
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
84722
84699
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -84739,6 +84716,7 @@ export namespace Prisma {
|
|
|
84739
84716
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
84740
84717
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
84741
84718
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
84719
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84742
84720
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
84743
84721
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
84744
84722
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -85184,11 +85162,10 @@ export namespace Prisma {
|
|
|
85184
85162
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
85185
85163
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
85186
85164
|
uploaded_job_description_path?: string | null
|
|
85187
|
-
is_plan_locked?: boolean | null
|
|
85188
85165
|
is_plan_published?: boolean
|
|
85189
85166
|
is_posted?: boolean
|
|
85190
85167
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
85191
|
-
|
|
85168
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
85192
85169
|
created_at?: Date | string
|
|
85193
85170
|
updated_at?: Date | string
|
|
85194
85171
|
created_by: string
|
|
@@ -85217,11 +85194,10 @@ export namespace Prisma {
|
|
|
85217
85194
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
85218
85195
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
85219
85196
|
uploaded_job_description_path?: string | null
|
|
85220
|
-
is_plan_locked?: boolean | null
|
|
85221
85197
|
is_plan_published?: boolean
|
|
85222
85198
|
is_posted?: boolean
|
|
85223
85199
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
85224
|
-
|
|
85200
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
85225
85201
|
created_at?: Date | string
|
|
85226
85202
|
updated_at?: Date | string
|
|
85227
85203
|
created_by: string
|
|
@@ -85459,7 +85435,6 @@ export namespace Prisma {
|
|
|
85459
85435
|
export type FitCheckCreateWithoutOrganisationInput = {
|
|
85460
85436
|
id?: string
|
|
85461
85437
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
85462
|
-
skills_score?: number | null
|
|
85463
85438
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
85464
85439
|
responsibilities_score?: number | null
|
|
85465
85440
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -85468,17 +85443,18 @@ export namespace Prisma {
|
|
|
85468
85443
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
85469
85444
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
85470
85445
|
qualifications_score?: number | null
|
|
85471
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
85472
85446
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
85473
85447
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
85474
85448
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
85475
|
-
|
|
85449
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
85450
|
+
skills_score?: number | null
|
|
85476
85451
|
overall_score: number
|
|
85477
85452
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
85453
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
85454
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
85478
85455
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
85479
85456
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
85480
85457
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
85481
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
85482
85458
|
created_by: string
|
|
85483
85459
|
updated_by: string
|
|
85484
85460
|
is_active?: boolean
|
|
@@ -85494,7 +85470,6 @@ export namespace Prisma {
|
|
|
85494
85470
|
resume_id: string
|
|
85495
85471
|
job_description_id: string
|
|
85496
85472
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
85497
|
-
skills_score?: number | null
|
|
85498
85473
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
85499
85474
|
responsibilities_score?: number | null
|
|
85500
85475
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -85503,17 +85478,18 @@ export namespace Prisma {
|
|
|
85503
85478
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
85504
85479
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
85505
85480
|
qualifications_score?: number | null
|
|
85506
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
85507
85481
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
85508
85482
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
85509
85483
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
85510
|
-
|
|
85484
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
85485
|
+
skills_score?: number | null
|
|
85511
85486
|
overall_score: number
|
|
85512
85487
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
85488
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
85489
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
85513
85490
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
85514
85491
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
85515
85492
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
85516
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
85517
85493
|
created_by: string
|
|
85518
85494
|
updated_by: string
|
|
85519
85495
|
is_active?: boolean
|
|
@@ -85540,6 +85516,7 @@ export namespace Prisma {
|
|
|
85540
85516
|
created_by: string
|
|
85541
85517
|
updated_by: string
|
|
85542
85518
|
is_active?: boolean
|
|
85519
|
+
name?: string | null
|
|
85543
85520
|
yearsOfExperience?: number | null
|
|
85544
85521
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
85545
85522
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -85561,6 +85538,7 @@ export namespace Prisma {
|
|
|
85561
85538
|
created_by: string
|
|
85562
85539
|
updated_by: string
|
|
85563
85540
|
is_active?: boolean
|
|
85541
|
+
name?: string | null
|
|
85564
85542
|
yearsOfExperience?: number | null
|
|
85565
85543
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
85566
85544
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -85665,7 +85643,7 @@ export namespace Prisma {
|
|
|
85665
85643
|
export type SuggestionCreateWithoutOrganisationInput = {
|
|
85666
85644
|
id?: string
|
|
85667
85645
|
transcript_id?: string | null
|
|
85668
|
-
suggestion
|
|
85646
|
+
suggestion?: string | null
|
|
85669
85647
|
question?: string | null
|
|
85670
85648
|
created_at?: Date | string
|
|
85671
85649
|
updated_at?: Date | string
|
|
@@ -85680,7 +85658,7 @@ export namespace Prisma {
|
|
|
85680
85658
|
id?: string
|
|
85681
85659
|
interview_id?: string | null
|
|
85682
85660
|
transcript_id?: string | null
|
|
85683
|
-
suggestion
|
|
85661
|
+
suggestion?: string | null
|
|
85684
85662
|
question?: string | null
|
|
85685
85663
|
created_at?: Date | string
|
|
85686
85664
|
updated_at?: Date | string
|
|
@@ -85903,11 +85881,10 @@ export namespace Prisma {
|
|
|
85903
85881
|
screeningQuestions?: StringNullableListFilter<"JobDescription">
|
|
85904
85882
|
recommendedQuestions?: JsonNullableListFilter<"JobDescription">
|
|
85905
85883
|
uploaded_job_description_path?: StringNullableFilter<"JobDescription"> | string | null
|
|
85906
|
-
is_plan_locked?: BoolNullableFilter<"JobDescription"> | boolean | null
|
|
85907
85884
|
is_plan_published?: BoolFilter<"JobDescription"> | boolean
|
|
85908
85885
|
is_posted?: BoolFilter<"JobDescription"> | boolean
|
|
85909
85886
|
ai_insight?: JsonNullableFilter<"JobDescription">
|
|
85910
|
-
|
|
85887
|
+
job_fit_comparison?: JsonNullableFilter<"JobDescription">
|
|
85911
85888
|
created_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
85912
85889
|
updated_at?: DateTimeFilter<"JobDescription"> | Date | string
|
|
85913
85890
|
created_by?: StringFilter<"JobDescription"> | string
|
|
@@ -88078,11 +88055,10 @@ export namespace Prisma {
|
|
|
88078
88055
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
88079
88056
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
88080
88057
|
uploaded_job_description_path?: string | null
|
|
88081
|
-
is_plan_locked?: boolean | null
|
|
88082
88058
|
is_plan_published?: boolean
|
|
88083
88059
|
is_posted?: boolean
|
|
88084
88060
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
88085
|
-
|
|
88061
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
88086
88062
|
created_at?: Date | string
|
|
88087
88063
|
updated_at?: Date | string
|
|
88088
88064
|
created_by: string
|
|
@@ -88112,11 +88088,10 @@ export namespace Prisma {
|
|
|
88112
88088
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
88113
88089
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
88114
88090
|
uploaded_job_description_path?: string | null
|
|
88115
|
-
is_plan_locked?: boolean | null
|
|
88116
88091
|
is_plan_published?: boolean
|
|
88117
88092
|
is_posted?: boolean
|
|
88118
88093
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
88119
|
-
|
|
88094
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
88120
88095
|
created_at?: Date | string
|
|
88121
88096
|
updated_at?: Date | string
|
|
88122
88097
|
created_by: string
|
|
@@ -88378,7 +88353,6 @@ export namespace Prisma {
|
|
|
88378
88353
|
export type FitCheckCreateWithoutResumeInput = {
|
|
88379
88354
|
id?: string
|
|
88380
88355
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
88381
|
-
skills_score?: number | null
|
|
88382
88356
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
88383
88357
|
responsibilities_score?: number | null
|
|
88384
88358
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -88387,17 +88361,18 @@ export namespace Prisma {
|
|
|
88387
88361
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
88388
88362
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
88389
88363
|
qualifications_score?: number | null
|
|
88390
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
88391
88364
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
88392
88365
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
88393
88366
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
88394
|
-
|
|
88367
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
88368
|
+
skills_score?: number | null
|
|
88395
88369
|
overall_score: number
|
|
88396
88370
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
88371
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
88372
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
88397
88373
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
88398
88374
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
88399
88375
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
88400
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
88401
88376
|
created_by: string
|
|
88402
88377
|
updated_by: string
|
|
88403
88378
|
is_active?: boolean
|
|
@@ -88413,7 +88388,6 @@ export namespace Prisma {
|
|
|
88413
88388
|
organisation_id?: string | null
|
|
88414
88389
|
job_description_id: string
|
|
88415
88390
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
88416
|
-
skills_score?: number | null
|
|
88417
88391
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
88418
88392
|
responsibilities_score?: number | null
|
|
88419
88393
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -88422,17 +88396,18 @@ export namespace Prisma {
|
|
|
88422
88396
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
88423
88397
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
88424
88398
|
qualifications_score?: number | null
|
|
88425
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
88426
88399
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
88427
88400
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
88428
88401
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
88429
|
-
|
|
88402
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
88403
|
+
skills_score?: number | null
|
|
88430
88404
|
overall_score: number
|
|
88431
88405
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
88406
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
88407
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
88432
88408
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
88433
88409
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
88434
88410
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
88435
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
88436
88411
|
created_by: string
|
|
88437
88412
|
updated_by: string
|
|
88438
88413
|
is_active?: boolean
|
|
@@ -88713,11 +88688,10 @@ export namespace Prisma {
|
|
|
88713
88688
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
88714
88689
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
88715
88690
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
88716
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
88717
88691
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
88718
88692
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
88719
88693
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
88720
|
-
|
|
88694
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
88721
88695
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
88722
88696
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
88723
88697
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -88747,11 +88721,10 @@ export namespace Prisma {
|
|
|
88747
88721
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
88748
88722
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
88749
88723
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
88750
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
88751
88724
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
88752
88725
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
88753
88726
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
88754
|
-
|
|
88727
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
88755
88728
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
88756
88729
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
88757
88730
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -88927,6 +88900,7 @@ export namespace Prisma {
|
|
|
88927
88900
|
created_by: string
|
|
88928
88901
|
updated_by: string
|
|
88929
88902
|
is_active?: boolean
|
|
88903
|
+
name?: string | null
|
|
88930
88904
|
yearsOfExperience?: number | null
|
|
88931
88905
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
88932
88906
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -88949,6 +88923,7 @@ export namespace Prisma {
|
|
|
88949
88923
|
created_by: string
|
|
88950
88924
|
updated_by: string
|
|
88951
88925
|
is_active?: boolean
|
|
88926
|
+
name?: string | null
|
|
88952
88927
|
yearsOfExperience?: number | null
|
|
88953
88928
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
88954
88929
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -88981,6 +88956,7 @@ export namespace Prisma {
|
|
|
88981
88956
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
88982
88957
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
88983
88958
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
88959
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
88984
88960
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
88985
88961
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
88986
88962
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -89003,6 +88979,7 @@ export namespace Prisma {
|
|
|
89003
88979
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
89004
88980
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
89005
88981
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
88982
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89006
88983
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
89007
88984
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
89008
88985
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -89447,7 +89424,7 @@ export namespace Prisma {
|
|
|
89447
89424
|
export type SuggestionCreateWithoutTranscriptsInput = {
|
|
89448
89425
|
id?: string
|
|
89449
89426
|
transcript_id?: string | null
|
|
89450
|
-
suggestion
|
|
89427
|
+
suggestion?: string | null
|
|
89451
89428
|
question?: string | null
|
|
89452
89429
|
created_at?: Date | string
|
|
89453
89430
|
updated_at?: Date | string
|
|
@@ -89463,7 +89440,7 @@ export namespace Prisma {
|
|
|
89463
89440
|
interview_id?: string | null
|
|
89464
89441
|
transcript_id?: string | null
|
|
89465
89442
|
organisation_id: string
|
|
89466
|
-
suggestion
|
|
89443
|
+
suggestion?: string | null
|
|
89467
89444
|
question?: string | null
|
|
89468
89445
|
created_at?: Date | string
|
|
89469
89446
|
updated_at?: Date | string
|
|
@@ -89514,11 +89491,10 @@ export namespace Prisma {
|
|
|
89514
89491
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
89515
89492
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
89516
89493
|
uploaded_job_description_path?: string | null
|
|
89517
|
-
is_plan_locked?: boolean | null
|
|
89518
89494
|
is_plan_published?: boolean
|
|
89519
89495
|
is_posted?: boolean
|
|
89520
89496
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
89521
|
-
|
|
89497
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
89522
89498
|
created_at?: Date | string
|
|
89523
89499
|
updated_at?: Date | string
|
|
89524
89500
|
created_by: string
|
|
@@ -89548,11 +89524,10 @@ export namespace Prisma {
|
|
|
89548
89524
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
89549
89525
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
89550
89526
|
uploaded_job_description_path?: string | null
|
|
89551
|
-
is_plan_locked?: boolean | null
|
|
89552
89527
|
is_plan_published?: boolean
|
|
89553
89528
|
is_posted?: boolean
|
|
89554
89529
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
89555
|
-
|
|
89530
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
89556
89531
|
created_at?: Date | string
|
|
89557
89532
|
updated_at?: Date | string
|
|
89558
89533
|
created_by: string
|
|
@@ -89670,7 +89645,7 @@ export namespace Prisma {
|
|
|
89670
89645
|
export type SuggestionUpdateWithoutTranscriptsInput = {
|
|
89671
89646
|
id?: StringFieldUpdateOperationsInput | string
|
|
89672
89647
|
transcript_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89673
|
-
suggestion?:
|
|
89648
|
+
suggestion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89674
89649
|
question?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89675
89650
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89676
89651
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -89686,7 +89661,7 @@ export namespace Prisma {
|
|
|
89686
89661
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89687
89662
|
transcript_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89688
89663
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
89689
|
-
suggestion?:
|
|
89664
|
+
suggestion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89690
89665
|
question?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89691
89666
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89692
89667
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -89749,11 +89724,10 @@ export namespace Prisma {
|
|
|
89749
89724
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
89750
89725
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
89751
89726
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89752
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
89753
89727
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
89754
89728
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
89755
89729
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
89756
|
-
|
|
89730
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
89757
89731
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89758
89732
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89759
89733
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89783,11 +89757,10 @@ export namespace Prisma {
|
|
|
89783
89757
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
89784
89758
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
89785
89759
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89786
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
89787
89760
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
89788
89761
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
89789
89762
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
89790
|
-
|
|
89763
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
89791
89764
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89792
89765
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89793
89766
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89996,6 +89969,7 @@ export namespace Prisma {
|
|
|
89996
89969
|
created_by: string
|
|
89997
89970
|
updated_by: string
|
|
89998
89971
|
is_active?: boolean
|
|
89972
|
+
name?: string | null
|
|
89999
89973
|
yearsOfExperience?: number | null
|
|
90000
89974
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
90001
89975
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -90017,6 +89991,7 @@ export namespace Prisma {
|
|
|
90017
89991
|
created_by: string
|
|
90018
89992
|
updated_by: string
|
|
90019
89993
|
is_active?: boolean
|
|
89994
|
+
name?: string | null
|
|
90020
89995
|
yearsOfExperience?: number | null
|
|
90021
89996
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
90022
89997
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -90120,11 +90095,10 @@ export namespace Prisma {
|
|
|
90120
90095
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
90121
90096
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
90122
90097
|
uploaded_job_description_path?: string | null
|
|
90123
|
-
is_plan_locked?: boolean | null
|
|
90124
90098
|
is_plan_published?: boolean
|
|
90125
90099
|
is_posted?: boolean
|
|
90126
90100
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
90127
|
-
|
|
90101
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
90128
90102
|
created_at?: Date | string
|
|
90129
90103
|
updated_at?: Date | string
|
|
90130
90104
|
created_by: string
|
|
@@ -90154,11 +90128,10 @@ export namespace Prisma {
|
|
|
90154
90128
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
90155
90129
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
90156
90130
|
uploaded_job_description_path?: string | null
|
|
90157
|
-
is_plan_locked?: boolean | null
|
|
90158
90131
|
is_plan_published?: boolean
|
|
90159
90132
|
is_posted?: boolean
|
|
90160
90133
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
90161
|
-
|
|
90134
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
90162
90135
|
created_at?: Date | string
|
|
90163
90136
|
updated_at?: Date | string
|
|
90164
90137
|
created_by: string
|
|
@@ -90189,11 +90162,10 @@ export namespace Prisma {
|
|
|
90189
90162
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
90190
90163
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
90191
90164
|
uploaded_job_description_path?: string | null
|
|
90192
|
-
is_plan_locked?: boolean | null
|
|
90193
90165
|
is_plan_published?: boolean
|
|
90194
90166
|
is_posted?: boolean
|
|
90195
90167
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
90196
|
-
|
|
90168
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
90197
90169
|
created_at?: Date | string
|
|
90198
90170
|
updated_at?: Date | string
|
|
90199
90171
|
created_by: string
|
|
@@ -90222,11 +90194,10 @@ export namespace Prisma {
|
|
|
90222
90194
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
90223
90195
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
90224
90196
|
uploaded_job_description_path?: string | null
|
|
90225
|
-
is_plan_locked?: boolean | null
|
|
90226
90197
|
is_plan_published?: boolean
|
|
90227
90198
|
is_posted?: boolean
|
|
90228
90199
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
90229
|
-
|
|
90200
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
90230
90201
|
created_at?: Date | string
|
|
90231
90202
|
updated_at?: Date | string
|
|
90232
90203
|
created_by: string
|
|
@@ -93240,7 +93211,7 @@ export namespace Prisma {
|
|
|
93240
93211
|
id?: string
|
|
93241
93212
|
transcript_id?: string | null
|
|
93242
93213
|
organisation_id: string
|
|
93243
|
-
suggestion
|
|
93214
|
+
suggestion?: string | null
|
|
93244
93215
|
question?: string | null
|
|
93245
93216
|
created_at?: Date | string
|
|
93246
93217
|
updated_at?: Date | string
|
|
@@ -93379,7 +93350,7 @@ export namespace Prisma {
|
|
|
93379
93350
|
export type SuggestionUpdateWithoutInterviewInput = {
|
|
93380
93351
|
id?: StringFieldUpdateOperationsInput | string
|
|
93381
93352
|
transcript_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93382
|
-
suggestion?:
|
|
93353
|
+
suggestion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93383
93354
|
question?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93384
93355
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93385
93356
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -93394,7 +93365,7 @@ export namespace Prisma {
|
|
|
93394
93365
|
id?: StringFieldUpdateOperationsInput | string
|
|
93395
93366
|
transcript_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93396
93367
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
93397
|
-
suggestion?:
|
|
93368
|
+
suggestion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93398
93369
|
question?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93399
93370
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93400
93371
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -93408,7 +93379,7 @@ export namespace Prisma {
|
|
|
93408
93379
|
id?: StringFieldUpdateOperationsInput | string
|
|
93409
93380
|
transcript_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93410
93381
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
93411
|
-
suggestion?:
|
|
93382
|
+
suggestion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93412
93383
|
question?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93413
93384
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93414
93385
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -93584,7 +93555,6 @@ export namespace Prisma {
|
|
|
93584
93555
|
organisation_id?: string | null
|
|
93585
93556
|
resume_id: string
|
|
93586
93557
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
93587
|
-
skills_score?: number | null
|
|
93588
93558
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
93589
93559
|
responsibilities_score?: number | null
|
|
93590
93560
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -93593,17 +93563,18 @@ export namespace Prisma {
|
|
|
93593
93563
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
93594
93564
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
93595
93565
|
qualifications_score?: number | null
|
|
93596
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
93597
93566
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
93598
93567
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
93599
93568
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
93600
|
-
|
|
93569
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
93570
|
+
skills_score?: number | null
|
|
93601
93571
|
overall_score: number
|
|
93602
93572
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
93573
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
93574
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
93603
93575
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
93604
93576
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
93605
93577
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
93606
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
93607
93578
|
created_by: string
|
|
93608
93579
|
updated_by: string
|
|
93609
93580
|
is_active?: boolean
|
|
@@ -93709,6 +93680,7 @@ export namespace Prisma {
|
|
|
93709
93680
|
created_by: string
|
|
93710
93681
|
updated_by: string
|
|
93711
93682
|
is_active?: boolean
|
|
93683
|
+
name?: string | null
|
|
93712
93684
|
yearsOfExperience?: number | null
|
|
93713
93685
|
}
|
|
93714
93686
|
|
|
@@ -93888,7 +93860,6 @@ export namespace Prisma {
|
|
|
93888
93860
|
export type FitCheckUpdateWithoutJob_descriptionInput = {
|
|
93889
93861
|
id?: StringFieldUpdateOperationsInput | string
|
|
93890
93862
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
93891
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93892
93863
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
93893
93864
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93894
93865
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -93897,17 +93868,18 @@ export namespace Prisma {
|
|
|
93897
93868
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
93898
93869
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
93899
93870
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93900
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
93901
93871
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
93902
93872
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
93903
93873
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
93904
|
-
|
|
93874
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
93875
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93905
93876
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
93906
93877
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
93878
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
93879
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
93907
93880
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
93908
93881
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
93909
93882
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
93910
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
93911
93883
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
93912
93884
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
93913
93885
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -93923,7 +93895,6 @@ export namespace Prisma {
|
|
|
93923
93895
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93924
93896
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
93925
93897
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
93926
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93927
93898
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
93928
93899
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93929
93900
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -93932,17 +93903,18 @@ export namespace Prisma {
|
|
|
93932
93903
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
93933
93904
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
93934
93905
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93935
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
93936
93906
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
93937
93907
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
93938
93908
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
93939
|
-
|
|
93909
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
93910
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93940
93911
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
93941
93912
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
93913
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
93914
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
93942
93915
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
93943
93916
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
93944
93917
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
93945
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
93946
93918
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
93947
93919
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
93948
93920
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -93956,7 +93928,6 @@ export namespace Prisma {
|
|
|
93956
93928
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93957
93929
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
93958
93930
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
93959
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93960
93931
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
93961
93932
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93962
93933
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -93965,17 +93936,18 @@ export namespace Prisma {
|
|
|
93965
93936
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
93966
93937
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
93967
93938
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93968
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
93969
93939
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
93970
93940
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
93971
93941
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
93972
|
-
|
|
93942
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
93943
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93973
93944
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
93974
93945
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
93946
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
93947
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
93975
93948
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
93976
93949
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
93977
93950
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
93978
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
93979
93951
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
93980
93952
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
93981
93953
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -94267,6 +94239,7 @@ export namespace Prisma {
|
|
|
94267
94239
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
94268
94240
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
94269
94241
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
94242
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94270
94243
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
94271
94244
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
94272
94245
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -94288,6 +94261,7 @@ export namespace Prisma {
|
|
|
94288
94261
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
94289
94262
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
94290
94263
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
94264
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94291
94265
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
94292
94266
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
94293
94267
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -94307,6 +94281,7 @@ export namespace Prisma {
|
|
|
94307
94281
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
94308
94282
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
94309
94283
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
94284
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94310
94285
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
94311
94286
|
}
|
|
94312
94287
|
|
|
@@ -94578,11 +94553,10 @@ export namespace Prisma {
|
|
|
94578
94553
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
94579
94554
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
94580
94555
|
uploaded_job_description_path?: string | null
|
|
94581
|
-
is_plan_locked?: boolean | null
|
|
94582
94556
|
is_plan_published?: boolean
|
|
94583
94557
|
is_posted?: boolean
|
|
94584
94558
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
94585
|
-
|
|
94559
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94586
94560
|
created_at?: Date | string
|
|
94587
94561
|
updated_at?: Date | string
|
|
94588
94562
|
created_by: string
|
|
@@ -94667,7 +94641,6 @@ export namespace Prisma {
|
|
|
94667
94641
|
resume_id: string
|
|
94668
94642
|
job_description_id: string
|
|
94669
94643
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
94670
|
-
skills_score?: number | null
|
|
94671
94644
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
94672
94645
|
responsibilities_score?: number | null
|
|
94673
94646
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -94676,17 +94649,18 @@ export namespace Prisma {
|
|
|
94676
94649
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
94677
94650
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
94678
94651
|
qualifications_score?: number | null
|
|
94679
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
94680
94652
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
94681
94653
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
94682
94654
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
94683
|
-
|
|
94655
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
94656
|
+
skills_score?: number | null
|
|
94684
94657
|
overall_score: number
|
|
94685
94658
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
94659
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
94660
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
94686
94661
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
94687
94662
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
94688
94663
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
94689
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
94690
94664
|
created_by: string
|
|
94691
94665
|
updated_by: string
|
|
94692
94666
|
is_active?: boolean
|
|
@@ -94704,6 +94678,7 @@ export namespace Prisma {
|
|
|
94704
94678
|
created_by: string
|
|
94705
94679
|
updated_by: string
|
|
94706
94680
|
is_active?: boolean
|
|
94681
|
+
name?: string | null
|
|
94707
94682
|
yearsOfExperience?: number | null
|
|
94708
94683
|
}
|
|
94709
94684
|
|
|
@@ -94739,7 +94714,7 @@ export namespace Prisma {
|
|
|
94739
94714
|
id?: string
|
|
94740
94715
|
interview_id?: string | null
|
|
94741
94716
|
transcript_id?: string | null
|
|
94742
|
-
suggestion
|
|
94717
|
+
suggestion?: string | null
|
|
94743
94718
|
question?: string | null
|
|
94744
94719
|
created_at?: Date | string
|
|
94745
94720
|
updated_at?: Date | string
|
|
@@ -95043,11 +95018,10 @@ export namespace Prisma {
|
|
|
95043
95018
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
95044
95019
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
95045
95020
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95046
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
95047
95021
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
95048
95022
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
95049
95023
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
95050
|
-
|
|
95024
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
95051
95025
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95052
95026
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95053
95027
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -95076,11 +95050,10 @@ export namespace Prisma {
|
|
|
95076
95050
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
95077
95051
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
95078
95052
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95079
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
95080
95053
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
95081
95054
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
95082
95055
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
95083
|
-
|
|
95056
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
95084
95057
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95085
95058
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95086
95059
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -95108,11 +95081,10 @@ export namespace Prisma {
|
|
|
95108
95081
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
95109
95082
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
95110
95083
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95111
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
95112
95084
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
95113
95085
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
95114
95086
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
95115
|
-
|
|
95087
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
95116
95088
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95117
95089
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95118
95090
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -95359,7 +95331,6 @@ export namespace Prisma {
|
|
|
95359
95331
|
export type FitCheckUpdateWithoutOrganisationInput = {
|
|
95360
95332
|
id?: StringFieldUpdateOperationsInput | string
|
|
95361
95333
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
95362
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95363
95334
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
95364
95335
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95365
95336
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -95368,17 +95339,18 @@ export namespace Prisma {
|
|
|
95368
95339
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
95369
95340
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
95370
95341
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95371
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
95372
95342
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
95373
95343
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
95374
95344
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
95375
|
-
|
|
95345
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
95346
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95376
95347
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
95377
95348
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
95349
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
95350
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
95378
95351
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
95379
95352
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
95380
95353
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
95381
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
95382
95354
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
95383
95355
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
95384
95356
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -95394,7 +95366,6 @@ export namespace Prisma {
|
|
|
95394
95366
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
95395
95367
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
95396
95368
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
95397
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95398
95369
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
95399
95370
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95400
95371
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -95403,17 +95374,18 @@ export namespace Prisma {
|
|
|
95403
95374
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
95404
95375
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
95405
95376
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95406
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
95407
95377
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
95408
95378
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
95409
95379
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
95410
|
-
|
|
95380
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
95381
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95411
95382
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
95412
95383
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
95384
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
95385
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
95413
95386
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
95414
95387
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
95415
95388
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
95416
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
95417
95389
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
95418
95390
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
95419
95391
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -95427,7 +95399,6 @@ export namespace Prisma {
|
|
|
95427
95399
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
95428
95400
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
95429
95401
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
95430
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95431
95402
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
95432
95403
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95433
95404
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -95436,17 +95407,18 @@ export namespace Prisma {
|
|
|
95436
95407
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
95437
95408
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
95438
95409
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95439
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
95440
95410
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
95441
95411
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
95442
95412
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
95443
|
-
|
|
95413
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
95414
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95444
95415
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
95445
95416
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
95417
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
95418
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
95446
95419
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
95447
95420
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
95448
95421
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
95449
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
95450
95422
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
95451
95423
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
95452
95424
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -95462,6 +95434,7 @@ export namespace Prisma {
|
|
|
95462
95434
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
95463
95435
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
95464
95436
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95437
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95465
95438
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
95466
95439
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
95467
95440
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -95483,6 +95456,7 @@ export namespace Prisma {
|
|
|
95483
95456
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
95484
95457
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
95485
95458
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95459
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95486
95460
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
95487
95461
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
95488
95462
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -95502,6 +95476,7 @@ export namespace Prisma {
|
|
|
95502
95476
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
95503
95477
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
95504
95478
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95479
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95505
95480
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
95506
95481
|
}
|
|
95507
95482
|
|
|
@@ -95598,7 +95573,7 @@ export namespace Prisma {
|
|
|
95598
95573
|
export type SuggestionUpdateWithoutOrganisationInput = {
|
|
95599
95574
|
id?: StringFieldUpdateOperationsInput | string
|
|
95600
95575
|
transcript_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95601
|
-
suggestion?:
|
|
95576
|
+
suggestion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95602
95577
|
question?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95603
95578
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95604
95579
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -95613,7 +95588,7 @@ export namespace Prisma {
|
|
|
95613
95588
|
id?: StringFieldUpdateOperationsInput | string
|
|
95614
95589
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95615
95590
|
transcript_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95616
|
-
suggestion?:
|
|
95591
|
+
suggestion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95617
95592
|
question?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95618
95593
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95619
95594
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -95627,7 +95602,7 @@ export namespace Prisma {
|
|
|
95627
95602
|
id?: StringFieldUpdateOperationsInput | string
|
|
95628
95603
|
interview_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95629
95604
|
transcript_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95630
|
-
suggestion?:
|
|
95605
|
+
suggestion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95631
95606
|
question?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95632
95607
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95633
95608
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -96203,7 +96178,6 @@ export namespace Prisma {
|
|
|
96203
96178
|
organisation_id?: string | null
|
|
96204
96179
|
job_description_id: string
|
|
96205
96180
|
skills_match?: FitCheckCreateskills_matchInput | string[]
|
|
96206
|
-
skills_score?: number | null
|
|
96207
96181
|
responsibilities_match?: FitCheckCreateresponsibilities_matchInput | string[]
|
|
96208
96182
|
responsibilities_score?: number | null
|
|
96209
96183
|
experience_match?: FitCheckCreateexperience_matchInput | string[]
|
|
@@ -96212,17 +96186,18 @@ export namespace Prisma {
|
|
|
96212
96186
|
organisation_value_match?: FitCheckCreateorganisation_value_matchInput | string[]
|
|
96213
96187
|
qualifications_match?: FitCheckCreatequalifications_matchInput | string[]
|
|
96214
96188
|
qualifications_score?: number | null
|
|
96215
|
-
overall_analysis?: FitCheckCreateoverall_analysisInput | string[]
|
|
96216
96189
|
fit?: FitCheckCreatefitInput | InputJsonValue[]
|
|
96217
96190
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
96218
96191
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
96219
|
-
|
|
96192
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
96193
|
+
skills_score?: number | null
|
|
96220
96194
|
overall_score: number
|
|
96221
96195
|
short_match_analysis?: FitCheckCreateshort_match_analysisInput | InputJsonValue[]
|
|
96196
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
96197
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
96222
96198
|
candidate_analysis?: FitCheckCreatecandidate_analysisInput | InputJsonValue[]
|
|
96223
96199
|
technical_analysis?: FitCheckCreatetechnical_analysisInput | InputJsonValue[]
|
|
96224
96200
|
competency_analysis?: FitCheckCreatecompetency_analysisInput | InputJsonValue[]
|
|
96225
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
96226
96201
|
created_by: string
|
|
96227
96202
|
updated_by: string
|
|
96228
96203
|
is_active?: boolean
|
|
@@ -96515,7 +96490,6 @@ export namespace Prisma {
|
|
|
96515
96490
|
export type FitCheckUpdateWithoutResumeInput = {
|
|
96516
96491
|
id?: StringFieldUpdateOperationsInput | string
|
|
96517
96492
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
96518
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
96519
96493
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
96520
96494
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
96521
96495
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -96524,17 +96498,18 @@ export namespace Prisma {
|
|
|
96524
96498
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
96525
96499
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
96526
96500
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
96527
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
96528
96501
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
96529
96502
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
96530
96503
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
96531
|
-
|
|
96504
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
96505
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
96532
96506
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
96533
96507
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
96508
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
96509
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
96534
96510
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
96535
96511
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
96536
96512
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
96537
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
96538
96513
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
96539
96514
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
96540
96515
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -96550,7 +96525,6 @@ export namespace Prisma {
|
|
|
96550
96525
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96551
96526
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
96552
96527
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
96553
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
96554
96528
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
96555
96529
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
96556
96530
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -96559,17 +96533,18 @@ export namespace Prisma {
|
|
|
96559
96533
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
96560
96534
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
96561
96535
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
96562
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
96563
96536
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
96564
96537
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
96565
96538
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
96566
|
-
|
|
96539
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
96540
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
96567
96541
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
96568
96542
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
96543
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
96544
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
96569
96545
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
96570
96546
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
96571
96547
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
96572
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
96573
96548
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
96574
96549
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
96575
96550
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -96583,7 +96558,6 @@ export namespace Prisma {
|
|
|
96583
96558
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96584
96559
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
96585
96560
|
skills_match?: FitCheckUpdateskills_matchInput | string[]
|
|
96586
|
-
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
96587
96561
|
responsibilities_match?: FitCheckUpdateresponsibilities_matchInput | string[]
|
|
96588
96562
|
responsibilities_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
96589
96563
|
experience_match?: FitCheckUpdateexperience_matchInput | string[]
|
|
@@ -96592,17 +96566,18 @@ export namespace Prisma {
|
|
|
96592
96566
|
organisation_value_match?: FitCheckUpdateorganisation_value_matchInput | string[]
|
|
96593
96567
|
qualifications_match?: FitCheckUpdatequalifications_matchInput | string[]
|
|
96594
96568
|
qualifications_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
96595
|
-
overall_analysis?: FitCheckUpdateoverall_analysisInput | string[]
|
|
96596
96569
|
fit?: FitCheckUpdatefitInput | InputJsonValue[]
|
|
96597
96570
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
96598
96571
|
skills_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
96599
|
-
|
|
96572
|
+
overall_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
96573
|
+
skills_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
96600
96574
|
overall_score?: FloatFieldUpdateOperationsInput | number
|
|
96601
96575
|
short_match_analysis?: FitCheckUpdateshort_match_analysisInput | InputJsonValue[]
|
|
96576
|
+
fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
96577
|
+
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
96602
96578
|
candidate_analysis?: FitCheckUpdatecandidate_analysisInput | InputJsonValue[]
|
|
96603
96579
|
technical_analysis?: FitCheckUpdatetechnical_analysisInput | InputJsonValue[]
|
|
96604
96580
|
competency_analysis?: FitCheckUpdatecompetency_analysisInput | InputJsonValue[]
|
|
96605
|
-
recommendation?: NullableJsonNullValueInput | InputJsonValue
|
|
96606
96581
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
96607
96582
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
96608
96583
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -96707,6 +96682,7 @@ export namespace Prisma {
|
|
|
96707
96682
|
created_by: string
|
|
96708
96683
|
updated_by: string
|
|
96709
96684
|
is_active?: boolean
|
|
96685
|
+
name?: string | null
|
|
96710
96686
|
yearsOfExperience?: number | null
|
|
96711
96687
|
}
|
|
96712
96688
|
|
|
@@ -96717,11 +96693,10 @@ export namespace Prisma {
|
|
|
96717
96693
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
96718
96694
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
96719
96695
|
uploaded_job_description_path?: string | null
|
|
96720
|
-
is_plan_locked?: boolean | null
|
|
96721
96696
|
is_plan_published?: boolean
|
|
96722
96697
|
is_posted?: boolean
|
|
96723
96698
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
96724
|
-
|
|
96699
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
96725
96700
|
created_at?: Date | string
|
|
96726
96701
|
updated_at?: Date | string
|
|
96727
96702
|
created_by: string
|
|
@@ -97014,6 +96989,7 @@ export namespace Prisma {
|
|
|
97014
96989
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
97015
96990
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
97016
96991
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
96992
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97017
96993
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97018
96994
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
97019
96995
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -97035,6 +97011,7 @@ export namespace Prisma {
|
|
|
97035
97011
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
97036
97012
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
97037
97013
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
97014
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97038
97015
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97039
97016
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
97040
97017
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -97054,6 +97031,7 @@ export namespace Prisma {
|
|
|
97054
97031
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
97055
97032
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
97056
97033
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
97034
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97057
97035
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97058
97036
|
}
|
|
97059
97037
|
|
|
@@ -97063,11 +97041,10 @@ export namespace Prisma {
|
|
|
97063
97041
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
97064
97042
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
97065
97043
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97066
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97067
97044
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
97068
97045
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
97069
97046
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
97070
|
-
|
|
97047
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
97071
97048
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97072
97049
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97073
97050
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97097,11 +97074,10 @@ export namespace Prisma {
|
|
|
97097
97074
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
97098
97075
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
97099
97076
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97100
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97101
97077
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
97102
97078
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
97103
97079
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
97104
|
-
|
|
97080
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
97105
97081
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97106
97082
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97107
97083
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97129,11 +97105,10 @@ export namespace Prisma {
|
|
|
97129
97105
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
97130
97106
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
97131
97107
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97132
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97133
97108
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
97134
97109
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
97135
97110
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
97136
|
-
|
|
97111
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
97137
97112
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97138
97113
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97139
97114
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97148,11 +97123,10 @@ export namespace Prisma {
|
|
|
97148
97123
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
97149
97124
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
97150
97125
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97151
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97152
97126
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
97153
97127
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
97154
97128
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
97155
|
-
|
|
97129
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
97156
97130
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97157
97131
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97158
97132
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97181,11 +97155,10 @@ export namespace Prisma {
|
|
|
97181
97155
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
97182
97156
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
97183
97157
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97184
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97185
97158
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
97186
97159
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
97187
97160
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
97188
|
-
|
|
97161
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
97189
97162
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97190
97163
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97191
97164
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97213,11 +97186,10 @@ export namespace Prisma {
|
|
|
97213
97186
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
97214
97187
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
97215
97188
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97216
|
-
is_plan_locked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
97217
97189
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
97218
97190
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
97219
97191
|
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
97220
|
-
|
|
97192
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
97221
97193
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97222
97194
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97223
97195
|
created_by?: StringFieldUpdateOperationsInput | string
|