@adaptware/eagles-db 0.1.68 → 0.1.71
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 +7 -3
- package/client/index-browser.js +4 -0
- package/client/index.d.ts +1055 -66
- package/client/index.js +7 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +23 -16
- package/client/wasm.js +4 -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/organisation.prisma +10 -9
- 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
|
*/
|
|
@@ -43956,6 +44031,7 @@ export namespace Prisma {
|
|
|
43956
44031
|
phone: number
|
|
43957
44032
|
address: number
|
|
43958
44033
|
company_values: number
|
|
44034
|
+
allowed_email_domains: number
|
|
43959
44035
|
created_at: number
|
|
43960
44036
|
updated_at: number
|
|
43961
44037
|
created_by: number
|
|
@@ -44013,6 +44089,7 @@ export namespace Prisma {
|
|
|
44013
44089
|
phone?: true
|
|
44014
44090
|
address?: true
|
|
44015
44091
|
company_values?: true
|
|
44092
|
+
allowed_email_domains?: true
|
|
44016
44093
|
created_at?: true
|
|
44017
44094
|
updated_at?: true
|
|
44018
44095
|
created_by?: true
|
|
@@ -44105,6 +44182,7 @@ export namespace Prisma {
|
|
|
44105
44182
|
phone: string
|
|
44106
44183
|
address: string
|
|
44107
44184
|
company_values: JsonValue[]
|
|
44185
|
+
allowed_email_domains: string[]
|
|
44108
44186
|
created_at: Date
|
|
44109
44187
|
updated_at: Date
|
|
44110
44188
|
created_by: string
|
|
@@ -44141,6 +44219,7 @@ export namespace Prisma {
|
|
|
44141
44219
|
phone?: boolean
|
|
44142
44220
|
address?: boolean
|
|
44143
44221
|
company_values?: boolean
|
|
44222
|
+
allowed_email_domains?: boolean
|
|
44144
44223
|
created_at?: boolean
|
|
44145
44224
|
updated_at?: boolean
|
|
44146
44225
|
created_by?: boolean
|
|
@@ -44179,6 +44258,7 @@ export namespace Prisma {
|
|
|
44179
44258
|
phone?: boolean
|
|
44180
44259
|
address?: boolean
|
|
44181
44260
|
company_values?: boolean
|
|
44261
|
+
allowed_email_domains?: boolean
|
|
44182
44262
|
created_at?: boolean
|
|
44183
44263
|
updated_at?: boolean
|
|
44184
44264
|
created_by?: boolean
|
|
@@ -44198,6 +44278,7 @@ export namespace Prisma {
|
|
|
44198
44278
|
phone?: boolean
|
|
44199
44279
|
address?: boolean
|
|
44200
44280
|
company_values?: boolean
|
|
44281
|
+
allowed_email_domains?: boolean
|
|
44201
44282
|
created_at?: boolean
|
|
44202
44283
|
updated_at?: boolean
|
|
44203
44284
|
created_by?: boolean
|
|
@@ -44217,6 +44298,7 @@ export namespace Prisma {
|
|
|
44217
44298
|
phone?: boolean
|
|
44218
44299
|
address?: boolean
|
|
44219
44300
|
company_values?: boolean
|
|
44301
|
+
allowed_email_domains?: boolean
|
|
44220
44302
|
created_at?: boolean
|
|
44221
44303
|
updated_at?: boolean
|
|
44222
44304
|
created_by?: boolean
|
|
@@ -44226,7 +44308,7 @@ export namespace Prisma {
|
|
|
44226
44308
|
logo?: boolean
|
|
44227
44309
|
}
|
|
44228
44310
|
|
|
44229
|
-
export type OrganisationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "industry" | "about" | "website" | "size" | "phone" | "address" | "company_values" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "alias" | "logo", ExtArgs["result"]["organisation"]>
|
|
44311
|
+
export type OrganisationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "industry" | "about" | "website" | "size" | "phone" | "address" | "company_values" | "allowed_email_domains" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "alias" | "logo", ExtArgs["result"]["organisation"]>
|
|
44230
44312
|
export type OrganisationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
44231
44313
|
interviewers?: boolean | Organisation$interviewersArgs<ExtArgs>
|
|
44232
44314
|
applications?: boolean | Organisation$applicationsArgs<ExtArgs>
|
|
@@ -44283,6 +44365,7 @@ export namespace Prisma {
|
|
|
44283
44365
|
phone: string
|
|
44284
44366
|
address: string
|
|
44285
44367
|
company_values: Prisma.JsonValue[]
|
|
44368
|
+
allowed_email_domains: string[]
|
|
44286
44369
|
created_at: Date
|
|
44287
44370
|
updated_at: Date
|
|
44288
44371
|
created_by: string
|
|
@@ -44740,6 +44823,7 @@ export namespace Prisma {
|
|
|
44740
44823
|
readonly phone: FieldRef<"Organisation", 'String'>
|
|
44741
44824
|
readonly address: FieldRef<"Organisation", 'String'>
|
|
44742
44825
|
readonly company_values: FieldRef<"Organisation", 'Json[]'>
|
|
44826
|
+
readonly allowed_email_domains: FieldRef<"Organisation", 'String[]'>
|
|
44743
44827
|
readonly created_at: FieldRef<"Organisation", 'DateTime'>
|
|
44744
44828
|
readonly updated_at: FieldRef<"Organisation", 'DateTime'>
|
|
44745
44829
|
readonly created_by: FieldRef<"Organisation", 'String'>
|
|
@@ -54641,6 +54725,7 @@ export namespace Prisma {
|
|
|
54641
54725
|
user_profile?: boolean | User$user_profileArgs<ExtArgs>
|
|
54642
54726
|
job_description?: boolean | User$job_descriptionArgs<ExtArgs>
|
|
54643
54727
|
hiring_manager_job_descriptions?: boolean | User$hiring_manager_job_descriptionsArgs<ExtArgs>
|
|
54728
|
+
hiring_manager_job_profiles?: boolean | User$hiring_manager_job_profilesArgs<ExtArgs>
|
|
54644
54729
|
approvals?: boolean | User$approvalsArgs<ExtArgs>
|
|
54645
54730
|
sent_messages?: boolean | User$sent_messagesArgs<ExtArgs>
|
|
54646
54731
|
received_messages?: boolean | User$received_messagesArgs<ExtArgs>
|
|
@@ -54786,6 +54871,7 @@ export namespace Prisma {
|
|
|
54786
54871
|
user_profile?: boolean | User$user_profileArgs<ExtArgs>
|
|
54787
54872
|
job_description?: boolean | User$job_descriptionArgs<ExtArgs>
|
|
54788
54873
|
hiring_manager_job_descriptions?: boolean | User$hiring_manager_job_descriptionsArgs<ExtArgs>
|
|
54874
|
+
hiring_manager_job_profiles?: boolean | User$hiring_manager_job_profilesArgs<ExtArgs>
|
|
54789
54875
|
approvals?: boolean | User$approvalsArgs<ExtArgs>
|
|
54790
54876
|
sent_messages?: boolean | User$sent_messagesArgs<ExtArgs>
|
|
54791
54877
|
received_messages?: boolean | User$received_messagesArgs<ExtArgs>
|
|
@@ -54831,6 +54917,7 @@ export namespace Prisma {
|
|
|
54831
54917
|
user_profile: Prisma.$UserProfilePayload<ExtArgs> | null
|
|
54832
54918
|
job_description: Prisma.$JobDescriptionPayload<ExtArgs>[]
|
|
54833
54919
|
hiring_manager_job_descriptions: Prisma.$JobDescriptionPayload<ExtArgs>[]
|
|
54920
|
+
hiring_manager_job_profiles: Prisma.$JobProfilePayload<ExtArgs>[]
|
|
54834
54921
|
approvals: Prisma.$ApprovalPayload<ExtArgs>[]
|
|
54835
54922
|
sent_messages: Prisma.$MessagePayload<ExtArgs>[]
|
|
54836
54923
|
received_messages: Prisma.$MessagePayload<ExtArgs>[]
|
|
@@ -55288,6 +55375,7 @@ export namespace Prisma {
|
|
|
55288
55375
|
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
55376
|
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
55377
|
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>
|
|
55378
|
+
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
55379
|
approvals<T extends User$approvalsArgs<ExtArgs> = {}>(args?: Subset<T, User$approvalsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ApprovalPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
55292
55380
|
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
55381
|
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 +56024,30 @@ export namespace Prisma {
|
|
|
55936
56024
|
distinct?: JobDescriptionScalarFieldEnum | JobDescriptionScalarFieldEnum[]
|
|
55937
56025
|
}
|
|
55938
56026
|
|
|
56027
|
+
/**
|
|
56028
|
+
* User.hiring_manager_job_profiles
|
|
56029
|
+
*/
|
|
56030
|
+
export type User$hiring_manager_job_profilesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
56031
|
+
/**
|
|
56032
|
+
* Select specific fields to fetch from the JobProfile
|
|
56033
|
+
*/
|
|
56034
|
+
select?: JobProfileSelect<ExtArgs> | null
|
|
56035
|
+
/**
|
|
56036
|
+
* Omit specific fields from the JobProfile
|
|
56037
|
+
*/
|
|
56038
|
+
omit?: JobProfileOmit<ExtArgs> | null
|
|
56039
|
+
/**
|
|
56040
|
+
* Choose, which related nodes to fetch as well
|
|
56041
|
+
*/
|
|
56042
|
+
include?: JobProfileInclude<ExtArgs> | null
|
|
56043
|
+
where?: JobProfileWhereInput
|
|
56044
|
+
orderBy?: JobProfileOrderByWithRelationInput | JobProfileOrderByWithRelationInput[]
|
|
56045
|
+
cursor?: JobProfileWhereUniqueInput
|
|
56046
|
+
take?: number
|
|
56047
|
+
skip?: number
|
|
56048
|
+
distinct?: JobProfileScalarFieldEnum | JobProfileScalarFieldEnum[]
|
|
56049
|
+
}
|
|
56050
|
+
|
|
55939
56051
|
/**
|
|
55940
56052
|
* User.approvals
|
|
55941
56053
|
*/
|
|
@@ -58124,17 +58236,20 @@ export namespace Prisma {
|
|
|
58124
58236
|
export const JobProfileScalarFieldEnum: {
|
|
58125
58237
|
id: 'id',
|
|
58126
58238
|
organisation_id: 'organisation_id',
|
|
58239
|
+
hiring_manager_id: 'hiring_manager_id',
|
|
58127
58240
|
created_by: 'created_by',
|
|
58128
58241
|
assigned_to: 'assigned_to',
|
|
58129
58242
|
status: 'status',
|
|
58130
58243
|
title: 'title',
|
|
58131
58244
|
role_type: 'role_type',
|
|
58132
58245
|
work_arrangement: 'work_arrangement',
|
|
58246
|
+
employment_type: 'employment_type',
|
|
58133
58247
|
location: 'location',
|
|
58134
58248
|
experience_min: 'experience_min',
|
|
58135
58249
|
reporting: 'reporting',
|
|
58136
58250
|
comp_range: 'comp_range',
|
|
58137
58251
|
comp_benchmark: 'comp_benchmark',
|
|
58252
|
+
budget: 'budget',
|
|
58138
58253
|
responsibilities: 'responsibilities',
|
|
58139
58254
|
deliverables: 'deliverables',
|
|
58140
58255
|
must_have_skills: 'must_have_skills',
|
|
@@ -58230,6 +58345,7 @@ export namespace Prisma {
|
|
|
58230
58345
|
phone: 'phone',
|
|
58231
58346
|
address: 'address',
|
|
58232
58347
|
company_values: 'company_values',
|
|
58348
|
+
allowed_email_domains: 'allowed_email_domains',
|
|
58233
58349
|
created_at: 'created_at',
|
|
58234
58350
|
updated_at: 'updated_at',
|
|
58235
58351
|
created_by: 'created_by',
|
|
@@ -61911,17 +62027,20 @@ export namespace Prisma {
|
|
|
61911
62027
|
NOT?: JobProfileWhereInput | JobProfileWhereInput[]
|
|
61912
62028
|
id?: StringFilter<"JobProfile"> | string
|
|
61913
62029
|
organisation_id?: StringFilter<"JobProfile"> | string
|
|
62030
|
+
hiring_manager_id?: StringNullableFilter<"JobProfile"> | string | null
|
|
61914
62031
|
created_by?: StringFilter<"JobProfile"> | string
|
|
61915
62032
|
assigned_to?: StringNullableFilter<"JobProfile"> | string | null
|
|
61916
62033
|
status?: EnumJobProfileStatusFilter<"JobProfile"> | $Enums.JobProfileStatus
|
|
61917
62034
|
title?: StringNullableFilter<"JobProfile"> | string | null
|
|
61918
62035
|
role_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
61919
62036
|
work_arrangement?: StringNullableFilter<"JobProfile"> | string | null
|
|
62037
|
+
employment_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
61920
62038
|
location?: StringNullableFilter<"JobProfile"> | string | null
|
|
61921
62039
|
experience_min?: StringNullableFilter<"JobProfile"> | string | null
|
|
61922
62040
|
reporting?: StringNullableFilter<"JobProfile"> | string | null
|
|
61923
62041
|
comp_range?: StringNullableFilter<"JobProfile"> | string | null
|
|
61924
62042
|
comp_benchmark?: StringNullableFilter<"JobProfile"> | string | null
|
|
62043
|
+
budget?: StringNullableFilter<"JobProfile"> | string | null
|
|
61925
62044
|
responsibilities?: JsonNullableFilter<"JobProfile">
|
|
61926
62045
|
deliverables?: JsonNullableFilter<"JobProfile">
|
|
61927
62046
|
must_have_skills?: JsonNullableFilter<"JobProfile">
|
|
@@ -61937,6 +62056,7 @@ export namespace Prisma {
|
|
|
61937
62056
|
updated_at?: DateTimeFilter<"JobProfile"> | Date | string
|
|
61938
62057
|
is_active?: BoolFilter<"JobProfile"> | boolean
|
|
61939
62058
|
organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
|
|
62059
|
+
hiring_manager?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
61940
62060
|
creator?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
61941
62061
|
assignee?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
61942
62062
|
job_descriptions?: JobDescriptionListRelationFilter
|
|
@@ -61945,17 +62065,20 @@ export namespace Prisma {
|
|
|
61945
62065
|
export type JobProfileOrderByWithRelationInput = {
|
|
61946
62066
|
id?: SortOrder
|
|
61947
62067
|
organisation_id?: SortOrder
|
|
62068
|
+
hiring_manager_id?: SortOrderInput | SortOrder
|
|
61948
62069
|
created_by?: SortOrder
|
|
61949
62070
|
assigned_to?: SortOrderInput | SortOrder
|
|
61950
62071
|
status?: SortOrder
|
|
61951
62072
|
title?: SortOrderInput | SortOrder
|
|
61952
62073
|
role_type?: SortOrderInput | SortOrder
|
|
61953
62074
|
work_arrangement?: SortOrderInput | SortOrder
|
|
62075
|
+
employment_type?: SortOrderInput | SortOrder
|
|
61954
62076
|
location?: SortOrderInput | SortOrder
|
|
61955
62077
|
experience_min?: SortOrderInput | SortOrder
|
|
61956
62078
|
reporting?: SortOrderInput | SortOrder
|
|
61957
62079
|
comp_range?: SortOrderInput | SortOrder
|
|
61958
62080
|
comp_benchmark?: SortOrderInput | SortOrder
|
|
62081
|
+
budget?: SortOrderInput | SortOrder
|
|
61959
62082
|
responsibilities?: SortOrderInput | SortOrder
|
|
61960
62083
|
deliverables?: SortOrderInput | SortOrder
|
|
61961
62084
|
must_have_skills?: SortOrderInput | SortOrder
|
|
@@ -61971,6 +62094,7 @@ export namespace Prisma {
|
|
|
61971
62094
|
updated_at?: SortOrder
|
|
61972
62095
|
is_active?: SortOrder
|
|
61973
62096
|
organisation?: OrganisationOrderByWithRelationInput
|
|
62097
|
+
hiring_manager?: UserOrderByWithRelationInput
|
|
61974
62098
|
creator?: UserOrderByWithRelationInput
|
|
61975
62099
|
assignee?: UserOrderByWithRelationInput
|
|
61976
62100
|
job_descriptions?: JobDescriptionOrderByRelationAggregateInput
|
|
@@ -61982,17 +62106,20 @@ export namespace Prisma {
|
|
|
61982
62106
|
OR?: JobProfileWhereInput[]
|
|
61983
62107
|
NOT?: JobProfileWhereInput | JobProfileWhereInput[]
|
|
61984
62108
|
organisation_id?: StringFilter<"JobProfile"> | string
|
|
62109
|
+
hiring_manager_id?: StringNullableFilter<"JobProfile"> | string | null
|
|
61985
62110
|
created_by?: StringFilter<"JobProfile"> | string
|
|
61986
62111
|
assigned_to?: StringNullableFilter<"JobProfile"> | string | null
|
|
61987
62112
|
status?: EnumJobProfileStatusFilter<"JobProfile"> | $Enums.JobProfileStatus
|
|
61988
62113
|
title?: StringNullableFilter<"JobProfile"> | string | null
|
|
61989
62114
|
role_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
61990
62115
|
work_arrangement?: StringNullableFilter<"JobProfile"> | string | null
|
|
62116
|
+
employment_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
61991
62117
|
location?: StringNullableFilter<"JobProfile"> | string | null
|
|
61992
62118
|
experience_min?: StringNullableFilter<"JobProfile"> | string | null
|
|
61993
62119
|
reporting?: StringNullableFilter<"JobProfile"> | string | null
|
|
61994
62120
|
comp_range?: StringNullableFilter<"JobProfile"> | string | null
|
|
61995
62121
|
comp_benchmark?: StringNullableFilter<"JobProfile"> | string | null
|
|
62122
|
+
budget?: StringNullableFilter<"JobProfile"> | string | null
|
|
61996
62123
|
responsibilities?: JsonNullableFilter<"JobProfile">
|
|
61997
62124
|
deliverables?: JsonNullableFilter<"JobProfile">
|
|
61998
62125
|
must_have_skills?: JsonNullableFilter<"JobProfile">
|
|
@@ -62008,6 +62135,7 @@ export namespace Prisma {
|
|
|
62008
62135
|
updated_at?: DateTimeFilter<"JobProfile"> | Date | string
|
|
62009
62136
|
is_active?: BoolFilter<"JobProfile"> | boolean
|
|
62010
62137
|
organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
|
|
62138
|
+
hiring_manager?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
62011
62139
|
creator?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
62012
62140
|
assignee?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
62013
62141
|
job_descriptions?: JobDescriptionListRelationFilter
|
|
@@ -62016,17 +62144,20 @@ export namespace Prisma {
|
|
|
62016
62144
|
export type JobProfileOrderByWithAggregationInput = {
|
|
62017
62145
|
id?: SortOrder
|
|
62018
62146
|
organisation_id?: SortOrder
|
|
62147
|
+
hiring_manager_id?: SortOrderInput | SortOrder
|
|
62019
62148
|
created_by?: SortOrder
|
|
62020
62149
|
assigned_to?: SortOrderInput | SortOrder
|
|
62021
62150
|
status?: SortOrder
|
|
62022
62151
|
title?: SortOrderInput | SortOrder
|
|
62023
62152
|
role_type?: SortOrderInput | SortOrder
|
|
62024
62153
|
work_arrangement?: SortOrderInput | SortOrder
|
|
62154
|
+
employment_type?: SortOrderInput | SortOrder
|
|
62025
62155
|
location?: SortOrderInput | SortOrder
|
|
62026
62156
|
experience_min?: SortOrderInput | SortOrder
|
|
62027
62157
|
reporting?: SortOrderInput | SortOrder
|
|
62028
62158
|
comp_range?: SortOrderInput | SortOrder
|
|
62029
62159
|
comp_benchmark?: SortOrderInput | SortOrder
|
|
62160
|
+
budget?: SortOrderInput | SortOrder
|
|
62030
62161
|
responsibilities?: SortOrderInput | SortOrder
|
|
62031
62162
|
deliverables?: SortOrderInput | SortOrder
|
|
62032
62163
|
must_have_skills?: SortOrderInput | SortOrder
|
|
@@ -62052,17 +62183,20 @@ export namespace Prisma {
|
|
|
62052
62183
|
NOT?: JobProfileScalarWhereWithAggregatesInput | JobProfileScalarWhereWithAggregatesInput[]
|
|
62053
62184
|
id?: StringWithAggregatesFilter<"JobProfile"> | string
|
|
62054
62185
|
organisation_id?: StringWithAggregatesFilter<"JobProfile"> | string
|
|
62186
|
+
hiring_manager_id?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62055
62187
|
created_by?: StringWithAggregatesFilter<"JobProfile"> | string
|
|
62056
62188
|
assigned_to?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62057
62189
|
status?: EnumJobProfileStatusWithAggregatesFilter<"JobProfile"> | $Enums.JobProfileStatus
|
|
62058
62190
|
title?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62059
62191
|
role_type?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62060
62192
|
work_arrangement?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62193
|
+
employment_type?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62061
62194
|
location?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62062
62195
|
experience_min?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62063
62196
|
reporting?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62064
62197
|
comp_range?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62065
62198
|
comp_benchmark?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62199
|
+
budget?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
62066
62200
|
responsibilities?: JsonNullableWithAggregatesFilter<"JobProfile">
|
|
62067
62201
|
deliverables?: JsonNullableWithAggregatesFilter<"JobProfile">
|
|
62068
62202
|
must_have_skills?: JsonNullableWithAggregatesFilter<"JobProfile">
|
|
@@ -62452,6 +62586,7 @@ export namespace Prisma {
|
|
|
62452
62586
|
phone?: StringFilter<"Organisation"> | string
|
|
62453
62587
|
address?: StringFilter<"Organisation"> | string
|
|
62454
62588
|
company_values?: JsonNullableListFilter<"Organisation">
|
|
62589
|
+
allowed_email_domains?: StringNullableListFilter<"Organisation">
|
|
62455
62590
|
created_at?: DateTimeFilter<"Organisation"> | Date | string
|
|
62456
62591
|
updated_at?: DateTimeFilter<"Organisation"> | Date | string
|
|
62457
62592
|
created_by?: StringFilter<"Organisation"> | string
|
|
@@ -62489,6 +62624,7 @@ export namespace Prisma {
|
|
|
62489
62624
|
phone?: SortOrder
|
|
62490
62625
|
address?: SortOrder
|
|
62491
62626
|
company_values?: SortOrder
|
|
62627
|
+
allowed_email_domains?: SortOrder
|
|
62492
62628
|
created_at?: SortOrder
|
|
62493
62629
|
updated_at?: SortOrder
|
|
62494
62630
|
created_by?: SortOrder
|
|
@@ -62530,6 +62666,7 @@ export namespace Prisma {
|
|
|
62530
62666
|
phone?: StringFilter<"Organisation"> | string
|
|
62531
62667
|
address?: StringFilter<"Organisation"> | string
|
|
62532
62668
|
company_values?: JsonNullableListFilter<"Organisation">
|
|
62669
|
+
allowed_email_domains?: StringNullableListFilter<"Organisation">
|
|
62533
62670
|
created_at?: DateTimeFilter<"Organisation"> | Date | string
|
|
62534
62671
|
updated_at?: DateTimeFilter<"Organisation"> | Date | string
|
|
62535
62672
|
created_by?: StringFilter<"Organisation"> | string
|
|
@@ -62566,6 +62703,7 @@ export namespace Prisma {
|
|
|
62566
62703
|
phone?: SortOrder
|
|
62567
62704
|
address?: SortOrder
|
|
62568
62705
|
company_values?: SortOrder
|
|
62706
|
+
allowed_email_domains?: SortOrder
|
|
62569
62707
|
created_at?: SortOrder
|
|
62570
62708
|
updated_at?: SortOrder
|
|
62571
62709
|
created_by?: SortOrder
|
|
@@ -62591,6 +62729,7 @@ export namespace Prisma {
|
|
|
62591
62729
|
phone?: StringWithAggregatesFilter<"Organisation"> | string
|
|
62592
62730
|
address?: StringWithAggregatesFilter<"Organisation"> | string
|
|
62593
62731
|
company_values?: JsonNullableListFilter<"Organisation">
|
|
62732
|
+
allowed_email_domains?: StringNullableListFilter<"Organisation">
|
|
62594
62733
|
created_at?: DateTimeWithAggregatesFilter<"Organisation"> | Date | string
|
|
62595
62734
|
updated_at?: DateTimeWithAggregatesFilter<"Organisation"> | Date | string
|
|
62596
62735
|
created_by?: StringWithAggregatesFilter<"Organisation"> | string
|
|
@@ -63352,6 +63491,7 @@ export namespace Prisma {
|
|
|
63352
63491
|
user_profile?: XOR<UserProfileNullableScalarRelationFilter, UserProfileWhereInput> | null
|
|
63353
63492
|
job_description?: JobDescriptionListRelationFilter
|
|
63354
63493
|
hiring_manager_job_descriptions?: JobDescriptionListRelationFilter
|
|
63494
|
+
hiring_manager_job_profiles?: JobProfileListRelationFilter
|
|
63355
63495
|
approvals?: ApprovalListRelationFilter
|
|
63356
63496
|
sent_messages?: MessageListRelationFilter
|
|
63357
63497
|
received_messages?: MessageListRelationFilter
|
|
@@ -63416,6 +63556,7 @@ export namespace Prisma {
|
|
|
63416
63556
|
user_profile?: UserProfileOrderByWithRelationInput
|
|
63417
63557
|
job_description?: JobDescriptionOrderByRelationAggregateInput
|
|
63418
63558
|
hiring_manager_job_descriptions?: JobDescriptionOrderByRelationAggregateInput
|
|
63559
|
+
hiring_manager_job_profiles?: JobProfileOrderByRelationAggregateInput
|
|
63419
63560
|
approvals?: ApprovalOrderByRelationAggregateInput
|
|
63420
63561
|
sent_messages?: MessageOrderByRelationAggregateInput
|
|
63421
63562
|
received_messages?: MessageOrderByRelationAggregateInput
|
|
@@ -63483,6 +63624,7 @@ export namespace Prisma {
|
|
|
63483
63624
|
user_profile?: XOR<UserProfileNullableScalarRelationFilter, UserProfileWhereInput> | null
|
|
63484
63625
|
job_description?: JobDescriptionListRelationFilter
|
|
63485
63626
|
hiring_manager_job_descriptions?: JobDescriptionListRelationFilter
|
|
63627
|
+
hiring_manager_job_profiles?: JobProfileListRelationFilter
|
|
63486
63628
|
approvals?: ApprovalListRelationFilter
|
|
63487
63629
|
sent_messages?: MessageListRelationFilter
|
|
63488
63630
|
received_messages?: MessageListRelationFilter
|
|
@@ -66932,11 +67074,13 @@ export namespace Prisma {
|
|
|
66932
67074
|
title?: string | null
|
|
66933
67075
|
role_type?: string | null
|
|
66934
67076
|
work_arrangement?: string | null
|
|
67077
|
+
employment_type?: string | null
|
|
66935
67078
|
location?: string | null
|
|
66936
67079
|
experience_min?: string | null
|
|
66937
67080
|
reporting?: string | null
|
|
66938
67081
|
comp_range?: string | null
|
|
66939
67082
|
comp_benchmark?: string | null
|
|
67083
|
+
budget?: string | null
|
|
66940
67084
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
66941
67085
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
66942
67086
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -66952,6 +67096,7 @@ export namespace Prisma {
|
|
|
66952
67096
|
updated_at?: Date | string
|
|
66953
67097
|
is_active?: boolean
|
|
66954
67098
|
organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
|
|
67099
|
+
hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
|
|
66955
67100
|
creator: UserCreateNestedOneWithoutCreated_job_profilesInput
|
|
66956
67101
|
assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
|
|
66957
67102
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
|
|
@@ -66960,17 +67105,20 @@ export namespace Prisma {
|
|
|
66960
67105
|
export type JobProfileUncheckedCreateInput = {
|
|
66961
67106
|
id?: string
|
|
66962
67107
|
organisation_id: string
|
|
67108
|
+
hiring_manager_id?: string | null
|
|
66963
67109
|
created_by: string
|
|
66964
67110
|
assigned_to?: string | null
|
|
66965
67111
|
status?: $Enums.JobProfileStatus
|
|
66966
67112
|
title?: string | null
|
|
66967
67113
|
role_type?: string | null
|
|
66968
67114
|
work_arrangement?: string | null
|
|
67115
|
+
employment_type?: string | null
|
|
66969
67116
|
location?: string | null
|
|
66970
67117
|
experience_min?: string | null
|
|
66971
67118
|
reporting?: string | null
|
|
66972
67119
|
comp_range?: string | null
|
|
66973
67120
|
comp_benchmark?: string | null
|
|
67121
|
+
budget?: string | null
|
|
66974
67122
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
66975
67123
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
66976
67124
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -66994,11 +67142,13 @@ export namespace Prisma {
|
|
|
66994
67142
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66995
67143
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66996
67144
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67145
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66997
67146
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66998
67147
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66999
67148
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67000
67149
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67001
67150
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67151
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67002
67152
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
67003
67153
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
67004
67154
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -67014,6 +67164,7 @@ export namespace Prisma {
|
|
|
67014
67164
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67015
67165
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
67016
67166
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
|
|
67167
|
+
hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
|
|
67017
67168
|
creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
|
|
67018
67169
|
assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
|
|
67019
67170
|
job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
|
|
@@ -67022,17 +67173,20 @@ export namespace Prisma {
|
|
|
67022
67173
|
export type JobProfileUncheckedUpdateInput = {
|
|
67023
67174
|
id?: StringFieldUpdateOperationsInput | string
|
|
67024
67175
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
67176
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67025
67177
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
67026
67178
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67027
67179
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
67028
67180
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67029
67181
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67030
67182
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67183
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67031
67184
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67032
67185
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67033
67186
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67034
67187
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67035
67188
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67189
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67036
67190
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
67037
67191
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
67038
67192
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -67053,17 +67207,20 @@ export namespace Prisma {
|
|
|
67053
67207
|
export type JobProfileCreateManyInput = {
|
|
67054
67208
|
id?: string
|
|
67055
67209
|
organisation_id: string
|
|
67210
|
+
hiring_manager_id?: string | null
|
|
67056
67211
|
created_by: string
|
|
67057
67212
|
assigned_to?: string | null
|
|
67058
67213
|
status?: $Enums.JobProfileStatus
|
|
67059
67214
|
title?: string | null
|
|
67060
67215
|
role_type?: string | null
|
|
67061
67216
|
work_arrangement?: string | null
|
|
67217
|
+
employment_type?: string | null
|
|
67062
67218
|
location?: string | null
|
|
67063
67219
|
experience_min?: string | null
|
|
67064
67220
|
reporting?: string | null
|
|
67065
67221
|
comp_range?: string | null
|
|
67066
67222
|
comp_benchmark?: string | null
|
|
67223
|
+
budget?: string | null
|
|
67067
67224
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
67068
67225
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
67069
67226
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -67086,11 +67243,13 @@ export namespace Prisma {
|
|
|
67086
67243
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67087
67244
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67088
67245
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67246
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67089
67247
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67090
67248
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67091
67249
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67092
67250
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67093
67251
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67252
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67094
67253
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
67095
67254
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
67096
67255
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -67110,17 +67269,20 @@ export namespace Prisma {
|
|
|
67110
67269
|
export type JobProfileUncheckedUpdateManyInput = {
|
|
67111
67270
|
id?: StringFieldUpdateOperationsInput | string
|
|
67112
67271
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
67272
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67113
67273
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
67114
67274
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67115
67275
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
67116
67276
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67117
67277
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67118
67278
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67279
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67119
67280
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67120
67281
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67121
67282
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67122
67283
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67123
67284
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67285
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67124
67286
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
67125
67287
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
67126
67288
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -67539,6 +67701,7 @@ export namespace Prisma {
|
|
|
67539
67701
|
phone: string
|
|
67540
67702
|
address: string
|
|
67541
67703
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
67704
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
67542
67705
|
created_at?: Date | string
|
|
67543
67706
|
updated_at?: Date | string
|
|
67544
67707
|
created_by: string
|
|
@@ -67576,6 +67739,7 @@ export namespace Prisma {
|
|
|
67576
67739
|
phone: string
|
|
67577
67740
|
address: string
|
|
67578
67741
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
67742
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
67579
67743
|
created_at?: Date | string
|
|
67580
67744
|
updated_at?: Date | string
|
|
67581
67745
|
created_by: string
|
|
@@ -67613,6 +67777,7 @@ export namespace Prisma {
|
|
|
67613
67777
|
phone?: StringFieldUpdateOperationsInput | string
|
|
67614
67778
|
address?: StringFieldUpdateOperationsInput | string
|
|
67615
67779
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
67780
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
67616
67781
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67617
67782
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67618
67783
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -67650,6 +67815,7 @@ export namespace Prisma {
|
|
|
67650
67815
|
phone?: StringFieldUpdateOperationsInput | string
|
|
67651
67816
|
address?: StringFieldUpdateOperationsInput | string
|
|
67652
67817
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
67818
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
67653
67819
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67654
67820
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67655
67821
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -67687,6 +67853,7 @@ export namespace Prisma {
|
|
|
67687
67853
|
phone: string
|
|
67688
67854
|
address: string
|
|
67689
67855
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
67856
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
67690
67857
|
created_at?: Date | string
|
|
67691
67858
|
updated_at?: Date | string
|
|
67692
67859
|
created_by: string
|
|
@@ -67706,6 +67873,7 @@ export namespace Prisma {
|
|
|
67706
67873
|
phone?: StringFieldUpdateOperationsInput | string
|
|
67707
67874
|
address?: StringFieldUpdateOperationsInput | string
|
|
67708
67875
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
67876
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
67709
67877
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67710
67878
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67711
67879
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -67725,6 +67893,7 @@ export namespace Prisma {
|
|
|
67725
67893
|
phone?: StringFieldUpdateOperationsInput | string
|
|
67726
67894
|
address?: StringFieldUpdateOperationsInput | string
|
|
67727
67895
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
67896
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
67728
67897
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67729
67898
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67730
67899
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -68568,6 +68737,7 @@ export namespace Prisma {
|
|
|
68568
68737
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
68569
68738
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
68570
68739
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
68740
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
68571
68741
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
68572
68742
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
68573
68743
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -68629,6 +68799,7 @@ export namespace Prisma {
|
|
|
68629
68799
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
68630
68800
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
68631
68801
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
68802
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
68632
68803
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
68633
68804
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
68634
68805
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -68690,6 +68861,7 @@ export namespace Prisma {
|
|
|
68690
68861
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
68691
68862
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
68692
68863
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
68864
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
68693
68865
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
68694
68866
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
68695
68867
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -68751,6 +68923,7 @@ export namespace Prisma {
|
|
|
68751
68923
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
68752
68924
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
68753
68925
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
68926
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
68754
68927
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
68755
68928
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
68756
68929
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -71509,17 +71682,20 @@ export namespace Prisma {
|
|
|
71509
71682
|
export type JobProfileCountOrderByAggregateInput = {
|
|
71510
71683
|
id?: SortOrder
|
|
71511
71684
|
organisation_id?: SortOrder
|
|
71685
|
+
hiring_manager_id?: SortOrder
|
|
71512
71686
|
created_by?: SortOrder
|
|
71513
71687
|
assigned_to?: SortOrder
|
|
71514
71688
|
status?: SortOrder
|
|
71515
71689
|
title?: SortOrder
|
|
71516
71690
|
role_type?: SortOrder
|
|
71517
71691
|
work_arrangement?: SortOrder
|
|
71692
|
+
employment_type?: SortOrder
|
|
71518
71693
|
location?: SortOrder
|
|
71519
71694
|
experience_min?: SortOrder
|
|
71520
71695
|
reporting?: SortOrder
|
|
71521
71696
|
comp_range?: SortOrder
|
|
71522
71697
|
comp_benchmark?: SortOrder
|
|
71698
|
+
budget?: SortOrder
|
|
71523
71699
|
responsibilities?: SortOrder
|
|
71524
71700
|
deliverables?: SortOrder
|
|
71525
71701
|
must_have_skills?: SortOrder
|
|
@@ -71539,17 +71715,20 @@ export namespace Prisma {
|
|
|
71539
71715
|
export type JobProfileMaxOrderByAggregateInput = {
|
|
71540
71716
|
id?: SortOrder
|
|
71541
71717
|
organisation_id?: SortOrder
|
|
71718
|
+
hiring_manager_id?: SortOrder
|
|
71542
71719
|
created_by?: SortOrder
|
|
71543
71720
|
assigned_to?: SortOrder
|
|
71544
71721
|
status?: SortOrder
|
|
71545
71722
|
title?: SortOrder
|
|
71546
71723
|
role_type?: SortOrder
|
|
71547
71724
|
work_arrangement?: SortOrder
|
|
71725
|
+
employment_type?: SortOrder
|
|
71548
71726
|
location?: SortOrder
|
|
71549
71727
|
experience_min?: SortOrder
|
|
71550
71728
|
reporting?: SortOrder
|
|
71551
71729
|
comp_range?: SortOrder
|
|
71552
71730
|
comp_benchmark?: SortOrder
|
|
71731
|
+
budget?: SortOrder
|
|
71553
71732
|
current_phase?: SortOrder
|
|
71554
71733
|
orion_execution_id?: SortOrder
|
|
71555
71734
|
created_at?: SortOrder
|
|
@@ -71560,17 +71739,20 @@ export namespace Prisma {
|
|
|
71560
71739
|
export type JobProfileMinOrderByAggregateInput = {
|
|
71561
71740
|
id?: SortOrder
|
|
71562
71741
|
organisation_id?: SortOrder
|
|
71742
|
+
hiring_manager_id?: SortOrder
|
|
71563
71743
|
created_by?: SortOrder
|
|
71564
71744
|
assigned_to?: SortOrder
|
|
71565
71745
|
status?: SortOrder
|
|
71566
71746
|
title?: SortOrder
|
|
71567
71747
|
role_type?: SortOrder
|
|
71568
71748
|
work_arrangement?: SortOrder
|
|
71749
|
+
employment_type?: SortOrder
|
|
71569
71750
|
location?: SortOrder
|
|
71570
71751
|
experience_min?: SortOrder
|
|
71571
71752
|
reporting?: SortOrder
|
|
71572
71753
|
comp_range?: SortOrder
|
|
71573
71754
|
comp_benchmark?: SortOrder
|
|
71755
|
+
budget?: SortOrder
|
|
71574
71756
|
current_phase?: SortOrder
|
|
71575
71757
|
orion_execution_id?: SortOrder
|
|
71576
71758
|
created_at?: SortOrder
|
|
@@ -71968,6 +72150,7 @@ export namespace Prisma {
|
|
|
71968
72150
|
phone?: SortOrder
|
|
71969
72151
|
address?: SortOrder
|
|
71970
72152
|
company_values?: SortOrder
|
|
72153
|
+
allowed_email_domains?: SortOrder
|
|
71971
72154
|
created_at?: SortOrder
|
|
71972
72155
|
updated_at?: SortOrder
|
|
71973
72156
|
created_by?: SortOrder
|
|
@@ -75402,6 +75585,12 @@ export namespace Prisma {
|
|
|
75402
75585
|
connect?: OrganisationWhereUniqueInput
|
|
75403
75586
|
}
|
|
75404
75587
|
|
|
75588
|
+
export type UserCreateNestedOneWithoutHiring_manager_job_profilesInput = {
|
|
75589
|
+
create?: XOR<UserCreateWithoutHiring_manager_job_profilesInput, UserUncheckedCreateWithoutHiring_manager_job_profilesInput>
|
|
75590
|
+
connectOrCreate?: UserCreateOrConnectWithoutHiring_manager_job_profilesInput
|
|
75591
|
+
connect?: UserWhereUniqueInput
|
|
75592
|
+
}
|
|
75593
|
+
|
|
75405
75594
|
export type UserCreateNestedOneWithoutCreated_job_profilesInput = {
|
|
75406
75595
|
create?: XOR<UserCreateWithoutCreated_job_profilesInput, UserUncheckedCreateWithoutCreated_job_profilesInput>
|
|
75407
75596
|
connectOrCreate?: UserCreateOrConnectWithoutCreated_job_profilesInput
|
|
@@ -75440,6 +75629,16 @@ export namespace Prisma {
|
|
|
75440
75629
|
update?: XOR<XOR<OrganisationUpdateToOneWithWhereWithoutJob_profilesInput, OrganisationUpdateWithoutJob_profilesInput>, OrganisationUncheckedUpdateWithoutJob_profilesInput>
|
|
75441
75630
|
}
|
|
75442
75631
|
|
|
75632
|
+
export type UserUpdateOneWithoutHiring_manager_job_profilesNestedInput = {
|
|
75633
|
+
create?: XOR<UserCreateWithoutHiring_manager_job_profilesInput, UserUncheckedCreateWithoutHiring_manager_job_profilesInput>
|
|
75634
|
+
connectOrCreate?: UserCreateOrConnectWithoutHiring_manager_job_profilesInput
|
|
75635
|
+
upsert?: UserUpsertWithoutHiring_manager_job_profilesInput
|
|
75636
|
+
disconnect?: UserWhereInput | boolean
|
|
75637
|
+
delete?: UserWhereInput | boolean
|
|
75638
|
+
connect?: UserWhereUniqueInput
|
|
75639
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutHiring_manager_job_profilesInput, UserUpdateWithoutHiring_manager_job_profilesInput>, UserUncheckedUpdateWithoutHiring_manager_job_profilesInput>
|
|
75640
|
+
}
|
|
75641
|
+
|
|
75443
75642
|
export type UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput = {
|
|
75444
75643
|
create?: XOR<UserCreateWithoutCreated_job_profilesInput, UserUncheckedCreateWithoutCreated_job_profilesInput>
|
|
75445
75644
|
connectOrCreate?: UserCreateOrConnectWithoutCreated_job_profilesInput
|
|
@@ -75721,6 +75920,10 @@ export namespace Prisma {
|
|
|
75721
75920
|
set: InputJsonValue[]
|
|
75722
75921
|
}
|
|
75723
75922
|
|
|
75923
|
+
export type OrganisationCreateallowed_email_domainsInput = {
|
|
75924
|
+
set: string[]
|
|
75925
|
+
}
|
|
75926
|
+
|
|
75724
75927
|
export type UserCreateNestedManyWithoutOrganisationInput = {
|
|
75725
75928
|
create?: XOR<UserCreateWithoutOrganisationInput, UserUncheckedCreateWithoutOrganisationInput> | UserCreateWithoutOrganisationInput[] | UserUncheckedCreateWithoutOrganisationInput[]
|
|
75726
75929
|
connectOrCreate?: UserCreateOrConnectWithoutOrganisationInput | UserCreateOrConnectWithoutOrganisationInput[]
|
|
@@ -75982,6 +76185,11 @@ export namespace Prisma {
|
|
|
75982
76185
|
push?: InputJsonValue | InputJsonValue[]
|
|
75983
76186
|
}
|
|
75984
76187
|
|
|
76188
|
+
export type OrganisationUpdateallowed_email_domainsInput = {
|
|
76189
|
+
set?: string[]
|
|
76190
|
+
push?: string | string[]
|
|
76191
|
+
}
|
|
76192
|
+
|
|
75985
76193
|
export type UserUpdateManyWithoutOrganisationNestedInput = {
|
|
75986
76194
|
create?: XOR<UserCreateWithoutOrganisationInput, UserUncheckedCreateWithoutOrganisationInput> | UserCreateWithoutOrganisationInput[] | UserUncheckedCreateWithoutOrganisationInput[]
|
|
75987
76195
|
connectOrCreate?: UserCreateOrConnectWithoutOrganisationInput | UserCreateOrConnectWithoutOrganisationInput[]
|
|
@@ -77193,6 +77401,13 @@ export namespace Prisma {
|
|
|
77193
77401
|
connect?: JobDescriptionWhereUniqueInput | JobDescriptionWhereUniqueInput[]
|
|
77194
77402
|
}
|
|
77195
77403
|
|
|
77404
|
+
export type JobProfileCreateNestedManyWithoutHiring_managerInput = {
|
|
77405
|
+
create?: XOR<JobProfileCreateWithoutHiring_managerInput, JobProfileUncheckedCreateWithoutHiring_managerInput> | JobProfileCreateWithoutHiring_managerInput[] | JobProfileUncheckedCreateWithoutHiring_managerInput[]
|
|
77406
|
+
connectOrCreate?: JobProfileCreateOrConnectWithoutHiring_managerInput | JobProfileCreateOrConnectWithoutHiring_managerInput[]
|
|
77407
|
+
createMany?: JobProfileCreateManyHiring_managerInputEnvelope
|
|
77408
|
+
connect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
|
|
77409
|
+
}
|
|
77410
|
+
|
|
77196
77411
|
export type ApprovalCreateNestedManyWithoutUserInput = {
|
|
77197
77412
|
create?: XOR<ApprovalCreateWithoutUserInput, ApprovalUncheckedCreateWithoutUserInput> | ApprovalCreateWithoutUserInput[] | ApprovalUncheckedCreateWithoutUserInput[]
|
|
77198
77413
|
connectOrCreate?: ApprovalCreateOrConnectWithoutUserInput | ApprovalCreateOrConnectWithoutUserInput[]
|
|
@@ -77370,6 +77585,13 @@ export namespace Prisma {
|
|
|
77370
77585
|
connect?: JobDescriptionWhereUniqueInput | JobDescriptionWhereUniqueInput[]
|
|
77371
77586
|
}
|
|
77372
77587
|
|
|
77588
|
+
export type JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput = {
|
|
77589
|
+
create?: XOR<JobProfileCreateWithoutHiring_managerInput, JobProfileUncheckedCreateWithoutHiring_managerInput> | JobProfileCreateWithoutHiring_managerInput[] | JobProfileUncheckedCreateWithoutHiring_managerInput[]
|
|
77590
|
+
connectOrCreate?: JobProfileCreateOrConnectWithoutHiring_managerInput | JobProfileCreateOrConnectWithoutHiring_managerInput[]
|
|
77591
|
+
createMany?: JobProfileCreateManyHiring_managerInputEnvelope
|
|
77592
|
+
connect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
|
|
77593
|
+
}
|
|
77594
|
+
|
|
77373
77595
|
export type ApprovalUncheckedCreateNestedManyWithoutUserInput = {
|
|
77374
77596
|
create?: XOR<ApprovalCreateWithoutUserInput, ApprovalUncheckedCreateWithoutUserInput> | ApprovalCreateWithoutUserInput[] | ApprovalUncheckedCreateWithoutUserInput[]
|
|
77375
77597
|
connectOrCreate?: ApprovalCreateOrConnectWithoutUserInput | ApprovalCreateOrConnectWithoutUserInput[]
|
|
@@ -77615,6 +77837,20 @@ export namespace Prisma {
|
|
|
77615
77837
|
deleteMany?: JobDescriptionScalarWhereInput | JobDescriptionScalarWhereInput[]
|
|
77616
77838
|
}
|
|
77617
77839
|
|
|
77840
|
+
export type JobProfileUpdateManyWithoutHiring_managerNestedInput = {
|
|
77841
|
+
create?: XOR<JobProfileCreateWithoutHiring_managerInput, JobProfileUncheckedCreateWithoutHiring_managerInput> | JobProfileCreateWithoutHiring_managerInput[] | JobProfileUncheckedCreateWithoutHiring_managerInput[]
|
|
77842
|
+
connectOrCreate?: JobProfileCreateOrConnectWithoutHiring_managerInput | JobProfileCreateOrConnectWithoutHiring_managerInput[]
|
|
77843
|
+
upsert?: JobProfileUpsertWithWhereUniqueWithoutHiring_managerInput | JobProfileUpsertWithWhereUniqueWithoutHiring_managerInput[]
|
|
77844
|
+
createMany?: JobProfileCreateManyHiring_managerInputEnvelope
|
|
77845
|
+
set?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
|
|
77846
|
+
disconnect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
|
|
77847
|
+
delete?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
|
|
77848
|
+
connect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
|
|
77849
|
+
update?: JobProfileUpdateWithWhereUniqueWithoutHiring_managerInput | JobProfileUpdateWithWhereUniqueWithoutHiring_managerInput[]
|
|
77850
|
+
updateMany?: JobProfileUpdateManyWithWhereWithoutHiring_managerInput | JobProfileUpdateManyWithWhereWithoutHiring_managerInput[]
|
|
77851
|
+
deleteMany?: JobProfileScalarWhereInput | JobProfileScalarWhereInput[]
|
|
77852
|
+
}
|
|
77853
|
+
|
|
77618
77854
|
export type ApprovalUpdateManyWithoutUserNestedInput = {
|
|
77619
77855
|
create?: XOR<ApprovalCreateWithoutUserInput, ApprovalUncheckedCreateWithoutUserInput> | ApprovalCreateWithoutUserInput[] | ApprovalUncheckedCreateWithoutUserInput[]
|
|
77620
77856
|
connectOrCreate?: ApprovalCreateOrConnectWithoutUserInput | ApprovalCreateOrConnectWithoutUserInput[]
|
|
@@ -77962,6 +78198,20 @@ export namespace Prisma {
|
|
|
77962
78198
|
deleteMany?: JobDescriptionScalarWhereInput | JobDescriptionScalarWhereInput[]
|
|
77963
78199
|
}
|
|
77964
78200
|
|
|
78201
|
+
export type JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput = {
|
|
78202
|
+
create?: XOR<JobProfileCreateWithoutHiring_managerInput, JobProfileUncheckedCreateWithoutHiring_managerInput> | JobProfileCreateWithoutHiring_managerInput[] | JobProfileUncheckedCreateWithoutHiring_managerInput[]
|
|
78203
|
+
connectOrCreate?: JobProfileCreateOrConnectWithoutHiring_managerInput | JobProfileCreateOrConnectWithoutHiring_managerInput[]
|
|
78204
|
+
upsert?: JobProfileUpsertWithWhereUniqueWithoutHiring_managerInput | JobProfileUpsertWithWhereUniqueWithoutHiring_managerInput[]
|
|
78205
|
+
createMany?: JobProfileCreateManyHiring_managerInputEnvelope
|
|
78206
|
+
set?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
|
|
78207
|
+
disconnect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
|
|
78208
|
+
delete?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
|
|
78209
|
+
connect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
|
|
78210
|
+
update?: JobProfileUpdateWithWhereUniqueWithoutHiring_managerInput | JobProfileUpdateWithWhereUniqueWithoutHiring_managerInput[]
|
|
78211
|
+
updateMany?: JobProfileUpdateManyWithWhereWithoutHiring_managerInput | JobProfileUpdateManyWithWhereWithoutHiring_managerInput[]
|
|
78212
|
+
deleteMany?: JobProfileScalarWhereInput | JobProfileScalarWhereInput[]
|
|
78213
|
+
}
|
|
78214
|
+
|
|
77965
78215
|
export type ApprovalUncheckedUpdateManyWithoutUserNestedInput = {
|
|
77966
78216
|
create?: XOR<ApprovalCreateWithoutUserInput, ApprovalUncheckedCreateWithoutUserInput> | ApprovalCreateWithoutUserInput[] | ApprovalUncheckedCreateWithoutUserInput[]
|
|
77967
78217
|
connectOrCreate?: ApprovalCreateOrConnectWithoutUserInput | ApprovalCreateOrConnectWithoutUserInput[]
|
|
@@ -79219,6 +79469,7 @@ export namespace Prisma {
|
|
|
79219
79469
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
79220
79470
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
79221
79471
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
79472
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
79222
79473
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
79223
79474
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
79224
79475
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -79279,6 +79530,7 @@ export namespace Prisma {
|
|
|
79279
79530
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
79280
79531
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
79281
79532
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
79533
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
79282
79534
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
79283
79535
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
79284
79536
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -79461,6 +79713,7 @@ export namespace Prisma {
|
|
|
79461
79713
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
79462
79714
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
79463
79715
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
79716
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
79464
79717
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
79465
79718
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
79466
79719
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -79521,6 +79774,7 @@ export namespace Prisma {
|
|
|
79521
79774
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
79522
79775
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
79523
79776
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
79777
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
79524
79778
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
79525
79779
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
79526
79780
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -79552,6 +79806,7 @@ export namespace Prisma {
|
|
|
79552
79806
|
phone: string
|
|
79553
79807
|
address: string
|
|
79554
79808
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
79809
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
79555
79810
|
created_at?: Date | string
|
|
79556
79811
|
updated_at?: Date | string
|
|
79557
79812
|
created_by: string
|
|
@@ -79588,6 +79843,7 @@ export namespace Prisma {
|
|
|
79588
79843
|
phone: string
|
|
79589
79844
|
address: string
|
|
79590
79845
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
79846
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
79591
79847
|
created_at?: Date | string
|
|
79592
79848
|
updated_at?: Date | string
|
|
79593
79849
|
created_by: string
|
|
@@ -79684,6 +79940,7 @@ export namespace Prisma {
|
|
|
79684
79940
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
79685
79941
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
79686
79942
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
79943
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
79687
79944
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
79688
79945
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
79689
79946
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -79744,6 +80001,7 @@ export namespace Prisma {
|
|
|
79744
80001
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
79745
80002
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
79746
80003
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
80004
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
79747
80005
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
79748
80006
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
79749
80007
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -79797,6 +80055,7 @@ export namespace Prisma {
|
|
|
79797
80055
|
phone?: StringFieldUpdateOperationsInput | string
|
|
79798
80056
|
address?: StringFieldUpdateOperationsInput | string
|
|
79799
80057
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
80058
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
79800
80059
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79801
80060
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79802
80061
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -79833,6 +80092,7 @@ export namespace Prisma {
|
|
|
79833
80092
|
phone?: StringFieldUpdateOperationsInput | string
|
|
79834
80093
|
address?: StringFieldUpdateOperationsInput | string
|
|
79835
80094
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
80095
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
79836
80096
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79837
80097
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79838
80098
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -79985,6 +80245,7 @@ export namespace Prisma {
|
|
|
79985
80245
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
79986
80246
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
79987
80247
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
80248
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
79988
80249
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
79989
80250
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
79990
80251
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -80045,6 +80306,7 @@ export namespace Prisma {
|
|
|
80045
80306
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
80046
80307
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
80047
80308
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
80309
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
80048
80310
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
80049
80311
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
80050
80312
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -80081,6 +80343,7 @@ export namespace Prisma {
|
|
|
80081
80343
|
phone: string
|
|
80082
80344
|
address: string
|
|
80083
80345
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
80346
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
80084
80347
|
created_at?: Date | string
|
|
80085
80348
|
updated_at?: Date | string
|
|
80086
80349
|
created_by: string
|
|
@@ -80117,6 +80380,7 @@ export namespace Prisma {
|
|
|
80117
80380
|
phone: string
|
|
80118
80381
|
address: string
|
|
80119
80382
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
80383
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
80120
80384
|
created_at?: Date | string
|
|
80121
80385
|
updated_at?: Date | string
|
|
80122
80386
|
created_by: string
|
|
@@ -80198,6 +80462,7 @@ export namespace Prisma {
|
|
|
80198
80462
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
80199
80463
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
80200
80464
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
80465
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
80201
80466
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
80202
80467
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
80203
80468
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -80258,6 +80523,7 @@ export namespace Prisma {
|
|
|
80258
80523
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
80259
80524
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
80260
80525
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
80526
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
80261
80527
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
80262
80528
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
80263
80529
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -80300,6 +80566,7 @@ export namespace Prisma {
|
|
|
80300
80566
|
phone?: StringFieldUpdateOperationsInput | string
|
|
80301
80567
|
address?: StringFieldUpdateOperationsInput | string
|
|
80302
80568
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
80569
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
80303
80570
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80304
80571
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80305
80572
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -80336,6 +80603,7 @@ export namespace Prisma {
|
|
|
80336
80603
|
phone?: StringFieldUpdateOperationsInput | string
|
|
80337
80604
|
address?: StringFieldUpdateOperationsInput | string
|
|
80338
80605
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
80606
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
80339
80607
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80340
80608
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80341
80609
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -80401,6 +80669,7 @@ export namespace Prisma {
|
|
|
80401
80669
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
80402
80670
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
80403
80671
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
80672
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
80404
80673
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
80405
80674
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
80406
80675
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -80461,6 +80730,7 @@ export namespace Prisma {
|
|
|
80461
80730
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
80462
80731
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
80463
80732
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
80733
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
80464
80734
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
80465
80735
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
80466
80736
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -80588,6 +80858,7 @@ export namespace Prisma {
|
|
|
80588
80858
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
80589
80859
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
80590
80860
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
80861
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
80591
80862
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
80592
80863
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
80593
80864
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -80648,6 +80919,7 @@ export namespace Prisma {
|
|
|
80648
80919
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
80649
80920
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
80650
80921
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
80922
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
80651
80923
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
80652
80924
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
80653
80925
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -80823,6 +81095,7 @@ export namespace Prisma {
|
|
|
80823
81095
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
80824
81096
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
80825
81097
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
81098
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
80826
81099
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
80827
81100
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
80828
81101
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -80883,6 +81156,7 @@ export namespace Prisma {
|
|
|
80883
81156
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
80884
81157
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
80885
81158
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
81159
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
80886
81160
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
80887
81161
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
80888
81162
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -80920,6 +81194,7 @@ export namespace Prisma {
|
|
|
80920
81194
|
phone: string
|
|
80921
81195
|
address: string
|
|
80922
81196
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
81197
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
80923
81198
|
created_at?: Date | string
|
|
80924
81199
|
updated_at?: Date | string
|
|
80925
81200
|
created_by: string
|
|
@@ -80956,6 +81231,7 @@ export namespace Prisma {
|
|
|
80956
81231
|
phone: string
|
|
80957
81232
|
address: string
|
|
80958
81233
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
81234
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
80959
81235
|
created_at?: Date | string
|
|
80960
81236
|
updated_at?: Date | string
|
|
80961
81237
|
created_by: string
|
|
@@ -81552,6 +81828,7 @@ export namespace Prisma {
|
|
|
81552
81828
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
81553
81829
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
81554
81830
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
81831
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
81555
81832
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
81556
81833
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
81557
81834
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -81612,6 +81889,7 @@ export namespace Prisma {
|
|
|
81612
81889
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
81613
81890
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
81614
81891
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
81892
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
81615
81893
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
81616
81894
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
81617
81895
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -81655,6 +81933,7 @@ export namespace Prisma {
|
|
|
81655
81933
|
phone?: StringFieldUpdateOperationsInput | string
|
|
81656
81934
|
address?: StringFieldUpdateOperationsInput | string
|
|
81657
81935
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
81936
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
81658
81937
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81659
81938
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81660
81939
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -81691,6 +81970,7 @@ export namespace Prisma {
|
|
|
81691
81970
|
phone?: StringFieldUpdateOperationsInput | string
|
|
81692
81971
|
address?: StringFieldUpdateOperationsInput | string
|
|
81693
81972
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
81973
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
81694
81974
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81695
81975
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81696
81976
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -82225,6 +82505,7 @@ export namespace Prisma {
|
|
|
82225
82505
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
82226
82506
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
82227
82507
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
82508
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
82228
82509
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
82229
82510
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
82230
82511
|
candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
|
|
@@ -82285,6 +82566,7 @@ export namespace Prisma {
|
|
|
82285
82566
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
82286
82567
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
82287
82568
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
82569
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
82288
82570
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
82289
82571
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
82290
82572
|
candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
|
|
@@ -82321,6 +82603,7 @@ export namespace Prisma {
|
|
|
82321
82603
|
phone: string
|
|
82322
82604
|
address: string
|
|
82323
82605
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
82606
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
82324
82607
|
created_at?: Date | string
|
|
82325
82608
|
updated_at?: Date | string
|
|
82326
82609
|
created_by: string
|
|
@@ -82357,6 +82640,7 @@ export namespace Prisma {
|
|
|
82357
82640
|
phone: string
|
|
82358
82641
|
address: string
|
|
82359
82642
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
82643
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
82360
82644
|
created_at?: Date | string
|
|
82361
82645
|
updated_at?: Date | string
|
|
82362
82646
|
created_by: string
|
|
@@ -82519,6 +82803,7 @@ export namespace Prisma {
|
|
|
82519
82803
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
82520
82804
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
82521
82805
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
82806
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
82522
82807
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
82523
82808
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
82524
82809
|
candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
|
|
@@ -82579,6 +82864,7 @@ export namespace Prisma {
|
|
|
82579
82864
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
82580
82865
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
82581
82866
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
82867
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
82582
82868
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
82583
82869
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
82584
82870
|
candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
|
|
@@ -82621,6 +82907,7 @@ export namespace Prisma {
|
|
|
82621
82907
|
phone?: StringFieldUpdateOperationsInput | string
|
|
82622
82908
|
address?: StringFieldUpdateOperationsInput | string
|
|
82623
82909
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
82910
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
82624
82911
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82625
82912
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82626
82913
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -82657,6 +82944,7 @@ export namespace Prisma {
|
|
|
82657
82944
|
phone?: StringFieldUpdateOperationsInput | string
|
|
82658
82945
|
address?: StringFieldUpdateOperationsInput | string
|
|
82659
82946
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
82947
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
82660
82948
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82661
82949
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82662
82950
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -82767,6 +83055,7 @@ export namespace Prisma {
|
|
|
82767
83055
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
82768
83056
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
82769
83057
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
83058
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
82770
83059
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
82771
83060
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
82772
83061
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -82827,6 +83116,7 @@ export namespace Prisma {
|
|
|
82827
83116
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
82828
83117
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
82829
83118
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
83119
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
82830
83120
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
82831
83121
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
82832
83122
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -82892,6 +83182,7 @@ export namespace Prisma {
|
|
|
82892
83182
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
82893
83183
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
82894
83184
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
83185
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
82895
83186
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
82896
83187
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
82897
83188
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -82952,6 +83243,7 @@ export namespace Prisma {
|
|
|
82952
83243
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
82953
83244
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
82954
83245
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
83246
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
82955
83247
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
82956
83248
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
82957
83249
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -83046,6 +83338,7 @@ export namespace Prisma {
|
|
|
83046
83338
|
phone: string
|
|
83047
83339
|
address: string
|
|
83048
83340
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
83341
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
83049
83342
|
created_at?: Date | string
|
|
83050
83343
|
updated_at?: Date | string
|
|
83051
83344
|
created_by: string
|
|
@@ -83082,6 +83375,7 @@ export namespace Prisma {
|
|
|
83082
83375
|
phone: string
|
|
83083
83376
|
address: string
|
|
83084
83377
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
83378
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
83085
83379
|
created_at?: Date | string
|
|
83086
83380
|
updated_at?: Date | string
|
|
83087
83381
|
created_by: string
|
|
@@ -83152,6 +83446,7 @@ export namespace Prisma {
|
|
|
83152
83446
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
83153
83447
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
83154
83448
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
83449
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
83155
83450
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
83156
83451
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
83157
83452
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -83212,6 +83507,7 @@ export namespace Prisma {
|
|
|
83212
83507
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
83213
83508
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
83214
83509
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
83510
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
83215
83511
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
83216
83512
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
83217
83513
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -83412,6 +83708,7 @@ export namespace Prisma {
|
|
|
83412
83708
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
83413
83709
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
83414
83710
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
83711
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
83415
83712
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
83416
83713
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
83417
83714
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -83472,6 +83769,7 @@ export namespace Prisma {
|
|
|
83472
83769
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
83473
83770
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
83474
83771
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
83772
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
83475
83773
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
83476
83774
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
83477
83775
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -83543,6 +83841,7 @@ export namespace Prisma {
|
|
|
83543
83841
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
83544
83842
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
83545
83843
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
83844
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
83546
83845
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
83547
83846
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
83548
83847
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -83603,6 +83902,7 @@ export namespace Prisma {
|
|
|
83603
83902
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
83604
83903
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
83605
83904
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
83905
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
83606
83906
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
83607
83907
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
83608
83908
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -83704,6 +84004,7 @@ export namespace Prisma {
|
|
|
83704
84004
|
phone?: StringFieldUpdateOperationsInput | string
|
|
83705
84005
|
address?: StringFieldUpdateOperationsInput | string
|
|
83706
84006
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
84007
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
83707
84008
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83708
84009
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83709
84010
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -83740,6 +84041,7 @@ export namespace Prisma {
|
|
|
83740
84041
|
phone?: StringFieldUpdateOperationsInput | string
|
|
83741
84042
|
address?: StringFieldUpdateOperationsInput | string
|
|
83742
84043
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
84044
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
83743
84045
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83744
84046
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83745
84047
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -83816,6 +84118,7 @@ export namespace Prisma {
|
|
|
83816
84118
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
83817
84119
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
83818
84120
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
84121
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
83819
84122
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
83820
84123
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
83821
84124
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -83876,6 +84179,7 @@ export namespace Prisma {
|
|
|
83876
84179
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
83877
84180
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
83878
84181
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
84182
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
83879
84183
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
83880
84184
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
83881
84185
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -83986,6 +84290,7 @@ export namespace Prisma {
|
|
|
83986
84290
|
phone: string
|
|
83987
84291
|
address: string
|
|
83988
84292
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
84293
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
83989
84294
|
created_at?: Date | string
|
|
83990
84295
|
updated_at?: Date | string
|
|
83991
84296
|
created_by: string
|
|
@@ -84022,6 +84327,7 @@ export namespace Prisma {
|
|
|
84022
84327
|
phone: string
|
|
84023
84328
|
address: string
|
|
84024
84329
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
84330
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
84025
84331
|
created_at?: Date | string
|
|
84026
84332
|
updated_at?: Date | string
|
|
84027
84333
|
created_by: string
|
|
@@ -84242,6 +84548,7 @@ export namespace Prisma {
|
|
|
84242
84548
|
phone?: StringFieldUpdateOperationsInput | string
|
|
84243
84549
|
address?: StringFieldUpdateOperationsInput | string
|
|
84244
84550
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
84551
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
84245
84552
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84246
84553
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84247
84554
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -84278,6 +84585,7 @@ export namespace Prisma {
|
|
|
84278
84585
|
phone?: StringFieldUpdateOperationsInput | string
|
|
84279
84586
|
address?: StringFieldUpdateOperationsInput | string
|
|
84280
84587
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
84588
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
84281
84589
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84282
84590
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84283
84591
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -84663,6 +84971,7 @@ export namespace Prisma {
|
|
|
84663
84971
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
84664
84972
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
84665
84973
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
84974
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
84666
84975
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
84667
84976
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
84668
84977
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -84723,6 +85032,7 @@ export namespace Prisma {
|
|
|
84723
85032
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
84724
85033
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
84725
85034
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
85035
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
84726
85036
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
84727
85037
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
84728
85038
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -84821,6 +85131,7 @@ export namespace Prisma {
|
|
|
84821
85131
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
84822
85132
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
84823
85133
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
85134
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
84824
85135
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
84825
85136
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
84826
85137
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -84881,6 +85192,7 @@ export namespace Prisma {
|
|
|
84881
85192
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
84882
85193
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
84883
85194
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
85195
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
84884
85196
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
84885
85197
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
84886
85198
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -84917,6 +85229,7 @@ export namespace Prisma {
|
|
|
84917
85229
|
phone: string
|
|
84918
85230
|
address: string
|
|
84919
85231
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
85232
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
84920
85233
|
created_at?: Date | string
|
|
84921
85234
|
updated_at?: Date | string
|
|
84922
85235
|
created_by: string
|
|
@@ -84953,6 +85266,7 @@ export namespace Prisma {
|
|
|
84953
85266
|
phone: string
|
|
84954
85267
|
address: string
|
|
84955
85268
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
85269
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
84956
85270
|
created_at?: Date | string
|
|
84957
85271
|
updated_at?: Date | string
|
|
84958
85272
|
created_by: string
|
|
@@ -85233,6 +85547,7 @@ export namespace Prisma {
|
|
|
85233
85547
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
85234
85548
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
85235
85549
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
85550
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
85236
85551
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
85237
85552
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
85238
85553
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -85293,6 +85608,7 @@ export namespace Prisma {
|
|
|
85293
85608
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
85294
85609
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
85295
85610
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
85611
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
85296
85612
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
85297
85613
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
85298
85614
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -85403,6 +85719,7 @@ export namespace Prisma {
|
|
|
85403
85719
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
85404
85720
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
85405
85721
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
85722
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
85406
85723
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
85407
85724
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
85408
85725
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -85463,6 +85780,7 @@ export namespace Prisma {
|
|
|
85463
85780
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
85464
85781
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
85465
85782
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
85783
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
85466
85784
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
85467
85785
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
85468
85786
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -85505,6 +85823,7 @@ export namespace Prisma {
|
|
|
85505
85823
|
phone?: StringFieldUpdateOperationsInput | string
|
|
85506
85824
|
address?: StringFieldUpdateOperationsInput | string
|
|
85507
85825
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
85826
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
85508
85827
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
85509
85828
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
85510
85829
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -85541,6 +85860,7 @@ export namespace Prisma {
|
|
|
85541
85860
|
phone?: StringFieldUpdateOperationsInput | string
|
|
85542
85861
|
address?: StringFieldUpdateOperationsInput | string
|
|
85543
85862
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
85863
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
85544
85864
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
85545
85865
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
85546
85866
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -85794,6 +86114,7 @@ export namespace Prisma {
|
|
|
85794
86114
|
phone: string
|
|
85795
86115
|
address: string
|
|
85796
86116
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
86117
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
85797
86118
|
created_at?: Date | string
|
|
85798
86119
|
updated_at?: Date | string
|
|
85799
86120
|
created_by: string
|
|
@@ -85830,6 +86151,7 @@ export namespace Prisma {
|
|
|
85830
86151
|
phone: string
|
|
85831
86152
|
address: string
|
|
85832
86153
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
86154
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
85833
86155
|
created_at?: Date | string
|
|
85834
86156
|
updated_at?: Date | string
|
|
85835
86157
|
created_by: string
|
|
@@ -86077,6 +86399,7 @@ export namespace Prisma {
|
|
|
86077
86399
|
phone?: StringFieldUpdateOperationsInput | string
|
|
86078
86400
|
address?: StringFieldUpdateOperationsInput | string
|
|
86079
86401
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
86402
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
86080
86403
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86081
86404
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86082
86405
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -86113,6 +86436,7 @@ export namespace Prisma {
|
|
|
86113
86436
|
phone?: StringFieldUpdateOperationsInput | string
|
|
86114
86437
|
address?: StringFieldUpdateOperationsInput | string
|
|
86115
86438
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
86439
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
86116
86440
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86117
86441
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86118
86442
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -86447,6 +86771,7 @@ export namespace Prisma {
|
|
|
86447
86771
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
86448
86772
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
86449
86773
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
86774
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
86450
86775
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
86451
86776
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
86452
86777
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -86507,6 +86832,7 @@ export namespace Prisma {
|
|
|
86507
86832
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
86508
86833
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
86509
86834
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
86835
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
86510
86836
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
86511
86837
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
86512
86838
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -86583,6 +86909,7 @@ export namespace Prisma {
|
|
|
86583
86909
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
86584
86910
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
86585
86911
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
86912
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
86586
86913
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
86587
86914
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
86588
86915
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -86643,6 +86970,7 @@ export namespace Prisma {
|
|
|
86643
86970
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
86644
86971
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
86645
86972
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
86973
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
86646
86974
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
86647
86975
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
86648
86976
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -86702,6 +87030,7 @@ export namespace Prisma {
|
|
|
86702
87030
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
86703
87031
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
86704
87032
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
87033
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
86705
87034
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
86706
87035
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
86707
87036
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -86762,6 +87091,7 @@ export namespace Prisma {
|
|
|
86762
87091
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
86763
87092
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
86764
87093
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
87094
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
86765
87095
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
86766
87096
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
86767
87097
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -86885,6 +87215,7 @@ export namespace Prisma {
|
|
|
86885
87215
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
86886
87216
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
86887
87217
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
87218
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
86888
87219
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
86889
87220
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
86890
87221
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -86945,6 +87276,7 @@ export namespace Prisma {
|
|
|
86945
87276
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
86946
87277
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
86947
87278
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
87279
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
86948
87280
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
86949
87281
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
86950
87282
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -87891,6 +88223,7 @@ export namespace Prisma {
|
|
|
87891
88223
|
phone: string
|
|
87892
88224
|
address: string
|
|
87893
88225
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
88226
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
87894
88227
|
created_at?: Date | string
|
|
87895
88228
|
updated_at?: Date | string
|
|
87896
88229
|
created_by: string
|
|
@@ -87927,6 +88260,7 @@ export namespace Prisma {
|
|
|
87927
88260
|
phone: string
|
|
87928
88261
|
address: string
|
|
87929
88262
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
88263
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
87930
88264
|
created_at?: Date | string
|
|
87931
88265
|
updated_at?: Date | string
|
|
87932
88266
|
created_by: string
|
|
@@ -87997,6 +88331,7 @@ export namespace Prisma {
|
|
|
87997
88331
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
87998
88332
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
87999
88333
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
88334
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
88000
88335
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
88001
88336
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
88002
88337
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -88057,6 +88392,7 @@ export namespace Prisma {
|
|
|
88057
88392
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
88058
88393
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
88059
88394
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
88395
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
88060
88396
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
88061
88397
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
88062
88398
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -88277,6 +88613,7 @@ export namespace Prisma {
|
|
|
88277
88613
|
phone?: StringFieldUpdateOperationsInput | string
|
|
88278
88614
|
address?: StringFieldUpdateOperationsInput | string
|
|
88279
88615
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
88616
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
88280
88617
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
88281
88618
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
88282
88619
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -88313,6 +88650,7 @@ export namespace Prisma {
|
|
|
88313
88650
|
phone?: StringFieldUpdateOperationsInput | string
|
|
88314
88651
|
address?: StringFieldUpdateOperationsInput | string
|
|
88315
88652
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
88653
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
88316
88654
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
88317
88655
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
88318
88656
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -88389,6 +88727,7 @@ export namespace Prisma {
|
|
|
88389
88727
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
88390
88728
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
88391
88729
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
88730
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
88392
88731
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
88393
88732
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
88394
88733
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -88449,6 +88788,7 @@ export namespace Prisma {
|
|
|
88449
88788
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
88450
88789
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
88451
88790
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
88791
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
88452
88792
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
88453
88793
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
88454
88794
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -88700,6 +89040,7 @@ export namespace Prisma {
|
|
|
88700
89040
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
88701
89041
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
88702
89042
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
89043
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
88703
89044
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
88704
89045
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
88705
89046
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -88760,6 +89101,7 @@ export namespace Prisma {
|
|
|
88760
89101
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
88761
89102
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
88762
89103
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
89104
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
88763
89105
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
88764
89106
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
88765
89107
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -88836,6 +89178,7 @@ export namespace Prisma {
|
|
|
88836
89178
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
88837
89179
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
88838
89180
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
89181
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
88839
89182
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
88840
89183
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
88841
89184
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -88896,6 +89239,7 @@ export namespace Prisma {
|
|
|
88896
89239
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
88897
89240
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
88898
89241
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
89242
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
88899
89243
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
88900
89244
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
88901
89245
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -88927,6 +89271,7 @@ export namespace Prisma {
|
|
|
88927
89271
|
phone: string
|
|
88928
89272
|
address: string
|
|
88929
89273
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
89274
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
88930
89275
|
created_at?: Date | string
|
|
88931
89276
|
updated_at?: Date | string
|
|
88932
89277
|
created_by: string
|
|
@@ -88963,6 +89308,7 @@ export namespace Prisma {
|
|
|
88963
89308
|
phone: string
|
|
88964
89309
|
address: string
|
|
88965
89310
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
89311
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
88966
89312
|
created_at?: Date | string
|
|
88967
89313
|
updated_at?: Date | string
|
|
88968
89314
|
created_by: string
|
|
@@ -89015,6 +89361,7 @@ export namespace Prisma {
|
|
|
89015
89361
|
phone?: StringFieldUpdateOperationsInput | string
|
|
89016
89362
|
address?: StringFieldUpdateOperationsInput | string
|
|
89017
89363
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
89364
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
89018
89365
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89019
89366
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89020
89367
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89051,6 +89398,7 @@ export namespace Prisma {
|
|
|
89051
89398
|
phone?: StringFieldUpdateOperationsInput | string
|
|
89052
89399
|
address?: StringFieldUpdateOperationsInput | string
|
|
89053
89400
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
89401
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
89054
89402
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89055
89403
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89056
89404
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89243,6 +89591,7 @@ export namespace Prisma {
|
|
|
89243
89591
|
phone: string
|
|
89244
89592
|
address: string
|
|
89245
89593
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
89594
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
89246
89595
|
created_at?: Date | string
|
|
89247
89596
|
updated_at?: Date | string
|
|
89248
89597
|
created_by: string
|
|
@@ -89279,6 +89628,7 @@ export namespace Prisma {
|
|
|
89279
89628
|
phone: string
|
|
89280
89629
|
address: string
|
|
89281
89630
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
89631
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
89282
89632
|
created_at?: Date | string
|
|
89283
89633
|
updated_at?: Date | string
|
|
89284
89634
|
created_by: string
|
|
@@ -89331,6 +89681,7 @@ export namespace Prisma {
|
|
|
89331
89681
|
phone?: StringFieldUpdateOperationsInput | string
|
|
89332
89682
|
address?: StringFieldUpdateOperationsInput | string
|
|
89333
89683
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
89684
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
89334
89685
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89335
89686
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89336
89687
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89367,6 +89718,7 @@ export namespace Prisma {
|
|
|
89367
89718
|
phone?: StringFieldUpdateOperationsInput | string
|
|
89368
89719
|
address?: StringFieldUpdateOperationsInput | string
|
|
89369
89720
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
89721
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
89370
89722
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89371
89723
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89372
89724
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89432,6 +89784,7 @@ export namespace Prisma {
|
|
|
89432
89784
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
89433
89785
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
89434
89786
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
89787
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
89435
89788
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
89436
89789
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
89437
89790
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -89492,6 +89845,7 @@ export namespace Prisma {
|
|
|
89492
89845
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
89493
89846
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
89494
89847
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
89848
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
89495
89849
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
89496
89850
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
89497
89851
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -89557,6 +89911,7 @@ export namespace Prisma {
|
|
|
89557
89911
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
89558
89912
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
89559
89913
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
89914
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
89560
89915
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
89561
89916
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
89562
89917
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -89617,6 +89972,7 @@ export namespace Prisma {
|
|
|
89617
89972
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
89618
89973
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
89619
89974
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
89975
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
89620
89976
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
89621
89977
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
89622
89978
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -89653,6 +90009,7 @@ export namespace Prisma {
|
|
|
89653
90009
|
phone: string
|
|
89654
90010
|
address: string
|
|
89655
90011
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
90012
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
89656
90013
|
created_at?: Date | string
|
|
89657
90014
|
updated_at?: Date | string
|
|
89658
90015
|
created_by: string
|
|
@@ -89689,6 +90046,7 @@ export namespace Prisma {
|
|
|
89689
90046
|
phone: string
|
|
89690
90047
|
address: string
|
|
89691
90048
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
90049
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
89692
90050
|
created_at?: Date | string
|
|
89693
90051
|
updated_at?: Date | string
|
|
89694
90052
|
created_by: string
|
|
@@ -90255,6 +90613,7 @@ export namespace Prisma {
|
|
|
90255
90613
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
90256
90614
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
90257
90615
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
90616
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
90258
90617
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
90259
90618
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
90260
90619
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -90315,6 +90674,7 @@ export namespace Prisma {
|
|
|
90315
90674
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
90316
90675
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
90317
90676
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
90677
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
90318
90678
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
90319
90679
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
90320
90680
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -90386,6 +90746,7 @@ export namespace Prisma {
|
|
|
90386
90746
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
90387
90747
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
90388
90748
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
90749
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
90389
90750
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
90390
90751
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
90391
90752
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -90446,6 +90807,7 @@ export namespace Prisma {
|
|
|
90446
90807
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
90447
90808
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
90448
90809
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
90810
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
90449
90811
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
90450
90812
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
90451
90813
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -90488,6 +90850,7 @@ export namespace Prisma {
|
|
|
90488
90850
|
phone?: StringFieldUpdateOperationsInput | string
|
|
90489
90851
|
address?: StringFieldUpdateOperationsInput | string
|
|
90490
90852
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
90853
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
90491
90854
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
90492
90855
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
90493
90856
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -90524,6 +90887,7 @@ export namespace Prisma {
|
|
|
90524
90887
|
phone?: StringFieldUpdateOperationsInput | string
|
|
90525
90888
|
address?: StringFieldUpdateOperationsInput | string
|
|
90526
90889
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
90890
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
90527
90891
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
90528
90892
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
90529
90893
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -91231,11 +91595,13 @@ export namespace Prisma {
|
|
|
91231
91595
|
title?: string | null
|
|
91232
91596
|
role_type?: string | null
|
|
91233
91597
|
work_arrangement?: string | null
|
|
91598
|
+
employment_type?: string | null
|
|
91234
91599
|
location?: string | null
|
|
91235
91600
|
experience_min?: string | null
|
|
91236
91601
|
reporting?: string | null
|
|
91237
91602
|
comp_range?: string | null
|
|
91238
91603
|
comp_benchmark?: string | null
|
|
91604
|
+
budget?: string | null
|
|
91239
91605
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
91240
91606
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
91241
91607
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -91251,6 +91617,7 @@ export namespace Prisma {
|
|
|
91251
91617
|
updated_at?: Date | string
|
|
91252
91618
|
is_active?: boolean
|
|
91253
91619
|
organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
|
|
91620
|
+
hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
|
|
91254
91621
|
creator: UserCreateNestedOneWithoutCreated_job_profilesInput
|
|
91255
91622
|
assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
|
|
91256
91623
|
}
|
|
@@ -91258,17 +91625,20 @@ export namespace Prisma {
|
|
|
91258
91625
|
export type JobProfileUncheckedCreateWithoutJob_descriptionsInput = {
|
|
91259
91626
|
id?: string
|
|
91260
91627
|
organisation_id: string
|
|
91628
|
+
hiring_manager_id?: string | null
|
|
91261
91629
|
created_by: string
|
|
91262
91630
|
assigned_to?: string | null
|
|
91263
91631
|
status?: $Enums.JobProfileStatus
|
|
91264
91632
|
title?: string | null
|
|
91265
91633
|
role_type?: string | null
|
|
91266
91634
|
work_arrangement?: string | null
|
|
91635
|
+
employment_type?: string | null
|
|
91267
91636
|
location?: string | null
|
|
91268
91637
|
experience_min?: string | null
|
|
91269
91638
|
reporting?: string | null
|
|
91270
91639
|
comp_range?: string | null
|
|
91271
91640
|
comp_benchmark?: string | null
|
|
91641
|
+
budget?: string | null
|
|
91272
91642
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
91273
91643
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
91274
91644
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -91300,6 +91670,7 @@ export namespace Prisma {
|
|
|
91300
91670
|
phone: string
|
|
91301
91671
|
address: string
|
|
91302
91672
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
91673
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
91303
91674
|
created_at?: Date | string
|
|
91304
91675
|
updated_at?: Date | string
|
|
91305
91676
|
created_by: string
|
|
@@ -91336,6 +91707,7 @@ export namespace Prisma {
|
|
|
91336
91707
|
phone: string
|
|
91337
91708
|
address: string
|
|
91338
91709
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
91710
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
91339
91711
|
created_at?: Date | string
|
|
91340
91712
|
updated_at?: Date | string
|
|
91341
91713
|
created_by: string
|
|
@@ -92030,6 +92402,7 @@ export namespace Prisma {
|
|
|
92030
92402
|
candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
|
|
92031
92403
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
92032
92404
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
92405
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
92033
92406
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
92034
92407
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
92035
92408
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -92090,6 +92463,7 @@ export namespace Prisma {
|
|
|
92090
92463
|
candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
|
|
92091
92464
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
92092
92465
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
92466
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
92093
92467
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
92094
92468
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
92095
92469
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -92155,6 +92529,7 @@ export namespace Prisma {
|
|
|
92155
92529
|
candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
|
|
92156
92530
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
92157
92531
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
92532
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
92158
92533
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
92159
92534
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
92160
92535
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -92215,6 +92590,7 @@ export namespace Prisma {
|
|
|
92215
92590
|
candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
|
|
92216
92591
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
92217
92592
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
92593
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
92218
92594
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
92219
92595
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
92220
92596
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -92337,11 +92713,13 @@ export namespace Prisma {
|
|
|
92337
92713
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92338
92714
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92339
92715
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92716
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92340
92717
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92341
92718
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92342
92719
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92343
92720
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92344
92721
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92722
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92345
92723
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
92346
92724
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
92347
92725
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -92357,6 +92735,7 @@ export namespace Prisma {
|
|
|
92357
92735
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
92358
92736
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
92359
92737
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
|
|
92738
|
+
hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
|
|
92360
92739
|
creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
|
|
92361
92740
|
assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
|
|
92362
92741
|
}
|
|
@@ -92364,17 +92743,20 @@ export namespace Prisma {
|
|
|
92364
92743
|
export type JobProfileUncheckedUpdateWithoutJob_descriptionsInput = {
|
|
92365
92744
|
id?: StringFieldUpdateOperationsInput | string
|
|
92366
92745
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
92746
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92367
92747
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
92368
92748
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92369
92749
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
92370
92750
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92371
92751
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92372
92752
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92753
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92373
92754
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92374
92755
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92375
92756
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92376
92757
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92377
92758
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92759
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92378
92760
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
92379
92761
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
92380
92762
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -92412,6 +92794,7 @@ export namespace Prisma {
|
|
|
92412
92794
|
phone?: StringFieldUpdateOperationsInput | string
|
|
92413
92795
|
address?: StringFieldUpdateOperationsInput | string
|
|
92414
92796
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
92797
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
92415
92798
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
92416
92799
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
92417
92800
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -92448,6 +92831,7 @@ export namespace Prisma {
|
|
|
92448
92831
|
phone?: StringFieldUpdateOperationsInput | string
|
|
92449
92832
|
address?: StringFieldUpdateOperationsInput | string
|
|
92450
92833
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
92834
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
92451
92835
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
92452
92836
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
92453
92837
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -92840,6 +93224,7 @@ export namespace Prisma {
|
|
|
92840
93224
|
candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
|
|
92841
93225
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
92842
93226
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
93227
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
92843
93228
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
92844
93229
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
92845
93230
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -92900,6 +93285,7 @@ export namespace Prisma {
|
|
|
92900
93285
|
candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
92901
93286
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
92902
93287
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
93288
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
92903
93289
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
92904
93290
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
92905
93291
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -93152,6 +93538,7 @@ export namespace Prisma {
|
|
|
93152
93538
|
phone: string
|
|
93153
93539
|
address: string
|
|
93154
93540
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
93541
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
93155
93542
|
created_at?: Date | string
|
|
93156
93543
|
updated_at?: Date | string
|
|
93157
93544
|
created_by: string
|
|
@@ -93188,6 +93575,7 @@ export namespace Prisma {
|
|
|
93188
93575
|
phone: string
|
|
93189
93576
|
address: string
|
|
93190
93577
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
93578
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
93191
93579
|
created_at?: Date | string
|
|
93192
93580
|
updated_at?: Date | string
|
|
93193
93581
|
created_by: string
|
|
@@ -93219,6 +93607,133 @@ export namespace Prisma {
|
|
|
93219
93607
|
create: XOR<OrganisationCreateWithoutJob_profilesInput, OrganisationUncheckedCreateWithoutJob_profilesInput>
|
|
93220
93608
|
}
|
|
93221
93609
|
|
|
93610
|
+
export type UserCreateWithoutHiring_manager_job_profilesInput = {
|
|
93611
|
+
id?: string
|
|
93612
|
+
email: string
|
|
93613
|
+
password: string
|
|
93614
|
+
google_id?: string | null
|
|
93615
|
+
refresh_token?: string | null
|
|
93616
|
+
created_at?: Date | string
|
|
93617
|
+
updated_at?: Date | string
|
|
93618
|
+
created_by: string
|
|
93619
|
+
updated_by: string
|
|
93620
|
+
is_active?: boolean
|
|
93621
|
+
is_self_registered?: boolean
|
|
93622
|
+
profile_created: boolean
|
|
93623
|
+
first_login_status?: $Enums.FirstLoginStatus
|
|
93624
|
+
name?: string | null
|
|
93625
|
+
phone?: string | null
|
|
93626
|
+
description?: string | null
|
|
93627
|
+
date_of_birth?: Date | string | null
|
|
93628
|
+
designation?: string | null
|
|
93629
|
+
location?: string | null
|
|
93630
|
+
salary?: string | null
|
|
93631
|
+
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
93632
|
+
education?: NullableJsonNullValueInput | InputJsonValue
|
|
93633
|
+
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
93634
|
+
notice_period?: string | null
|
|
93635
|
+
preferred_work_mode?: string | null
|
|
93636
|
+
gender?: string | null
|
|
93637
|
+
ethnicity?: string | null
|
|
93638
|
+
veteran_status?: string | null
|
|
93639
|
+
disability_status?: string | null
|
|
93640
|
+
role: UserRoleCreateNestedOneWithoutUsersInput
|
|
93641
|
+
permission?: PermissionCreateNestedOneWithoutUserInput
|
|
93642
|
+
organisation?: OrganisationCreateNestedOneWithoutInterviewersInput
|
|
93643
|
+
applications?: ApplicationCreateNestedManyWithoutCandidateInput
|
|
93644
|
+
resume?: ResumeCreateNestedManyWithoutUserInput
|
|
93645
|
+
candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
|
|
93646
|
+
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
93647
|
+
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
93648
|
+
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
93649
|
+
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
93650
|
+
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
93651
|
+
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
93652
|
+
candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
|
|
93653
|
+
interviewer_interviews?: InterviewCreateNestedManyWithoutInterviewerInput
|
|
93654
|
+
assessment_results?: AssessmentCreateNestedManyWithoutUserInput
|
|
93655
|
+
candidate_assessments?: AssessmentCreateNestedManyWithoutCandidateInput
|
|
93656
|
+
reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
|
|
93657
|
+
candidate_assignments?: AssignmentCreateNestedManyWithoutCandidateInput
|
|
93658
|
+
reviewer_assignments?: AssignmentCreateNestedManyWithoutReviewerInput
|
|
93659
|
+
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
93660
|
+
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
93661
|
+
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
93662
|
+
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
93663
|
+
actions?: ActionCreateNestedManyWithoutUserInput
|
|
93664
|
+
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
93665
|
+
google?: GoogleCreateNestedOneWithoutUserInput
|
|
93666
|
+
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
93667
|
+
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
93668
|
+
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
93669
|
+
}
|
|
93670
|
+
|
|
93671
|
+
export type UserUncheckedCreateWithoutHiring_manager_job_profilesInput = {
|
|
93672
|
+
id?: string
|
|
93673
|
+
email: string
|
|
93674
|
+
password: string
|
|
93675
|
+
role_id: string
|
|
93676
|
+
google_id?: string | null
|
|
93677
|
+
refresh_token?: string | null
|
|
93678
|
+
created_at?: Date | string
|
|
93679
|
+
updated_at?: Date | string
|
|
93680
|
+
created_by: string
|
|
93681
|
+
updated_by: string
|
|
93682
|
+
is_active?: boolean
|
|
93683
|
+
is_self_registered?: boolean
|
|
93684
|
+
permission_id?: string | null
|
|
93685
|
+
organisation_id?: string | null
|
|
93686
|
+
profile_created: boolean
|
|
93687
|
+
first_login_status?: $Enums.FirstLoginStatus
|
|
93688
|
+
name?: string | null
|
|
93689
|
+
phone?: string | null
|
|
93690
|
+
description?: string | null
|
|
93691
|
+
date_of_birth?: Date | string | null
|
|
93692
|
+
designation?: string | null
|
|
93693
|
+
location?: string | null
|
|
93694
|
+
salary?: string | null
|
|
93695
|
+
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
93696
|
+
education?: NullableJsonNullValueInput | InputJsonValue
|
|
93697
|
+
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
93698
|
+
notice_period?: string | null
|
|
93699
|
+
preferred_work_mode?: string | null
|
|
93700
|
+
gender?: string | null
|
|
93701
|
+
ethnicity?: string | null
|
|
93702
|
+
veteran_status?: string | null
|
|
93703
|
+
disability_status?: string | null
|
|
93704
|
+
applications?: ApplicationUncheckedCreateNestedManyWithoutCandidateInput
|
|
93705
|
+
resume?: ResumeUncheckedCreateNestedManyWithoutUserInput
|
|
93706
|
+
candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
|
|
93707
|
+
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
93708
|
+
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
93709
|
+
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
93710
|
+
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
93711
|
+
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
93712
|
+
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
93713
|
+
candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
|
|
93714
|
+
interviewer_interviews?: InterviewUncheckedCreateNestedManyWithoutInterviewerInput
|
|
93715
|
+
assessment_results?: AssessmentUncheckedCreateNestedManyWithoutUserInput
|
|
93716
|
+
candidate_assessments?: AssessmentUncheckedCreateNestedManyWithoutCandidateInput
|
|
93717
|
+
reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
93718
|
+
candidate_assignments?: AssignmentUncheckedCreateNestedManyWithoutCandidateInput
|
|
93719
|
+
reviewer_assignments?: AssignmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
93720
|
+
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
93721
|
+
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
93722
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
93723
|
+
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
93724
|
+
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
93725
|
+
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
93726
|
+
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
93727
|
+
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
93728
|
+
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
93729
|
+
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
93730
|
+
}
|
|
93731
|
+
|
|
93732
|
+
export type UserCreateOrConnectWithoutHiring_manager_job_profilesInput = {
|
|
93733
|
+
where: UserWhereUniqueInput
|
|
93734
|
+
create: XOR<UserCreateWithoutHiring_manager_job_profilesInput, UserUncheckedCreateWithoutHiring_manager_job_profilesInput>
|
|
93735
|
+
}
|
|
93736
|
+
|
|
93222
93737
|
export type UserCreateWithoutCreated_job_profilesInput = {
|
|
93223
93738
|
id?: string
|
|
93224
93739
|
email: string
|
|
@@ -93258,6 +93773,7 @@ export namespace Prisma {
|
|
|
93258
93773
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
93259
93774
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
93260
93775
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
93776
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
93261
93777
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
93262
93778
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
93263
93779
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -93318,6 +93834,7 @@ export namespace Prisma {
|
|
|
93318
93834
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
93319
93835
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
93320
93836
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
93837
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
93321
93838
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
93322
93839
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
93323
93840
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -93383,6 +93900,7 @@ export namespace Prisma {
|
|
|
93383
93900
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
93384
93901
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
93385
93902
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
93903
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
93386
93904
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
93387
93905
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
93388
93906
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -93443,6 +93961,7 @@ export namespace Prisma {
|
|
|
93443
93961
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
93444
93962
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
93445
93963
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
93964
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
93446
93965
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
93447
93966
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
93448
93967
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -93570,6 +94089,7 @@ export namespace Prisma {
|
|
|
93570
94089
|
phone?: StringFieldUpdateOperationsInput | string
|
|
93571
94090
|
address?: StringFieldUpdateOperationsInput | string
|
|
93572
94091
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
94092
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
93573
94093
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93574
94094
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93575
94095
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -93606,6 +94126,7 @@ export namespace Prisma {
|
|
|
93606
94126
|
phone?: StringFieldUpdateOperationsInput | string
|
|
93607
94127
|
address?: StringFieldUpdateOperationsInput | string
|
|
93608
94128
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
94129
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
93609
94130
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93610
94131
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93611
94132
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -93632,6 +94153,139 @@ export namespace Prisma {
|
|
|
93632
94153
|
assessments?: AssessmentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
93633
94154
|
}
|
|
93634
94155
|
|
|
94156
|
+
export type UserUpsertWithoutHiring_manager_job_profilesInput = {
|
|
94157
|
+
update: XOR<UserUpdateWithoutHiring_manager_job_profilesInput, UserUncheckedUpdateWithoutHiring_manager_job_profilesInput>
|
|
94158
|
+
create: XOR<UserCreateWithoutHiring_manager_job_profilesInput, UserUncheckedCreateWithoutHiring_manager_job_profilesInput>
|
|
94159
|
+
where?: UserWhereInput
|
|
94160
|
+
}
|
|
94161
|
+
|
|
94162
|
+
export type UserUpdateToOneWithWhereWithoutHiring_manager_job_profilesInput = {
|
|
94163
|
+
where?: UserWhereInput
|
|
94164
|
+
data: XOR<UserUpdateWithoutHiring_manager_job_profilesInput, UserUncheckedUpdateWithoutHiring_manager_job_profilesInput>
|
|
94165
|
+
}
|
|
94166
|
+
|
|
94167
|
+
export type UserUpdateWithoutHiring_manager_job_profilesInput = {
|
|
94168
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
94169
|
+
email?: StringFieldUpdateOperationsInput | string
|
|
94170
|
+
password?: StringFieldUpdateOperationsInput | string
|
|
94171
|
+
google_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94172
|
+
refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94173
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94174
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94175
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
94176
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
94177
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
94178
|
+
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
94179
|
+
profile_created?: BoolFieldUpdateOperationsInput | boolean
|
|
94180
|
+
first_login_status?: EnumFirstLoginStatusFieldUpdateOperationsInput | $Enums.FirstLoginStatus
|
|
94181
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94182
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94183
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94184
|
+
date_of_birth?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94185
|
+
designation?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94186
|
+
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94187
|
+
salary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94188
|
+
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
94189
|
+
education?: NullableJsonNullValueInput | InputJsonValue
|
|
94190
|
+
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
94191
|
+
notice_period?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94192
|
+
preferred_work_mode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94193
|
+
gender?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94194
|
+
ethnicity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94195
|
+
veteran_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94196
|
+
disability_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94197
|
+
role?: UserRoleUpdateOneRequiredWithoutUsersNestedInput
|
|
94198
|
+
permission?: PermissionUpdateOneWithoutUserNestedInput
|
|
94199
|
+
organisation?: OrganisationUpdateOneWithoutInterviewersNestedInput
|
|
94200
|
+
applications?: ApplicationUpdateManyWithoutCandidateNestedInput
|
|
94201
|
+
resume?: ResumeUpdateManyWithoutUserNestedInput
|
|
94202
|
+
candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
|
|
94203
|
+
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
94204
|
+
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
94205
|
+
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
94206
|
+
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
94207
|
+
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
94208
|
+
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
94209
|
+
candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
|
|
94210
|
+
interviewer_interviews?: InterviewUpdateManyWithoutInterviewerNestedInput
|
|
94211
|
+
assessment_results?: AssessmentUpdateManyWithoutUserNestedInput
|
|
94212
|
+
candidate_assessments?: AssessmentUpdateManyWithoutCandidateNestedInput
|
|
94213
|
+
reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
|
|
94214
|
+
candidate_assignments?: AssignmentUpdateManyWithoutCandidateNestedInput
|
|
94215
|
+
reviewer_assignments?: AssignmentUpdateManyWithoutReviewerNestedInput
|
|
94216
|
+
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
94217
|
+
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
94218
|
+
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
94219
|
+
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
94220
|
+
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
94221
|
+
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
94222
|
+
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
94223
|
+
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
94224
|
+
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
94225
|
+
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
94226
|
+
}
|
|
94227
|
+
|
|
94228
|
+
export type UserUncheckedUpdateWithoutHiring_manager_job_profilesInput = {
|
|
94229
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
94230
|
+
email?: StringFieldUpdateOperationsInput | string
|
|
94231
|
+
password?: StringFieldUpdateOperationsInput | string
|
|
94232
|
+
role_id?: StringFieldUpdateOperationsInput | string
|
|
94233
|
+
google_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94234
|
+
refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94235
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94236
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94237
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
94238
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
94239
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
94240
|
+
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
94241
|
+
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94242
|
+
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94243
|
+
profile_created?: BoolFieldUpdateOperationsInput | boolean
|
|
94244
|
+
first_login_status?: EnumFirstLoginStatusFieldUpdateOperationsInput | $Enums.FirstLoginStatus
|
|
94245
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94246
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94247
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94248
|
+
date_of_birth?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94249
|
+
designation?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94250
|
+
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94251
|
+
salary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94252
|
+
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
94253
|
+
education?: NullableJsonNullValueInput | InputJsonValue
|
|
94254
|
+
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
94255
|
+
notice_period?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94256
|
+
preferred_work_mode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94257
|
+
gender?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94258
|
+
ethnicity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94259
|
+
veteran_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94260
|
+
disability_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94261
|
+
applications?: ApplicationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94262
|
+
resume?: ResumeUncheckedUpdateManyWithoutUserNestedInput
|
|
94263
|
+
candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
94264
|
+
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
94265
|
+
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
94266
|
+
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
94267
|
+
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
94268
|
+
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
94269
|
+
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
94270
|
+
candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94271
|
+
interviewer_interviews?: InterviewUncheckedUpdateManyWithoutInterviewerNestedInput
|
|
94272
|
+
assessment_results?: AssessmentUncheckedUpdateManyWithoutUserNestedInput
|
|
94273
|
+
candidate_assessments?: AssessmentUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94274
|
+
reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
94275
|
+
candidate_assignments?: AssignmentUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94276
|
+
reviewer_assignments?: AssignmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
94277
|
+
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94278
|
+
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94279
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94280
|
+
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
94281
|
+
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
94282
|
+
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
94283
|
+
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
94284
|
+
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94285
|
+
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
94286
|
+
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
94287
|
+
}
|
|
94288
|
+
|
|
93635
94289
|
export type UserUpsertWithoutCreated_job_profilesInput = {
|
|
93636
94290
|
update: XOR<UserUpdateWithoutCreated_job_profilesInput, UserUncheckedUpdateWithoutCreated_job_profilesInput>
|
|
93637
94291
|
create: XOR<UserCreateWithoutCreated_job_profilesInput, UserUncheckedCreateWithoutCreated_job_profilesInput>
|
|
@@ -93682,6 +94336,7 @@ export namespace Prisma {
|
|
|
93682
94336
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
93683
94337
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
93684
94338
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
94339
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
93685
94340
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
93686
94341
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
93687
94342
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -93742,6 +94397,7 @@ export namespace Prisma {
|
|
|
93742
94397
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
93743
94398
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
93744
94399
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
94400
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
93745
94401
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
93746
94402
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
93747
94403
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -93813,6 +94469,7 @@ export namespace Prisma {
|
|
|
93813
94469
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
93814
94470
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
93815
94471
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
94472
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
93816
94473
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
93817
94474
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
93818
94475
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -93873,6 +94530,7 @@ export namespace Prisma {
|
|
|
93873
94530
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
93874
94531
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
93875
94532
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
94533
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
93876
94534
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
93877
94535
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
93878
94536
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -94150,6 +94808,7 @@ export namespace Prisma {
|
|
|
94150
94808
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
94151
94809
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
94152
94810
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
94811
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
94153
94812
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
94154
94813
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
94155
94814
|
candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
|
|
@@ -94210,6 +94869,7 @@ export namespace Prisma {
|
|
|
94210
94869
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
94211
94870
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
94212
94871
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
94872
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
94213
94873
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
94214
94874
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
94215
94875
|
candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
|
|
@@ -94275,6 +94935,7 @@ export namespace Prisma {
|
|
|
94275
94935
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
94276
94936
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
94277
94937
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
94938
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
94278
94939
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
94279
94940
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
94280
94941
|
candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
|
|
@@ -94335,6 +94996,7 @@ export namespace Prisma {
|
|
|
94335
94996
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
94336
94997
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
94337
94998
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
94999
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
94338
95000
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
94339
95001
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
94340
95002
|
candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
|
|
@@ -94411,6 +95073,7 @@ export namespace Prisma {
|
|
|
94411
95073
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
94412
95074
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
94413
95075
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
95076
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
94414
95077
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
94415
95078
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
94416
95079
|
candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
|
|
@@ -94471,6 +95134,7 @@ export namespace Prisma {
|
|
|
94471
95134
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
94472
95135
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
94473
95136
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
95137
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
94474
95138
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
94475
95139
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
94476
95140
|
candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
|
|
@@ -94542,6 +95206,7 @@ export namespace Prisma {
|
|
|
94542
95206
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
94543
95207
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
94544
95208
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
95209
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
94545
95210
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
94546
95211
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
94547
95212
|
candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
|
|
@@ -94602,6 +95267,7 @@ export namespace Prisma {
|
|
|
94602
95267
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
94603
95268
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
94604
95269
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
95270
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
94605
95271
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
94606
95272
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
94607
95273
|
candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
|
|
@@ -94788,6 +95454,7 @@ export namespace Prisma {
|
|
|
94788
95454
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
94789
95455
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
94790
95456
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
95457
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
94791
95458
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
94792
95459
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
94793
95460
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -94848,6 +95515,7 @@ export namespace Prisma {
|
|
|
94848
95515
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
94849
95516
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
94850
95517
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
95518
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
94851
95519
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
94852
95520
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
94853
95521
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -94931,6 +95599,7 @@ export namespace Prisma {
|
|
|
94931
95599
|
phone: string
|
|
94932
95600
|
address: string
|
|
94933
95601
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
95602
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
94934
95603
|
created_at?: Date | string
|
|
94935
95604
|
updated_at?: Date | string
|
|
94936
95605
|
created_by: string
|
|
@@ -94967,6 +95636,7 @@ export namespace Prisma {
|
|
|
94967
95636
|
phone: string
|
|
94968
95637
|
address: string
|
|
94969
95638
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
95639
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
94970
95640
|
created_at?: Date | string
|
|
94971
95641
|
updated_at?: Date | string
|
|
94972
95642
|
created_by: string
|
|
@@ -95430,6 +96100,7 @@ export namespace Prisma {
|
|
|
95430
96100
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
95431
96101
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
95432
96102
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
96103
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
95433
96104
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
95434
96105
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
95435
96106
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -95490,6 +96161,7 @@ export namespace Prisma {
|
|
|
95490
96161
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
95491
96162
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
95492
96163
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
96164
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
95493
96165
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
95494
96166
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
95495
96167
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -95585,6 +96257,7 @@ export namespace Prisma {
|
|
|
95585
96257
|
phone?: StringFieldUpdateOperationsInput | string
|
|
95586
96258
|
address?: StringFieldUpdateOperationsInput | string
|
|
95587
96259
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
96260
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
95588
96261
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95589
96262
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95590
96263
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -95621,6 +96294,7 @@ export namespace Prisma {
|
|
|
95621
96294
|
phone?: StringFieldUpdateOperationsInput | string
|
|
95622
96295
|
address?: StringFieldUpdateOperationsInput | string
|
|
95623
96296
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
96297
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
95624
96298
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95625
96299
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95626
96300
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -95953,6 +96627,7 @@ export namespace Prisma {
|
|
|
95953
96627
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
95954
96628
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
95955
96629
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
96630
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
95956
96631
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
95957
96632
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
95958
96633
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -96013,6 +96688,7 @@ export namespace Prisma {
|
|
|
96013
96688
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
96014
96689
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
96015
96690
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
96691
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
96016
96692
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
96017
96693
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
96018
96694
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -96223,11 +96899,13 @@ export namespace Prisma {
|
|
|
96223
96899
|
title?: string | null
|
|
96224
96900
|
role_type?: string | null
|
|
96225
96901
|
work_arrangement?: string | null
|
|
96902
|
+
employment_type?: string | null
|
|
96226
96903
|
location?: string | null
|
|
96227
96904
|
experience_min?: string | null
|
|
96228
96905
|
reporting?: string | null
|
|
96229
96906
|
comp_range?: string | null
|
|
96230
96907
|
comp_benchmark?: string | null
|
|
96908
|
+
budget?: string | null
|
|
96231
96909
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
96232
96910
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
96233
96911
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -96242,6 +96920,7 @@ export namespace Prisma {
|
|
|
96242
96920
|
created_at?: Date | string
|
|
96243
96921
|
updated_at?: Date | string
|
|
96244
96922
|
is_active?: boolean
|
|
96923
|
+
hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
|
|
96245
96924
|
creator: UserCreateNestedOneWithoutCreated_job_profilesInput
|
|
96246
96925
|
assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
|
|
96247
96926
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
|
|
@@ -96249,17 +96928,20 @@ export namespace Prisma {
|
|
|
96249
96928
|
|
|
96250
96929
|
export type JobProfileUncheckedCreateWithoutOrganisationInput = {
|
|
96251
96930
|
id?: string
|
|
96931
|
+
hiring_manager_id?: string | null
|
|
96252
96932
|
created_by: string
|
|
96253
96933
|
assigned_to?: string | null
|
|
96254
96934
|
status?: $Enums.JobProfileStatus
|
|
96255
96935
|
title?: string | null
|
|
96256
96936
|
role_type?: string | null
|
|
96257
96937
|
work_arrangement?: string | null
|
|
96938
|
+
employment_type?: string | null
|
|
96258
96939
|
location?: string | null
|
|
96259
96940
|
experience_min?: string | null
|
|
96260
96941
|
reporting?: string | null
|
|
96261
96942
|
comp_range?: string | null
|
|
96262
96943
|
comp_benchmark?: string | null
|
|
96944
|
+
budget?: string | null
|
|
96263
96945
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
96264
96946
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
96265
96947
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -97075,17 +97757,20 @@ export namespace Prisma {
|
|
|
97075
97757
|
NOT?: JobProfileScalarWhereInput | JobProfileScalarWhereInput[]
|
|
97076
97758
|
id?: StringFilter<"JobProfile"> | string
|
|
97077
97759
|
organisation_id?: StringFilter<"JobProfile"> | string
|
|
97760
|
+
hiring_manager_id?: StringNullableFilter<"JobProfile"> | string | null
|
|
97078
97761
|
created_by?: StringFilter<"JobProfile"> | string
|
|
97079
97762
|
assigned_to?: StringNullableFilter<"JobProfile"> | string | null
|
|
97080
97763
|
status?: EnumJobProfileStatusFilter<"JobProfile"> | $Enums.JobProfileStatus
|
|
97081
97764
|
title?: StringNullableFilter<"JobProfile"> | string | null
|
|
97082
97765
|
role_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
97083
97766
|
work_arrangement?: StringNullableFilter<"JobProfile"> | string | null
|
|
97767
|
+
employment_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
97084
97768
|
location?: StringNullableFilter<"JobProfile"> | string | null
|
|
97085
97769
|
experience_min?: StringNullableFilter<"JobProfile"> | string | null
|
|
97086
97770
|
reporting?: StringNullableFilter<"JobProfile"> | string | null
|
|
97087
97771
|
comp_range?: StringNullableFilter<"JobProfile"> | string | null
|
|
97088
97772
|
comp_benchmark?: StringNullableFilter<"JobProfile"> | string | null
|
|
97773
|
+
budget?: StringNullableFilter<"JobProfile"> | string | null
|
|
97089
97774
|
responsibilities?: JsonNullableFilter<"JobProfile">
|
|
97090
97775
|
deliverables?: JsonNullableFilter<"JobProfile">
|
|
97091
97776
|
must_have_skills?: JsonNullableFilter<"JobProfile">
|
|
@@ -97426,6 +98111,7 @@ export namespace Prisma {
|
|
|
97426
98111
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
97427
98112
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
97428
98113
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
98114
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
97429
98115
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
97430
98116
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
97431
98117
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -97486,6 +98172,7 @@ export namespace Prisma {
|
|
|
97486
98172
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
97487
98173
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
97488
98174
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
98175
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
97489
98176
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
97490
98177
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
97491
98178
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -97593,6 +98280,7 @@ export namespace Prisma {
|
|
|
97593
98280
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
97594
98281
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
97595
98282
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
98283
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
97596
98284
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
97597
98285
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
97598
98286
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -97653,6 +98341,7 @@ export namespace Prisma {
|
|
|
97653
98341
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
97654
98342
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
97655
98343
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
98344
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
97656
98345
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
97657
98346
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
97658
98347
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -97751,6 +98440,7 @@ export namespace Prisma {
|
|
|
97751
98440
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
97752
98441
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
97753
98442
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
98443
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
97754
98444
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
97755
98445
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
97756
98446
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -97811,6 +98501,7 @@ export namespace Prisma {
|
|
|
97811
98501
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
97812
98502
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
97813
98503
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
98504
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
97814
98505
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
97815
98506
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
97816
98507
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -98049,6 +98740,7 @@ export namespace Prisma {
|
|
|
98049
98740
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
98050
98741
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
98051
98742
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
98743
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
98052
98744
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
98053
98745
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
98054
98746
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -98109,6 +98801,7 @@ export namespace Prisma {
|
|
|
98109
98801
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
98110
98802
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
98111
98803
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
98804
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
98112
98805
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
98113
98806
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
98114
98807
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -98316,6 +99009,7 @@ export namespace Prisma {
|
|
|
98316
99009
|
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
98317
99010
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
98318
99011
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
99012
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
98319
99013
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
98320
99014
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
98321
99015
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -98376,6 +99070,7 @@ export namespace Prisma {
|
|
|
98376
99070
|
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
98377
99071
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
98378
99072
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
99073
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
98379
99074
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
98380
99075
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
98381
99076
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -98413,6 +99108,7 @@ export namespace Prisma {
|
|
|
98413
99108
|
phone: string
|
|
98414
99109
|
address: string
|
|
98415
99110
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
99111
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
98416
99112
|
created_at?: Date | string
|
|
98417
99113
|
updated_at?: Date | string
|
|
98418
99114
|
created_by: string
|
|
@@ -98449,6 +99145,7 @@ export namespace Prisma {
|
|
|
98449
99145
|
phone: string
|
|
98450
99146
|
address: string
|
|
98451
99147
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
99148
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
98452
99149
|
created_at?: Date | string
|
|
98453
99150
|
updated_at?: Date | string
|
|
98454
99151
|
created_by: string
|
|
@@ -98985,6 +99682,7 @@ export namespace Prisma {
|
|
|
98985
99682
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
98986
99683
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
98987
99684
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
99685
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
98988
99686
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
98989
99687
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
98990
99688
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -99045,6 +99743,7 @@ export namespace Prisma {
|
|
|
99045
99743
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
99046
99744
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
99047
99745
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
99746
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
99048
99747
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
99049
99748
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
99050
99749
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -99088,6 +99787,7 @@ export namespace Prisma {
|
|
|
99088
99787
|
phone?: StringFieldUpdateOperationsInput | string
|
|
99089
99788
|
address?: StringFieldUpdateOperationsInput | string
|
|
99090
99789
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
99790
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
99091
99791
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99092
99792
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99093
99793
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99124,6 +99824,7 @@ export namespace Prisma {
|
|
|
99124
99824
|
phone?: StringFieldUpdateOperationsInput | string
|
|
99125
99825
|
address?: StringFieldUpdateOperationsInput | string
|
|
99126
99826
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
99827
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
99127
99828
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99128
99829
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99129
99830
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99618,6 +100319,7 @@ export namespace Prisma {
|
|
|
99618
100319
|
phone: string
|
|
99619
100320
|
address: string
|
|
99620
100321
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
100322
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
99621
100323
|
created_at?: Date | string
|
|
99622
100324
|
updated_at?: Date | string
|
|
99623
100325
|
created_by: string
|
|
@@ -99654,6 +100356,7 @@ export namespace Prisma {
|
|
|
99654
100356
|
phone: string
|
|
99655
100357
|
address: string
|
|
99656
100358
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
100359
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
99657
100360
|
created_at?: Date | string
|
|
99658
100361
|
updated_at?: Date | string
|
|
99659
100362
|
created_by: string
|
|
@@ -99813,6 +100516,7 @@ export namespace Prisma {
|
|
|
99813
100516
|
phone?: StringFieldUpdateOperationsInput | string
|
|
99814
100517
|
address?: StringFieldUpdateOperationsInput | string
|
|
99815
100518
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
100519
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
99816
100520
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99817
100521
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99818
100522
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99849,6 +100553,7 @@ export namespace Prisma {
|
|
|
99849
100553
|
phone?: StringFieldUpdateOperationsInput | string
|
|
99850
100554
|
address?: StringFieldUpdateOperationsInput | string
|
|
99851
100555
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
100556
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
99852
100557
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99853
100558
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99854
100559
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100347,6 +101052,7 @@ export namespace Prisma {
|
|
|
100347
101052
|
phone: string
|
|
100348
101053
|
address: string
|
|
100349
101054
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
101055
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
100350
101056
|
created_at?: Date | string
|
|
100351
101057
|
updated_at?: Date | string
|
|
100352
101058
|
created_by: string
|
|
@@ -100383,6 +101089,7 @@ export namespace Prisma {
|
|
|
100383
101089
|
phone: string
|
|
100384
101090
|
address: string
|
|
100385
101091
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
101092
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
100386
101093
|
created_at?: Date | string
|
|
100387
101094
|
updated_at?: Date | string
|
|
100388
101095
|
created_by: string
|
|
@@ -100670,88 +101377,164 @@ export namespace Prisma {
|
|
|
100670
101377
|
integration_job_syncs?: IntegrationJobSyncUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
100671
101378
|
}
|
|
100672
101379
|
|
|
100673
|
-
export type JobDescriptionCreateOrConnectWithoutRecruitersInput = {
|
|
101380
|
+
export type JobDescriptionCreateOrConnectWithoutRecruitersInput = {
|
|
101381
|
+
where: JobDescriptionWhereUniqueInput
|
|
101382
|
+
create: XOR<JobDescriptionCreateWithoutRecruitersInput, JobDescriptionUncheckedCreateWithoutRecruitersInput>
|
|
101383
|
+
}
|
|
101384
|
+
|
|
101385
|
+
export type JobDescriptionCreateWithoutHiring_managerInput = {
|
|
101386
|
+
id?: string
|
|
101387
|
+
status?: $Enums.JobDescriptionStatus
|
|
101388
|
+
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
101389
|
+
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
101390
|
+
uploaded_job_description_path?: string | null
|
|
101391
|
+
is_plan_published?: boolean
|
|
101392
|
+
is_posted?: boolean
|
|
101393
|
+
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
101394
|
+
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
101395
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
101396
|
+
created_at?: Date | string
|
|
101397
|
+
updated_at?: Date | string
|
|
101398
|
+
created_by: string
|
|
101399
|
+
updated_by: string
|
|
101400
|
+
is_active?: boolean
|
|
101401
|
+
openings?: number
|
|
101402
|
+
job_profile?: JobProfileCreateNestedOneWithoutJob_descriptionsInput
|
|
101403
|
+
organisation: OrganisationCreateNestedOneWithoutJob_descriptionsInput
|
|
101404
|
+
applications?: ApplicationCreateNestedManyWithoutJob_descriptionInput
|
|
101405
|
+
interviews?: InterviewCreateNestedManyWithoutJob_descriptionInput
|
|
101406
|
+
assignments?: AssignmentCreateNestedManyWithoutJob_descriptionInput
|
|
101407
|
+
fit_check?: FitCheckCreateNestedManyWithoutJob_descriptionInput
|
|
101408
|
+
job_description_data?: JobDescriptionDataCreateNestedManyWithoutJobDescriptionInput
|
|
101409
|
+
evaluationPlan?: EvaluationPlanCreateNestedManyWithoutJobDescriptionInput
|
|
101410
|
+
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutJobDescriptionInput
|
|
101411
|
+
assignment_library?: AssignmentLibraryCreateNestedManyWithoutJobDescriptionInput
|
|
101412
|
+
approvals?: ApprovalCreateNestedManyWithoutJob_descriptionInput
|
|
101413
|
+
resumes?: ResumeCreateNestedManyWithoutJob_descriptionInput
|
|
101414
|
+
budget?: BudgetCreateNestedOneWithoutJob_descriptionInput
|
|
101415
|
+
recruiters?: UserCreateNestedManyWithoutJob_descriptionInput
|
|
101416
|
+
transcripts?: TranscriptCreateNestedManyWithoutJob_descriptionInput
|
|
101417
|
+
integration_job_syncs?: IntegrationJobSyncCreateNestedManyWithoutJob_descriptionInput
|
|
101418
|
+
}
|
|
101419
|
+
|
|
101420
|
+
export type JobDescriptionUncheckedCreateWithoutHiring_managerInput = {
|
|
101421
|
+
id?: string
|
|
101422
|
+
organisation_id: string
|
|
101423
|
+
status?: $Enums.JobDescriptionStatus
|
|
101424
|
+
screeningQuestions?: JobDescriptionCreatescreeningQuestionsInput | string[]
|
|
101425
|
+
recommendedQuestions?: JobDescriptionCreaterecommendedQuestionsInput | InputJsonValue[]
|
|
101426
|
+
uploaded_job_description_path?: string | null
|
|
101427
|
+
is_plan_published?: boolean
|
|
101428
|
+
is_posted?: boolean
|
|
101429
|
+
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
101430
|
+
ai_insight?: NullableJsonNullValueInput | InputJsonValue
|
|
101431
|
+
job_fit_comparison?: NullableJsonNullValueInput | InputJsonValue
|
|
101432
|
+
created_at?: Date | string
|
|
101433
|
+
updated_at?: Date | string
|
|
101434
|
+
created_by: string
|
|
101435
|
+
updated_by: string
|
|
101436
|
+
is_active?: boolean
|
|
101437
|
+
openings?: number
|
|
101438
|
+
job_profile_id?: string | null
|
|
101439
|
+
applications?: ApplicationUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101440
|
+
interviews?: InterviewUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101441
|
+
assignments?: AssignmentUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101442
|
+
fit_check?: FitCheckUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101443
|
+
job_description_data?: JobDescriptionDataUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
101444
|
+
evaluationPlan?: EvaluationPlanUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
101445
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
101446
|
+
assignment_library?: AssignmentLibraryUncheckedCreateNestedManyWithoutJobDescriptionInput
|
|
101447
|
+
approvals?: ApprovalUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101448
|
+
resumes?: ResumeUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101449
|
+
budget?: BudgetUncheckedCreateNestedOneWithoutJob_descriptionInput
|
|
101450
|
+
recruiters?: UserUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101451
|
+
transcripts?: TranscriptUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101452
|
+
integration_job_syncs?: IntegrationJobSyncUncheckedCreateNestedManyWithoutJob_descriptionInput
|
|
101453
|
+
}
|
|
101454
|
+
|
|
101455
|
+
export type JobDescriptionCreateOrConnectWithoutHiring_managerInput = {
|
|
100674
101456
|
where: JobDescriptionWhereUniqueInput
|
|
100675
|
-
create: XOR<
|
|
101457
|
+
create: XOR<JobDescriptionCreateWithoutHiring_managerInput, JobDescriptionUncheckedCreateWithoutHiring_managerInput>
|
|
100676
101458
|
}
|
|
100677
101459
|
|
|
100678
|
-
export type
|
|
101460
|
+
export type JobDescriptionCreateManyHiring_managerInputEnvelope = {
|
|
101461
|
+
data: JobDescriptionCreateManyHiring_managerInput | JobDescriptionCreateManyHiring_managerInput[]
|
|
101462
|
+
skipDuplicates?: boolean
|
|
101463
|
+
}
|
|
101464
|
+
|
|
101465
|
+
export type JobProfileCreateWithoutHiring_managerInput = {
|
|
100679
101466
|
id?: string
|
|
100680
|
-
status?: $Enums.
|
|
100681
|
-
|
|
100682
|
-
|
|
100683
|
-
|
|
100684
|
-
|
|
100685
|
-
|
|
100686
|
-
|
|
100687
|
-
|
|
100688
|
-
|
|
101467
|
+
status?: $Enums.JobProfileStatus
|
|
101468
|
+
title?: string | null
|
|
101469
|
+
role_type?: string | null
|
|
101470
|
+
work_arrangement?: string | null
|
|
101471
|
+
employment_type?: string | null
|
|
101472
|
+
location?: string | null
|
|
101473
|
+
experience_min?: string | null
|
|
101474
|
+
reporting?: string | null
|
|
101475
|
+
comp_range?: string | null
|
|
101476
|
+
comp_benchmark?: string | null
|
|
101477
|
+
budget?: string | null
|
|
101478
|
+
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
101479
|
+
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
101480
|
+
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
101481
|
+
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
101482
|
+
dealbreakers?: NullableJsonNullValueInput | InputJsonValue
|
|
101483
|
+
culture?: NullableJsonNullValueInput | InputJsonValue
|
|
101484
|
+
success_metrics?: NullableJsonNullValueInput | InputJsonValue
|
|
101485
|
+
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
101486
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
101487
|
+
current_phase?: string | null
|
|
101488
|
+
orion_execution_id?: string | null
|
|
100689
101489
|
created_at?: Date | string
|
|
100690
101490
|
updated_at?: Date | string
|
|
100691
|
-
created_by: string
|
|
100692
|
-
updated_by: string
|
|
100693
101491
|
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
|
|
101492
|
+
organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
|
|
101493
|
+
creator: UserCreateNestedOneWithoutCreated_job_profilesInput
|
|
101494
|
+
assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
|
|
101495
|
+
job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
|
|
100711
101496
|
}
|
|
100712
101497
|
|
|
100713
|
-
export type
|
|
101498
|
+
export type JobProfileUncheckedCreateWithoutHiring_managerInput = {
|
|
100714
101499
|
id?: string
|
|
100715
101500
|
organisation_id: string
|
|
100716
|
-
|
|
100717
|
-
|
|
100718
|
-
|
|
100719
|
-
|
|
100720
|
-
|
|
100721
|
-
|
|
100722
|
-
|
|
100723
|
-
|
|
100724
|
-
|
|
101501
|
+
created_by: string
|
|
101502
|
+
assigned_to?: string | null
|
|
101503
|
+
status?: $Enums.JobProfileStatus
|
|
101504
|
+
title?: string | null
|
|
101505
|
+
role_type?: string | null
|
|
101506
|
+
work_arrangement?: string | null
|
|
101507
|
+
employment_type?: string | null
|
|
101508
|
+
location?: string | null
|
|
101509
|
+
experience_min?: string | null
|
|
101510
|
+
reporting?: string | null
|
|
101511
|
+
comp_range?: string | null
|
|
101512
|
+
comp_benchmark?: string | null
|
|
101513
|
+
budget?: string | null
|
|
101514
|
+
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
101515
|
+
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
101516
|
+
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
101517
|
+
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
101518
|
+
dealbreakers?: NullableJsonNullValueInput | InputJsonValue
|
|
101519
|
+
culture?: NullableJsonNullValueInput | InputJsonValue
|
|
101520
|
+
success_metrics?: NullableJsonNullValueInput | InputJsonValue
|
|
101521
|
+
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
101522
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
101523
|
+
current_phase?: string | null
|
|
101524
|
+
orion_execution_id?: string | null
|
|
100725
101525
|
created_at?: Date | string
|
|
100726
101526
|
updated_at?: Date | string
|
|
100727
|
-
created_by: string
|
|
100728
|
-
updated_by: string
|
|
100729
101527
|
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
|
|
101528
|
+
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutJob_profileInput
|
|
100746
101529
|
}
|
|
100747
101530
|
|
|
100748
|
-
export type
|
|
100749
|
-
where:
|
|
100750
|
-
create: XOR<
|
|
101531
|
+
export type JobProfileCreateOrConnectWithoutHiring_managerInput = {
|
|
101532
|
+
where: JobProfileWhereUniqueInput
|
|
101533
|
+
create: XOR<JobProfileCreateWithoutHiring_managerInput, JobProfileUncheckedCreateWithoutHiring_managerInput>
|
|
100751
101534
|
}
|
|
100752
101535
|
|
|
100753
|
-
export type
|
|
100754
|
-
data:
|
|
101536
|
+
export type JobProfileCreateManyHiring_managerInputEnvelope = {
|
|
101537
|
+
data: JobProfileCreateManyHiring_managerInput | JobProfileCreateManyHiring_managerInput[]
|
|
100755
101538
|
skipDuplicates?: boolean
|
|
100756
101539
|
}
|
|
100757
101540
|
|
|
@@ -101687,11 +102470,13 @@ export namespace Prisma {
|
|
|
101687
102470
|
title?: string | null
|
|
101688
102471
|
role_type?: string | null
|
|
101689
102472
|
work_arrangement?: string | null
|
|
102473
|
+
employment_type?: string | null
|
|
101690
102474
|
location?: string | null
|
|
101691
102475
|
experience_min?: string | null
|
|
101692
102476
|
reporting?: string | null
|
|
101693
102477
|
comp_range?: string | null
|
|
101694
102478
|
comp_benchmark?: string | null
|
|
102479
|
+
budget?: string | null
|
|
101695
102480
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
101696
102481
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
101697
102482
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -101707,6 +102492,7 @@ export namespace Prisma {
|
|
|
101707
102492
|
updated_at?: Date | string
|
|
101708
102493
|
is_active?: boolean
|
|
101709
102494
|
organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
|
|
102495
|
+
hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
|
|
101710
102496
|
assignee?: UserCreateNestedOneWithoutAssigned_job_profilesInput
|
|
101711
102497
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
|
|
101712
102498
|
}
|
|
@@ -101714,16 +102500,19 @@ export namespace Prisma {
|
|
|
101714
102500
|
export type JobProfileUncheckedCreateWithoutCreatorInput = {
|
|
101715
102501
|
id?: string
|
|
101716
102502
|
organisation_id: string
|
|
102503
|
+
hiring_manager_id?: string | null
|
|
101717
102504
|
assigned_to?: string | null
|
|
101718
102505
|
status?: $Enums.JobProfileStatus
|
|
101719
102506
|
title?: string | null
|
|
101720
102507
|
role_type?: string | null
|
|
101721
102508
|
work_arrangement?: string | null
|
|
102509
|
+
employment_type?: string | null
|
|
101722
102510
|
location?: string | null
|
|
101723
102511
|
experience_min?: string | null
|
|
101724
102512
|
reporting?: string | null
|
|
101725
102513
|
comp_range?: string | null
|
|
101726
102514
|
comp_benchmark?: string | null
|
|
102515
|
+
budget?: string | null
|
|
101727
102516
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
101728
102517
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
101729
102518
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -101757,11 +102546,13 @@ export namespace Prisma {
|
|
|
101757
102546
|
title?: string | null
|
|
101758
102547
|
role_type?: string | null
|
|
101759
102548
|
work_arrangement?: string | null
|
|
102549
|
+
employment_type?: string | null
|
|
101760
102550
|
location?: string | null
|
|
101761
102551
|
experience_min?: string | null
|
|
101762
102552
|
reporting?: string | null
|
|
101763
102553
|
comp_range?: string | null
|
|
101764
102554
|
comp_benchmark?: string | null
|
|
102555
|
+
budget?: string | null
|
|
101765
102556
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
101766
102557
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
101767
102558
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -101777,6 +102568,7 @@ export namespace Prisma {
|
|
|
101777
102568
|
updated_at?: Date | string
|
|
101778
102569
|
is_active?: boolean
|
|
101779
102570
|
organisation: OrganisationCreateNestedOneWithoutJob_profilesInput
|
|
102571
|
+
hiring_manager?: UserCreateNestedOneWithoutHiring_manager_job_profilesInput
|
|
101780
102572
|
creator: UserCreateNestedOneWithoutCreated_job_profilesInput
|
|
101781
102573
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutJob_profileInput
|
|
101782
102574
|
}
|
|
@@ -101784,16 +102576,19 @@ export namespace Prisma {
|
|
|
101784
102576
|
export type JobProfileUncheckedCreateWithoutAssigneeInput = {
|
|
101785
102577
|
id?: string
|
|
101786
102578
|
organisation_id: string
|
|
102579
|
+
hiring_manager_id?: string | null
|
|
101787
102580
|
created_by: string
|
|
101788
102581
|
status?: $Enums.JobProfileStatus
|
|
101789
102582
|
title?: string | null
|
|
101790
102583
|
role_type?: string | null
|
|
101791
102584
|
work_arrangement?: string | null
|
|
102585
|
+
employment_type?: string | null
|
|
101792
102586
|
location?: string | null
|
|
101793
102587
|
experience_min?: string | null
|
|
101794
102588
|
reporting?: string | null
|
|
101795
102589
|
comp_range?: string | null
|
|
101796
102590
|
comp_benchmark?: string | null
|
|
102591
|
+
budget?: string | null
|
|
101797
102592
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
101798
102593
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
101799
102594
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -101912,6 +102707,7 @@ export namespace Prisma {
|
|
|
101912
102707
|
phone?: StringFieldUpdateOperationsInput | string
|
|
101913
102708
|
address?: StringFieldUpdateOperationsInput | string
|
|
101914
102709
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
102710
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
101915
102711
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101916
102712
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101917
102713
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101948,6 +102744,7 @@ export namespace Prisma {
|
|
|
101948
102744
|
phone?: StringFieldUpdateOperationsInput | string
|
|
101949
102745
|
address?: StringFieldUpdateOperationsInput | string
|
|
101950
102746
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
102747
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
101951
102748
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101952
102749
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101953
102750
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -102128,6 +102925,22 @@ export namespace Prisma {
|
|
|
102128
102925
|
data: XOR<JobDescriptionUpdateManyMutationInput, JobDescriptionUncheckedUpdateManyWithoutHiring_managerInput>
|
|
102129
102926
|
}
|
|
102130
102927
|
|
|
102928
|
+
export type JobProfileUpsertWithWhereUniqueWithoutHiring_managerInput = {
|
|
102929
|
+
where: JobProfileWhereUniqueInput
|
|
102930
|
+
update: XOR<JobProfileUpdateWithoutHiring_managerInput, JobProfileUncheckedUpdateWithoutHiring_managerInput>
|
|
102931
|
+
create: XOR<JobProfileCreateWithoutHiring_managerInput, JobProfileUncheckedCreateWithoutHiring_managerInput>
|
|
102932
|
+
}
|
|
102933
|
+
|
|
102934
|
+
export type JobProfileUpdateWithWhereUniqueWithoutHiring_managerInput = {
|
|
102935
|
+
where: JobProfileWhereUniqueInput
|
|
102936
|
+
data: XOR<JobProfileUpdateWithoutHiring_managerInput, JobProfileUncheckedUpdateWithoutHiring_managerInput>
|
|
102937
|
+
}
|
|
102938
|
+
|
|
102939
|
+
export type JobProfileUpdateManyWithWhereWithoutHiring_managerInput = {
|
|
102940
|
+
where: JobProfileScalarWhereInput
|
|
102941
|
+
data: XOR<JobProfileUpdateManyMutationInput, JobProfileUncheckedUpdateManyWithoutHiring_managerInput>
|
|
102942
|
+
}
|
|
102943
|
+
|
|
102131
102944
|
export type ApprovalUpsertWithWhereUniqueWithoutUserInput = {
|
|
102132
102945
|
where: ApprovalWhereUniqueInput
|
|
102133
102946
|
update: XOR<ApprovalUpdateWithoutUserInput, ApprovalUncheckedUpdateWithoutUserInput>
|
|
@@ -102543,6 +103356,7 @@ export namespace Prisma {
|
|
|
102543
103356
|
candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
|
|
102544
103357
|
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
102545
103358
|
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
103359
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
102546
103360
|
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
102547
103361
|
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
102548
103362
|
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
@@ -102603,6 +103417,7 @@ export namespace Prisma {
|
|
|
102603
103417
|
candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
|
|
102604
103418
|
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
102605
103419
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
103420
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
102606
103421
|
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
102607
103422
|
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
102608
103423
|
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
@@ -102679,6 +103494,7 @@ export namespace Prisma {
|
|
|
102679
103494
|
candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
|
|
102680
103495
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
102681
103496
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
103497
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
102682
103498
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
102683
103499
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
102684
103500
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -102739,6 +103555,7 @@ export namespace Prisma {
|
|
|
102739
103555
|
candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
102740
103556
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
102741
103557
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
103558
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
102742
103559
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
102743
103560
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
102744
103561
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -102833,6 +103650,7 @@ export namespace Prisma {
|
|
|
102833
103650
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
102834
103651
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
102835
103652
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
103653
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
102836
103654
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
102837
103655
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
102838
103656
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -102893,6 +103711,7 @@ export namespace Prisma {
|
|
|
102893
103711
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
102894
103712
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
102895
103713
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
103714
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
102896
103715
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
102897
103716
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
102898
103717
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -105564,6 +106383,7 @@ export namespace Prisma {
|
|
|
105564
106383
|
candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
|
|
105565
106384
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
105566
106385
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
106386
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
105567
106387
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
105568
106388
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
105569
106389
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -105624,6 +106444,7 @@ export namespace Prisma {
|
|
|
105624
106444
|
candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
105625
106445
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
105626
106446
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
106447
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
105627
106448
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
105628
106449
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
105629
106450
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -105968,17 +106789,20 @@ export namespace Prisma {
|
|
|
105968
106789
|
|
|
105969
106790
|
export type JobProfileCreateManyOrganisationInput = {
|
|
105970
106791
|
id?: string
|
|
106792
|
+
hiring_manager_id?: string | null
|
|
105971
106793
|
created_by: string
|
|
105972
106794
|
assigned_to?: string | null
|
|
105973
106795
|
status?: $Enums.JobProfileStatus
|
|
105974
106796
|
title?: string | null
|
|
105975
106797
|
role_type?: string | null
|
|
105976
106798
|
work_arrangement?: string | null
|
|
106799
|
+
employment_type?: string | null
|
|
105977
106800
|
location?: string | null
|
|
105978
106801
|
experience_min?: string | null
|
|
105979
106802
|
reporting?: string | null
|
|
105980
106803
|
comp_range?: string | null
|
|
105981
106804
|
comp_benchmark?: string | null
|
|
106805
|
+
budget?: string | null
|
|
105982
106806
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
105983
106807
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
105984
106808
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -106288,6 +107112,7 @@ export namespace Prisma {
|
|
|
106288
107112
|
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
106289
107113
|
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
106290
107114
|
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
107115
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
106291
107116
|
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
106292
107117
|
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
106293
107118
|
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
@@ -106348,6 +107173,7 @@ export namespace Prisma {
|
|
|
106348
107173
|
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
106349
107174
|
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
106350
107175
|
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
107176
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
106351
107177
|
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
106352
107178
|
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
106353
107179
|
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
@@ -106604,11 +107430,13 @@ export namespace Prisma {
|
|
|
106604
107430
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106605
107431
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106606
107432
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107433
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106607
107434
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106608
107435
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106609
107436
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106610
107437
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106611
107438
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107439
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106612
107440
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
106613
107441
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
106614
107442
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -106623,6 +107451,7 @@ export namespace Prisma {
|
|
|
106623
107451
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106624
107452
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
106625
107453
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
107454
|
+
hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
|
|
106626
107455
|
creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
|
|
106627
107456
|
assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
|
|
106628
107457
|
job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
|
|
@@ -106630,17 +107459,20 @@ export namespace Prisma {
|
|
|
106630
107459
|
|
|
106631
107460
|
export type JobProfileUncheckedUpdateWithoutOrganisationInput = {
|
|
106632
107461
|
id?: StringFieldUpdateOperationsInput | string
|
|
107462
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106633
107463
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
106634
107464
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106635
107465
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
106636
107466
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106637
107467
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106638
107468
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107469
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106639
107470
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106640
107471
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106641
107472
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106642
107473
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106643
107474
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107475
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106644
107476
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
106645
107477
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
106646
107478
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -106660,17 +107492,20 @@ export namespace Prisma {
|
|
|
106660
107492
|
|
|
106661
107493
|
export type JobProfileUncheckedUpdateManyWithoutOrganisationInput = {
|
|
106662
107494
|
id?: StringFieldUpdateOperationsInput | string
|
|
107495
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106663
107496
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
106664
107497
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106665
107498
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
106666
107499
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106667
107500
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106668
107501
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107502
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106669
107503
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106670
107504
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106671
107505
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106672
107506
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106673
107507
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107508
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106674
107509
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
106675
107510
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
106676
107511
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -108241,6 +109076,38 @@ export namespace Prisma {
|
|
|
108241
109076
|
job_profile_id?: string | null
|
|
108242
109077
|
}
|
|
108243
109078
|
|
|
109079
|
+
export type JobProfileCreateManyHiring_managerInput = {
|
|
109080
|
+
id?: string
|
|
109081
|
+
organisation_id: string
|
|
109082
|
+
created_by: string
|
|
109083
|
+
assigned_to?: string | null
|
|
109084
|
+
status?: $Enums.JobProfileStatus
|
|
109085
|
+
title?: string | null
|
|
109086
|
+
role_type?: string | null
|
|
109087
|
+
work_arrangement?: string | null
|
|
109088
|
+
employment_type?: string | null
|
|
109089
|
+
location?: string | null
|
|
109090
|
+
experience_min?: string | null
|
|
109091
|
+
reporting?: string | null
|
|
109092
|
+
comp_range?: string | null
|
|
109093
|
+
comp_benchmark?: string | null
|
|
109094
|
+
budget?: string | null
|
|
109095
|
+
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
109096
|
+
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
109097
|
+
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
109098
|
+
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
109099
|
+
dealbreakers?: NullableJsonNullValueInput | InputJsonValue
|
|
109100
|
+
culture?: NullableJsonNullValueInput | InputJsonValue
|
|
109101
|
+
success_metrics?: NullableJsonNullValueInput | InputJsonValue
|
|
109102
|
+
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
109103
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
109104
|
+
current_phase?: string | null
|
|
109105
|
+
orion_execution_id?: string | null
|
|
109106
|
+
created_at?: Date | string
|
|
109107
|
+
updated_at?: Date | string
|
|
109108
|
+
is_active?: boolean
|
|
109109
|
+
}
|
|
109110
|
+
|
|
108244
109111
|
export type ApprovalCreateManyUserInput = {
|
|
108245
109112
|
id?: string
|
|
108246
109113
|
job_description_id: string
|
|
@@ -108571,16 +109438,19 @@ export namespace Prisma {
|
|
|
108571
109438
|
export type JobProfileCreateManyCreatorInput = {
|
|
108572
109439
|
id?: string
|
|
108573
109440
|
organisation_id: string
|
|
109441
|
+
hiring_manager_id?: string | null
|
|
108574
109442
|
assigned_to?: string | null
|
|
108575
109443
|
status?: $Enums.JobProfileStatus
|
|
108576
109444
|
title?: string | null
|
|
108577
109445
|
role_type?: string | null
|
|
108578
109446
|
work_arrangement?: string | null
|
|
109447
|
+
employment_type?: string | null
|
|
108579
109448
|
location?: string | null
|
|
108580
109449
|
experience_min?: string | null
|
|
108581
109450
|
reporting?: string | null
|
|
108582
109451
|
comp_range?: string | null
|
|
108583
109452
|
comp_benchmark?: string | null
|
|
109453
|
+
budget?: string | null
|
|
108584
109454
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
108585
109455
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
108586
109456
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -108600,16 +109470,19 @@ export namespace Prisma {
|
|
|
108600
109470
|
export type JobProfileCreateManyAssigneeInput = {
|
|
108601
109471
|
id?: string
|
|
108602
109472
|
organisation_id: string
|
|
109473
|
+
hiring_manager_id?: string | null
|
|
108603
109474
|
created_by: string
|
|
108604
109475
|
status?: $Enums.JobProfileStatus
|
|
108605
109476
|
title?: string | null
|
|
108606
109477
|
role_type?: string | null
|
|
108607
109478
|
work_arrangement?: string | null
|
|
109479
|
+
employment_type?: string | null
|
|
108608
109480
|
location?: string | null
|
|
108609
109481
|
experience_min?: string | null
|
|
108610
109482
|
reporting?: string | null
|
|
108611
109483
|
comp_range?: string | null
|
|
108612
109484
|
comp_benchmark?: string | null
|
|
109485
|
+
budget?: string | null
|
|
108613
109486
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
108614
109487
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
108615
109488
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -108931,6 +109804,104 @@ export namespace Prisma {
|
|
|
108931
109804
|
job_profile_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108932
109805
|
}
|
|
108933
109806
|
|
|
109807
|
+
export type JobProfileUpdateWithoutHiring_managerInput = {
|
|
109808
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
109809
|
+
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
109810
|
+
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109811
|
+
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109812
|
+
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109813
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109814
|
+
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109815
|
+
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109816
|
+
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109817
|
+
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109818
|
+
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109819
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109820
|
+
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
109821
|
+
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
109822
|
+
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
109823
|
+
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
109824
|
+
dealbreakers?: NullableJsonNullValueInput | InputJsonValue
|
|
109825
|
+
culture?: NullableJsonNullValueInput | InputJsonValue
|
|
109826
|
+
success_metrics?: NullableJsonNullValueInput | InputJsonValue
|
|
109827
|
+
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
109828
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
109829
|
+
current_phase?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109830
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109831
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109832
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109833
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
109834
|
+
organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
|
|
109835
|
+
creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
|
|
109836
|
+
assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
|
|
109837
|
+
job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
|
|
109838
|
+
}
|
|
109839
|
+
|
|
109840
|
+
export type JobProfileUncheckedUpdateWithoutHiring_managerInput = {
|
|
109841
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
109842
|
+
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
109843
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
109844
|
+
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109845
|
+
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
109846
|
+
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109847
|
+
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109848
|
+
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109849
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109850
|
+
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109851
|
+
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109852
|
+
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109853
|
+
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109854
|
+
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109855
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109856
|
+
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
109857
|
+
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
109858
|
+
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
109859
|
+
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
109860
|
+
dealbreakers?: NullableJsonNullValueInput | InputJsonValue
|
|
109861
|
+
culture?: NullableJsonNullValueInput | InputJsonValue
|
|
109862
|
+
success_metrics?: NullableJsonNullValueInput | InputJsonValue
|
|
109863
|
+
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
109864
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
109865
|
+
current_phase?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109866
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109867
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109868
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109869
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
109870
|
+
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutJob_profileNestedInput
|
|
109871
|
+
}
|
|
109872
|
+
|
|
109873
|
+
export type JobProfileUncheckedUpdateManyWithoutHiring_managerInput = {
|
|
109874
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
109875
|
+
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
109876
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
109877
|
+
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109878
|
+
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
109879
|
+
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109880
|
+
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109881
|
+
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109882
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109883
|
+
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109884
|
+
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109885
|
+
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109886
|
+
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109887
|
+
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109888
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109889
|
+
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
109890
|
+
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
109891
|
+
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
109892
|
+
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
109893
|
+
dealbreakers?: NullableJsonNullValueInput | InputJsonValue
|
|
109894
|
+
culture?: NullableJsonNullValueInput | InputJsonValue
|
|
109895
|
+
success_metrics?: NullableJsonNullValueInput | InputJsonValue
|
|
109896
|
+
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
109897
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
109898
|
+
current_phase?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109899
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109900
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109901
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109902
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
109903
|
+
}
|
|
109904
|
+
|
|
108934
109905
|
export type ApprovalUpdateWithoutUserInput = {
|
|
108935
109906
|
id?: StringFieldUpdateOperationsInput | string
|
|
108936
109907
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -109968,11 +110939,13 @@ export namespace Prisma {
|
|
|
109968
110939
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109969
110940
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109970
110941
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110942
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109971
110943
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109972
110944
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109973
110945
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109974
110946
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109975
110947
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110948
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109976
110949
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
109977
110950
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
109978
110951
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -109988,6 +110961,7 @@ export namespace Prisma {
|
|
|
109988
110961
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
109989
110962
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
109990
110963
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
|
|
110964
|
+
hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
|
|
109991
110965
|
assignee?: UserUpdateOneWithoutAssigned_job_profilesNestedInput
|
|
109992
110966
|
job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
|
|
109993
110967
|
}
|
|
@@ -109995,16 +110969,19 @@ export namespace Prisma {
|
|
|
109995
110969
|
export type JobProfileUncheckedUpdateWithoutCreatorInput = {
|
|
109996
110970
|
id?: StringFieldUpdateOperationsInput | string
|
|
109997
110971
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
110972
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109998
110973
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109999
110974
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
110000
110975
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110001
110976
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110002
110977
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110978
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110003
110979
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110004
110980
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110005
110981
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110006
110982
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110007
110983
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110984
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110008
110985
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
110009
110986
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
110010
110987
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -110025,16 +111002,19 @@ export namespace Prisma {
|
|
|
110025
111002
|
export type JobProfileUncheckedUpdateManyWithoutCreatorInput = {
|
|
110026
111003
|
id?: StringFieldUpdateOperationsInput | string
|
|
110027
111004
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
111005
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110028
111006
|
assigned_to?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110029
111007
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
110030
111008
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110031
111009
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110032
111010
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111011
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110033
111012
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110034
111013
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110035
111014
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110036
111015
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110037
111016
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111017
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110038
111018
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
110039
111019
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
110040
111020
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -110057,11 +111037,13 @@ export namespace Prisma {
|
|
|
110057
111037
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110058
111038
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110059
111039
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111040
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110060
111041
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110061
111042
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110062
111043
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110063
111044
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110064
111045
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111046
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110065
111047
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
110066
111048
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
110067
111049
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -110077,6 +111059,7 @@ export namespace Prisma {
|
|
|
110077
111059
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
110078
111060
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
110079
111061
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_profilesNestedInput
|
|
111062
|
+
hiring_manager?: UserUpdateOneWithoutHiring_manager_job_profilesNestedInput
|
|
110080
111063
|
creator?: UserUpdateOneRequiredWithoutCreated_job_profilesNestedInput
|
|
110081
111064
|
job_descriptions?: JobDescriptionUpdateManyWithoutJob_profileNestedInput
|
|
110082
111065
|
}
|
|
@@ -110084,16 +111067,19 @@ export namespace Prisma {
|
|
|
110084
111067
|
export type JobProfileUncheckedUpdateWithoutAssigneeInput = {
|
|
110085
111068
|
id?: StringFieldUpdateOperationsInput | string
|
|
110086
111069
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
111070
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110087
111071
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
110088
111072
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
110089
111073
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110090
111074
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110091
111075
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111076
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110092
111077
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110093
111078
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110094
111079
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110095
111080
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110096
111081
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111082
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110097
111083
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
110098
111084
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
110099
111085
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -110114,16 +111100,19 @@ export namespace Prisma {
|
|
|
110114
111100
|
export type JobProfileUncheckedUpdateManyWithoutAssigneeInput = {
|
|
110115
111101
|
id?: StringFieldUpdateOperationsInput | string
|
|
110116
111102
|
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
111103
|
+
hiring_manager_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110117
111104
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
110118
111105
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
110119
111106
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110120
111107
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110121
111108
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111109
|
+
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110122
111110
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110123
111111
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110124
111112
|
reporting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110125
111113
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110126
111114
|
comp_benchmark?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111115
|
+
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110127
111116
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
110128
111117
|
deliverables?: NullableJsonNullValueInput | InputJsonValue
|
|
110129
111118
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|