@adaptware/eagles-db 0.1.68 → 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/edge.js +6 -3
- package/client/index-browser.js +3 -0
- package/client/index.d.ts +950 -65
- package/client/index.js +6 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +13 -7
- package/client/wasm.js +3 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/prisma/schema/jobProfile.prisma +26 -21
- package/prisma/schema/user.prisma +1 -0
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
|
*/
|
|
@@ -38710,17 +38719,20 @@ export namespace Prisma {
|
|
|
38710
38719
|
export type JobProfileMinAggregateOutputType = {
|
|
38711
38720
|
id: string | null
|
|
38712
38721
|
organisation_id: string | null
|
|
38722
|
+
hiring_manager_id: string | null
|
|
38713
38723
|
created_by: string | null
|
|
38714
38724
|
assigned_to: string | null
|
|
38715
38725
|
status: $Enums.JobProfileStatus | null
|
|
38716
38726
|
title: string | null
|
|
38717
38727
|
role_type: string | null
|
|
38718
38728
|
work_arrangement: string | null
|
|
38729
|
+
employment_type: string | null
|
|
38719
38730
|
location: string | null
|
|
38720
38731
|
experience_min: string | null
|
|
38721
38732
|
reporting: string | null
|
|
38722
38733
|
comp_range: string | null
|
|
38723
38734
|
comp_benchmark: string | null
|
|
38735
|
+
budget: string | null
|
|
38724
38736
|
current_phase: string | null
|
|
38725
38737
|
orion_execution_id: string | null
|
|
38726
38738
|
created_at: Date | null
|
|
@@ -38731,17 +38743,20 @@ export namespace Prisma {
|
|
|
38731
38743
|
export type JobProfileMaxAggregateOutputType = {
|
|
38732
38744
|
id: string | null
|
|
38733
38745
|
organisation_id: string | null
|
|
38746
|
+
hiring_manager_id: string | null
|
|
38734
38747
|
created_by: string | null
|
|
38735
38748
|
assigned_to: string | null
|
|
38736
38749
|
status: $Enums.JobProfileStatus | null
|
|
38737
38750
|
title: string | null
|
|
38738
38751
|
role_type: string | null
|
|
38739
38752
|
work_arrangement: string | null
|
|
38753
|
+
employment_type: string | null
|
|
38740
38754
|
location: string | null
|
|
38741
38755
|
experience_min: string | null
|
|
38742
38756
|
reporting: string | null
|
|
38743
38757
|
comp_range: string | null
|
|
38744
38758
|
comp_benchmark: string | null
|
|
38759
|
+
budget: string | null
|
|
38745
38760
|
current_phase: string | null
|
|
38746
38761
|
orion_execution_id: string | null
|
|
38747
38762
|
created_at: Date | null
|
|
@@ -38752,17 +38767,20 @@ export namespace Prisma {
|
|
|
38752
38767
|
export type JobProfileCountAggregateOutputType = {
|
|
38753
38768
|
id: number
|
|
38754
38769
|
organisation_id: number
|
|
38770
|
+
hiring_manager_id: number
|
|
38755
38771
|
created_by: number
|
|
38756
38772
|
assigned_to: number
|
|
38757
38773
|
status: number
|
|
38758
38774
|
title: number
|
|
38759
38775
|
role_type: number
|
|
38760
38776
|
work_arrangement: number
|
|
38777
|
+
employment_type: number
|
|
38761
38778
|
location: number
|
|
38762
38779
|
experience_min: number
|
|
38763
38780
|
reporting: number
|
|
38764
38781
|
comp_range: number
|
|
38765
38782
|
comp_benchmark: number
|
|
38783
|
+
budget: number
|
|
38766
38784
|
responsibilities: number
|
|
38767
38785
|
deliverables: number
|
|
38768
38786
|
must_have_skills: number
|
|
@@ -38784,17 +38802,20 @@ export namespace Prisma {
|
|
|
38784
38802
|
export type JobProfileMinAggregateInputType = {
|
|
38785
38803
|
id?: true
|
|
38786
38804
|
organisation_id?: true
|
|
38805
|
+
hiring_manager_id?: true
|
|
38787
38806
|
created_by?: true
|
|
38788
38807
|
assigned_to?: true
|
|
38789
38808
|
status?: true
|
|
38790
38809
|
title?: true
|
|
38791
38810
|
role_type?: true
|
|
38792
38811
|
work_arrangement?: true
|
|
38812
|
+
employment_type?: true
|
|
38793
38813
|
location?: true
|
|
38794
38814
|
experience_min?: true
|
|
38795
38815
|
reporting?: true
|
|
38796
38816
|
comp_range?: true
|
|
38797
38817
|
comp_benchmark?: true
|
|
38818
|
+
budget?: true
|
|
38798
38819
|
current_phase?: true
|
|
38799
38820
|
orion_execution_id?: true
|
|
38800
38821
|
created_at?: true
|
|
@@ -38805,17 +38826,20 @@ export namespace Prisma {
|
|
|
38805
38826
|
export type JobProfileMaxAggregateInputType = {
|
|
38806
38827
|
id?: true
|
|
38807
38828
|
organisation_id?: true
|
|
38829
|
+
hiring_manager_id?: true
|
|
38808
38830
|
created_by?: true
|
|
38809
38831
|
assigned_to?: true
|
|
38810
38832
|
status?: true
|
|
38811
38833
|
title?: true
|
|
38812
38834
|
role_type?: true
|
|
38813
38835
|
work_arrangement?: true
|
|
38836
|
+
employment_type?: true
|
|
38814
38837
|
location?: true
|
|
38815
38838
|
experience_min?: true
|
|
38816
38839
|
reporting?: true
|
|
38817
38840
|
comp_range?: true
|
|
38818
38841
|
comp_benchmark?: true
|
|
38842
|
+
budget?: true
|
|
38819
38843
|
current_phase?: true
|
|
38820
38844
|
orion_execution_id?: true
|
|
38821
38845
|
created_at?: true
|
|
@@ -38826,17 +38850,20 @@ export namespace Prisma {
|
|
|
38826
38850
|
export type JobProfileCountAggregateInputType = {
|
|
38827
38851
|
id?: true
|
|
38828
38852
|
organisation_id?: true
|
|
38853
|
+
hiring_manager_id?: true
|
|
38829
38854
|
created_by?: true
|
|
38830
38855
|
assigned_to?: true
|
|
38831
38856
|
status?: true
|
|
38832
38857
|
title?: true
|
|
38833
38858
|
role_type?: true
|
|
38834
38859
|
work_arrangement?: true
|
|
38860
|
+
employment_type?: true
|
|
38835
38861
|
location?: true
|
|
38836
38862
|
experience_min?: true
|
|
38837
38863
|
reporting?: true
|
|
38838
38864
|
comp_range?: true
|
|
38839
38865
|
comp_benchmark?: true
|
|
38866
|
+
budget?: true
|
|
38840
38867
|
responsibilities?: true
|
|
38841
38868
|
deliverables?: true
|
|
38842
38869
|
must_have_skills?: true
|
|
@@ -38929,17 +38956,20 @@ export namespace Prisma {
|
|
|
38929
38956
|
export type JobProfileGroupByOutputType = {
|
|
38930
38957
|
id: string
|
|
38931
38958
|
organisation_id: string
|
|
38959
|
+
hiring_manager_id: string | null
|
|
38932
38960
|
created_by: string
|
|
38933
38961
|
assigned_to: string | null
|
|
38934
38962
|
status: $Enums.JobProfileStatus
|
|
38935
38963
|
title: string | null
|
|
38936
38964
|
role_type: string | null
|
|
38937
38965
|
work_arrangement: string | null
|
|
38966
|
+
employment_type: string | null
|
|
38938
38967
|
location: string | null
|
|
38939
38968
|
experience_min: string | null
|
|
38940
38969
|
reporting: string | null
|
|
38941
38970
|
comp_range: string | null
|
|
38942
38971
|
comp_benchmark: string | null
|
|
38972
|
+
budget: string | null
|
|
38943
38973
|
responsibilities: JsonValue | null
|
|
38944
38974
|
deliverables: JsonValue | null
|
|
38945
38975
|
must_have_skills: JsonValue | null
|
|
@@ -38976,17 +39006,20 @@ export namespace Prisma {
|
|
|
38976
39006
|
export type JobProfileSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
38977
39007
|
id?: boolean
|
|
38978
39008
|
organisation_id?: boolean
|
|
39009
|
+
hiring_manager_id?: boolean
|
|
38979
39010
|
created_by?: boolean
|
|
38980
39011
|
assigned_to?: boolean
|
|
38981
39012
|
status?: boolean
|
|
38982
39013
|
title?: boolean
|
|
38983
39014
|
role_type?: boolean
|
|
38984
39015
|
work_arrangement?: boolean
|
|
39016
|
+
employment_type?: boolean
|
|
38985
39017
|
location?: boolean
|
|
38986
39018
|
experience_min?: boolean
|
|
38987
39019
|
reporting?: boolean
|
|
38988
39020
|
comp_range?: boolean
|
|
38989
39021
|
comp_benchmark?: boolean
|
|
39022
|
+
budget?: boolean
|
|
38990
39023
|
responsibilities?: boolean
|
|
38991
39024
|
deliverables?: boolean
|
|
38992
39025
|
must_have_skills?: boolean
|
|
@@ -39002,6 +39035,7 @@ export namespace Prisma {
|
|
|
39002
39035
|
updated_at?: boolean
|
|
39003
39036
|
is_active?: boolean
|
|
39004
39037
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
39038
|
+
hiring_manager?: boolean | JobProfile$hiring_managerArgs<ExtArgs>
|
|
39005
39039
|
creator?: boolean | UserDefaultArgs<ExtArgs>
|
|
39006
39040
|
assignee?: boolean | JobProfile$assigneeArgs<ExtArgs>
|
|
39007
39041
|
job_descriptions?: boolean | JobProfile$job_descriptionsArgs<ExtArgs>
|
|
@@ -39011,17 +39045,20 @@ export namespace Prisma {
|
|
|
39011
39045
|
export type JobProfileSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
39012
39046
|
id?: boolean
|
|
39013
39047
|
organisation_id?: boolean
|
|
39048
|
+
hiring_manager_id?: boolean
|
|
39014
39049
|
created_by?: boolean
|
|
39015
39050
|
assigned_to?: boolean
|
|
39016
39051
|
status?: boolean
|
|
39017
39052
|
title?: boolean
|
|
39018
39053
|
role_type?: boolean
|
|
39019
39054
|
work_arrangement?: boolean
|
|
39055
|
+
employment_type?: boolean
|
|
39020
39056
|
location?: boolean
|
|
39021
39057
|
experience_min?: boolean
|
|
39022
39058
|
reporting?: boolean
|
|
39023
39059
|
comp_range?: boolean
|
|
39024
39060
|
comp_benchmark?: boolean
|
|
39061
|
+
budget?: boolean
|
|
39025
39062
|
responsibilities?: boolean
|
|
39026
39063
|
deliverables?: boolean
|
|
39027
39064
|
must_have_skills?: boolean
|
|
@@ -39037,6 +39074,7 @@ export namespace Prisma {
|
|
|
39037
39074
|
updated_at?: boolean
|
|
39038
39075
|
is_active?: boolean
|
|
39039
39076
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
39077
|
+
hiring_manager?: boolean | JobProfile$hiring_managerArgs<ExtArgs>
|
|
39040
39078
|
creator?: boolean | UserDefaultArgs<ExtArgs>
|
|
39041
39079
|
assignee?: boolean | JobProfile$assigneeArgs<ExtArgs>
|
|
39042
39080
|
}, ExtArgs["result"]["jobProfile"]>
|
|
@@ -39044,17 +39082,20 @@ export namespace Prisma {
|
|
|
39044
39082
|
export type JobProfileSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
39045
39083
|
id?: boolean
|
|
39046
39084
|
organisation_id?: boolean
|
|
39085
|
+
hiring_manager_id?: boolean
|
|
39047
39086
|
created_by?: boolean
|
|
39048
39087
|
assigned_to?: boolean
|
|
39049
39088
|
status?: boolean
|
|
39050
39089
|
title?: boolean
|
|
39051
39090
|
role_type?: boolean
|
|
39052
39091
|
work_arrangement?: boolean
|
|
39092
|
+
employment_type?: boolean
|
|
39053
39093
|
location?: boolean
|
|
39054
39094
|
experience_min?: boolean
|
|
39055
39095
|
reporting?: boolean
|
|
39056
39096
|
comp_range?: boolean
|
|
39057
39097
|
comp_benchmark?: boolean
|
|
39098
|
+
budget?: boolean
|
|
39058
39099
|
responsibilities?: boolean
|
|
39059
39100
|
deliverables?: boolean
|
|
39060
39101
|
must_have_skills?: boolean
|
|
@@ -39070,6 +39111,7 @@ export namespace Prisma {
|
|
|
39070
39111
|
updated_at?: boolean
|
|
39071
39112
|
is_active?: boolean
|
|
39072
39113
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
39114
|
+
hiring_manager?: boolean | JobProfile$hiring_managerArgs<ExtArgs>
|
|
39073
39115
|
creator?: boolean | UserDefaultArgs<ExtArgs>
|
|
39074
39116
|
assignee?: boolean | JobProfile$assigneeArgs<ExtArgs>
|
|
39075
39117
|
}, ExtArgs["result"]["jobProfile"]>
|
|
@@ -39077,17 +39119,20 @@ export namespace Prisma {
|
|
|
39077
39119
|
export type JobProfileSelectScalar = {
|
|
39078
39120
|
id?: boolean
|
|
39079
39121
|
organisation_id?: boolean
|
|
39122
|
+
hiring_manager_id?: boolean
|
|
39080
39123
|
created_by?: boolean
|
|
39081
39124
|
assigned_to?: boolean
|
|
39082
39125
|
status?: boolean
|
|
39083
39126
|
title?: boolean
|
|
39084
39127
|
role_type?: boolean
|
|
39085
39128
|
work_arrangement?: boolean
|
|
39129
|
+
employment_type?: boolean
|
|
39086
39130
|
location?: boolean
|
|
39087
39131
|
experience_min?: boolean
|
|
39088
39132
|
reporting?: boolean
|
|
39089
39133
|
comp_range?: boolean
|
|
39090
39134
|
comp_benchmark?: boolean
|
|
39135
|
+
budget?: boolean
|
|
39091
39136
|
responsibilities?: boolean
|
|
39092
39137
|
deliverables?: boolean
|
|
39093
39138
|
must_have_skills?: boolean
|
|
@@ -39104,9 +39149,10 @@ export namespace Prisma {
|
|
|
39104
39149
|
is_active?: boolean
|
|
39105
39150
|
}
|
|
39106
39151
|
|
|
39107
|
-
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"]>
|
|
39108
39153
|
export type JobProfileInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39109
39154
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
39155
|
+
hiring_manager?: boolean | JobProfile$hiring_managerArgs<ExtArgs>
|
|
39110
39156
|
creator?: boolean | UserDefaultArgs<ExtArgs>
|
|
39111
39157
|
assignee?: boolean | JobProfile$assigneeArgs<ExtArgs>
|
|
39112
39158
|
job_descriptions?: boolean | JobProfile$job_descriptionsArgs<ExtArgs>
|
|
@@ -39114,11 +39160,13 @@ export namespace Prisma {
|
|
|
39114
39160
|
}
|
|
39115
39161
|
export type JobProfileIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39116
39162
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
39163
|
+
hiring_manager?: boolean | JobProfile$hiring_managerArgs<ExtArgs>
|
|
39117
39164
|
creator?: boolean | UserDefaultArgs<ExtArgs>
|
|
39118
39165
|
assignee?: boolean | JobProfile$assigneeArgs<ExtArgs>
|
|
39119
39166
|
}
|
|
39120
39167
|
export type JobProfileIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39121
39168
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
39169
|
+
hiring_manager?: boolean | JobProfile$hiring_managerArgs<ExtArgs>
|
|
39122
39170
|
creator?: boolean | UserDefaultArgs<ExtArgs>
|
|
39123
39171
|
assignee?: boolean | JobProfile$assigneeArgs<ExtArgs>
|
|
39124
39172
|
}
|
|
@@ -39127,6 +39175,7 @@ export namespace Prisma {
|
|
|
39127
39175
|
name: "JobProfile"
|
|
39128
39176
|
objects: {
|
|
39129
39177
|
organisation: Prisma.$OrganisationPayload<ExtArgs>
|
|
39178
|
+
hiring_manager: Prisma.$UserPayload<ExtArgs> | null
|
|
39130
39179
|
creator: Prisma.$UserPayload<ExtArgs>
|
|
39131
39180
|
assignee: Prisma.$UserPayload<ExtArgs> | null
|
|
39132
39181
|
job_descriptions: Prisma.$JobDescriptionPayload<ExtArgs>[]
|
|
@@ -39134,17 +39183,20 @@ export namespace Prisma {
|
|
|
39134
39183
|
scalars: $Extensions.GetPayloadResult<{
|
|
39135
39184
|
id: string
|
|
39136
39185
|
organisation_id: string
|
|
39186
|
+
hiring_manager_id: string | null
|
|
39137
39187
|
created_by: string
|
|
39138
39188
|
assigned_to: string | null
|
|
39139
39189
|
status: $Enums.JobProfileStatus
|
|
39140
39190
|
title: string | null
|
|
39141
39191
|
role_type: string | null
|
|
39142
39192
|
work_arrangement: string | null
|
|
39193
|
+
employment_type: string | null
|
|
39143
39194
|
location: string | null
|
|
39144
39195
|
experience_min: string | null
|
|
39145
39196
|
reporting: string | null
|
|
39146
39197
|
comp_range: string | null
|
|
39147
39198
|
comp_benchmark: string | null
|
|
39199
|
+
budget: string | null
|
|
39148
39200
|
responsibilities: Prisma.JsonValue | null
|
|
39149
39201
|
deliverables: Prisma.JsonValue | null
|
|
39150
39202
|
must_have_skills: Prisma.JsonValue | null
|
|
@@ -39554,6 +39606,7 @@ export namespace Prisma {
|
|
|
39554
39606
|
export interface Prisma__JobProfileClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
39555
39607
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
39556
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>
|
|
39557
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>
|
|
39558
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>
|
|
39559
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>
|
|
@@ -39588,17 +39641,20 @@ export namespace Prisma {
|
|
|
39588
39641
|
interface JobProfileFieldRefs {
|
|
39589
39642
|
readonly id: FieldRef<"JobProfile", 'String'>
|
|
39590
39643
|
readonly organisation_id: FieldRef<"JobProfile", 'String'>
|
|
39644
|
+
readonly hiring_manager_id: FieldRef<"JobProfile", 'String'>
|
|
39591
39645
|
readonly created_by: FieldRef<"JobProfile", 'String'>
|
|
39592
39646
|
readonly assigned_to: FieldRef<"JobProfile", 'String'>
|
|
39593
39647
|
readonly status: FieldRef<"JobProfile", 'JobProfileStatus'>
|
|
39594
39648
|
readonly title: FieldRef<"JobProfile", 'String'>
|
|
39595
39649
|
readonly role_type: FieldRef<"JobProfile", 'String'>
|
|
39596
39650
|
readonly work_arrangement: FieldRef<"JobProfile", 'String'>
|
|
39651
|
+
readonly employment_type: FieldRef<"JobProfile", 'String'>
|
|
39597
39652
|
readonly location: FieldRef<"JobProfile", 'String'>
|
|
39598
39653
|
readonly experience_min: FieldRef<"JobProfile", 'String'>
|
|
39599
39654
|
readonly reporting: FieldRef<"JobProfile", 'String'>
|
|
39600
39655
|
readonly comp_range: FieldRef<"JobProfile", 'String'>
|
|
39601
39656
|
readonly comp_benchmark: FieldRef<"JobProfile", 'String'>
|
|
39657
|
+
readonly budget: FieldRef<"JobProfile", 'String'>
|
|
39602
39658
|
readonly responsibilities: FieldRef<"JobProfile", 'Json'>
|
|
39603
39659
|
readonly deliverables: FieldRef<"JobProfile", 'Json'>
|
|
39604
39660
|
readonly must_have_skills: FieldRef<"JobProfile", 'Json'>
|
|
@@ -40008,6 +40064,25 @@ export namespace Prisma {
|
|
|
40008
40064
|
limit?: number
|
|
40009
40065
|
}
|
|
40010
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
|
+
|
|
40011
40086
|
/**
|
|
40012
40087
|
* JobProfile.assignee
|
|
40013
40088
|
*/
|
|
@@ -54641,6 +54716,7 @@ export namespace Prisma {
|
|
|
54641
54716
|
user_profile?: boolean | User$user_profileArgs<ExtArgs>
|
|
54642
54717
|
job_description?: boolean | User$job_descriptionArgs<ExtArgs>
|
|
54643
54718
|
hiring_manager_job_descriptions?: boolean | User$hiring_manager_job_descriptionsArgs<ExtArgs>
|
|
54719
|
+
hiring_manager_job_profiles?: boolean | User$hiring_manager_job_profilesArgs<ExtArgs>
|
|
54644
54720
|
approvals?: boolean | User$approvalsArgs<ExtArgs>
|
|
54645
54721
|
sent_messages?: boolean | User$sent_messagesArgs<ExtArgs>
|
|
54646
54722
|
received_messages?: boolean | User$received_messagesArgs<ExtArgs>
|
|
@@ -54786,6 +54862,7 @@ export namespace Prisma {
|
|
|
54786
54862
|
user_profile?: boolean | User$user_profileArgs<ExtArgs>
|
|
54787
54863
|
job_description?: boolean | User$job_descriptionArgs<ExtArgs>
|
|
54788
54864
|
hiring_manager_job_descriptions?: boolean | User$hiring_manager_job_descriptionsArgs<ExtArgs>
|
|
54865
|
+
hiring_manager_job_profiles?: boolean | User$hiring_manager_job_profilesArgs<ExtArgs>
|
|
54789
54866
|
approvals?: boolean | User$approvalsArgs<ExtArgs>
|
|
54790
54867
|
sent_messages?: boolean | User$sent_messagesArgs<ExtArgs>
|
|
54791
54868
|
received_messages?: boolean | User$received_messagesArgs<ExtArgs>
|
|
@@ -54831,6 +54908,7 @@ export namespace Prisma {
|
|
|
54831
54908
|
user_profile: Prisma.$UserProfilePayload<ExtArgs> | null
|
|
54832
54909
|
job_description: Prisma.$JobDescriptionPayload<ExtArgs>[]
|
|
54833
54910
|
hiring_manager_job_descriptions: Prisma.$JobDescriptionPayload<ExtArgs>[]
|
|
54911
|
+
hiring_manager_job_profiles: Prisma.$JobProfilePayload<ExtArgs>[]
|
|
54834
54912
|
approvals: Prisma.$ApprovalPayload<ExtArgs>[]
|
|
54835
54913
|
sent_messages: Prisma.$MessagePayload<ExtArgs>[]
|
|
54836
54914
|
received_messages: Prisma.$MessagePayload<ExtArgs>[]
|
|
@@ -55288,6 +55366,7 @@ export namespace Prisma {
|
|
|
55288
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>
|
|
55289
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>
|
|
55290
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>
|
|
55291
55370
|
approvals<T extends User$approvalsArgs<ExtArgs> = {}>(args?: Subset<T, User$approvalsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ApprovalPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
55292
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>
|
|
55293
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>
|
|
@@ -55936,6 +56015,30 @@ export namespace Prisma {
|
|
|
55936
56015
|
distinct?: JobDescriptionScalarFieldEnum | JobDescriptionScalarFieldEnum[]
|
|
55937
56016
|
}
|
|
55938
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
|
+
|
|
55939
56042
|
/**
|
|
55940
56043
|
* User.approvals
|
|
55941
56044
|
*/
|
|
@@ -58124,17 +58227,20 @@ export namespace Prisma {
|
|
|
58124
58227
|
export const JobProfileScalarFieldEnum: {
|
|
58125
58228
|
id: 'id',
|
|
58126
58229
|
organisation_id: 'organisation_id',
|
|
58230
|
+
hiring_manager_id: 'hiring_manager_id',
|
|
58127
58231
|
created_by: 'created_by',
|
|
58128
58232
|
assigned_to: 'assigned_to',
|
|
58129
58233
|
status: 'status',
|
|
58130
58234
|
title: 'title',
|
|
58131
58235
|
role_type: 'role_type',
|
|
58132
58236
|
work_arrangement: 'work_arrangement',
|
|
58237
|
+
employment_type: 'employment_type',
|
|
58133
58238
|
location: 'location',
|
|
58134
58239
|
experience_min: 'experience_min',
|
|
58135
58240
|
reporting: 'reporting',
|
|
58136
58241
|
comp_range: 'comp_range',
|
|
58137
58242
|
comp_benchmark: 'comp_benchmark',
|
|
58243
|
+
budget: 'budget',
|
|
58138
58244
|
responsibilities: 'responsibilities',
|
|
58139
58245
|
deliverables: 'deliverables',
|
|
58140
58246
|
must_have_skills: 'must_have_skills',
|
|
@@ -61911,17 +62017,20 @@ export namespace Prisma {
|
|
|
61911
62017
|
NOT?: JobProfileWhereInput | JobProfileWhereInput[]
|
|
61912
62018
|
id?: StringFilter<"JobProfile"> | string
|
|
61913
62019
|
organisation_id?: StringFilter<"JobProfile"> | string
|
|
62020
|
+
hiring_manager_id?: StringNullableFilter<"JobProfile"> | string | null
|
|
61914
62021
|
created_by?: StringFilter<"JobProfile"> | string
|
|
61915
62022
|
assigned_to?: StringNullableFilter<"JobProfile"> | string | null
|
|
61916
62023
|
status?: EnumJobProfileStatusFilter<"JobProfile"> | $Enums.JobProfileStatus
|
|
61917
62024
|
title?: StringNullableFilter<"JobProfile"> | string | null
|
|
61918
62025
|
role_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
61919
62026
|
work_arrangement?: StringNullableFilter<"JobProfile"> | string | null
|
|
62027
|
+
employment_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
61920
62028
|
location?: StringNullableFilter<"JobProfile"> | string | null
|
|
61921
62029
|
experience_min?: StringNullableFilter<"JobProfile"> | string | null
|
|
61922
62030
|
reporting?: StringNullableFilter<"JobProfile"> | string | null
|
|
61923
62031
|
comp_range?: StringNullableFilter<"JobProfile"> | string | null
|
|
61924
62032
|
comp_benchmark?: StringNullableFilter<"JobProfile"> | string | null
|
|
62033
|
+
budget?: StringNullableFilter<"JobProfile"> | string | null
|
|
61925
62034
|
responsibilities?: JsonNullableFilter<"JobProfile">
|
|
61926
62035
|
deliverables?: JsonNullableFilter<"JobProfile">
|
|
61927
62036
|
must_have_skills?: JsonNullableFilter<"JobProfile">
|
|
@@ -61937,6 +62046,7 @@ export namespace Prisma {
|
|
|
61937
62046
|
updated_at?: DateTimeFilter<"JobProfile"> | Date | string
|
|
61938
62047
|
is_active?: BoolFilter<"JobProfile"> | boolean
|
|
61939
62048
|
organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
|
|
62049
|
+
hiring_manager?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
61940
62050
|
creator?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
61941
62051
|
assignee?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
61942
62052
|
job_descriptions?: JobDescriptionListRelationFilter
|
|
@@ -61945,17 +62055,20 @@ export namespace Prisma {
|
|
|
61945
62055
|
export type JobProfileOrderByWithRelationInput = {
|
|
61946
62056
|
id?: SortOrder
|
|
61947
62057
|
organisation_id?: SortOrder
|
|
62058
|
+
hiring_manager_id?: SortOrderInput | SortOrder
|
|
61948
62059
|
created_by?: SortOrder
|
|
61949
62060
|
assigned_to?: SortOrderInput | SortOrder
|
|
61950
62061
|
status?: SortOrder
|
|
61951
62062
|
title?: SortOrderInput | SortOrder
|
|
61952
62063
|
role_type?: SortOrderInput | SortOrder
|
|
61953
62064
|
work_arrangement?: SortOrderInput | SortOrder
|
|
62065
|
+
employment_type?: SortOrderInput | SortOrder
|
|
61954
62066
|
location?: SortOrderInput | SortOrder
|
|
61955
62067
|
experience_min?: SortOrderInput | SortOrder
|
|
61956
62068
|
reporting?: SortOrderInput | SortOrder
|
|
61957
62069
|
comp_range?: SortOrderInput | SortOrder
|
|
61958
62070
|
comp_benchmark?: SortOrderInput | SortOrder
|
|
62071
|
+
budget?: SortOrderInput | SortOrder
|
|
61959
62072
|
responsibilities?: SortOrderInput | SortOrder
|
|
61960
62073
|
deliverables?: SortOrderInput | SortOrder
|
|
61961
62074
|
must_have_skills?: SortOrderInput | SortOrder
|
|
@@ -61971,6 +62084,7 @@ export namespace Prisma {
|
|
|
61971
62084
|
updated_at?: SortOrder
|
|
61972
62085
|
is_active?: SortOrder
|
|
61973
62086
|
organisation?: OrganisationOrderByWithRelationInput
|
|
62087
|
+
hiring_manager?: UserOrderByWithRelationInput
|
|
61974
62088
|
creator?: UserOrderByWithRelationInput
|
|
61975
62089
|
assignee?: UserOrderByWithRelationInput
|
|
61976
62090
|
job_descriptions?: JobDescriptionOrderByRelationAggregateInput
|
|
@@ -61982,17 +62096,20 @@ export namespace Prisma {
|
|
|
61982
62096
|
OR?: JobProfileWhereInput[]
|
|
61983
62097
|
NOT?: JobProfileWhereInput | JobProfileWhereInput[]
|
|
61984
62098
|
organisation_id?: StringFilter<"JobProfile"> | string
|
|
62099
|
+
hiring_manager_id?: StringNullableFilter<"JobProfile"> | string | null
|
|
61985
62100
|
created_by?: StringFilter<"JobProfile"> | string
|
|
61986
62101
|
assigned_to?: StringNullableFilter<"JobProfile"> | string | null
|
|
61987
62102
|
status?: EnumJobProfileStatusFilter<"JobProfile"> | $Enums.JobProfileStatus
|
|
61988
62103
|
title?: StringNullableFilter<"JobProfile"> | string | null
|
|
61989
62104
|
role_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
61990
62105
|
work_arrangement?: StringNullableFilter<"JobProfile"> | string | null
|
|
62106
|
+
employment_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
61991
62107
|
location?: StringNullableFilter<"JobProfile"> | string | null
|
|
61992
62108
|
experience_min?: StringNullableFilter<"JobProfile"> | string | null
|
|
61993
62109
|
reporting?: StringNullableFilter<"JobProfile"> | string | null
|
|
61994
62110
|
comp_range?: StringNullableFilter<"JobProfile"> | string | null
|
|
61995
62111
|
comp_benchmark?: StringNullableFilter<"JobProfile"> | string | null
|
|
62112
|
+
budget?: StringNullableFilter<"JobProfile"> | string | null
|
|
61996
62113
|
responsibilities?: JsonNullableFilter<"JobProfile">
|
|
61997
62114
|
deliverables?: JsonNullableFilter<"JobProfile">
|
|
61998
62115
|
must_have_skills?: JsonNullableFilter<"JobProfile">
|
|
@@ -62008,6 +62125,7 @@ export namespace Prisma {
|
|
|
62008
62125
|
updated_at?: DateTimeFilter<"JobProfile"> | Date | string
|
|
62009
62126
|
is_active?: BoolFilter<"JobProfile"> | boolean
|
|
62010
62127
|
organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
|
|
62128
|
+
hiring_manager?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
62011
62129
|
creator?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
62012
62130
|
assignee?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
62013
62131
|
job_descriptions?: JobDescriptionListRelationFilter
|
|
@@ -62016,17 +62134,20 @@ export namespace Prisma {
|
|
|
62016
62134
|
export type JobProfileOrderByWithAggregationInput = {
|
|
62017
62135
|
id?: SortOrder
|
|
62018
62136
|
organisation_id?: SortOrder
|
|
62137
|
+
hiring_manager_id?: SortOrderInput | SortOrder
|
|
62019
62138
|
created_by?: SortOrder
|
|
62020
62139
|
assigned_to?: SortOrderInput | SortOrder
|
|
62021
62140
|
status?: SortOrder
|
|
62022
62141
|
title?: SortOrderInput | SortOrder
|
|
62023
62142
|
role_type?: SortOrderInput | SortOrder
|
|
62024
62143
|
work_arrangement?: SortOrderInput | SortOrder
|
|
62144
|
+
employment_type?: SortOrderInput | SortOrder
|
|
62025
62145
|
location?: SortOrderInput | SortOrder
|
|
62026
62146
|
experience_min?: SortOrderInput | SortOrder
|
|
62027
62147
|
reporting?: SortOrderInput | SortOrder
|
|
62028
62148
|
comp_range?: SortOrderInput | SortOrder
|
|
62029
62149
|
comp_benchmark?: SortOrderInput | SortOrder
|
|
62150
|
+
budget?: SortOrderInput | SortOrder
|
|
62030
62151
|
responsibilities?: SortOrderInput | SortOrder
|
|
62031
62152
|
deliverables?: SortOrderInput | SortOrder
|
|
62032
62153
|
must_have_skills?: SortOrderInput | SortOrder
|
|
@@ -62052,17 +62173,20 @@ export namespace Prisma {
|
|
|
62052
62173
|
NOT?: JobProfileScalarWhereWithAggregatesInput | JobProfileScalarWhereWithAggregatesInput[]
|
|
62053
62174
|
id?: StringWithAggregatesFilter<"JobProfile"> | string
|
|
62054
62175
|
organisation_id?: StringWithAggregatesFilter<"JobProfile"> | string
|
|
62176
|
+
hiring_manager_id?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62055
62177
|
created_by?: StringWithAggregatesFilter<"JobProfile"> | string
|
|
62056
62178
|
assigned_to?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62057
62179
|
status?: EnumJobProfileStatusWithAggregatesFilter<"JobProfile"> | $Enums.JobProfileStatus
|
|
62058
62180
|
title?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62059
62181
|
role_type?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62060
62182
|
work_arrangement?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62183
|
+
employment_type?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62061
62184
|
location?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62062
62185
|
experience_min?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62063
62186
|
reporting?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62064
62187
|
comp_range?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62065
62188
|
comp_benchmark?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62189
|
+
budget?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62066
62190
|
responsibilities?: JsonNullableWithAggregatesFilter<"JobProfile">
|
|
62067
62191
|
deliverables?: JsonNullableWithAggregatesFilter<"JobProfile">
|
|
62068
62192
|
must_have_skills?: JsonNullableWithAggregatesFilter<"JobProfile">
|
|
@@ -63352,6 +63476,7 @@ export namespace Prisma {
|
|
|
63352
63476
|
user_profile?: XOR<UserProfileNullableScalarRelationFilter, UserProfileWhereInput> | null
|
|
63353
63477
|
job_description?: JobDescriptionListRelationFilter
|
|
63354
63478
|
hiring_manager_job_descriptions?: JobDescriptionListRelationFilter
|
|
63479
|
+
hiring_manager_job_profiles?: JobProfileListRelationFilter
|
|
63355
63480
|
approvals?: ApprovalListRelationFilter
|
|
63356
63481
|
sent_messages?: MessageListRelationFilter
|
|
63357
63482
|
received_messages?: MessageListRelationFilter
|
|
@@ -63416,6 +63541,7 @@ export namespace Prisma {
|
|
|
63416
63541
|
user_profile?: UserProfileOrderByWithRelationInput
|
|
63417
63542
|
job_description?: JobDescriptionOrderByRelationAggregateInput
|
|
63418
63543
|
hiring_manager_job_descriptions?: JobDescriptionOrderByRelationAggregateInput
|
|
63544
|
+
hiring_manager_job_profiles?: JobProfileOrderByRelationAggregateInput
|
|
63419
63545
|
approvals?: ApprovalOrderByRelationAggregateInput
|
|
63420
63546
|
sent_messages?: MessageOrderByRelationAggregateInput
|
|
63421
63547
|
received_messages?: MessageOrderByRelationAggregateInput
|
|
@@ -63483,6 +63609,7 @@ export namespace Prisma {
|
|
|
63483
63609
|
user_profile?: XOR<UserProfileNullableScalarRelationFilter, UserProfileWhereInput> | null
|
|
63484
63610
|
job_description?: JobDescriptionListRelationFilter
|
|
63485
63611
|
hiring_manager_job_descriptions?: JobDescriptionListRelationFilter
|
|
63612
|
+
hiring_manager_job_profiles?: JobProfileListRelationFilter
|
|
63486
63613
|
approvals?: ApprovalListRelationFilter
|
|
63487
63614
|
sent_messages?: MessageListRelationFilter
|
|
63488
63615
|
received_messages?: MessageListRelationFilter
|
|
@@ -66932,11 +67059,13 @@ export namespace Prisma {
|
|
|
66932
67059
|
title?: string | null
|
|
66933
67060
|
role_type?: string | null
|
|
66934
67061
|
work_arrangement?: string | null
|
|
67062
|
+
employment_type?: string | null
|
|
66935
67063
|
location?: string | null
|
|
66936
67064
|
experience_min?: string | null
|
|
66937
67065
|
reporting?: string | null
|
|
66938
67066
|
comp_range?: string | null
|
|
66939
67067
|
comp_benchmark?: string | null
|
|
67068
|
+
budget?: string | null
|
|
66940
67069
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
66941
67070
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
66942
67071
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -66952,6 +67081,7 @@ export namespace Prisma {
|
|
|
66952
67081
|
updated_at?: Date | string
|
|
66953
67082
|
is_active?: boolean
|
|
66954
67083
|
organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
|
|
67084
|
+
hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
|
|
66955
67085
|
creator: UserCreateNestedOneWithoutCreated_job_profilesInput
|
|
66956
67086
|
assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
|
|
66957
67087
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
|
|
@@ -66960,17 +67090,20 @@ export namespace Prisma {
|
|
|
66960
67090
|
export type JobProfileUncheckedCreateInput = {
|
|
66961
67091
|
id?: string
|
|
66962
67092
|
organisation_id: string
|
|
67093
|
+
hiring_manager_id?: string | null
|
|
66963
67094
|
created_by: string
|
|
66964
67095
|
assigned_to?: string | null
|
|
66965
67096
|
status?: $Enums.JobProfileStatus
|
|
66966
67097
|
title?: string | null
|
|
66967
67098
|
role_type?: string | null
|
|
66968
67099
|
work_arrangement?: string | null
|
|
67100
|
+
employment_type?: string | null
|
|
66969
67101
|
location?: string | null
|
|
66970
67102
|
experience_min?: string | null
|
|
66971
67103
|
reporting?: string | null
|
|
66972
67104
|
comp_range?: string | null
|
|
66973
67105
|
comp_benchmark?: string | null
|
|
67106
|
+
budget?: string | null
|
|
66974
67107
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
66975
67108
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
66976
67109
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -66994,11 +67127,13 @@ export namespace Prisma {
|
|
|
66994
67127
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66995
67128
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66996
67129
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67130
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66997
67131
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66998
67132
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66999
67133
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67000
67134
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67001
67135
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67136
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67002
67137
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
67003
67138
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
67004
67139
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -67014,6 +67149,7 @@ export namespace Prisma {
|
|
|
67014
67149
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67015
67150
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
67016
67151
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
|
|
67152
|
+
hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
|
|
67017
67153
|
creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
|
|
67018
67154
|
assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
|
|
67019
67155
|
job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
|
|
@@ -67022,17 +67158,20 @@ export namespace Prisma {
|
|
|
67022
67158
|
export type JobProfileUncheckedUpdateInput = {
|
|
67023
67159
|
id?: StringFieldUpdateOperationsInput | string
|
|
67024
67160
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
67161
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67025
67162
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
67026
67163
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67027
67164
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
67028
67165
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67029
67166
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67030
67167
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67168
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67031
67169
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67032
67170
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67033
67171
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67034
67172
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67035
67173
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67174
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67036
67175
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
67037
67176
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
67038
67177
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -67053,17 +67192,20 @@ export namespace Prisma {
|
|
|
67053
67192
|
export type JobProfileCreateManyInput = {
|
|
67054
67193
|
id?: string
|
|
67055
67194
|
organisation_id: string
|
|
67195
|
+
hiring_manager_id?: string | null
|
|
67056
67196
|
created_by: string
|
|
67057
67197
|
assigned_to?: string | null
|
|
67058
67198
|
status?: $Enums.JobProfileStatus
|
|
67059
67199
|
title?: string | null
|
|
67060
67200
|
role_type?: string | null
|
|
67061
67201
|
work_arrangement?: string | null
|
|
67202
|
+
employment_type?: string | null
|
|
67062
67203
|
location?: string | null
|
|
67063
67204
|
experience_min?: string | null
|
|
67064
67205
|
reporting?: string | null
|
|
67065
67206
|
comp_range?: string | null
|
|
67066
67207
|
comp_benchmark?: string | null
|
|
67208
|
+
budget?: string | null
|
|
67067
67209
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
67068
67210
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
67069
67211
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -67086,11 +67228,13 @@ export namespace Prisma {
|
|
|
67086
67228
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67087
67229
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67088
67230
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67231
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67089
67232
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67090
67233
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67091
67234
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67092
67235
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67093
67236
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67237
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67094
67238
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
67095
67239
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
67096
67240
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -67110,17 +67254,20 @@ export namespace Prisma {
|
|
|
67110
67254
|
export type JobProfileUncheckedUpdateManyInput = {
|
|
67111
67255
|
id?: StringFieldUpdateOperationsInput | string
|
|
67112
67256
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
67257
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67113
67258
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
67114
67259
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67115
67260
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
67116
67261
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67117
67262
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67118
67263
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67264
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67119
67265
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67120
67266
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67121
67267
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67122
67268
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67123
67269
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67270
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67124
67271
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
67125
67272
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
67126
67273
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -68568,6 +68715,7 @@ export namespace Prisma {
|
|
|
68568
68715
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
68569
68716
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
68570
68717
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
68718
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
68571
68719
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
68572
68720
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
68573
68721
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -68629,6 +68777,7 @@ export namespace Prisma {
|
|
|
68629
68777
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
68630
68778
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
68631
68779
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
68780
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
68632
68781
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
68633
68782
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
68634
68783
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -68690,6 +68839,7 @@ export namespace Prisma {
|
|
|
68690
68839
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
68691
68840
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
68692
68841
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
68842
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
68693
68843
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
68694
68844
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
68695
68845
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -68751,6 +68901,7 @@ export namespace Prisma {
|
|
|
68751
68901
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
68752
68902
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
68753
68903
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
68904
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
68754
68905
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
68755
68906
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
68756
68907
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -71509,17 +71660,20 @@ export namespace Prisma {
|
|
|
71509
71660
|
export type JobProfileCountOrderByAggregateInput = {
|
|
71510
71661
|
id?: SortOrder
|
|
71511
71662
|
organisation_id?: SortOrder
|
|
71663
|
+
hiring_manager_id?: SortOrder
|
|
71512
71664
|
created_by?: SortOrder
|
|
71513
71665
|
assigned_to?: SortOrder
|
|
71514
71666
|
status?: SortOrder
|
|
71515
71667
|
title?: SortOrder
|
|
71516
71668
|
role_type?: SortOrder
|
|
71517
71669
|
work_arrangement?: SortOrder
|
|
71670
|
+
employment_type?: SortOrder
|
|
71518
71671
|
location?: SortOrder
|
|
71519
71672
|
experience_min?: SortOrder
|
|
71520
71673
|
reporting?: SortOrder
|
|
71521
71674
|
comp_range?: SortOrder
|
|
71522
71675
|
comp_benchmark?: SortOrder
|
|
71676
|
+
budget?: SortOrder
|
|
71523
71677
|
responsibilities?: SortOrder
|
|
71524
71678
|
deliverables?: SortOrder
|
|
71525
71679
|
must_have_skills?: SortOrder
|
|
@@ -71539,17 +71693,20 @@ export namespace Prisma {
|
|
|
71539
71693
|
export type JobProfileMaxOrderByAggregateInput = {
|
|
71540
71694
|
id?: SortOrder
|
|
71541
71695
|
organisation_id?: SortOrder
|
|
71696
|
+
hiring_manager_id?: SortOrder
|
|
71542
71697
|
created_by?: SortOrder
|
|
71543
71698
|
assigned_to?: SortOrder
|
|
71544
71699
|
status?: SortOrder
|
|
71545
71700
|
title?: SortOrder
|
|
71546
71701
|
role_type?: SortOrder
|
|
71547
71702
|
work_arrangement?: SortOrder
|
|
71703
|
+
employment_type?: SortOrder
|
|
71548
71704
|
location?: SortOrder
|
|
71549
71705
|
experience_min?: SortOrder
|
|
71550
71706
|
reporting?: SortOrder
|
|
71551
71707
|
comp_range?: SortOrder
|
|
71552
71708
|
comp_benchmark?: SortOrder
|
|
71709
|
+
budget?: SortOrder
|
|
71553
71710
|
current_phase?: SortOrder
|
|
71554
71711
|
orion_execution_id?: SortOrder
|
|
71555
71712
|
created_at?: SortOrder
|
|
@@ -71560,17 +71717,20 @@ export namespace Prisma {
|
|
|
71560
71717
|
export type JobProfileMinOrderByAggregateInput = {
|
|
71561
71718
|
id?: SortOrder
|
|
71562
71719
|
organisation_id?: SortOrder
|
|
71720
|
+
hiring_manager_id?: SortOrder
|
|
71563
71721
|
created_by?: SortOrder
|
|
71564
71722
|
assigned_to?: SortOrder
|
|
71565
71723
|
status?: SortOrder
|
|
71566
71724
|
title?: SortOrder
|
|
71567
71725
|
role_type?: SortOrder
|
|
71568
71726
|
work_arrangement?: SortOrder
|
|
71727
|
+
employment_type?: SortOrder
|
|
71569
71728
|
location?: SortOrder
|
|
71570
71729
|
experience_min?: SortOrder
|
|
71571
71730
|
reporting?: SortOrder
|
|
71572
71731
|
comp_range?: SortOrder
|
|
71573
71732
|
comp_benchmark?: SortOrder
|
|
71733
|
+
budget?: SortOrder
|
|
71574
71734
|
current_phase?: SortOrder
|
|
71575
71735
|
orion_execution_id?: SortOrder
|
|
71576
71736
|
created_at?: SortOrder
|
|
@@ -75402,6 +75562,12 @@ export namespace Prisma {
|
|
|
75402
75562
|
connect?: OrganisationWhereUniqueInput
|
|
75403
75563
|
}
|
|
75404
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
|
+
|
|
75405
75571
|
export type UserCreateNestedOneWithoutCreated_job_profilesInput = {
|
|
75406
75572
|
create?: XOR<UserCreateWithoutCreated_job_profilesInput, UserUncheckedCreateWithoutCreated_job_profilesInput>
|
|
75407
75573
|
connectOrCreate?: UserCreateOrConnectWithoutCreated_job_profilesInput
|
|
@@ -75440,6 +75606,16 @@ export namespace Prisma {
|
|
|
75440
75606
|
update?: XOR<XOR<OrganisationUpdateToOneWithWhereWithoutJob_profilesInput, OrganisationUpdateWithoutJob_profilesInput>, OrganisationUncheckedUpdateWithoutJob_profilesInput>
|
|
75441
75607
|
}
|
|
75442
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
|
+
|
|
75443
75619
|
export type UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput = {
|
|
75444
75620
|
create?: XOR<UserCreateWithoutCreated_job_profilesInput, UserUncheckedCreateWithoutCreated_job_profilesInput>
|
|
75445
75621
|
connectOrCreate?: UserCreateOrConnectWithoutCreated_job_profilesInput
|
|
@@ -77193,6 +77369,13 @@ export namespace Prisma {
|
|
|
77193
77369
|
connect?: JobDescriptionWhereUniqueInput | JobDescriptionWhereUniqueInput[]
|
|
77194
77370
|
}
|
|
77195
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
|
+
|
|
77196
77379
|
export type ApprovalCreateNestedManyWithoutUserInput = {
|
|
77197
77380
|
create?: XOR<ApprovalCreateWithoutUserInput, ApprovalUncheckedCreateWithoutUserInput> | ApprovalCreateWithoutUserInput[] | ApprovalUncheckedCreateWithoutUserInput[]
|
|
77198
77381
|
connectOrCreate?: ApprovalCreateOrConnectWithoutUserInput | ApprovalCreateOrConnectWithoutUserInput[]
|
|
@@ -77370,6 +77553,13 @@ export namespace Prisma {
|
|
|
77370
77553
|
connect?: JobDescriptionWhereUniqueInput | JobDescriptionWhereUniqueInput[]
|
|
77371
77554
|
}
|
|
77372
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
|
+
|
|
77373
77563
|
export type ApprovalUncheckedCreateNestedManyWithoutUserInput = {
|
|
77374
77564
|
create?: XOR<ApprovalCreateWithoutUserInput, ApprovalUncheckedCreateWithoutUserInput> | ApprovalCreateWithoutUserInput[] | ApprovalUncheckedCreateWithoutUserInput[]
|
|
77375
77565
|
connectOrCreate?: ApprovalCreateOrConnectWithoutUserInput | ApprovalCreateOrConnectWithoutUserInput[]
|
|
@@ -77615,6 +77805,20 @@ export namespace Prisma {
|
|
|
77615
77805
|
deleteMany?: JobDescriptionScalarWhereInput | JobDescriptionScalarWhereInput[]
|
|
77616
77806
|
}
|
|
77617
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
|
+
|
|
77618
77822
|
export type ApprovalUpdateManyWithoutUserNestedInput = {
|
|
77619
77823
|
create?: XOR<ApprovalCreateWithoutUserInput, ApprovalUncheckedCreateWithoutUserInput> | ApprovalCreateWithoutUserInput[] | ApprovalUncheckedCreateWithoutUserInput[]
|
|
77620
77824
|
connectOrCreate?: ApprovalCreateOrConnectWithoutUserInput | ApprovalCreateOrConnectWithoutUserInput[]
|
|
@@ -77962,6 +78166,20 @@ export namespace Prisma {
|
|
|
77962
78166
|
deleteMany?: JobDescriptionScalarWhereInput | JobDescriptionScalarWhereInput[]
|
|
77963
78167
|
}
|
|
77964
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
|
+
|
|
77965
78183
|
export type ApprovalUncheckedUpdateManyWithoutUserNestedInput = {
|
|
77966
78184
|
create?: XOR<ApprovalCreateWithoutUserInput, ApprovalUncheckedCreateWithoutUserInput> | ApprovalCreateWithoutUserInput[] | ApprovalUncheckedCreateWithoutUserInput[]
|
|
77967
78185
|
connectOrCreate?: ApprovalCreateOrConnectWithoutUserInput | ApprovalCreateOrConnectWithoutUserInput[]
|
|
@@ -79219,6 +79437,7 @@ export namespace Prisma {
|
|
|
79219
79437
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
79220
79438
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
79221
79439
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
79440
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
79222
79441
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
79223
79442
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
79224
79443
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -79279,6 +79498,7 @@ export namespace Prisma {
|
|
|
79279
79498
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
79280
79499
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
79281
79500
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
79501
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
79282
79502
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
79283
79503
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
79284
79504
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -79461,6 +79681,7 @@ export namespace Prisma {
|
|
|
79461
79681
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
79462
79682
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
79463
79683
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
79684
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
79464
79685
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
79465
79686
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
79466
79687
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -79521,6 +79742,7 @@ export namespace Prisma {
|
|
|
79521
79742
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
79522
79743
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
79523
79744
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
79745
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
79524
79746
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
79525
79747
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
79526
79748
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -79684,6 +79906,7 @@ export namespace Prisma {
|
|
|
79684
79906
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
79685
79907
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
79686
79908
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
79909
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
79687
79910
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
79688
79911
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
79689
79912
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -79744,6 +79967,7 @@ export namespace Prisma {
|
|
|
79744
79967
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
79745
79968
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
79746
79969
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
79970
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
79747
79971
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
79748
79972
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
79749
79973
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -79985,6 +80209,7 @@ export namespace Prisma {
|
|
|
79985
80209
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
79986
80210
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
79987
80211
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
80212
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
79988
80213
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
79989
80214
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
79990
80215
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -80045,6 +80270,7 @@ export namespace Prisma {
|
|
|
80045
80270
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
80046
80271
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
80047
80272
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
80273
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
80048
80274
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
80049
80275
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
80050
80276
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -80198,6 +80424,7 @@ export namespace Prisma {
|
|
|
80198
80424
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
80199
80425
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
80200
80426
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
80427
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
80201
80428
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
80202
80429
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
80203
80430
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -80258,6 +80485,7 @@ export namespace Prisma {
|
|
|
80258
80485
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
80259
80486
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
80260
80487
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
80488
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
80261
80489
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
80262
80490
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
80263
80491
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -80401,6 +80629,7 @@ export namespace Prisma {
|
|
|
80401
80629
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
80402
80630
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
80403
80631
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
80632
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
80404
80633
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
80405
80634
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
80406
80635
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -80461,6 +80690,7 @@ export namespace Prisma {
|
|
|
80461
80690
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
80462
80691
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
80463
80692
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
80693
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
80464
80694
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
80465
80695
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
80466
80696
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -80588,6 +80818,7 @@ export namespace Prisma {
|
|
|
80588
80818
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
80589
80819
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
80590
80820
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
80821
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
80591
80822
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
80592
80823
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
80593
80824
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -80648,6 +80879,7 @@ export namespace Prisma {
|
|
|
80648
80879
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
80649
80880
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
80650
80881
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
80882
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
80651
80883
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
80652
80884
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
80653
80885
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -80823,6 +81055,7 @@ export namespace Prisma {
|
|
|
80823
81055
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
80824
81056
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
80825
81057
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
81058
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
80826
81059
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
80827
81060
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
80828
81061
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -80883,6 +81116,7 @@ export namespace Prisma {
|
|
|
80883
81116
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
80884
81117
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
80885
81118
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
81119
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
80886
81120
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
80887
81121
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
80888
81122
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -81552,6 +81786,7 @@ export namespace Prisma {
|
|
|
81552
81786
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
81553
81787
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
81554
81788
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
81789
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
81555
81790
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
81556
81791
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
81557
81792
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -81612,6 +81847,7 @@ export namespace Prisma {
|
|
|
81612
81847
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
81613
81848
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
81614
81849
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
81850
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
81615
81851
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
81616
81852
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
81617
81853
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -82225,6 +82461,7 @@ export namespace Prisma {
|
|
|
82225
82461
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
82226
82462
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
82227
82463
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
82464
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
82228
82465
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
82229
82466
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
82230
82467
|
candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
|
|
@@ -82285,6 +82522,7 @@ export namespace Prisma {
|
|
|
82285
82522
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
82286
82523
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
82287
82524
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
82525
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
82288
82526
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
82289
82527
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
82290
82528
|
candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
|
|
@@ -82519,6 +82757,7 @@ export namespace Prisma {
|
|
|
82519
82757
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
82520
82758
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
82521
82759
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
82760
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
82522
82761
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
82523
82762
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
82524
82763
|
candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
|
|
@@ -82579,6 +82818,7 @@ export namespace Prisma {
|
|
|
82579
82818
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
82580
82819
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
82581
82820
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
82821
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
82582
82822
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
82583
82823
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
82584
82824
|
candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
|
|
@@ -82767,6 +83007,7 @@ export namespace Prisma {
|
|
|
82767
83007
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
82768
83008
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
82769
83009
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
83010
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
82770
83011
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
82771
83012
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
82772
83013
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -82827,6 +83068,7 @@ export namespace Prisma {
|
|
|
82827
83068
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
82828
83069
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
82829
83070
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
83071
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
82830
83072
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
82831
83073
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
82832
83074
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -82892,6 +83134,7 @@ export namespace Prisma {
|
|
|
82892
83134
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
82893
83135
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
82894
83136
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
83137
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
82895
83138
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
82896
83139
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
82897
83140
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -82952,6 +83195,7 @@ export namespace Prisma {
|
|
|
82952
83195
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
82953
83196
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
82954
83197
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
83198
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
82955
83199
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
82956
83200
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
82957
83201
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -83152,6 +83396,7 @@ export namespace Prisma {
|
|
|
83152
83396
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
83153
83397
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
83154
83398
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
83399
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
83155
83400
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
83156
83401
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
83157
83402
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -83212,6 +83457,7 @@ export namespace Prisma {
|
|
|
83212
83457
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
83213
83458
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
83214
83459
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
83460
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
83215
83461
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
83216
83462
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
83217
83463
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -83412,6 +83658,7 @@ export namespace Prisma {
|
|
|
83412
83658
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
83413
83659
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
83414
83660
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
83661
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
83415
83662
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
83416
83663
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
83417
83664
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -83472,6 +83719,7 @@ export namespace Prisma {
|
|
|
83472
83719
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
83473
83720
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
83474
83721
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
83722
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
83475
83723
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
83476
83724
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
83477
83725
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -83543,6 +83791,7 @@ export namespace Prisma {
|
|
|
83543
83791
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
83544
83792
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
83545
83793
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
83794
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
83546
83795
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
83547
83796
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
83548
83797
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -83603,6 +83852,7 @@ export namespace Prisma {
|
|
|
83603
83852
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
83604
83853
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
83605
83854
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
83855
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
83606
83856
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
83607
83857
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
83608
83858
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -83816,6 +84066,7 @@ export namespace Prisma {
|
|
|
83816
84066
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
83817
84067
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
83818
84068
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
84069
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
83819
84070
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
83820
84071
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
83821
84072
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -83876,6 +84127,7 @@ export namespace Prisma {
|
|
|
83876
84127
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
83877
84128
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
83878
84129
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
84130
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
83879
84131
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
83880
84132
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
83881
84133
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -84663,6 +84915,7 @@ export namespace Prisma {
|
|
|
84663
84915
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
84664
84916
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
84665
84917
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
84918
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
84666
84919
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
84667
84920
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
84668
84921
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -84723,6 +84976,7 @@ export namespace Prisma {
|
|
|
84723
84976
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
84724
84977
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
84725
84978
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
84979
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
84726
84980
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
84727
84981
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
84728
84982
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -84821,6 +85075,7 @@ export namespace Prisma {
|
|
|
84821
85075
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
84822
85076
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
84823
85077
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
85078
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
84824
85079
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
84825
85080
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
84826
85081
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -84881,6 +85136,7 @@ export namespace Prisma {
|
|
|
84881
85136
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
84882
85137
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
84883
85138
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
85139
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
84884
85140
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
84885
85141
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
84886
85142
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -85233,6 +85489,7 @@ export namespace Prisma {
|
|
|
85233
85489
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
85234
85490
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
85235
85491
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
85492
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
85236
85493
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
85237
85494
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
85238
85495
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -85293,6 +85550,7 @@ export namespace Prisma {
|
|
|
85293
85550
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
85294
85551
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
85295
85552
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
85553
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
85296
85554
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
85297
85555
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
85298
85556
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -85403,6 +85661,7 @@ export namespace Prisma {
|
|
|
85403
85661
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
85404
85662
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
85405
85663
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
85664
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
85406
85665
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
85407
85666
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
85408
85667
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -85463,6 +85722,7 @@ export namespace Prisma {
|
|
|
85463
85722
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
85464
85723
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
85465
85724
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
85725
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
85466
85726
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
85467
85727
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
85468
85728
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -86447,6 +86707,7 @@ export namespace Prisma {
|
|
|
86447
86707
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
86448
86708
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
86449
86709
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
86710
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
86450
86711
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
86451
86712
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
86452
86713
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -86507,6 +86768,7 @@ export namespace Prisma {
|
|
|
86507
86768
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
86508
86769
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
86509
86770
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
86771
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
86510
86772
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
86511
86773
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
86512
86774
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -86583,6 +86845,7 @@ export namespace Prisma {
|
|
|
86583
86845
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
86584
86846
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
86585
86847
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
86848
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
86586
86849
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
86587
86850
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
86588
86851
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -86643,6 +86906,7 @@ export namespace Prisma {
|
|
|
86643
86906
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
86644
86907
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
86645
86908
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
86909
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
86646
86910
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
86647
86911
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
86648
86912
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -86702,6 +86966,7 @@ export namespace Prisma {
|
|
|
86702
86966
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
86703
86967
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
86704
86968
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
86969
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
86705
86970
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
86706
86971
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
86707
86972
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -86762,6 +87027,7 @@ export namespace Prisma {
|
|
|
86762
87027
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
86763
87028
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
86764
87029
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
87030
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
86765
87031
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
86766
87032
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
86767
87033
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -86885,6 +87151,7 @@ export namespace Prisma {
|
|
|
86885
87151
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
86886
87152
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
86887
87153
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
87154
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
86888
87155
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
86889
87156
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
86890
87157
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -86945,6 +87212,7 @@ export namespace Prisma {
|
|
|
86945
87212
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
86946
87213
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
86947
87214
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
87215
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
86948
87216
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
86949
87217
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
86950
87218
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -87997,6 +88265,7 @@ export namespace Prisma {
|
|
|
87997
88265
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
87998
88266
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
87999
88267
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
88268
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
88000
88269
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
88001
88270
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
88002
88271
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -88057,6 +88326,7 @@ export namespace Prisma {
|
|
|
88057
88326
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
88058
88327
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
88059
88328
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
88329
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
88060
88330
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
88061
88331
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
88062
88332
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -88389,6 +88659,7 @@ export namespace Prisma {
|
|
|
88389
88659
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
88390
88660
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
88391
88661
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
88662
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
88392
88663
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
88393
88664
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
88394
88665
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -88449,6 +88720,7 @@ export namespace Prisma {
|
|
|
88449
88720
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
88450
88721
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
88451
88722
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
88723
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
88452
88724
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
88453
88725
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
88454
88726
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -88700,6 +88972,7 @@ export namespace Prisma {
|
|
|
88700
88972
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
88701
88973
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
88702
88974
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
88975
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
88703
88976
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
88704
88977
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
88705
88978
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -88760,6 +89033,7 @@ export namespace Prisma {
|
|
|
88760
89033
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
88761
89034
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
88762
89035
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
89036
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
88763
89037
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
88764
89038
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
88765
89039
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -88836,6 +89110,7 @@ export namespace Prisma {
|
|
|
88836
89110
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
88837
89111
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
88838
89112
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
89113
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
88839
89114
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
88840
89115
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
88841
89116
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -88896,6 +89171,7 @@ export namespace Prisma {
|
|
|
88896
89171
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
88897
89172
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
88898
89173
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
89174
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
88899
89175
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
88900
89176
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
88901
89177
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -89432,6 +89708,7 @@ export namespace Prisma {
|
|
|
89432
89708
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
89433
89709
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
89434
89710
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
89711
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
89435
89712
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
89436
89713
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
89437
89714
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -89492,6 +89769,7 @@ export namespace Prisma {
|
|
|
89492
89769
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
89493
89770
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
89494
89771
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
89772
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
89495
89773
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
89496
89774
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
89497
89775
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -89557,6 +89835,7 @@ export namespace Prisma {
|
|
|
89557
89835
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
89558
89836
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
89559
89837
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
89838
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
89560
89839
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
89561
89840
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
89562
89841
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -89617,6 +89896,7 @@ export namespace Prisma {
|
|
|
89617
89896
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
89618
89897
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
89619
89898
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
89899
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
89620
89900
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
89621
89901
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
89622
89902
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -90255,6 +90535,7 @@ export namespace Prisma {
|
|
|
90255
90535
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
90256
90536
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
90257
90537
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
90538
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
90258
90539
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
90259
90540
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
90260
90541
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -90315,6 +90596,7 @@ export namespace Prisma {
|
|
|
90315
90596
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
90316
90597
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
90317
90598
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
90599
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
90318
90600
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
90319
90601
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
90320
90602
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -90386,6 +90668,7 @@ export namespace Prisma {
|
|
|
90386
90668
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
90387
90669
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
90388
90670
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
90671
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
90389
90672
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
90390
90673
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
90391
90674
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -90446,6 +90729,7 @@ export namespace Prisma {
|
|
|
90446
90729
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
90447
90730
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
90448
90731
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
90732
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
90449
90733
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
90450
90734
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
90451
90735
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -91231,11 +91515,13 @@ export namespace Prisma {
|
|
|
91231
91515
|
title?: string | null
|
|
91232
91516
|
role_type?: string | null
|
|
91233
91517
|
work_arrangement?: string | null
|
|
91518
|
+
employment_type?: string | null
|
|
91234
91519
|
location?: string | null
|
|
91235
91520
|
experience_min?: string | null
|
|
91236
91521
|
reporting?: string | null
|
|
91237
91522
|
comp_range?: string | null
|
|
91238
91523
|
comp_benchmark?: string | null
|
|
91524
|
+
budget?: string | null
|
|
91239
91525
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
91240
91526
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
91241
91527
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -91251,6 +91537,7 @@ export namespace Prisma {
|
|
|
91251
91537
|
updated_at?: Date | string
|
|
91252
91538
|
is_active?: boolean
|
|
91253
91539
|
organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
|
|
91540
|
+
hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
|
|
91254
91541
|
creator: UserCreateNestedOneWithoutCreated_job_profilesInput
|
|
91255
91542
|
assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
|
|
91256
91543
|
}
|
|
@@ -91258,17 +91545,20 @@ export namespace Prisma {
|
|
|
91258
91545
|
export type JobProfileUncheckedCreateWithoutJob_descriptionsInput = {
|
|
91259
91546
|
id?: string
|
|
91260
91547
|
organisation_id: string
|
|
91548
|
+
hiring_manager_id?: string | null
|
|
91261
91549
|
created_by: string
|
|
91262
91550
|
assigned_to?: string | null
|
|
91263
91551
|
status?: $Enums.JobProfileStatus
|
|
91264
91552
|
title?: string | null
|
|
91265
91553
|
role_type?: string | null
|
|
91266
91554
|
work_arrangement?: string | null
|
|
91555
|
+
employment_type?: string | null
|
|
91267
91556
|
location?: string | null
|
|
91268
91557
|
experience_min?: string | null
|
|
91269
91558
|
reporting?: string | null
|
|
91270
91559
|
comp_range?: string | null
|
|
91271
91560
|
comp_benchmark?: string | null
|
|
91561
|
+
budget?: string | null
|
|
91272
91562
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
91273
91563
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
91274
91564
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -92030,6 +92320,7 @@ export namespace Prisma {
|
|
|
92030
92320
|
candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
|
|
92031
92321
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
92032
92322
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
92323
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
92033
92324
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
92034
92325
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
92035
92326
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -92090,6 +92381,7 @@ export namespace Prisma {
|
|
|
92090
92381
|
candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
|
|
92091
92382
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
92092
92383
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
92384
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
92093
92385
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
92094
92386
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
92095
92387
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -92155,6 +92447,7 @@ export namespace Prisma {
|
|
|
92155
92447
|
candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
|
|
92156
92448
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
92157
92449
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
92450
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
92158
92451
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
92159
92452
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
92160
92453
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -92215,6 +92508,7 @@ export namespace Prisma {
|
|
|
92215
92508
|
candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
|
|
92216
92509
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
92217
92510
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
92511
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
92218
92512
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
92219
92513
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
92220
92514
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -92337,11 +92631,13 @@ export namespace Prisma {
|
|
|
92337
92631
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92338
92632
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92339
92633
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92634
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92340
92635
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92341
92636
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92342
92637
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92343
92638
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92344
92639
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92640
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92345
92641
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
92346
92642
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
92347
92643
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -92357,6 +92653,7 @@ export namespace Prisma {
|
|
|
92357
92653
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
92358
92654
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
92359
92655
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
|
|
92656
|
+
hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
|
|
92360
92657
|
creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
|
|
92361
92658
|
assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
|
|
92362
92659
|
}
|
|
@@ -92364,17 +92661,20 @@ export namespace Prisma {
|
|
|
92364
92661
|
export type JobProfileUncheckedUpdateWithoutJob_descriptionsInput = {
|
|
92365
92662
|
id?: StringFieldUpdateOperationsInput | string
|
|
92366
92663
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
92664
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92367
92665
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
92368
92666
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92369
92667
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
92370
92668
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92371
92669
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92372
92670
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92671
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92373
92672
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92374
92673
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92375
92674
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92376
92675
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92377
92676
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92677
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92378
92678
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
92379
92679
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
92380
92680
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -92840,6 +93140,7 @@ export namespace Prisma {
|
|
|
92840
93140
|
candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
|
|
92841
93141
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
92842
93142
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
93143
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
92843
93144
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
92844
93145
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
92845
93146
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -92900,6 +93201,7 @@ export namespace Prisma {
|
|
|
92900
93201
|
candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
92901
93202
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
92902
93203
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
93204
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
92903
93205
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
92904
93206
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
92905
93207
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -93219,6 +93521,133 @@ export namespace Prisma {
|
|
|
93219
93521
|
create: XOR<OrganisationCreateWithoutJob_profilesInput, OrganisationUncheckedCreateWithoutJob_profilesInput>
|
|
93220
93522
|
}
|
|
93221
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
|
+
|
|
93222
93651
|
export type UserCreateWithoutCreated_job_profilesInput = {
|
|
93223
93652
|
id?: string
|
|
93224
93653
|
email: string
|
|
@@ -93258,6 +93687,7 @@ export namespace Prisma {
|
|
|
93258
93687
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
93259
93688
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
93260
93689
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
93690
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
93261
93691
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
93262
93692
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
93263
93693
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -93318,6 +93748,7 @@ export namespace Prisma {
|
|
|
93318
93748
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
93319
93749
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
93320
93750
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
93751
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
93321
93752
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
93322
93753
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
93323
93754
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -93383,6 +93814,7 @@ export namespace Prisma {
|
|
|
93383
93814
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
93384
93815
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
93385
93816
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
93817
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
93386
93818
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
93387
93819
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
93388
93820
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -93443,6 +93875,7 @@ export namespace Prisma {
|
|
|
93443
93875
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
93444
93876
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
93445
93877
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
93878
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
93446
93879
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
93447
93880
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
93448
93881
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -93632,6 +94065,139 @@ export namespace Prisma {
|
|
|
93632
94065
|
assessments?: AssessmentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
93633
94066
|
}
|
|
93634
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
|
+
|
|
93635
94201
|
export type UserUpsertWithoutCreated_job_profilesInput = {
|
|
93636
94202
|
update: XOR<UserUpdateWithoutCreated_job_profilesInput, UserUncheckedUpdateWithoutCreated_job_profilesInput>
|
|
93637
94203
|
create: XOR<UserCreateWithoutCreated_job_profilesInput, UserUncheckedCreateWithoutCreated_job_profilesInput>
|
|
@@ -93682,6 +94248,7 @@ export namespace Prisma {
|
|
|
93682
94248
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
93683
94249
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
93684
94250
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
94251
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
93685
94252
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
93686
94253
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
93687
94254
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -93742,6 +94309,7 @@ export namespace Prisma {
|
|
|
93742
94309
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
93743
94310
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
93744
94311
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
94312
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
93745
94313
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
93746
94314
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
93747
94315
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -93813,6 +94381,7 @@ export namespace Prisma {
|
|
|
93813
94381
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
93814
94382
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
93815
94383
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
94384
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
93816
94385
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
93817
94386
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
93818
94387
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -93873,6 +94442,7 @@ export namespace Prisma {
|
|
|
93873
94442
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
93874
94443
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
93875
94444
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
94445
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
93876
94446
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
93877
94447
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
93878
94448
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -94150,6 +94720,7 @@ export namespace Prisma {
|
|
|
94150
94720
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
94151
94721
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
94152
94722
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
94723
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
94153
94724
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
94154
94725
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
94155
94726
|
candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
|
|
@@ -94210,6 +94781,7 @@ export namespace Prisma {
|
|
|
94210
94781
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
94211
94782
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
94212
94783
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
94784
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
94213
94785
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
94214
94786
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
94215
94787
|
candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
|
|
@@ -94275,6 +94847,7 @@ export namespace Prisma {
|
|
|
94275
94847
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
94276
94848
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
94277
94849
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
94850
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
94278
94851
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
94279
94852
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
94280
94853
|
candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
|
|
@@ -94335,6 +94908,7 @@ export namespace Prisma {
|
|
|
94335
94908
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
94336
94909
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
94337
94910
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
94911
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
94338
94912
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
94339
94913
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
94340
94914
|
candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
|
|
@@ -94411,6 +94985,7 @@ export namespace Prisma {
|
|
|
94411
94985
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
94412
94986
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
94413
94987
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
94988
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
94414
94989
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
94415
94990
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
94416
94991
|
candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
|
|
@@ -94471,6 +95046,7 @@ export namespace Prisma {
|
|
|
94471
95046
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
94472
95047
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
94473
95048
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
95049
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
94474
95050
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
94475
95051
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
94476
95052
|
candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
|
|
@@ -94542,6 +95118,7 @@ export namespace Prisma {
|
|
|
94542
95118
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
94543
95119
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
94544
95120
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
95121
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
94545
95122
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
94546
95123
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
94547
95124
|
candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
|
|
@@ -94602,6 +95179,7 @@ export namespace Prisma {
|
|
|
94602
95179
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
94603
95180
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
94604
95181
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
95182
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
94605
95183
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
94606
95184
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
94607
95185
|
candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
|
|
@@ -94788,6 +95366,7 @@ export namespace Prisma {
|
|
|
94788
95366
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
94789
95367
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
94790
95368
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
95369
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
94791
95370
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
94792
95371
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
94793
95372
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -94848,6 +95427,7 @@ export namespace Prisma {
|
|
|
94848
95427
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
94849
95428
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
94850
95429
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
95430
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
94851
95431
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
94852
95432
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
94853
95433
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -95430,6 +96010,7 @@ export namespace Prisma {
|
|
|
95430
96010
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
95431
96011
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
95432
96012
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
96013
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
95433
96014
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
95434
96015
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
95435
96016
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -95490,6 +96071,7 @@ export namespace Prisma {
|
|
|
95490
96071
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
95491
96072
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
95492
96073
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
96074
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
95493
96075
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
95494
96076
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
95495
96077
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -95953,6 +96535,7 @@ export namespace Prisma {
|
|
|
95953
96535
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
95954
96536
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
95955
96537
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
96538
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
95956
96539
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
95957
96540
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
95958
96541
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -96013,6 +96596,7 @@ export namespace Prisma {
|
|
|
96013
96596
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
96014
96597
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
96015
96598
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
96599
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
96016
96600
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
96017
96601
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
96018
96602
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -96223,11 +96807,13 @@ export namespace Prisma {
|
|
|
96223
96807
|
title?: string | null
|
|
96224
96808
|
role_type?: string | null
|
|
96225
96809
|
work_arrangement?: string | null
|
|
96810
|
+
employment_type?: string | null
|
|
96226
96811
|
location?: string | null
|
|
96227
96812
|
experience_min?: string | null
|
|
96228
96813
|
reporting?: string | null
|
|
96229
96814
|
comp_range?: string | null
|
|
96230
96815
|
comp_benchmark?: string | null
|
|
96816
|
+
budget?: string | null
|
|
96231
96817
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
96232
96818
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
96233
96819
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -96242,6 +96828,7 @@ export namespace Prisma {
|
|
|
96242
96828
|
created_at?: Date | string
|
|
96243
96829
|
updated_at?: Date | string
|
|
96244
96830
|
is_active?: boolean
|
|
96831
|
+
hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
|
|
96245
96832
|
creator: UserCreateNestedOneWithoutCreated_job_profilesInput
|
|
96246
96833
|
assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
|
|
96247
96834
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
|
|
@@ -96249,17 +96836,20 @@ export namespace Prisma {
|
|
|
96249
96836
|
|
|
96250
96837
|
export type JobProfileUncheckedCreateWithoutOrganisationInput = {
|
|
96251
96838
|
id?: string
|
|
96839
|
+
hiring_manager_id?: string | null
|
|
96252
96840
|
created_by: string
|
|
96253
96841
|
assigned_to?: string | null
|
|
96254
96842
|
status?: $Enums.JobProfileStatus
|
|
96255
96843
|
title?: string | null
|
|
96256
96844
|
role_type?: string | null
|
|
96257
96845
|
work_arrangement?: string | null
|
|
96846
|
+
employment_type?: string | null
|
|
96258
96847
|
location?: string | null
|
|
96259
96848
|
experience_min?: string | null
|
|
96260
96849
|
reporting?: string | null
|
|
96261
96850
|
comp_range?: string | null
|
|
96262
96851
|
comp_benchmark?: string | null
|
|
96852
|
+
budget?: string | null
|
|
96263
96853
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
96264
96854
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
96265
96855
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -97075,17 +97665,20 @@ export namespace Prisma {
|
|
|
97075
97665
|
NOT?: JobProfileScalarWhereInput | JobProfileScalarWhereInput[]
|
|
97076
97666
|
id?: StringFilter<"JobProfile"> | string
|
|
97077
97667
|
organisation_id?: StringFilter<"JobProfile"> | string
|
|
97668
|
+
hiring_manager_id?: StringNullableFilter<"JobProfile"> | string | null
|
|
97078
97669
|
created_by?: StringFilter<"JobProfile"> | string
|
|
97079
97670
|
assigned_to?: StringNullableFilter<"JobProfile"> | string | null
|
|
97080
97671
|
status?: EnumJobProfileStatusFilter<"JobProfile"> | $Enums.JobProfileStatus
|
|
97081
97672
|
title?: StringNullableFilter<"JobProfile"> | string | null
|
|
97082
97673
|
role_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
97083
97674
|
work_arrangement?: StringNullableFilter<"JobProfile"> | string | null
|
|
97675
|
+
employment_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
97084
97676
|
location?: StringNullableFilter<"JobProfile"> | string | null
|
|
97085
97677
|
experience_min?: StringNullableFilter<"JobProfile"> | string | null
|
|
97086
97678
|
reporting?: StringNullableFilter<"JobProfile"> | string | null
|
|
97087
97679
|
comp_range?: StringNullableFilter<"JobProfile"> | string | null
|
|
97088
97680
|
comp_benchmark?: StringNullableFilter<"JobProfile"> | string | null
|
|
97681
|
+
budget?: StringNullableFilter<"JobProfile"> | string | null
|
|
97089
97682
|
responsibilities?: JsonNullableFilter<"JobProfile">
|
|
97090
97683
|
deliverables?: JsonNullableFilter<"JobProfile">
|
|
97091
97684
|
must_have_skills?: JsonNullableFilter<"JobProfile">
|
|
@@ -97426,6 +98019,7 @@ export namespace Prisma {
|
|
|
97426
98019
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
97427
98020
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
97428
98021
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
98022
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
97429
98023
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
97430
98024
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
97431
98025
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -97486,6 +98080,7 @@ export namespace Prisma {
|
|
|
97486
98080
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
97487
98081
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
97488
98082
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
98083
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
97489
98084
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
97490
98085
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
97491
98086
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -97593,6 +98188,7 @@ export namespace Prisma {
|
|
|
97593
98188
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
97594
98189
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
97595
98190
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
98191
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
97596
98192
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
97597
98193
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
97598
98194
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -97653,6 +98249,7 @@ export namespace Prisma {
|
|
|
97653
98249
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
97654
98250
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
97655
98251
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
98252
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
97656
98253
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
97657
98254
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
97658
98255
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -97751,6 +98348,7 @@ export namespace Prisma {
|
|
|
97751
98348
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
97752
98349
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
97753
98350
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
98351
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
97754
98352
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
97755
98353
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
97756
98354
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -97811,6 +98409,7 @@ export namespace Prisma {
|
|
|
97811
98409
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
97812
98410
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
97813
98411
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
98412
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
97814
98413
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
97815
98414
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
97816
98415
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -98049,6 +98648,7 @@ export namespace Prisma {
|
|
|
98049
98648
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
98050
98649
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
98051
98650
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
98651
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
98052
98652
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
98053
98653
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
98054
98654
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -98109,6 +98709,7 @@ export namespace Prisma {
|
|
|
98109
98709
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
98110
98710
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
98111
98711
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
98712
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
98112
98713
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
98113
98714
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
98114
98715
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -98316,6 +98917,7 @@ export namespace Prisma {
|
|
|
98316
98917
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
98317
98918
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
98318
98919
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
98920
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
98319
98921
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
98320
98922
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
98321
98923
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -98376,6 +98978,7 @@ export namespace Prisma {
|
|
|
98376
98978
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
98377
98979
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
98378
98980
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
98981
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
98379
98982
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
98380
98983
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
98381
98984
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -98985,6 +99588,7 @@ export namespace Prisma {
|
|
|
98985
99588
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
98986
99589
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
98987
99590
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
99591
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
98988
99592
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
98989
99593
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
98990
99594
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -99045,6 +99649,7 @@ export namespace Prisma {
|
|
|
99045
99649
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
99046
99650
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
99047
99651
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
99652
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
99048
99653
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
99049
99654
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
99050
99655
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -100670,88 +101275,164 @@ export namespace Prisma {
|
|
|
100670
101275
|
integration_job_syncs?: IntegrationJobSyncUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
100671
101276
|
}
|
|
100672
101277
|
|
|
100673
|
-
export type JobDescriptionCreateOrConnectWithoutRecruitersInput = {
|
|
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
|
|
101292
|
+
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
101293
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
101294
|
+
created_at?: Date | string
|
|
101295
|
+
updated_at?: Date | string
|
|
101296
|
+
created_by: string
|
|
101297
|
+
updated_by: string
|
|
101298
|
+
is_active?: boolean
|
|
101299
|
+
openings?: number
|
|
101300
|
+
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
101301
|
+
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
101302
|
+
applications?: ApplicationCreateNestedManyWithoutJob_descriptionInput
|
|
101303
|
+
interviews?: InterviewCreateNestedManyWithoutJob_descriptionInput
|
|
101304
|
+
assignments?: AssignmentCreateNestedManyWithoutJob_descriptionInput
|
|
101305
|
+
fit_check?: FitCheckCreateNestedManyWithoutJob_descriptionInput
|
|
101306
|
+
job_description_data?: JobDescriptionDataCreateNestedManyWithoutJobDescriptionInput
|
|
101307
|
+
evaluationPlan?: EvaluationPlanCreateNestedManyWithoutJobDescriptionInput
|
|
101308
|
+
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutJobDescriptionInput
|
|
101309
|
+
assignment_library?: AssignmentLibraryCreateNestedManyWithoutJobDescriptionInput
|
|
101310
|
+
approvals?: ApprovalCreateNestedManyWithoutJob_descriptionInput
|
|
101311
|
+
resumes?: ResumeCreateNestedManyWithoutJob_descriptionInput
|
|
101312
|
+
budget?: BudgetCreateNestedOneWithoutJob_descriptionInput
|
|
101313
|
+
recruiters?: UserCreateNestedManyWithoutJob_descriptionInput
|
|
101314
|
+
transcripts?: TranscriptCreateNestedManyWithoutJob_descriptionInput
|
|
101315
|
+
integration_job_syncs?: IntegrationJobSyncCreateNestedManyWithoutJob_descriptionInput
|
|
101316
|
+
}
|
|
101317
|
+
|
|
101318
|
+
export type JobDescriptionUncheckedCreateWithoutHiring_managerInput = {
|
|
101319
|
+
id?: string
|
|
101320
|
+
organisation_id: string
|
|
101321
|
+
status?: $Enums.JobDescriptionStatus
|
|
101322
|
+
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
101323
|
+
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
101324
|
+
uploaded_job_description_path?: string | null
|
|
101325
|
+
is_plan_published?: boolean
|
|
101326
|
+
is_posted?: boolean
|
|
101327
|
+
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
101328
|
+
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
101329
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
101330
|
+
created_at?: Date | string
|
|
101331
|
+
updated_at?: Date | string
|
|
101332
|
+
created_by: string
|
|
101333
|
+
updated_by: string
|
|
101334
|
+
is_active?: boolean
|
|
101335
|
+
openings?: number
|
|
101336
|
+
job_profile_id?: string | null
|
|
101337
|
+
applications?: ApplicationUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101338
|
+
interviews?: InterviewUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101339
|
+
assignments?: AssignmentUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101340
|
+
fit_check?: FitCheckUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101341
|
+
job_description_data?: JobDescriptionDataUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
101342
|
+
evaluationPlan?: EvaluationPlanUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
101343
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
101344
|
+
assignment_library?: AssignmentLibraryUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
101345
|
+
approvals?: ApprovalUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101346
|
+
resumes?: ResumeUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101347
|
+
budget?: BudgetUncheckedCreateNestedOneWithoutJob_descriptionInput
|
|
101348
|
+
recruiters?: UserUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101349
|
+
transcripts?: TranscriptUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101350
|
+
integration_job_syncs?: IntegrationJobSyncUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101351
|
+
}
|
|
101352
|
+
|
|
101353
|
+
export type JobDescriptionCreateOrConnectWithoutHiring_managerInput = {
|
|
100674
101354
|
where: JobDescriptionWhereUniqueInput
|
|
100675
|
-
create: XOR<
|
|
101355
|
+
create: XOR<JobDescriptionCreateWithoutHiring_managerInput, JobDescriptionUncheckedCreateWithoutHiring_managerInput>
|
|
100676
101356
|
}
|
|
100677
101357
|
|
|
100678
|
-
export type
|
|
101358
|
+
export type JobDescriptionCreateManyHiring_managerInputEnvelope = {
|
|
101359
|
+
data: JobDescriptionCreateManyHiring_managerInput | JobDescriptionCreateManyHiring_managerInput[]
|
|
101360
|
+
skipDuplicates?: boolean
|
|
101361
|
+
}
|
|
101362
|
+
|
|
101363
|
+
export type JobProfileCreateWithoutHiring_managerInput = {
|
|
100679
101364
|
id?: string
|
|
100680
|
-
status?: $Enums.
|
|
100681
|
-
|
|
100682
|
-
|
|
100683
|
-
|
|
100684
|
-
|
|
100685
|
-
|
|
100686
|
-
|
|
100687
|
-
|
|
100688
|
-
|
|
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
|
|
100689
101387
|
created_at?: Date | string
|
|
100690
101388
|
updated_at?: Date | string
|
|
100691
|
-
created_by: string
|
|
100692
|
-
updated_by: string
|
|
100693
101389
|
is_active?: boolean
|
|
100694
|
-
|
|
100695
|
-
|
|
100696
|
-
|
|
100697
|
-
|
|
100698
|
-
interviews?: InterviewCreateNestedManyWithoutJob_descriptionInput
|
|
100699
|
-
assignments?: AssignmentCreateNestedManyWithoutJob_descriptionInput
|
|
100700
|
-
fit_check?: FitCheckCreateNestedManyWithoutJob_descriptionInput
|
|
100701
|
-
job_description_data?: JobDescriptionDataCreateNestedManyWithoutJobDescriptionInput
|
|
100702
|
-
evaluationPlan?: EvaluationPlanCreateNestedManyWithoutJobDescriptionInput
|
|
100703
|
-
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutJobDescriptionInput
|
|
100704
|
-
assignment_library?: AssignmentLibraryCreateNestedManyWithoutJobDescriptionInput
|
|
100705
|
-
approvals?: ApprovalCreateNestedManyWithoutJob_descriptionInput
|
|
100706
|
-
resumes?: ResumeCreateNestedManyWithoutJob_descriptionInput
|
|
100707
|
-
budget?: BudgetCreateNestedOneWithoutJob_descriptionInput
|
|
100708
|
-
recruiters?: UserCreateNestedManyWithoutJob_descriptionInput
|
|
100709
|
-
transcripts?: TranscriptCreateNestedManyWithoutJob_descriptionInput
|
|
100710
|
-
integration_job_syncs?: IntegrationJobSyncCreateNestedManyWithoutJob_descriptionInput
|
|
101390
|
+
organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
|
|
101391
|
+
creator: UserCreateNestedOneWithoutCreated_job_profilesInput
|
|
101392
|
+
assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
|
|
101393
|
+
job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
|
|
100711
101394
|
}
|
|
100712
101395
|
|
|
100713
|
-
export type
|
|
101396
|
+
export type JobProfileUncheckedCreateWithoutHiring_managerInput = {
|
|
100714
101397
|
id?: string
|
|
100715
101398
|
organisation_id: string
|
|
100716
|
-
|
|
100717
|
-
|
|
100718
|
-
|
|
100719
|
-
|
|
100720
|
-
|
|
100721
|
-
|
|
100722
|
-
|
|
100723
|
-
|
|
100724
|
-
|
|
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
|
|
100725
101423
|
created_at?: Date | string
|
|
100726
101424
|
updated_at?: Date | string
|
|
100727
|
-
created_by: string
|
|
100728
|
-
updated_by: string
|
|
100729
101425
|
is_active?: boolean
|
|
100730
|
-
|
|
100731
|
-
job_profile_id?: string | null
|
|
100732
|
-
applications?: ApplicationUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
100733
|
-
interviews?: InterviewUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
100734
|
-
assignments?: AssignmentUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
100735
|
-
fit_check?: FitCheckUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
100736
|
-
job_description_data?: JobDescriptionDataUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
100737
|
-
evaluationPlan?: EvaluationPlanUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
100738
|
-
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
100739
|
-
assignment_library?: AssignmentLibraryUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
100740
|
-
approvals?: ApprovalUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
100741
|
-
resumes?: ResumeUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
100742
|
-
budget?: BudgetUncheckedCreateNestedOneWithoutJob_descriptionInput
|
|
100743
|
-
recruiters?: UserUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
100744
|
-
transcripts?: TranscriptUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
100745
|
-
integration_job_syncs?: IntegrationJobSyncUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101426
|
+
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutJob_profileInput
|
|
100746
101427
|
}
|
|
100747
101428
|
|
|
100748
|
-
export type
|
|
100749
|
-
where:
|
|
100750
|
-
create: XOR<
|
|
101429
|
+
export type JobProfileCreateOrConnectWithoutHiring_managerInput = {
|
|
101430
|
+
where: JobProfileWhereUniqueInput
|
|
101431
|
+
create: XOR<JobProfileCreateWithoutHiring_managerInput, JobProfileUncheckedCreateWithoutHiring_managerInput>
|
|
100751
101432
|
}
|
|
100752
101433
|
|
|
100753
|
-
export type
|
|
100754
|
-
data:
|
|
101434
|
+
export type JobProfileCreateManyHiring_managerInputEnvelope = {
|
|
101435
|
+
data: JobProfileCreateManyHiring_managerInput | JobProfileCreateManyHiring_managerInput[]
|
|
100755
101436
|
skipDuplicates?: boolean
|
|
100756
101437
|
}
|
|
100757
101438
|
|
|
@@ -101687,11 +102368,13 @@ export namespace Prisma {
|
|
|
101687
102368
|
title?: string | null
|
|
101688
102369
|
role_type?: string | null
|
|
101689
102370
|
work_arrangement?: string | null
|
|
102371
|
+
employment_type?: string | null
|
|
101690
102372
|
location?: string | null
|
|
101691
102373
|
experience_min?: string | null
|
|
101692
102374
|
reporting?: string | null
|
|
101693
102375
|
comp_range?: string | null
|
|
101694
102376
|
comp_benchmark?: string | null
|
|
102377
|
+
budget?: string | null
|
|
101695
102378
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
101696
102379
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
101697
102380
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -101707,6 +102390,7 @@ export namespace Prisma {
|
|
|
101707
102390
|
updated_at?: Date | string
|
|
101708
102391
|
is_active?: boolean
|
|
101709
102392
|
organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
|
|
102393
|
+
hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
|
|
101710
102394
|
assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
|
|
101711
102395
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
|
|
101712
102396
|
}
|
|
@@ -101714,16 +102398,19 @@ export namespace Prisma {
|
|
|
101714
102398
|
export type JobProfileUncheckedCreateWithoutCreatorInput = {
|
|
101715
102399
|
id?: string
|
|
101716
102400
|
organisation_id: string
|
|
102401
|
+
hiring_manager_id?: string | null
|
|
101717
102402
|
assigned_to?: string | null
|
|
101718
102403
|
status?: $Enums.JobProfileStatus
|
|
101719
102404
|
title?: string | null
|
|
101720
102405
|
role_type?: string | null
|
|
101721
102406
|
work_arrangement?: string | null
|
|
102407
|
+
employment_type?: string | null
|
|
101722
102408
|
location?: string | null
|
|
101723
102409
|
experience_min?: string | null
|
|
101724
102410
|
reporting?: string | null
|
|
101725
102411
|
comp_range?: string | null
|
|
101726
102412
|
comp_benchmark?: string | null
|
|
102413
|
+
budget?: string | null
|
|
101727
102414
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
101728
102415
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
101729
102416
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -101757,11 +102444,13 @@ export namespace Prisma {
|
|
|
101757
102444
|
title?: string | null
|
|
101758
102445
|
role_type?: string | null
|
|
101759
102446
|
work_arrangement?: string | null
|
|
102447
|
+
employment_type?: string | null
|
|
101760
102448
|
location?: string | null
|
|
101761
102449
|
experience_min?: string | null
|
|
101762
102450
|
reporting?: string | null
|
|
101763
102451
|
comp_range?: string | null
|
|
101764
102452
|
comp_benchmark?: string | null
|
|
102453
|
+
budget?: string | null
|
|
101765
102454
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
101766
102455
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
101767
102456
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -101777,6 +102466,7 @@ export namespace Prisma {
|
|
|
101777
102466
|
updated_at?: Date | string
|
|
101778
102467
|
is_active?: boolean
|
|
101779
102468
|
organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
|
|
102469
|
+
hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
|
|
101780
102470
|
creator: UserCreateNestedOneWithoutCreated_job_profilesInput
|
|
101781
102471
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
|
|
101782
102472
|
}
|
|
@@ -101784,16 +102474,19 @@ export namespace Prisma {
|
|
|
101784
102474
|
export type JobProfileUncheckedCreateWithoutAssigneeInput = {
|
|
101785
102475
|
id?: string
|
|
101786
102476
|
organisation_id: string
|
|
102477
|
+
hiring_manager_id?: string | null
|
|
101787
102478
|
created_by: string
|
|
101788
102479
|
status?: $Enums.JobProfileStatus
|
|
101789
102480
|
title?: string | null
|
|
101790
102481
|
role_type?: string | null
|
|
101791
102482
|
work_arrangement?: string | null
|
|
102483
|
+
employment_type?: string | null
|
|
101792
102484
|
location?: string | null
|
|
101793
102485
|
experience_min?: string | null
|
|
101794
102486
|
reporting?: string | null
|
|
101795
102487
|
comp_range?: string | null
|
|
101796
102488
|
comp_benchmark?: string | null
|
|
102489
|
+
budget?: string | null
|
|
101797
102490
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
101798
102491
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
101799
102492
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -102128,6 +102821,22 @@ export namespace Prisma {
|
|
|
102128
102821
|
data: XOR<JobDescriptionUpdateManyMutationInput, JobDescriptionUncheckedUpdateManyWithoutHiring_managerInput>
|
|
102129
102822
|
}
|
|
102130
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
|
+
|
|
102131
102840
|
export type ApprovalUpsertWithWhereUniqueWithoutUserInput = {
|
|
102132
102841
|
where: ApprovalWhereUniqueInput
|
|
102133
102842
|
update: XOR<ApprovalUpdateWithoutUserInput, ApprovalUncheckedUpdateWithoutUserInput>
|
|
@@ -102543,6 +103252,7 @@ export namespace Prisma {
|
|
|
102543
103252
|
candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
|
|
102544
103253
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
102545
103254
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
103255
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
102546
103256
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
102547
103257
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
102548
103258
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -102603,6 +103313,7 @@ export namespace Prisma {
|
|
|
102603
103313
|
candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
|
|
102604
103314
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
102605
103315
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
103316
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
102606
103317
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
102607
103318
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
102608
103319
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -102679,6 +103390,7 @@ export namespace Prisma {
|
|
|
102679
103390
|
candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
|
|
102680
103391
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
102681
103392
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
103393
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
102682
103394
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
102683
103395
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
102684
103396
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -102739,6 +103451,7 @@ export namespace Prisma {
|
|
|
102739
103451
|
candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
102740
103452
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
102741
103453
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
103454
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
102742
103455
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
102743
103456
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
102744
103457
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -102833,6 +103546,7 @@ export namespace Prisma {
|
|
|
102833
103546
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
102834
103547
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
102835
103548
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
103549
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
102836
103550
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
102837
103551
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
102838
103552
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -102893,6 +103607,7 @@ export namespace Prisma {
|
|
|
102893
103607
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
102894
103608
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
102895
103609
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
103610
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
102896
103611
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
102897
103612
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
102898
103613
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -105564,6 +106279,7 @@ export namespace Prisma {
|
|
|
105564
106279
|
candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
|
|
105565
106280
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
105566
106281
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
106282
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
105567
106283
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
105568
106284
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
105569
106285
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -105624,6 +106340,7 @@ export namespace Prisma {
|
|
|
105624
106340
|
candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
105625
106341
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
105626
106342
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
106343
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
105627
106344
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
105628
106345
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
105629
106346
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -105968,17 +106685,20 @@ export namespace Prisma {
|
|
|
105968
106685
|
|
|
105969
106686
|
export type JobProfileCreateManyOrganisationInput = {
|
|
105970
106687
|
id?: string
|
|
106688
|
+
hiring_manager_id?: string | null
|
|
105971
106689
|
created_by: string
|
|
105972
106690
|
assigned_to?: string | null
|
|
105973
106691
|
status?: $Enums.JobProfileStatus
|
|
105974
106692
|
title?: string | null
|
|
105975
106693
|
role_type?: string | null
|
|
105976
106694
|
work_arrangement?: string | null
|
|
106695
|
+
employment_type?: string | null
|
|
105977
106696
|
location?: string | null
|
|
105978
106697
|
experience_min?: string | null
|
|
105979
106698
|
reporting?: string | null
|
|
105980
106699
|
comp_range?: string | null
|
|
105981
106700
|
comp_benchmark?: string | null
|
|
106701
|
+
budget?: string | null
|
|
105982
106702
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
105983
106703
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
105984
106704
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -106288,6 +107008,7 @@ export namespace Prisma {
|
|
|
106288
107008
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
106289
107009
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
106290
107010
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
107011
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
106291
107012
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
106292
107013
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
106293
107014
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -106348,6 +107069,7 @@ export namespace Prisma {
|
|
|
106348
107069
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
106349
107070
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
106350
107071
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
107072
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
106351
107073
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
106352
107074
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
106353
107075
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -106604,11 +107326,13 @@ export namespace Prisma {
|
|
|
106604
107326
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106605
107327
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106606
107328
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107329
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106607
107330
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106608
107331
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106609
107332
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106610
107333
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106611
107334
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107335
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106612
107336
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
106613
107337
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
106614
107338
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -106623,6 +107347,7 @@ export namespace Prisma {
|
|
|
106623
107347
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106624
107348
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106625
107349
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
107350
|
+
hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
|
|
106626
107351
|
creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
|
|
106627
107352
|
assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
|
|
106628
107353
|
job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
|
|
@@ -106630,17 +107355,20 @@ export namespace Prisma {
|
|
|
106630
107355
|
|
|
106631
107356
|
export type JobProfileUncheckedUpdateWithoutOrganisationInput = {
|
|
106632
107357
|
id?: StringFieldUpdateOperationsInput | string
|
|
107358
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106633
107359
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
106634
107360
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106635
107361
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
106636
107362
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106637
107363
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106638
107364
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107365
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106639
107366
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106640
107367
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106641
107368
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106642
107369
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106643
107370
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107371
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106644
107372
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
106645
107373
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
106646
107374
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -106660,17 +107388,20 @@ export namespace Prisma {
|
|
|
106660
107388
|
|
|
106661
107389
|
export type JobProfileUncheckedUpdateManyWithoutOrganisationInput = {
|
|
106662
107390
|
id?: StringFieldUpdateOperationsInput | string
|
|
107391
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106663
107392
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
106664
107393
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106665
107394
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
106666
107395
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106667
107396
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106668
107397
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107398
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106669
107399
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106670
107400
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106671
107401
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106672
107402
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106673
107403
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107404
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106674
107405
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
106675
107406
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
106676
107407
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -108241,6 +108972,38 @@ export namespace Prisma {
|
|
|
108241
108972
|
job_profile_id?: string | null
|
|
108242
108973
|
}
|
|
108243
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
|
+
|
|
108244
109007
|
export type ApprovalCreateManyUserInput = {
|
|
108245
109008
|
id?: string
|
|
108246
109009
|
job_description_id: string
|
|
@@ -108571,16 +109334,19 @@ export namespace Prisma {
|
|
|
108571
109334
|
export type JobProfileCreateManyCreatorInput = {
|
|
108572
109335
|
id?: string
|
|
108573
109336
|
organisation_id: string
|
|
109337
|
+
hiring_manager_id?: string | null
|
|
108574
109338
|
assigned_to?: string | null
|
|
108575
109339
|
status?: $Enums.JobProfileStatus
|
|
108576
109340
|
title?: string | null
|
|
108577
109341
|
role_type?: string | null
|
|
108578
109342
|
work_arrangement?: string | null
|
|
109343
|
+
employment_type?: string | null
|
|
108579
109344
|
location?: string | null
|
|
108580
109345
|
experience_min?: string | null
|
|
108581
109346
|
reporting?: string | null
|
|
108582
109347
|
comp_range?: string | null
|
|
108583
109348
|
comp_benchmark?: string | null
|
|
109349
|
+
budget?: string | null
|
|
108584
109350
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
108585
109351
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
108586
109352
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -108600,16 +109366,19 @@ export namespace Prisma {
|
|
|
108600
109366
|
export type JobProfileCreateManyAssigneeInput = {
|
|
108601
109367
|
id?: string
|
|
108602
109368
|
organisation_id: string
|
|
109369
|
+
hiring_manager_id?: string | null
|
|
108603
109370
|
created_by: string
|
|
108604
109371
|
status?: $Enums.JobProfileStatus
|
|
108605
109372
|
title?: string | null
|
|
108606
109373
|
role_type?: string | null
|
|
108607
109374
|
work_arrangement?: string | null
|
|
109375
|
+
employment_type?: string | null
|
|
108608
109376
|
location?: string | null
|
|
108609
109377
|
experience_min?: string | null
|
|
108610
109378
|
reporting?: string | null
|
|
108611
109379
|
comp_range?: string | null
|
|
108612
109380
|
comp_benchmark?: string | null
|
|
109381
|
+
budget?: string | null
|
|
108613
109382
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
108614
109383
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
108615
109384
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -108931,6 +109700,104 @@ export namespace Prisma {
|
|
|
108931
109700
|
job_profile_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108932
109701
|
}
|
|
108933
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
|
+
|
|
108934
109801
|
export type ApprovalUpdateWithoutUserInput = {
|
|
108935
109802
|
id?: StringFieldUpdateOperationsInput | string
|
|
108936
109803
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -109968,11 +110835,13 @@ export namespace Prisma {
|
|
|
109968
110835
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109969
110836
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109970
110837
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110838
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109971
110839
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109972
110840
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109973
110841
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109974
110842
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109975
110843
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110844
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109976
110845
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
109977
110846
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
109978
110847
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -109988,6 +110857,7 @@ export namespace Prisma {
|
|
|
109988
110857
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109989
110858
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
109990
110859
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
|
|
110860
|
+
hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
|
|
109991
110861
|
assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
|
|
109992
110862
|
job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
|
|
109993
110863
|
}
|
|
@@ -109995,16 +110865,19 @@ export namespace Prisma {
|
|
|
109995
110865
|
export type JobProfileUncheckedUpdateWithoutCreatorInput = {
|
|
109996
110866
|
id?: StringFieldUpdateOperationsInput | string
|
|
109997
110867
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
110868
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109998
110869
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109999
110870
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
110000
110871
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110001
110872
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110002
110873
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110874
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110003
110875
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110004
110876
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110005
110877
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110006
110878
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110007
110879
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110880
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110008
110881
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
110009
110882
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
110010
110883
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -110025,16 +110898,19 @@ export namespace Prisma {
|
|
|
110025
110898
|
export type JobProfileUncheckedUpdateManyWithoutCreatorInput = {
|
|
110026
110899
|
id?: StringFieldUpdateOperationsInput | string
|
|
110027
110900
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
110901
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110028
110902
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110029
110903
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
110030
110904
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110031
110905
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110032
110906
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110907
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110033
110908
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110034
110909
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110035
110910
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110036
110911
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110037
110912
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110913
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110038
110914
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
110039
110915
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
110040
110916
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -110057,11 +110933,13 @@ export namespace Prisma {
|
|
|
110057
110933
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110058
110934
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110059
110935
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110936
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110060
110937
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110061
110938
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110062
110939
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110063
110940
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110064
110941
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110942
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110065
110943
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
110066
110944
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
110067
110945
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -110077,6 +110955,7 @@ export namespace Prisma {
|
|
|
110077
110955
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
110078
110956
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
110079
110957
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
|
|
110958
|
+
hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
|
|
110080
110959
|
creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
|
|
110081
110960
|
job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
|
|
110082
110961
|
}
|
|
@@ -110084,16 +110963,19 @@ export namespace Prisma {
|
|
|
110084
110963
|
export type JobProfileUncheckedUpdateWithoutAssigneeInput = {
|
|
110085
110964
|
id?: StringFieldUpdateOperationsInput | string
|
|
110086
110965
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
110966
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110087
110967
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
110088
110968
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
110089
110969
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110090
110970
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110091
110971
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110972
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110092
110973
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110093
110974
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110094
110975
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110095
110976
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110096
110977
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110978
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110097
110979
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
110098
110980
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
110099
110981
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -110114,16 +110996,19 @@ export namespace Prisma {
|
|
|
110114
110996
|
export type JobProfileUncheckedUpdateManyWithoutAssigneeInput = {
|
|
110115
110997
|
id?: StringFieldUpdateOperationsInput | string
|
|
110116
110998
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
110999
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110117
111000
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
110118
111001
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
110119
111002
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110120
111003
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110121
111004
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111005
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110122
111006
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110123
111007
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110124
111008
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110125
111009
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110126
111010
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111011
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110127
111012
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
110128
111013
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
110129
111014
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|