@adaptware/eagles-db 0.4.23 → 0.4.25
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/README.md +15 -15
- package/bin/db-cli.js +91 -91
- package/client/edge.js +9 -15
- package/client/index-browser.js +1 -8
- package/client/index.d.ts +565 -234
- package/client/index.js +15 -21
- package/client/{query_engine-windows.dll.node → libquery_engine-darwin-arm64.dylib.node} +0 -0
- package/client/libquery_engine-linux-arm64-openssl-1.1.x.so.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +15 -22
- package/client/wasm.js +9 -15
- package/package.json +58 -58
- package/prisma/schema/CandidateQuestionResponse.prisma +24 -24
- package/prisma/schema/UserRole.prisma +20 -20
- package/prisma/schema/action.prisma +35 -35
- package/prisma/schema/activityLog.prisma +22 -22
- package/prisma/schema/applications.prisma +56 -57
- package/prisma/schema/approval.prisma +14 -14
- package/prisma/schema/assessment.prisma +39 -39
- package/prisma/schema/assessmentLibrary.prisma +21 -21
- package/prisma/schema/assessmentQuestion.prisma +17 -17
- package/prisma/schema/assignment.prisma +48 -48
- package/prisma/schema/assignmentLibrary.prisma +20 -20
- package/prisma/schema/authModule.prisma +36 -36
- package/prisma/schema/budget.prisma +38 -38
- package/prisma/schema/calendly.prisma +18 -18
- package/prisma/schema/candidateProfile.prisma +26 -26
- package/prisma/schema/communication.prisma +156 -156
- package/prisma/schema/contactUs.prisma +12 -12
- package/prisma/schema/document.prisma +38 -37
- package/prisma/schema/evaluationPlan.prisma +74 -83
- package/prisma/schema/feedback.prisma +18 -18
- package/prisma/schema/fitCheck.prisma +58 -58
- package/prisma/schema/google.prisma +16 -16
- package/prisma/schema/integration.prisma +98 -98
- package/prisma/schema/interview.prisma +112 -112
- package/prisma/schema/interviewNotes.prisma +17 -17
- package/prisma/schema/jobApplicationFields.prisma +37 -37
- package/prisma/schema/jobApplicationResponse.prisma +33 -33
- package/prisma/schema/jobApplicationTemplate.prisma +30 -30
- package/prisma/schema/jobDescription.prisma +59 -57
- package/prisma/schema/jobDescriptionData.prisma +15 -15
- package/prisma/schema/jobProfile.prisma +56 -56
- package/prisma/schema/liveAnalysis.prisma +17 -17
- package/prisma/schema/message.prisma +15 -15
- package/prisma/schema/migrations/20260415120000_remove_job_profile_current_phase/migration.sql +2 -2
- package/prisma/schema/migrations/20260422120000_add_integration_provider_zoom/migration.sql +2 -2
- package/prisma/schema/migrations/20260422140000_add_zoom_meeting_tables/migration.sql +57 -57
- package/prisma/schema/migrations/20260422180000_add_zoom_webhook_event/migration.sql +18 -18
- package/prisma/schema/migrations/20260423140000_add_interview_platform/migration.sql +6 -6
- package/prisma/schema/migrations/20260423150000_remove_interview_zoom_topic/migration.sql +2 -2
- package/prisma/schema/migrations/20260423160000_zoom_meeting_uuid/migration.sql +4 -4
- package/prisma/schema/migrations/20260423170000_zoom_meeting_uuid_prisma_sync/migration.sql +2 -2
- package/prisma/schema/migrations/20260424120000_auth_module_user_provider_unique/migration.sql +5 -5
- package/prisma/schema/migrations/20260424130000_zoom_meeting_zoom_host_user_id/migration.sql +6 -6
- package/prisma/schema/migrations/20260425100000_zoom_participant_user_enum/migration.sql +22 -22
- package/prisma/schema/migrations/20260425110000_zoom_participant_zoom_id_required/migration.sql +13 -13
- package/prisma/schema/migrations/20260425120000_zoom_participant_id_nullable/migration.sql +4 -4
- package/prisma/schema/migrations/20260429140000_drop_evaluation_plan_job_order_unique/migration.sql +5 -5
- package/prisma/schema/migrations/20260429180000_eval_plan_timeline_optional_ongoing_duration/migration.sql +15 -15
- package/prisma/schema/migrations/20260430120000_drop_assessment_library_metadata_fields/migration.sql +8 -8
- package/prisma/schema/migrations/20260430140000_drop_question_question_type/migration.sql +5 -5
- package/prisma/schema/migrations/20260513120000_add_organisation_config/migration.sql +56 -56
- package/prisma/schema/migrations/20260514120000_dedupe_organisation_config/migration.sql +20 -20
- package/prisma/schema/migrations/20260515120000_add_interview_ai_assistance_mode/migration.sql +5 -5
- package/prisma/schema/migrations/20260522120000_ongoing_evaluation_record_kind/migration.sql +25 -0
- package/prisma/schema/migrations/20260523120000_replace_record_kind_with_is_committed/migration.sql +24 -0
- package/prisma/schema/migrations/20260528120000_drop_job_description_recommendation_config/migration.sql +2 -0
- package/prisma/schema/migrations/migration_lock.toml +3 -3
- package/prisma/schema/notes.prisma +19 -19
- package/prisma/schema/ongoingEvaluation.prisma +72 -72
- package/prisma/schema/organisation.prisma +57 -57
- package/prisma/schema/organisationConfig.prisma +12 -12
- package/prisma/schema/permission.prisma +13 -13
- package/prisma/schema/promise.prisma +39 -39
- package/prisma/schema/questions.prisma +28 -28
- package/prisma/schema/refreshToken.prisma +10 -10
- package/prisma/schema/resume.prisma +34 -34
- package/prisma/schema/resumeData.prisma +15 -15
- package/prisma/schema/schema.prisma +16 -16
- package/prisma/schema/suggestion.prisma +20 -20
- package/prisma/schema/transcript.prisma +25 -25
- package/prisma/schema/user.prisma +93 -93
- package/prisma/schema/userProfile.prisma +15 -15
- package/prisma/schema/zoomMeeting.prisma +79 -79
- package/prisma/schema/migrations/20260626120000_add_evaluation_plan_share_scope/migration.sql +0 -14
- package/prisma/schema/migrations/20260626140000_add_evaluation_comment/migration.sql +0 -2
package/client/index.d.ts
CHANGED
|
@@ -55,11 +55,11 @@ export type Assessment = $Result.DefaultSelection<Prisma.$AssessmentPayload>
|
|
|
55
55
|
export type AssessmentLibrary = $Result.DefaultSelection<Prisma.$AssessmentLibraryPayload>
|
|
56
56
|
/**
|
|
57
57
|
* Model AssessmentQuestion
|
|
58
|
-
* *
|
|
59
|
-
* * Join table linking Assessments and Questions in a many-to-many relationship.
|
|
60
|
-
* * - Each row represents one link between a specific Assessment and a specific Question.
|
|
61
|
-
* * - Composite ID ensures no duplicate pairings exist.
|
|
62
|
-
* * - Cascade delete ensures join rows are removed when either side is deleted.
|
|
58
|
+
* *
|
|
59
|
+
* * Join table linking Assessments and Questions in a many-to-many relationship.
|
|
60
|
+
* * - Each row represents one link between a specific Assessment and a specific Question.
|
|
61
|
+
* * - Composite ID ensures no duplicate pairings exist.
|
|
62
|
+
* * - Cascade delete ensures join rows are removed when either side is deleted.
|
|
63
63
|
* * - Enables sharing the same Question across multiple Assessments.
|
|
64
64
|
*/
|
|
65
65
|
export type AssessmentQuestion = $Result.DefaultSelection<Prisma.$AssessmentQuestionPayload>
|
|
@@ -478,15 +478,6 @@ export const EvaluationPlanType: {
|
|
|
478
478
|
export type EvaluationPlanType = (typeof EvaluationPlanType)[keyof typeof EvaluationPlanType]
|
|
479
479
|
|
|
480
480
|
|
|
481
|
-
export const EvaluationPlanShareScope: {
|
|
482
|
-
PRIVATE: 'PRIVATE',
|
|
483
|
-
CREATOR: 'CREATOR',
|
|
484
|
-
ORGANIZATION: 'ORGANIZATION'
|
|
485
|
-
};
|
|
486
|
-
|
|
487
|
-
export type EvaluationPlanShareScope = (typeof EvaluationPlanShareScope)[keyof typeof EvaluationPlanShareScope]
|
|
488
|
-
|
|
489
|
-
|
|
490
481
|
export const DurationUnit: {
|
|
491
482
|
MINUTES: 'MINUTES',
|
|
492
483
|
HOURS: 'HOURS',
|
|
@@ -781,10 +772,6 @@ export type EvaluationPlanType = $Enums.EvaluationPlanType
|
|
|
781
772
|
|
|
782
773
|
export const EvaluationPlanType: typeof $Enums.EvaluationPlanType
|
|
783
774
|
|
|
784
|
-
export type EvaluationPlanShareScope = $Enums.EvaluationPlanShareScope
|
|
785
|
-
|
|
786
|
-
export const EvaluationPlanShareScope: typeof $Enums.EvaluationPlanShareScope
|
|
787
|
-
|
|
788
775
|
export type DurationUnit = $Enums.DurationUnit
|
|
789
776
|
|
|
790
777
|
export const DurationUnit: typeof $Enums.DurationUnit
|
|
@@ -12430,7 +12417,6 @@ export namespace Prisma {
|
|
|
12430
12417
|
expected_ctc: string | null
|
|
12431
12418
|
notice_period: number | null
|
|
12432
12419
|
preferred_location: string | null
|
|
12433
|
-
evaluationComment: string | null
|
|
12434
12420
|
fit_check_status: $Enums.FitCheckStatus | null
|
|
12435
12421
|
status: $Enums.ApplicationStatus | null
|
|
12436
12422
|
created_at: Date | null
|
|
@@ -12458,7 +12444,6 @@ export namespace Prisma {
|
|
|
12458
12444
|
expected_ctc: string | null
|
|
12459
12445
|
notice_period: number | null
|
|
12460
12446
|
preferred_location: string | null
|
|
12461
|
-
evaluationComment: string | null
|
|
12462
12447
|
fit_check_status: $Enums.FitCheckStatus | null
|
|
12463
12448
|
status: $Enums.ApplicationStatus | null
|
|
12464
12449
|
created_at: Date | null
|
|
@@ -12486,7 +12471,6 @@ export namespace Prisma {
|
|
|
12486
12471
|
expected_ctc: number
|
|
12487
12472
|
notice_period: number
|
|
12488
12473
|
preferred_location: number
|
|
12489
|
-
evaluationComment: number
|
|
12490
12474
|
fit_check_status: number
|
|
12491
12475
|
status: number
|
|
12492
12476
|
created_at: number
|
|
@@ -12528,7 +12512,6 @@ export namespace Prisma {
|
|
|
12528
12512
|
expected_ctc?: true
|
|
12529
12513
|
notice_period?: true
|
|
12530
12514
|
preferred_location?: true
|
|
12531
|
-
evaluationComment?: true
|
|
12532
12515
|
fit_check_status?: true
|
|
12533
12516
|
status?: true
|
|
12534
12517
|
created_at?: true
|
|
@@ -12556,7 +12539,6 @@ export namespace Prisma {
|
|
|
12556
12539
|
expected_ctc?: true
|
|
12557
12540
|
notice_period?: true
|
|
12558
12541
|
preferred_location?: true
|
|
12559
|
-
evaluationComment?: true
|
|
12560
12542
|
fit_check_status?: true
|
|
12561
12543
|
status?: true
|
|
12562
12544
|
created_at?: true
|
|
@@ -12584,7 +12566,6 @@ export namespace Prisma {
|
|
|
12584
12566
|
expected_ctc?: true
|
|
12585
12567
|
notice_period?: true
|
|
12586
12568
|
preferred_location?: true
|
|
12587
|
-
evaluationComment?: true
|
|
12588
12569
|
fit_check_status?: true
|
|
12589
12570
|
status?: true
|
|
12590
12571
|
created_at?: true
|
|
@@ -12699,7 +12680,6 @@ export namespace Prisma {
|
|
|
12699
12680
|
expected_ctc: string | null
|
|
12700
12681
|
notice_period: number | null
|
|
12701
12682
|
preferred_location: string | null
|
|
12702
|
-
evaluationComment: string | null
|
|
12703
12683
|
fit_check_status: $Enums.FitCheckStatus | null
|
|
12704
12684
|
status: $Enums.ApplicationStatus
|
|
12705
12685
|
created_at: Date
|
|
@@ -12746,7 +12726,6 @@ export namespace Prisma {
|
|
|
12746
12726
|
expected_ctc?: boolean
|
|
12747
12727
|
notice_period?: boolean
|
|
12748
12728
|
preferred_location?: boolean
|
|
12749
|
-
evaluationComment?: boolean
|
|
12750
12729
|
fit_check_status?: boolean
|
|
12751
12730
|
status?: boolean
|
|
12752
12731
|
created_at?: boolean
|
|
@@ -12789,7 +12768,6 @@ export namespace Prisma {
|
|
|
12789
12768
|
expected_ctc?: boolean
|
|
12790
12769
|
notice_period?: boolean
|
|
12791
12770
|
preferred_location?: boolean
|
|
12792
|
-
evaluationComment?: boolean
|
|
12793
12771
|
fit_check_status?: boolean
|
|
12794
12772
|
status?: boolean
|
|
12795
12773
|
created_at?: boolean
|
|
@@ -12823,7 +12801,6 @@ export namespace Prisma {
|
|
|
12823
12801
|
expected_ctc?: boolean
|
|
12824
12802
|
notice_period?: boolean
|
|
12825
12803
|
preferred_location?: boolean
|
|
12826
|
-
evaluationComment?: boolean
|
|
12827
12804
|
fit_check_status?: boolean
|
|
12828
12805
|
status?: boolean
|
|
12829
12806
|
created_at?: boolean
|
|
@@ -12857,7 +12834,6 @@ export namespace Prisma {
|
|
|
12857
12834
|
expected_ctc?: boolean
|
|
12858
12835
|
notice_period?: boolean
|
|
12859
12836
|
preferred_location?: boolean
|
|
12860
|
-
evaluationComment?: boolean
|
|
12861
12837
|
fit_check_status?: boolean
|
|
12862
12838
|
status?: boolean
|
|
12863
12839
|
created_at?: boolean
|
|
@@ -12867,7 +12843,7 @@ export namespace Prisma {
|
|
|
12867
12843
|
is_active?: boolean
|
|
12868
12844
|
}
|
|
12869
12845
|
|
|
12870
|
-
export type ApplicationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "candidate_id" | "resume_id" | "organisation_id" | "job_description_id" | "fit_check_score" | "applied_at" | "evaluation_plan_id" | "fit_check_id" | "round_no" | "is_jaf_completed" | "on_notice_period" | "expected_joining_date" | "current_ctc" | "expected_ctc" | "notice_period" | "preferred_location" | "
|
|
12846
|
+
export type ApplicationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "candidate_id" | "resume_id" | "organisation_id" | "job_description_id" | "fit_check_score" | "applied_at" | "evaluation_plan_id" | "fit_check_id" | "round_no" | "is_jaf_completed" | "on_notice_period" | "expected_joining_date" | "current_ctc" | "expected_ctc" | "notice_period" | "preferred_location" | "fit_check_status" | "status" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["application"]>
|
|
12871
12847
|
export type ApplicationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
12872
12848
|
evaluation_plan?: boolean | Application$evaluation_planArgs<ExtArgs>
|
|
12873
12849
|
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
@@ -12938,7 +12914,6 @@ export namespace Prisma {
|
|
|
12938
12914
|
expected_ctc: string | null
|
|
12939
12915
|
notice_period: number | null
|
|
12940
12916
|
preferred_location: string | null
|
|
12941
|
-
evaluationComment: string | null
|
|
12942
12917
|
fit_check_status: $Enums.FitCheckStatus | null
|
|
12943
12918
|
status: $Enums.ApplicationStatus
|
|
12944
12919
|
created_at: Date
|
|
@@ -13400,7 +13375,6 @@ export namespace Prisma {
|
|
|
13400
13375
|
readonly expected_ctc: FieldRef<"Application", 'String'>
|
|
13401
13376
|
readonly notice_period: FieldRef<"Application", 'Int'>
|
|
13402
13377
|
readonly preferred_location: FieldRef<"Application", 'String'>
|
|
13403
|
-
readonly evaluationComment: FieldRef<"Application", 'String'>
|
|
13404
13378
|
readonly fit_check_status: FieldRef<"Application", 'FitCheckStatus'>
|
|
13405
13379
|
readonly status: FieldRef<"Application", 'ApplicationStatus'>
|
|
13406
13380
|
readonly created_at: FieldRef<"Application", 'DateTime'>
|
|
@@ -31880,6 +31854,7 @@ export namespace Prisma {
|
|
|
31880
31854
|
candidate?: boolean | Document$candidateArgs<ExtArgs>
|
|
31881
31855
|
resume?: boolean | Document$resumeArgs<ExtArgs>
|
|
31882
31856
|
job_description_source?: boolean | Document$job_description_sourceArgs<ExtArgs>
|
|
31857
|
+
job_description_rendered?: boolean | Document$job_description_renderedArgs<ExtArgs>
|
|
31883
31858
|
interview_recording?: boolean | Document$interview_recordingArgs<ExtArgs>
|
|
31884
31859
|
job_application_responses?: boolean | Document$job_application_responsesArgs<ExtArgs>
|
|
31885
31860
|
assignment_solution?: boolean | Document$assignment_solutionArgs<ExtArgs>
|
|
@@ -31957,6 +31932,7 @@ export namespace Prisma {
|
|
|
31957
31932
|
candidate?: boolean | Document$candidateArgs<ExtArgs>
|
|
31958
31933
|
resume?: boolean | Document$resumeArgs<ExtArgs>
|
|
31959
31934
|
job_description_source?: boolean | Document$job_description_sourceArgs<ExtArgs>
|
|
31935
|
+
job_description_rendered?: boolean | Document$job_description_renderedArgs<ExtArgs>
|
|
31960
31936
|
interview_recording?: boolean | Document$interview_recordingArgs<ExtArgs>
|
|
31961
31937
|
job_application_responses?: boolean | Document$job_application_responsesArgs<ExtArgs>
|
|
31962
31938
|
assignment_solution?: boolean | Document$assignment_solutionArgs<ExtArgs>
|
|
@@ -31979,6 +31955,7 @@ export namespace Prisma {
|
|
|
31979
31955
|
candidate: Prisma.$UserPayload<ExtArgs> | null
|
|
31980
31956
|
resume: Prisma.$ResumePayload<ExtArgs> | null
|
|
31981
31957
|
job_description_source: Prisma.$JobDescriptionPayload<ExtArgs> | null
|
|
31958
|
+
job_description_rendered: Prisma.$JobDescriptionPayload<ExtArgs> | null
|
|
31982
31959
|
interview_recording: Prisma.$InterviewPayload<ExtArgs> | null
|
|
31983
31960
|
job_application_responses: Prisma.$JobApplicationResponsePayload<ExtArgs>[]
|
|
31984
31961
|
assignment_solution: Prisma.$AssignmentPayload<ExtArgs> | null
|
|
@@ -32400,6 +32377,7 @@ export namespace Prisma {
|
|
|
32400
32377
|
candidate<T extends Document$candidateArgs<ExtArgs> = {}>(args?: Subset<T, Document$candidateArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
32401
32378
|
resume<T extends Document$resumeArgs<ExtArgs> = {}>(args?: Subset<T, Document$resumeArgs<ExtArgs>>): Prisma__ResumeClient<$Result.GetResult<Prisma.$ResumePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
32402
32379
|
job_description_source<T extends Document$job_description_sourceArgs<ExtArgs> = {}>(args?: Subset<T, Document$job_description_sourceArgs<ExtArgs>>): Prisma__JobDescriptionClient<$Result.GetResult<Prisma.$JobDescriptionPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
32380
|
+
job_description_rendered<T extends Document$job_description_renderedArgs<ExtArgs> = {}>(args?: Subset<T, Document$job_description_renderedArgs<ExtArgs>>): Prisma__JobDescriptionClient<$Result.GetResult<Prisma.$JobDescriptionPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
32403
32381
|
interview_recording<T extends Document$interview_recordingArgs<ExtArgs> = {}>(args?: Subset<T, Document$interview_recordingArgs<ExtArgs>>): Prisma__InterviewClient<$Result.GetResult<Prisma.$InterviewPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
32404
32382
|
job_application_responses<T extends Document$job_application_responsesArgs<ExtArgs> = {}>(args?: Subset<T, Document$job_application_responsesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$JobApplicationResponsePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
32405
32383
|
assignment_solution<T extends Document$assignment_solutionArgs<ExtArgs> = {}>(args?: Subset<T, Document$assignment_solutionArgs<ExtArgs>>): Prisma__AssignmentClient<$Result.GetResult<Prisma.$AssignmentPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
@@ -32921,6 +32899,25 @@ export namespace Prisma {
|
|
|
32921
32899
|
where?: JobDescriptionWhereInput
|
|
32922
32900
|
}
|
|
32923
32901
|
|
|
32902
|
+
/**
|
|
32903
|
+
* Document.job_description_rendered
|
|
32904
|
+
*/
|
|
32905
|
+
export type Document$job_description_renderedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
32906
|
+
/**
|
|
32907
|
+
* Select specific fields to fetch from the JobDescription
|
|
32908
|
+
*/
|
|
32909
|
+
select?: JobDescriptionSelect<ExtArgs> | null
|
|
32910
|
+
/**
|
|
32911
|
+
* Omit specific fields from the JobDescription
|
|
32912
|
+
*/
|
|
32913
|
+
omit?: JobDescriptionOmit<ExtArgs> | null
|
|
32914
|
+
/**
|
|
32915
|
+
* Choose, which related nodes to fetch as well
|
|
32916
|
+
*/
|
|
32917
|
+
include?: JobDescriptionInclude<ExtArgs> | null
|
|
32918
|
+
where?: JobDescriptionWhereInput
|
|
32919
|
+
}
|
|
32920
|
+
|
|
32924
32921
|
/**
|
|
32925
32922
|
* Document.interview_recording
|
|
32926
32923
|
*/
|
|
@@ -33062,7 +33059,6 @@ export namespace Prisma {
|
|
|
33062
33059
|
timeline: number | null
|
|
33063
33060
|
order_no: number | null
|
|
33064
33061
|
plan_type: $Enums.EvaluationPlanType | null
|
|
33065
|
-
share_scope: $Enums.EvaluationPlanShareScope | null
|
|
33066
33062
|
duration: number | null
|
|
33067
33063
|
duration_unit: $Enums.DurationUnit | null
|
|
33068
33064
|
deadline: number | null
|
|
@@ -33088,7 +33084,6 @@ export namespace Prisma {
|
|
|
33088
33084
|
timeline: number | null
|
|
33089
33085
|
order_no: number | null
|
|
33090
33086
|
plan_type: $Enums.EvaluationPlanType | null
|
|
33091
|
-
share_scope: $Enums.EvaluationPlanShareScope | null
|
|
33092
33087
|
duration: number | null
|
|
33093
33088
|
duration_unit: $Enums.DurationUnit | null
|
|
33094
33089
|
deadline: number | null
|
|
@@ -33116,7 +33111,6 @@ export namespace Prisma {
|
|
|
33116
33111
|
order_no: number
|
|
33117
33112
|
details: number
|
|
33118
33113
|
plan_type: number
|
|
33119
|
-
share_scope: number
|
|
33120
33114
|
duration: number
|
|
33121
33115
|
duration_unit: number
|
|
33122
33116
|
deadline: number
|
|
@@ -33158,7 +33152,6 @@ export namespace Prisma {
|
|
|
33158
33152
|
timeline?: true
|
|
33159
33153
|
order_no?: true
|
|
33160
33154
|
plan_type?: true
|
|
33161
|
-
share_scope?: true
|
|
33162
33155
|
duration?: true
|
|
33163
33156
|
duration_unit?: true
|
|
33164
33157
|
deadline?: true
|
|
@@ -33184,7 +33177,6 @@ export namespace Prisma {
|
|
|
33184
33177
|
timeline?: true
|
|
33185
33178
|
order_no?: true
|
|
33186
33179
|
plan_type?: true
|
|
33187
|
-
share_scope?: true
|
|
33188
33180
|
duration?: true
|
|
33189
33181
|
duration_unit?: true
|
|
33190
33182
|
deadline?: true
|
|
@@ -33212,7 +33204,6 @@ export namespace Prisma {
|
|
|
33212
33204
|
order_no?: true
|
|
33213
33205
|
details?: true
|
|
33214
33206
|
plan_type?: true
|
|
33215
|
-
share_scope?: true
|
|
33216
33207
|
duration?: true
|
|
33217
33208
|
duration_unit?: true
|
|
33218
33209
|
deadline?: true
|
|
@@ -33327,7 +33318,6 @@ export namespace Prisma {
|
|
|
33327
33318
|
order_no: number | null
|
|
33328
33319
|
details: JsonValue | null
|
|
33329
33320
|
plan_type: $Enums.EvaluationPlanType
|
|
33330
|
-
share_scope: $Enums.EvaluationPlanShareScope
|
|
33331
33321
|
duration: number | null
|
|
33332
33322
|
duration_unit: $Enums.DurationUnit | null
|
|
33333
33323
|
deadline: number | null
|
|
@@ -33374,7 +33364,6 @@ export namespace Prisma {
|
|
|
33374
33364
|
order_no?: boolean
|
|
33375
33365
|
details?: boolean
|
|
33376
33366
|
plan_type?: boolean
|
|
33377
|
-
share_scope?: boolean
|
|
33378
33367
|
duration?: boolean
|
|
33379
33368
|
duration_unit?: boolean
|
|
33380
33369
|
deadline?: boolean
|
|
@@ -33410,7 +33399,6 @@ export namespace Prisma {
|
|
|
33410
33399
|
order_no?: boolean
|
|
33411
33400
|
details?: boolean
|
|
33412
33401
|
plan_type?: boolean
|
|
33413
|
-
share_scope?: boolean
|
|
33414
33402
|
duration?: boolean
|
|
33415
33403
|
duration_unit?: boolean
|
|
33416
33404
|
deadline?: boolean
|
|
@@ -33441,7 +33429,6 @@ export namespace Prisma {
|
|
|
33441
33429
|
order_no?: boolean
|
|
33442
33430
|
details?: boolean
|
|
33443
33431
|
plan_type?: boolean
|
|
33444
|
-
share_scope?: boolean
|
|
33445
33432
|
duration?: boolean
|
|
33446
33433
|
duration_unit?: boolean
|
|
33447
33434
|
deadline?: boolean
|
|
@@ -33472,7 +33459,6 @@ export namespace Prisma {
|
|
|
33472
33459
|
order_no?: boolean
|
|
33473
33460
|
details?: boolean
|
|
33474
33461
|
plan_type?: boolean
|
|
33475
|
-
share_scope?: boolean
|
|
33476
33462
|
duration?: boolean
|
|
33477
33463
|
duration_unit?: boolean
|
|
33478
33464
|
deadline?: boolean
|
|
@@ -33483,7 +33469,7 @@ export namespace Prisma {
|
|
|
33483
33469
|
is_active?: boolean
|
|
33484
33470
|
}
|
|
33485
33471
|
|
|
33486
|
-
export type EvaluationPlanOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "job_description_id" | "assessment_id" | "assignment_library_id" | "title" | "description" | "format" | "topics" | "assignee" | "elimination_round" | "evaluation_type" | "type_of_round" | "timeline" | "order_no" | "details" | "plan_type" | "
|
|
33472
|
+
export type EvaluationPlanOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "job_description_id" | "assessment_id" | "assignment_library_id" | "title" | "description" | "format" | "topics" | "assignee" | "elimination_round" | "evaluation_type" | "type_of_round" | "timeline" | "order_no" | "details" | "plan_type" | "duration" | "duration_unit" | "deadline" | "created_by" | "updated_by" | "created_at" | "updated_at" | "is_active", ExtArgs["result"]["evaluationPlan"]>
|
|
33487
33473
|
export type EvaluationPlanInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33488
33474
|
jobDescription?: boolean | JobDescriptionDefaultArgs<ExtArgs>
|
|
33489
33475
|
questions?: boolean | EvaluationPlan$questionsArgs<ExtArgs>
|
|
@@ -33533,7 +33519,6 @@ export namespace Prisma {
|
|
|
33533
33519
|
order_no: number | null
|
|
33534
33520
|
details: Prisma.JsonValue | null
|
|
33535
33521
|
plan_type: $Enums.EvaluationPlanType
|
|
33536
|
-
share_scope: $Enums.EvaluationPlanShareScope
|
|
33537
33522
|
duration: number | null
|
|
33538
33523
|
duration_unit: $Enums.DurationUnit | null
|
|
33539
33524
|
deadline: number | null
|
|
@@ -33988,7 +33973,6 @@ export namespace Prisma {
|
|
|
33988
33973
|
readonly order_no: FieldRef<"EvaluationPlan", 'Int'>
|
|
33989
33974
|
readonly details: FieldRef<"EvaluationPlan", 'Json'>
|
|
33990
33975
|
readonly plan_type: FieldRef<"EvaluationPlan", 'EvaluationPlanType'>
|
|
33991
|
-
readonly share_scope: FieldRef<"EvaluationPlan", 'EvaluationPlanShareScope'>
|
|
33992
33976
|
readonly duration: FieldRef<"EvaluationPlan", 'Int'>
|
|
33993
33977
|
readonly duration_unit: FieldRef<"EvaluationPlan", 'DurationUnit'>
|
|
33994
33978
|
readonly deadline: FieldRef<"EvaluationPlan", 'Int'>
|
|
@@ -48604,6 +48588,7 @@ export namespace Prisma {
|
|
|
48604
48588
|
status: $Enums.JobDescriptionStatus | null
|
|
48605
48589
|
uploaded_job_description_path: string | null
|
|
48606
48590
|
source_document_id: string | null
|
|
48591
|
+
rendered_jd_document_id: string | null
|
|
48607
48592
|
is_plan_published: boolean | null
|
|
48608
48593
|
is_posted: boolean | null
|
|
48609
48594
|
created_at: Date | null
|
|
@@ -48622,6 +48607,7 @@ export namespace Prisma {
|
|
|
48622
48607
|
status: $Enums.JobDescriptionStatus | null
|
|
48623
48608
|
uploaded_job_description_path: string | null
|
|
48624
48609
|
source_document_id: string | null
|
|
48610
|
+
rendered_jd_document_id: string | null
|
|
48625
48611
|
is_plan_published: boolean | null
|
|
48626
48612
|
is_posted: boolean | null
|
|
48627
48613
|
created_at: Date | null
|
|
@@ -48642,6 +48628,7 @@ export namespace Prisma {
|
|
|
48642
48628
|
recommendedQuestions: number
|
|
48643
48629
|
uploaded_job_description_path: number
|
|
48644
48630
|
source_document_id: number
|
|
48631
|
+
rendered_jd_document_id: number
|
|
48645
48632
|
is_plan_published: number
|
|
48646
48633
|
is_posted: number
|
|
48647
48634
|
summary: number
|
|
@@ -48673,6 +48660,7 @@ export namespace Prisma {
|
|
|
48673
48660
|
status?: true
|
|
48674
48661
|
uploaded_job_description_path?: true
|
|
48675
48662
|
source_document_id?: true
|
|
48663
|
+
rendered_jd_document_id?: true
|
|
48676
48664
|
is_plan_published?: true
|
|
48677
48665
|
is_posted?: true
|
|
48678
48666
|
created_at?: true
|
|
@@ -48691,6 +48679,7 @@ export namespace Prisma {
|
|
|
48691
48679
|
status?: true
|
|
48692
48680
|
uploaded_job_description_path?: true
|
|
48693
48681
|
source_document_id?: true
|
|
48682
|
+
rendered_jd_document_id?: true
|
|
48694
48683
|
is_plan_published?: true
|
|
48695
48684
|
is_posted?: true
|
|
48696
48685
|
created_at?: true
|
|
@@ -48711,6 +48700,7 @@ export namespace Prisma {
|
|
|
48711
48700
|
recommendedQuestions?: true
|
|
48712
48701
|
uploaded_job_description_path?: true
|
|
48713
48702
|
source_document_id?: true
|
|
48703
|
+
rendered_jd_document_id?: true
|
|
48714
48704
|
is_plan_published?: true
|
|
48715
48705
|
is_posted?: true
|
|
48716
48706
|
summary?: true
|
|
@@ -48821,6 +48811,7 @@ export namespace Prisma {
|
|
|
48821
48811
|
recommendedQuestions: JsonValue[]
|
|
48822
48812
|
uploaded_job_description_path: string | null
|
|
48823
48813
|
source_document_id: string | null
|
|
48814
|
+
rendered_jd_document_id: string | null
|
|
48824
48815
|
is_plan_published: boolean
|
|
48825
48816
|
is_posted: boolean
|
|
48826
48817
|
summary: JsonValue | null
|
|
@@ -48863,6 +48854,7 @@ export namespace Prisma {
|
|
|
48863
48854
|
recommendedQuestions?: boolean
|
|
48864
48855
|
uploaded_job_description_path?: boolean
|
|
48865
48856
|
source_document_id?: boolean
|
|
48857
|
+
rendered_jd_document_id?: boolean
|
|
48866
48858
|
is_plan_published?: boolean
|
|
48867
48859
|
is_posted?: boolean
|
|
48868
48860
|
summary?: boolean
|
|
@@ -48875,6 +48867,7 @@ export namespace Prisma {
|
|
|
48875
48867
|
is_active?: boolean
|
|
48876
48868
|
openings?: boolean
|
|
48877
48869
|
job_profile_id?: boolean
|
|
48870
|
+
rendered_jd_document?: boolean | JobDescription$rendered_jd_documentArgs<ExtArgs>
|
|
48878
48871
|
job_profile?: boolean | JobDescription$job_profileArgs<ExtArgs>
|
|
48879
48872
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
48880
48873
|
source_document?: boolean | JobDescription$source_documentArgs<ExtArgs>
|
|
@@ -48908,6 +48901,7 @@ export namespace Prisma {
|
|
|
48908
48901
|
recommendedQuestions?: boolean
|
|
48909
48902
|
uploaded_job_description_path?: boolean
|
|
48910
48903
|
source_document_id?: boolean
|
|
48904
|
+
rendered_jd_document_id?: boolean
|
|
48911
48905
|
is_plan_published?: boolean
|
|
48912
48906
|
is_posted?: boolean
|
|
48913
48907
|
summary?: boolean
|
|
@@ -48920,6 +48914,7 @@ export namespace Prisma {
|
|
|
48920
48914
|
is_active?: boolean
|
|
48921
48915
|
openings?: boolean
|
|
48922
48916
|
job_profile_id?: boolean
|
|
48917
|
+
rendered_jd_document?: boolean | JobDescription$rendered_jd_documentArgs<ExtArgs>
|
|
48923
48918
|
job_profile?: boolean | JobDescription$job_profileArgs<ExtArgs>
|
|
48924
48919
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
48925
48920
|
source_document?: boolean | JobDescription$source_documentArgs<ExtArgs>
|
|
@@ -48935,6 +48930,7 @@ export namespace Prisma {
|
|
|
48935
48930
|
recommendedQuestions?: boolean
|
|
48936
48931
|
uploaded_job_description_path?: boolean
|
|
48937
48932
|
source_document_id?: boolean
|
|
48933
|
+
rendered_jd_document_id?: boolean
|
|
48938
48934
|
is_plan_published?: boolean
|
|
48939
48935
|
is_posted?: boolean
|
|
48940
48936
|
summary?: boolean
|
|
@@ -48947,6 +48943,7 @@ export namespace Prisma {
|
|
|
48947
48943
|
is_active?: boolean
|
|
48948
48944
|
openings?: boolean
|
|
48949
48945
|
job_profile_id?: boolean
|
|
48946
|
+
rendered_jd_document?: boolean | JobDescription$rendered_jd_documentArgs<ExtArgs>
|
|
48950
48947
|
job_profile?: boolean | JobDescription$job_profileArgs<ExtArgs>
|
|
48951
48948
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
48952
48949
|
source_document?: boolean | JobDescription$source_documentArgs<ExtArgs>
|
|
@@ -48962,6 +48959,7 @@ export namespace Prisma {
|
|
|
48962
48959
|
recommendedQuestions?: boolean
|
|
48963
48960
|
uploaded_job_description_path?: boolean
|
|
48964
48961
|
source_document_id?: boolean
|
|
48962
|
+
rendered_jd_document_id?: boolean
|
|
48965
48963
|
is_plan_published?: boolean
|
|
48966
48964
|
is_posted?: boolean
|
|
48967
48965
|
summary?: boolean
|
|
@@ -48976,8 +48974,9 @@ export namespace Prisma {
|
|
|
48976
48974
|
job_profile_id?: boolean
|
|
48977
48975
|
}
|
|
48978
48976
|
|
|
48979
|
-
export type JobDescriptionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "hiring_manager_id" | "status" | "screeningQuestions" | "recommendedQuestions" | "uploaded_job_description_path" | "source_document_id" | "is_plan_published" | "is_posted" | "summary" | "ai_insight" | "job_fit_comparison" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "openings" | "job_profile_id", ExtArgs["result"]["jobDescription"]>
|
|
48977
|
+
export type JobDescriptionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "hiring_manager_id" | "status" | "screeningQuestions" | "recommendedQuestions" | "uploaded_job_description_path" | "source_document_id" | "rendered_jd_document_id" | "is_plan_published" | "is_posted" | "summary" | "ai_insight" | "job_fit_comparison" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "openings" | "job_profile_id", ExtArgs["result"]["jobDescription"]>
|
|
48980
48978
|
export type JobDescriptionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
48979
|
+
rendered_jd_document?: boolean | JobDescription$rendered_jd_documentArgs<ExtArgs>
|
|
48981
48980
|
job_profile?: boolean | JobDescription$job_profileArgs<ExtArgs>
|
|
48982
48981
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
48983
48982
|
source_document?: boolean | JobDescription$source_documentArgs<ExtArgs>
|
|
@@ -49002,12 +49001,14 @@ export namespace Prisma {
|
|
|
49002
49001
|
_count?: boolean | JobDescriptionCountOutputTypeDefaultArgs<ExtArgs>
|
|
49003
49002
|
}
|
|
49004
49003
|
export type JobDescriptionIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
49004
|
+
rendered_jd_document?: boolean | JobDescription$rendered_jd_documentArgs<ExtArgs>
|
|
49005
49005
|
job_profile?: boolean | JobDescription$job_profileArgs<ExtArgs>
|
|
49006
49006
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
49007
49007
|
source_document?: boolean | JobDescription$source_documentArgs<ExtArgs>
|
|
49008
49008
|
hiring_manager?: boolean | JobDescription$hiring_managerArgs<ExtArgs>
|
|
49009
49009
|
}
|
|
49010
49010
|
export type JobDescriptionIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
49011
|
+
rendered_jd_document?: boolean | JobDescription$rendered_jd_documentArgs<ExtArgs>
|
|
49011
49012
|
job_profile?: boolean | JobDescription$job_profileArgs<ExtArgs>
|
|
49012
49013
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
49013
49014
|
source_document?: boolean | JobDescription$source_documentArgs<ExtArgs>
|
|
@@ -49017,6 +49018,7 @@ export namespace Prisma {
|
|
|
49017
49018
|
export type $JobDescriptionPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
49018
49019
|
name: "JobDescription"
|
|
49019
49020
|
objects: {
|
|
49021
|
+
rendered_jd_document: Prisma.$DocumentPayload<ExtArgs> | null
|
|
49020
49022
|
job_profile: Prisma.$JobProfilePayload<ExtArgs> | null
|
|
49021
49023
|
organisation: Prisma.$OrganisationPayload<ExtArgs>
|
|
49022
49024
|
source_document: Prisma.$DocumentPayload<ExtArgs> | null
|
|
@@ -49051,6 +49053,7 @@ export namespace Prisma {
|
|
|
49051
49053
|
*/
|
|
49052
49054
|
uploaded_job_description_path: string | null
|
|
49053
49055
|
source_document_id: string | null
|
|
49056
|
+
rendered_jd_document_id: string | null
|
|
49054
49057
|
is_plan_published: boolean
|
|
49055
49058
|
is_posted: boolean
|
|
49056
49059
|
summary: Prisma.JsonValue | null
|
|
@@ -49457,6 +49460,7 @@ export namespace Prisma {
|
|
|
49457
49460
|
*/
|
|
49458
49461
|
export interface Prisma__JobDescriptionClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
49459
49462
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
49463
|
+
rendered_jd_document<T extends JobDescription$rendered_jd_documentArgs<ExtArgs> = {}>(args?: Subset<T, JobDescription$rendered_jd_documentArgs<ExtArgs>>): Prisma__DocumentClient<$Result.GetResult<Prisma.$DocumentPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
49460
49464
|
job_profile<T extends JobDescription$job_profileArgs<ExtArgs> = {}>(args?: Subset<T, JobDescription$job_profileArgs<ExtArgs>>): Prisma__JobProfileClient<$Result.GetResult<Prisma.$JobProfilePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
49461
49465
|
organisation<T extends OrganisationDefaultArgs<ExtArgs> = {}>(args?: Subset<T, OrganisationDefaultArgs<ExtArgs>>): Prisma__OrganisationClient<$Result.GetResult<Prisma.$OrganisationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
49462
49466
|
source_document<T extends JobDescription$source_documentArgs<ExtArgs> = {}>(args?: Subset<T, JobDescription$source_documentArgs<ExtArgs>>): Prisma__DocumentClient<$Result.GetResult<Prisma.$DocumentPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
@@ -49515,6 +49519,7 @@ export namespace Prisma {
|
|
|
49515
49519
|
readonly recommendedQuestions: FieldRef<"JobDescription", 'Json[]'>
|
|
49516
49520
|
readonly uploaded_job_description_path: FieldRef<"JobDescription", 'String'>
|
|
49517
49521
|
readonly source_document_id: FieldRef<"JobDescription", 'String'>
|
|
49522
|
+
readonly rendered_jd_document_id: FieldRef<"JobDescription", 'String'>
|
|
49518
49523
|
readonly is_plan_published: FieldRef<"JobDescription", 'Boolean'>
|
|
49519
49524
|
readonly is_posted: FieldRef<"JobDescription", 'Boolean'>
|
|
49520
49525
|
readonly summary: FieldRef<"JobDescription", 'Json'>
|
|
@@ -49922,6 +49927,25 @@ export namespace Prisma {
|
|
|
49922
49927
|
limit?: number
|
|
49923
49928
|
}
|
|
49924
49929
|
|
|
49930
|
+
/**
|
|
49931
|
+
* JobDescription.rendered_jd_document
|
|
49932
|
+
*/
|
|
49933
|
+
export type JobDescription$rendered_jd_documentArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
49934
|
+
/**
|
|
49935
|
+
* Select specific fields to fetch from the Document
|
|
49936
|
+
*/
|
|
49937
|
+
select?: DocumentSelect<ExtArgs> | null
|
|
49938
|
+
/**
|
|
49939
|
+
* Omit specific fields from the Document
|
|
49940
|
+
*/
|
|
49941
|
+
omit?: DocumentOmit<ExtArgs> | null
|
|
49942
|
+
/**
|
|
49943
|
+
* Choose, which related nodes to fetch as well
|
|
49944
|
+
*/
|
|
49945
|
+
include?: DocumentInclude<ExtArgs> | null
|
|
49946
|
+
where?: DocumentWhereInput
|
|
49947
|
+
}
|
|
49948
|
+
|
|
49925
49949
|
/**
|
|
49926
49950
|
* JobDescription.job_profile
|
|
49927
49951
|
*/
|
|
@@ -77697,7 +77721,6 @@ export namespace Prisma {
|
|
|
77697
77721
|
expected_ctc: 'expected_ctc',
|
|
77698
77722
|
notice_period: 'notice_period',
|
|
77699
77723
|
preferred_location: 'preferred_location',
|
|
77700
|
-
evaluationComment: 'evaluationComment',
|
|
77701
77724
|
fit_check_status: 'fit_check_status',
|
|
77702
77725
|
status: 'status',
|
|
77703
77726
|
created_at: 'created_at',
|
|
@@ -78039,7 +78062,6 @@ export namespace Prisma {
|
|
|
78039
78062
|
order_no: 'order_no',
|
|
78040
78063
|
details: 'details',
|
|
78041
78064
|
plan_type: 'plan_type',
|
|
78042
|
-
share_scope: 'share_scope',
|
|
78043
78065
|
duration: 'duration',
|
|
78044
78066
|
duration_unit: 'duration_unit',
|
|
78045
78067
|
deadline: 'deadline',
|
|
@@ -78313,6 +78335,7 @@ export namespace Prisma {
|
|
|
78313
78335
|
recommendedQuestions: 'recommendedQuestions',
|
|
78314
78336
|
uploaded_job_description_path: 'uploaded_job_description_path',
|
|
78315
78337
|
source_document_id: 'source_document_id',
|
|
78338
|
+
rendered_jd_document_id: 'rendered_jd_document_id',
|
|
78316
78339
|
is_plan_published: 'is_plan_published',
|
|
78317
78340
|
is_posted: 'is_posted',
|
|
78318
78341
|
summary: 'summary',
|
|
@@ -79132,20 +79155,6 @@ export namespace Prisma {
|
|
|
79132
79155
|
|
|
79133
79156
|
|
|
79134
79157
|
|
|
79135
|
-
/**
|
|
79136
|
-
* Reference to a field of type 'EvaluationPlanShareScope'
|
|
79137
|
-
*/
|
|
79138
|
-
export type EnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'EvaluationPlanShareScope'>
|
|
79139
|
-
|
|
79140
|
-
|
|
79141
|
-
|
|
79142
|
-
/**
|
|
79143
|
-
* Reference to a field of type 'EvaluationPlanShareScope[]'
|
|
79144
|
-
*/
|
|
79145
|
-
export type ListEnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'EvaluationPlanShareScope[]'>
|
|
79146
|
-
|
|
79147
|
-
|
|
79148
|
-
|
|
79149
79158
|
/**
|
|
79150
79159
|
* Reference to a field of type 'DurationUnit'
|
|
79151
79160
|
*/
|
|
@@ -79842,7 +79851,6 @@ export namespace Prisma {
|
|
|
79842
79851
|
expected_ctc?: StringNullableFilter<"Application"> | string | null
|
|
79843
79852
|
notice_period?: IntNullableFilter<"Application"> | number | null
|
|
79844
79853
|
preferred_location?: StringNullableFilter<"Application"> | string | null
|
|
79845
|
-
evaluationComment?: StringNullableFilter<"Application"> | string | null
|
|
79846
79854
|
fit_check_status?: EnumFitCheckStatusNullableFilter<"Application"> | $Enums.FitCheckStatus | null
|
|
79847
79855
|
status?: EnumApplicationStatusFilter<"Application"> | $Enums.ApplicationStatus
|
|
79848
79856
|
created_at?: DateTimeFilter<"Application"> | Date | string
|
|
@@ -79884,7 +79892,6 @@ export namespace Prisma {
|
|
|
79884
79892
|
expected_ctc?: SortOrderInput | SortOrder
|
|
79885
79893
|
notice_period?: SortOrderInput | SortOrder
|
|
79886
79894
|
preferred_location?: SortOrderInput | SortOrder
|
|
79887
|
-
evaluationComment?: SortOrderInput | SortOrder
|
|
79888
79895
|
fit_check_status?: SortOrderInput | SortOrder
|
|
79889
79896
|
status?: SortOrder
|
|
79890
79897
|
created_at?: SortOrder
|
|
@@ -79930,7 +79937,6 @@ export namespace Prisma {
|
|
|
79930
79937
|
expected_ctc?: StringNullableFilter<"Application"> | string | null
|
|
79931
79938
|
notice_period?: IntNullableFilter<"Application"> | number | null
|
|
79932
79939
|
preferred_location?: StringNullableFilter<"Application"> | string | null
|
|
79933
|
-
evaluationComment?: StringNullableFilter<"Application"> | string | null
|
|
79934
79940
|
fit_check_status?: EnumFitCheckStatusNullableFilter<"Application"> | $Enums.FitCheckStatus | null
|
|
79935
79941
|
status?: EnumApplicationStatusFilter<"Application"> | $Enums.ApplicationStatus
|
|
79936
79942
|
created_at?: DateTimeFilter<"Application"> | Date | string
|
|
@@ -79972,7 +79978,6 @@ export namespace Prisma {
|
|
|
79972
79978
|
expected_ctc?: SortOrderInput | SortOrder
|
|
79973
79979
|
notice_period?: SortOrderInput | SortOrder
|
|
79974
79980
|
preferred_location?: SortOrderInput | SortOrder
|
|
79975
|
-
evaluationComment?: SortOrderInput | SortOrder
|
|
79976
79981
|
fit_check_status?: SortOrderInput | SortOrder
|
|
79977
79982
|
status?: SortOrder
|
|
79978
79983
|
created_at?: SortOrder
|
|
@@ -80008,7 +80013,6 @@ export namespace Prisma {
|
|
|
80008
80013
|
expected_ctc?: StringNullableWithAggregatesFilter<"Application"> | string | null
|
|
80009
80014
|
notice_period?: IntNullableWithAggregatesFilter<"Application"> | number | null
|
|
80010
80015
|
preferred_location?: StringNullableWithAggregatesFilter<"Application"> | string | null
|
|
80011
|
-
evaluationComment?: StringNullableWithAggregatesFilter<"Application"> | string | null
|
|
80012
80016
|
fit_check_status?: EnumFitCheckStatusNullableWithAggregatesFilter<"Application"> | $Enums.FitCheckStatus | null
|
|
80013
80017
|
status?: EnumApplicationStatusWithAggregatesFilter<"Application"> | $Enums.ApplicationStatus
|
|
80014
80018
|
created_at?: DateTimeWithAggregatesFilter<"Application"> | Date | string
|
|
@@ -81610,6 +81614,7 @@ export namespace Prisma {
|
|
|
81610
81614
|
candidate?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
81611
81615
|
resume?: XOR<ResumeNullableScalarRelationFilter, ResumeWhereInput> | null
|
|
81612
81616
|
job_description_source?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
|
|
81617
|
+
job_description_rendered?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
|
|
81613
81618
|
interview_recording?: XOR<InterviewNullableScalarRelationFilter, InterviewWhereInput> | null
|
|
81614
81619
|
job_application_responses?: JobApplicationResponseListRelationFilter
|
|
81615
81620
|
assignment_solution?: XOR<AssignmentNullableScalarRelationFilter, AssignmentWhereInput> | null
|
|
@@ -81638,6 +81643,7 @@ export namespace Prisma {
|
|
|
81638
81643
|
candidate?: UserOrderByWithRelationInput
|
|
81639
81644
|
resume?: ResumeOrderByWithRelationInput
|
|
81640
81645
|
job_description_source?: JobDescriptionOrderByWithRelationInput
|
|
81646
|
+
job_description_rendered?: JobDescriptionOrderByWithRelationInput
|
|
81641
81647
|
interview_recording?: InterviewOrderByWithRelationInput
|
|
81642
81648
|
job_application_responses?: JobApplicationResponseOrderByRelationAggregateInput
|
|
81643
81649
|
assignment_solution?: AssignmentOrderByWithRelationInput
|
|
@@ -81669,6 +81675,7 @@ export namespace Prisma {
|
|
|
81669
81675
|
candidate?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
81670
81676
|
resume?: XOR<ResumeNullableScalarRelationFilter, ResumeWhereInput> | null
|
|
81671
81677
|
job_description_source?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
|
|
81678
|
+
job_description_rendered?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
|
|
81672
81679
|
interview_recording?: XOR<InterviewNullableScalarRelationFilter, InterviewWhereInput> | null
|
|
81673
81680
|
job_application_responses?: JobApplicationResponseListRelationFilter
|
|
81674
81681
|
assignment_solution?: XOR<AssignmentNullableScalarRelationFilter, AssignmentWhereInput> | null
|
|
@@ -81743,7 +81750,6 @@ export namespace Prisma {
|
|
|
81743
81750
|
order_no?: IntNullableFilter<"EvaluationPlan"> | number | null
|
|
81744
81751
|
details?: JsonNullableFilter<"EvaluationPlan">
|
|
81745
81752
|
plan_type?: EnumEvaluationPlanTypeFilter<"EvaluationPlan"> | $Enums.EvaluationPlanType
|
|
81746
|
-
share_scope?: EnumEvaluationPlanShareScopeFilter<"EvaluationPlan"> | $Enums.EvaluationPlanShareScope
|
|
81747
81753
|
duration?: IntNullableFilter<"EvaluationPlan"> | number | null
|
|
81748
81754
|
duration_unit?: EnumDurationUnitNullableFilter<"EvaluationPlan"> | $Enums.DurationUnit | null
|
|
81749
81755
|
deadline?: IntNullableFilter<"EvaluationPlan"> | number | null
|
|
@@ -81778,7 +81784,6 @@ export namespace Prisma {
|
|
|
81778
81784
|
order_no?: SortOrderInput | SortOrder
|
|
81779
81785
|
details?: SortOrderInput | SortOrder
|
|
81780
81786
|
plan_type?: SortOrder
|
|
81781
|
-
share_scope?: SortOrder
|
|
81782
81787
|
duration?: SortOrderInput | SortOrder
|
|
81783
81788
|
duration_unit?: SortOrderInput | SortOrder
|
|
81784
81789
|
deadline?: SortOrderInput | SortOrder
|
|
@@ -81816,7 +81821,6 @@ export namespace Prisma {
|
|
|
81816
81821
|
order_no?: IntNullableFilter<"EvaluationPlan"> | number | null
|
|
81817
81822
|
details?: JsonNullableFilter<"EvaluationPlan">
|
|
81818
81823
|
plan_type?: EnumEvaluationPlanTypeFilter<"EvaluationPlan"> | $Enums.EvaluationPlanType
|
|
81819
|
-
share_scope?: EnumEvaluationPlanShareScopeFilter<"EvaluationPlan"> | $Enums.EvaluationPlanShareScope
|
|
81820
81824
|
duration?: IntNullableFilter<"EvaluationPlan"> | number | null
|
|
81821
81825
|
duration_unit?: EnumDurationUnitNullableFilter<"EvaluationPlan"> | $Enums.DurationUnit | null
|
|
81822
81826
|
deadline?: IntNullableFilter<"EvaluationPlan"> | number | null
|
|
@@ -81851,7 +81855,6 @@ export namespace Prisma {
|
|
|
81851
81855
|
order_no?: SortOrderInput | SortOrder
|
|
81852
81856
|
details?: SortOrderInput | SortOrder
|
|
81853
81857
|
plan_type?: SortOrder
|
|
81854
|
-
share_scope?: SortOrder
|
|
81855
81858
|
duration?: SortOrderInput | SortOrder
|
|
81856
81859
|
duration_unit?: SortOrderInput | SortOrder
|
|
81857
81860
|
deadline?: SortOrderInput | SortOrder
|
|
@@ -81887,7 +81890,6 @@ export namespace Prisma {
|
|
|
81887
81890
|
order_no?: IntNullableWithAggregatesFilter<"EvaluationPlan"> | number | null
|
|
81888
81891
|
details?: JsonNullableWithAggregatesFilter<"EvaluationPlan">
|
|
81889
81892
|
plan_type?: EnumEvaluationPlanTypeWithAggregatesFilter<"EvaluationPlan"> | $Enums.EvaluationPlanType
|
|
81890
|
-
share_scope?: EnumEvaluationPlanShareScopeWithAggregatesFilter<"EvaluationPlan"> | $Enums.EvaluationPlanShareScope
|
|
81891
81893
|
duration?: IntNullableWithAggregatesFilter<"EvaluationPlan"> | number | null
|
|
81892
81894
|
duration_unit?: EnumDurationUnitNullableWithAggregatesFilter<"EvaluationPlan"> | $Enums.DurationUnit | null
|
|
81893
81895
|
deadline?: IntNullableWithAggregatesFilter<"EvaluationPlan"> | number | null
|
|
@@ -83249,6 +83251,7 @@ export namespace Prisma {
|
|
|
83249
83251
|
recommendedQuestions?: JsonNullableListFilter<"JobDescription">
|
|
83250
83252
|
uploaded_job_description_path?: StringNullableFilter<"JobDescription"> | string | null
|
|
83251
83253
|
source_document_id?: StringNullableFilter<"JobDescription"> | string | null
|
|
83254
|
+
rendered_jd_document_id?: StringNullableFilter<"JobDescription"> | string | null
|
|
83252
83255
|
is_plan_published?: BoolFilter<"JobDescription"> | boolean
|
|
83253
83256
|
is_posted?: BoolFilter<"JobDescription"> | boolean
|
|
83254
83257
|
summary?: JsonNullableFilter<"JobDescription">
|
|
@@ -83261,6 +83264,7 @@ export namespace Prisma {
|
|
|
83261
83264
|
is_active?: BoolFilter<"JobDescription"> | boolean
|
|
83262
83265
|
openings?: IntFilter<"JobDescription"> | number
|
|
83263
83266
|
job_profile_id?: StringNullableFilter<"JobDescription"> | string | null
|
|
83267
|
+
rendered_jd_document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
|
|
83264
83268
|
job_profile?: XOR<JobProfileNullableScalarRelationFilter, JobProfileWhereInput> | null
|
|
83265
83269
|
organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
|
|
83266
83270
|
source_document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
|
|
@@ -83293,6 +83297,7 @@ export namespace Prisma {
|
|
|
83293
83297
|
recommendedQuestions?: SortOrder
|
|
83294
83298
|
uploaded_job_description_path?: SortOrderInput | SortOrder
|
|
83295
83299
|
source_document_id?: SortOrderInput | SortOrder
|
|
83300
|
+
rendered_jd_document_id?: SortOrderInput | SortOrder
|
|
83296
83301
|
is_plan_published?: SortOrder
|
|
83297
83302
|
is_posted?: SortOrder
|
|
83298
83303
|
summary?: SortOrderInput | SortOrder
|
|
@@ -83305,6 +83310,7 @@ export namespace Prisma {
|
|
|
83305
83310
|
is_active?: SortOrder
|
|
83306
83311
|
openings?: SortOrder
|
|
83307
83312
|
job_profile_id?: SortOrderInput | SortOrder
|
|
83313
|
+
rendered_jd_document?: DocumentOrderByWithRelationInput
|
|
83308
83314
|
job_profile?: JobProfileOrderByWithRelationInput
|
|
83309
83315
|
organisation?: OrganisationOrderByWithRelationInput
|
|
83310
83316
|
source_document?: DocumentOrderByWithRelationInput
|
|
@@ -83331,6 +83337,7 @@ export namespace Prisma {
|
|
|
83331
83337
|
export type JobDescriptionWhereUniqueInput = Prisma.AtLeast<{
|
|
83332
83338
|
id?: string
|
|
83333
83339
|
source_document_id?: string
|
|
83340
|
+
rendered_jd_document_id?: string
|
|
83334
83341
|
AND?: JobDescriptionWhereInput | JobDescriptionWhereInput[]
|
|
83335
83342
|
OR?: JobDescriptionWhereInput[]
|
|
83336
83343
|
NOT?: JobDescriptionWhereInput | JobDescriptionWhereInput[]
|
|
@@ -83352,6 +83359,7 @@ export namespace Prisma {
|
|
|
83352
83359
|
is_active?: BoolFilter<"JobDescription"> | boolean
|
|
83353
83360
|
openings?: IntFilter<"JobDescription"> | number
|
|
83354
83361
|
job_profile_id?: StringNullableFilter<"JobDescription"> | string | null
|
|
83362
|
+
rendered_jd_document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
|
|
83355
83363
|
job_profile?: XOR<JobProfileNullableScalarRelationFilter, JobProfileWhereInput> | null
|
|
83356
83364
|
organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
|
|
83357
83365
|
source_document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
|
|
@@ -83373,7 +83381,7 @@ export namespace Prisma {
|
|
|
83373
83381
|
job_application_template?: XOR<JobApplicationTemplateNullableScalarRelationFilter, JobApplicationTemplateWhereInput> | null
|
|
83374
83382
|
conversations?: ConversationListRelationFilter
|
|
83375
83383
|
communication_messages?: CommunicationMessageListRelationFilter
|
|
83376
|
-
}, "id" | "source_document_id">
|
|
83384
|
+
}, "id" | "source_document_id" | "rendered_jd_document_id">
|
|
83377
83385
|
|
|
83378
83386
|
export type JobDescriptionOrderByWithAggregationInput = {
|
|
83379
83387
|
id?: SortOrder
|
|
@@ -83384,6 +83392,7 @@ export namespace Prisma {
|
|
|
83384
83392
|
recommendedQuestions?: SortOrder
|
|
83385
83393
|
uploaded_job_description_path?: SortOrderInput | SortOrder
|
|
83386
83394
|
source_document_id?: SortOrderInput | SortOrder
|
|
83395
|
+
rendered_jd_document_id?: SortOrderInput | SortOrder
|
|
83387
83396
|
is_plan_published?: SortOrder
|
|
83388
83397
|
is_posted?: SortOrder
|
|
83389
83398
|
summary?: SortOrderInput | SortOrder
|
|
@@ -83415,6 +83424,7 @@ export namespace Prisma {
|
|
|
83415
83424
|
recommendedQuestions?: JsonNullableListFilter<"JobDescription">
|
|
83416
83425
|
uploaded_job_description_path?: StringNullableWithAggregatesFilter<"JobDescription"> | string | null
|
|
83417
83426
|
source_document_id?: StringNullableWithAggregatesFilter<"JobDescription"> | string | null
|
|
83427
|
+
rendered_jd_document_id?: StringNullableWithAggregatesFilter<"JobDescription"> | string | null
|
|
83418
83428
|
is_plan_published?: BoolWithAggregatesFilter<"JobDescription"> | boolean
|
|
83419
83429
|
is_posted?: BoolWithAggregatesFilter<"JobDescription"> | boolean
|
|
83420
83430
|
summary?: JsonNullableWithAggregatesFilter<"JobDescription">
|
|
@@ -86205,7 +86215,6 @@ export namespace Prisma {
|
|
|
86205
86215
|
expected_ctc?: string | null
|
|
86206
86216
|
notice_period?: number | null
|
|
86207
86217
|
preferred_location?: string | null
|
|
86208
|
-
evaluationComment?: string | null
|
|
86209
86218
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
86210
86219
|
status?: $Enums.ApplicationStatus
|
|
86211
86220
|
created_at?: Date | string
|
|
@@ -86247,7 +86256,6 @@ export namespace Prisma {
|
|
|
86247
86256
|
expected_ctc?: string | null
|
|
86248
86257
|
notice_period?: number | null
|
|
86249
86258
|
preferred_location?: string | null
|
|
86250
|
-
evaluationComment?: string | null
|
|
86251
86259
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
86252
86260
|
status?: $Enums.ApplicationStatus
|
|
86253
86261
|
created_at?: Date | string
|
|
@@ -86277,7 +86285,6 @@ export namespace Prisma {
|
|
|
86277
86285
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86278
86286
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
86279
86287
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86280
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86281
86288
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
86282
86289
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
86283
86290
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -86319,7 +86326,6 @@ export namespace Prisma {
|
|
|
86319
86326
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86320
86327
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
86321
86328
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86322
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86323
86329
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
86324
86330
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
86325
86331
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -86355,7 +86361,6 @@ export namespace Prisma {
|
|
|
86355
86361
|
expected_ctc?: string | null
|
|
86356
86362
|
notice_period?: number | null
|
|
86357
86363
|
preferred_location?: string | null
|
|
86358
|
-
evaluationComment?: string | null
|
|
86359
86364
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
86360
86365
|
status?: $Enums.ApplicationStatus
|
|
86361
86366
|
created_at?: Date | string
|
|
@@ -86377,7 +86382,6 @@ export namespace Prisma {
|
|
|
86377
86382
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86378
86383
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
86379
86384
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86380
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86381
86385
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
86382
86386
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
86383
86387
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -86405,7 +86409,6 @@ export namespace Prisma {
|
|
|
86405
86409
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86406
86410
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
86407
86411
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86408
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86409
86412
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
86410
86413
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
86411
86414
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -88171,6 +88174,7 @@ export namespace Prisma {
|
|
|
88171
88174
|
candidate?: UserCreateNestedOneWithoutDocumentsInput
|
|
88172
88175
|
resume?: ResumeCreateNestedOneWithoutDocumentInput
|
|
88173
88176
|
job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
|
|
88177
|
+
job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
|
|
88174
88178
|
interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
|
|
88175
88179
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
|
|
88176
88180
|
assignment_solution?: AssignmentCreateNestedOneWithoutSolution_documentInput
|
|
@@ -88197,6 +88201,7 @@ export namespace Prisma {
|
|
|
88197
88201
|
is_active?: boolean
|
|
88198
88202
|
resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
|
|
88199
88203
|
job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
|
|
88204
|
+
job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
|
|
88200
88205
|
interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
|
|
88201
88206
|
job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
|
|
88202
88207
|
assignment_solution?: AssignmentUncheckedCreateNestedOneWithoutSolution_documentInput
|
|
@@ -88223,6 +88228,7 @@ export namespace Prisma {
|
|
|
88223
88228
|
candidate?: UserUpdateOneWithoutDocumentsNestedInput
|
|
88224
88229
|
resume?: ResumeUpdateOneWithoutDocumentNestedInput
|
|
88225
88230
|
job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
|
|
88231
|
+
job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
|
|
88226
88232
|
interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
|
|
88227
88233
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
|
|
88228
88234
|
assignment_solution?: AssignmentUpdateOneWithoutSolution_documentNestedInput
|
|
@@ -88249,6 +88255,7 @@ export namespace Prisma {
|
|
|
88249
88255
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
88250
88256
|
resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
|
|
88251
88257
|
job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
|
|
88258
|
+
job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
|
|
88252
88259
|
interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
|
|
88253
88260
|
job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
|
|
88254
88261
|
assignment_solution?: AssignmentUncheckedUpdateOneWithoutSolution_documentNestedInput
|
|
@@ -88327,7 +88334,6 @@ export namespace Prisma {
|
|
|
88327
88334
|
order_no?: number | null
|
|
88328
88335
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
88329
88336
|
plan_type?: $Enums.EvaluationPlanType
|
|
88330
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
88331
88337
|
duration?: number | null
|
|
88332
88338
|
duration_unit?: $Enums.DurationUnit | null
|
|
88333
88339
|
deadline?: number | null
|
|
@@ -88362,7 +88368,6 @@ export namespace Prisma {
|
|
|
88362
88368
|
order_no?: number | null
|
|
88363
88369
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
88364
88370
|
plan_type?: $Enums.EvaluationPlanType
|
|
88365
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
88366
88371
|
duration?: number | null
|
|
88367
88372
|
duration_unit?: $Enums.DurationUnit | null
|
|
88368
88373
|
deadline?: number | null
|
|
@@ -88391,7 +88396,6 @@ export namespace Prisma {
|
|
|
88391
88396
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
88392
88397
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
88393
88398
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
88394
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
88395
88399
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
88396
88400
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
88397
88401
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -88426,7 +88430,6 @@ export namespace Prisma {
|
|
|
88426
88430
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
88427
88431
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
88428
88432
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
88429
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
88430
88433
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
88431
88434
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
88432
88435
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -88458,7 +88461,6 @@ export namespace Prisma {
|
|
|
88458
88461
|
order_no?: number | null
|
|
88459
88462
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
88460
88463
|
plan_type?: $Enums.EvaluationPlanType
|
|
88461
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
88462
88464
|
duration?: number | null
|
|
88463
88465
|
duration_unit?: $Enums.DurationUnit | null
|
|
88464
88466
|
deadline?: number | null
|
|
@@ -88483,7 +88485,6 @@ export namespace Prisma {
|
|
|
88483
88485
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
88484
88486
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
88485
88487
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
88486
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
88487
88488
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
88488
88489
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
88489
88490
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -88511,7 +88512,6 @@ export namespace Prisma {
|
|
|
88511
88512
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
88512
88513
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
88513
88514
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
88514
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
88515
88515
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
88516
88516
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
88517
88517
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -90080,6 +90080,7 @@ export namespace Prisma {
|
|
|
90080
90080
|
updated_by: string
|
|
90081
90081
|
is_active?: boolean
|
|
90082
90082
|
openings?: number
|
|
90083
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
90083
90084
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
90084
90085
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
90085
90086
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -90112,6 +90113,7 @@ export namespace Prisma {
|
|
|
90112
90113
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
90113
90114
|
uploaded_job_description_path?: string | null
|
|
90114
90115
|
source_document_id?: string | null
|
|
90116
|
+
rendered_jd_document_id?: string | null
|
|
90115
90117
|
is_plan_published?: boolean
|
|
90116
90118
|
is_posted?: boolean
|
|
90117
90119
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -90160,6 +90162,7 @@ export namespace Prisma {
|
|
|
90160
90162
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
90161
90163
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
90162
90164
|
openings?: IntFieldUpdateOperationsInput | number
|
|
90165
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
90163
90166
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
90164
90167
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
90165
90168
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -90192,6 +90195,7 @@ export namespace Prisma {
|
|
|
90192
90195
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
90193
90196
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90194
90197
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90198
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90195
90199
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
90196
90200
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
90197
90201
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -90232,6 +90236,7 @@ export namespace Prisma {
|
|
|
90232
90236
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
90233
90237
|
uploaded_job_description_path?: string | null
|
|
90234
90238
|
source_document_id?: string | null
|
|
90239
|
+
rendered_jd_document_id?: string | null
|
|
90235
90240
|
is_plan_published?: boolean
|
|
90236
90241
|
is_posted?: boolean
|
|
90237
90242
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -90274,6 +90279,7 @@ export namespace Prisma {
|
|
|
90274
90279
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
90275
90280
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90276
90281
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90282
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90277
90283
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
90278
90284
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
90279
90285
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -93683,7 +93689,6 @@ export namespace Prisma {
|
|
|
93683
93689
|
expected_ctc?: SortOrder
|
|
93684
93690
|
notice_period?: SortOrder
|
|
93685
93691
|
preferred_location?: SortOrder
|
|
93686
|
-
evaluationComment?: SortOrder
|
|
93687
93692
|
fit_check_status?: SortOrder
|
|
93688
93693
|
status?: SortOrder
|
|
93689
93694
|
created_at?: SortOrder
|
|
@@ -93717,7 +93722,6 @@ export namespace Prisma {
|
|
|
93717
93722
|
expected_ctc?: SortOrder
|
|
93718
93723
|
notice_period?: SortOrder
|
|
93719
93724
|
preferred_location?: SortOrder
|
|
93720
|
-
evaluationComment?: SortOrder
|
|
93721
93725
|
fit_check_status?: SortOrder
|
|
93722
93726
|
status?: SortOrder
|
|
93723
93727
|
created_at?: SortOrder
|
|
@@ -93745,7 +93749,6 @@ export namespace Prisma {
|
|
|
93745
93749
|
expected_ctc?: SortOrder
|
|
93746
93750
|
notice_period?: SortOrder
|
|
93747
93751
|
preferred_location?: SortOrder
|
|
93748
|
-
evaluationComment?: SortOrder
|
|
93749
93752
|
fit_check_status?: SortOrder
|
|
93750
93753
|
status?: SortOrder
|
|
93751
93754
|
created_at?: SortOrder
|
|
@@ -95048,13 +95051,6 @@ export namespace Prisma {
|
|
|
95048
95051
|
not?: NestedEnumEvaluationPlanTypeFilter<$PrismaModel> | $Enums.EvaluationPlanType
|
|
95049
95052
|
}
|
|
95050
95053
|
|
|
95051
|
-
export type EnumEvaluationPlanShareScopeFilter<$PrismaModel = never> = {
|
|
95052
|
-
equals?: $Enums.EvaluationPlanShareScope | EnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel>
|
|
95053
|
-
in?: $Enums.EvaluationPlanShareScope[] | ListEnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel>
|
|
95054
|
-
notIn?: $Enums.EvaluationPlanShareScope[] | ListEnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel>
|
|
95055
|
-
not?: NestedEnumEvaluationPlanShareScopeFilter<$PrismaModel> | $Enums.EvaluationPlanShareScope
|
|
95056
|
-
}
|
|
95057
|
-
|
|
95058
95054
|
export type EnumDurationUnitNullableFilter<$PrismaModel = never> = {
|
|
95059
95055
|
equals?: $Enums.DurationUnit | EnumDurationUnitFieldRefInput<$PrismaModel> | null
|
|
95060
95056
|
in?: $Enums.DurationUnit[] | ListEnumDurationUnitFieldRefInput<$PrismaModel> | null
|
|
@@ -95099,7 +95095,6 @@ export namespace Prisma {
|
|
|
95099
95095
|
order_no?: SortOrder
|
|
95100
95096
|
details?: SortOrder
|
|
95101
95097
|
plan_type?: SortOrder
|
|
95102
|
-
share_scope?: SortOrder
|
|
95103
95098
|
duration?: SortOrder
|
|
95104
95099
|
duration_unit?: SortOrder
|
|
95105
95100
|
deadline?: SortOrder
|
|
@@ -95132,7 +95127,6 @@ export namespace Prisma {
|
|
|
95132
95127
|
timeline?: SortOrder
|
|
95133
95128
|
order_no?: SortOrder
|
|
95134
95129
|
plan_type?: SortOrder
|
|
95135
|
-
share_scope?: SortOrder
|
|
95136
95130
|
duration?: SortOrder
|
|
95137
95131
|
duration_unit?: SortOrder
|
|
95138
95132
|
deadline?: SortOrder
|
|
@@ -95158,7 +95152,6 @@ export namespace Prisma {
|
|
|
95158
95152
|
timeline?: SortOrder
|
|
95159
95153
|
order_no?: SortOrder
|
|
95160
95154
|
plan_type?: SortOrder
|
|
95161
|
-
share_scope?: SortOrder
|
|
95162
95155
|
duration?: SortOrder
|
|
95163
95156
|
duration_unit?: SortOrder
|
|
95164
95157
|
deadline?: SortOrder
|
|
@@ -95216,16 +95209,6 @@ export namespace Prisma {
|
|
|
95216
95209
|
_max?: NestedEnumEvaluationPlanTypeFilter<$PrismaModel>
|
|
95217
95210
|
}
|
|
95218
95211
|
|
|
95219
|
-
export type EnumEvaluationPlanShareScopeWithAggregatesFilter<$PrismaModel = never> = {
|
|
95220
|
-
equals?: $Enums.EvaluationPlanShareScope | EnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel>
|
|
95221
|
-
in?: $Enums.EvaluationPlanShareScope[] | ListEnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel>
|
|
95222
|
-
notIn?: $Enums.EvaluationPlanShareScope[] | ListEnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel>
|
|
95223
|
-
not?: NestedEnumEvaluationPlanShareScopeWithAggregatesFilter<$PrismaModel> | $Enums.EvaluationPlanShareScope
|
|
95224
|
-
_count?: NestedIntFilter<$PrismaModel>
|
|
95225
|
-
_min?: NestedEnumEvaluationPlanShareScopeFilter<$PrismaModel>
|
|
95226
|
-
_max?: NestedEnumEvaluationPlanShareScopeFilter<$PrismaModel>
|
|
95227
|
-
}
|
|
95228
|
-
|
|
95229
95212
|
export type EnumDurationUnitNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
95230
95213
|
equals?: $Enums.DurationUnit | EnumDurationUnitFieldRefInput<$PrismaModel> | null
|
|
95231
95214
|
in?: $Enums.DurationUnit[] | ListEnumDurationUnitFieldRefInput<$PrismaModel> | null
|
|
@@ -96346,6 +96329,7 @@ export namespace Prisma {
|
|
|
96346
96329
|
recommendedQuestions?: SortOrder
|
|
96347
96330
|
uploaded_job_description_path?: SortOrder
|
|
96348
96331
|
source_document_id?: SortOrder
|
|
96332
|
+
rendered_jd_document_id?: SortOrder
|
|
96349
96333
|
is_plan_published?: SortOrder
|
|
96350
96334
|
is_posted?: SortOrder
|
|
96351
96335
|
summary?: SortOrder
|
|
@@ -96371,6 +96355,7 @@ export namespace Prisma {
|
|
|
96371
96355
|
status?: SortOrder
|
|
96372
96356
|
uploaded_job_description_path?: SortOrder
|
|
96373
96357
|
source_document_id?: SortOrder
|
|
96358
|
+
rendered_jd_document_id?: SortOrder
|
|
96374
96359
|
is_plan_published?: SortOrder
|
|
96375
96360
|
is_posted?: SortOrder
|
|
96376
96361
|
created_at?: SortOrder
|
|
@@ -96389,6 +96374,7 @@ export namespace Prisma {
|
|
|
96389
96374
|
status?: SortOrder
|
|
96390
96375
|
uploaded_job_description_path?: SortOrder
|
|
96391
96376
|
source_document_id?: SortOrder
|
|
96377
|
+
rendered_jd_document_id?: SortOrder
|
|
96392
96378
|
is_plan_published?: SortOrder
|
|
96393
96379
|
is_posted?: SortOrder
|
|
96394
96380
|
created_at?: SortOrder
|
|
@@ -99609,6 +99595,12 @@ export namespace Prisma {
|
|
|
99609
99595
|
connect?: JobDescriptionWhereUniqueInput
|
|
99610
99596
|
}
|
|
99611
99597
|
|
|
99598
|
+
export type JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput = {
|
|
99599
|
+
create?: XOR<JobDescriptionCreateWithoutRendered_jd_documentInput, JobDescriptionUncheckedCreateWithoutRendered_jd_documentInput>
|
|
99600
|
+
connectOrCreate?: JobDescriptionCreateOrConnectWithoutRendered_jd_documentInput
|
|
99601
|
+
connect?: JobDescriptionWhereUniqueInput
|
|
99602
|
+
}
|
|
99603
|
+
|
|
99612
99604
|
export type InterviewCreateNestedOneWithoutRecording_documentInput = {
|
|
99613
99605
|
create?: XOR<InterviewCreateWithoutRecording_documentInput, InterviewUncheckedCreateWithoutRecording_documentInput>
|
|
99614
99606
|
connectOrCreate?: InterviewCreateOrConnectWithoutRecording_documentInput
|
|
@@ -99646,6 +99638,12 @@ export namespace Prisma {
|
|
|
99646
99638
|
connect?: JobDescriptionWhereUniqueInput
|
|
99647
99639
|
}
|
|
99648
99640
|
|
|
99641
|
+
export type JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput = {
|
|
99642
|
+
create?: XOR<JobDescriptionCreateWithoutRendered_jd_documentInput, JobDescriptionUncheckedCreateWithoutRendered_jd_documentInput>
|
|
99643
|
+
connectOrCreate?: JobDescriptionCreateOrConnectWithoutRendered_jd_documentInput
|
|
99644
|
+
connect?: JobDescriptionWhereUniqueInput
|
|
99645
|
+
}
|
|
99646
|
+
|
|
99649
99647
|
export type InterviewUncheckedCreateNestedOneWithoutRecording_documentInput = {
|
|
99650
99648
|
create?: XOR<InterviewCreateWithoutRecording_documentInput, InterviewUncheckedCreateWithoutRecording_documentInput>
|
|
99651
99649
|
connectOrCreate?: InterviewCreateOrConnectWithoutRecording_documentInput
|
|
@@ -99719,6 +99717,16 @@ export namespace Prisma {
|
|
|
99719
99717
|
update?: XOR<XOR<JobDescriptionUpdateToOneWithWhereWithoutSource_documentInput, JobDescriptionUpdateWithoutSource_documentInput>, JobDescriptionUncheckedUpdateWithoutSource_documentInput>
|
|
99720
99718
|
}
|
|
99721
99719
|
|
|
99720
|
+
export type JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput = {
|
|
99721
|
+
create?: XOR<JobDescriptionCreateWithoutRendered_jd_documentInput, JobDescriptionUncheckedCreateWithoutRendered_jd_documentInput>
|
|
99722
|
+
connectOrCreate?: JobDescriptionCreateOrConnectWithoutRendered_jd_documentInput
|
|
99723
|
+
upsert?: JobDescriptionUpsertWithoutRendered_jd_documentInput
|
|
99724
|
+
disconnect?: JobDescriptionWhereInput | boolean
|
|
99725
|
+
delete?: JobDescriptionWhereInput | boolean
|
|
99726
|
+
connect?: JobDescriptionWhereUniqueInput
|
|
99727
|
+
update?: XOR<XOR<JobDescriptionUpdateToOneWithWhereWithoutRendered_jd_documentInput, JobDescriptionUpdateWithoutRendered_jd_documentInput>, JobDescriptionUncheckedUpdateWithoutRendered_jd_documentInput>
|
|
99728
|
+
}
|
|
99729
|
+
|
|
99722
99730
|
export type InterviewUpdateOneWithoutRecording_documentNestedInput = {
|
|
99723
99731
|
create?: XOR<InterviewCreateWithoutRecording_documentInput, InterviewUncheckedCreateWithoutRecording_documentInput>
|
|
99724
99732
|
connectOrCreate?: InterviewCreateOrConnectWithoutRecording_documentInput
|
|
@@ -99783,6 +99791,16 @@ export namespace Prisma {
|
|
|
99783
99791
|
update?: XOR<XOR<JobDescriptionUpdateToOneWithWhereWithoutSource_documentInput, JobDescriptionUpdateWithoutSource_documentInput>, JobDescriptionUncheckedUpdateWithoutSource_documentInput>
|
|
99784
99792
|
}
|
|
99785
99793
|
|
|
99794
|
+
export type JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput = {
|
|
99795
|
+
create?: XOR<JobDescriptionCreateWithoutRendered_jd_documentInput, JobDescriptionUncheckedCreateWithoutRendered_jd_documentInput>
|
|
99796
|
+
connectOrCreate?: JobDescriptionCreateOrConnectWithoutRendered_jd_documentInput
|
|
99797
|
+
upsert?: JobDescriptionUpsertWithoutRendered_jd_documentInput
|
|
99798
|
+
disconnect?: JobDescriptionWhereInput | boolean
|
|
99799
|
+
delete?: JobDescriptionWhereInput | boolean
|
|
99800
|
+
connect?: JobDescriptionWhereUniqueInput
|
|
99801
|
+
update?: XOR<XOR<JobDescriptionUpdateToOneWithWhereWithoutRendered_jd_documentInput, JobDescriptionUpdateWithoutRendered_jd_documentInput>, JobDescriptionUncheckedUpdateWithoutRendered_jd_documentInput>
|
|
99802
|
+
}
|
|
99803
|
+
|
|
99786
99804
|
export type InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput = {
|
|
99787
99805
|
create?: XOR<InterviewCreateWithoutRecording_documentInput, InterviewUncheckedCreateWithoutRecording_documentInput>
|
|
99788
99806
|
connectOrCreate?: InterviewCreateOrConnectWithoutRecording_documentInput
|
|
@@ -99926,10 +99944,6 @@ export namespace Prisma {
|
|
|
99926
99944
|
set?: $Enums.EvaluationPlanType
|
|
99927
99945
|
}
|
|
99928
99946
|
|
|
99929
|
-
export type EnumEvaluationPlanShareScopeFieldUpdateOperationsInput = {
|
|
99930
|
-
set?: $Enums.EvaluationPlanShareScope
|
|
99931
|
-
}
|
|
99932
|
-
|
|
99933
99947
|
export type NullableEnumDurationUnitFieldUpdateOperationsInput = {
|
|
99934
99948
|
set?: $Enums.DurationUnit | null
|
|
99935
99949
|
}
|
|
@@ -101034,6 +101048,12 @@ export namespace Prisma {
|
|
|
101034
101048
|
set: InputJsonValue[]
|
|
101035
101049
|
}
|
|
101036
101050
|
|
|
101051
|
+
export type DocumentCreateNestedOneWithoutJob_description_renderedInput = {
|
|
101052
|
+
create?: XOR<DocumentCreateWithoutJob_description_renderedInput, DocumentUncheckedCreateWithoutJob_description_renderedInput>
|
|
101053
|
+
connectOrCreate?: DocumentCreateOrConnectWithoutJob_description_renderedInput
|
|
101054
|
+
connect?: DocumentWhereUniqueInput
|
|
101055
|
+
}
|
|
101056
|
+
|
|
101037
101057
|
export type JobProfileCreateNestedOneWithoutJob_descriptionsInput = {
|
|
101038
101058
|
create?: XOR<JobProfileCreateWithoutJob_descriptionsInput, JobProfileUncheckedCreateWithoutJob_descriptionsInput>
|
|
101039
101059
|
connectOrCreate?: JobProfileCreateOrConnectWithoutJob_descriptionsInput
|
|
@@ -101304,6 +101324,16 @@ export namespace Prisma {
|
|
|
101304
101324
|
push?: InputJsonValue | InputJsonValue[]
|
|
101305
101325
|
}
|
|
101306
101326
|
|
|
101327
|
+
export type DocumentUpdateOneWithoutJob_description_renderedNestedInput = {
|
|
101328
|
+
create?: XOR<DocumentCreateWithoutJob_description_renderedInput, DocumentUncheckedCreateWithoutJob_description_renderedInput>
|
|
101329
|
+
connectOrCreate?: DocumentCreateOrConnectWithoutJob_description_renderedInput
|
|
101330
|
+
upsert?: DocumentUpsertWithoutJob_description_renderedInput
|
|
101331
|
+
disconnect?: DocumentWhereInput | boolean
|
|
101332
|
+
delete?: DocumentWhereInput | boolean
|
|
101333
|
+
connect?: DocumentWhereUniqueInput
|
|
101334
|
+
update?: XOR<XOR<DocumentUpdateToOneWithWhereWithoutJob_description_renderedInput, DocumentUpdateWithoutJob_description_renderedInput>, DocumentUncheckedUpdateWithoutJob_description_renderedInput>
|
|
101335
|
+
}
|
|
101336
|
+
|
|
101307
101337
|
export type JobProfileUpdateOneWithoutJob_descriptionsNestedInput = {
|
|
101308
101338
|
create?: XOR<JobProfileCreateWithoutJob_descriptionsInput, JobProfileUncheckedCreateWithoutJob_descriptionsInput>
|
|
101309
101339
|
connectOrCreate?: JobProfileCreateOrConnectWithoutJob_descriptionsInput
|
|
@@ -105926,13 +105956,6 @@ export namespace Prisma {
|
|
|
105926
105956
|
not?: NestedEnumEvaluationPlanTypeFilter<$PrismaModel> | $Enums.EvaluationPlanType
|
|
105927
105957
|
}
|
|
105928
105958
|
|
|
105929
|
-
export type NestedEnumEvaluationPlanShareScopeFilter<$PrismaModel = never> = {
|
|
105930
|
-
equals?: $Enums.EvaluationPlanShareScope | EnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel>
|
|
105931
|
-
in?: $Enums.EvaluationPlanShareScope[] | ListEnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel>
|
|
105932
|
-
notIn?: $Enums.EvaluationPlanShareScope[] | ListEnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel>
|
|
105933
|
-
not?: NestedEnumEvaluationPlanShareScopeFilter<$PrismaModel> | $Enums.EvaluationPlanShareScope
|
|
105934
|
-
}
|
|
105935
|
-
|
|
105936
105959
|
export type NestedEnumDurationUnitNullableFilter<$PrismaModel = never> = {
|
|
105937
105960
|
equals?: $Enums.DurationUnit | EnumDurationUnitFieldRefInput<$PrismaModel> | null
|
|
105938
105961
|
in?: $Enums.DurationUnit[] | ListEnumDurationUnitFieldRefInput<$PrismaModel> | null
|
|
@@ -105980,16 +106003,6 @@ export namespace Prisma {
|
|
|
105980
106003
|
_max?: NestedEnumEvaluationPlanTypeFilter<$PrismaModel>
|
|
105981
106004
|
}
|
|
105982
106005
|
|
|
105983
|
-
export type NestedEnumEvaluationPlanShareScopeWithAggregatesFilter<$PrismaModel = never> = {
|
|
105984
|
-
equals?: $Enums.EvaluationPlanShareScope | EnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel>
|
|
105985
|
-
in?: $Enums.EvaluationPlanShareScope[] | ListEnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel>
|
|
105986
|
-
notIn?: $Enums.EvaluationPlanShareScope[] | ListEnumEvaluationPlanShareScopeFieldRefInput<$PrismaModel>
|
|
105987
|
-
not?: NestedEnumEvaluationPlanShareScopeWithAggregatesFilter<$PrismaModel> | $Enums.EvaluationPlanShareScope
|
|
105988
|
-
_count?: NestedIntFilter<$PrismaModel>
|
|
105989
|
-
_min?: NestedEnumEvaluationPlanShareScopeFilter<$PrismaModel>
|
|
105990
|
-
_max?: NestedEnumEvaluationPlanShareScopeFilter<$PrismaModel>
|
|
105991
|
-
}
|
|
105992
|
-
|
|
105993
106006
|
export type NestedEnumDurationUnitNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
105994
106007
|
equals?: $Enums.DurationUnit | EnumDurationUnitFieldRefInput<$PrismaModel> | null
|
|
105995
106008
|
in?: $Enums.DurationUnit[] | ListEnumDurationUnitFieldRefInput<$PrismaModel> | null
|
|
@@ -108072,7 +108085,6 @@ export namespace Prisma {
|
|
|
108072
108085
|
expected_ctc?: string | null
|
|
108073
108086
|
notice_period?: number | null
|
|
108074
108087
|
preferred_location?: string | null
|
|
108075
|
-
evaluationComment?: string | null
|
|
108076
108088
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
108077
108089
|
status?: $Enums.ApplicationStatus
|
|
108078
108090
|
created_at?: Date | string
|
|
@@ -108113,7 +108125,6 @@ export namespace Prisma {
|
|
|
108113
108125
|
expected_ctc?: string | null
|
|
108114
108126
|
notice_period?: number | null
|
|
108115
108127
|
preferred_location?: string | null
|
|
108116
|
-
evaluationComment?: string | null
|
|
108117
108128
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
108118
108129
|
status?: $Enums.ApplicationStatus
|
|
108119
108130
|
created_at?: Date | string
|
|
@@ -108313,7 +108324,6 @@ export namespace Prisma {
|
|
|
108313
108324
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108314
108325
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
108315
108326
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108316
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108317
108327
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
108318
108328
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
108319
108329
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -108354,7 +108364,6 @@ export namespace Prisma {
|
|
|
108354
108364
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108355
108365
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
108356
108366
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108357
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108358
108367
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
108359
108368
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
108360
108369
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -108385,7 +108394,6 @@ export namespace Prisma {
|
|
|
108385
108394
|
order_no?: number | null
|
|
108386
108395
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
108387
108396
|
plan_type?: $Enums.EvaluationPlanType
|
|
108388
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
108389
108397
|
duration?: number | null
|
|
108390
108398
|
duration_unit?: $Enums.DurationUnit | null
|
|
108391
108399
|
deadline?: number | null
|
|
@@ -108419,7 +108427,6 @@ export namespace Prisma {
|
|
|
108419
108427
|
order_no?: number | null
|
|
108420
108428
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
108421
108429
|
plan_type?: $Enums.EvaluationPlanType
|
|
108422
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
108423
108430
|
duration?: number | null
|
|
108424
108431
|
duration_unit?: $Enums.DurationUnit | null
|
|
108425
108432
|
deadline?: number | null
|
|
@@ -108750,6 +108757,7 @@ export namespace Prisma {
|
|
|
108750
108757
|
updated_by: string
|
|
108751
108758
|
is_active?: boolean
|
|
108752
108759
|
openings?: number
|
|
108760
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
108753
108761
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
108754
108762
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
108755
108763
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -108781,6 +108789,7 @@ export namespace Prisma {
|
|
|
108781
108789
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
108782
108790
|
uploaded_job_description_path?: string | null
|
|
108783
108791
|
source_document_id?: string | null
|
|
108792
|
+
rendered_jd_document_id?: string | null
|
|
108784
108793
|
is_plan_published?: boolean
|
|
108785
108794
|
is_posted?: boolean
|
|
108786
108795
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -109408,7 +109417,6 @@ export namespace Prisma {
|
|
|
109408
109417
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109409
109418
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
109410
109419
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
109411
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
109412
109420
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109413
109421
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
109414
109422
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -109442,7 +109450,6 @@ export namespace Prisma {
|
|
|
109442
109450
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109443
109451
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
109444
109452
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
109445
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
109446
109453
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109447
109454
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
109448
109455
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -109797,6 +109804,7 @@ export namespace Prisma {
|
|
|
109797
109804
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
109798
109805
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
109799
109806
|
openings?: IntFieldUpdateOperationsInput | number
|
|
109807
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
109800
109808
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
109801
109809
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
109802
109810
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -109828,6 +109836,7 @@ export namespace Prisma {
|
|
|
109828
109836
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
109829
109837
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109830
109838
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109839
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109831
109840
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
109832
109841
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
109833
109842
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -110312,6 +110321,7 @@ export namespace Prisma {
|
|
|
110312
110321
|
updated_by: string
|
|
110313
110322
|
is_active?: boolean
|
|
110314
110323
|
openings?: number
|
|
110324
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
110315
110325
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
110316
110326
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
110317
110327
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -110343,6 +110353,7 @@ export namespace Prisma {
|
|
|
110343
110353
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
110344
110354
|
uploaded_job_description_path?: string | null
|
|
110345
110355
|
source_document_id?: string | null
|
|
110356
|
+
rendered_jd_document_id?: string | null
|
|
110346
110357
|
is_plan_published?: boolean
|
|
110347
110358
|
is_posted?: boolean
|
|
110348
110359
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -110650,6 +110661,7 @@ export namespace Prisma {
|
|
|
110650
110661
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
110651
110662
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
110652
110663
|
openings?: IntFieldUpdateOperationsInput | number
|
|
110664
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
110653
110665
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
110654
110666
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
110655
110667
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -110681,6 +110693,7 @@ export namespace Prisma {
|
|
|
110681
110693
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
110682
110694
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110683
110695
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110696
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110684
110697
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
110685
110698
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
110686
110699
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -112649,7 +112662,6 @@ export namespace Prisma {
|
|
|
112649
112662
|
order_no?: number | null
|
|
112650
112663
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
112651
112664
|
plan_type?: $Enums.EvaluationPlanType
|
|
112652
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
112653
112665
|
duration?: number | null
|
|
112654
112666
|
duration_unit?: $Enums.DurationUnit | null
|
|
112655
112667
|
deadline?: number | null
|
|
@@ -112682,7 +112694,6 @@ export namespace Prisma {
|
|
|
112682
112694
|
order_no?: number | null
|
|
112683
112695
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
112684
112696
|
plan_type?: $Enums.EvaluationPlanType
|
|
112685
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
112686
112697
|
duration?: number | null
|
|
112687
112698
|
duration_unit?: $Enums.DurationUnit | null
|
|
112688
112699
|
deadline?: number | null
|
|
@@ -112921,7 +112932,6 @@ export namespace Prisma {
|
|
|
112921
112932
|
order_no?: IntNullableFilter<"EvaluationPlan"> | number | null
|
|
112922
112933
|
details?: JsonNullableFilter<"EvaluationPlan">
|
|
112923
112934
|
plan_type?: EnumEvaluationPlanTypeFilter<"EvaluationPlan"> | $Enums.EvaluationPlanType
|
|
112924
|
-
share_scope?: EnumEvaluationPlanShareScopeFilter<"EvaluationPlan"> | $Enums.EvaluationPlanShareScope
|
|
112925
112935
|
duration?: IntNullableFilter<"EvaluationPlan"> | number | null
|
|
112926
112936
|
duration_unit?: EnumDurationUnitNullableFilter<"EvaluationPlan"> | $Enums.DurationUnit | null
|
|
112927
112937
|
deadline?: IntNullableFilter<"EvaluationPlan"> | number | null
|
|
@@ -113575,6 +113585,7 @@ export namespace Prisma {
|
|
|
113575
113585
|
updated_by: string
|
|
113576
113586
|
is_active?: boolean
|
|
113577
113587
|
openings?: number
|
|
113588
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
113578
113589
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
113579
113590
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
113580
113591
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -113606,6 +113617,7 @@ export namespace Prisma {
|
|
|
113606
113617
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
113607
113618
|
uploaded_job_description_path?: string | null
|
|
113608
113619
|
source_document_id?: string | null
|
|
113620
|
+
rendered_jd_document_id?: string | null
|
|
113609
113621
|
is_plan_published?: boolean
|
|
113610
113622
|
is_posted?: boolean
|
|
113611
113623
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -113653,7 +113665,6 @@ export namespace Prisma {
|
|
|
113653
113665
|
expected_ctc?: string | null
|
|
113654
113666
|
notice_period?: number | null
|
|
113655
113667
|
preferred_location?: string | null
|
|
113656
|
-
evaluationComment?: string | null
|
|
113657
113668
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
113658
113669
|
status?: $Enums.ApplicationStatus
|
|
113659
113670
|
created_at?: Date | string
|
|
@@ -113694,7 +113705,6 @@ export namespace Prisma {
|
|
|
113694
113705
|
expected_ctc?: string | null
|
|
113695
113706
|
notice_period?: number | null
|
|
113696
113707
|
preferred_location?: string | null
|
|
113697
|
-
evaluationComment?: string | null
|
|
113698
113708
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
113699
113709
|
status?: $Enums.ApplicationStatus
|
|
113700
113710
|
created_at?: Date | string
|
|
@@ -113815,6 +113825,7 @@ export namespace Prisma {
|
|
|
113815
113825
|
candidate?: UserCreateNestedOneWithoutDocumentsInput
|
|
113816
113826
|
resume?: ResumeCreateNestedOneWithoutDocumentInput
|
|
113817
113827
|
job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
|
|
113828
|
+
job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
|
|
113818
113829
|
interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
|
|
113819
113830
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
|
|
113820
113831
|
assignment_zip?: AssignmentCreateNestedOneWithoutZip_documentInput
|
|
@@ -113840,6 +113851,7 @@ export namespace Prisma {
|
|
|
113840
113851
|
is_active?: boolean
|
|
113841
113852
|
resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
|
|
113842
113853
|
job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
|
|
113854
|
+
job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
|
|
113843
113855
|
interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
|
|
113844
113856
|
job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
|
|
113845
113857
|
assignment_zip?: AssignmentUncheckedCreateNestedOneWithoutZip_documentInput
|
|
@@ -113870,6 +113882,7 @@ export namespace Prisma {
|
|
|
113870
113882
|
candidate?: UserCreateNestedOneWithoutDocumentsInput
|
|
113871
113883
|
resume?: ResumeCreateNestedOneWithoutDocumentInput
|
|
113872
113884
|
job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
|
|
113885
|
+
job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
|
|
113873
113886
|
interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
|
|
113874
113887
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
|
|
113875
113888
|
assignment_solution?: AssignmentCreateNestedOneWithoutSolution_documentInput
|
|
@@ -113895,6 +113908,7 @@ export namespace Prisma {
|
|
|
113895
113908
|
is_active?: boolean
|
|
113896
113909
|
resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
|
|
113897
113910
|
job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
|
|
113911
|
+
job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
|
|
113898
113912
|
interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
|
|
113899
113913
|
job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
|
|
113900
113914
|
assignment_solution?: AssignmentUncheckedCreateNestedOneWithoutSolution_documentInput
|
|
@@ -114383,6 +114397,7 @@ export namespace Prisma {
|
|
|
114383
114397
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
114384
114398
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
114385
114399
|
openings?: IntFieldUpdateOperationsInput | number
|
|
114400
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
114386
114401
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
114387
114402
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
114388
114403
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -114414,6 +114429,7 @@ export namespace Prisma {
|
|
|
114414
114429
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
114415
114430
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114416
114431
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114432
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114417
114433
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
114418
114434
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
114419
114435
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -114467,7 +114483,6 @@ export namespace Prisma {
|
|
|
114467
114483
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114468
114484
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
114469
114485
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114470
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114471
114486
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
114472
114487
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
114473
114488
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -114508,7 +114523,6 @@ export namespace Prisma {
|
|
|
114508
114523
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114509
114524
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
114510
114525
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114511
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114512
114526
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
114513
114527
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
114514
114528
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -114641,6 +114655,7 @@ export namespace Prisma {
|
|
|
114641
114655
|
candidate?: UserUpdateOneWithoutDocumentsNestedInput
|
|
114642
114656
|
resume?: ResumeUpdateOneWithoutDocumentNestedInput
|
|
114643
114657
|
job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
|
|
114658
|
+
job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
|
|
114644
114659
|
interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
|
|
114645
114660
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
|
|
114646
114661
|
assignment_zip?: AssignmentUpdateOneWithoutZip_documentNestedInput
|
|
@@ -114666,6 +114681,7 @@ export namespace Prisma {
|
|
|
114666
114681
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
114667
114682
|
resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
|
|
114668
114683
|
job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
|
|
114684
|
+
job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
|
|
114669
114685
|
interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
|
|
114670
114686
|
job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
|
|
114671
114687
|
assignment_zip?: AssignmentUncheckedUpdateOneWithoutZip_documentNestedInput
|
|
@@ -114702,6 +114718,7 @@ export namespace Prisma {
|
|
|
114702
114718
|
candidate?: UserUpdateOneWithoutDocumentsNestedInput
|
|
114703
114719
|
resume?: ResumeUpdateOneWithoutDocumentNestedInput
|
|
114704
114720
|
job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
|
|
114721
|
+
job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
|
|
114705
114722
|
interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
|
|
114706
114723
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
|
|
114707
114724
|
assignment_solution?: AssignmentUpdateOneWithoutSolution_documentNestedInput
|
|
@@ -114727,6 +114744,7 @@ export namespace Prisma {
|
|
|
114727
114744
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
114728
114745
|
resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
|
|
114729
114746
|
job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
|
|
114747
|
+
job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
|
|
114730
114748
|
interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
|
|
114731
114749
|
job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
|
|
114732
114750
|
assignment_solution?: AssignmentUncheckedUpdateOneWithoutSolution_documentNestedInput
|
|
@@ -114844,6 +114862,7 @@ export namespace Prisma {
|
|
|
114844
114862
|
updated_by: string
|
|
114845
114863
|
is_active?: boolean
|
|
114846
114864
|
openings?: number
|
|
114865
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
114847
114866
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
114848
114867
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
114849
114868
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -114875,6 +114894,7 @@ export namespace Prisma {
|
|
|
114875
114894
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
114876
114895
|
uploaded_job_description_path?: string | null
|
|
114877
114896
|
source_document_id?: string | null
|
|
114897
|
+
rendered_jd_document_id?: string | null
|
|
114878
114898
|
is_plan_published?: boolean
|
|
114879
114899
|
is_posted?: boolean
|
|
114880
114900
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -114924,7 +114944,6 @@ export namespace Prisma {
|
|
|
114924
114944
|
order_no?: number | null
|
|
114925
114945
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
114926
114946
|
plan_type?: $Enums.EvaluationPlanType
|
|
114927
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
114928
114947
|
duration?: number | null
|
|
114929
114948
|
duration_unit?: $Enums.DurationUnit | null
|
|
114930
114949
|
deadline?: number | null
|
|
@@ -114957,7 +114976,6 @@ export namespace Prisma {
|
|
|
114957
114976
|
order_no?: number | null
|
|
114958
114977
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
114959
114978
|
plan_type?: $Enums.EvaluationPlanType
|
|
114960
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
114961
114979
|
duration?: number | null
|
|
114962
114980
|
duration_unit?: $Enums.DurationUnit | null
|
|
114963
114981
|
deadline?: number | null
|
|
@@ -115171,6 +115189,7 @@ export namespace Prisma {
|
|
|
115171
115189
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
115172
115190
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
115173
115191
|
openings?: IntFieldUpdateOperationsInput | number
|
|
115192
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
115174
115193
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
115175
115194
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
115176
115195
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -115202,6 +115221,7 @@ export namespace Prisma {
|
|
|
115202
115221
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
115203
115222
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115204
115223
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115224
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115205
115225
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
115206
115226
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
115207
115227
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -115585,6 +115605,7 @@ export namespace Prisma {
|
|
|
115585
115605
|
updated_by: string
|
|
115586
115606
|
is_active?: boolean
|
|
115587
115607
|
openings?: number
|
|
115608
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
115588
115609
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
115589
115610
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
115590
115611
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -115616,6 +115637,7 @@ export namespace Prisma {
|
|
|
115616
115637
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
115617
115638
|
uploaded_job_description_path?: string | null
|
|
115618
115639
|
source_document_id?: string | null
|
|
115640
|
+
rendered_jd_document_id?: string | null
|
|
115619
115641
|
is_plan_published?: boolean
|
|
115620
115642
|
is_posted?: boolean
|
|
115621
115643
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -115679,6 +115701,7 @@ export namespace Prisma {
|
|
|
115679
115701
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
115680
115702
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
115681
115703
|
openings?: IntFieldUpdateOperationsInput | number
|
|
115704
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
115682
115705
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
115683
115706
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
115684
115707
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -115710,6 +115733,7 @@ export namespace Prisma {
|
|
|
115710
115733
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
115711
115734
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115712
115735
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115736
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115713
115737
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
115714
115738
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
115715
115739
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -116944,7 +116968,6 @@ export namespace Prisma {
|
|
|
116944
116968
|
expected_ctc?: string | null
|
|
116945
116969
|
notice_period?: number | null
|
|
116946
116970
|
preferred_location?: string | null
|
|
116947
|
-
evaluationComment?: string | null
|
|
116948
116971
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
116949
116972
|
status?: $Enums.ApplicationStatus
|
|
116950
116973
|
created_at?: Date | string
|
|
@@ -116985,7 +117008,6 @@ export namespace Prisma {
|
|
|
116985
117008
|
expected_ctc?: string | null
|
|
116986
117009
|
notice_period?: number | null
|
|
116987
117010
|
preferred_location?: string | null
|
|
116988
|
-
evaluationComment?: string | null
|
|
116989
117011
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
116990
117012
|
status?: $Enums.ApplicationStatus
|
|
116991
117013
|
created_at?: Date | string
|
|
@@ -117024,6 +117046,7 @@ export namespace Prisma {
|
|
|
117024
117046
|
updated_by: string
|
|
117025
117047
|
is_active?: boolean
|
|
117026
117048
|
openings?: number
|
|
117049
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
117027
117050
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
117028
117051
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
117029
117052
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -117055,6 +117078,7 @@ export namespace Prisma {
|
|
|
117055
117078
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
117056
117079
|
uploaded_job_description_path?: string | null
|
|
117057
117080
|
source_document_id?: string | null
|
|
117081
|
+
rendered_jd_document_id?: string | null
|
|
117058
117082
|
is_plan_published?: boolean
|
|
117059
117083
|
is_posted?: boolean
|
|
117060
117084
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -117319,7 +117343,6 @@ export namespace Prisma {
|
|
|
117319
117343
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117320
117344
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
117321
117345
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117322
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117323
117346
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
117324
117347
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
117325
117348
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -117360,7 +117383,6 @@ export namespace Prisma {
|
|
|
117360
117383
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117361
117384
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
117362
117385
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117363
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117364
117386
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
117365
117387
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
117366
117388
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -117405,6 +117427,7 @@ export namespace Prisma {
|
|
|
117405
117427
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
117406
117428
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
117407
117429
|
openings?: IntFieldUpdateOperationsInput | number
|
|
117430
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
117408
117431
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
117409
117432
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
117410
117433
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -117436,6 +117459,7 @@ export namespace Prisma {
|
|
|
117436
117459
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
117437
117460
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117438
117461
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117462
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
117439
117463
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
117440
117464
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
117441
117465
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -117675,7 +117699,6 @@ export namespace Prisma {
|
|
|
117675
117699
|
expected_ctc?: string | null
|
|
117676
117700
|
notice_period?: number | null
|
|
117677
117701
|
preferred_location?: string | null
|
|
117678
|
-
evaluationComment?: string | null
|
|
117679
117702
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
117680
117703
|
status?: $Enums.ApplicationStatus
|
|
117681
117704
|
created_at?: Date | string
|
|
@@ -117716,7 +117739,6 @@ export namespace Prisma {
|
|
|
117716
117739
|
expected_ctc?: string | null
|
|
117717
117740
|
notice_period?: number | null
|
|
117718
117741
|
preferred_location?: string | null
|
|
117719
|
-
evaluationComment?: string | null
|
|
117720
117742
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
117721
117743
|
status?: $Enums.ApplicationStatus
|
|
117722
117744
|
created_at?: Date | string
|
|
@@ -117755,6 +117777,7 @@ export namespace Prisma {
|
|
|
117755
117777
|
updated_by: string
|
|
117756
117778
|
is_active?: boolean
|
|
117757
117779
|
openings?: number
|
|
117780
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
117758
117781
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
117759
117782
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
117760
117783
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -117786,6 +117809,7 @@ export namespace Prisma {
|
|
|
117786
117809
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
117787
117810
|
uploaded_job_description_path?: string | null
|
|
117788
117811
|
source_document_id?: string | null
|
|
117812
|
+
rendered_jd_document_id?: string | null
|
|
117789
117813
|
is_plan_published?: boolean
|
|
117790
117814
|
is_posted?: boolean
|
|
117791
117815
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -118043,7 +118067,6 @@ export namespace Prisma {
|
|
|
118043
118067
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118044
118068
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
118045
118069
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118046
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118047
118070
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
118048
118071
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
118049
118072
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -118084,7 +118107,6 @@ export namespace Prisma {
|
|
|
118084
118107
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118085
118108
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
118086
118109
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118087
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118088
118110
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
118089
118111
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
118090
118112
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -118129,6 +118151,7 @@ export namespace Prisma {
|
|
|
118129
118151
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
118130
118152
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
118131
118153
|
openings?: IntFieldUpdateOperationsInput | number
|
|
118154
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
118132
118155
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
118133
118156
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
118134
118157
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -118160,6 +118183,7 @@ export namespace Prisma {
|
|
|
118160
118183
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
118161
118184
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118162
118185
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118186
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118163
118187
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
118164
118188
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
118165
118189
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -118502,6 +118526,7 @@ export namespace Prisma {
|
|
|
118502
118526
|
updated_by: string
|
|
118503
118527
|
is_active?: boolean
|
|
118504
118528
|
openings?: number
|
|
118529
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
118505
118530
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
118506
118531
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
118507
118532
|
applications?: ApplicationCreateNestedManyWithoutJob_descriptionInput
|
|
@@ -118532,6 +118557,7 @@ export namespace Prisma {
|
|
|
118532
118557
|
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
118533
118558
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
118534
118559
|
uploaded_job_description_path?: string | null
|
|
118560
|
+
rendered_jd_document_id?: string | null
|
|
118535
118561
|
is_plan_published?: boolean
|
|
118536
118562
|
is_posted?: boolean
|
|
118537
118563
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -118568,6 +118594,91 @@ export namespace Prisma {
|
|
|
118568
118594
|
create: XOR<JobDescriptionCreateWithoutSource_documentInput, JobDescriptionUncheckedCreateWithoutSource_documentInput>
|
|
118569
118595
|
}
|
|
118570
118596
|
|
|
118597
|
+
export type JobDescriptionCreateWithoutRendered_jd_documentInput = {
|
|
118598
|
+
id?: string
|
|
118599
|
+
status?: $Enums.JobDescriptionStatus
|
|
118600
|
+
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
118601
|
+
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
118602
|
+
uploaded_job_description_path?: string | null
|
|
118603
|
+
is_plan_published?: boolean
|
|
118604
|
+
is_posted?: boolean
|
|
118605
|
+
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
118606
|
+
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
118607
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
118608
|
+
created_at?: Date | string
|
|
118609
|
+
updated_at?: Date | string
|
|
118610
|
+
created_by: string
|
|
118611
|
+
updated_by: string
|
|
118612
|
+
is_active?: boolean
|
|
118613
|
+
openings?: number
|
|
118614
|
+
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
118615
|
+
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
118616
|
+
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
118617
|
+
applications?: ApplicationCreateNestedManyWithoutJob_descriptionInput
|
|
118618
|
+
interviews?: InterviewCreateNestedManyWithoutJob_descriptionInput
|
|
118619
|
+
assignments?: AssignmentCreateNestedManyWithoutJob_descriptionInput
|
|
118620
|
+
fit_check?: FitCheckCreateNestedManyWithoutJob_descriptionInput
|
|
118621
|
+
job_description_data?: JobDescriptionDataCreateNestedManyWithoutJobDescriptionInput
|
|
118622
|
+
evaluationPlan?: EvaluationPlanCreateNestedManyWithoutJobDescriptionInput
|
|
118623
|
+
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutJobDescriptionInput
|
|
118624
|
+
assignment_library?: AssignmentLibraryCreateNestedManyWithoutJobDescriptionInput
|
|
118625
|
+
approvals?: ApprovalCreateNestedManyWithoutJob_descriptionInput
|
|
118626
|
+
resumes?: ResumeCreateNestedManyWithoutJob_descriptionInput
|
|
118627
|
+
budget?: BudgetCreateNestedOneWithoutJob_descriptionInput
|
|
118628
|
+
hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_descriptionsInput
|
|
118629
|
+
recruiters?: UserCreateNestedManyWithoutJob_descriptionInput
|
|
118630
|
+
transcripts?: TranscriptCreateNestedManyWithoutJob_descriptionInput
|
|
118631
|
+
integration_job_syncs?: IntegrationJobSyncCreateNestedManyWithoutJob_descriptionInput
|
|
118632
|
+
job_application_template?: JobApplicationTemplateCreateNestedOneWithoutJob_descriptionInput
|
|
118633
|
+
conversations?: ConversationCreateNestedManyWithoutJob_descriptionInput
|
|
118634
|
+
communication_messages?: CommunicationMessageCreateNestedManyWithoutJob_descriptionInput
|
|
118635
|
+
}
|
|
118636
|
+
|
|
118637
|
+
export type JobDescriptionUncheckedCreateWithoutRendered_jd_documentInput = {
|
|
118638
|
+
id?: string
|
|
118639
|
+
organisation_id: string
|
|
118640
|
+
hiring_manager_id?: string | null
|
|
118641
|
+
status?: $Enums.JobDescriptionStatus
|
|
118642
|
+
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
118643
|
+
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
118644
|
+
uploaded_job_description_path?: string | null
|
|
118645
|
+
source_document_id?: string | null
|
|
118646
|
+
is_plan_published?: boolean
|
|
118647
|
+
is_posted?: boolean
|
|
118648
|
+
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
118649
|
+
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
118650
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
118651
|
+
created_at?: Date | string
|
|
118652
|
+
updated_at?: Date | string
|
|
118653
|
+
created_by: string
|
|
118654
|
+
updated_by: string
|
|
118655
|
+
is_active?: boolean
|
|
118656
|
+
openings?: number
|
|
118657
|
+
job_profile_id?: string | null
|
|
118658
|
+
applications?: ApplicationUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
118659
|
+
interviews?: InterviewUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
118660
|
+
assignments?: AssignmentUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
118661
|
+
fit_check?: FitCheckUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
118662
|
+
job_description_data?: JobDescriptionDataUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
118663
|
+
evaluationPlan?: EvaluationPlanUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
118664
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
118665
|
+
assignment_library?: AssignmentLibraryUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
118666
|
+
approvals?: ApprovalUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
118667
|
+
resumes?: ResumeUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
118668
|
+
budget?: BudgetUncheckedCreateNestedOneWithoutJob_descriptionInput
|
|
118669
|
+
recruiters?: UserUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
118670
|
+
transcripts?: TranscriptUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
118671
|
+
integration_job_syncs?: IntegrationJobSyncUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
118672
|
+
job_application_template?: JobApplicationTemplateUncheckedCreateNestedOneWithoutJob_descriptionInput
|
|
118673
|
+
conversations?: ConversationUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
118674
|
+
communication_messages?: CommunicationMessageUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
118675
|
+
}
|
|
118676
|
+
|
|
118677
|
+
export type JobDescriptionCreateOrConnectWithoutRendered_jd_documentInput = {
|
|
118678
|
+
where: JobDescriptionWhereUniqueInput
|
|
118679
|
+
create: XOR<JobDescriptionCreateWithoutRendered_jd_documentInput, JobDescriptionUncheckedCreateWithoutRendered_jd_documentInput>
|
|
118680
|
+
}
|
|
118681
|
+
|
|
118571
118682
|
export type InterviewCreateWithoutRecording_documentInput = {
|
|
118572
118683
|
id?: string
|
|
118573
118684
|
calendar_event_id?: string | null
|
|
@@ -119182,6 +119293,7 @@ export namespace Prisma {
|
|
|
119182
119293
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
119183
119294
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
119184
119295
|
openings?: IntFieldUpdateOperationsInput | number
|
|
119296
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
119185
119297
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
119186
119298
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
119187
119299
|
applications?: ApplicationUpdateManyWithoutJob_descriptionNestedInput
|
|
@@ -119212,6 +119324,98 @@ export namespace Prisma {
|
|
|
119212
119324
|
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
119213
119325
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
119214
119326
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119327
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119328
|
+
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
119329
|
+
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
119330
|
+
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
119331
|
+
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
119332
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
119333
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
119334
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
119335
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
119336
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
119337
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
119338
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
119339
|
+
job_profile_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119340
|
+
applications?: ApplicationUncheckedUpdateManyWithoutJob_descriptionNestedInput
|
|
119341
|
+
interviews?: InterviewUncheckedUpdateManyWithoutJob_descriptionNestedInput
|
|
119342
|
+
assignments?: AssignmentUncheckedUpdateManyWithoutJob_descriptionNestedInput
|
|
119343
|
+
fit_check?: FitCheckUncheckedUpdateManyWithoutJob_descriptionNestedInput
|
|
119344
|
+
job_description_data?: JobDescriptionDataUncheckedUpdateManyWithoutJobDescriptionNestedInput
|
|
119345
|
+
evaluationPlan?: EvaluationPlanUncheckedUpdateManyWithoutJobDescriptionNestedInput
|
|
119346
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutJobDescriptionNestedInput
|
|
119347
|
+
assignment_library?: AssignmentLibraryUncheckedUpdateManyWithoutJobDescriptionNestedInput
|
|
119348
|
+
approvals?: ApprovalUncheckedUpdateManyWithoutJob_descriptionNestedInput
|
|
119349
|
+
resumes?: ResumeUncheckedUpdateManyWithoutJob_descriptionNestedInput
|
|
119350
|
+
budget?: BudgetUncheckedUpdateOneWithoutJob_descriptionNestedInput
|
|
119351
|
+
recruiters?: UserUncheckedUpdateManyWithoutJob_descriptionNestedInput
|
|
119352
|
+
transcripts?: TranscriptUncheckedUpdateManyWithoutJob_descriptionNestedInput
|
|
119353
|
+
integration_job_syncs?: IntegrationJobSyncUncheckedUpdateManyWithoutJob_descriptionNestedInput
|
|
119354
|
+
job_application_template?: JobApplicationTemplateUncheckedUpdateOneWithoutJob_descriptionNestedInput
|
|
119355
|
+
conversations?: ConversationUncheckedUpdateManyWithoutJob_descriptionNestedInput
|
|
119356
|
+
communication_messages?: CommunicationMessageUncheckedUpdateManyWithoutJob_descriptionNestedInput
|
|
119357
|
+
}
|
|
119358
|
+
|
|
119359
|
+
export type JobDescriptionUpsertWithoutRendered_jd_documentInput = {
|
|
119360
|
+
update: XOR<JobDescriptionUpdateWithoutRendered_jd_documentInput, JobDescriptionUncheckedUpdateWithoutRendered_jd_documentInput>
|
|
119361
|
+
create: XOR<JobDescriptionCreateWithoutRendered_jd_documentInput, JobDescriptionUncheckedCreateWithoutRendered_jd_documentInput>
|
|
119362
|
+
where?: JobDescriptionWhereInput
|
|
119363
|
+
}
|
|
119364
|
+
|
|
119365
|
+
export type JobDescriptionUpdateToOneWithWhereWithoutRendered_jd_documentInput = {
|
|
119366
|
+
where?: JobDescriptionWhereInput
|
|
119367
|
+
data: XOR<JobDescriptionUpdateWithoutRendered_jd_documentInput, JobDescriptionUncheckedUpdateWithoutRendered_jd_documentInput>
|
|
119368
|
+
}
|
|
119369
|
+
|
|
119370
|
+
export type JobDescriptionUpdateWithoutRendered_jd_documentInput = {
|
|
119371
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
119372
|
+
status?: EnumJobDescriptionStatusFieldUpdateOperationsInput | $Enums.JobDescriptionStatus
|
|
119373
|
+
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
119374
|
+
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
119375
|
+
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119376
|
+
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
119377
|
+
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
119378
|
+
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
119379
|
+
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
119380
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
119381
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
119382
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
119383
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
119384
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
119385
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
119386
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
119387
|
+
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
119388
|
+
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
119389
|
+
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
119390
|
+
applications?: ApplicationUpdateManyWithoutJob_descriptionNestedInput
|
|
119391
|
+
interviews?: InterviewUpdateManyWithoutJob_descriptionNestedInput
|
|
119392
|
+
assignments?: AssignmentUpdateManyWithoutJob_descriptionNestedInput
|
|
119393
|
+
fit_check?: FitCheckUpdateManyWithoutJob_descriptionNestedInput
|
|
119394
|
+
job_description_data?: JobDescriptionDataUpdateManyWithoutJobDescriptionNestedInput
|
|
119395
|
+
evaluationPlan?: EvaluationPlanUpdateManyWithoutJobDescriptionNestedInput
|
|
119396
|
+
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutJobDescriptionNestedInput
|
|
119397
|
+
assignment_library?: AssignmentLibraryUpdateManyWithoutJobDescriptionNestedInput
|
|
119398
|
+
approvals?: ApprovalUpdateManyWithoutJob_descriptionNestedInput
|
|
119399
|
+
resumes?: ResumeUpdateManyWithoutJob_descriptionNestedInput
|
|
119400
|
+
budget?: BudgetUpdateOneWithoutJob_descriptionNestedInput
|
|
119401
|
+
hiring_manager?: UserUpdateOneWithoutHiring_manager_job_descriptionsNestedInput
|
|
119402
|
+
recruiters?: UserUpdateManyWithoutJob_descriptionNestedInput
|
|
119403
|
+
transcripts?: TranscriptUpdateManyWithoutJob_descriptionNestedInput
|
|
119404
|
+
integration_job_syncs?: IntegrationJobSyncUpdateManyWithoutJob_descriptionNestedInput
|
|
119405
|
+
job_application_template?: JobApplicationTemplateUpdateOneWithoutJob_descriptionNestedInput
|
|
119406
|
+
conversations?: ConversationUpdateManyWithoutJob_descriptionNestedInput
|
|
119407
|
+
communication_messages?: CommunicationMessageUpdateManyWithoutJob_descriptionNestedInput
|
|
119408
|
+
}
|
|
119409
|
+
|
|
119410
|
+
export type JobDescriptionUncheckedUpdateWithoutRendered_jd_documentInput = {
|
|
119411
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
119412
|
+
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
119413
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119414
|
+
status?: EnumJobDescriptionStatusFieldUpdateOperationsInput | $Enums.JobDescriptionStatus
|
|
119415
|
+
screeningQuestions?: JobDescriptionUpdatescreeningQuestionsInput | string[]
|
|
119416
|
+
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
119417
|
+
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119418
|
+
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119215
119419
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
119216
119420
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
119217
119421
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -119517,6 +119721,7 @@ export namespace Prisma {
|
|
|
119517
119721
|
updated_by: string
|
|
119518
119722
|
is_active?: boolean
|
|
119519
119723
|
openings?: number
|
|
119724
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
119520
119725
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
119521
119726
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
119522
119727
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -119548,6 +119753,7 @@ export namespace Prisma {
|
|
|
119548
119753
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
119549
119754
|
uploaded_job_description_path?: string | null
|
|
119550
119755
|
source_document_id?: string | null
|
|
119756
|
+
rendered_jd_document_id?: string | null
|
|
119551
119757
|
is_plan_published?: boolean
|
|
119552
119758
|
is_posted?: boolean
|
|
119553
119759
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -119761,7 +119967,6 @@ export namespace Prisma {
|
|
|
119761
119967
|
expected_ctc?: string | null
|
|
119762
119968
|
notice_period?: number | null
|
|
119763
119969
|
preferred_location?: string | null
|
|
119764
|
-
evaluationComment?: string | null
|
|
119765
119970
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
119766
119971
|
status?: $Enums.ApplicationStatus
|
|
119767
119972
|
created_at?: Date | string
|
|
@@ -119801,7 +120006,6 @@ export namespace Prisma {
|
|
|
119801
120006
|
expected_ctc?: string | null
|
|
119802
120007
|
notice_period?: number | null
|
|
119803
120008
|
preferred_location?: string | null
|
|
119804
|
-
evaluationComment?: string | null
|
|
119805
120009
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
119806
120010
|
status?: $Enums.ApplicationStatus
|
|
119807
120011
|
created_at?: Date | string
|
|
@@ -120011,6 +120215,7 @@ export namespace Prisma {
|
|
|
120011
120215
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
120012
120216
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
120013
120217
|
openings?: IntFieldUpdateOperationsInput | number
|
|
120218
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
120014
120219
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
120015
120220
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
120016
120221
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -120042,6 +120247,7 @@ export namespace Prisma {
|
|
|
120042
120247
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
120043
120248
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120044
120249
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120250
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120045
120251
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
120046
120252
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
120047
120253
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -120141,7 +120347,6 @@ export namespace Prisma {
|
|
|
120141
120347
|
expected_ctc?: StringNullableFilter<"Application"> | string | null
|
|
120142
120348
|
notice_period?: IntNullableFilter<"Application"> | number | null
|
|
120143
120349
|
preferred_location?: StringNullableFilter<"Application"> | string | null
|
|
120144
|
-
evaluationComment?: StringNullableFilter<"Application"> | string | null
|
|
120145
120350
|
fit_check_status?: EnumFitCheckStatusNullableFilter<"Application"> | $Enums.FitCheckStatus | null
|
|
120146
120351
|
status?: EnumApplicationStatusFilter<"Application"> | $Enums.ApplicationStatus
|
|
120147
120352
|
created_at?: DateTimeFilter<"Application"> | Date | string
|
|
@@ -120793,6 +120998,7 @@ export namespace Prisma {
|
|
|
120793
120998
|
updated_by: string
|
|
120794
120999
|
is_active?: boolean
|
|
120795
121000
|
openings?: number
|
|
121001
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
120796
121002
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
120797
121003
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
120798
121004
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -120824,6 +121030,7 @@ export namespace Prisma {
|
|
|
120824
121030
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
120825
121031
|
uploaded_job_description_path?: string | null
|
|
120826
121032
|
source_document_id?: string | null
|
|
121033
|
+
rendered_jd_document_id?: string | null
|
|
120827
121034
|
is_plan_published?: boolean
|
|
120828
121035
|
is_posted?: boolean
|
|
120829
121036
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -120871,7 +121078,6 @@ export namespace Prisma {
|
|
|
120871
121078
|
expected_ctc?: string | null
|
|
120872
121079
|
notice_period?: number | null
|
|
120873
121080
|
preferred_location?: string | null
|
|
120874
|
-
evaluationComment?: string | null
|
|
120875
121081
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
120876
121082
|
status?: $Enums.ApplicationStatus
|
|
120877
121083
|
created_at?: Date | string
|
|
@@ -120911,7 +121117,6 @@ export namespace Prisma {
|
|
|
120911
121117
|
expected_ctc?: string | null
|
|
120912
121118
|
notice_period?: number | null
|
|
120913
121119
|
preferred_location?: string | null
|
|
120914
|
-
evaluationComment?: string | null
|
|
120915
121120
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
120916
121121
|
status?: $Enums.ApplicationStatus
|
|
120917
121122
|
created_at?: Date | string
|
|
@@ -121275,6 +121480,7 @@ export namespace Prisma {
|
|
|
121275
121480
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
121276
121481
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
121277
121482
|
openings?: IntFieldUpdateOperationsInput | number
|
|
121483
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
121278
121484
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
121279
121485
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
121280
121486
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -121306,6 +121512,7 @@ export namespace Prisma {
|
|
|
121306
121512
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
121307
121513
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121308
121514
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121515
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121309
121516
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
121310
121517
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
121311
121518
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -121359,7 +121566,6 @@ export namespace Prisma {
|
|
|
121359
121566
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121360
121567
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
121361
121568
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121362
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121363
121569
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
121364
121570
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
121365
121571
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -121399,7 +121605,6 @@ export namespace Prisma {
|
|
|
121399
121605
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121400
121606
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
121401
121607
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121402
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
121403
121608
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
121404
121609
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
121405
121610
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -121934,6 +122139,7 @@ export namespace Prisma {
|
|
|
121934
122139
|
updated_by: string
|
|
121935
122140
|
is_active?: boolean
|
|
121936
122141
|
openings?: number
|
|
122142
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
121937
122143
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
121938
122144
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
121939
122145
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -121965,6 +122171,7 @@ export namespace Prisma {
|
|
|
121965
122171
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
121966
122172
|
uploaded_job_description_path?: string | null
|
|
121967
122173
|
source_document_id?: string | null
|
|
122174
|
+
rendered_jd_document_id?: string | null
|
|
121968
122175
|
is_plan_published?: boolean
|
|
121969
122176
|
is_posted?: boolean
|
|
121970
122177
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -122028,6 +122235,7 @@ export namespace Prisma {
|
|
|
122028
122235
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
122029
122236
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
122030
122237
|
openings?: IntFieldUpdateOperationsInput | number
|
|
122238
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
122031
122239
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
122032
122240
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
122033
122241
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -122059,6 +122267,7 @@ export namespace Prisma {
|
|
|
122059
122267
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
122060
122268
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122061
122269
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122270
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
122062
122271
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
122063
122272
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
122064
122273
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -122698,6 +122907,7 @@ export namespace Prisma {
|
|
|
122698
122907
|
candidate?: UserCreateNestedOneWithoutDocumentsInput
|
|
122699
122908
|
resume?: ResumeCreateNestedOneWithoutDocumentInput
|
|
122700
122909
|
job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
|
|
122910
|
+
job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
|
|
122701
122911
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
|
|
122702
122912
|
assignment_solution?: AssignmentCreateNestedOneWithoutSolution_documentInput
|
|
122703
122913
|
assignment_zip?: AssignmentCreateNestedOneWithoutZip_documentInput
|
|
@@ -122723,6 +122933,7 @@ export namespace Prisma {
|
|
|
122723
122933
|
is_active?: boolean
|
|
122724
122934
|
resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
|
|
122725
122935
|
job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
|
|
122936
|
+
job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
|
|
122726
122937
|
job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
|
|
122727
122938
|
assignment_solution?: AssignmentUncheckedCreateNestedOneWithoutSolution_documentInput
|
|
122728
122939
|
assignment_zip?: AssignmentUncheckedCreateNestedOneWithoutZip_documentInput
|
|
@@ -122750,6 +122961,7 @@ export namespace Prisma {
|
|
|
122750
122961
|
updated_by: string
|
|
122751
122962
|
is_active?: boolean
|
|
122752
122963
|
openings?: number
|
|
122964
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
122753
122965
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
122754
122966
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
122755
122967
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -122781,6 +122993,7 @@ export namespace Prisma {
|
|
|
122781
122993
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
122782
122994
|
uploaded_job_description_path?: string | null
|
|
122783
122995
|
source_document_id?: string | null
|
|
122996
|
+
rendered_jd_document_id?: string | null
|
|
122784
122997
|
is_plan_published?: boolean
|
|
122785
122998
|
is_posted?: boolean
|
|
122786
122999
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -122881,7 +123094,6 @@ export namespace Prisma {
|
|
|
122881
123094
|
order_no?: number | null
|
|
122882
123095
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
122883
123096
|
plan_type?: $Enums.EvaluationPlanType
|
|
122884
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
122885
123097
|
duration?: number | null
|
|
122886
123098
|
duration_unit?: $Enums.DurationUnit | null
|
|
122887
123099
|
deadline?: number | null
|
|
@@ -122915,7 +123127,6 @@ export namespace Prisma {
|
|
|
122915
123127
|
order_no?: number | null
|
|
122916
123128
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
122917
123129
|
plan_type?: $Enums.EvaluationPlanType
|
|
122918
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
122919
123130
|
duration?: number | null
|
|
122920
123131
|
duration_unit?: $Enums.DurationUnit | null
|
|
122921
123132
|
deadline?: number | null
|
|
@@ -122946,7 +123157,6 @@ export namespace Prisma {
|
|
|
122946
123157
|
expected_ctc?: string | null
|
|
122947
123158
|
notice_period?: number | null
|
|
122948
123159
|
preferred_location?: string | null
|
|
122949
|
-
evaluationComment?: string | null
|
|
122950
123160
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
122951
123161
|
status?: $Enums.ApplicationStatus
|
|
122952
123162
|
created_at?: Date | string
|
|
@@ -122987,7 +123197,6 @@ export namespace Prisma {
|
|
|
122987
123197
|
expected_ctc?: string | null
|
|
122988
123198
|
notice_period?: number | null
|
|
122989
123199
|
preferred_location?: string | null
|
|
122990
|
-
evaluationComment?: string | null
|
|
122991
123200
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
122992
123201
|
status?: $Enums.ApplicationStatus
|
|
122993
123202
|
created_at?: Date | string
|
|
@@ -123753,6 +123962,7 @@ export namespace Prisma {
|
|
|
123753
123962
|
candidate?: UserUpdateOneWithoutDocumentsNestedInput
|
|
123754
123963
|
resume?: ResumeUpdateOneWithoutDocumentNestedInput
|
|
123755
123964
|
job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
|
|
123965
|
+
job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
|
|
123756
123966
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
|
|
123757
123967
|
assignment_solution?: AssignmentUpdateOneWithoutSolution_documentNestedInput
|
|
123758
123968
|
assignment_zip?: AssignmentUpdateOneWithoutZip_documentNestedInput
|
|
@@ -123778,6 +123988,7 @@ export namespace Prisma {
|
|
|
123778
123988
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
123779
123989
|
resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
|
|
123780
123990
|
job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
|
|
123991
|
+
job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
|
|
123781
123992
|
job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
|
|
123782
123993
|
assignment_solution?: AssignmentUncheckedUpdateOneWithoutSolution_documentNestedInput
|
|
123783
123994
|
assignment_zip?: AssignmentUncheckedUpdateOneWithoutZip_documentNestedInput
|
|
@@ -123811,6 +124022,7 @@ export namespace Prisma {
|
|
|
123811
124022
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
123812
124023
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
123813
124024
|
openings?: IntFieldUpdateOperationsInput | number
|
|
124025
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
123814
124026
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
123815
124027
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
123816
124028
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -123842,6 +124054,7 @@ export namespace Prisma {
|
|
|
123842
124054
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
123843
124055
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
123844
124056
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124057
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
123845
124058
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
123846
124059
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
123847
124060
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -123954,7 +124167,6 @@ export namespace Prisma {
|
|
|
123954
124167
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
123955
124168
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
123956
124169
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
123957
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
123958
124170
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
123959
124171
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
123960
124172
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -123988,7 +124200,6 @@ export namespace Prisma {
|
|
|
123988
124200
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
123989
124201
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
123990
124202
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
123991
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
123992
124203
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
123993
124204
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
123994
124205
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -124025,7 +124236,6 @@ export namespace Prisma {
|
|
|
124025
124236
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124026
124237
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
124027
124238
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124028
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124029
124239
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
124030
124240
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
124031
124241
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -124066,7 +124276,6 @@ export namespace Prisma {
|
|
|
124066
124276
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124067
124277
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
124068
124278
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124069
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
124070
124279
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
124071
124280
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
124072
124281
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -124959,7 +125168,6 @@ export namespace Prisma {
|
|
|
124959
125168
|
expected_ctc?: string | null
|
|
124960
125169
|
notice_period?: number | null
|
|
124961
125170
|
preferred_location?: string | null
|
|
124962
|
-
evaluationComment?: string | null
|
|
124963
125171
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
124964
125172
|
status?: $Enums.ApplicationStatus
|
|
124965
125173
|
created_at?: Date | string
|
|
@@ -125000,7 +125208,6 @@ export namespace Prisma {
|
|
|
125000
125208
|
expected_ctc?: string | null
|
|
125001
125209
|
notice_period?: number | null
|
|
125002
125210
|
preferred_location?: string | null
|
|
125003
|
-
evaluationComment?: string | null
|
|
125004
125211
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
125005
125212
|
status?: $Enums.ApplicationStatus
|
|
125006
125213
|
created_at?: Date | string
|
|
@@ -125081,6 +125288,7 @@ export namespace Prisma {
|
|
|
125081
125288
|
candidate?: UserCreateNestedOneWithoutDocumentsInput
|
|
125082
125289
|
resume?: ResumeCreateNestedOneWithoutDocumentInput
|
|
125083
125290
|
job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
|
|
125291
|
+
job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
|
|
125084
125292
|
interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
|
|
125085
125293
|
assignment_solution?: AssignmentCreateNestedOneWithoutSolution_documentInput
|
|
125086
125294
|
assignment_zip?: AssignmentCreateNestedOneWithoutZip_documentInput
|
|
@@ -125106,6 +125314,7 @@ export namespace Prisma {
|
|
|
125106
125314
|
is_active?: boolean
|
|
125107
125315
|
resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
|
|
125108
125316
|
job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
|
|
125317
|
+
job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
|
|
125109
125318
|
interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
|
|
125110
125319
|
assignment_solution?: AssignmentUncheckedCreateNestedOneWithoutSolution_documentInput
|
|
125111
125320
|
assignment_zip?: AssignmentUncheckedCreateNestedOneWithoutZip_documentInput
|
|
@@ -125139,7 +125348,6 @@ export namespace Prisma {
|
|
|
125139
125348
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125140
125349
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
125141
125350
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125142
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125143
125351
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
125144
125352
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
125145
125353
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -125180,7 +125388,6 @@ export namespace Prisma {
|
|
|
125180
125388
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125181
125389
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
125182
125390
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125183
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125184
125391
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
125185
125392
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
125186
125393
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -125273,6 +125480,7 @@ export namespace Prisma {
|
|
|
125273
125480
|
candidate?: UserUpdateOneWithoutDocumentsNestedInput
|
|
125274
125481
|
resume?: ResumeUpdateOneWithoutDocumentNestedInput
|
|
125275
125482
|
job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
|
|
125483
|
+
job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
|
|
125276
125484
|
interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
|
|
125277
125485
|
assignment_solution?: AssignmentUpdateOneWithoutSolution_documentNestedInput
|
|
125278
125486
|
assignment_zip?: AssignmentUpdateOneWithoutZip_documentNestedInput
|
|
@@ -125298,6 +125506,7 @@ export namespace Prisma {
|
|
|
125298
125506
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
125299
125507
|
resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
|
|
125300
125508
|
job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
|
|
125509
|
+
job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
|
|
125301
125510
|
interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
|
|
125302
125511
|
assignment_solution?: AssignmentUncheckedUpdateOneWithoutSolution_documentNestedInput
|
|
125303
125512
|
assignment_zip?: AssignmentUncheckedUpdateOneWithoutZip_documentNestedInput
|
|
@@ -125415,6 +125624,7 @@ export namespace Prisma {
|
|
|
125415
125624
|
updated_by: string
|
|
125416
125625
|
is_active?: boolean
|
|
125417
125626
|
openings?: number
|
|
125627
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
125418
125628
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
125419
125629
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
125420
125630
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -125446,6 +125656,7 @@ export namespace Prisma {
|
|
|
125446
125656
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
125447
125657
|
uploaded_job_description_path?: string | null
|
|
125448
125658
|
source_document_id?: string | null
|
|
125659
|
+
rendered_jd_document_id?: string | null
|
|
125449
125660
|
is_plan_published?: boolean
|
|
125450
125661
|
is_posted?: boolean
|
|
125451
125662
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -125654,6 +125865,7 @@ export namespace Prisma {
|
|
|
125654
125865
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
125655
125866
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
125656
125867
|
openings?: IntFieldUpdateOperationsInput | number
|
|
125868
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
125657
125869
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
125658
125870
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
125659
125871
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -125685,6 +125897,7 @@ export namespace Prisma {
|
|
|
125685
125897
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
125686
125898
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125687
125899
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125900
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
125688
125901
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
125689
125902
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
125690
125903
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -125751,6 +125964,63 @@ export namespace Prisma {
|
|
|
125751
125964
|
updated_at?: DateTimeFilter<"JobApplicationField"> | Date | string
|
|
125752
125965
|
}
|
|
125753
125966
|
|
|
125967
|
+
export type DocumentCreateWithoutJob_description_renderedInput = {
|
|
125968
|
+
id?: string
|
|
125969
|
+
original_file_name: string
|
|
125970
|
+
stored_file_name: string
|
|
125971
|
+
file_extension?: string | null
|
|
125972
|
+
s3_bucket?: string | null
|
|
125973
|
+
s3_key?: string | null
|
|
125974
|
+
mime_type?: string | null
|
|
125975
|
+
file_size?: bigint | number | null
|
|
125976
|
+
file_hash?: string | null
|
|
125977
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
125978
|
+
created_at?: Date | string
|
|
125979
|
+
updated_at?: Date | string
|
|
125980
|
+
created_by: string
|
|
125981
|
+
updated_by: string
|
|
125982
|
+
is_active?: boolean
|
|
125983
|
+
organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
|
|
125984
|
+
candidate?: UserCreateNestedOneWithoutDocumentsInput
|
|
125985
|
+
resume?: ResumeCreateNestedOneWithoutDocumentInput
|
|
125986
|
+
job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
|
|
125987
|
+
interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
|
|
125988
|
+
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
|
|
125989
|
+
assignment_solution?: AssignmentCreateNestedOneWithoutSolution_documentInput
|
|
125990
|
+
assignment_zip?: AssignmentCreateNestedOneWithoutZip_documentInput
|
|
125991
|
+
}
|
|
125992
|
+
|
|
125993
|
+
export type DocumentUncheckedCreateWithoutJob_description_renderedInput = {
|
|
125994
|
+
id?: string
|
|
125995
|
+
organisation_id?: string | null
|
|
125996
|
+
candidate_id?: string | null
|
|
125997
|
+
original_file_name: string
|
|
125998
|
+
stored_file_name: string
|
|
125999
|
+
file_extension?: string | null
|
|
126000
|
+
s3_bucket?: string | null
|
|
126001
|
+
s3_key?: string | null
|
|
126002
|
+
mime_type?: string | null
|
|
126003
|
+
file_size?: bigint | number | null
|
|
126004
|
+
file_hash?: string | null
|
|
126005
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
126006
|
+
created_at?: Date | string
|
|
126007
|
+
updated_at?: Date | string
|
|
126008
|
+
created_by: string
|
|
126009
|
+
updated_by: string
|
|
126010
|
+
is_active?: boolean
|
|
126011
|
+
resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
|
|
126012
|
+
job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
|
|
126013
|
+
interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
|
|
126014
|
+
job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
|
|
126015
|
+
assignment_solution?: AssignmentUncheckedCreateNestedOneWithoutSolution_documentInput
|
|
126016
|
+
assignment_zip?: AssignmentUncheckedCreateNestedOneWithoutZip_documentInput
|
|
126017
|
+
}
|
|
126018
|
+
|
|
126019
|
+
export type DocumentCreateOrConnectWithoutJob_description_renderedInput = {
|
|
126020
|
+
where: DocumentWhereUniqueInput
|
|
126021
|
+
create: XOR<DocumentCreateWithoutJob_description_renderedInput, DocumentUncheckedCreateWithoutJob_description_renderedInput>
|
|
126022
|
+
}
|
|
126023
|
+
|
|
125754
126024
|
export type JobProfileCreateWithoutJob_descriptionsInput = {
|
|
125755
126025
|
id?: string
|
|
125756
126026
|
status?: $Enums.JobProfileStatus
|
|
@@ -125926,6 +126196,7 @@ export namespace Prisma {
|
|
|
125926
126196
|
organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
|
|
125927
126197
|
candidate?: UserCreateNestedOneWithoutDocumentsInput
|
|
125928
126198
|
resume?: ResumeCreateNestedOneWithoutDocumentInput
|
|
126199
|
+
job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
|
|
125929
126200
|
interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
|
|
125930
126201
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
|
|
125931
126202
|
assignment_solution?: AssignmentCreateNestedOneWithoutSolution_documentInput
|
|
@@ -125951,6 +126222,7 @@ export namespace Prisma {
|
|
|
125951
126222
|
updated_by: string
|
|
125952
126223
|
is_active?: boolean
|
|
125953
126224
|
resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
|
|
126225
|
+
job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
|
|
125954
126226
|
interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
|
|
125955
126227
|
job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
|
|
125956
126228
|
assignment_solution?: AssignmentUncheckedCreateNestedOneWithoutSolution_documentInput
|
|
@@ -125974,7 +126246,6 @@ export namespace Prisma {
|
|
|
125974
126246
|
expected_ctc?: string | null
|
|
125975
126247
|
notice_period?: number | null
|
|
125976
126248
|
preferred_location?: string | null
|
|
125977
|
-
evaluationComment?: string | null
|
|
125978
126249
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
125979
126250
|
status?: $Enums.ApplicationStatus
|
|
125980
126251
|
created_at?: Date | string
|
|
@@ -126014,7 +126285,6 @@ export namespace Prisma {
|
|
|
126014
126285
|
expected_ctc?: string | null
|
|
126015
126286
|
notice_period?: number | null
|
|
126016
126287
|
preferred_location?: string | null
|
|
126017
|
-
evaluationComment?: string | null
|
|
126018
126288
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
126019
126289
|
status?: $Enums.ApplicationStatus
|
|
126020
126290
|
created_at?: Date | string
|
|
@@ -126344,7 +126614,6 @@ export namespace Prisma {
|
|
|
126344
126614
|
order_no?: number | null
|
|
126345
126615
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
126346
126616
|
plan_type?: $Enums.EvaluationPlanType
|
|
126347
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
126348
126617
|
duration?: number | null
|
|
126349
126618
|
duration_unit?: $Enums.DurationUnit | null
|
|
126350
126619
|
deadline?: number | null
|
|
@@ -126377,7 +126646,6 @@ export namespace Prisma {
|
|
|
126377
126646
|
order_no?: number | null
|
|
126378
126647
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
126379
126648
|
plan_type?: $Enums.EvaluationPlanType
|
|
126380
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
126381
126649
|
duration?: number | null
|
|
126382
126650
|
duration_unit?: $Enums.DurationUnit | null
|
|
126383
126651
|
deadline?: number | null
|
|
@@ -127186,6 +127454,69 @@ export namespace Prisma {
|
|
|
127186
127454
|
skipDuplicates?: boolean
|
|
127187
127455
|
}
|
|
127188
127456
|
|
|
127457
|
+
export type DocumentUpsertWithoutJob_description_renderedInput = {
|
|
127458
|
+
update: XOR<DocumentUpdateWithoutJob_description_renderedInput, DocumentUncheckedUpdateWithoutJob_description_renderedInput>
|
|
127459
|
+
create: XOR<DocumentCreateWithoutJob_description_renderedInput, DocumentUncheckedCreateWithoutJob_description_renderedInput>
|
|
127460
|
+
where?: DocumentWhereInput
|
|
127461
|
+
}
|
|
127462
|
+
|
|
127463
|
+
export type DocumentUpdateToOneWithWhereWithoutJob_description_renderedInput = {
|
|
127464
|
+
where?: DocumentWhereInput
|
|
127465
|
+
data: XOR<DocumentUpdateWithoutJob_description_renderedInput, DocumentUncheckedUpdateWithoutJob_description_renderedInput>
|
|
127466
|
+
}
|
|
127467
|
+
|
|
127468
|
+
export type DocumentUpdateWithoutJob_description_renderedInput = {
|
|
127469
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
127470
|
+
original_file_name?: StringFieldUpdateOperationsInput | string
|
|
127471
|
+
stored_file_name?: StringFieldUpdateOperationsInput | string
|
|
127472
|
+
file_extension?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127473
|
+
s3_bucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127474
|
+
s3_key?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127475
|
+
mime_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127476
|
+
file_size?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
|
|
127477
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127478
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
127479
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
127480
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
127481
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
127482
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
127483
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
127484
|
+
organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
|
|
127485
|
+
candidate?: UserUpdateOneWithoutDocumentsNestedInput
|
|
127486
|
+
resume?: ResumeUpdateOneWithoutDocumentNestedInput
|
|
127487
|
+
job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
|
|
127488
|
+
interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
|
|
127489
|
+
job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
|
|
127490
|
+
assignment_solution?: AssignmentUpdateOneWithoutSolution_documentNestedInput
|
|
127491
|
+
assignment_zip?: AssignmentUpdateOneWithoutZip_documentNestedInput
|
|
127492
|
+
}
|
|
127493
|
+
|
|
127494
|
+
export type DocumentUncheckedUpdateWithoutJob_description_renderedInput = {
|
|
127495
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
127496
|
+
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127497
|
+
candidate_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127498
|
+
original_file_name?: StringFieldUpdateOperationsInput | string
|
|
127499
|
+
stored_file_name?: StringFieldUpdateOperationsInput | string
|
|
127500
|
+
file_extension?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127501
|
+
s3_bucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127502
|
+
s3_key?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127503
|
+
mime_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127504
|
+
file_size?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
|
|
127505
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
127506
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
127507
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
127508
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
127509
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
127510
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
127511
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
127512
|
+
resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
|
|
127513
|
+
job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
|
|
127514
|
+
interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
|
|
127515
|
+
job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
|
|
127516
|
+
assignment_solution?: AssignmentUncheckedUpdateOneWithoutSolution_documentNestedInput
|
|
127517
|
+
assignment_zip?: AssignmentUncheckedUpdateOneWithoutZip_documentNestedInput
|
|
127518
|
+
}
|
|
127519
|
+
|
|
127189
127520
|
export type JobProfileUpsertWithoutJob_descriptionsInput = {
|
|
127190
127521
|
update: XOR<JobProfileUpdateWithoutJob_descriptionsInput, JobProfileUncheckedUpdateWithoutJob_descriptionsInput>
|
|
127191
127522
|
create: XOR<JobProfileCreateWithoutJob_descriptionsInput, JobProfileUncheckedCreateWithoutJob_descriptionsInput>
|
|
@@ -127384,6 +127715,7 @@ export namespace Prisma {
|
|
|
127384
127715
|
organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
|
|
127385
127716
|
candidate?: UserUpdateOneWithoutDocumentsNestedInput
|
|
127386
127717
|
resume?: ResumeUpdateOneWithoutDocumentNestedInput
|
|
127718
|
+
job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
|
|
127387
127719
|
interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
|
|
127388
127720
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
|
|
127389
127721
|
assignment_solution?: AssignmentUpdateOneWithoutSolution_documentNestedInput
|
|
@@ -127409,6 +127741,7 @@ export namespace Prisma {
|
|
|
127409
127741
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
127410
127742
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
127411
127743
|
resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
|
|
127744
|
+
job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
|
|
127412
127745
|
interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
|
|
127413
127746
|
job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
|
|
127414
127747
|
assignment_solution?: AssignmentUncheckedUpdateOneWithoutSolution_documentNestedInput
|
|
@@ -128041,6 +128374,7 @@ export namespace Prisma {
|
|
|
128041
128374
|
updated_by: string
|
|
128042
128375
|
is_active?: boolean
|
|
128043
128376
|
openings?: number
|
|
128377
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
128044
128378
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
128045
128379
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
128046
128380
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -128072,6 +128406,7 @@ export namespace Prisma {
|
|
|
128072
128406
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
128073
128407
|
uploaded_job_description_path?: string | null
|
|
128074
128408
|
source_document_id?: string | null
|
|
128409
|
+
rendered_jd_document_id?: string | null
|
|
128075
128410
|
is_plan_published?: boolean
|
|
128076
128411
|
is_posted?: boolean
|
|
128077
128412
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -128135,6 +128470,7 @@ export namespace Prisma {
|
|
|
128135
128470
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
128136
128471
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
128137
128472
|
openings?: IntFieldUpdateOperationsInput | number
|
|
128473
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
128138
128474
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
128139
128475
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
128140
128476
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -128166,6 +128502,7 @@ export namespace Prisma {
|
|
|
128166
128502
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
128167
128503
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
128168
128504
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
128505
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
128169
128506
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
128170
128507
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
128171
128508
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -128755,6 +129092,7 @@ export namespace Prisma {
|
|
|
128755
129092
|
updated_by: string
|
|
128756
129093
|
is_active?: boolean
|
|
128757
129094
|
openings?: number
|
|
129095
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
128758
129096
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
128759
129097
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
128760
129098
|
applications?: ApplicationCreateNestedManyWithoutJob_descriptionInput
|
|
@@ -128786,6 +129124,7 @@ export namespace Prisma {
|
|
|
128786
129124
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
128787
129125
|
uploaded_job_description_path?: string | null
|
|
128788
129126
|
source_document_id?: string | null
|
|
129127
|
+
rendered_jd_document_id?: string | null
|
|
128789
129128
|
is_plan_published?: boolean
|
|
128790
129129
|
is_posted?: boolean
|
|
128791
129130
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -129420,6 +129759,7 @@ export namespace Prisma {
|
|
|
129420
129759
|
recommendedQuestions?: JsonNullableListFilter<"JobDescription">
|
|
129421
129760
|
uploaded_job_description_path?: StringNullableFilter<"JobDescription"> | string | null
|
|
129422
129761
|
source_document_id?: StringNullableFilter<"JobDescription"> | string | null
|
|
129762
|
+
rendered_jd_document_id?: StringNullableFilter<"JobDescription"> | string | null
|
|
129423
129763
|
is_plan_published?: BoolFilter<"JobDescription"> | boolean
|
|
129424
129764
|
is_posted?: BoolFilter<"JobDescription"> | boolean
|
|
129425
129765
|
summary?: JsonNullableFilter<"JobDescription">
|
|
@@ -130286,7 +130626,6 @@ export namespace Prisma {
|
|
|
130286
130626
|
expected_ctc?: string | null
|
|
130287
130627
|
notice_period?: number | null
|
|
130288
130628
|
preferred_location?: string | null
|
|
130289
|
-
evaluationComment?: string | null
|
|
130290
130629
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
130291
130630
|
status?: $Enums.ApplicationStatus
|
|
130292
130631
|
created_at?: Date | string
|
|
@@ -130327,7 +130666,6 @@ export namespace Prisma {
|
|
|
130327
130666
|
expected_ctc?: string | null
|
|
130328
130667
|
notice_period?: number | null
|
|
130329
130668
|
preferred_location?: string | null
|
|
130330
|
-
evaluationComment?: string | null
|
|
130331
130669
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
130332
130670
|
status?: $Enums.ApplicationStatus
|
|
130333
130671
|
created_at?: Date | string
|
|
@@ -130521,7 +130859,6 @@ export namespace Prisma {
|
|
|
130521
130859
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
130522
130860
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
130523
130861
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
130524
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
130525
130862
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
130526
130863
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
130527
130864
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -130562,7 +130899,6 @@ export namespace Prisma {
|
|
|
130562
130899
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
130563
130900
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
130564
130901
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
130565
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
130566
130902
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
130567
130903
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
130568
130904
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -130751,6 +131087,7 @@ export namespace Prisma {
|
|
|
130751
131087
|
updated_by: string
|
|
130752
131088
|
is_active?: boolean
|
|
130753
131089
|
openings?: number
|
|
131090
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
130754
131091
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
130755
131092
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
130756
131093
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -130782,6 +131119,7 @@ export namespace Prisma {
|
|
|
130782
131119
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
130783
131120
|
uploaded_job_description_path?: string | null
|
|
130784
131121
|
source_document_id?: string | null
|
|
131122
|
+
rendered_jd_document_id?: string | null
|
|
130785
131123
|
is_plan_published?: boolean
|
|
130786
131124
|
is_posted?: boolean
|
|
130787
131125
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -130829,7 +131167,6 @@ export namespace Prisma {
|
|
|
130829
131167
|
expected_ctc?: string | null
|
|
130830
131168
|
notice_period?: number | null
|
|
130831
131169
|
preferred_location?: string | null
|
|
130832
|
-
evaluationComment?: string | null
|
|
130833
131170
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
130834
131171
|
status?: $Enums.ApplicationStatus
|
|
130835
131172
|
created_at?: Date | string
|
|
@@ -130870,7 +131207,6 @@ export namespace Prisma {
|
|
|
130870
131207
|
expected_ctc?: string | null
|
|
130871
131208
|
notice_period?: number | null
|
|
130872
131209
|
preferred_location?: string | null
|
|
130873
|
-
evaluationComment?: string | null
|
|
130874
131210
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
130875
131211
|
status?: $Enums.ApplicationStatus
|
|
130876
131212
|
created_at?: Date | string
|
|
@@ -131201,7 +131537,6 @@ export namespace Prisma {
|
|
|
131201
131537
|
order_no?: number | null
|
|
131202
131538
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
131203
131539
|
plan_type?: $Enums.EvaluationPlanType
|
|
131204
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
131205
131540
|
duration?: number | null
|
|
131206
131541
|
duration_unit?: $Enums.DurationUnit | null
|
|
131207
131542
|
deadline?: number | null
|
|
@@ -131235,7 +131570,6 @@ export namespace Prisma {
|
|
|
131235
131570
|
order_no?: number | null
|
|
131236
131571
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
131237
131572
|
plan_type?: $Enums.EvaluationPlanType
|
|
131238
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
131239
131573
|
duration?: number | null
|
|
131240
131574
|
duration_unit?: $Enums.DurationUnit | null
|
|
131241
131575
|
deadline?: number | null
|
|
@@ -131501,6 +131835,7 @@ export namespace Prisma {
|
|
|
131501
131835
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
131502
131836
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
131503
131837
|
openings?: IntFieldUpdateOperationsInput | number
|
|
131838
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
131504
131839
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
131505
131840
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
131506
131841
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -131532,6 +131867,7 @@ export namespace Prisma {
|
|
|
131532
131867
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
131533
131868
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131534
131869
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131870
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131535
131871
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
131536
131872
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
131537
131873
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -131585,7 +131921,6 @@ export namespace Prisma {
|
|
|
131585
131921
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131586
131922
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
131587
131923
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131588
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131589
131924
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
131590
131925
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
131591
131926
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -131626,7 +131961,6 @@ export namespace Prisma {
|
|
|
131626
131961
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131627
131962
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
131628
131963
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131629
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
131630
131964
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
131631
131965
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
131632
131966
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -131981,7 +132315,6 @@ export namespace Prisma {
|
|
|
131981
132315
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
131982
132316
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
131983
132317
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
131984
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
131985
132318
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
131986
132319
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
131987
132320
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -132015,7 +132348,6 @@ export namespace Prisma {
|
|
|
132015
132348
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
132016
132349
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
132017
132350
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
132018
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
132019
132351
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
132020
132352
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
132021
132353
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -132432,7 +132764,6 @@ export namespace Prisma {
|
|
|
132432
132764
|
expected_ctc?: string | null
|
|
132433
132765
|
notice_period?: number | null
|
|
132434
132766
|
preferred_location?: string | null
|
|
132435
|
-
evaluationComment?: string | null
|
|
132436
132767
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
132437
132768
|
status?: $Enums.ApplicationStatus
|
|
132438
132769
|
created_at?: Date | string
|
|
@@ -132472,7 +132803,6 @@ export namespace Prisma {
|
|
|
132472
132803
|
expected_ctc?: string | null
|
|
132473
132804
|
notice_period?: number | null
|
|
132474
132805
|
preferred_location?: string | null
|
|
132475
|
-
evaluationComment?: string | null
|
|
132476
132806
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
132477
132807
|
status?: $Enums.ApplicationStatus
|
|
132478
132808
|
created_at?: Date | string
|
|
@@ -132553,6 +132883,7 @@ export namespace Prisma {
|
|
|
132553
132883
|
updated_by: string
|
|
132554
132884
|
is_active?: boolean
|
|
132555
132885
|
openings?: number
|
|
132886
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
132556
132887
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
132557
132888
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
132558
132889
|
applications?: ApplicationCreateNestedManyWithoutJob_descriptionInput
|
|
@@ -132583,6 +132914,7 @@ export namespace Prisma {
|
|
|
132583
132914
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
132584
132915
|
uploaded_job_description_path?: string | null
|
|
132585
132916
|
source_document_id?: string | null
|
|
132917
|
+
rendered_jd_document_id?: string | null
|
|
132586
132918
|
is_plan_published?: boolean
|
|
132587
132919
|
is_posted?: boolean
|
|
132588
132920
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -133501,6 +133833,7 @@ export namespace Prisma {
|
|
|
133501
133833
|
candidate?: UserCreateNestedOneWithoutDocumentsInput
|
|
133502
133834
|
resume?: ResumeCreateNestedOneWithoutDocumentInput
|
|
133503
133835
|
job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
|
|
133836
|
+
job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
|
|
133504
133837
|
interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
|
|
133505
133838
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
|
|
133506
133839
|
assignment_solution?: AssignmentCreateNestedOneWithoutSolution_documentInput
|
|
@@ -133526,6 +133859,7 @@ export namespace Prisma {
|
|
|
133526
133859
|
is_active?: boolean
|
|
133527
133860
|
resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
|
|
133528
133861
|
job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
|
|
133862
|
+
job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
|
|
133529
133863
|
interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
|
|
133530
133864
|
job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
|
|
133531
133865
|
assignment_solution?: AssignmentUncheckedCreateNestedOneWithoutSolution_documentInput
|
|
@@ -135119,7 +135453,6 @@ export namespace Prisma {
|
|
|
135119
135453
|
order_no?: number | null
|
|
135120
135454
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
135121
135455
|
plan_type?: $Enums.EvaluationPlanType
|
|
135122
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
135123
135456
|
duration?: number | null
|
|
135124
135457
|
duration_unit?: $Enums.DurationUnit | null
|
|
135125
135458
|
deadline?: number | null
|
|
@@ -135153,7 +135486,6 @@ export namespace Prisma {
|
|
|
135153
135486
|
order_no?: number | null
|
|
135154
135487
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
135155
135488
|
plan_type?: $Enums.EvaluationPlanType
|
|
135156
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
135157
135489
|
duration?: number | null
|
|
135158
135490
|
duration_unit?: $Enums.DurationUnit | null
|
|
135159
135491
|
deadline?: number | null
|
|
@@ -135447,7 +135779,6 @@ export namespace Prisma {
|
|
|
135447
135779
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
135448
135780
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
135449
135781
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
135450
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
135451
135782
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
135452
135783
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
135453
135784
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -135481,7 +135812,6 @@ export namespace Prisma {
|
|
|
135481
135812
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
135482
135813
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
135483
135814
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
135484
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
135485
135815
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
135486
135816
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
135487
135817
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -136076,6 +136406,7 @@ export namespace Prisma {
|
|
|
136076
136406
|
updated_by: string
|
|
136077
136407
|
is_active?: boolean
|
|
136078
136408
|
openings?: number
|
|
136409
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
136079
136410
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
136080
136411
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
136081
136412
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -136107,6 +136438,7 @@ export namespace Prisma {
|
|
|
136107
136438
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
136108
136439
|
uploaded_job_description_path?: string | null
|
|
136109
136440
|
source_document_id?: string | null
|
|
136441
|
+
rendered_jd_document_id?: string | null
|
|
136110
136442
|
is_plan_published?: boolean
|
|
136111
136443
|
is_posted?: boolean
|
|
136112
136444
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -136161,6 +136493,7 @@ export namespace Prisma {
|
|
|
136161
136493
|
organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
|
|
136162
136494
|
candidate?: UserCreateNestedOneWithoutDocumentsInput
|
|
136163
136495
|
job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
|
|
136496
|
+
job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
|
|
136164
136497
|
interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
|
|
136165
136498
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
|
|
136166
136499
|
assignment_solution?: AssignmentCreateNestedOneWithoutSolution_documentInput
|
|
@@ -136186,6 +136519,7 @@ export namespace Prisma {
|
|
|
136186
136519
|
updated_by: string
|
|
136187
136520
|
is_active?: boolean
|
|
136188
136521
|
job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
|
|
136522
|
+
job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
|
|
136189
136523
|
interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
|
|
136190
136524
|
job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
|
|
136191
136525
|
assignment_solution?: AssignmentUncheckedCreateNestedOneWithoutSolution_documentInput
|
|
@@ -136209,7 +136543,6 @@ export namespace Prisma {
|
|
|
136209
136543
|
expected_ctc?: string | null
|
|
136210
136544
|
notice_period?: number | null
|
|
136211
136545
|
preferred_location?: string | null
|
|
136212
|
-
evaluationComment?: string | null
|
|
136213
136546
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
136214
136547
|
status?: $Enums.ApplicationStatus
|
|
136215
136548
|
created_at?: Date | string
|
|
@@ -136249,7 +136582,6 @@ export namespace Prisma {
|
|
|
136249
136582
|
expected_ctc?: string | null
|
|
136250
136583
|
notice_period?: number | null
|
|
136251
136584
|
preferred_location?: string | null
|
|
136252
|
-
evaluationComment?: string | null
|
|
136253
136585
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
136254
136586
|
status?: $Enums.ApplicationStatus
|
|
136255
136587
|
created_at?: Date | string
|
|
@@ -136920,6 +137252,7 @@ export namespace Prisma {
|
|
|
136920
137252
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
136921
137253
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
136922
137254
|
openings?: IntFieldUpdateOperationsInput | number
|
|
137255
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
136923
137256
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
136924
137257
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
136925
137258
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -136951,6 +137284,7 @@ export namespace Prisma {
|
|
|
136951
137284
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
136952
137285
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136953
137286
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137287
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136954
137288
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
136955
137289
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
136956
137290
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -137011,6 +137345,7 @@ export namespace Prisma {
|
|
|
137011
137345
|
organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
|
|
137012
137346
|
candidate?: UserUpdateOneWithoutDocumentsNestedInput
|
|
137013
137347
|
job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
|
|
137348
|
+
job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
|
|
137014
137349
|
interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
|
|
137015
137350
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
|
|
137016
137351
|
assignment_solution?: AssignmentUpdateOneWithoutSolution_documentNestedInput
|
|
@@ -137036,6 +137371,7 @@ export namespace Prisma {
|
|
|
137036
137371
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
137037
137372
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
137038
137373
|
job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
|
|
137374
|
+
job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
|
|
137039
137375
|
interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
|
|
137040
137376
|
job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
|
|
137041
137377
|
assignment_solution?: AssignmentUncheckedUpdateOneWithoutSolution_documentNestedInput
|
|
@@ -137949,6 +138285,7 @@ export namespace Prisma {
|
|
|
137949
138285
|
updated_by: string
|
|
137950
138286
|
is_active?: boolean
|
|
137951
138287
|
openings?: number
|
|
138288
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
137952
138289
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
137953
138290
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
137954
138291
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -137980,6 +138317,7 @@ export namespace Prisma {
|
|
|
137980
138317
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
137981
138318
|
uploaded_job_description_path?: string | null
|
|
137982
138319
|
source_document_id?: string | null
|
|
138320
|
+
rendered_jd_document_id?: string | null
|
|
137983
138321
|
is_plan_published?: boolean
|
|
137984
138322
|
is_posted?: boolean
|
|
137985
138323
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -138201,6 +138539,7 @@ export namespace Prisma {
|
|
|
138201
138539
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
138202
138540
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
138203
138541
|
openings?: IntFieldUpdateOperationsInput | number
|
|
138542
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
138204
138543
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
138205
138544
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
138206
138545
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -138232,6 +138571,7 @@ export namespace Prisma {
|
|
|
138232
138571
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
138233
138572
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
138234
138573
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
138574
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
138235
138575
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
138236
138576
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
138237
138577
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -138427,7 +138767,6 @@ export namespace Prisma {
|
|
|
138427
138767
|
expected_ctc?: string | null
|
|
138428
138768
|
notice_period?: number | null
|
|
138429
138769
|
preferred_location?: string | null
|
|
138430
|
-
evaluationComment?: string | null
|
|
138431
138770
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
138432
138771
|
status?: $Enums.ApplicationStatus
|
|
138433
138772
|
created_at?: Date | string
|
|
@@ -138467,7 +138806,6 @@ export namespace Prisma {
|
|
|
138467
138806
|
expected_ctc?: string | null
|
|
138468
138807
|
notice_period?: number | null
|
|
138469
138808
|
preferred_location?: string | null
|
|
138470
|
-
evaluationComment?: string | null
|
|
138471
138809
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
138472
138810
|
status?: $Enums.ApplicationStatus
|
|
138473
138811
|
created_at?: Date | string
|
|
@@ -138646,6 +138984,7 @@ export namespace Prisma {
|
|
|
138646
138984
|
updated_by: string
|
|
138647
138985
|
is_active?: boolean
|
|
138648
138986
|
openings?: number
|
|
138987
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
138649
138988
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
138650
138989
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
138651
138990
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -138677,6 +139016,7 @@ export namespace Prisma {
|
|
|
138677
139016
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
138678
139017
|
uploaded_job_description_path?: string | null
|
|
138679
139018
|
source_document_id?: string | null
|
|
139019
|
+
rendered_jd_document_id?: string | null
|
|
138680
139020
|
is_plan_published?: boolean
|
|
138681
139021
|
is_posted?: boolean
|
|
138682
139022
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -138729,6 +139069,7 @@ export namespace Prisma {
|
|
|
138729
139069
|
updated_by: string
|
|
138730
139070
|
is_active?: boolean
|
|
138731
139071
|
openings?: number
|
|
139072
|
+
rendered_jd_document?: DocumentCreateNestedOneWithoutJob_description_renderedInput
|
|
138732
139073
|
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
138733
139074
|
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
138734
139075
|
source_document?: DocumentCreateNestedOneWithoutJob_description_sourceInput
|
|
@@ -138759,6 +139100,7 @@ export namespace Prisma {
|
|
|
138759
139100
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
138760
139101
|
uploaded_job_description_path?: string | null
|
|
138761
139102
|
source_document_id?: string | null
|
|
139103
|
+
rendered_jd_document_id?: string | null
|
|
138762
139104
|
is_plan_published?: boolean
|
|
138763
139105
|
is_posted?: boolean
|
|
138764
139106
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -140155,6 +140497,7 @@ export namespace Prisma {
|
|
|
140155
140497
|
organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
|
|
140156
140498
|
resume?: ResumeCreateNestedOneWithoutDocumentInput
|
|
140157
140499
|
job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
|
|
140500
|
+
job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
|
|
140158
140501
|
interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
|
|
140159
140502
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
|
|
140160
140503
|
assignment_solution?: AssignmentCreateNestedOneWithoutSolution_documentInput
|
|
@@ -140180,6 +140523,7 @@ export namespace Prisma {
|
|
|
140180
140523
|
is_active?: boolean
|
|
140181
140524
|
resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
|
|
140182
140525
|
job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
|
|
140526
|
+
job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
|
|
140183
140527
|
interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
|
|
140184
140528
|
job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
|
|
140185
140529
|
assignment_solution?: AssignmentUncheckedCreateNestedOneWithoutSolution_documentInput
|
|
@@ -143188,7 +143532,6 @@ export namespace Prisma {
|
|
|
143188
143532
|
order_no?: number | null
|
|
143189
143533
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
143190
143534
|
plan_type?: $Enums.EvaluationPlanType
|
|
143191
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
143192
143535
|
duration?: number | null
|
|
143193
143536
|
duration_unit?: $Enums.DurationUnit | null
|
|
143194
143537
|
deadline?: number | null
|
|
@@ -143334,7 +143677,6 @@ export namespace Prisma {
|
|
|
143334
143677
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143335
143678
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
143336
143679
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
143337
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
143338
143680
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143339
143681
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
143340
143682
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -143367,7 +143709,6 @@ export namespace Prisma {
|
|
|
143367
143709
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143368
143710
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
143369
143711
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
143370
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
143371
143712
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143372
143713
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
143373
143714
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -143398,7 +143739,6 @@ export namespace Prisma {
|
|
|
143398
143739
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143399
143740
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
143400
143741
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
143401
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
143402
143742
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143403
143743
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
143404
143744
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -143425,7 +143765,6 @@ export namespace Prisma {
|
|
|
143425
143765
|
order_no?: number | null
|
|
143426
143766
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
143427
143767
|
plan_type?: $Enums.EvaluationPlanType
|
|
143428
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
143429
143768
|
duration?: number | null
|
|
143430
143769
|
duration_unit?: $Enums.DurationUnit | null
|
|
143431
143770
|
deadline?: number | null
|
|
@@ -143475,7 +143814,6 @@ export namespace Prisma {
|
|
|
143475
143814
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143476
143815
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
143477
143816
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
143478
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
143479
143817
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143480
143818
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
143481
143819
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -143508,7 +143846,6 @@ export namespace Prisma {
|
|
|
143508
143846
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143509
143847
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
143510
143848
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
143511
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
143512
143849
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143513
143850
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
143514
143851
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -143539,7 +143876,6 @@ export namespace Prisma {
|
|
|
143539
143876
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143540
143877
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
143541
143878
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
143542
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
143543
143879
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
143544
143880
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
143545
143881
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -144080,7 +144416,6 @@ export namespace Prisma {
|
|
|
144080
144416
|
expected_ctc?: string | null
|
|
144081
144417
|
notice_period?: number | null
|
|
144082
144418
|
preferred_location?: string | null
|
|
144083
|
-
evaluationComment?: string | null
|
|
144084
144419
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
144085
144420
|
status?: $Enums.ApplicationStatus
|
|
144086
144421
|
created_at?: Date | string
|
|
@@ -144348,7 +144683,6 @@ export namespace Prisma {
|
|
|
144348
144683
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
144349
144684
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
144350
144685
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
144351
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
144352
144686
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
144353
144687
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
144354
144688
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -144388,7 +144722,6 @@ export namespace Prisma {
|
|
|
144388
144722
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
144389
144723
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
144390
144724
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
144391
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
144392
144725
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
144393
144726
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
144394
144727
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -144423,7 +144756,6 @@ export namespace Prisma {
|
|
|
144423
144756
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
144424
144757
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
144425
144758
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
144426
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
144427
144759
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
144428
144760
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
144429
144761
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -144964,7 +145296,6 @@ export namespace Prisma {
|
|
|
144964
145296
|
expected_ctc?: string | null
|
|
144965
145297
|
notice_period?: number | null
|
|
144966
145298
|
preferred_location?: string | null
|
|
144967
|
-
evaluationComment?: string | null
|
|
144968
145299
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
144969
145300
|
status?: $Enums.ApplicationStatus
|
|
144970
145301
|
created_at?: Date | string
|
|
@@ -145106,7 +145437,6 @@ export namespace Prisma {
|
|
|
145106
145437
|
order_no?: number | null
|
|
145107
145438
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
145108
145439
|
plan_type?: $Enums.EvaluationPlanType
|
|
145109
|
-
share_scope?: $Enums.EvaluationPlanShareScope
|
|
145110
145440
|
duration?: number | null
|
|
145111
145441
|
duration_unit?: $Enums.DurationUnit | null
|
|
145112
145442
|
deadline?: number | null
|
|
@@ -145281,7 +145611,6 @@ export namespace Prisma {
|
|
|
145281
145611
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
145282
145612
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
145283
145613
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
145284
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
145285
145614
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
145286
145615
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
145287
145616
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -145321,7 +145650,6 @@ export namespace Prisma {
|
|
|
145321
145650
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
145322
145651
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
145323
145652
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
145324
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
145325
145653
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
145326
145654
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
145327
145655
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -145356,7 +145684,6 @@ export namespace Prisma {
|
|
|
145356
145684
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
145357
145685
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
145358
145686
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
145359
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
145360
145687
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
145361
145688
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
145362
145689
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -145744,7 +146071,6 @@ export namespace Prisma {
|
|
|
145744
146071
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
145745
146072
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
145746
146073
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
145747
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
145748
146074
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
145749
146075
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
145750
146076
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -145777,7 +146103,6 @@ export namespace Prisma {
|
|
|
145777
146103
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
145778
146104
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
145779
146105
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
145780
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
145781
146106
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
145782
146107
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
145783
146108
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -145808,7 +146133,6 @@ export namespace Prisma {
|
|
|
145808
146133
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
145809
146134
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
145810
146135
|
plan_type?: EnumEvaluationPlanTypeFieldUpdateOperationsInput | $Enums.EvaluationPlanType
|
|
145811
|
-
share_scope?: EnumEvaluationPlanShareScopeFieldUpdateOperationsInput | $Enums.EvaluationPlanShareScope
|
|
145812
146136
|
duration?: NullableIntFieldUpdateOperationsInput | number | null
|
|
145813
146137
|
duration_unit?: NullableEnumDurationUnitFieldUpdateOperationsInput | $Enums.DurationUnit | null
|
|
145814
146138
|
deadline?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -146489,6 +146813,7 @@ export namespace Prisma {
|
|
|
146489
146813
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
146490
146814
|
uploaded_job_description_path?: string | null
|
|
146491
146815
|
source_document_id?: string | null
|
|
146816
|
+
rendered_jd_document_id?: string | null
|
|
146492
146817
|
is_plan_published?: boolean
|
|
146493
146818
|
is_posted?: boolean
|
|
146494
146819
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -146519,6 +146844,7 @@ export namespace Prisma {
|
|
|
146519
146844
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
146520
146845
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
146521
146846
|
openings?: IntFieldUpdateOperationsInput | number
|
|
146847
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
146522
146848
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
146523
146849
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
146524
146850
|
applications?: ApplicationUpdateManyWithoutJob_descriptionNestedInput
|
|
@@ -146550,6 +146876,7 @@ export namespace Prisma {
|
|
|
146550
146876
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
146551
146877
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
146552
146878
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
146879
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
146553
146880
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
146554
146881
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
146555
146882
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -146589,6 +146916,7 @@ export namespace Prisma {
|
|
|
146589
146916
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
146590
146917
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
146591
146918
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
146919
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
146592
146920
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
146593
146921
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
146594
146922
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -146659,7 +146987,6 @@ export namespace Prisma {
|
|
|
146659
146987
|
expected_ctc?: string | null
|
|
146660
146988
|
notice_period?: number | null
|
|
146661
146989
|
preferred_location?: string | null
|
|
146662
|
-
evaluationComment?: string | null
|
|
146663
146990
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
146664
146991
|
status?: $Enums.ApplicationStatus
|
|
146665
146992
|
created_at?: Date | string
|
|
@@ -146689,6 +147016,7 @@ export namespace Prisma {
|
|
|
146689
147016
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
146690
147017
|
uploaded_job_description_path?: string | null
|
|
146691
147018
|
source_document_id?: string | null
|
|
147019
|
+
rendered_jd_document_id?: string | null
|
|
146692
147020
|
is_plan_published?: boolean
|
|
146693
147021
|
is_posted?: boolean
|
|
146694
147022
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -147315,7 +147643,6 @@ export namespace Prisma {
|
|
|
147315
147643
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147316
147644
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
147317
147645
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147318
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147319
147646
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
147320
147647
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
147321
147648
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -147355,7 +147682,6 @@ export namespace Prisma {
|
|
|
147355
147682
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147356
147683
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
147357
147684
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147358
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147359
147685
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
147360
147686
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
147361
147687
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -147390,7 +147716,6 @@ export namespace Prisma {
|
|
|
147390
147716
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147391
147717
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
147392
147718
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147393
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147394
147719
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
147395
147720
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
147396
147721
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -147455,6 +147780,7 @@ export namespace Prisma {
|
|
|
147455
147780
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
147456
147781
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
147457
147782
|
openings?: IntFieldUpdateOperationsInput | number
|
|
147783
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
147458
147784
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
147459
147785
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
147460
147786
|
applications?: ApplicationUpdateManyWithoutJob_descriptionNestedInput
|
|
@@ -147485,6 +147811,7 @@ export namespace Prisma {
|
|
|
147485
147811
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
147486
147812
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147487
147813
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147814
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147488
147815
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
147489
147816
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
147490
147817
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -147524,6 +147851,7 @@ export namespace Prisma {
|
|
|
147524
147851
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
147525
147852
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147526
147853
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147854
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
147527
147855
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
147528
147856
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
147529
147857
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -148578,6 +148906,7 @@ export namespace Prisma {
|
|
|
148578
148906
|
candidate?: UserUpdateOneWithoutDocumentsNestedInput
|
|
148579
148907
|
resume?: ResumeUpdateOneWithoutDocumentNestedInput
|
|
148580
148908
|
job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
|
|
148909
|
+
job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
|
|
148581
148910
|
interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
|
|
148582
148911
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
|
|
148583
148912
|
assignment_solution?: AssignmentUpdateOneWithoutSolution_documentNestedInput
|
|
@@ -148603,6 +148932,7 @@ export namespace Prisma {
|
|
|
148603
148932
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
148604
148933
|
resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
|
|
148605
148934
|
job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
|
|
148935
|
+
job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
|
|
148606
148936
|
interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
|
|
148607
148937
|
job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
|
|
148608
148938
|
assignment_solution?: AssignmentUncheckedUpdateOneWithoutSolution_documentNestedInput
|
|
@@ -148951,7 +149281,6 @@ export namespace Prisma {
|
|
|
148951
149281
|
expected_ctc?: string | null
|
|
148952
149282
|
notice_period?: number | null
|
|
148953
149283
|
preferred_location?: string | null
|
|
148954
|
-
evaluationComment?: string | null
|
|
148955
149284
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
148956
149285
|
status?: $Enums.ApplicationStatus
|
|
148957
149286
|
created_at?: Date | string
|
|
@@ -149100,7 +149429,6 @@ export namespace Prisma {
|
|
|
149100
149429
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
149101
149430
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
149102
149431
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
149103
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
149104
149432
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
149105
149433
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
149106
149434
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -149140,7 +149468,6 @@ export namespace Prisma {
|
|
|
149140
149468
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
149141
149469
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
149142
149470
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
149143
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
149144
149471
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
149145
149472
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
149146
149473
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -149175,7 +149502,6 @@ export namespace Prisma {
|
|
|
149175
149502
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
149176
149503
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
149177
149504
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
149178
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
149179
149505
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
149180
149506
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
149181
149507
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -149669,7 +149995,6 @@ export namespace Prisma {
|
|
|
149669
149995
|
expected_ctc?: string | null
|
|
149670
149996
|
notice_period?: number | null
|
|
149671
149997
|
preferred_location?: string | null
|
|
149672
|
-
evaluationComment?: string | null
|
|
149673
149998
|
fit_check_status?: $Enums.FitCheckStatus | null
|
|
149674
149999
|
status?: $Enums.ApplicationStatus
|
|
149675
150000
|
created_at?: Date | string
|
|
@@ -149704,6 +150029,7 @@ export namespace Prisma {
|
|
|
149704
150029
|
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
149705
150030
|
uploaded_job_description_path?: string | null
|
|
149706
150031
|
source_document_id?: string | null
|
|
150032
|
+
rendered_jd_document_id?: string | null
|
|
149707
150033
|
is_plan_published?: boolean
|
|
149708
150034
|
is_posted?: boolean
|
|
149709
150035
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -150241,7 +150567,6 @@ export namespace Prisma {
|
|
|
150241
150567
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150242
150568
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
150243
150569
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150244
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150245
150570
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
150246
150571
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
150247
150572
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -150281,7 +150606,6 @@ export namespace Prisma {
|
|
|
150281
150606
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150282
150607
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
150283
150608
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150284
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150285
150609
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
150286
150610
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
150287
150611
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -150316,7 +150640,6 @@ export namespace Prisma {
|
|
|
150316
150640
|
expected_ctc?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150317
150641
|
notice_period?: NullableIntFieldUpdateOperationsInput | number | null
|
|
150318
150642
|
preferred_location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150319
|
-
evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150320
150643
|
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
150321
150644
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
150322
150645
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -150406,6 +150729,7 @@ export namespace Prisma {
|
|
|
150406
150729
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
150407
150730
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
150408
150731
|
openings?: IntFieldUpdateOperationsInput | number
|
|
150732
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
150409
150733
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
150410
150734
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
150411
150735
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -150437,6 +150761,7 @@ export namespace Prisma {
|
|
|
150437
150761
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
150438
150762
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150439
150763
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150764
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150440
150765
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
150441
150766
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
150442
150767
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -150476,6 +150801,7 @@ export namespace Prisma {
|
|
|
150476
150801
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
150477
150802
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150478
150803
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150804
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150479
150805
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
150480
150806
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
150481
150807
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -150507,6 +150833,7 @@ export namespace Prisma {
|
|
|
150507
150833
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
150508
150834
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
150509
150835
|
openings?: IntFieldUpdateOperationsInput | number
|
|
150836
|
+
rendered_jd_document?: DocumentUpdateOneWithoutJob_description_renderedNestedInput
|
|
150510
150837
|
job_profile?: JobProfileUpdateOneWithoutJob_descriptionsNestedInput
|
|
150511
150838
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_descriptionsNestedInput
|
|
150512
150839
|
source_document?: DocumentUpdateOneWithoutJob_description_sourceNestedInput
|
|
@@ -150537,6 +150864,7 @@ export namespace Prisma {
|
|
|
150537
150864
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
150538
150865
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150539
150866
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150867
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150540
150868
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
150541
150869
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
150542
150870
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -150576,6 +150904,7 @@ export namespace Prisma {
|
|
|
150576
150904
|
recommendedQuestions?: JobDescriptionUpdaterecommendedQuestionsInput | InputJsonValue[]
|
|
150577
150905
|
uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150578
150906
|
source_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150907
|
+
rendered_jd_document_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
150579
150908
|
is_plan_published?: BoolFieldUpdateOperationsInput | boolean
|
|
150580
150909
|
is_posted?: BoolFieldUpdateOperationsInput | boolean
|
|
150581
150910
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -152145,6 +152474,7 @@ export namespace Prisma {
|
|
|
152145
152474
|
organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
|
|
152146
152475
|
resume?: ResumeUpdateOneWithoutDocumentNestedInput
|
|
152147
152476
|
job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
|
|
152477
|
+
job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
|
|
152148
152478
|
interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
|
|
152149
152479
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
|
|
152150
152480
|
assignment_solution?: AssignmentUpdateOneWithoutSolution_documentNestedInput
|
|
@@ -152170,6 +152500,7 @@ export namespace Prisma {
|
|
|
152170
152500
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
152171
152501
|
resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
|
|
152172
152502
|
job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
|
|
152503
|
+
job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
|
|
152173
152504
|
interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
|
|
152174
152505
|
job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
|
|
152175
152506
|
assignment_solution?: AssignmentUncheckedUpdateOneWithoutSolution_documentNestedInput
|