@adaptware/eagles-db 0.1.67 → 0.1.70

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/client/index.d.ts CHANGED
@@ -5680,6 +5680,7 @@ export namespace Prisma {
5680
5680
  resume: number
5681
5681
  job_description: number
5682
5682
  hiring_manager_job_descriptions: number
5683
+ hiring_manager_job_profiles: number
5683
5684
  approvals: number
5684
5685
  sent_messages: number
5685
5686
  received_messages: number
@@ -5705,6 +5706,7 @@ export namespace Prisma {
5705
5706
  resume?: boolean | UserCountOutputTypeCountResumeArgs
5706
5707
  job_description?: boolean | UserCountOutputTypeCountJob_descriptionArgs
5707
5708
  hiring_manager_job_descriptions?: boolean | UserCountOutputTypeCountHiring_manager_job_descriptionsArgs
5709
+ hiring_manager_job_profiles?: boolean | UserCountOutputTypeCountHiring_manager_job_profilesArgs
5708
5710
  approvals?: boolean | UserCountOutputTypeCountApprovalsArgs
5709
5711
  sent_messages?: boolean | UserCountOutputTypeCountSent_messagesArgs
5710
5712
  received_messages?: boolean | UserCountOutputTypeCountReceived_messagesArgs
@@ -5764,6 +5766,13 @@ export namespace Prisma {
5764
5766
  where?: JobDescriptionWhereInput
5765
5767
  }
5766
5768
 
5769
+ /**
5770
+ * UserCountOutputType without action
5771
+ */
5772
+ export type UserCountOutputTypeCountHiring_manager_job_profilesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5773
+ where?: JobProfileWhereInput
5774
+ }
5775
+
5767
5776
  /**
5768
5777
  * UserCountOutputType without action
5769
5778
  */
@@ -35954,6 +35963,7 @@ export namespace Prisma {
35954
35963
  uploaded_job_description_path: number
35955
35964
  is_plan_published: number
35956
35965
  is_posted: number
35966
+ summary: number
35957
35967
  ai_insight: number
35958
35968
  job_fit_comparison: number
35959
35969
  created_at: number
@@ -36019,6 +36029,7 @@ export namespace Prisma {
36019
36029
  uploaded_job_description_path?: true
36020
36030
  is_plan_published?: true
36021
36031
  is_posted?: true
36032
+ summary?: true
36022
36033
  ai_insight?: true
36023
36034
  job_fit_comparison?: true
36024
36035
  created_at?: true
@@ -36127,6 +36138,7 @@ export namespace Prisma {
36127
36138
  uploaded_job_description_path: string | null
36128
36139
  is_plan_published: boolean
36129
36140
  is_posted: boolean
36141
+ summary: JsonValue | null
36130
36142
  ai_insight: JsonValue | null
36131
36143
  job_fit_comparison: JsonValue | null
36132
36144
  created_at: Date
@@ -36167,6 +36179,7 @@ export namespace Prisma {
36167
36179
  uploaded_job_description_path?: boolean
36168
36180
  is_plan_published?: boolean
36169
36181
  is_posted?: boolean
36182
+ summary?: boolean
36170
36183
  ai_insight?: boolean
36171
36184
  job_fit_comparison?: boolean
36172
36185
  created_at?: boolean
@@ -36206,6 +36219,7 @@ export namespace Prisma {
36206
36219
  uploaded_job_description_path?: boolean
36207
36220
  is_plan_published?: boolean
36208
36221
  is_posted?: boolean
36222
+ summary?: boolean
36209
36223
  ai_insight?: boolean
36210
36224
  job_fit_comparison?: boolean
36211
36225
  created_at?: boolean
@@ -36230,6 +36244,7 @@ export namespace Prisma {
36230
36244
  uploaded_job_description_path?: boolean
36231
36245
  is_plan_published?: boolean
36232
36246
  is_posted?: boolean
36247
+ summary?: boolean
36233
36248
  ai_insight?: boolean
36234
36249
  job_fit_comparison?: boolean
36235
36250
  created_at?: boolean
@@ -36254,6 +36269,7 @@ export namespace Prisma {
36254
36269
  uploaded_job_description_path?: boolean
36255
36270
  is_plan_published?: boolean
36256
36271
  is_posted?: boolean
36272
+ summary?: boolean
36257
36273
  ai_insight?: boolean
36258
36274
  job_fit_comparison?: boolean
36259
36275
  created_at?: boolean
@@ -36265,7 +36281,7 @@ export namespace Prisma {
36265
36281
  job_profile_id?: boolean
36266
36282
  }
36267
36283
 
36268
- export type JobDescriptionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "hiring_manager_id" | "status" | "screeningQuestions" | "recommendedQuestions" | "uploaded_job_description_path" | "is_plan_published" | "is_posted" | "ai_insight" | "job_fit_comparison" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "openings" | "job_profile_id", ExtArgs["result"]["jobDescription"]>
36284
+ export type JobDescriptionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "hiring_manager_id" | "status" | "screeningQuestions" | "recommendedQuestions" | "uploaded_job_description_path" | "is_plan_published" | "is_posted" | "summary" | "ai_insight" | "job_fit_comparison" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "openings" | "job_profile_id", ExtArgs["result"]["jobDescription"]>
36269
36285
  export type JobDescriptionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
36270
36286
  job_profile?: boolean | JobDescription$job_profileArgs<ExtArgs>
36271
36287
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
@@ -36328,6 +36344,7 @@ export namespace Prisma {
36328
36344
  uploaded_job_description_path: string | null
36329
36345
  is_plan_published: boolean
36330
36346
  is_posted: boolean
36347
+ summary: Prisma.JsonValue | null
36331
36348
  ai_insight: Prisma.JsonValue | null
36332
36349
  job_fit_comparison: Prisma.JsonValue | null
36333
36350
  created_at: Date
@@ -36786,6 +36803,7 @@ export namespace Prisma {
36786
36803
  readonly uploaded_job_description_path: FieldRef<"JobDescription", 'String'>
36787
36804
  readonly is_plan_published: FieldRef<"JobDescription", 'Boolean'>
36788
36805
  readonly is_posted: FieldRef<"JobDescription", 'Boolean'>
36806
+ readonly summary: FieldRef<"JobDescription", 'Json'>
36789
36807
  readonly ai_insight: FieldRef<"JobDescription", 'Json'>
36790
36808
  readonly job_fit_comparison: FieldRef<"JobDescription", 'Json'>
36791
36809
  readonly created_at: FieldRef<"JobDescription", 'DateTime'>
@@ -38701,17 +38719,20 @@ export namespace Prisma {
38701
38719
  export type JobProfileMinAggregateOutputType = {
38702
38720
  id: string | null
38703
38721
  organisation_id: string | null
38722
+ hiring_manager_id: string | null
38704
38723
  created_by: string | null
38705
38724
  assigned_to: string | null
38706
38725
  status: $Enums.JobProfileStatus | null
38707
38726
  title: string | null
38708
38727
  role_type: string | null
38709
38728
  work_arrangement: string | null
38729
+ employment_type: string | null
38710
38730
  location: string | null
38711
38731
  experience_min: string | null
38712
38732
  reporting: string | null
38713
38733
  comp_range: string | null
38714
38734
  comp_benchmark: string | null
38735
+ budget: string | null
38715
38736
  current_phase: string | null
38716
38737
  orion_execution_id: string | null
38717
38738
  created_at: Date | null
@@ -38722,17 +38743,20 @@ export namespace Prisma {
38722
38743
  export type JobProfileMaxAggregateOutputType = {
38723
38744
  id: string | null
38724
38745
  organisation_id: string | null
38746
+ hiring_manager_id: string | null
38725
38747
  created_by: string | null
38726
38748
  assigned_to: string | null
38727
38749
  status: $Enums.JobProfileStatus | null
38728
38750
  title: string | null
38729
38751
  role_type: string | null
38730
38752
  work_arrangement: string | null
38753
+ employment_type: string | null
38731
38754
  location: string | null
38732
38755
  experience_min: string | null
38733
38756
  reporting: string | null
38734
38757
  comp_range: string | null
38735
38758
  comp_benchmark: string | null
38759
+ budget: string | null
38736
38760
  current_phase: string | null
38737
38761
  orion_execution_id: string | null
38738
38762
  created_at: Date | null
@@ -38743,17 +38767,20 @@ export namespace Prisma {
38743
38767
  export type JobProfileCountAggregateOutputType = {
38744
38768
  id: number
38745
38769
  organisation_id: number
38770
+ hiring_manager_id: number
38746
38771
  created_by: number
38747
38772
  assigned_to: number
38748
38773
  status: number
38749
38774
  title: number
38750
38775
  role_type: number
38751
38776
  work_arrangement: number
38777
+ employment_type: number
38752
38778
  location: number
38753
38779
  experience_min: number
38754
38780
  reporting: number
38755
38781
  comp_range: number
38756
38782
  comp_benchmark: number
38783
+ budget: number
38757
38784
  responsibilities: number
38758
38785
  deliverables: number
38759
38786
  must_have_skills: number
@@ -38775,17 +38802,20 @@ export namespace Prisma {
38775
38802
  export type JobProfileMinAggregateInputType = {
38776
38803
  id?: true
38777
38804
  organisation_id?: true
38805
+ hiring_manager_id?: true
38778
38806
  created_by?: true
38779
38807
  assigned_to?: true
38780
38808
  status?: true
38781
38809
  title?: true
38782
38810
  role_type?: true
38783
38811
  work_arrangement?: true
38812
+ employment_type?: true
38784
38813
  location?: true
38785
38814
  experience_min?: true
38786
38815
  reporting?: true
38787
38816
  comp_range?: true
38788
38817
  comp_benchmark?: true
38818
+ budget?: true
38789
38819
  current_phase?: true
38790
38820
  orion_execution_id?: true
38791
38821
  created_at?: true
@@ -38796,17 +38826,20 @@ export namespace Prisma {
38796
38826
  export type JobProfileMaxAggregateInputType = {
38797
38827
  id?: true
38798
38828
  organisation_id?: true
38829
+ hiring_manager_id?: true
38799
38830
  created_by?: true
38800
38831
  assigned_to?: true
38801
38832
  status?: true
38802
38833
  title?: true
38803
38834
  role_type?: true
38804
38835
  work_arrangement?: true
38836
+ employment_type?: true
38805
38837
  location?: true
38806
38838
  experience_min?: true
38807
38839
  reporting?: true
38808
38840
  comp_range?: true
38809
38841
  comp_benchmark?: true
38842
+ budget?: true
38810
38843
  current_phase?: true
38811
38844
  orion_execution_id?: true
38812
38845
  created_at?: true
@@ -38817,17 +38850,20 @@ export namespace Prisma {
38817
38850
  export type JobProfileCountAggregateInputType = {
38818
38851
  id?: true
38819
38852
  organisation_id?: true
38853
+ hiring_manager_id?: true
38820
38854
  created_by?: true
38821
38855
  assigned_to?: true
38822
38856
  status?: true
38823
38857
  title?: true
38824
38858
  role_type?: true
38825
38859
  work_arrangement?: true
38860
+ employment_type?: true
38826
38861
  location?: true
38827
38862
  experience_min?: true
38828
38863
  reporting?: true
38829
38864
  comp_range?: true
38830
38865
  comp_benchmark?: true
38866
+ budget?: true
38831
38867
  responsibilities?: true
38832
38868
  deliverables?: true
38833
38869
  must_have_skills?: true
@@ -38920,17 +38956,20 @@ export namespace Prisma {
38920
38956
  export type JobProfileGroupByOutputType = {
38921
38957
  id: string
38922
38958
  organisation_id: string
38959
+ hiring_manager_id: string | null
38923
38960
  created_by: string
38924
38961
  assigned_to: string | null
38925
38962
  status: $Enums.JobProfileStatus
38926
38963
  title: string | null
38927
38964
  role_type: string | null
38928
38965
  work_arrangement: string | null
38966
+ employment_type: string | null
38929
38967
  location: string | null
38930
38968
  experience_min: string | null
38931
38969
  reporting: string | null
38932
38970
  comp_range: string | null
38933
38971
  comp_benchmark: string | null
38972
+ budget: string | null
38934
38973
  responsibilities: JsonValue | null
38935
38974
  deliverables: JsonValue | null
38936
38975
  must_have_skills: JsonValue | null
@@ -38967,17 +39006,20 @@ export namespace Prisma {
38967
39006
  export type JobProfileSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
38968
39007
  id?: boolean
38969
39008
  organisation_id?: boolean
39009
+ hiring_manager_id?: boolean
38970
39010
  created_by?: boolean
38971
39011
  assigned_to?: boolean
38972
39012
  status?: boolean
38973
39013
  title?: boolean
38974
39014
  role_type?: boolean
38975
39015
  work_arrangement?: boolean
39016
+ employment_type?: boolean
38976
39017
  location?: boolean
38977
39018
  experience_min?: boolean
38978
39019
  reporting?: boolean
38979
39020
  comp_range?: boolean
38980
39021
  comp_benchmark?: boolean
39022
+ budget?: boolean
38981
39023
  responsibilities?: boolean
38982
39024
  deliverables?: boolean
38983
39025
  must_have_skills?: boolean
@@ -38993,6 +39035,7 @@ export namespace Prisma {
38993
39035
  updated_at?: boolean
38994
39036
  is_active?: boolean
38995
39037
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
39038
+ hiring_manager?: boolean | JobProfile$hiring_managerArgs<ExtArgs>
38996
39039
  creator?: boolean | UserDefaultArgs<ExtArgs>
38997
39040
  assignee?: boolean | JobProfile$assigneeArgs<ExtArgs>
38998
39041
  job_descriptions?: boolean | JobProfile$job_descriptionsArgs<ExtArgs>
@@ -39002,17 +39045,20 @@ export namespace Prisma {
39002
39045
  export type JobProfileSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
39003
39046
  id?: boolean
39004
39047
  organisation_id?: boolean
39048
+ hiring_manager_id?: boolean
39005
39049
  created_by?: boolean
39006
39050
  assigned_to?: boolean
39007
39051
  status?: boolean
39008
39052
  title?: boolean
39009
39053
  role_type?: boolean
39010
39054
  work_arrangement?: boolean
39055
+ employment_type?: boolean
39011
39056
  location?: boolean
39012
39057
  experience_min?: boolean
39013
39058
  reporting?: boolean
39014
39059
  comp_range?: boolean
39015
39060
  comp_benchmark?: boolean
39061
+ budget?: boolean
39016
39062
  responsibilities?: boolean
39017
39063
  deliverables?: boolean
39018
39064
  must_have_skills?: boolean
@@ -39028,6 +39074,7 @@ export namespace Prisma {
39028
39074
  updated_at?: boolean
39029
39075
  is_active?: boolean
39030
39076
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
39077
+ hiring_manager?: boolean | JobProfile$hiring_managerArgs<ExtArgs>
39031
39078
  creator?: boolean | UserDefaultArgs<ExtArgs>
39032
39079
  assignee?: boolean | JobProfile$assigneeArgs<ExtArgs>
39033
39080
  }, ExtArgs["result"]["jobProfile"]>
@@ -39035,17 +39082,20 @@ export namespace Prisma {
39035
39082
  export type JobProfileSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
39036
39083
  id?: boolean
39037
39084
  organisation_id?: boolean
39085
+ hiring_manager_id?: boolean
39038
39086
  created_by?: boolean
39039
39087
  assigned_to?: boolean
39040
39088
  status?: boolean
39041
39089
  title?: boolean
39042
39090
  role_type?: boolean
39043
39091
  work_arrangement?: boolean
39092
+ employment_type?: boolean
39044
39093
  location?: boolean
39045
39094
  experience_min?: boolean
39046
39095
  reporting?: boolean
39047
39096
  comp_range?: boolean
39048
39097
  comp_benchmark?: boolean
39098
+ budget?: boolean
39049
39099
  responsibilities?: boolean
39050
39100
  deliverables?: boolean
39051
39101
  must_have_skills?: boolean
@@ -39061,6 +39111,7 @@ export namespace Prisma {
39061
39111
  updated_at?: boolean
39062
39112
  is_active?: boolean
39063
39113
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
39114
+ hiring_manager?: boolean | JobProfile$hiring_managerArgs<ExtArgs>
39064
39115
  creator?: boolean | UserDefaultArgs<ExtArgs>
39065
39116
  assignee?: boolean | JobProfile$assigneeArgs<ExtArgs>
39066
39117
  }, ExtArgs["result"]["jobProfile"]>
@@ -39068,17 +39119,20 @@ export namespace Prisma {
39068
39119
  export type JobProfileSelectScalar = {
39069
39120
  id?: boolean
39070
39121
  organisation_id?: boolean
39122
+ hiring_manager_id?: boolean
39071
39123
  created_by?: boolean
39072
39124
  assigned_to?: boolean
39073
39125
  status?: boolean
39074
39126
  title?: boolean
39075
39127
  role_type?: boolean
39076
39128
  work_arrangement?: boolean
39129
+ employment_type?: boolean
39077
39130
  location?: boolean
39078
39131
  experience_min?: boolean
39079
39132
  reporting?: boolean
39080
39133
  comp_range?: boolean
39081
39134
  comp_benchmark?: boolean
39135
+ budget?: boolean
39082
39136
  responsibilities?: boolean
39083
39137
  deliverables?: boolean
39084
39138
  must_have_skills?: boolean
@@ -39095,9 +39149,10 @@ export namespace Prisma {
39095
39149
  is_active?: boolean
39096
39150
  }
39097
39151
 
39098
- export type JobProfileOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "created_by" | "assigned_to" | "status" | "title" | "role_type" | "work_arrangement" | "location" | "experience_min" | "reporting" | "comp_range" | "comp_benchmark" | "responsibilities" | "deliverables" | "must_have_skills" | "nice_to_have_skills" | "dealbreakers" | "culture" | "success_metrics" | "competencies" | "conversation_history" | "current_phase" | "orion_execution_id" | "created_at" | "updated_at" | "is_active", ExtArgs["result"]["jobProfile"]>
39152
+ export type JobProfileOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "hiring_manager_id" | "created_by" | "assigned_to" | "status" | "title" | "role_type" | "work_arrangement" | "employment_type" | "location" | "experience_min" | "reporting" | "comp_range" | "comp_benchmark" | "budget" | "responsibilities" | "deliverables" | "must_have_skills" | "nice_to_have_skills" | "dealbreakers" | "culture" | "success_metrics" | "competencies" | "conversation_history" | "current_phase" | "orion_execution_id" | "created_at" | "updated_at" | "is_active", ExtArgs["result"]["jobProfile"]>
39099
39153
  export type JobProfileInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
39100
39154
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
39155
+ hiring_manager?: boolean | JobProfile$hiring_managerArgs<ExtArgs>
39101
39156
  creator?: boolean | UserDefaultArgs<ExtArgs>
39102
39157
  assignee?: boolean | JobProfile$assigneeArgs<ExtArgs>
39103
39158
  job_descriptions?: boolean | JobProfile$job_descriptionsArgs<ExtArgs>
@@ -39105,11 +39160,13 @@ export namespace Prisma {
39105
39160
  }
39106
39161
  export type JobProfileIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
39107
39162
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
39163
+ hiring_manager?: boolean | JobProfile$hiring_managerArgs<ExtArgs>
39108
39164
  creator?: boolean | UserDefaultArgs<ExtArgs>
39109
39165
  assignee?: boolean | JobProfile$assigneeArgs<ExtArgs>
39110
39166
  }
39111
39167
  export type JobProfileIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
39112
39168
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
39169
+ hiring_manager?: boolean | JobProfile$hiring_managerArgs<ExtArgs>
39113
39170
  creator?: boolean | UserDefaultArgs<ExtArgs>
39114
39171
  assignee?: boolean | JobProfile$assigneeArgs<ExtArgs>
39115
39172
  }
@@ -39118,6 +39175,7 @@ export namespace Prisma {
39118
39175
  name: "JobProfile"
39119
39176
  objects: {
39120
39177
  organisation: Prisma.$OrganisationPayload<ExtArgs>
39178
+ hiring_manager: Prisma.$UserPayload<ExtArgs> | null
39121
39179
  creator: Prisma.$UserPayload<ExtArgs>
39122
39180
  assignee: Prisma.$UserPayload<ExtArgs> | null
39123
39181
  job_descriptions: Prisma.$JobDescriptionPayload<ExtArgs>[]
@@ -39125,17 +39183,20 @@ export namespace Prisma {
39125
39183
  scalars: $Extensions.GetPayloadResult<{
39126
39184
  id: string
39127
39185
  organisation_id: string
39186
+ hiring_manager_id: string | null
39128
39187
  created_by: string
39129
39188
  assigned_to: string | null
39130
39189
  status: $Enums.JobProfileStatus
39131
39190
  title: string | null
39132
39191
  role_type: string | null
39133
39192
  work_arrangement: string | null
39193
+ employment_type: string | null
39134
39194
  location: string | null
39135
39195
  experience_min: string | null
39136
39196
  reporting: string | null
39137
39197
  comp_range: string | null
39138
39198
  comp_benchmark: string | null
39199
+ budget: string | null
39139
39200
  responsibilities: Prisma.JsonValue | null
39140
39201
  deliverables: Prisma.JsonValue | null
39141
39202
  must_have_skills: Prisma.JsonValue | null
@@ -39545,6 +39606,7 @@ export namespace Prisma {
39545
39606
  export interface Prisma__JobProfileClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
39546
39607
  readonly [Symbol.toStringTag]: "PrismaPromise"
39547
39608
  organisation<T extends OrganisationDefaultArgs<ExtArgs> = {}>(args?: Subset<T, OrganisationDefaultArgs<ExtArgs>>): Prisma__OrganisationClient<$Result.GetResult<Prisma.$OrganisationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
39609
+ hiring_manager<T extends JobProfile$hiring_managerArgs<ExtArgs> = {}>(args?: Subset<T, JobProfile$hiring_managerArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
39548
39610
  creator<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
39549
39611
  assignee<T extends JobProfile$assigneeArgs<ExtArgs> = {}>(args?: Subset<T, JobProfile$assigneeArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
39550
39612
  job_descriptions<T extends JobProfile$job_descriptionsArgs<ExtArgs> = {}>(args?: Subset<T, JobProfile$job_descriptionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$JobDescriptionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
@@ -39579,17 +39641,20 @@ export namespace Prisma {
39579
39641
  interface JobProfileFieldRefs {
39580
39642
  readonly id: FieldRef<"JobProfile", 'String'>
39581
39643
  readonly organisation_id: FieldRef<"JobProfile", 'String'>
39644
+ readonly hiring_manager_id: FieldRef<"JobProfile", 'String'>
39582
39645
  readonly created_by: FieldRef<"JobProfile", 'String'>
39583
39646
  readonly assigned_to: FieldRef<"JobProfile", 'String'>
39584
39647
  readonly status: FieldRef<"JobProfile", 'JobProfileStatus'>
39585
39648
  readonly title: FieldRef<"JobProfile", 'String'>
39586
39649
  readonly role_type: FieldRef<"JobProfile", 'String'>
39587
39650
  readonly work_arrangement: FieldRef<"JobProfile", 'String'>
39651
+ readonly employment_type: FieldRef<"JobProfile", 'String'>
39588
39652
  readonly location: FieldRef<"JobProfile", 'String'>
39589
39653
  readonly experience_min: FieldRef<"JobProfile", 'String'>
39590
39654
  readonly reporting: FieldRef<"JobProfile", 'String'>
39591
39655
  readonly comp_range: FieldRef<"JobProfile", 'String'>
39592
39656
  readonly comp_benchmark: FieldRef<"JobProfile", 'String'>
39657
+ readonly budget: FieldRef<"JobProfile", 'String'>
39593
39658
  readonly responsibilities: FieldRef<"JobProfile", 'Json'>
39594
39659
  readonly deliverables: FieldRef<"JobProfile", 'Json'>
39595
39660
  readonly must_have_skills: FieldRef<"JobProfile", 'Json'>
@@ -39999,6 +40064,25 @@ export namespace Prisma {
39999
40064
  limit?: number
40000
40065
  }
40001
40066
 
40067
+ /**
40068
+ * JobProfile.hiring_manager
40069
+ */
40070
+ export type JobProfile$hiring_managerArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
40071
+ /**
40072
+ * Select specific fields to fetch from the User
40073
+ */
40074
+ select?: UserSelect<ExtArgs> | null
40075
+ /**
40076
+ * Omit specific fields from the User
40077
+ */
40078
+ omit?: UserOmit<ExtArgs> | null
40079
+ /**
40080
+ * Choose, which related nodes to fetch as well
40081
+ */
40082
+ include?: UserInclude<ExtArgs> | null
40083
+ where?: UserWhereInput
40084
+ }
40085
+
40002
40086
  /**
40003
40087
  * JobProfile.assignee
40004
40088
  */
@@ -49283,6 +49367,7 @@ export namespace Prisma {
49283
49367
  organisation_id: number
49284
49368
  job_description_id: number
49285
49369
  uploaded_resume_path: number
49370
+ summary: number
49286
49371
  created_at: number
49287
49372
  updated_at: number
49288
49373
  created_by: number
@@ -49338,6 +49423,7 @@ export namespace Prisma {
49338
49423
  organisation_id?: true
49339
49424
  job_description_id?: true
49340
49425
  uploaded_resume_path?: true
49426
+ summary?: true
49341
49427
  created_at?: true
49342
49428
  updated_at?: true
49343
49429
  created_by?: true
@@ -49440,6 +49526,7 @@ export namespace Prisma {
49440
49526
  organisation_id: string | null
49441
49527
  job_description_id: string | null
49442
49528
  uploaded_resume_path: string | null
49529
+ summary: JsonValue | null
49443
49530
  created_at: Date
49444
49531
  updated_at: Date
49445
49532
  created_by: string
@@ -49474,6 +49561,7 @@ export namespace Prisma {
49474
49561
  organisation_id?: boolean
49475
49562
  job_description_id?: boolean
49476
49563
  uploaded_resume_path?: boolean
49564
+ summary?: boolean
49477
49565
  created_at?: boolean
49478
49566
  updated_at?: boolean
49479
49567
  created_by?: boolean
@@ -49499,6 +49587,7 @@ export namespace Prisma {
49499
49587
  organisation_id?: boolean
49500
49588
  job_description_id?: boolean
49501
49589
  uploaded_resume_path?: boolean
49590
+ summary?: boolean
49502
49591
  created_at?: boolean
49503
49592
  updated_at?: boolean
49504
49593
  created_by?: boolean
@@ -49517,6 +49606,7 @@ export namespace Prisma {
49517
49606
  organisation_id?: boolean
49518
49607
  job_description_id?: boolean
49519
49608
  uploaded_resume_path?: boolean
49609
+ summary?: boolean
49520
49610
  created_at?: boolean
49521
49611
  updated_at?: boolean
49522
49612
  created_by?: boolean
@@ -49535,6 +49625,7 @@ export namespace Prisma {
49535
49625
  organisation_id?: boolean
49536
49626
  job_description_id?: boolean
49537
49627
  uploaded_resume_path?: boolean
49628
+ summary?: boolean
49538
49629
  created_at?: boolean
49539
49630
  updated_at?: boolean
49540
49631
  created_by?: boolean
@@ -49544,7 +49635,7 @@ export namespace Prisma {
49544
49635
  yearsOfExperience?: boolean
49545
49636
  }
49546
49637
 
49547
- export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "name" | "yearsOfExperience", ExtArgs["result"]["resume"]>
49638
+ export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "summary" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "name" | "yearsOfExperience", ExtArgs["result"]["resume"]>
49548
49639
  export type ResumeInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
49549
49640
  user?: boolean | Resume$userArgs<ExtArgs>
49550
49641
  organisation?: boolean | Resume$organisationArgs<ExtArgs>
@@ -49587,6 +49678,7 @@ export namespace Prisma {
49587
49678
  organisation_id: string | null
49588
49679
  job_description_id: string | null
49589
49680
  uploaded_resume_path: string | null
49681
+ summary: Prisma.JsonValue | null
49590
49682
  created_at: Date
49591
49683
  updated_at: Date
49592
49684
  created_by: string
@@ -50031,6 +50123,7 @@ export namespace Prisma {
50031
50123
  readonly organisation_id: FieldRef<"Resume", 'String'>
50032
50124
  readonly job_description_id: FieldRef<"Resume", 'String'>
50033
50125
  readonly uploaded_resume_path: FieldRef<"Resume", 'String'>
50126
+ readonly summary: FieldRef<"Resume", 'Json'>
50034
50127
  readonly created_at: FieldRef<"Resume", 'DateTime'>
50035
50128
  readonly updated_at: FieldRef<"Resume", 'DateTime'>
50036
50129
  readonly created_by: FieldRef<"Resume", 'String'>
@@ -54623,6 +54716,7 @@ export namespace Prisma {
54623
54716
  user_profile?: boolean | User$user_profileArgs<ExtArgs>
54624
54717
  job_description?: boolean | User$job_descriptionArgs<ExtArgs>
54625
54718
  hiring_manager_job_descriptions?: boolean | User$hiring_manager_job_descriptionsArgs<ExtArgs>
54719
+ hiring_manager_job_profiles?: boolean | User$hiring_manager_job_profilesArgs<ExtArgs>
54626
54720
  approvals?: boolean | User$approvalsArgs<ExtArgs>
54627
54721
  sent_messages?: boolean | User$sent_messagesArgs<ExtArgs>
54628
54722
  received_messages?: boolean | User$received_messagesArgs<ExtArgs>
@@ -54768,6 +54862,7 @@ export namespace Prisma {
54768
54862
  user_profile?: boolean | User$user_profileArgs<ExtArgs>
54769
54863
  job_description?: boolean | User$job_descriptionArgs<ExtArgs>
54770
54864
  hiring_manager_job_descriptions?: boolean | User$hiring_manager_job_descriptionsArgs<ExtArgs>
54865
+ hiring_manager_job_profiles?: boolean | User$hiring_manager_job_profilesArgs<ExtArgs>
54771
54866
  approvals?: boolean | User$approvalsArgs<ExtArgs>
54772
54867
  sent_messages?: boolean | User$sent_messagesArgs<ExtArgs>
54773
54868
  received_messages?: boolean | User$received_messagesArgs<ExtArgs>
@@ -54813,6 +54908,7 @@ export namespace Prisma {
54813
54908
  user_profile: Prisma.$UserProfilePayload<ExtArgs> | null
54814
54909
  job_description: Prisma.$JobDescriptionPayload<ExtArgs>[]
54815
54910
  hiring_manager_job_descriptions: Prisma.$JobDescriptionPayload<ExtArgs>[]
54911
+ hiring_manager_job_profiles: Prisma.$JobProfilePayload<ExtArgs>[]
54816
54912
  approvals: Prisma.$ApprovalPayload<ExtArgs>[]
54817
54913
  sent_messages: Prisma.$MessagePayload<ExtArgs>[]
54818
54914
  received_messages: Prisma.$MessagePayload<ExtArgs>[]
@@ -55270,6 +55366,7 @@ export namespace Prisma {
55270
55366
  user_profile<T extends User$user_profileArgs<ExtArgs> = {}>(args?: Subset<T, User$user_profileArgs<ExtArgs>>): Prisma__UserProfileClient<$Result.GetResult<Prisma.$UserProfilePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
55271
55367
  job_description<T extends User$job_descriptionArgs<ExtArgs> = {}>(args?: Subset<T, User$job_descriptionArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$JobDescriptionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
55272
55368
  hiring_manager_job_descriptions<T extends User$hiring_manager_job_descriptionsArgs<ExtArgs> = {}>(args?: Subset<T, User$hiring_manager_job_descriptionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$JobDescriptionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
55369
+ hiring_manager_job_profiles<T extends User$hiring_manager_job_profilesArgs<ExtArgs> = {}>(args?: Subset<T, User$hiring_manager_job_profilesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$JobProfilePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
55273
55370
  approvals<T extends User$approvalsArgs<ExtArgs> = {}>(args?: Subset<T, User$approvalsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ApprovalPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
55274
55371
  sent_messages<T extends User$sent_messagesArgs<ExtArgs> = {}>(args?: Subset<T, User$sent_messagesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
55275
55372
  received_messages<T extends User$received_messagesArgs<ExtArgs> = {}>(args?: Subset<T, User$received_messagesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
@@ -55918,6 +56015,30 @@ export namespace Prisma {
55918
56015
  distinct?: JobDescriptionScalarFieldEnum | JobDescriptionScalarFieldEnum[]
55919
56016
  }
55920
56017
 
56018
+ /**
56019
+ * User.hiring_manager_job_profiles
56020
+ */
56021
+ export type User$hiring_manager_job_profilesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
56022
+ /**
56023
+ * Select specific fields to fetch from the JobProfile
56024
+ */
56025
+ select?: JobProfileSelect<ExtArgs> | null
56026
+ /**
56027
+ * Omit specific fields from the JobProfile
56028
+ */
56029
+ omit?: JobProfileOmit<ExtArgs> | null
56030
+ /**
56031
+ * Choose, which related nodes to fetch as well
56032
+ */
56033
+ include?: JobProfileInclude<ExtArgs> | null
56034
+ where?: JobProfileWhereInput
56035
+ orderBy?: JobProfileOrderByWithRelationInput | JobProfileOrderByWithRelationInput[]
56036
+ cursor?: JobProfileWhereUniqueInput
56037
+ take?: number
56038
+ skip?: number
56039
+ distinct?: JobProfileScalarFieldEnum | JobProfileScalarFieldEnum[]
56040
+ }
56041
+
55921
56042
  /**
55922
56043
  * User.approvals
55923
56044
  */
@@ -58073,6 +58194,7 @@ export namespace Prisma {
58073
58194
  uploaded_job_description_path: 'uploaded_job_description_path',
58074
58195
  is_plan_published: 'is_plan_published',
58075
58196
  is_posted: 'is_posted',
58197
+ summary: 'summary',
58076
58198
  ai_insight: 'ai_insight',
58077
58199
  job_fit_comparison: 'job_fit_comparison',
58078
58200
  created_at: 'created_at',
@@ -58105,17 +58227,20 @@ export namespace Prisma {
58105
58227
  export const JobProfileScalarFieldEnum: {
58106
58228
  id: 'id',
58107
58229
  organisation_id: 'organisation_id',
58230
+ hiring_manager_id: 'hiring_manager_id',
58108
58231
  created_by: 'created_by',
58109
58232
  assigned_to: 'assigned_to',
58110
58233
  status: 'status',
58111
58234
  title: 'title',
58112
58235
  role_type: 'role_type',
58113
58236
  work_arrangement: 'work_arrangement',
58237
+ employment_type: 'employment_type',
58114
58238
  location: 'location',
58115
58239
  experience_min: 'experience_min',
58116
58240
  reporting: 'reporting',
58117
58241
  comp_range: 'comp_range',
58118
58242
  comp_benchmark: 'comp_benchmark',
58243
+ budget: 'budget',
58119
58244
  responsibilities: 'responsibilities',
58120
58245
  deliverables: 'deliverables',
58121
58246
  must_have_skills: 'must_have_skills',
@@ -58287,6 +58412,7 @@ export namespace Prisma {
58287
58412
  organisation_id: 'organisation_id',
58288
58413
  job_description_id: 'job_description_id',
58289
58414
  uploaded_resume_path: 'uploaded_resume_path',
58415
+ summary: 'summary',
58290
58416
  created_at: 'created_at',
58291
58417
  updated_at: 'updated_at',
58292
58418
  created_by: 'created_by',
@@ -61647,6 +61773,7 @@ export namespace Prisma {
61647
61773
  uploaded_job_description_path?: StringNullableFilter<"JobDescription"> | string | null
61648
61774
  is_plan_published?: BoolFilter<"JobDescription"> | boolean
61649
61775
  is_posted?: BoolFilter<"JobDescription"> | boolean
61776
+ summary?: JsonNullableFilter<"JobDescription">
61650
61777
  ai_insight?: JsonNullableFilter<"JobDescription">
61651
61778
  job_fit_comparison?: JsonNullableFilter<"JobDescription">
61652
61779
  created_at?: DateTimeFilter<"JobDescription"> | Date | string
@@ -61685,6 +61812,7 @@ export namespace Prisma {
61685
61812
  uploaded_job_description_path?: SortOrderInput | SortOrder
61686
61813
  is_plan_published?: SortOrder
61687
61814
  is_posted?: SortOrder
61815
+ summary?: SortOrderInput | SortOrder
61688
61816
  ai_insight?: SortOrderInput | SortOrder
61689
61817
  job_fit_comparison?: SortOrderInput | SortOrder
61690
61818
  created_at?: SortOrder
@@ -61726,6 +61854,7 @@ export namespace Prisma {
61726
61854
  uploaded_job_description_path?: StringNullableFilter<"JobDescription"> | string | null
61727
61855
  is_plan_published?: BoolFilter<"JobDescription"> | boolean
61728
61856
  is_posted?: BoolFilter<"JobDescription"> | boolean
61857
+ summary?: JsonNullableFilter<"JobDescription">
61729
61858
  ai_insight?: JsonNullableFilter<"JobDescription">
61730
61859
  job_fit_comparison?: JsonNullableFilter<"JobDescription">
61731
61860
  created_at?: DateTimeFilter<"JobDescription"> | Date | string
@@ -61764,6 +61893,7 @@ export namespace Prisma {
61764
61893
  uploaded_job_description_path?: SortOrderInput | SortOrder
61765
61894
  is_plan_published?: SortOrder
61766
61895
  is_posted?: SortOrder
61896
+ summary?: SortOrderInput | SortOrder
61767
61897
  ai_insight?: SortOrderInput | SortOrder
61768
61898
  job_fit_comparison?: SortOrderInput | SortOrder
61769
61899
  created_at?: SortOrder
@@ -61793,6 +61923,7 @@ export namespace Prisma {
61793
61923
  uploaded_job_description_path?: StringNullableWithAggregatesFilter<"JobDescription"> | string | null
61794
61924
  is_plan_published?: BoolWithAggregatesFilter<"JobDescription"> | boolean
61795
61925
  is_posted?: BoolWithAggregatesFilter<"JobDescription"> | boolean
61926
+ summary?: JsonNullableWithAggregatesFilter<"JobDescription">
61796
61927
  ai_insight?: JsonNullableWithAggregatesFilter<"JobDescription">
61797
61928
  job_fit_comparison?: JsonNullableWithAggregatesFilter<"JobDescription">
61798
61929
  created_at?: DateTimeWithAggregatesFilter<"JobDescription"> | Date | string
@@ -61886,17 +62017,20 @@ export namespace Prisma {
61886
62017
  NOT?: JobProfileWhereInput | JobProfileWhereInput[]
61887
62018
  id?: StringFilter<"JobProfile"> | string
61888
62019
  organisation_id?: StringFilter<"JobProfile"> | string
62020
+ hiring_manager_id?: StringNullableFilter<"JobProfile"> | string | null
61889
62021
  created_by?: StringFilter<"JobProfile"> | string
61890
62022
  assigned_to?: StringNullableFilter<"JobProfile"> | string | null
61891
62023
  status?: EnumJobProfileStatusFilter<"JobProfile"> | $Enums.JobProfileStatus
61892
62024
  title?: StringNullableFilter<"JobProfile"> | string | null
61893
62025
  role_type?: StringNullableFilter<"JobProfile"> | string | null
61894
62026
  work_arrangement?: StringNullableFilter<"JobProfile"> | string | null
62027
+ employment_type?: StringNullableFilter<"JobProfile"> | string | null
61895
62028
  location?: StringNullableFilter<"JobProfile"> | string | null
61896
62029
  experience_min?: StringNullableFilter<"JobProfile"> | string | null
61897
62030
  reporting?: StringNullableFilter<"JobProfile"> | string | null
61898
62031
  comp_range?: StringNullableFilter<"JobProfile"> | string | null
61899
62032
  comp_benchmark?: StringNullableFilter<"JobProfile"> | string | null
62033
+ budget?: StringNullableFilter<"JobProfile"> | string | null
61900
62034
  responsibilities?: JsonNullableFilter<"JobProfile">
61901
62035
  deliverables?: JsonNullableFilter<"JobProfile">
61902
62036
  must_have_skills?: JsonNullableFilter<"JobProfile">
@@ -61912,6 +62046,7 @@ export namespace Prisma {
61912
62046
  updated_at?: DateTimeFilter<"JobProfile"> | Date | string
61913
62047
  is_active?: BoolFilter<"JobProfile"> | boolean
61914
62048
  organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
62049
+ hiring_manager?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
61915
62050
  creator?: XOR<UserScalarRelationFilter, UserWhereInput>
61916
62051
  assignee?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
61917
62052
  job_descriptions?: JobDescriptionListRelationFilter
@@ -61920,17 +62055,20 @@ export namespace Prisma {
61920
62055
  export type JobProfileOrderByWithRelationInput = {
61921
62056
  id?: SortOrder
61922
62057
  organisation_id?: SortOrder
62058
+ hiring_manager_id?: SortOrderInput | SortOrder
61923
62059
  created_by?: SortOrder
61924
62060
  assigned_to?: SortOrderInput | SortOrder
61925
62061
  status?: SortOrder
61926
62062
  title?: SortOrderInput | SortOrder
61927
62063
  role_type?: SortOrderInput | SortOrder
61928
62064
  work_arrangement?: SortOrderInput | SortOrder
62065
+ employment_type?: SortOrderInput | SortOrder
61929
62066
  location?: SortOrderInput | SortOrder
61930
62067
  experience_min?: SortOrderInput | SortOrder
61931
62068
  reporting?: SortOrderInput | SortOrder
61932
62069
  comp_range?: SortOrderInput | SortOrder
61933
62070
  comp_benchmark?: SortOrderInput | SortOrder
62071
+ budget?: SortOrderInput | SortOrder
61934
62072
  responsibilities?: SortOrderInput | SortOrder
61935
62073
  deliverables?: SortOrderInput | SortOrder
61936
62074
  must_have_skills?: SortOrderInput | SortOrder
@@ -61946,6 +62084,7 @@ export namespace Prisma {
61946
62084
  updated_at?: SortOrder
61947
62085
  is_active?: SortOrder
61948
62086
  organisation?: OrganisationOrderByWithRelationInput
62087
+ hiring_manager?: UserOrderByWithRelationInput
61949
62088
  creator?: UserOrderByWithRelationInput
61950
62089
  assignee?: UserOrderByWithRelationInput
61951
62090
  job_descriptions?: JobDescriptionOrderByRelationAggregateInput
@@ -61957,17 +62096,20 @@ export namespace Prisma {
61957
62096
  OR?: JobProfileWhereInput[]
61958
62097
  NOT?: JobProfileWhereInput | JobProfileWhereInput[]
61959
62098
  organisation_id?: StringFilter<"JobProfile"> | string
62099
+ hiring_manager_id?: StringNullableFilter<"JobProfile"> | string | null
61960
62100
  created_by?: StringFilter<"JobProfile"> | string
61961
62101
  assigned_to?: StringNullableFilter<"JobProfile"> | string | null
61962
62102
  status?: EnumJobProfileStatusFilter<"JobProfile"> | $Enums.JobProfileStatus
61963
62103
  title?: StringNullableFilter<"JobProfile"> | string | null
61964
62104
  role_type?: StringNullableFilter<"JobProfile"> | string | null
61965
62105
  work_arrangement?: StringNullableFilter<"JobProfile"> | string | null
62106
+ employment_type?: StringNullableFilter<"JobProfile"> | string | null
61966
62107
  location?: StringNullableFilter<"JobProfile"> | string | null
61967
62108
  experience_min?: StringNullableFilter<"JobProfile"> | string | null
61968
62109
  reporting?: StringNullableFilter<"JobProfile"> | string | null
61969
62110
  comp_range?: StringNullableFilter<"JobProfile"> | string | null
61970
62111
  comp_benchmark?: StringNullableFilter<"JobProfile"> | string | null
62112
+ budget?: StringNullableFilter<"JobProfile"> | string | null
61971
62113
  responsibilities?: JsonNullableFilter<"JobProfile">
61972
62114
  deliverables?: JsonNullableFilter<"JobProfile">
61973
62115
  must_have_skills?: JsonNullableFilter<"JobProfile">
@@ -61983,6 +62125,7 @@ export namespace Prisma {
61983
62125
  updated_at?: DateTimeFilter<"JobProfile"> | Date | string
61984
62126
  is_active?: BoolFilter<"JobProfile"> | boolean
61985
62127
  organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
62128
+ hiring_manager?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
61986
62129
  creator?: XOR<UserScalarRelationFilter, UserWhereInput>
61987
62130
  assignee?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
61988
62131
  job_descriptions?: JobDescriptionListRelationFilter
@@ -61991,17 +62134,20 @@ export namespace Prisma {
61991
62134
  export type JobProfileOrderByWithAggregationInput = {
61992
62135
  id?: SortOrder
61993
62136
  organisation_id?: SortOrder
62137
+ hiring_manager_id?: SortOrderInput | SortOrder
61994
62138
  created_by?: SortOrder
61995
62139
  assigned_to?: SortOrderInput | SortOrder
61996
62140
  status?: SortOrder
61997
62141
  title?: SortOrderInput | SortOrder
61998
62142
  role_type?: SortOrderInput | SortOrder
61999
62143
  work_arrangement?: SortOrderInput | SortOrder
62144
+ employment_type?: SortOrderInput | SortOrder
62000
62145
  location?: SortOrderInput | SortOrder
62001
62146
  experience_min?: SortOrderInput | SortOrder
62002
62147
  reporting?: SortOrderInput | SortOrder
62003
62148
  comp_range?: SortOrderInput | SortOrder
62004
62149
  comp_benchmark?: SortOrderInput | SortOrder
62150
+ budget?: SortOrderInput | SortOrder
62005
62151
  responsibilities?: SortOrderInput | SortOrder
62006
62152
  deliverables?: SortOrderInput | SortOrder
62007
62153
  must_have_skills?: SortOrderInput | SortOrder
@@ -62027,17 +62173,20 @@ export namespace Prisma {
62027
62173
  NOT?: JobProfileScalarWhereWithAggregatesInput | JobProfileScalarWhereWithAggregatesInput[]
62028
62174
  id?: StringWithAggregatesFilter<"JobProfile"> | string
62029
62175
  organisation_id?: StringWithAggregatesFilter<"JobProfile"> | string
62176
+ hiring_manager_id?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
62030
62177
  created_by?: StringWithAggregatesFilter<"JobProfile"> | string
62031
62178
  assigned_to?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
62032
62179
  status?: EnumJobProfileStatusWithAggregatesFilter<"JobProfile"> | $Enums.JobProfileStatus
62033
62180
  title?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
62034
62181
  role_type?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
62035
62182
  work_arrangement?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
62183
+ employment_type?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
62036
62184
  location?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
62037
62185
  experience_min?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
62038
62186
  reporting?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
62039
62187
  comp_range?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
62040
62188
  comp_benchmark?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
62189
+ budget?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
62041
62190
  responsibilities?: JsonNullableWithAggregatesFilter<"JobProfile">
62042
62191
  deliverables?: JsonNullableWithAggregatesFilter<"JobProfile">
62043
62192
  must_have_skills?: JsonNullableWithAggregatesFilter<"JobProfile">
@@ -62890,6 +63039,7 @@ export namespace Prisma {
62890
63039
  organisation_id?: StringNullableFilter<"Resume"> | string | null
62891
63040
  job_description_id?: StringNullableFilter<"Resume"> | string | null
62892
63041
  uploaded_resume_path?: StringNullableFilter<"Resume"> | string | null
63042
+ summary?: JsonNullableFilter<"Resume">
62893
63043
  created_at?: DateTimeFilter<"Resume"> | Date | string
62894
63044
  updated_at?: DateTimeFilter<"Resume"> | Date | string
62895
63045
  created_by?: StringFilter<"Resume"> | string
@@ -62914,6 +63064,7 @@ export namespace Prisma {
62914
63064
  organisation_id?: SortOrderInput | SortOrder
62915
63065
  job_description_id?: SortOrderInput | SortOrder
62916
63066
  uploaded_resume_path?: SortOrderInput | SortOrder
63067
+ summary?: SortOrderInput | SortOrder
62917
63068
  created_at?: SortOrder
62918
63069
  updated_at?: SortOrder
62919
63070
  created_by?: SortOrder
@@ -62941,6 +63092,7 @@ export namespace Prisma {
62941
63092
  organisation_id?: StringNullableFilter<"Resume"> | string | null
62942
63093
  job_description_id?: StringNullableFilter<"Resume"> | string | null
62943
63094
  uploaded_resume_path?: StringNullableFilter<"Resume"> | string | null
63095
+ summary?: JsonNullableFilter<"Resume">
62944
63096
  created_at?: DateTimeFilter<"Resume"> | Date | string
62945
63097
  updated_at?: DateTimeFilter<"Resume"> | Date | string
62946
63098
  created_by?: StringFilter<"Resume"> | string
@@ -62965,6 +63117,7 @@ export namespace Prisma {
62965
63117
  organisation_id?: SortOrderInput | SortOrder
62966
63118
  job_description_id?: SortOrderInput | SortOrder
62967
63119
  uploaded_resume_path?: SortOrderInput | SortOrder
63120
+ summary?: SortOrderInput | SortOrder
62968
63121
  created_at?: SortOrder
62969
63122
  updated_at?: SortOrder
62970
63123
  created_by?: SortOrder
@@ -62988,6 +63141,7 @@ export namespace Prisma {
62988
63141
  organisation_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
62989
63142
  job_description_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
62990
63143
  uploaded_resume_path?: StringNullableWithAggregatesFilter<"Resume"> | string | null
63144
+ summary?: JsonNullableWithAggregatesFilter<"Resume">
62991
63145
  created_at?: DateTimeWithAggregatesFilter<"Resume"> | Date | string
62992
63146
  updated_at?: DateTimeWithAggregatesFilter<"Resume"> | Date | string
62993
63147
  created_by?: StringWithAggregatesFilter<"Resume"> | string
@@ -63322,6 +63476,7 @@ export namespace Prisma {
63322
63476
  user_profile?: XOR<UserProfileNullableScalarRelationFilter, UserProfileWhereInput> | null
63323
63477
  job_description?: JobDescriptionListRelationFilter
63324
63478
  hiring_manager_job_descriptions?: JobDescriptionListRelationFilter
63479
+ hiring_manager_job_profiles?: JobProfileListRelationFilter
63325
63480
  approvals?: ApprovalListRelationFilter
63326
63481
  sent_messages?: MessageListRelationFilter
63327
63482
  received_messages?: MessageListRelationFilter
@@ -63386,6 +63541,7 @@ export namespace Prisma {
63386
63541
  user_profile?: UserProfileOrderByWithRelationInput
63387
63542
  job_description?: JobDescriptionOrderByRelationAggregateInput
63388
63543
  hiring_manager_job_descriptions?: JobDescriptionOrderByRelationAggregateInput
63544
+ hiring_manager_job_profiles?: JobProfileOrderByRelationAggregateInput
63389
63545
  approvals?: ApprovalOrderByRelationAggregateInput
63390
63546
  sent_messages?: MessageOrderByRelationAggregateInput
63391
63547
  received_messages?: MessageOrderByRelationAggregateInput
@@ -63453,6 +63609,7 @@ export namespace Prisma {
63453
63609
  user_profile?: XOR<UserProfileNullableScalarRelationFilter, UserProfileWhereInput> | null
63454
63610
  job_description?: JobDescriptionListRelationFilter
63455
63611
  hiring_manager_job_descriptions?: JobDescriptionListRelationFilter
63612
+ hiring_manager_job_profiles?: JobProfileListRelationFilter
63456
63613
  approvals?: ApprovalListRelationFilter
63457
63614
  sent_messages?: MessageListRelationFilter
63458
63615
  received_messages?: MessageListRelationFilter
@@ -66614,6 +66771,7 @@ export namespace Prisma {
66614
66771
  uploaded_job_description_path?: string | null
66615
66772
  is_plan_published?: boolean
66616
66773
  is_posted?: boolean
66774
+ summary?: NullableJsonNullValueInput | InputJsonValue
66617
66775
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
66618
66776
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
66619
66777
  created_at?: Date | string
@@ -66651,6 +66809,7 @@ export namespace Prisma {
66651
66809
  uploaded_job_description_path?: string | null
66652
66810
  is_plan_published?: boolean
66653
66811
  is_posted?: boolean
66812
+ summary?: NullableJsonNullValueInput | InputJsonValue
66654
66813
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
66655
66814
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
66656
66815
  created_at?: Date | string
@@ -66684,6 +66843,7 @@ export namespace Prisma {
66684
66843
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
66685
66844
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
66686
66845
  is_posted?: BoolFieldUpdateOperationsInput | boolean
66846
+ summary?: NullableJsonNullValueInput | InputJsonValue
66687
66847
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
66688
66848
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
66689
66849
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -66721,6 +66881,7 @@ export namespace Prisma {
66721
66881
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
66722
66882
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
66723
66883
  is_posted?: BoolFieldUpdateOperationsInput | boolean
66884
+ summary?: NullableJsonNullValueInput | InputJsonValue
66724
66885
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
66725
66886
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
66726
66887
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -66756,6 +66917,7 @@ export namespace Prisma {
66756
66917
  uploaded_job_description_path?: string | null
66757
66918
  is_plan_published?: boolean
66758
66919
  is_posted?: boolean
66920
+ summary?: NullableJsonNullValueInput | InputJsonValue
66759
66921
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
66760
66922
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
66761
66923
  created_at?: Date | string
@@ -66775,6 +66937,7 @@ export namespace Prisma {
66775
66937
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
66776
66938
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
66777
66939
  is_posted?: BoolFieldUpdateOperationsInput | boolean
66940
+ summary?: NullableJsonNullValueInput | InputJsonValue
66778
66941
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
66779
66942
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
66780
66943
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -66795,6 +66958,7 @@ export namespace Prisma {
66795
66958
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
66796
66959
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
66797
66960
  is_posted?: BoolFieldUpdateOperationsInput | boolean
66961
+ summary?: NullableJsonNullValueInput | InputJsonValue
66798
66962
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
66799
66963
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
66800
66964
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -66895,11 +67059,13 @@ export namespace Prisma {
66895
67059
  title?: string | null
66896
67060
  role_type?: string | null
66897
67061
  work_arrangement?: string | null
67062
+ employment_type?: string | null
66898
67063
  location?: string | null
66899
67064
  experience_min?: string | null
66900
67065
  reporting?: string | null
66901
67066
  comp_range?: string | null
66902
67067
  comp_benchmark?: string | null
67068
+ budget?: string | null
66903
67069
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
66904
67070
  deliverables?: NullableJsonNullValueInput | InputJsonValue
66905
67071
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -66915,6 +67081,7 @@ export namespace Prisma {
66915
67081
  updated_at?: Date | string
66916
67082
  is_active?: boolean
66917
67083
  organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
67084
+ hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
66918
67085
  creator: UserCreateNestedOneWithoutCreated_job_profilesInput
66919
67086
  assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
66920
67087
  job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
@@ -66923,17 +67090,20 @@ export namespace Prisma {
66923
67090
  export type JobProfileUncheckedCreateInput = {
66924
67091
  id?: string
66925
67092
  organisation_id: string
67093
+ hiring_manager_id?: string | null
66926
67094
  created_by: string
66927
67095
  assigned_to?: string | null
66928
67096
  status?: $Enums.JobProfileStatus
66929
67097
  title?: string | null
66930
67098
  role_type?: string | null
66931
67099
  work_arrangement?: string | null
67100
+ employment_type?: string | null
66932
67101
  location?: string | null
66933
67102
  experience_min?: string | null
66934
67103
  reporting?: string | null
66935
67104
  comp_range?: string | null
66936
67105
  comp_benchmark?: string | null
67106
+ budget?: string | null
66937
67107
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
66938
67108
  deliverables?: NullableJsonNullValueInput | InputJsonValue
66939
67109
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -66957,11 +67127,13 @@ export namespace Prisma {
66957
67127
  title?: NullableStringFieldUpdateOperationsInput | string | null
66958
67128
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
66959
67129
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
67130
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
66960
67131
  location?: NullableStringFieldUpdateOperationsInput | string | null
66961
67132
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
66962
67133
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
66963
67134
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
66964
67135
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
67136
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
66965
67137
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
66966
67138
  deliverables?: NullableJsonNullValueInput | InputJsonValue
66967
67139
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -66977,6 +67149,7 @@ export namespace Prisma {
66977
67149
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
66978
67150
  is_active?: BoolFieldUpdateOperationsInput | boolean
66979
67151
  organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
67152
+ hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
66980
67153
  creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
66981
67154
  assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
66982
67155
  job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
@@ -66985,17 +67158,20 @@ export namespace Prisma {
66985
67158
  export type JobProfileUncheckedUpdateInput = {
66986
67159
  id?: StringFieldUpdateOperationsInput | string
66987
67160
  organisation_id?: StringFieldUpdateOperationsInput | string
67161
+ hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
66988
67162
  created_by?: StringFieldUpdateOperationsInput | string
66989
67163
  assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
66990
67164
  status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
66991
67165
  title?: NullableStringFieldUpdateOperationsInput | string | null
66992
67166
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
66993
67167
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
67168
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
66994
67169
  location?: NullableStringFieldUpdateOperationsInput | string | null
66995
67170
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
66996
67171
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
66997
67172
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
66998
67173
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
67174
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
66999
67175
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
67000
67176
  deliverables?: NullableJsonNullValueInput | InputJsonValue
67001
67177
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -67016,17 +67192,20 @@ export namespace Prisma {
67016
67192
  export type JobProfileCreateManyInput = {
67017
67193
  id?: string
67018
67194
  organisation_id: string
67195
+ hiring_manager_id?: string | null
67019
67196
  created_by: string
67020
67197
  assigned_to?: string | null
67021
67198
  status?: $Enums.JobProfileStatus
67022
67199
  title?: string | null
67023
67200
  role_type?: string | null
67024
67201
  work_arrangement?: string | null
67202
+ employment_type?: string | null
67025
67203
  location?: string | null
67026
67204
  experience_min?: string | null
67027
67205
  reporting?: string | null
67028
67206
  comp_range?: string | null
67029
67207
  comp_benchmark?: string | null
67208
+ budget?: string | null
67030
67209
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
67031
67210
  deliverables?: NullableJsonNullValueInput | InputJsonValue
67032
67211
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -67049,11 +67228,13 @@ export namespace Prisma {
67049
67228
  title?: NullableStringFieldUpdateOperationsInput | string | null
67050
67229
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
67051
67230
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
67231
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
67052
67232
  location?: NullableStringFieldUpdateOperationsInput | string | null
67053
67233
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
67054
67234
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
67055
67235
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
67056
67236
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
67237
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
67057
67238
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
67058
67239
  deliverables?: NullableJsonNullValueInput | InputJsonValue
67059
67240
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -67073,17 +67254,20 @@ export namespace Prisma {
67073
67254
  export type JobProfileUncheckedUpdateManyInput = {
67074
67255
  id?: StringFieldUpdateOperationsInput | string
67075
67256
  organisation_id?: StringFieldUpdateOperationsInput | string
67257
+ hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
67076
67258
  created_by?: StringFieldUpdateOperationsInput | string
67077
67259
  assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
67078
67260
  status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
67079
67261
  title?: NullableStringFieldUpdateOperationsInput | string | null
67080
67262
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
67081
67263
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
67264
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
67082
67265
  location?: NullableStringFieldUpdateOperationsInput | string | null
67083
67266
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
67084
67267
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
67085
67268
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
67086
67269
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
67270
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
67087
67271
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
67088
67272
  deliverables?: NullableJsonNullValueInput | InputJsonValue
67089
67273
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -68056,6 +68240,7 @@ export namespace Prisma {
68056
68240
  export type ResumeCreateInput = {
68057
68241
  id?: string
68058
68242
  uploaded_resume_path?: string | null
68243
+ summary?: NullableJsonNullValueInput | InputJsonValue
68059
68244
  created_at?: Date | string
68060
68245
  updated_at?: Date | string
68061
68246
  created_by: string
@@ -68080,6 +68265,7 @@ export namespace Prisma {
68080
68265
  organisation_id?: string | null
68081
68266
  job_description_id?: string | null
68082
68267
  uploaded_resume_path?: string | null
68268
+ summary?: NullableJsonNullValueInput | InputJsonValue
68083
68269
  created_at?: Date | string
68084
68270
  updated_at?: Date | string
68085
68271
  created_by: string
@@ -68098,6 +68284,7 @@ export namespace Prisma {
68098
68284
  export type ResumeUpdateInput = {
68099
68285
  id?: StringFieldUpdateOperationsInput | string
68100
68286
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
68287
+ summary?: NullableJsonNullValueInput | InputJsonValue
68101
68288
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
68102
68289
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
68103
68290
  created_by?: StringFieldUpdateOperationsInput | string
@@ -68122,6 +68309,7 @@ export namespace Prisma {
68122
68309
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
68123
68310
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
68124
68311
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
68312
+ summary?: NullableJsonNullValueInput | InputJsonValue
68125
68313
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
68126
68314
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
68127
68315
  created_by?: StringFieldUpdateOperationsInput | string
@@ -68143,6 +68331,7 @@ export namespace Prisma {
68143
68331
  organisation_id?: string | null
68144
68332
  job_description_id?: string | null
68145
68333
  uploaded_resume_path?: string | null
68334
+ summary?: NullableJsonNullValueInput | InputJsonValue
68146
68335
  created_at?: Date | string
68147
68336
  updated_at?: Date | string
68148
68337
  created_by: string
@@ -68155,6 +68344,7 @@ export namespace Prisma {
68155
68344
  export type ResumeUpdateManyMutationInput = {
68156
68345
  id?: StringFieldUpdateOperationsInput | string
68157
68346
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
68347
+ summary?: NullableJsonNullValueInput | InputJsonValue
68158
68348
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
68159
68349
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
68160
68350
  created_by?: StringFieldUpdateOperationsInput | string
@@ -68170,6 +68360,7 @@ export namespace Prisma {
68170
68360
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
68171
68361
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
68172
68362
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
68363
+ summary?: NullableJsonNullValueInput | InputJsonValue
68173
68364
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
68174
68365
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
68175
68366
  created_by?: StringFieldUpdateOperationsInput | string
@@ -68524,6 +68715,7 @@ export namespace Prisma {
68524
68715
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
68525
68716
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
68526
68717
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
68718
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
68527
68719
  approvals?: ApprovalCreateNestedManyWithoutUserInput
68528
68720
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
68529
68721
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -68585,6 +68777,7 @@ export namespace Prisma {
68585
68777
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
68586
68778
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
68587
68779
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
68780
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
68588
68781
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
68589
68782
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
68590
68783
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -68646,6 +68839,7 @@ export namespace Prisma {
68646
68839
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
68647
68840
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
68648
68841
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
68842
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
68649
68843
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
68650
68844
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
68651
68845
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -68707,6 +68901,7 @@ export namespace Prisma {
68707
68901
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
68708
68902
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
68709
68903
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
68904
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
68710
68905
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
68711
68906
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
68712
68907
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -71340,6 +71535,7 @@ export namespace Prisma {
71340
71535
  uploaded_job_description_path?: SortOrder
71341
71536
  is_plan_published?: SortOrder
71342
71537
  is_posted?: SortOrder
71538
+ summary?: SortOrder
71343
71539
  ai_insight?: SortOrder
71344
71540
  job_fit_comparison?: SortOrder
71345
71541
  created_at?: SortOrder
@@ -71464,17 +71660,20 @@ export namespace Prisma {
71464
71660
  export type JobProfileCountOrderByAggregateInput = {
71465
71661
  id?: SortOrder
71466
71662
  organisation_id?: SortOrder
71663
+ hiring_manager_id?: SortOrder
71467
71664
  created_by?: SortOrder
71468
71665
  assigned_to?: SortOrder
71469
71666
  status?: SortOrder
71470
71667
  title?: SortOrder
71471
71668
  role_type?: SortOrder
71472
71669
  work_arrangement?: SortOrder
71670
+ employment_type?: SortOrder
71473
71671
  location?: SortOrder
71474
71672
  experience_min?: SortOrder
71475
71673
  reporting?: SortOrder
71476
71674
  comp_range?: SortOrder
71477
71675
  comp_benchmark?: SortOrder
71676
+ budget?: SortOrder
71478
71677
  responsibilities?: SortOrder
71479
71678
  deliverables?: SortOrder
71480
71679
  must_have_skills?: SortOrder
@@ -71494,17 +71693,20 @@ export namespace Prisma {
71494
71693
  export type JobProfileMaxOrderByAggregateInput = {
71495
71694
  id?: SortOrder
71496
71695
  organisation_id?: SortOrder
71696
+ hiring_manager_id?: SortOrder
71497
71697
  created_by?: SortOrder
71498
71698
  assigned_to?: SortOrder
71499
71699
  status?: SortOrder
71500
71700
  title?: SortOrder
71501
71701
  role_type?: SortOrder
71502
71702
  work_arrangement?: SortOrder
71703
+ employment_type?: SortOrder
71503
71704
  location?: SortOrder
71504
71705
  experience_min?: SortOrder
71505
71706
  reporting?: SortOrder
71506
71707
  comp_range?: SortOrder
71507
71708
  comp_benchmark?: SortOrder
71709
+ budget?: SortOrder
71508
71710
  current_phase?: SortOrder
71509
71711
  orion_execution_id?: SortOrder
71510
71712
  created_at?: SortOrder
@@ -71515,17 +71717,20 @@ export namespace Prisma {
71515
71717
  export type JobProfileMinOrderByAggregateInput = {
71516
71718
  id?: SortOrder
71517
71719
  organisation_id?: SortOrder
71720
+ hiring_manager_id?: SortOrder
71518
71721
  created_by?: SortOrder
71519
71722
  assigned_to?: SortOrder
71520
71723
  status?: SortOrder
71521
71724
  title?: SortOrder
71522
71725
  role_type?: SortOrder
71523
71726
  work_arrangement?: SortOrder
71727
+ employment_type?: SortOrder
71524
71728
  location?: SortOrder
71525
71729
  experience_min?: SortOrder
71526
71730
  reporting?: SortOrder
71527
71731
  comp_range?: SortOrder
71528
71732
  comp_benchmark?: SortOrder
71733
+ budget?: SortOrder
71529
71734
  current_phase?: SortOrder
71530
71735
  orion_execution_id?: SortOrder
71531
71736
  created_at?: SortOrder
@@ -72212,6 +72417,7 @@ export namespace Prisma {
72212
72417
  organisation_id?: SortOrder
72213
72418
  job_description_id?: SortOrder
72214
72419
  uploaded_resume_path?: SortOrder
72420
+ summary?: SortOrder
72215
72421
  created_at?: SortOrder
72216
72422
  updated_at?: SortOrder
72217
72423
  created_by?: SortOrder
@@ -75356,6 +75562,12 @@ export namespace Prisma {
75356
75562
  connect?: OrganisationWhereUniqueInput
75357
75563
  }
75358
75564
 
75565
+ export type UserCreateNestedOneWithoutHiring_manager_job_profilesInput = {
75566
+ create?: XOR<UserCreateWithoutHiring_manager_job_profilesInput, UserUncheckedCreateWithoutHiring_manager_job_profilesInput>
75567
+ connectOrCreate?: UserCreateOrConnectWithoutHiring_manager_job_profilesInput
75568
+ connect?: UserWhereUniqueInput
75569
+ }
75570
+
75359
75571
  export type UserCreateNestedOneWithoutCreated_job_profilesInput = {
75360
75572
  create?: XOR<UserCreateWithoutCreated_job_profilesInput, UserUncheckedCreateWithoutCreated_job_profilesInput>
75361
75573
  connectOrCreate?: UserCreateOrConnectWithoutCreated_job_profilesInput
@@ -75394,6 +75606,16 @@ export namespace Prisma {
75394
75606
  update?: XOR<XOR<OrganisationUpdateToOneWithWhereWithoutJob_profilesInput, OrganisationUpdateWithoutJob_profilesInput>, OrganisationUncheckedUpdateWithoutJob_profilesInput>
75395
75607
  }
75396
75608
 
75609
+ export type UserUpdateOneWithoutHiring_manager_job_profilesNestedInput = {
75610
+ create?: XOR<UserCreateWithoutHiring_manager_job_profilesInput, UserUncheckedCreateWithoutHiring_manager_job_profilesInput>
75611
+ connectOrCreate?: UserCreateOrConnectWithoutHiring_manager_job_profilesInput
75612
+ upsert?: UserUpsertWithoutHiring_manager_job_profilesInput
75613
+ disconnect?: UserWhereInput | boolean
75614
+ delete?: UserWhereInput | boolean
75615
+ connect?: UserWhereUniqueInput
75616
+ update?: XOR<XOR<UserUpdateToOneWithWhereWithoutHiring_manager_job_profilesInput, UserUpdateWithoutHiring_manager_job_profilesInput>, UserUncheckedUpdateWithoutHiring_manager_job_profilesInput>
75617
+ }
75618
+
75397
75619
  export type UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput = {
75398
75620
  create?: XOR<UserCreateWithoutCreated_job_profilesInput, UserUncheckedCreateWithoutCreated_job_profilesInput>
75399
75621
  connectOrCreate?: UserCreateOrConnectWithoutCreated_job_profilesInput
@@ -77147,6 +77369,13 @@ export namespace Prisma {
77147
77369
  connect?: JobDescriptionWhereUniqueInput | JobDescriptionWhereUniqueInput[]
77148
77370
  }
77149
77371
 
77372
+ export type JobProfileCreateNestedManyWithoutHiring_managerInput = {
77373
+ create?: XOR<JobProfileCreateWithoutHiring_managerInput, JobProfileUncheckedCreateWithoutHiring_managerInput> | JobProfileCreateWithoutHiring_managerInput[] | JobProfileUncheckedCreateWithoutHiring_managerInput[]
77374
+ connectOrCreate?: JobProfileCreateOrConnectWithoutHiring_managerInput | JobProfileCreateOrConnectWithoutHiring_managerInput[]
77375
+ createMany?: JobProfileCreateManyHiring_managerInputEnvelope
77376
+ connect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
77377
+ }
77378
+
77150
77379
  export type ApprovalCreateNestedManyWithoutUserInput = {
77151
77380
  create?: XOR<ApprovalCreateWithoutUserInput, ApprovalUncheckedCreateWithoutUserInput> | ApprovalCreateWithoutUserInput[] | ApprovalUncheckedCreateWithoutUserInput[]
77152
77381
  connectOrCreate?: ApprovalCreateOrConnectWithoutUserInput | ApprovalCreateOrConnectWithoutUserInput[]
@@ -77324,6 +77553,13 @@ export namespace Prisma {
77324
77553
  connect?: JobDescriptionWhereUniqueInput | JobDescriptionWhereUniqueInput[]
77325
77554
  }
77326
77555
 
77556
+ export type JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput = {
77557
+ create?: XOR<JobProfileCreateWithoutHiring_managerInput, JobProfileUncheckedCreateWithoutHiring_managerInput> | JobProfileCreateWithoutHiring_managerInput[] | JobProfileUncheckedCreateWithoutHiring_managerInput[]
77558
+ connectOrCreate?: JobProfileCreateOrConnectWithoutHiring_managerInput | JobProfileCreateOrConnectWithoutHiring_managerInput[]
77559
+ createMany?: JobProfileCreateManyHiring_managerInputEnvelope
77560
+ connect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
77561
+ }
77562
+
77327
77563
  export type ApprovalUncheckedCreateNestedManyWithoutUserInput = {
77328
77564
  create?: XOR<ApprovalCreateWithoutUserInput, ApprovalUncheckedCreateWithoutUserInput> | ApprovalCreateWithoutUserInput[] | ApprovalUncheckedCreateWithoutUserInput[]
77329
77565
  connectOrCreate?: ApprovalCreateOrConnectWithoutUserInput | ApprovalCreateOrConnectWithoutUserInput[]
@@ -77569,6 +77805,20 @@ export namespace Prisma {
77569
77805
  deleteMany?: JobDescriptionScalarWhereInput | JobDescriptionScalarWhereInput[]
77570
77806
  }
77571
77807
 
77808
+ export type JobProfileUpdateManyWithoutHiring_managerNestedInput = {
77809
+ create?: XOR<JobProfileCreateWithoutHiring_managerInput, JobProfileUncheckedCreateWithoutHiring_managerInput> | JobProfileCreateWithoutHiring_managerInput[] | JobProfileUncheckedCreateWithoutHiring_managerInput[]
77810
+ connectOrCreate?: JobProfileCreateOrConnectWithoutHiring_managerInput | JobProfileCreateOrConnectWithoutHiring_managerInput[]
77811
+ upsert?: JobProfileUpsertWithWhereUniqueWithoutHiring_managerInput | JobProfileUpsertWithWhereUniqueWithoutHiring_managerInput[]
77812
+ createMany?: JobProfileCreateManyHiring_managerInputEnvelope
77813
+ set?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
77814
+ disconnect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
77815
+ delete?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
77816
+ connect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
77817
+ update?: JobProfileUpdateWithWhereUniqueWithoutHiring_managerInput | JobProfileUpdateWithWhereUniqueWithoutHiring_managerInput[]
77818
+ updateMany?: JobProfileUpdateManyWithWhereWithoutHiring_managerInput | JobProfileUpdateManyWithWhereWithoutHiring_managerInput[]
77819
+ deleteMany?: JobProfileScalarWhereInput | JobProfileScalarWhereInput[]
77820
+ }
77821
+
77572
77822
  export type ApprovalUpdateManyWithoutUserNestedInput = {
77573
77823
  create?: XOR<ApprovalCreateWithoutUserInput, ApprovalUncheckedCreateWithoutUserInput> | ApprovalCreateWithoutUserInput[] | ApprovalUncheckedCreateWithoutUserInput[]
77574
77824
  connectOrCreate?: ApprovalCreateOrConnectWithoutUserInput | ApprovalCreateOrConnectWithoutUserInput[]
@@ -77916,6 +78166,20 @@ export namespace Prisma {
77916
78166
  deleteMany?: JobDescriptionScalarWhereInput | JobDescriptionScalarWhereInput[]
77917
78167
  }
77918
78168
 
78169
+ export type JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput = {
78170
+ create?: XOR<JobProfileCreateWithoutHiring_managerInput, JobProfileUncheckedCreateWithoutHiring_managerInput> | JobProfileCreateWithoutHiring_managerInput[] | JobProfileUncheckedCreateWithoutHiring_managerInput[]
78171
+ connectOrCreate?: JobProfileCreateOrConnectWithoutHiring_managerInput | JobProfileCreateOrConnectWithoutHiring_managerInput[]
78172
+ upsert?: JobProfileUpsertWithWhereUniqueWithoutHiring_managerInput | JobProfileUpsertWithWhereUniqueWithoutHiring_managerInput[]
78173
+ createMany?: JobProfileCreateManyHiring_managerInputEnvelope
78174
+ set?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
78175
+ disconnect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
78176
+ delete?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
78177
+ connect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
78178
+ update?: JobProfileUpdateWithWhereUniqueWithoutHiring_managerInput | JobProfileUpdateWithWhereUniqueWithoutHiring_managerInput[]
78179
+ updateMany?: JobProfileUpdateManyWithWhereWithoutHiring_managerInput | JobProfileUpdateManyWithWhereWithoutHiring_managerInput[]
78180
+ deleteMany?: JobProfileScalarWhereInput | JobProfileScalarWhereInput[]
78181
+ }
78182
+
77919
78183
  export type ApprovalUncheckedUpdateManyWithoutUserNestedInput = {
77920
78184
  create?: XOR<ApprovalCreateWithoutUserInput, ApprovalUncheckedCreateWithoutUserInput> | ApprovalCreateWithoutUserInput[] | ApprovalUncheckedCreateWithoutUserInput[]
77921
78185
  connectOrCreate?: ApprovalCreateOrConnectWithoutUserInput | ApprovalCreateOrConnectWithoutUserInput[]
@@ -79173,6 +79437,7 @@ export namespace Prisma {
79173
79437
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
79174
79438
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
79175
79439
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
79440
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
79176
79441
  approvals?: ApprovalCreateNestedManyWithoutUserInput
79177
79442
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
79178
79443
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -79233,6 +79498,7 @@ export namespace Prisma {
79233
79498
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
79234
79499
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
79235
79500
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
79501
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
79236
79502
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
79237
79503
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
79238
79504
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -79415,6 +79681,7 @@ export namespace Prisma {
79415
79681
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
79416
79682
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
79417
79683
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
79684
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
79418
79685
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
79419
79686
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
79420
79687
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -79475,6 +79742,7 @@ export namespace Prisma {
79475
79742
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
79476
79743
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
79477
79744
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
79745
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
79478
79746
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
79479
79747
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
79480
79748
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -79638,6 +79906,7 @@ export namespace Prisma {
79638
79906
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
79639
79907
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
79640
79908
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
79909
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
79641
79910
  approvals?: ApprovalCreateNestedManyWithoutUserInput
79642
79911
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
79643
79912
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -79698,6 +79967,7 @@ export namespace Prisma {
79698
79967
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
79699
79968
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
79700
79969
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
79970
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
79701
79971
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
79702
79972
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
79703
79973
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -79939,6 +80209,7 @@ export namespace Prisma {
79939
80209
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
79940
80210
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
79941
80211
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
80212
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
79942
80213
  approvals?: ApprovalCreateNestedManyWithoutUserInput
79943
80214
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
79944
80215
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -79999,6 +80270,7 @@ export namespace Prisma {
79999
80270
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
80000
80271
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
80001
80272
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
80273
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
80002
80274
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
80003
80275
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
80004
80276
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -80152,6 +80424,7 @@ export namespace Prisma {
80152
80424
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
80153
80425
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
80154
80426
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
80427
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
80155
80428
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
80156
80429
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
80157
80430
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -80212,6 +80485,7 @@ export namespace Prisma {
80212
80485
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
80213
80486
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
80214
80487
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
80488
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
80215
80489
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
80216
80490
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
80217
80491
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -80355,6 +80629,7 @@ export namespace Prisma {
80355
80629
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
80356
80630
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
80357
80631
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
80632
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
80358
80633
  approvals?: ApprovalCreateNestedManyWithoutUserInput
80359
80634
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
80360
80635
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -80415,6 +80690,7 @@ export namespace Prisma {
80415
80690
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
80416
80691
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
80417
80692
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
80693
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
80418
80694
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
80419
80695
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
80420
80696
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -80542,6 +80818,7 @@ export namespace Prisma {
80542
80818
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
80543
80819
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
80544
80820
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
80821
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
80545
80822
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
80546
80823
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
80547
80824
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -80602,6 +80879,7 @@ export namespace Prisma {
80602
80879
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
80603
80880
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
80604
80881
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
80882
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
80605
80883
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
80606
80884
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
80607
80885
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -80777,6 +81055,7 @@ export namespace Prisma {
80777
81055
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
80778
81056
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
80779
81057
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
81058
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
80780
81059
  approvals?: ApprovalCreateNestedManyWithoutUserInput
80781
81060
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
80782
81061
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -80837,6 +81116,7 @@ export namespace Prisma {
80837
81116
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
80838
81117
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
80839
81118
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
81119
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
80840
81120
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
80841
81121
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
80842
81122
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -80944,6 +81224,7 @@ export namespace Prisma {
80944
81224
  export type ResumeCreateWithoutApplicationsInput = {
80945
81225
  id?: string
80946
81226
  uploaded_resume_path?: string | null
81227
+ summary?: NullableJsonNullValueInput | InputJsonValue
80947
81228
  created_at?: Date | string
80948
81229
  updated_at?: Date | string
80949
81230
  created_by: string
@@ -80967,6 +81248,7 @@ export namespace Prisma {
80967
81248
  organisation_id?: string | null
80968
81249
  job_description_id?: string | null
80969
81250
  uploaded_resume_path?: string | null
81251
+ summary?: NullableJsonNullValueInput | InputJsonValue
80970
81252
  created_at?: Date | string
80971
81253
  updated_at?: Date | string
80972
81254
  created_by: string
@@ -80994,6 +81276,7 @@ export namespace Prisma {
80994
81276
  uploaded_job_description_path?: string | null
80995
81277
  is_plan_published?: boolean
80996
81278
  is_posted?: boolean
81279
+ summary?: NullableJsonNullValueInput | InputJsonValue
80997
81280
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
80998
81281
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
80999
81282
  created_at?: Date | string
@@ -81030,6 +81313,7 @@ export namespace Prisma {
81030
81313
  uploaded_job_description_path?: string | null
81031
81314
  is_plan_published?: boolean
81032
81315
  is_posted?: boolean
81316
+ summary?: NullableJsonNullValueInput | InputJsonValue
81033
81317
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
81034
81318
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
81035
81319
  created_at?: Date | string
@@ -81502,6 +81786,7 @@ export namespace Prisma {
81502
81786
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
81503
81787
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
81504
81788
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
81789
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
81505
81790
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
81506
81791
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
81507
81792
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -81562,6 +81847,7 @@ export namespace Prisma {
81562
81847
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
81563
81848
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
81564
81849
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
81850
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
81565
81851
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
81566
81852
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
81567
81853
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -81681,6 +81967,7 @@ export namespace Prisma {
81681
81967
  export type ResumeUpdateWithoutApplicationsInput = {
81682
81968
  id?: StringFieldUpdateOperationsInput | string
81683
81969
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
81970
+ summary?: NullableJsonNullValueInput | InputJsonValue
81684
81971
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
81685
81972
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
81686
81973
  created_by?: StringFieldUpdateOperationsInput | string
@@ -81704,6 +81991,7 @@ export namespace Prisma {
81704
81991
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
81705
81992
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
81706
81993
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
81994
+ summary?: NullableJsonNullValueInput | InputJsonValue
81707
81995
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
81708
81996
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
81709
81997
  created_by?: StringFieldUpdateOperationsInput | string
@@ -81737,6 +82025,7 @@ export namespace Prisma {
81737
82025
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
81738
82026
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
81739
82027
  is_posted?: BoolFieldUpdateOperationsInput | boolean
82028
+ summary?: NullableJsonNullValueInput | InputJsonValue
81740
82029
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
81741
82030
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
81742
82031
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -81773,6 +82062,7 @@ export namespace Prisma {
81773
82062
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
81774
82063
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
81775
82064
  is_posted?: BoolFieldUpdateOperationsInput | boolean
82065
+ summary?: NullableJsonNullValueInput | InputJsonValue
81776
82066
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
81777
82067
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
81778
82068
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -82065,6 +82355,7 @@ export namespace Prisma {
82065
82355
  uploaded_job_description_path?: string | null
82066
82356
  is_plan_published?: boolean
82067
82357
  is_posted?: boolean
82358
+ summary?: NullableJsonNullValueInput | InputJsonValue
82068
82359
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
82069
82360
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
82070
82361
  created_at?: Date | string
@@ -82101,6 +82392,7 @@ export namespace Prisma {
82101
82392
  uploaded_job_description_path?: string | null
82102
82393
  is_plan_published?: boolean
82103
82394
  is_posted?: boolean
82395
+ summary?: NullableJsonNullValueInput | InputJsonValue
82104
82396
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
82105
82397
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
82106
82398
  created_at?: Date | string
@@ -82169,6 +82461,7 @@ export namespace Prisma {
82169
82461
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
82170
82462
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
82171
82463
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
82464
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
82172
82465
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
82173
82466
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
82174
82467
  candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
@@ -82229,6 +82522,7 @@ export namespace Prisma {
82229
82522
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
82230
82523
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
82231
82524
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
82525
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
82232
82526
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
82233
82527
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
82234
82528
  candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
@@ -82351,6 +82645,7 @@ export namespace Prisma {
82351
82645
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
82352
82646
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
82353
82647
  is_posted?: BoolFieldUpdateOperationsInput | boolean
82648
+ summary?: NullableJsonNullValueInput | InputJsonValue
82354
82649
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
82355
82650
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
82356
82651
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -82387,6 +82682,7 @@ export namespace Prisma {
82387
82682
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
82388
82683
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
82389
82684
  is_posted?: BoolFieldUpdateOperationsInput | boolean
82685
+ summary?: NullableJsonNullValueInput | InputJsonValue
82390
82686
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
82391
82687
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
82392
82688
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -82461,6 +82757,7 @@ export namespace Prisma {
82461
82757
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
82462
82758
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
82463
82759
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
82760
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
82464
82761
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
82465
82762
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
82466
82763
  candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
@@ -82521,6 +82818,7 @@ export namespace Prisma {
82521
82818
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
82522
82819
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
82523
82820
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
82821
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
82524
82822
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
82525
82823
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
82526
82824
  candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
@@ -82709,6 +83007,7 @@ export namespace Prisma {
82709
83007
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
82710
83008
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
82711
83009
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
83010
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
82712
83011
  approvals?: ApprovalCreateNestedManyWithoutUserInput
82713
83012
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
82714
83013
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -82769,6 +83068,7 @@ export namespace Prisma {
82769
83068
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
82770
83069
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
82771
83070
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
83071
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
82772
83072
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
82773
83073
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
82774
83074
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -82834,6 +83134,7 @@ export namespace Prisma {
82834
83134
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
82835
83135
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
82836
83136
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
83137
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
82837
83138
  approvals?: ApprovalCreateNestedManyWithoutUserInput
82838
83139
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
82839
83140
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -82894,6 +83195,7 @@ export namespace Prisma {
82894
83195
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
82895
83196
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
82896
83197
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
83198
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
82897
83199
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
82898
83200
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
82899
83201
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -83094,6 +83396,7 @@ export namespace Prisma {
83094
83396
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
83095
83397
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
83096
83398
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
83399
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
83097
83400
  approvals?: ApprovalCreateNestedManyWithoutUserInput
83098
83401
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
83099
83402
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -83154,6 +83457,7 @@ export namespace Prisma {
83154
83457
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
83155
83458
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
83156
83459
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
83460
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
83157
83461
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
83158
83462
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
83159
83463
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -83354,6 +83658,7 @@ export namespace Prisma {
83354
83658
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
83355
83659
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
83356
83660
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
83661
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
83357
83662
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
83358
83663
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
83359
83664
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -83414,6 +83719,7 @@ export namespace Prisma {
83414
83719
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
83415
83720
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
83416
83721
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
83722
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
83417
83723
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
83418
83724
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
83419
83725
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -83485,6 +83791,7 @@ export namespace Prisma {
83485
83791
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
83486
83792
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
83487
83793
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
83794
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
83488
83795
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
83489
83796
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
83490
83797
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -83545,6 +83852,7 @@ export namespace Prisma {
83545
83852
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
83546
83853
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
83547
83854
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
83855
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
83548
83856
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
83549
83857
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
83550
83858
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -83758,6 +84066,7 @@ export namespace Prisma {
83758
84066
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
83759
84067
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
83760
84068
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
84069
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
83761
84070
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
83762
84071
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
83763
84072
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -83818,6 +84127,7 @@ export namespace Prisma {
83818
84127
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
83819
84128
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
83820
84129
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
84130
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
83821
84131
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
83822
84132
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
83823
84133
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -84605,6 +84915,7 @@ export namespace Prisma {
84605
84915
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
84606
84916
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
84607
84917
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
84918
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
84608
84919
  approvals?: ApprovalCreateNestedManyWithoutUserInput
84609
84920
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
84610
84921
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -84665,6 +84976,7 @@ export namespace Prisma {
84665
84976
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
84666
84977
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
84667
84978
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
84979
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
84668
84980
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
84669
84981
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
84670
84982
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -84763,6 +85075,7 @@ export namespace Prisma {
84763
85075
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
84764
85076
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
84765
85077
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
85078
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
84766
85079
  approvals?: ApprovalCreateNestedManyWithoutUserInput
84767
85080
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
84768
85081
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -84823,6 +85136,7 @@ export namespace Prisma {
84823
85136
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
84824
85137
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
84825
85138
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
85139
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
84826
85140
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
84827
85141
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
84828
85142
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -84934,6 +85248,7 @@ export namespace Prisma {
84934
85248
  uploaded_job_description_path?: string | null
84935
85249
  is_plan_published?: boolean
84936
85250
  is_posted?: boolean
85251
+ summary?: NullableJsonNullValueInput | InputJsonValue
84937
85252
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
84938
85253
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
84939
85254
  created_at?: Date | string
@@ -84970,6 +85285,7 @@ export namespace Prisma {
84970
85285
  uploaded_job_description_path?: string | null
84971
85286
  is_plan_published?: boolean
84972
85287
  is_posted?: boolean
85288
+ summary?: NullableJsonNullValueInput | InputJsonValue
84973
85289
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
84974
85290
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
84975
85291
  created_at?: Date | string
@@ -85173,6 +85489,7 @@ export namespace Prisma {
85173
85489
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
85174
85490
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
85175
85491
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
85492
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
85176
85493
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
85177
85494
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
85178
85495
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -85233,6 +85550,7 @@ export namespace Prisma {
85233
85550
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
85234
85551
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
85235
85552
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
85553
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
85236
85554
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
85237
85555
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
85238
85556
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -85343,6 +85661,7 @@ export namespace Prisma {
85343
85661
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
85344
85662
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
85345
85663
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
85664
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
85346
85665
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
85347
85666
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
85348
85667
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -85403,6 +85722,7 @@ export namespace Prisma {
85403
85722
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
85404
85723
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
85405
85724
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
85725
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
85406
85726
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
85407
85727
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
85408
85728
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -85526,6 +85846,7 @@ export namespace Prisma {
85526
85846
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
85527
85847
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
85528
85848
  is_posted?: BoolFieldUpdateOperationsInput | boolean
85849
+ summary?: NullableJsonNullValueInput | InputJsonValue
85529
85850
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
85530
85851
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
85531
85852
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -85562,6 +85883,7 @@ export namespace Prisma {
85562
85883
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
85563
85884
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
85564
85885
  is_posted?: BoolFieldUpdateOperationsInput | boolean
85886
+ summary?: NullableJsonNullValueInput | InputJsonValue
85565
85887
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
85566
85888
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
85567
85889
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -85807,6 +86129,7 @@ export namespace Prisma {
85807
86129
  uploaded_job_description_path?: string | null
85808
86130
  is_plan_published?: boolean
85809
86131
  is_posted?: boolean
86132
+ summary?: NullableJsonNullValueInput | InputJsonValue
85810
86133
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
85811
86134
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
85812
86135
  created_at?: Date | string
@@ -85843,6 +86166,7 @@ export namespace Prisma {
85843
86166
  uploaded_job_description_path?: string | null
85844
86167
  is_plan_published?: boolean
85845
86168
  is_posted?: boolean
86169
+ summary?: NullableJsonNullValueInput | InputJsonValue
85846
86170
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
85847
86171
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
85848
86172
  created_at?: Date | string
@@ -86094,6 +86418,7 @@ export namespace Prisma {
86094
86418
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
86095
86419
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
86096
86420
  is_posted?: BoolFieldUpdateOperationsInput | boolean
86421
+ summary?: NullableJsonNullValueInput | InputJsonValue
86097
86422
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
86098
86423
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
86099
86424
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -86130,6 +86455,7 @@ export namespace Prisma {
86130
86455
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
86131
86456
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
86132
86457
  is_posted?: BoolFieldUpdateOperationsInput | boolean
86458
+ summary?: NullableJsonNullValueInput | InputJsonValue
86133
86459
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
86134
86460
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
86135
86461
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -86194,6 +86520,7 @@ export namespace Prisma {
86194
86520
  uploaded_job_description_path?: string | null
86195
86521
  is_plan_published?: boolean
86196
86522
  is_posted?: boolean
86523
+ summary?: NullableJsonNullValueInput | InputJsonValue
86197
86524
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
86198
86525
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
86199
86526
  created_at?: Date | string
@@ -86230,6 +86557,7 @@ export namespace Prisma {
86230
86557
  uploaded_job_description_path?: string | null
86231
86558
  is_plan_published?: boolean
86232
86559
  is_posted?: boolean
86560
+ summary?: NullableJsonNullValueInput | InputJsonValue
86233
86561
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
86234
86562
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
86235
86563
  created_at?: Date | string
@@ -86278,6 +86606,7 @@ export namespace Prisma {
86278
86606
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
86279
86607
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
86280
86608
  is_posted?: BoolFieldUpdateOperationsInput | boolean
86609
+ summary?: NullableJsonNullValueInput | InputJsonValue
86281
86610
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
86282
86611
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
86283
86612
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -86314,6 +86643,7 @@ export namespace Prisma {
86314
86643
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
86315
86644
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
86316
86645
  is_posted?: BoolFieldUpdateOperationsInput | boolean
86646
+ summary?: NullableJsonNullValueInput | InputJsonValue
86317
86647
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
86318
86648
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
86319
86649
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -86377,6 +86707,7 @@ export namespace Prisma {
86377
86707
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
86378
86708
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
86379
86709
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
86710
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
86380
86711
  approvals?: ApprovalCreateNestedManyWithoutUserInput
86381
86712
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
86382
86713
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -86437,6 +86768,7 @@ export namespace Prisma {
86437
86768
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
86438
86769
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
86439
86770
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
86771
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
86440
86772
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
86441
86773
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
86442
86774
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -86513,6 +86845,7 @@ export namespace Prisma {
86513
86845
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
86514
86846
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
86515
86847
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
86848
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
86516
86849
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
86517
86850
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
86518
86851
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -86573,6 +86906,7 @@ export namespace Prisma {
86573
86906
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
86574
86907
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
86575
86908
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
86909
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
86576
86910
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
86577
86911
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
86578
86912
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -86632,6 +86966,7 @@ export namespace Prisma {
86632
86966
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
86633
86967
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
86634
86968
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
86969
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
86635
86970
  approvals?: ApprovalCreateNestedManyWithoutUserInput
86636
86971
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
86637
86972
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -86692,6 +87027,7 @@ export namespace Prisma {
86692
87027
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
86693
87028
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
86694
87029
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
87030
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
86695
87031
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
86696
87032
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
86697
87033
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -86722,6 +87058,7 @@ export namespace Prisma {
86722
87058
  export type ResumeCreateWithoutCandidate_profileInput = {
86723
87059
  id?: string
86724
87060
  uploaded_resume_path?: string | null
87061
+ summary?: NullableJsonNullValueInput | InputJsonValue
86725
87062
  created_at?: Date | string
86726
87063
  updated_at?: Date | string
86727
87064
  created_by: string
@@ -86745,6 +87082,7 @@ export namespace Prisma {
86745
87082
  organisation_id?: string | null
86746
87083
  job_description_id?: string | null
86747
87084
  uploaded_resume_path?: string | null
87085
+ summary?: NullableJsonNullValueInput | InputJsonValue
86748
87086
  created_at?: Date | string
86749
87087
  updated_at?: Date | string
86750
87088
  created_by: string
@@ -86813,6 +87151,7 @@ export namespace Prisma {
86813
87151
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
86814
87152
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
86815
87153
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
87154
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
86816
87155
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
86817
87156
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
86818
87157
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -86873,6 +87212,7 @@ export namespace Prisma {
86873
87212
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
86874
87213
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
86875
87214
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
87215
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
86876
87216
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
86877
87217
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
86878
87218
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -86909,6 +87249,7 @@ export namespace Prisma {
86909
87249
  export type ResumeUpdateWithoutCandidate_profileInput = {
86910
87250
  id?: StringFieldUpdateOperationsInput | string
86911
87251
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
87252
+ summary?: NullableJsonNullValueInput | InputJsonValue
86912
87253
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
86913
87254
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
86914
87255
  created_by?: StringFieldUpdateOperationsInput | string
@@ -86932,6 +87273,7 @@ export namespace Prisma {
86932
87273
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
86933
87274
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
86934
87275
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
87276
+ summary?: NullableJsonNullValueInput | InputJsonValue
86935
87277
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
86936
87278
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
86937
87279
  created_by?: StringFieldUpdateOperationsInput | string
@@ -86954,6 +87296,7 @@ export namespace Prisma {
86954
87296
  uploaded_job_description_path?: string | null
86955
87297
  is_plan_published?: boolean
86956
87298
  is_posted?: boolean
87299
+ summary?: NullableJsonNullValueInput | InputJsonValue
86957
87300
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
86958
87301
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
86959
87302
  created_at?: Date | string
@@ -86990,6 +87333,7 @@ export namespace Prisma {
86990
87333
  uploaded_job_description_path?: string | null
86991
87334
  is_plan_published?: boolean
86992
87335
  is_posted?: boolean
87336
+ summary?: NullableJsonNullValueInput | InputJsonValue
86993
87337
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
86994
87338
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
86995
87339
  created_at?: Date | string
@@ -87390,6 +87734,7 @@ export namespace Prisma {
87390
87734
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
87391
87735
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
87392
87736
  is_posted?: BoolFieldUpdateOperationsInput | boolean
87737
+ summary?: NullableJsonNullValueInput | InputJsonValue
87393
87738
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
87394
87739
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
87395
87740
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -87426,6 +87771,7 @@ export namespace Prisma {
87426
87771
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
87427
87772
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
87428
87773
  is_posted?: BoolFieldUpdateOperationsInput | boolean
87774
+ summary?: NullableJsonNullValueInput | InputJsonValue
87429
87775
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
87430
87776
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
87431
87777
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -87919,6 +88265,7 @@ export namespace Prisma {
87919
88265
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
87920
88266
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
87921
88267
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
88268
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
87922
88269
  approvals?: ApprovalCreateNestedManyWithoutUserInput
87923
88270
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
87924
88271
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -87979,6 +88326,7 @@ export namespace Prisma {
87979
88326
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
87980
88327
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
87981
88328
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
88329
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
87982
88330
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
87983
88331
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
87984
88332
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -88008,6 +88356,7 @@ export namespace Prisma {
88008
88356
  export type ResumeCreateWithoutFit_checkInput = {
88009
88357
  id?: string
88010
88358
  uploaded_resume_path?: string | null
88359
+ summary?: NullableJsonNullValueInput | InputJsonValue
88011
88360
  created_at?: Date | string
88012
88361
  updated_at?: Date | string
88013
88362
  created_by: string
@@ -88031,6 +88380,7 @@ export namespace Prisma {
88031
88380
  organisation_id?: string | null
88032
88381
  job_description_id?: string | null
88033
88382
  uploaded_resume_path?: string | null
88383
+ summary?: NullableJsonNullValueInput | InputJsonValue
88034
88384
  created_at?: Date | string
88035
88385
  updated_at?: Date | string
88036
88386
  created_by: string
@@ -88058,6 +88408,7 @@ export namespace Prisma {
88058
88408
  uploaded_job_description_path?: string | null
88059
88409
  is_plan_published?: boolean
88060
88410
  is_posted?: boolean
88411
+ summary?: NullableJsonNullValueInput | InputJsonValue
88061
88412
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
88062
88413
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
88063
88414
  created_at?: Date | string
@@ -88094,6 +88445,7 @@ export namespace Prisma {
88094
88445
  uploaded_job_description_path?: string | null
88095
88446
  is_plan_published?: boolean
88096
88447
  is_posted?: boolean
88448
+ summary?: NullableJsonNullValueInput | InputJsonValue
88097
88449
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
88098
88450
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
88099
88451
  created_at?: Date | string
@@ -88307,6 +88659,7 @@ export namespace Prisma {
88307
88659
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
88308
88660
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
88309
88661
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
88662
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
88310
88663
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
88311
88664
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
88312
88665
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -88367,6 +88720,7 @@ export namespace Prisma {
88367
88720
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
88368
88721
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
88369
88722
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
88723
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
88370
88724
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
88371
88725
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
88372
88726
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -88402,6 +88756,7 @@ export namespace Prisma {
88402
88756
  export type ResumeUpdateWithoutFit_checkInput = {
88403
88757
  id?: StringFieldUpdateOperationsInput | string
88404
88758
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
88759
+ summary?: NullableJsonNullValueInput | InputJsonValue
88405
88760
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
88406
88761
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
88407
88762
  created_by?: StringFieldUpdateOperationsInput | string
@@ -88425,6 +88780,7 @@ export namespace Prisma {
88425
88780
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
88426
88781
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
88427
88782
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
88783
+ summary?: NullableJsonNullValueInput | InputJsonValue
88428
88784
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
88429
88785
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
88430
88786
  created_by?: StringFieldUpdateOperationsInput | string
@@ -88458,6 +88814,7 @@ export namespace Prisma {
88458
88814
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
88459
88815
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
88460
88816
  is_posted?: BoolFieldUpdateOperationsInput | boolean
88817
+ summary?: NullableJsonNullValueInput | InputJsonValue
88461
88818
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
88462
88819
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
88463
88820
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -88494,6 +88851,7 @@ export namespace Prisma {
88494
88851
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
88495
88852
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
88496
88853
  is_posted?: BoolFieldUpdateOperationsInput | boolean
88854
+ summary?: NullableJsonNullValueInput | InputJsonValue
88497
88855
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
88498
88856
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
88499
88857
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -88614,6 +88972,7 @@ export namespace Prisma {
88614
88972
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
88615
88973
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
88616
88974
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
88975
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
88617
88976
  approvals?: ApprovalCreateNestedManyWithoutUserInput
88618
88977
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
88619
88978
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -88674,6 +89033,7 @@ export namespace Prisma {
88674
89033
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
88675
89034
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
88676
89035
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
89036
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
88677
89037
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
88678
89038
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
88679
89039
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -88750,6 +89110,7 @@ export namespace Prisma {
88750
89110
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
88751
89111
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
88752
89112
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
89113
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
88753
89114
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
88754
89115
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
88755
89116
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -88810,6 +89171,7 @@ export namespace Prisma {
88810
89171
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
88811
89172
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
88812
89173
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
89174
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
88813
89175
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
88814
89176
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
88815
89177
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -88999,6 +89361,7 @@ export namespace Prisma {
88999
89361
  uploaded_job_description_path?: string | null
89000
89362
  is_plan_published?: boolean
89001
89363
  is_posted?: boolean
89364
+ summary?: NullableJsonNullValueInput | InputJsonValue
89002
89365
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
89003
89366
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
89004
89367
  created_at?: Date | string
@@ -89035,6 +89398,7 @@ export namespace Prisma {
89035
89398
  uploaded_job_description_path?: string | null
89036
89399
  is_plan_published?: boolean
89037
89400
  is_posted?: boolean
89401
+ summary?: NullableJsonNullValueInput | InputJsonValue
89038
89402
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
89039
89403
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
89040
89404
  created_at?: Date | string
@@ -89083,6 +89447,7 @@ export namespace Prisma {
89083
89447
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
89084
89448
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
89085
89449
  is_posted?: BoolFieldUpdateOperationsInput | boolean
89450
+ summary?: NullableJsonNullValueInput | InputJsonValue
89086
89451
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
89087
89452
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
89088
89453
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -89119,6 +89484,7 @@ export namespace Prisma {
89119
89484
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
89120
89485
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
89121
89486
  is_posted?: BoolFieldUpdateOperationsInput | boolean
89487
+ summary?: NullableJsonNullValueInput | InputJsonValue
89122
89488
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
89123
89489
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
89124
89490
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -89342,6 +89708,7 @@ export namespace Prisma {
89342
89708
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
89343
89709
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
89344
89710
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
89711
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
89345
89712
  approvals?: ApprovalCreateNestedManyWithoutUserInput
89346
89713
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
89347
89714
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -89402,6 +89769,7 @@ export namespace Prisma {
89402
89769
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
89403
89770
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
89404
89771
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
89772
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
89405
89773
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
89406
89774
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
89407
89775
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -89467,6 +89835,7 @@ export namespace Prisma {
89467
89835
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
89468
89836
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
89469
89837
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
89838
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
89470
89839
  approvals?: ApprovalCreateNestedManyWithoutUserInput
89471
89840
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
89472
89841
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -89527,6 +89896,7 @@ export namespace Prisma {
89527
89896
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
89528
89897
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
89529
89898
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
89899
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
89530
89900
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
89531
89901
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
89532
89902
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -89638,6 +90008,7 @@ export namespace Prisma {
89638
90008
  uploaded_job_description_path?: string | null
89639
90009
  is_plan_published?: boolean
89640
90010
  is_posted?: boolean
90011
+ summary?: NullableJsonNullValueInput | InputJsonValue
89641
90012
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
89642
90013
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
89643
90014
  created_at?: Date | string
@@ -89674,6 +90045,7 @@ export namespace Prisma {
89674
90045
  uploaded_job_description_path?: string | null
89675
90046
  is_plan_published?: boolean
89676
90047
  is_posted?: boolean
90048
+ summary?: NullableJsonNullValueInput | InputJsonValue
89677
90049
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
89678
90050
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
89679
90051
  created_at?: Date | string
@@ -89706,6 +90078,7 @@ export namespace Prisma {
89706
90078
  export type ResumeCreateWithoutInterviewsInput = {
89707
90079
  id?: string
89708
90080
  uploaded_resume_path?: string | null
90081
+ summary?: NullableJsonNullValueInput | InputJsonValue
89709
90082
  created_at?: Date | string
89710
90083
  updated_at?: Date | string
89711
90084
  created_by: string
@@ -89729,6 +90102,7 @@ export namespace Prisma {
89729
90102
  organisation_id?: string | null
89730
90103
  job_description_id?: string | null
89731
90104
  uploaded_resume_path?: string | null
90105
+ summary?: NullableJsonNullValueInput | InputJsonValue
89732
90106
  created_at?: Date | string
89733
90107
  updated_at?: Date | string
89734
90108
  created_by: string
@@ -90161,6 +90535,7 @@ export namespace Prisma {
90161
90535
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
90162
90536
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
90163
90537
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
90538
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
90164
90539
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
90165
90540
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
90166
90541
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -90221,6 +90596,7 @@ export namespace Prisma {
90221
90596
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
90222
90597
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
90223
90598
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
90599
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
90224
90600
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
90225
90601
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
90226
90602
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -90292,6 +90668,7 @@ export namespace Prisma {
90292
90668
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
90293
90669
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
90294
90670
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
90671
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
90295
90672
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
90296
90673
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
90297
90674
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -90352,6 +90729,7 @@ export namespace Prisma {
90352
90729
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
90353
90730
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
90354
90731
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
90732
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
90355
90733
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
90356
90734
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
90357
90735
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -90475,6 +90853,7 @@ export namespace Prisma {
90475
90853
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
90476
90854
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
90477
90855
  is_posted?: BoolFieldUpdateOperationsInput | boolean
90856
+ summary?: NullableJsonNullValueInput | InputJsonValue
90478
90857
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
90479
90858
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
90480
90859
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -90511,6 +90890,7 @@ export namespace Prisma {
90511
90890
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
90512
90891
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
90513
90892
  is_posted?: BoolFieldUpdateOperationsInput | boolean
90893
+ summary?: NullableJsonNullValueInput | InputJsonValue
90514
90894
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
90515
90895
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
90516
90896
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -90549,6 +90929,7 @@ export namespace Prisma {
90549
90929
  export type ResumeUpdateWithoutInterviewsInput = {
90550
90930
  id?: StringFieldUpdateOperationsInput | string
90551
90931
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
90932
+ summary?: NullableJsonNullValueInput | InputJsonValue
90552
90933
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
90553
90934
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
90554
90935
  created_by?: StringFieldUpdateOperationsInput | string
@@ -90572,6 +90953,7 @@ export namespace Prisma {
90572
90953
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
90573
90954
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
90574
90955
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
90956
+ summary?: NullableJsonNullValueInput | InputJsonValue
90575
90957
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
90576
90958
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
90577
90959
  created_by?: StringFieldUpdateOperationsInput | string
@@ -91133,11 +91515,13 @@ export namespace Prisma {
91133
91515
  title?: string | null
91134
91516
  role_type?: string | null
91135
91517
  work_arrangement?: string | null
91518
+ employment_type?: string | null
91136
91519
  location?: string | null
91137
91520
  experience_min?: string | null
91138
91521
  reporting?: string | null
91139
91522
  comp_range?: string | null
91140
91523
  comp_benchmark?: string | null
91524
+ budget?: string | null
91141
91525
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
91142
91526
  deliverables?: NullableJsonNullValueInput | InputJsonValue
91143
91527
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -91153,6 +91537,7 @@ export namespace Prisma {
91153
91537
  updated_at?: Date | string
91154
91538
  is_active?: boolean
91155
91539
  organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
91540
+ hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
91156
91541
  creator: UserCreateNestedOneWithoutCreated_job_profilesInput
91157
91542
  assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
91158
91543
  }
@@ -91160,17 +91545,20 @@ export namespace Prisma {
91160
91545
  export type JobProfileUncheckedCreateWithoutJob_descriptionsInput = {
91161
91546
  id?: string
91162
91547
  organisation_id: string
91548
+ hiring_manager_id?: string | null
91163
91549
  created_by: string
91164
91550
  assigned_to?: string | null
91165
91551
  status?: $Enums.JobProfileStatus
91166
91552
  title?: string | null
91167
91553
  role_type?: string | null
91168
91554
  work_arrangement?: string | null
91555
+ employment_type?: string | null
91169
91556
  location?: string | null
91170
91557
  experience_min?: string | null
91171
91558
  reporting?: string | null
91172
91559
  comp_range?: string | null
91173
91560
  comp_benchmark?: string | null
91561
+ budget?: string | null
91174
91562
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
91175
91563
  deliverables?: NullableJsonNullValueInput | InputJsonValue
91176
91564
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -91796,6 +92184,7 @@ export namespace Prisma {
91796
92184
  export type ResumeCreateWithoutJob_descriptionInput = {
91797
92185
  id?: string
91798
92186
  uploaded_resume_path?: string | null
92187
+ summary?: NullableJsonNullValueInput | InputJsonValue
91799
92188
  created_at?: Date | string
91800
92189
  updated_at?: Date | string
91801
92190
  created_by: string
@@ -91818,6 +92207,7 @@ export namespace Prisma {
91818
92207
  user_id?: string | null
91819
92208
  organisation_id?: string | null
91820
92209
  uploaded_resume_path?: string | null
92210
+ summary?: NullableJsonNullValueInput | InputJsonValue
91821
92211
  created_at?: Date | string
91822
92212
  updated_at?: Date | string
91823
92213
  created_by: string
@@ -91930,6 +92320,7 @@ export namespace Prisma {
91930
92320
  candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
91931
92321
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
91932
92322
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
92323
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
91933
92324
  approvals?: ApprovalCreateNestedManyWithoutUserInput
91934
92325
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
91935
92326
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -91990,6 +92381,7 @@ export namespace Prisma {
91990
92381
  candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
91991
92382
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
91992
92383
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
92384
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
91993
92385
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
91994
92386
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
91995
92387
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -92055,6 +92447,7 @@ export namespace Prisma {
92055
92447
  candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
92056
92448
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
92057
92449
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
92450
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
92058
92451
  approvals?: ApprovalCreateNestedManyWithoutUserInput
92059
92452
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
92060
92453
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -92115,6 +92508,7 @@ export namespace Prisma {
92115
92508
  candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
92116
92509
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
92117
92510
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
92511
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
92118
92512
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
92119
92513
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
92120
92514
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -92237,11 +92631,13 @@ export namespace Prisma {
92237
92631
  title?: NullableStringFieldUpdateOperationsInput | string | null
92238
92632
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
92239
92633
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
92634
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
92240
92635
  location?: NullableStringFieldUpdateOperationsInput | string | null
92241
92636
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
92242
92637
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
92243
92638
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
92244
92639
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
92640
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
92245
92641
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
92246
92642
  deliverables?: NullableJsonNullValueInput | InputJsonValue
92247
92643
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -92257,6 +92653,7 @@ export namespace Prisma {
92257
92653
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
92258
92654
  is_active?: BoolFieldUpdateOperationsInput | boolean
92259
92655
  organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
92656
+ hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
92260
92657
  creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
92261
92658
  assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
92262
92659
  }
@@ -92264,17 +92661,20 @@ export namespace Prisma {
92264
92661
  export type JobProfileUncheckedUpdateWithoutJob_descriptionsInput = {
92265
92662
  id?: StringFieldUpdateOperationsInput | string
92266
92663
  organisation_id?: StringFieldUpdateOperationsInput | string
92664
+ hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
92267
92665
  created_by?: StringFieldUpdateOperationsInput | string
92268
92666
  assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
92269
92667
  status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
92270
92668
  title?: NullableStringFieldUpdateOperationsInput | string | null
92271
92669
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
92272
92670
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
92671
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
92273
92672
  location?: NullableStringFieldUpdateOperationsInput | string | null
92274
92673
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
92275
92674
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
92276
92675
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
92277
92676
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
92677
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
92278
92678
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
92279
92679
  deliverables?: NullableJsonNullValueInput | InputJsonValue
92280
92680
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -92626,6 +93026,7 @@ export namespace Prisma {
92626
93026
  organisation_id?: StringNullableFilter<"Resume"> | string | null
92627
93027
  job_description_id?: StringNullableFilter<"Resume"> | string | null
92628
93028
  uploaded_resume_path?: StringNullableFilter<"Resume"> | string | null
93029
+ summary?: JsonNullableFilter<"Resume">
92629
93030
  created_at?: DateTimeFilter<"Resume"> | Date | string
92630
93031
  updated_at?: DateTimeFilter<"Resume"> | Date | string
92631
93032
  created_by?: StringFilter<"Resume"> | string
@@ -92739,6 +93140,7 @@ export namespace Prisma {
92739
93140
  candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
92740
93141
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
92741
93142
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
93143
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
92742
93144
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
92743
93145
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
92744
93146
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -92799,6 +93201,7 @@ export namespace Prisma {
92799
93201
  candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
92800
93202
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
92801
93203
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
93204
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
92802
93205
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
92803
93206
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
92804
93207
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -92893,6 +93296,7 @@ export namespace Prisma {
92893
93296
  uploaded_job_description_path?: string | null
92894
93297
  is_plan_published?: boolean
92895
93298
  is_posted?: boolean
93299
+ summary?: NullableJsonNullValueInput | InputJsonValue
92896
93300
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
92897
93301
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
92898
93302
  created_at?: Date | string
@@ -92929,6 +93333,7 @@ export namespace Prisma {
92929
93333
  uploaded_job_description_path?: string | null
92930
93334
  is_plan_published?: boolean
92931
93335
  is_posted?: boolean
93336
+ summary?: NullableJsonNullValueInput | InputJsonValue
92932
93337
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
92933
93338
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
92934
93339
  created_at?: Date | string
@@ -92977,6 +93382,7 @@ export namespace Prisma {
92977
93382
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
92978
93383
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
92979
93384
  is_posted?: BoolFieldUpdateOperationsInput | boolean
93385
+ summary?: NullableJsonNullValueInput | InputJsonValue
92980
93386
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
92981
93387
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
92982
93388
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -93013,6 +93419,7 @@ export namespace Prisma {
93013
93419
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
93014
93420
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
93015
93421
  is_posted?: BoolFieldUpdateOperationsInput | boolean
93422
+ summary?: NullableJsonNullValueInput | InputJsonValue
93016
93423
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
93017
93424
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
93018
93425
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -93114,6 +93521,133 @@ export namespace Prisma {
93114
93521
  create: XOR<OrganisationCreateWithoutJob_profilesInput, OrganisationUncheckedCreateWithoutJob_profilesInput>
93115
93522
  }
93116
93523
 
93524
+ export type UserCreateWithoutHiring_manager_job_profilesInput = {
93525
+ id?: string
93526
+ email: string
93527
+ password: string
93528
+ google_id?: string | null
93529
+ refresh_token?: string | null
93530
+ created_at?: Date | string
93531
+ updated_at?: Date | string
93532
+ created_by: string
93533
+ updated_by: string
93534
+ is_active?: boolean
93535
+ is_self_registered?: boolean
93536
+ profile_created: boolean
93537
+ first_login_status?: $Enums.FirstLoginStatus
93538
+ name?: string | null
93539
+ phone?: string | null
93540
+ description?: string | null
93541
+ date_of_birth?: Date | string | null
93542
+ designation?: string | null
93543
+ location?: string | null
93544
+ salary?: string | null
93545
+ work_experience?: NullableJsonNullValueInput | InputJsonValue
93546
+ education?: NullableJsonNullValueInput | InputJsonValue
93547
+ skills?: NullableJsonNullValueInput | InputJsonValue
93548
+ notice_period?: string | null
93549
+ preferred_work_mode?: string | null
93550
+ gender?: string | null
93551
+ ethnicity?: string | null
93552
+ veteran_status?: string | null
93553
+ disability_status?: string | null
93554
+ role: UserRoleCreateNestedOneWithoutUsersInput
93555
+ permission?: PermissionCreateNestedOneWithoutUserInput
93556
+ organisation?: OrganisationCreateNestedOneWithoutInterviewersInput
93557
+ applications?: ApplicationCreateNestedManyWithoutCandidateInput
93558
+ resume?: ResumeCreateNestedManyWithoutUserInput
93559
+ candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
93560
+ user_profile?: UserProfileCreateNestedOneWithoutUserInput
93561
+ job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
93562
+ hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
93563
+ approvals?: ApprovalCreateNestedManyWithoutUserInput
93564
+ sent_messages?: MessageCreateNestedManyWithoutSenderInput
93565
+ received_messages?: MessageCreateNestedManyWithoutReceiverInput
93566
+ candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
93567
+ interviewer_interviews?: InterviewCreateNestedManyWithoutInterviewerInput
93568
+ assessment_results?: AssessmentCreateNestedManyWithoutUserInput
93569
+ candidate_assessments?: AssessmentCreateNestedManyWithoutCandidateInput
93570
+ reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
93571
+ candidate_assignments?: AssignmentCreateNestedManyWithoutCandidateInput
93572
+ reviewer_assignments?: AssignmentCreateNestedManyWithoutReviewerInput
93573
+ candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
93574
+ questions?: QuestionCreateNestedManyWithoutCandidateInput
93575
+ ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
93576
+ actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
93577
+ actions?: ActionCreateNestedManyWithoutUserInput
93578
+ calendly?: CalendlyCreateNestedOneWithoutUserInput
93579
+ google?: GoogleCreateNestedOneWithoutUserInput
93580
+ fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
93581
+ created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
93582
+ assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
93583
+ }
93584
+
93585
+ export type UserUncheckedCreateWithoutHiring_manager_job_profilesInput = {
93586
+ id?: string
93587
+ email: string
93588
+ password: string
93589
+ role_id: string
93590
+ google_id?: string | null
93591
+ refresh_token?: string | null
93592
+ created_at?: Date | string
93593
+ updated_at?: Date | string
93594
+ created_by: string
93595
+ updated_by: string
93596
+ is_active?: boolean
93597
+ is_self_registered?: boolean
93598
+ permission_id?: string | null
93599
+ organisation_id?: string | null
93600
+ profile_created: boolean
93601
+ first_login_status?: $Enums.FirstLoginStatus
93602
+ name?: string | null
93603
+ phone?: string | null
93604
+ description?: string | null
93605
+ date_of_birth?: Date | string | null
93606
+ designation?: string | null
93607
+ location?: string | null
93608
+ salary?: string | null
93609
+ work_experience?: NullableJsonNullValueInput | InputJsonValue
93610
+ education?: NullableJsonNullValueInput | InputJsonValue
93611
+ skills?: NullableJsonNullValueInput | InputJsonValue
93612
+ notice_period?: string | null
93613
+ preferred_work_mode?: string | null
93614
+ gender?: string | null
93615
+ ethnicity?: string | null
93616
+ veteran_status?: string | null
93617
+ disability_status?: string | null
93618
+ applications?: ApplicationUncheckedCreateNestedManyWithoutCandidateInput
93619
+ resume?: ResumeUncheckedCreateNestedManyWithoutUserInput
93620
+ candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
93621
+ user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
93622
+ job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
93623
+ hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
93624
+ approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
93625
+ sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
93626
+ received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
93627
+ candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
93628
+ interviewer_interviews?: InterviewUncheckedCreateNestedManyWithoutInterviewerInput
93629
+ assessment_results?: AssessmentUncheckedCreateNestedManyWithoutUserInput
93630
+ candidate_assessments?: AssessmentUncheckedCreateNestedManyWithoutCandidateInput
93631
+ reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
93632
+ candidate_assignments?: AssignmentUncheckedCreateNestedManyWithoutCandidateInput
93633
+ reviewer_assignments?: AssignmentUncheckedCreateNestedManyWithoutReviewerInput
93634
+ candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
93635
+ questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
93636
+ ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
93637
+ actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
93638
+ actions?: ActionUncheckedCreateNestedManyWithoutUserInput
93639
+ calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
93640
+ google?: GoogleUncheckedCreateNestedOneWithoutUserInput
93641
+ fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
93642
+ created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
93643
+ assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
93644
+ }
93645
+
93646
+ export type UserCreateOrConnectWithoutHiring_manager_job_profilesInput = {
93647
+ where: UserWhereUniqueInput
93648
+ create: XOR<UserCreateWithoutHiring_manager_job_profilesInput, UserUncheckedCreateWithoutHiring_manager_job_profilesInput>
93649
+ }
93650
+
93117
93651
  export type UserCreateWithoutCreated_job_profilesInput = {
93118
93652
  id?: string
93119
93653
  email: string
@@ -93153,6 +93687,7 @@ export namespace Prisma {
93153
93687
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
93154
93688
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
93155
93689
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
93690
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
93156
93691
  approvals?: ApprovalCreateNestedManyWithoutUserInput
93157
93692
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
93158
93693
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -93213,6 +93748,7 @@ export namespace Prisma {
93213
93748
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
93214
93749
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
93215
93750
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
93751
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
93216
93752
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
93217
93753
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
93218
93754
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -93278,6 +93814,7 @@ export namespace Prisma {
93278
93814
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
93279
93815
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
93280
93816
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
93817
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
93281
93818
  approvals?: ApprovalCreateNestedManyWithoutUserInput
93282
93819
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
93283
93820
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -93338,6 +93875,7 @@ export namespace Prisma {
93338
93875
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
93339
93876
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
93340
93877
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
93878
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
93341
93879
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
93342
93880
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
93343
93881
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -93372,6 +93910,7 @@ export namespace Prisma {
93372
93910
  uploaded_job_description_path?: string | null
93373
93911
  is_plan_published?: boolean
93374
93912
  is_posted?: boolean
93913
+ summary?: NullableJsonNullValueInput | InputJsonValue
93375
93914
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
93376
93915
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
93377
93916
  created_at?: Date | string
@@ -93408,6 +93947,7 @@ export namespace Prisma {
93408
93947
  uploaded_job_description_path?: string | null
93409
93948
  is_plan_published?: boolean
93410
93949
  is_posted?: boolean
93950
+ summary?: NullableJsonNullValueInput | InputJsonValue
93411
93951
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
93412
93952
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
93413
93953
  created_at?: Date | string
@@ -93525,6 +94065,139 @@ export namespace Prisma {
93525
94065
  assessments?: AssessmentUncheckedUpdateManyWithoutOrganisationNestedInput
93526
94066
  }
93527
94067
 
94068
+ export type UserUpsertWithoutHiring_manager_job_profilesInput = {
94069
+ update: XOR<UserUpdateWithoutHiring_manager_job_profilesInput, UserUncheckedUpdateWithoutHiring_manager_job_profilesInput>
94070
+ create: XOR<UserCreateWithoutHiring_manager_job_profilesInput, UserUncheckedCreateWithoutHiring_manager_job_profilesInput>
94071
+ where?: UserWhereInput
94072
+ }
94073
+
94074
+ export type UserUpdateToOneWithWhereWithoutHiring_manager_job_profilesInput = {
94075
+ where?: UserWhereInput
94076
+ data: XOR<UserUpdateWithoutHiring_manager_job_profilesInput, UserUncheckedUpdateWithoutHiring_manager_job_profilesInput>
94077
+ }
94078
+
94079
+ export type UserUpdateWithoutHiring_manager_job_profilesInput = {
94080
+ id?: StringFieldUpdateOperationsInput | string
94081
+ email?: StringFieldUpdateOperationsInput | string
94082
+ password?: StringFieldUpdateOperationsInput | string
94083
+ google_id?: NullableStringFieldUpdateOperationsInput | string | null
94084
+ refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
94085
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
94086
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
94087
+ created_by?: StringFieldUpdateOperationsInput | string
94088
+ updated_by?: StringFieldUpdateOperationsInput | string
94089
+ is_active?: BoolFieldUpdateOperationsInput | boolean
94090
+ is_self_registered?: BoolFieldUpdateOperationsInput | boolean
94091
+ profile_created?: BoolFieldUpdateOperationsInput | boolean
94092
+ first_login_status?: EnumFirstLoginStatusFieldUpdateOperationsInput | $Enums.FirstLoginStatus
94093
+ name?: NullableStringFieldUpdateOperationsInput | string | null
94094
+ phone?: NullableStringFieldUpdateOperationsInput | string | null
94095
+ description?: NullableStringFieldUpdateOperationsInput | string | null
94096
+ date_of_birth?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
94097
+ designation?: NullableStringFieldUpdateOperationsInput | string | null
94098
+ location?: NullableStringFieldUpdateOperationsInput | string | null
94099
+ salary?: NullableStringFieldUpdateOperationsInput | string | null
94100
+ work_experience?: NullableJsonNullValueInput | InputJsonValue
94101
+ education?: NullableJsonNullValueInput | InputJsonValue
94102
+ skills?: NullableJsonNullValueInput | InputJsonValue
94103
+ notice_period?: NullableStringFieldUpdateOperationsInput | string | null
94104
+ preferred_work_mode?: NullableStringFieldUpdateOperationsInput | string | null
94105
+ gender?: NullableStringFieldUpdateOperationsInput | string | null
94106
+ ethnicity?: NullableStringFieldUpdateOperationsInput | string | null
94107
+ veteran_status?: NullableStringFieldUpdateOperationsInput | string | null
94108
+ disability_status?: NullableStringFieldUpdateOperationsInput | string | null
94109
+ role?: UserRoleUpdateOneRequiredWithoutUsersNestedInput
94110
+ permission?: PermissionUpdateOneWithoutUserNestedInput
94111
+ organisation?: OrganisationUpdateOneWithoutInterviewersNestedInput
94112
+ applications?: ApplicationUpdateManyWithoutCandidateNestedInput
94113
+ resume?: ResumeUpdateManyWithoutUserNestedInput
94114
+ candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
94115
+ user_profile?: UserProfileUpdateOneWithoutUserNestedInput
94116
+ job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
94117
+ hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
94118
+ approvals?: ApprovalUpdateManyWithoutUserNestedInput
94119
+ sent_messages?: MessageUpdateManyWithoutSenderNestedInput
94120
+ received_messages?: MessageUpdateManyWithoutReceiverNestedInput
94121
+ candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
94122
+ interviewer_interviews?: InterviewUpdateManyWithoutInterviewerNestedInput
94123
+ assessment_results?: AssessmentUpdateManyWithoutUserNestedInput
94124
+ candidate_assessments?: AssessmentUpdateManyWithoutCandidateNestedInput
94125
+ reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
94126
+ candidate_assignments?: AssignmentUpdateManyWithoutCandidateNestedInput
94127
+ reviewer_assignments?: AssignmentUpdateManyWithoutReviewerNestedInput
94128
+ candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
94129
+ questions?: QuestionUpdateManyWithoutCandidateNestedInput
94130
+ ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
94131
+ actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
94132
+ actions?: ActionUpdateManyWithoutUserNestedInput
94133
+ calendly?: CalendlyUpdateOneWithoutUserNestedInput
94134
+ google?: GoogleUpdateOneWithoutUserNestedInput
94135
+ fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
94136
+ created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
94137
+ assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
94138
+ }
94139
+
94140
+ export type UserUncheckedUpdateWithoutHiring_manager_job_profilesInput = {
94141
+ id?: StringFieldUpdateOperationsInput | string
94142
+ email?: StringFieldUpdateOperationsInput | string
94143
+ password?: StringFieldUpdateOperationsInput | string
94144
+ role_id?: StringFieldUpdateOperationsInput | string
94145
+ google_id?: NullableStringFieldUpdateOperationsInput | string | null
94146
+ refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
94147
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
94148
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
94149
+ created_by?: StringFieldUpdateOperationsInput | string
94150
+ updated_by?: StringFieldUpdateOperationsInput | string
94151
+ is_active?: BoolFieldUpdateOperationsInput | boolean
94152
+ is_self_registered?: BoolFieldUpdateOperationsInput | boolean
94153
+ permission_id?: NullableStringFieldUpdateOperationsInput | string | null
94154
+ organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
94155
+ profile_created?: BoolFieldUpdateOperationsInput | boolean
94156
+ first_login_status?: EnumFirstLoginStatusFieldUpdateOperationsInput | $Enums.FirstLoginStatus
94157
+ name?: NullableStringFieldUpdateOperationsInput | string | null
94158
+ phone?: NullableStringFieldUpdateOperationsInput | string | null
94159
+ description?: NullableStringFieldUpdateOperationsInput | string | null
94160
+ date_of_birth?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
94161
+ designation?: NullableStringFieldUpdateOperationsInput | string | null
94162
+ location?: NullableStringFieldUpdateOperationsInput | string | null
94163
+ salary?: NullableStringFieldUpdateOperationsInput | string | null
94164
+ work_experience?: NullableJsonNullValueInput | InputJsonValue
94165
+ education?: NullableJsonNullValueInput | InputJsonValue
94166
+ skills?: NullableJsonNullValueInput | InputJsonValue
94167
+ notice_period?: NullableStringFieldUpdateOperationsInput | string | null
94168
+ preferred_work_mode?: NullableStringFieldUpdateOperationsInput | string | null
94169
+ gender?: NullableStringFieldUpdateOperationsInput | string | null
94170
+ ethnicity?: NullableStringFieldUpdateOperationsInput | string | null
94171
+ veteran_status?: NullableStringFieldUpdateOperationsInput | string | null
94172
+ disability_status?: NullableStringFieldUpdateOperationsInput | string | null
94173
+ applications?: ApplicationUncheckedUpdateManyWithoutCandidateNestedInput
94174
+ resume?: ResumeUncheckedUpdateManyWithoutUserNestedInput
94175
+ candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
94176
+ user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
94177
+ job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
94178
+ hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
94179
+ approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
94180
+ sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
94181
+ received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
94182
+ candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
94183
+ interviewer_interviews?: InterviewUncheckedUpdateManyWithoutInterviewerNestedInput
94184
+ assessment_results?: AssessmentUncheckedUpdateManyWithoutUserNestedInput
94185
+ candidate_assessments?: AssessmentUncheckedUpdateManyWithoutCandidateNestedInput
94186
+ reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
94187
+ candidate_assignments?: AssignmentUncheckedUpdateManyWithoutCandidateNestedInput
94188
+ reviewer_assignments?: AssignmentUncheckedUpdateManyWithoutReviewerNestedInput
94189
+ candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
94190
+ questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
94191
+ ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
94192
+ actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
94193
+ actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
94194
+ calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
94195
+ google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
94196
+ fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
94197
+ created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
94198
+ assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
94199
+ }
94200
+
93528
94201
  export type UserUpsertWithoutCreated_job_profilesInput = {
93529
94202
  update: XOR<UserUpdateWithoutCreated_job_profilesInput, UserUncheckedUpdateWithoutCreated_job_profilesInput>
93530
94203
  create: XOR<UserCreateWithoutCreated_job_profilesInput, UserUncheckedCreateWithoutCreated_job_profilesInput>
@@ -93575,6 +94248,7 @@ export namespace Prisma {
93575
94248
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
93576
94249
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
93577
94250
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
94251
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
93578
94252
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
93579
94253
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
93580
94254
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -93635,6 +94309,7 @@ export namespace Prisma {
93635
94309
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
93636
94310
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
93637
94311
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
94312
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
93638
94313
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
93639
94314
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
93640
94315
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -93706,6 +94381,7 @@ export namespace Prisma {
93706
94381
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
93707
94382
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
93708
94383
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
94384
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
93709
94385
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
93710
94386
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
93711
94387
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -93766,6 +94442,7 @@ export namespace Prisma {
93766
94442
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
93767
94443
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
93768
94444
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
94445
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
93769
94446
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
93770
94447
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
93771
94448
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -93816,6 +94493,7 @@ export namespace Prisma {
93816
94493
  uploaded_job_description_path?: StringNullableFilter<"JobDescription"> | string | null
93817
94494
  is_plan_published?: BoolFilter<"JobDescription"> | boolean
93818
94495
  is_posted?: BoolFilter<"JobDescription"> | boolean
94496
+ summary?: JsonNullableFilter<"JobDescription">
93819
94497
  ai_insight?: JsonNullableFilter<"JobDescription">
93820
94498
  job_fit_comparison?: JsonNullableFilter<"JobDescription">
93821
94499
  created_at?: DateTimeFilter<"JobDescription"> | Date | string
@@ -94042,6 +94720,7 @@ export namespace Prisma {
94042
94720
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
94043
94721
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
94044
94722
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
94723
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
94045
94724
  approvals?: ApprovalCreateNestedManyWithoutUserInput
94046
94725
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
94047
94726
  candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
@@ -94102,6 +94781,7 @@ export namespace Prisma {
94102
94781
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
94103
94782
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
94104
94783
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
94784
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
94105
94785
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
94106
94786
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
94107
94787
  candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
@@ -94167,6 +94847,7 @@ export namespace Prisma {
94167
94847
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
94168
94848
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
94169
94849
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
94850
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
94170
94851
  approvals?: ApprovalCreateNestedManyWithoutUserInput
94171
94852
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
94172
94853
  candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
@@ -94227,6 +94908,7 @@ export namespace Prisma {
94227
94908
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
94228
94909
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
94229
94910
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
94911
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
94230
94912
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
94231
94913
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
94232
94914
  candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
@@ -94303,6 +94985,7 @@ export namespace Prisma {
94303
94985
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
94304
94986
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
94305
94987
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
94988
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
94306
94989
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
94307
94990
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
94308
94991
  candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
@@ -94363,6 +95046,7 @@ export namespace Prisma {
94363
95046
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
94364
95047
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
94365
95048
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
95049
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
94366
95050
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
94367
95051
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
94368
95052
  candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
@@ -94434,6 +95118,7 @@ export namespace Prisma {
94434
95118
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
94435
95119
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
94436
95120
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
95121
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
94437
95122
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
94438
95123
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
94439
95124
  candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
@@ -94494,6 +95179,7 @@ export namespace Prisma {
94494
95179
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
94495
95180
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
94496
95181
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
95182
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
94497
95183
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
94498
95184
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
94499
95185
  candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
@@ -94523,6 +95209,7 @@ export namespace Prisma {
94523
95209
  uploaded_job_description_path?: string | null
94524
95210
  is_plan_published?: boolean
94525
95211
  is_posted?: boolean
95212
+ summary?: NullableJsonNullValueInput | InputJsonValue
94526
95213
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
94527
95214
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
94528
95215
  created_at?: Date | string
@@ -94559,6 +95246,7 @@ export namespace Prisma {
94559
95246
  uploaded_job_description_path?: string | null
94560
95247
  is_plan_published?: boolean
94561
95248
  is_posted?: boolean
95249
+ summary?: NullableJsonNullValueInput | InputJsonValue
94562
95250
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
94563
95251
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
94564
95252
  created_at?: Date | string
@@ -94678,6 +95366,7 @@ export namespace Prisma {
94678
95366
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
94679
95367
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
94680
95368
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
95369
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
94681
95370
  approvals?: ApprovalCreateNestedManyWithoutUserInput
94682
95371
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
94683
95372
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -94738,6 +95427,7 @@ export namespace Prisma {
94738
95427
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
94739
95428
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
94740
95429
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
95430
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
94741
95431
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
94742
95432
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
94743
95433
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -94767,6 +95457,7 @@ export namespace Prisma {
94767
95457
  export type ResumeCreateWithoutOngoing_evaluationsInput = {
94768
95458
  id?: string
94769
95459
  uploaded_resume_path?: string | null
95460
+ summary?: NullableJsonNullValueInput | InputJsonValue
94770
95461
  created_at?: Date | string
94771
95462
  updated_at?: Date | string
94772
95463
  created_by: string
@@ -94790,6 +95481,7 @@ export namespace Prisma {
94790
95481
  organisation_id?: string | null
94791
95482
  job_description_id?: string | null
94792
95483
  uploaded_resume_path?: string | null
95484
+ summary?: NullableJsonNullValueInput | InputJsonValue
94793
95485
  created_at?: Date | string
94794
95486
  updated_at?: Date | string
94795
95487
  created_by: string
@@ -95149,6 +95841,7 @@ export namespace Prisma {
95149
95841
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
95150
95842
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
95151
95843
  is_posted?: BoolFieldUpdateOperationsInput | boolean
95844
+ summary?: NullableJsonNullValueInput | InputJsonValue
95152
95845
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
95153
95846
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
95154
95847
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -95185,6 +95878,7 @@ export namespace Prisma {
95185
95878
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
95186
95879
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
95187
95880
  is_posted?: BoolFieldUpdateOperationsInput | boolean
95881
+ summary?: NullableJsonNullValueInput | InputJsonValue
95188
95882
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
95189
95883
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
95190
95884
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -95316,6 +96010,7 @@ export namespace Prisma {
95316
96010
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
95317
96011
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
95318
96012
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
96013
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
95319
96014
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
95320
96015
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
95321
96016
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -95376,6 +96071,7 @@ export namespace Prisma {
95376
96071
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
95377
96072
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
95378
96073
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
96074
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
95379
96075
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
95380
96076
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
95381
96077
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -95411,6 +96107,7 @@ export namespace Prisma {
95411
96107
  export type ResumeUpdateWithoutOngoing_evaluationsInput = {
95412
96108
  id?: StringFieldUpdateOperationsInput | string
95413
96109
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
96110
+ summary?: NullableJsonNullValueInput | InputJsonValue
95414
96111
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
95415
96112
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
95416
96113
  created_by?: StringFieldUpdateOperationsInput | string
@@ -95434,6 +96131,7 @@ export namespace Prisma {
95434
96131
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
95435
96132
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
95436
96133
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
96134
+ summary?: NullableJsonNullValueInput | InputJsonValue
95437
96135
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
95438
96136
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
95439
96137
  created_by?: StringFieldUpdateOperationsInput | string
@@ -95837,6 +96535,7 @@ export namespace Prisma {
95837
96535
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
95838
96536
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
95839
96537
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
96538
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
95840
96539
  approvals?: ApprovalCreateNestedManyWithoutUserInput
95841
96540
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
95842
96541
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -95897,6 +96596,7 @@ export namespace Prisma {
95897
96596
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
95898
96597
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
95899
96598
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
96599
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
95900
96600
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
95901
96601
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
95902
96602
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -96029,6 +96729,7 @@ export namespace Prisma {
96029
96729
  uploaded_job_description_path?: string | null
96030
96730
  is_plan_published?: boolean
96031
96731
  is_posted?: boolean
96732
+ summary?: NullableJsonNullValueInput | InputJsonValue
96032
96733
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
96033
96734
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
96034
96735
  created_at?: Date | string
@@ -96064,6 +96765,7 @@ export namespace Prisma {
96064
96765
  uploaded_job_description_path?: string | null
96065
96766
  is_plan_published?: boolean
96066
96767
  is_posted?: boolean
96768
+ summary?: NullableJsonNullValueInput | InputJsonValue
96067
96769
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
96068
96770
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
96069
96771
  created_at?: Date | string
@@ -96105,11 +96807,13 @@ export namespace Prisma {
96105
96807
  title?: string | null
96106
96808
  role_type?: string | null
96107
96809
  work_arrangement?: string | null
96810
+ employment_type?: string | null
96108
96811
  location?: string | null
96109
96812
  experience_min?: string | null
96110
96813
  reporting?: string | null
96111
96814
  comp_range?: string | null
96112
96815
  comp_benchmark?: string | null
96816
+ budget?: string | null
96113
96817
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
96114
96818
  deliverables?: NullableJsonNullValueInput | InputJsonValue
96115
96819
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -96124,6 +96828,7 @@ export namespace Prisma {
96124
96828
  created_at?: Date | string
96125
96829
  updated_at?: Date | string
96126
96830
  is_active?: boolean
96831
+ hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
96127
96832
  creator: UserCreateNestedOneWithoutCreated_job_profilesInput
96128
96833
  assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
96129
96834
  job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
@@ -96131,17 +96836,20 @@ export namespace Prisma {
96131
96836
 
96132
96837
  export type JobProfileUncheckedCreateWithoutOrganisationInput = {
96133
96838
  id?: string
96839
+ hiring_manager_id?: string | null
96134
96840
  created_by: string
96135
96841
  assigned_to?: string | null
96136
96842
  status?: $Enums.JobProfileStatus
96137
96843
  title?: string | null
96138
96844
  role_type?: string | null
96139
96845
  work_arrangement?: string | null
96846
+ employment_type?: string | null
96140
96847
  location?: string | null
96141
96848
  experience_min?: string | null
96142
96849
  reporting?: string | null
96143
96850
  comp_range?: string | null
96144
96851
  comp_benchmark?: string | null
96852
+ budget?: string | null
96145
96853
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
96146
96854
  deliverables?: NullableJsonNullValueInput | InputJsonValue
96147
96855
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -96484,6 +97192,7 @@ export namespace Prisma {
96484
97192
  export type ResumeCreateWithoutOrganisationInput = {
96485
97193
  id?: string
96486
97194
  uploaded_resume_path?: string | null
97195
+ summary?: NullableJsonNullValueInput | InputJsonValue
96487
97196
  created_at?: Date | string
96488
97197
  updated_at?: Date | string
96489
97198
  created_by: string
@@ -96506,6 +97215,7 @@ export namespace Prisma {
96506
97215
  user_id?: string | null
96507
97216
  job_description_id?: string | null
96508
97217
  uploaded_resume_path?: string | null
97218
+ summary?: NullableJsonNullValueInput | InputJsonValue
96509
97219
  created_at?: Date | string
96510
97220
  updated_at?: Date | string
96511
97221
  created_by: string
@@ -96955,17 +97665,20 @@ export namespace Prisma {
96955
97665
  NOT?: JobProfileScalarWhereInput | JobProfileScalarWhereInput[]
96956
97666
  id?: StringFilter<"JobProfile"> | string
96957
97667
  organisation_id?: StringFilter<"JobProfile"> | string
97668
+ hiring_manager_id?: StringNullableFilter<"JobProfile"> | string | null
96958
97669
  created_by?: StringFilter<"JobProfile"> | string
96959
97670
  assigned_to?: StringNullableFilter<"JobProfile"> | string | null
96960
97671
  status?: EnumJobProfileStatusFilter<"JobProfile"> | $Enums.JobProfileStatus
96961
97672
  title?: StringNullableFilter<"JobProfile"> | string | null
96962
97673
  role_type?: StringNullableFilter<"JobProfile"> | string | null
96963
97674
  work_arrangement?: StringNullableFilter<"JobProfile"> | string | null
97675
+ employment_type?: StringNullableFilter<"JobProfile"> | string | null
96964
97676
  location?: StringNullableFilter<"JobProfile"> | string | null
96965
97677
  experience_min?: StringNullableFilter<"JobProfile"> | string | null
96966
97678
  reporting?: StringNullableFilter<"JobProfile"> | string | null
96967
97679
  comp_range?: StringNullableFilter<"JobProfile"> | string | null
96968
97680
  comp_benchmark?: StringNullableFilter<"JobProfile"> | string | null
97681
+ budget?: StringNullableFilter<"JobProfile"> | string | null
96969
97682
  responsibilities?: JsonNullableFilter<"JobProfile">
96970
97683
  deliverables?: JsonNullableFilter<"JobProfile">
96971
97684
  must_have_skills?: JsonNullableFilter<"JobProfile">
@@ -97306,6 +98019,7 @@ export namespace Prisma {
97306
98019
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
97307
98020
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
97308
98021
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
98022
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
97309
98023
  approvals?: ApprovalCreateNestedManyWithoutUserInput
97310
98024
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
97311
98025
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -97366,6 +98080,7 @@ export namespace Prisma {
97366
98080
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
97367
98081
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
97368
98082
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
98083
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
97369
98084
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
97370
98085
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
97371
98086
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -97473,6 +98188,7 @@ export namespace Prisma {
97473
98188
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
97474
98189
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
97475
98190
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
98191
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
97476
98192
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
97477
98193
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
97478
98194
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -97533,6 +98249,7 @@ export namespace Prisma {
97533
98249
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
97534
98250
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
97535
98251
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
98252
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
97536
98253
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
97537
98254
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
97538
98255
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -97631,6 +98348,7 @@ export namespace Prisma {
97631
98348
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
97632
98349
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
97633
98350
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
98351
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
97634
98352
  approvals?: ApprovalCreateNestedManyWithoutUserInput
97635
98353
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
97636
98354
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -97691,6 +98409,7 @@ export namespace Prisma {
97691
98409
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
97692
98410
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
97693
98411
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
98412
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
97694
98413
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
97695
98414
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
97696
98415
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -97929,6 +98648,7 @@ export namespace Prisma {
97929
98648
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
97930
98649
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
97931
98650
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
98651
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
97932
98652
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
97933
98653
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
97934
98654
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -97989,6 +98709,7 @@ export namespace Prisma {
97989
98709
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
97990
98710
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
97991
98711
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
98712
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
97992
98713
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
97993
98714
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
97994
98715
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -98196,6 +98917,7 @@ export namespace Prisma {
98196
98917
  user_profile?: UserProfileCreateNestedOneWithoutUserInput
98197
98918
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
98198
98919
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
98920
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
98199
98921
  approvals?: ApprovalCreateNestedManyWithoutUserInput
98200
98922
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
98201
98923
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -98256,6 +98978,7 @@ export namespace Prisma {
98256
98978
  user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
98257
98979
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
98258
98980
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
98981
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
98259
98982
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
98260
98983
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
98261
98984
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -98368,6 +99091,7 @@ export namespace Prisma {
98368
99091
  uploaded_job_description_path?: string | null
98369
99092
  is_plan_published?: boolean
98370
99093
  is_posted?: boolean
99094
+ summary?: NullableJsonNullValueInput | InputJsonValue
98371
99095
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
98372
99096
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
98373
99097
  created_at?: Date | string
@@ -98404,6 +99128,7 @@ export namespace Prisma {
98404
99128
  uploaded_job_description_path?: string | null
98405
99129
  is_plan_published?: boolean
98406
99130
  is_posted?: boolean
99131
+ summary?: NullableJsonNullValueInput | InputJsonValue
98407
99132
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
98408
99133
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
98409
99134
  created_at?: Date | string
@@ -98863,6 +99588,7 @@ export namespace Prisma {
98863
99588
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
98864
99589
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
98865
99590
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
99591
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
98866
99592
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
98867
99593
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
98868
99594
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -98923,6 +99649,7 @@ export namespace Prisma {
98923
99649
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
98924
99650
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
98925
99651
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
99652
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
98926
99653
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
98927
99654
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
98928
99655
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -99047,6 +99774,7 @@ export namespace Prisma {
99047
99774
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
99048
99775
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
99049
99776
  is_posted?: BoolFieldUpdateOperationsInput | boolean
99777
+ summary?: NullableJsonNullValueInput | InputJsonValue
99050
99778
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
99051
99779
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
99052
99780
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -99083,6 +99811,7 @@ export namespace Prisma {
99083
99811
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
99084
99812
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
99085
99813
  is_posted?: BoolFieldUpdateOperationsInput | boolean
99814
+ summary?: NullableJsonNullValueInput | InputJsonValue
99086
99815
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
99087
99816
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
99088
99817
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -99258,6 +99987,7 @@ export namespace Prisma {
99258
99987
  export type ResumeCreateWithoutResume_dataInput = {
99259
99988
  id?: string
99260
99989
  uploaded_resume_path?: string | null
99990
+ summary?: NullableJsonNullValueInput | InputJsonValue
99261
99991
  created_at?: Date | string
99262
99992
  updated_at?: Date | string
99263
99993
  created_by: string
@@ -99281,6 +100011,7 @@ export namespace Prisma {
99281
100011
  organisation_id?: string | null
99282
100012
  job_description_id?: string | null
99283
100013
  uploaded_resume_path?: string | null
100014
+ summary?: NullableJsonNullValueInput | InputJsonValue
99284
100015
  created_at?: Date | string
99285
100016
  updated_at?: Date | string
99286
100017
  created_by: string
@@ -99314,6 +100045,7 @@ export namespace Prisma {
99314
100045
  export type ResumeUpdateWithoutResume_dataInput = {
99315
100046
  id?: StringFieldUpdateOperationsInput | string
99316
100047
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
100048
+ summary?: NullableJsonNullValueInput | InputJsonValue
99317
100049
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
99318
100050
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
99319
100051
  created_by?: StringFieldUpdateOperationsInput | string
@@ -99337,6 +100069,7 @@ export namespace Prisma {
99337
100069
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
99338
100070
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
99339
100071
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
100072
+ summary?: NullableJsonNullValueInput | InputJsonValue
99340
100073
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
99341
100074
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
99342
100075
  created_by?: StringFieldUpdateOperationsInput | string
@@ -99873,6 +100606,7 @@ export namespace Prisma {
99873
100606
  uploaded_job_description_path?: string | null
99874
100607
  is_plan_published?: boolean
99875
100608
  is_posted?: boolean
100609
+ summary?: NullableJsonNullValueInput | InputJsonValue
99876
100610
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
99877
100611
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
99878
100612
  created_at?: Date | string
@@ -99909,6 +100643,7 @@ export namespace Prisma {
99909
100643
  uploaded_job_description_path?: string | null
99910
100644
  is_plan_published?: boolean
99911
100645
  is_posted?: boolean
100646
+ summary?: NullableJsonNullValueInput | InputJsonValue
99912
100647
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
99913
100648
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
99914
100649
  created_at?: Date | string
@@ -100087,6 +100822,7 @@ export namespace Prisma {
100087
100822
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
100088
100823
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
100089
100824
  is_posted?: BoolFieldUpdateOperationsInput | boolean
100825
+ summary?: NullableJsonNullValueInput | InputJsonValue
100090
100826
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
100091
100827
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
100092
100828
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -100123,6 +100859,7 @@ export namespace Prisma {
100123
100859
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
100124
100860
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
100125
100861
  is_posted?: BoolFieldUpdateOperationsInput | boolean
100862
+ summary?: NullableJsonNullValueInput | InputJsonValue
100126
100863
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
100127
100864
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
100128
100865
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -100341,6 +101078,7 @@ export namespace Prisma {
100341
101078
  export type ResumeCreateWithoutUserInput = {
100342
101079
  id?: string
100343
101080
  uploaded_resume_path?: string | null
101081
+ summary?: NullableJsonNullValueInput | InputJsonValue
100344
101082
  created_at?: Date | string
100345
101083
  updated_at?: Date | string
100346
101084
  created_by: string
@@ -100363,6 +101101,7 @@ export namespace Prisma {
100363
101101
  organisation_id?: string | null
100364
101102
  job_description_id?: string | null
100365
101103
  uploaded_resume_path?: string | null
101104
+ summary?: NullableJsonNullValueInput | InputJsonValue
100366
101105
  created_at?: Date | string
100367
101106
  updated_at?: Date | string
100368
101107
  created_by: string
@@ -100474,6 +101213,82 @@ export namespace Prisma {
100474
101213
  uploaded_job_description_path?: string | null
100475
101214
  is_plan_published?: boolean
100476
101215
  is_posted?: boolean
101216
+ summary?: NullableJsonNullValueInput | InputJsonValue
101217
+ ai_insight?: NullableJsonNullValueInput | InputJsonValue
101218
+ job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
101219
+ created_at?: Date | string
101220
+ updated_at?: Date | string
101221
+ created_by: string
101222
+ updated_by: string
101223
+ is_active?: boolean
101224
+ openings?: number
101225
+ job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
101226
+ organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
101227
+ applications?: ApplicationCreateNestedManyWithoutJob_descriptionInput
101228
+ interviews?: InterviewCreateNestedManyWithoutJob_descriptionInput
101229
+ assignments?: AssignmentCreateNestedManyWithoutJob_descriptionInput
101230
+ fit_check?: FitCheckCreateNestedManyWithoutJob_descriptionInput
101231
+ job_description_data?: JobDescriptionDataCreateNestedManyWithoutJobDescriptionInput
101232
+ evaluationPlan?: EvaluationPlanCreateNestedManyWithoutJobDescriptionInput
101233
+ ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutJobDescriptionInput
101234
+ assignment_library?: AssignmentLibraryCreateNestedManyWithoutJobDescriptionInput
101235
+ approvals?: ApprovalCreateNestedManyWithoutJob_descriptionInput
101236
+ resumes?: ResumeCreateNestedManyWithoutJob_descriptionInput
101237
+ budget?: BudgetCreateNestedOneWithoutJob_descriptionInput
101238
+ hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_descriptionsInput
101239
+ transcripts?: TranscriptCreateNestedManyWithoutJob_descriptionInput
101240
+ integration_job_syncs?: IntegrationJobSyncCreateNestedManyWithoutJob_descriptionInput
101241
+ }
101242
+
101243
+ export type JobDescriptionUncheckedCreateWithoutRecruitersInput = {
101244
+ id?: string
101245
+ organisation_id: string
101246
+ hiring_manager_id?: string | null
101247
+ status?: $Enums.JobDescriptionStatus
101248
+ screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
101249
+ recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
101250
+ uploaded_job_description_path?: string | null
101251
+ is_plan_published?: boolean
101252
+ is_posted?: boolean
101253
+ summary?: NullableJsonNullValueInput | InputJsonValue
101254
+ ai_insight?: NullableJsonNullValueInput | InputJsonValue
101255
+ job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
101256
+ created_at?: Date | string
101257
+ updated_at?: Date | string
101258
+ created_by: string
101259
+ updated_by: string
101260
+ is_active?: boolean
101261
+ openings?: number
101262
+ job_profile_id?: string | null
101263
+ applications?: ApplicationUncheckedCreateNestedManyWithoutJob_descriptionInput
101264
+ interviews?: InterviewUncheckedCreateNestedManyWithoutJob_descriptionInput
101265
+ assignments?: AssignmentUncheckedCreateNestedManyWithoutJob_descriptionInput
101266
+ fit_check?: FitCheckUncheckedCreateNestedManyWithoutJob_descriptionInput
101267
+ job_description_data?: JobDescriptionDataUncheckedCreateNestedManyWithoutJobDescriptionInput
101268
+ evaluationPlan?: EvaluationPlanUncheckedCreateNestedManyWithoutJobDescriptionInput
101269
+ ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutJobDescriptionInput
101270
+ assignment_library?: AssignmentLibraryUncheckedCreateNestedManyWithoutJobDescriptionInput
101271
+ approvals?: ApprovalUncheckedCreateNestedManyWithoutJob_descriptionInput
101272
+ resumes?: ResumeUncheckedCreateNestedManyWithoutJob_descriptionInput
101273
+ budget?: BudgetUncheckedCreateNestedOneWithoutJob_descriptionInput
101274
+ transcripts?: TranscriptUncheckedCreateNestedManyWithoutJob_descriptionInput
101275
+ integration_job_syncs?: IntegrationJobSyncUncheckedCreateNestedManyWithoutJob_descriptionInput
101276
+ }
101277
+
101278
+ export type JobDescriptionCreateOrConnectWithoutRecruitersInput = {
101279
+ where: JobDescriptionWhereUniqueInput
101280
+ create: XOR<JobDescriptionCreateWithoutRecruitersInput, JobDescriptionUncheckedCreateWithoutRecruitersInput>
101281
+ }
101282
+
101283
+ export type JobDescriptionCreateWithoutHiring_managerInput = {
101284
+ id?: string
101285
+ status?: $Enums.JobDescriptionStatus
101286
+ screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
101287
+ recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
101288
+ uploaded_job_description_path?: string | null
101289
+ is_plan_published?: boolean
101290
+ is_posted?: boolean
101291
+ summary?: NullableJsonNullValueInput | InputJsonValue
100477
101292
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
100478
101293
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
100479
101294
  created_at?: Date | string
@@ -100495,21 +101310,21 @@ export namespace Prisma {
100495
101310
  approvals?: ApprovalCreateNestedManyWithoutJob_descriptionInput
100496
101311
  resumes?: ResumeCreateNestedManyWithoutJob_descriptionInput
100497
101312
  budget?: BudgetCreateNestedOneWithoutJob_descriptionInput
100498
- hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_descriptionsInput
101313
+ recruiters?: UserCreateNestedManyWithoutJob_descriptionInput
100499
101314
  transcripts?: TranscriptCreateNestedManyWithoutJob_descriptionInput
100500
101315
  integration_job_syncs?: IntegrationJobSyncCreateNestedManyWithoutJob_descriptionInput
100501
101316
  }
100502
101317
 
100503
- export type JobDescriptionUncheckedCreateWithoutRecruitersInput = {
101318
+ export type JobDescriptionUncheckedCreateWithoutHiring_managerInput = {
100504
101319
  id?: string
100505
101320
  organisation_id: string
100506
- hiring_manager_id?: string | null
100507
101321
  status?: $Enums.JobDescriptionStatus
100508
101322
  screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
100509
101323
  recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
100510
101324
  uploaded_job_description_path?: string | null
100511
101325
  is_plan_published?: boolean
100512
101326
  is_posted?: boolean
101327
+ summary?: NullableJsonNullValueInput | InputJsonValue
100513
101328
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
100514
101329
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
100515
101330
  created_at?: Date | string
@@ -100530,90 +101345,94 @@ export namespace Prisma {
100530
101345
  approvals?: ApprovalUncheckedCreateNestedManyWithoutJob_descriptionInput
100531
101346
  resumes?: ResumeUncheckedCreateNestedManyWithoutJob_descriptionInput
100532
101347
  budget?: BudgetUncheckedCreateNestedOneWithoutJob_descriptionInput
101348
+ recruiters?: UserUncheckedCreateNestedManyWithoutJob_descriptionInput
100533
101349
  transcripts?: TranscriptUncheckedCreateNestedManyWithoutJob_descriptionInput
100534
101350
  integration_job_syncs?: IntegrationJobSyncUncheckedCreateNestedManyWithoutJob_descriptionInput
100535
101351
  }
100536
101352
 
100537
- export type JobDescriptionCreateOrConnectWithoutRecruitersInput = {
101353
+ export type JobDescriptionCreateOrConnectWithoutHiring_managerInput = {
100538
101354
  where: JobDescriptionWhereUniqueInput
100539
- create: XOR<JobDescriptionCreateWithoutRecruitersInput, JobDescriptionUncheckedCreateWithoutRecruitersInput>
101355
+ create: XOR<JobDescriptionCreateWithoutHiring_managerInput, JobDescriptionUncheckedCreateWithoutHiring_managerInput>
100540
101356
  }
100541
101357
 
100542
- export type JobDescriptionCreateWithoutHiring_managerInput = {
101358
+ export type JobDescriptionCreateManyHiring_managerInputEnvelope = {
101359
+ data: JobDescriptionCreateManyHiring_managerInput | JobDescriptionCreateManyHiring_managerInput[]
101360
+ skipDuplicates?: boolean
101361
+ }
101362
+
101363
+ export type JobProfileCreateWithoutHiring_managerInput = {
100543
101364
  id?: string
100544
- status?: $Enums.JobDescriptionStatus
100545
- screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
100546
- recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
100547
- uploaded_job_description_path?: string | null
100548
- is_plan_published?: boolean
100549
- is_posted?: boolean
100550
- ai_insight?: NullableJsonNullValueInput | InputJsonValue
100551
- job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
101365
+ status?: $Enums.JobProfileStatus
101366
+ title?: string | null
101367
+ role_type?: string | null
101368
+ work_arrangement?: string | null
101369
+ employment_type?: string | null
101370
+ location?: string | null
101371
+ experience_min?: string | null
101372
+ reporting?: string | null
101373
+ comp_range?: string | null
101374
+ comp_benchmark?: string | null
101375
+ budget?: string | null
101376
+ responsibilities?: NullableJsonNullValueInput | InputJsonValue
101377
+ deliverables?: NullableJsonNullValueInput | InputJsonValue
101378
+ must_have_skills?: NullableJsonNullValueInput | InputJsonValue
101379
+ nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
101380
+ dealbreakers?: NullableJsonNullValueInput | InputJsonValue
101381
+ culture?: NullableJsonNullValueInput | InputJsonValue
101382
+ success_metrics?: NullableJsonNullValueInput | InputJsonValue
101383
+ competencies?: NullableJsonNullValueInput | InputJsonValue
101384
+ conversation_history?: NullableJsonNullValueInput | InputJsonValue
101385
+ current_phase?: string | null
101386
+ orion_execution_id?: string | null
100552
101387
  created_at?: Date | string
100553
101388
  updated_at?: Date | string
100554
- created_by: string
100555
- updated_by: string
100556
101389
  is_active?: boolean
100557
- openings?: number
100558
- job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
100559
- organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
100560
- applications?: ApplicationCreateNestedManyWithoutJob_descriptionInput
100561
- interviews?: InterviewCreateNestedManyWithoutJob_descriptionInput
100562
- assignments?: AssignmentCreateNestedManyWithoutJob_descriptionInput
100563
- fit_check?: FitCheckCreateNestedManyWithoutJob_descriptionInput
100564
- job_description_data?: JobDescriptionDataCreateNestedManyWithoutJobDescriptionInput
100565
- evaluationPlan?: EvaluationPlanCreateNestedManyWithoutJobDescriptionInput
100566
- ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutJobDescriptionInput
100567
- assignment_library?: AssignmentLibraryCreateNestedManyWithoutJobDescriptionInput
100568
- approvals?: ApprovalCreateNestedManyWithoutJob_descriptionInput
100569
- resumes?: ResumeCreateNestedManyWithoutJob_descriptionInput
100570
- budget?: BudgetCreateNestedOneWithoutJob_descriptionInput
100571
- recruiters?: UserCreateNestedManyWithoutJob_descriptionInput
100572
- transcripts?: TranscriptCreateNestedManyWithoutJob_descriptionInput
100573
- integration_job_syncs?: IntegrationJobSyncCreateNestedManyWithoutJob_descriptionInput
101390
+ organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
101391
+ creator: UserCreateNestedOneWithoutCreated_job_profilesInput
101392
+ assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
101393
+ job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
100574
101394
  }
100575
101395
 
100576
- export type JobDescriptionUncheckedCreateWithoutHiring_managerInput = {
101396
+ export type JobProfileUncheckedCreateWithoutHiring_managerInput = {
100577
101397
  id?: string
100578
101398
  organisation_id: string
100579
- status?: $Enums.JobDescriptionStatus
100580
- screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
100581
- recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
100582
- uploaded_job_description_path?: string | null
100583
- is_plan_published?: boolean
100584
- is_posted?: boolean
100585
- ai_insight?: NullableJsonNullValueInput | InputJsonValue
100586
- job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
101399
+ created_by: string
101400
+ assigned_to?: string | null
101401
+ status?: $Enums.JobProfileStatus
101402
+ title?: string | null
101403
+ role_type?: string | null
101404
+ work_arrangement?: string | null
101405
+ employment_type?: string | null
101406
+ location?: string | null
101407
+ experience_min?: string | null
101408
+ reporting?: string | null
101409
+ comp_range?: string | null
101410
+ comp_benchmark?: string | null
101411
+ budget?: string | null
101412
+ responsibilities?: NullableJsonNullValueInput | InputJsonValue
101413
+ deliverables?: NullableJsonNullValueInput | InputJsonValue
101414
+ must_have_skills?: NullableJsonNullValueInput | InputJsonValue
101415
+ nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
101416
+ dealbreakers?: NullableJsonNullValueInput | InputJsonValue
101417
+ culture?: NullableJsonNullValueInput | InputJsonValue
101418
+ success_metrics?: NullableJsonNullValueInput | InputJsonValue
101419
+ competencies?: NullableJsonNullValueInput | InputJsonValue
101420
+ conversation_history?: NullableJsonNullValueInput | InputJsonValue
101421
+ current_phase?: string | null
101422
+ orion_execution_id?: string | null
100587
101423
  created_at?: Date | string
100588
101424
  updated_at?: Date | string
100589
- created_by: string
100590
- updated_by: string
100591
101425
  is_active?: boolean
100592
- openings?: number
100593
- job_profile_id?: string | null
100594
- applications?: ApplicationUncheckedCreateNestedManyWithoutJob_descriptionInput
100595
- interviews?: InterviewUncheckedCreateNestedManyWithoutJob_descriptionInput
100596
- assignments?: AssignmentUncheckedCreateNestedManyWithoutJob_descriptionInput
100597
- fit_check?: FitCheckUncheckedCreateNestedManyWithoutJob_descriptionInput
100598
- job_description_data?: JobDescriptionDataUncheckedCreateNestedManyWithoutJobDescriptionInput
100599
- evaluationPlan?: EvaluationPlanUncheckedCreateNestedManyWithoutJobDescriptionInput
100600
- ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutJobDescriptionInput
100601
- assignment_library?: AssignmentLibraryUncheckedCreateNestedManyWithoutJobDescriptionInput
100602
- approvals?: ApprovalUncheckedCreateNestedManyWithoutJob_descriptionInput
100603
- resumes?: ResumeUncheckedCreateNestedManyWithoutJob_descriptionInput
100604
- budget?: BudgetUncheckedCreateNestedOneWithoutJob_descriptionInput
100605
- recruiters?: UserUncheckedCreateNestedManyWithoutJob_descriptionInput
100606
- transcripts?: TranscriptUncheckedCreateNestedManyWithoutJob_descriptionInput
100607
- integration_job_syncs?: IntegrationJobSyncUncheckedCreateNestedManyWithoutJob_descriptionInput
101426
+ job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutJob_profileInput
100608
101427
  }
100609
101428
 
100610
- export type JobDescriptionCreateOrConnectWithoutHiring_managerInput = {
100611
- where: JobDescriptionWhereUniqueInput
100612
- create: XOR<JobDescriptionCreateWithoutHiring_managerInput, JobDescriptionUncheckedCreateWithoutHiring_managerInput>
101429
+ export type JobProfileCreateOrConnectWithoutHiring_managerInput = {
101430
+ where: JobProfileWhereUniqueInput
101431
+ create: XOR<JobProfileCreateWithoutHiring_managerInput, JobProfileUncheckedCreateWithoutHiring_managerInput>
100613
101432
  }
100614
101433
 
100615
- export type JobDescriptionCreateManyHiring_managerInputEnvelope = {
100616
- data: JobDescriptionCreateManyHiring_managerInput | JobDescriptionCreateManyHiring_managerInput[]
101434
+ export type JobProfileCreateManyHiring_managerInputEnvelope = {
101435
+ data: JobProfileCreateManyHiring_managerInput | JobProfileCreateManyHiring_managerInput[]
100617
101436
  skipDuplicates?: boolean
100618
101437
  }
100619
101438
 
@@ -101549,11 +102368,13 @@ export namespace Prisma {
101549
102368
  title?: string | null
101550
102369
  role_type?: string | null
101551
102370
  work_arrangement?: string | null
102371
+ employment_type?: string | null
101552
102372
  location?: string | null
101553
102373
  experience_min?: string | null
101554
102374
  reporting?: string | null
101555
102375
  comp_range?: string | null
101556
102376
  comp_benchmark?: string | null
102377
+ budget?: string | null
101557
102378
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
101558
102379
  deliverables?: NullableJsonNullValueInput | InputJsonValue
101559
102380
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -101569,6 +102390,7 @@ export namespace Prisma {
101569
102390
  updated_at?: Date | string
101570
102391
  is_active?: boolean
101571
102392
  organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
102393
+ hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
101572
102394
  assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
101573
102395
  job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
101574
102396
  }
@@ -101576,16 +102398,19 @@ export namespace Prisma {
101576
102398
  export type JobProfileUncheckedCreateWithoutCreatorInput = {
101577
102399
  id?: string
101578
102400
  organisation_id: string
102401
+ hiring_manager_id?: string | null
101579
102402
  assigned_to?: string | null
101580
102403
  status?: $Enums.JobProfileStatus
101581
102404
  title?: string | null
101582
102405
  role_type?: string | null
101583
102406
  work_arrangement?: string | null
102407
+ employment_type?: string | null
101584
102408
  location?: string | null
101585
102409
  experience_min?: string | null
101586
102410
  reporting?: string | null
101587
102411
  comp_range?: string | null
101588
102412
  comp_benchmark?: string | null
102413
+ budget?: string | null
101589
102414
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
101590
102415
  deliverables?: NullableJsonNullValueInput | InputJsonValue
101591
102416
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -101619,11 +102444,13 @@ export namespace Prisma {
101619
102444
  title?: string | null
101620
102445
  role_type?: string | null
101621
102446
  work_arrangement?: string | null
102447
+ employment_type?: string | null
101622
102448
  location?: string | null
101623
102449
  experience_min?: string | null
101624
102450
  reporting?: string | null
101625
102451
  comp_range?: string | null
101626
102452
  comp_benchmark?: string | null
102453
+ budget?: string | null
101627
102454
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
101628
102455
  deliverables?: NullableJsonNullValueInput | InputJsonValue
101629
102456
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -101639,6 +102466,7 @@ export namespace Prisma {
101639
102466
  updated_at?: Date | string
101640
102467
  is_active?: boolean
101641
102468
  organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
102469
+ hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
101642
102470
  creator: UserCreateNestedOneWithoutCreated_job_profilesInput
101643
102471
  job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
101644
102472
  }
@@ -101646,16 +102474,19 @@ export namespace Prisma {
101646
102474
  export type JobProfileUncheckedCreateWithoutAssigneeInput = {
101647
102475
  id?: string
101648
102476
  organisation_id: string
102477
+ hiring_manager_id?: string | null
101649
102478
  created_by: string
101650
102479
  status?: $Enums.JobProfileStatus
101651
102480
  title?: string | null
101652
102481
  role_type?: string | null
101653
102482
  work_arrangement?: string | null
102483
+ employment_type?: string | null
101654
102484
  location?: string | null
101655
102485
  experience_min?: string | null
101656
102486
  reporting?: string | null
101657
102487
  comp_range?: string | null
101658
102488
  comp_benchmark?: string | null
102489
+ budget?: string | null
101659
102490
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
101660
102491
  deliverables?: NullableJsonNullValueInput | InputJsonValue
101661
102492
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -101990,6 +102821,22 @@ export namespace Prisma {
101990
102821
  data: XOR<JobDescriptionUpdateManyMutationInput, JobDescriptionUncheckedUpdateManyWithoutHiring_managerInput>
101991
102822
  }
101992
102823
 
102824
+ export type JobProfileUpsertWithWhereUniqueWithoutHiring_managerInput = {
102825
+ where: JobProfileWhereUniqueInput
102826
+ update: XOR<JobProfileUpdateWithoutHiring_managerInput, JobProfileUncheckedUpdateWithoutHiring_managerInput>
102827
+ create: XOR<JobProfileCreateWithoutHiring_managerInput, JobProfileUncheckedCreateWithoutHiring_managerInput>
102828
+ }
102829
+
102830
+ export type JobProfileUpdateWithWhereUniqueWithoutHiring_managerInput = {
102831
+ where: JobProfileWhereUniqueInput
102832
+ data: XOR<JobProfileUpdateWithoutHiring_managerInput, JobProfileUncheckedUpdateWithoutHiring_managerInput>
102833
+ }
102834
+
102835
+ export type JobProfileUpdateManyWithWhereWithoutHiring_managerInput = {
102836
+ where: JobProfileScalarWhereInput
102837
+ data: XOR<JobProfileUpdateManyMutationInput, JobProfileUncheckedUpdateManyWithoutHiring_managerInput>
102838
+ }
102839
+
101993
102840
  export type ApprovalUpsertWithWhereUniqueWithoutUserInput = {
101994
102841
  where: ApprovalWhereUniqueInput
101995
102842
  update: XOR<ApprovalUpdateWithoutUserInput, ApprovalUncheckedUpdateWithoutUserInput>
@@ -102405,6 +103252,7 @@ export namespace Prisma {
102405
103252
  candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
102406
103253
  job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
102407
103254
  hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
103255
+ hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
102408
103256
  approvals?: ApprovalCreateNestedManyWithoutUserInput
102409
103257
  sent_messages?: MessageCreateNestedManyWithoutSenderInput
102410
103258
  received_messages?: MessageCreateNestedManyWithoutReceiverInput
@@ -102465,6 +103313,7 @@ export namespace Prisma {
102465
103313
  candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
102466
103314
  job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
102467
103315
  hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
103316
+ hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
102468
103317
  approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
102469
103318
  sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
102470
103319
  received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
@@ -102541,6 +103390,7 @@ export namespace Prisma {
102541
103390
  candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
102542
103391
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
102543
103392
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
103393
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
102544
103394
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
102545
103395
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
102546
103396
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -102601,6 +103451,7 @@ export namespace Prisma {
102601
103451
  candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
102602
103452
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
102603
103453
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
103454
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
102604
103455
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
102605
103456
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
102606
103457
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -102695,6 +103546,7 @@ export namespace Prisma {
102695
103546
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
102696
103547
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
102697
103548
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
103549
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
102698
103550
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
102699
103551
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
102700
103552
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -102755,6 +103607,7 @@ export namespace Prisma {
102755
103607
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
102756
103608
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
102757
103609
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
103610
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
102758
103611
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
102759
103612
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
102760
103613
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -104659,6 +105512,7 @@ export namespace Prisma {
104659
105512
  user_id?: string | null
104660
105513
  organisation_id?: string | null
104661
105514
  uploaded_resume_path?: string | null
105515
+ summary?: NullableJsonNullValueInput | InputJsonValue
104662
105516
  created_at?: Date | string
104663
105517
  updated_at?: Date | string
104664
105518
  created_by: string
@@ -105333,6 +106187,7 @@ export namespace Prisma {
105333
106187
  export type ResumeUpdateWithoutJob_descriptionInput = {
105334
106188
  id?: StringFieldUpdateOperationsInput | string
105335
106189
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
106190
+ summary?: NullableJsonNullValueInput | InputJsonValue
105336
106191
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
105337
106192
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
105338
106193
  created_by?: StringFieldUpdateOperationsInput | string
@@ -105355,6 +106210,7 @@ export namespace Prisma {
105355
106210
  user_id?: NullableStringFieldUpdateOperationsInput | string | null
105356
106211
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
105357
106212
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
106213
+ summary?: NullableJsonNullValueInput | InputJsonValue
105358
106214
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
105359
106215
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
105360
106216
  created_by?: StringFieldUpdateOperationsInput | string
@@ -105375,6 +106231,7 @@ export namespace Prisma {
105375
106231
  user_id?: NullableStringFieldUpdateOperationsInput | string | null
105376
106232
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
105377
106233
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
106234
+ summary?: NullableJsonNullValueInput | InputJsonValue
105378
106235
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
105379
106236
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
105380
106237
  created_by?: StringFieldUpdateOperationsInput | string
@@ -105422,6 +106279,7 @@ export namespace Prisma {
105422
106279
  candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
105423
106280
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
105424
106281
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
106282
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
105425
106283
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
105426
106284
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
105427
106285
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -105482,6 +106340,7 @@ export namespace Prisma {
105482
106340
  candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
105483
106341
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
105484
106342
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
106343
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
105485
106344
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
105486
106345
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
105487
106346
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -105636,6 +106495,7 @@ export namespace Prisma {
105636
106495
  uploaded_job_description_path?: string | null
105637
106496
  is_plan_published?: boolean
105638
106497
  is_posted?: boolean
106498
+ summary?: NullableJsonNullValueInput | InputJsonValue
105639
106499
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
105640
106500
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
105641
106501
  created_at?: Date | string
@@ -105654,6 +106514,7 @@ export namespace Prisma {
105654
106514
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
105655
106515
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
105656
106516
  is_posted?: BoolFieldUpdateOperationsInput | boolean
106517
+ summary?: NullableJsonNullValueInput | InputJsonValue
105657
106518
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
105658
106519
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
105659
106520
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -105690,6 +106551,7 @@ export namespace Prisma {
105690
106551
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
105691
106552
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
105692
106553
  is_posted?: BoolFieldUpdateOperationsInput | boolean
106554
+ summary?: NullableJsonNullValueInput | InputJsonValue
105693
106555
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
105694
106556
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
105695
106557
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -105724,6 +106586,7 @@ export namespace Prisma {
105724
106586
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
105725
106587
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
105726
106588
  is_posted?: BoolFieldUpdateOperationsInput | boolean
106589
+ summary?: NullableJsonNullValueInput | InputJsonValue
105727
106590
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
105728
106591
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
105729
106592
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -105808,6 +106671,7 @@ export namespace Prisma {
105808
106671
  uploaded_job_description_path?: string | null
105809
106672
  is_plan_published?: boolean
105810
106673
  is_posted?: boolean
106674
+ summary?: NullableJsonNullValueInput | InputJsonValue
105811
106675
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
105812
106676
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
105813
106677
  created_at?: Date | string
@@ -105821,17 +106685,20 @@ export namespace Prisma {
105821
106685
 
105822
106686
  export type JobProfileCreateManyOrganisationInput = {
105823
106687
  id?: string
106688
+ hiring_manager_id?: string | null
105824
106689
  created_by: string
105825
106690
  assigned_to?: string | null
105826
106691
  status?: $Enums.JobProfileStatus
105827
106692
  title?: string | null
105828
106693
  role_type?: string | null
105829
106694
  work_arrangement?: string | null
106695
+ employment_type?: string | null
105830
106696
  location?: string | null
105831
106697
  experience_min?: string | null
105832
106698
  reporting?: string | null
105833
106699
  comp_range?: string | null
105834
106700
  comp_benchmark?: string | null
106701
+ budget?: string | null
105835
106702
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
105836
106703
  deliverables?: NullableJsonNullValueInput | InputJsonValue
105837
106704
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -105972,6 +106839,7 @@ export namespace Prisma {
105972
106839
  user_id?: string | null
105973
106840
  job_description_id?: string | null
105974
106841
  uploaded_resume_path?: string | null
106842
+ summary?: NullableJsonNullValueInput | InputJsonValue
105975
106843
  created_at?: Date | string
105976
106844
  updated_at?: Date | string
105977
106845
  created_by: string
@@ -106140,6 +107008,7 @@ export namespace Prisma {
106140
107008
  user_profile?: UserProfileUpdateOneWithoutUserNestedInput
106141
107009
  job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
106142
107010
  hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
107011
+ hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
106143
107012
  approvals?: ApprovalUpdateManyWithoutUserNestedInput
106144
107013
  sent_messages?: MessageUpdateManyWithoutSenderNestedInput
106145
107014
  received_messages?: MessageUpdateManyWithoutReceiverNestedInput
@@ -106200,6 +107069,7 @@ export namespace Prisma {
106200
107069
  user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
106201
107070
  job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
106202
107071
  hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
107072
+ hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
106203
107073
  approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
106204
107074
  sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
106205
107075
  received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
@@ -106367,6 +107237,7 @@ export namespace Prisma {
106367
107237
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
106368
107238
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
106369
107239
  is_posted?: BoolFieldUpdateOperationsInput | boolean
107240
+ summary?: NullableJsonNullValueInput | InputJsonValue
106370
107241
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
106371
107242
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
106372
107243
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -106402,6 +107273,7 @@ export namespace Prisma {
106402
107273
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
106403
107274
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
106404
107275
  is_posted?: BoolFieldUpdateOperationsInput | boolean
107276
+ summary?: NullableJsonNullValueInput | InputJsonValue
106405
107277
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
106406
107278
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
106407
107279
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -106436,6 +107308,7 @@ export namespace Prisma {
106436
107308
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
106437
107309
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
106438
107310
  is_posted?: BoolFieldUpdateOperationsInput | boolean
107311
+ summary?: NullableJsonNullValueInput | InputJsonValue
106439
107312
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
106440
107313
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
106441
107314
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -106453,11 +107326,13 @@ export namespace Prisma {
106453
107326
  title?: NullableStringFieldUpdateOperationsInput | string | null
106454
107327
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
106455
107328
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
107329
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
106456
107330
  location?: NullableStringFieldUpdateOperationsInput | string | null
106457
107331
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
106458
107332
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
106459
107333
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
106460
107334
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
107335
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
106461
107336
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
106462
107337
  deliverables?: NullableJsonNullValueInput | InputJsonValue
106463
107338
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -106472,6 +107347,7 @@ export namespace Prisma {
106472
107347
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
106473
107348
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
106474
107349
  is_active?: BoolFieldUpdateOperationsInput | boolean
107350
+ hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
106475
107351
  creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
106476
107352
  assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
106477
107353
  job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
@@ -106479,17 +107355,20 @@ export namespace Prisma {
106479
107355
 
106480
107356
  export type JobProfileUncheckedUpdateWithoutOrganisationInput = {
106481
107357
  id?: StringFieldUpdateOperationsInput | string
107358
+ hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
106482
107359
  created_by?: StringFieldUpdateOperationsInput | string
106483
107360
  assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
106484
107361
  status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
106485
107362
  title?: NullableStringFieldUpdateOperationsInput | string | null
106486
107363
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
106487
107364
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
107365
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
106488
107366
  location?: NullableStringFieldUpdateOperationsInput | string | null
106489
107367
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
106490
107368
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
106491
107369
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
106492
107370
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
107371
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
106493
107372
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
106494
107373
  deliverables?: NullableJsonNullValueInput | InputJsonValue
106495
107374
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -106509,17 +107388,20 @@ export namespace Prisma {
106509
107388
 
106510
107389
  export type JobProfileUncheckedUpdateManyWithoutOrganisationInput = {
106511
107390
  id?: StringFieldUpdateOperationsInput | string
107391
+ hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
106512
107392
  created_by?: StringFieldUpdateOperationsInput | string
106513
107393
  assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
106514
107394
  status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
106515
107395
  title?: NullableStringFieldUpdateOperationsInput | string | null
106516
107396
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
106517
107397
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
107398
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
106518
107399
  location?: NullableStringFieldUpdateOperationsInput | string | null
106519
107400
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
106520
107401
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
106521
107402
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
106522
107403
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
107404
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
106523
107405
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
106524
107406
  deliverables?: NullableJsonNullValueInput | InputJsonValue
106525
107407
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -106920,6 +107802,7 @@ export namespace Prisma {
106920
107802
  export type ResumeUpdateWithoutOrganisationInput = {
106921
107803
  id?: StringFieldUpdateOperationsInput | string
106922
107804
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
107805
+ summary?: NullableJsonNullValueInput | InputJsonValue
106923
107806
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
106924
107807
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
106925
107808
  created_by?: StringFieldUpdateOperationsInput | string
@@ -106942,6 +107825,7 @@ export namespace Prisma {
106942
107825
  user_id?: NullableStringFieldUpdateOperationsInput | string | null
106943
107826
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
106944
107827
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
107828
+ summary?: NullableJsonNullValueInput | InputJsonValue
106945
107829
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
106946
107830
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
106947
107831
  created_by?: StringFieldUpdateOperationsInput | string
@@ -106962,6 +107846,7 @@ export namespace Prisma {
106962
107846
  user_id?: NullableStringFieldUpdateOperationsInput | string | null
106963
107847
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
106964
107848
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
107849
+ summary?: NullableJsonNullValueInput | InputJsonValue
106965
107850
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
106966
107851
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
106967
107852
  created_by?: StringFieldUpdateOperationsInput | string
@@ -108056,6 +108941,7 @@ export namespace Prisma {
108056
108941
  organisation_id?: string | null
108057
108942
  job_description_id?: string | null
108058
108943
  uploaded_resume_path?: string | null
108944
+ summary?: NullableJsonNullValueInput | InputJsonValue
108059
108945
  created_at?: Date | string
108060
108946
  updated_at?: Date | string
108061
108947
  created_by: string
@@ -108074,6 +108960,7 @@ export namespace Prisma {
108074
108960
  uploaded_job_description_path?: string | null
108075
108961
  is_plan_published?: boolean
108076
108962
  is_posted?: boolean
108963
+ summary?: NullableJsonNullValueInput | InputJsonValue
108077
108964
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
108078
108965
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
108079
108966
  created_at?: Date | string
@@ -108085,6 +108972,38 @@ export namespace Prisma {
108085
108972
  job_profile_id?: string | null
108086
108973
  }
108087
108974
 
108975
+ export type JobProfileCreateManyHiring_managerInput = {
108976
+ id?: string
108977
+ organisation_id: string
108978
+ created_by: string
108979
+ assigned_to?: string | null
108980
+ status?: $Enums.JobProfileStatus
108981
+ title?: string | null
108982
+ role_type?: string | null
108983
+ work_arrangement?: string | null
108984
+ employment_type?: string | null
108985
+ location?: string | null
108986
+ experience_min?: string | null
108987
+ reporting?: string | null
108988
+ comp_range?: string | null
108989
+ comp_benchmark?: string | null
108990
+ budget?: string | null
108991
+ responsibilities?: NullableJsonNullValueInput | InputJsonValue
108992
+ deliverables?: NullableJsonNullValueInput | InputJsonValue
108993
+ must_have_skills?: NullableJsonNullValueInput | InputJsonValue
108994
+ nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
108995
+ dealbreakers?: NullableJsonNullValueInput | InputJsonValue
108996
+ culture?: NullableJsonNullValueInput | InputJsonValue
108997
+ success_metrics?: NullableJsonNullValueInput | InputJsonValue
108998
+ competencies?: NullableJsonNullValueInput | InputJsonValue
108999
+ conversation_history?: NullableJsonNullValueInput | InputJsonValue
109000
+ current_phase?: string | null
109001
+ orion_execution_id?: string | null
109002
+ created_at?: Date | string
109003
+ updated_at?: Date | string
109004
+ is_active?: boolean
109005
+ }
109006
+
108088
109007
  export type ApprovalCreateManyUserInput = {
108089
109008
  id?: string
108090
109009
  job_description_id: string
@@ -108415,16 +109334,19 @@ export namespace Prisma {
108415
109334
  export type JobProfileCreateManyCreatorInput = {
108416
109335
  id?: string
108417
109336
  organisation_id: string
109337
+ hiring_manager_id?: string | null
108418
109338
  assigned_to?: string | null
108419
109339
  status?: $Enums.JobProfileStatus
108420
109340
  title?: string | null
108421
109341
  role_type?: string | null
108422
109342
  work_arrangement?: string | null
109343
+ employment_type?: string | null
108423
109344
  location?: string | null
108424
109345
  experience_min?: string | null
108425
109346
  reporting?: string | null
108426
109347
  comp_range?: string | null
108427
109348
  comp_benchmark?: string | null
109349
+ budget?: string | null
108428
109350
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
108429
109351
  deliverables?: NullableJsonNullValueInput | InputJsonValue
108430
109352
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -108444,16 +109366,19 @@ export namespace Prisma {
108444
109366
  export type JobProfileCreateManyAssigneeInput = {
108445
109367
  id?: string
108446
109368
  organisation_id: string
109369
+ hiring_manager_id?: string | null
108447
109370
  created_by: string
108448
109371
  status?: $Enums.JobProfileStatus
108449
109372
  title?: string | null
108450
109373
  role_type?: string | null
108451
109374
  work_arrangement?: string | null
109375
+ employment_type?: string | null
108452
109376
  location?: string | null
108453
109377
  experience_min?: string | null
108454
109378
  reporting?: string | null
108455
109379
  comp_range?: string | null
108456
109380
  comp_benchmark?: string | null
109381
+ budget?: string | null
108457
109382
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
108458
109383
  deliverables?: NullableJsonNullValueInput | InputJsonValue
108459
109384
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -108538,6 +109463,7 @@ export namespace Prisma {
108538
109463
  export type ResumeUpdateWithoutUserInput = {
108539
109464
  id?: StringFieldUpdateOperationsInput | string
108540
109465
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
109466
+ summary?: NullableJsonNullValueInput | InputJsonValue
108541
109467
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
108542
109468
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
108543
109469
  created_by?: StringFieldUpdateOperationsInput | string
@@ -108560,6 +109486,7 @@ export namespace Prisma {
108560
109486
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
108561
109487
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
108562
109488
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
109489
+ summary?: NullableJsonNullValueInput | InputJsonValue
108563
109490
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
108564
109491
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
108565
109492
  created_by?: StringFieldUpdateOperationsInput | string
@@ -108580,6 +109507,7 @@ export namespace Prisma {
108580
109507
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
108581
109508
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
108582
109509
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
109510
+ summary?: NullableJsonNullValueInput | InputJsonValue
108583
109511
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
108584
109512
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
108585
109513
  created_by?: StringFieldUpdateOperationsInput | string
@@ -108597,6 +109525,7 @@ export namespace Prisma {
108597
109525
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
108598
109526
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
108599
109527
  is_posted?: BoolFieldUpdateOperationsInput | boolean
109528
+ summary?: NullableJsonNullValueInput | InputJsonValue
108600
109529
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
108601
109530
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
108602
109531
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -108633,6 +109562,7 @@ export namespace Prisma {
108633
109562
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
108634
109563
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
108635
109564
  is_posted?: BoolFieldUpdateOperationsInput | boolean
109565
+ summary?: NullableJsonNullValueInput | InputJsonValue
108636
109566
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
108637
109567
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
108638
109568
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -108667,6 +109597,7 @@ export namespace Prisma {
108667
109597
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
108668
109598
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
108669
109599
  is_posted?: BoolFieldUpdateOperationsInput | boolean
109600
+ summary?: NullableJsonNullValueInput | InputJsonValue
108670
109601
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
108671
109602
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
108672
109603
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -108686,6 +109617,7 @@ export namespace Prisma {
108686
109617
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
108687
109618
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
108688
109619
  is_posted?: BoolFieldUpdateOperationsInput | boolean
109620
+ summary?: NullableJsonNullValueInput | InputJsonValue
108689
109621
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
108690
109622
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
108691
109623
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -108721,6 +109653,7 @@ export namespace Prisma {
108721
109653
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
108722
109654
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
108723
109655
  is_posted?: BoolFieldUpdateOperationsInput | boolean
109656
+ summary?: NullableJsonNullValueInput | InputJsonValue
108724
109657
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
108725
109658
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
108726
109659
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -108755,6 +109688,7 @@ export namespace Prisma {
108755
109688
  uploaded_job_description_path?: NullableStringFieldUpdateOperationsInput | string | null
108756
109689
  is_plan_published?: BoolFieldUpdateOperationsInput | boolean
108757
109690
  is_posted?: BoolFieldUpdateOperationsInput | boolean
109691
+ summary?: NullableJsonNullValueInput | InputJsonValue
108758
109692
  ai_insight?: NullableJsonNullValueInput | InputJsonValue
108759
109693
  job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
108760
109694
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -108766,6 +109700,104 @@ export namespace Prisma {
108766
109700
  job_profile_id?: NullableStringFieldUpdateOperationsInput | string | null
108767
109701
  }
108768
109702
 
109703
+ export type JobProfileUpdateWithoutHiring_managerInput = {
109704
+ id?: StringFieldUpdateOperationsInput | string
109705
+ status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
109706
+ title?: NullableStringFieldUpdateOperationsInput | string | null
109707
+ role_type?: NullableStringFieldUpdateOperationsInput | string | null
109708
+ work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
109709
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
109710
+ location?: NullableStringFieldUpdateOperationsInput | string | null
109711
+ experience_min?: NullableStringFieldUpdateOperationsInput | string | null
109712
+ reporting?: NullableStringFieldUpdateOperationsInput | string | null
109713
+ comp_range?: NullableStringFieldUpdateOperationsInput | string | null
109714
+ comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
109715
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
109716
+ responsibilities?: NullableJsonNullValueInput | InputJsonValue
109717
+ deliverables?: NullableJsonNullValueInput | InputJsonValue
109718
+ must_have_skills?: NullableJsonNullValueInput | InputJsonValue
109719
+ nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
109720
+ dealbreakers?: NullableJsonNullValueInput | InputJsonValue
109721
+ culture?: NullableJsonNullValueInput | InputJsonValue
109722
+ success_metrics?: NullableJsonNullValueInput | InputJsonValue
109723
+ competencies?: NullableJsonNullValueInput | InputJsonValue
109724
+ conversation_history?: NullableJsonNullValueInput | InputJsonValue
109725
+ current_phase?: NullableStringFieldUpdateOperationsInput | string | null
109726
+ orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
109727
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
109728
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
109729
+ is_active?: BoolFieldUpdateOperationsInput | boolean
109730
+ organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
109731
+ creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
109732
+ assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
109733
+ job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
109734
+ }
109735
+
109736
+ export type JobProfileUncheckedUpdateWithoutHiring_managerInput = {
109737
+ id?: StringFieldUpdateOperationsInput | string
109738
+ organisation_id?: StringFieldUpdateOperationsInput | string
109739
+ created_by?: StringFieldUpdateOperationsInput | string
109740
+ assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
109741
+ status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
109742
+ title?: NullableStringFieldUpdateOperationsInput | string | null
109743
+ role_type?: NullableStringFieldUpdateOperationsInput | string | null
109744
+ work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
109745
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
109746
+ location?: NullableStringFieldUpdateOperationsInput | string | null
109747
+ experience_min?: NullableStringFieldUpdateOperationsInput | string | null
109748
+ reporting?: NullableStringFieldUpdateOperationsInput | string | null
109749
+ comp_range?: NullableStringFieldUpdateOperationsInput | string | null
109750
+ comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
109751
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
109752
+ responsibilities?: NullableJsonNullValueInput | InputJsonValue
109753
+ deliverables?: NullableJsonNullValueInput | InputJsonValue
109754
+ must_have_skills?: NullableJsonNullValueInput | InputJsonValue
109755
+ nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
109756
+ dealbreakers?: NullableJsonNullValueInput | InputJsonValue
109757
+ culture?: NullableJsonNullValueInput | InputJsonValue
109758
+ success_metrics?: NullableJsonNullValueInput | InputJsonValue
109759
+ competencies?: NullableJsonNullValueInput | InputJsonValue
109760
+ conversation_history?: NullableJsonNullValueInput | InputJsonValue
109761
+ current_phase?: NullableStringFieldUpdateOperationsInput | string | null
109762
+ orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
109763
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
109764
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
109765
+ is_active?: BoolFieldUpdateOperationsInput | boolean
109766
+ job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutJob_profileNestedInput
109767
+ }
109768
+
109769
+ export type JobProfileUncheckedUpdateManyWithoutHiring_managerInput = {
109770
+ id?: StringFieldUpdateOperationsInput | string
109771
+ organisation_id?: StringFieldUpdateOperationsInput | string
109772
+ created_by?: StringFieldUpdateOperationsInput | string
109773
+ assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
109774
+ status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
109775
+ title?: NullableStringFieldUpdateOperationsInput | string | null
109776
+ role_type?: NullableStringFieldUpdateOperationsInput | string | null
109777
+ work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
109778
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
109779
+ location?: NullableStringFieldUpdateOperationsInput | string | null
109780
+ experience_min?: NullableStringFieldUpdateOperationsInput | string | null
109781
+ reporting?: NullableStringFieldUpdateOperationsInput | string | null
109782
+ comp_range?: NullableStringFieldUpdateOperationsInput | string | null
109783
+ comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
109784
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
109785
+ responsibilities?: NullableJsonNullValueInput | InputJsonValue
109786
+ deliverables?: NullableJsonNullValueInput | InputJsonValue
109787
+ must_have_skills?: NullableJsonNullValueInput | InputJsonValue
109788
+ nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
109789
+ dealbreakers?: NullableJsonNullValueInput | InputJsonValue
109790
+ culture?: NullableJsonNullValueInput | InputJsonValue
109791
+ success_metrics?: NullableJsonNullValueInput | InputJsonValue
109792
+ competencies?: NullableJsonNullValueInput | InputJsonValue
109793
+ conversation_history?: NullableJsonNullValueInput | InputJsonValue
109794
+ current_phase?: NullableStringFieldUpdateOperationsInput | string | null
109795
+ orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
109796
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
109797
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
109798
+ is_active?: BoolFieldUpdateOperationsInput | boolean
109799
+ }
109800
+
108769
109801
  export type ApprovalUpdateWithoutUserInput = {
108770
109802
  id?: StringFieldUpdateOperationsInput | string
108771
109803
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -109803,11 +110835,13 @@ export namespace Prisma {
109803
110835
  title?: NullableStringFieldUpdateOperationsInput | string | null
109804
110836
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
109805
110837
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
110838
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
109806
110839
  location?: NullableStringFieldUpdateOperationsInput | string | null
109807
110840
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
109808
110841
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
109809
110842
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
109810
110843
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
110844
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
109811
110845
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
109812
110846
  deliverables?: NullableJsonNullValueInput | InputJsonValue
109813
110847
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -109823,6 +110857,7 @@ export namespace Prisma {
109823
110857
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
109824
110858
  is_active?: BoolFieldUpdateOperationsInput | boolean
109825
110859
  organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
110860
+ hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
109826
110861
  assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
109827
110862
  job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
109828
110863
  }
@@ -109830,16 +110865,19 @@ export namespace Prisma {
109830
110865
  export type JobProfileUncheckedUpdateWithoutCreatorInput = {
109831
110866
  id?: StringFieldUpdateOperationsInput | string
109832
110867
  organisation_id?: StringFieldUpdateOperationsInput | string
110868
+ hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
109833
110869
  assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
109834
110870
  status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
109835
110871
  title?: NullableStringFieldUpdateOperationsInput | string | null
109836
110872
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
109837
110873
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
110874
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
109838
110875
  location?: NullableStringFieldUpdateOperationsInput | string | null
109839
110876
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
109840
110877
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
109841
110878
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
109842
110879
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
110880
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
109843
110881
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
109844
110882
  deliverables?: NullableJsonNullValueInput | InputJsonValue
109845
110883
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -109860,16 +110898,19 @@ export namespace Prisma {
109860
110898
  export type JobProfileUncheckedUpdateManyWithoutCreatorInput = {
109861
110899
  id?: StringFieldUpdateOperationsInput | string
109862
110900
  organisation_id?: StringFieldUpdateOperationsInput | string
110901
+ hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
109863
110902
  assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
109864
110903
  status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
109865
110904
  title?: NullableStringFieldUpdateOperationsInput | string | null
109866
110905
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
109867
110906
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
110907
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
109868
110908
  location?: NullableStringFieldUpdateOperationsInput | string | null
109869
110909
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
109870
110910
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
109871
110911
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
109872
110912
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
110913
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
109873
110914
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
109874
110915
  deliverables?: NullableJsonNullValueInput | InputJsonValue
109875
110916
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -109892,11 +110933,13 @@ export namespace Prisma {
109892
110933
  title?: NullableStringFieldUpdateOperationsInput | string | null
109893
110934
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
109894
110935
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
110936
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
109895
110937
  location?: NullableStringFieldUpdateOperationsInput | string | null
109896
110938
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
109897
110939
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
109898
110940
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
109899
110941
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
110942
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
109900
110943
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
109901
110944
  deliverables?: NullableJsonNullValueInput | InputJsonValue
109902
110945
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -109912,6 +110955,7 @@ export namespace Prisma {
109912
110955
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
109913
110956
  is_active?: BoolFieldUpdateOperationsInput | boolean
109914
110957
  organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
110958
+ hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
109915
110959
  creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
109916
110960
  job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
109917
110961
  }
@@ -109919,16 +110963,19 @@ export namespace Prisma {
109919
110963
  export type JobProfileUncheckedUpdateWithoutAssigneeInput = {
109920
110964
  id?: StringFieldUpdateOperationsInput | string
109921
110965
  organisation_id?: StringFieldUpdateOperationsInput | string
110966
+ hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
109922
110967
  created_by?: StringFieldUpdateOperationsInput | string
109923
110968
  status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
109924
110969
  title?: NullableStringFieldUpdateOperationsInput | string | null
109925
110970
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
109926
110971
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
110972
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
109927
110973
  location?: NullableStringFieldUpdateOperationsInput | string | null
109928
110974
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
109929
110975
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
109930
110976
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
109931
110977
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
110978
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
109932
110979
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
109933
110980
  deliverables?: NullableJsonNullValueInput | InputJsonValue
109934
110981
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue
@@ -109949,16 +110996,19 @@ export namespace Prisma {
109949
110996
  export type JobProfileUncheckedUpdateManyWithoutAssigneeInput = {
109950
110997
  id?: StringFieldUpdateOperationsInput | string
109951
110998
  organisation_id?: StringFieldUpdateOperationsInput | string
110999
+ hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
109952
111000
  created_by?: StringFieldUpdateOperationsInput | string
109953
111001
  status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
109954
111002
  title?: NullableStringFieldUpdateOperationsInput | string | null
109955
111003
  role_type?: NullableStringFieldUpdateOperationsInput | string | null
109956
111004
  work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
111005
+ employment_type?: NullableStringFieldUpdateOperationsInput | string | null
109957
111006
  location?: NullableStringFieldUpdateOperationsInput | string | null
109958
111007
  experience_min?: NullableStringFieldUpdateOperationsInput | string | null
109959
111008
  reporting?: NullableStringFieldUpdateOperationsInput | string | null
109960
111009
  comp_range?: NullableStringFieldUpdateOperationsInput | string | null
109961
111010
  comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
111011
+ budget?: NullableStringFieldUpdateOperationsInput | string | null
109962
111012
  responsibilities?: NullableJsonNullValueInput | InputJsonValue
109963
111013
  deliverables?: NullableJsonNullValueInput | InputJsonValue
109964
111014
  must_have_skills?: NullableJsonNullValueInput | InputJsonValue