@adaptware/eagles-db 0.5.29 → 0.5.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -2
- package/client/edge.js +9 -5
- package/client/index-browser.js +6 -2
- package/client/index.d.ts +428 -113
- package/client/index.js +9 -5
- package/client/package.json +1 -1
- package/client/schema.prisma +13 -10
- package/client/wasm.js +9 -5
- package/package.json +1 -1
- package/prisma/schema/jobProfile.prisma +13 -10
- package/prisma/schema/migrations/20260816120000_job_profile_opening_setup/migration.sql +13 -0
package/client/index.d.ts
CHANGED
|
@@ -86659,10 +86659,20 @@ export namespace Prisma {
|
|
|
86659
86659
|
|
|
86660
86660
|
export type AggregateJobProfile = {
|
|
86661
86661
|
_count: JobProfileCountAggregateOutputType | null
|
|
86662
|
+
_avg: JobProfileAvgAggregateOutputType | null
|
|
86663
|
+
_sum: JobProfileSumAggregateOutputType | null
|
|
86662
86664
|
_min: JobProfileMinAggregateOutputType | null
|
|
86663
86665
|
_max: JobProfileMaxAggregateOutputType | null
|
|
86664
86666
|
}
|
|
86665
86667
|
|
|
86668
|
+
export type JobProfileAvgAggregateOutputType = {
|
|
86669
|
+
openings: number | null
|
|
86670
|
+
}
|
|
86671
|
+
|
|
86672
|
+
export type JobProfileSumAggregateOutputType = {
|
|
86673
|
+
openings: number | null
|
|
86674
|
+
}
|
|
86675
|
+
|
|
86666
86676
|
export type JobProfileMinAggregateOutputType = {
|
|
86667
86677
|
id: string | null
|
|
86668
86678
|
organisation_id: string | null
|
|
@@ -86672,17 +86682,21 @@ export namespace Prisma {
|
|
|
86672
86682
|
status: $Enums.JobProfileStatus | null
|
|
86673
86683
|
title: string | null
|
|
86674
86684
|
role_type: string | null
|
|
86685
|
+
job_role_level: string | null
|
|
86675
86686
|
work_arrangement: string | null
|
|
86676
86687
|
employment_type: string | null
|
|
86688
|
+
country_code: string | null
|
|
86689
|
+
state_code: string | null
|
|
86690
|
+
city: string | null
|
|
86677
86691
|
location: string | null
|
|
86678
86692
|
experience: string | null
|
|
86679
86693
|
experience_min: string | null
|
|
86680
86694
|
comp_range: string | null
|
|
86681
86695
|
budget: string | null
|
|
86682
|
-
|
|
86696
|
+
openings: number | null
|
|
86683
86697
|
orion_execution_id: string | null
|
|
86684
|
-
created_at: Date | null
|
|
86685
86698
|
created_by: string | null
|
|
86699
|
+
created_at: Date | null
|
|
86686
86700
|
updated_at: Date | null
|
|
86687
86701
|
is_active: boolean | null
|
|
86688
86702
|
}
|
|
@@ -86696,17 +86710,21 @@ export namespace Prisma {
|
|
|
86696
86710
|
status: $Enums.JobProfileStatus | null
|
|
86697
86711
|
title: string | null
|
|
86698
86712
|
role_type: string | null
|
|
86713
|
+
job_role_level: string | null
|
|
86699
86714
|
work_arrangement: string | null
|
|
86700
86715
|
employment_type: string | null
|
|
86716
|
+
country_code: string | null
|
|
86717
|
+
state_code: string | null
|
|
86718
|
+
city: string | null
|
|
86701
86719
|
location: string | null
|
|
86702
86720
|
experience: string | null
|
|
86703
86721
|
experience_min: string | null
|
|
86704
86722
|
comp_range: string | null
|
|
86705
86723
|
budget: string | null
|
|
86706
|
-
|
|
86724
|
+
openings: number | null
|
|
86707
86725
|
orion_execution_id: string | null
|
|
86708
|
-
created_at: Date | null
|
|
86709
86726
|
created_by: string | null
|
|
86727
|
+
created_at: Date | null
|
|
86710
86728
|
updated_at: Date | null
|
|
86711
86729
|
is_active: boolean | null
|
|
86712
86730
|
}
|
|
@@ -86720,14 +86738,18 @@ export namespace Prisma {
|
|
|
86720
86738
|
status: number
|
|
86721
86739
|
title: number
|
|
86722
86740
|
role_type: number
|
|
86741
|
+
job_role_level: number
|
|
86723
86742
|
work_arrangement: number
|
|
86724
86743
|
employment_type: number
|
|
86744
|
+
country_code: number
|
|
86745
|
+
state_code: number
|
|
86746
|
+
city: number
|
|
86725
86747
|
location: number
|
|
86726
86748
|
experience: number
|
|
86727
86749
|
experience_min: number
|
|
86728
86750
|
comp_range: number
|
|
86729
86751
|
budget: number
|
|
86730
|
-
|
|
86752
|
+
openings: number
|
|
86731
86753
|
responsibilities: number
|
|
86732
86754
|
must_have_skills: number
|
|
86733
86755
|
nice_to_have_skills: number
|
|
@@ -86735,14 +86757,22 @@ export namespace Prisma {
|
|
|
86735
86757
|
competencies: number
|
|
86736
86758
|
conversation_history: number
|
|
86737
86759
|
orion_execution_id: number
|
|
86738
|
-
created_at: number
|
|
86739
86760
|
created_by: number
|
|
86761
|
+
created_at: number
|
|
86740
86762
|
updated_at: number
|
|
86741
86763
|
is_active: number
|
|
86742
86764
|
_all: number
|
|
86743
86765
|
}
|
|
86744
86766
|
|
|
86745
86767
|
|
|
86768
|
+
export type JobProfileAvgAggregateInputType = {
|
|
86769
|
+
openings?: true
|
|
86770
|
+
}
|
|
86771
|
+
|
|
86772
|
+
export type JobProfileSumAggregateInputType = {
|
|
86773
|
+
openings?: true
|
|
86774
|
+
}
|
|
86775
|
+
|
|
86746
86776
|
export type JobProfileMinAggregateInputType = {
|
|
86747
86777
|
id?: true
|
|
86748
86778
|
organisation_id?: true
|
|
@@ -86752,17 +86782,21 @@ export namespace Prisma {
|
|
|
86752
86782
|
status?: true
|
|
86753
86783
|
title?: true
|
|
86754
86784
|
role_type?: true
|
|
86785
|
+
job_role_level?: true
|
|
86755
86786
|
work_arrangement?: true
|
|
86756
86787
|
employment_type?: true
|
|
86788
|
+
country_code?: true
|
|
86789
|
+
state_code?: true
|
|
86790
|
+
city?: true
|
|
86757
86791
|
location?: true
|
|
86758
86792
|
experience?: true
|
|
86759
86793
|
experience_min?: true
|
|
86760
86794
|
comp_range?: true
|
|
86761
86795
|
budget?: true
|
|
86762
|
-
|
|
86796
|
+
openings?: true
|
|
86763
86797
|
orion_execution_id?: true
|
|
86764
|
-
created_at?: true
|
|
86765
86798
|
created_by?: true
|
|
86799
|
+
created_at?: true
|
|
86766
86800
|
updated_at?: true
|
|
86767
86801
|
is_active?: true
|
|
86768
86802
|
}
|
|
@@ -86776,17 +86810,21 @@ export namespace Prisma {
|
|
|
86776
86810
|
status?: true
|
|
86777
86811
|
title?: true
|
|
86778
86812
|
role_type?: true
|
|
86813
|
+
job_role_level?: true
|
|
86779
86814
|
work_arrangement?: true
|
|
86780
86815
|
employment_type?: true
|
|
86816
|
+
country_code?: true
|
|
86817
|
+
state_code?: true
|
|
86818
|
+
city?: true
|
|
86781
86819
|
location?: true
|
|
86782
86820
|
experience?: true
|
|
86783
86821
|
experience_min?: true
|
|
86784
86822
|
comp_range?: true
|
|
86785
86823
|
budget?: true
|
|
86786
|
-
|
|
86824
|
+
openings?: true
|
|
86787
86825
|
orion_execution_id?: true
|
|
86788
|
-
created_at?: true
|
|
86789
86826
|
created_by?: true
|
|
86827
|
+
created_at?: true
|
|
86790
86828
|
updated_at?: true
|
|
86791
86829
|
is_active?: true
|
|
86792
86830
|
}
|
|
@@ -86800,14 +86838,18 @@ export namespace Prisma {
|
|
|
86800
86838
|
status?: true
|
|
86801
86839
|
title?: true
|
|
86802
86840
|
role_type?: true
|
|
86841
|
+
job_role_level?: true
|
|
86803
86842
|
work_arrangement?: true
|
|
86804
86843
|
employment_type?: true
|
|
86844
|
+
country_code?: true
|
|
86845
|
+
state_code?: true
|
|
86846
|
+
city?: true
|
|
86805
86847
|
location?: true
|
|
86806
86848
|
experience?: true
|
|
86807
86849
|
experience_min?: true
|
|
86808
86850
|
comp_range?: true
|
|
86809
86851
|
budget?: true
|
|
86810
|
-
|
|
86852
|
+
openings?: true
|
|
86811
86853
|
responsibilities?: true
|
|
86812
86854
|
must_have_skills?: true
|
|
86813
86855
|
nice_to_have_skills?: true
|
|
@@ -86815,8 +86857,8 @@ export namespace Prisma {
|
|
|
86815
86857
|
competencies?: true
|
|
86816
86858
|
conversation_history?: true
|
|
86817
86859
|
orion_execution_id?: true
|
|
86818
|
-
created_at?: true
|
|
86819
86860
|
created_by?: true
|
|
86861
|
+
created_at?: true
|
|
86820
86862
|
updated_at?: true
|
|
86821
86863
|
is_active?: true
|
|
86822
86864
|
_all?: true
|
|
@@ -86857,6 +86899,18 @@ export namespace Prisma {
|
|
|
86857
86899
|
* Count returned JobProfiles
|
|
86858
86900
|
**/
|
|
86859
86901
|
_count?: true | JobProfileCountAggregateInputType
|
|
86902
|
+
/**
|
|
86903
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
86904
|
+
*
|
|
86905
|
+
* Select which fields to average
|
|
86906
|
+
**/
|
|
86907
|
+
_avg?: JobProfileAvgAggregateInputType
|
|
86908
|
+
/**
|
|
86909
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
86910
|
+
*
|
|
86911
|
+
* Select which fields to sum
|
|
86912
|
+
**/
|
|
86913
|
+
_sum?: JobProfileSumAggregateInputType
|
|
86860
86914
|
/**
|
|
86861
86915
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
86862
86916
|
*
|
|
@@ -86890,6 +86944,8 @@ export namespace Prisma {
|
|
|
86890
86944
|
take?: number
|
|
86891
86945
|
skip?: number
|
|
86892
86946
|
_count?: JobProfileCountAggregateInputType | true
|
|
86947
|
+
_avg?: JobProfileAvgAggregateInputType
|
|
86948
|
+
_sum?: JobProfileSumAggregateInputType
|
|
86893
86949
|
_min?: JobProfileMinAggregateInputType
|
|
86894
86950
|
_max?: JobProfileMaxAggregateInputType
|
|
86895
86951
|
}
|
|
@@ -86903,14 +86959,18 @@ export namespace Prisma {
|
|
|
86903
86959
|
status: $Enums.JobProfileStatus
|
|
86904
86960
|
title: string | null
|
|
86905
86961
|
role_type: string | null
|
|
86962
|
+
job_role_level: string | null
|
|
86906
86963
|
work_arrangement: string | null
|
|
86907
86964
|
employment_type: string | null
|
|
86965
|
+
country_code: string
|
|
86966
|
+
state_code: string | null
|
|
86967
|
+
city: string | null
|
|
86908
86968
|
location: string | null
|
|
86909
86969
|
experience: string | null
|
|
86910
86970
|
experience_min: string | null
|
|
86911
86971
|
comp_range: string | null
|
|
86912
86972
|
budget: string | null
|
|
86913
|
-
|
|
86973
|
+
openings: number
|
|
86914
86974
|
responsibilities: JsonValue | null
|
|
86915
86975
|
must_have_skills: JsonValue | null
|
|
86916
86976
|
nice_to_have_skills: JsonValue | null
|
|
@@ -86918,11 +86978,13 @@ export namespace Prisma {
|
|
|
86918
86978
|
competencies: JsonValue | null
|
|
86919
86979
|
conversation_history: JsonValue | null
|
|
86920
86980
|
orion_execution_id: string | null
|
|
86921
|
-
created_at: Date
|
|
86922
86981
|
created_by: string
|
|
86982
|
+
created_at: Date
|
|
86923
86983
|
updated_at: Date
|
|
86924
86984
|
is_active: boolean
|
|
86925
86985
|
_count: JobProfileCountAggregateOutputType | null
|
|
86986
|
+
_avg: JobProfileAvgAggregateOutputType | null
|
|
86987
|
+
_sum: JobProfileSumAggregateOutputType | null
|
|
86926
86988
|
_min: JobProfileMinAggregateOutputType | null
|
|
86927
86989
|
_max: JobProfileMaxAggregateOutputType | null
|
|
86928
86990
|
}
|
|
@@ -86950,14 +87012,18 @@ export namespace Prisma {
|
|
|
86950
87012
|
status?: boolean
|
|
86951
87013
|
title?: boolean
|
|
86952
87014
|
role_type?: boolean
|
|
87015
|
+
job_role_level?: boolean
|
|
86953
87016
|
work_arrangement?: boolean
|
|
86954
87017
|
employment_type?: boolean
|
|
87018
|
+
country_code?: boolean
|
|
87019
|
+
state_code?: boolean
|
|
87020
|
+
city?: boolean
|
|
86955
87021
|
location?: boolean
|
|
86956
87022
|
experience?: boolean
|
|
86957
87023
|
experience_min?: boolean
|
|
86958
87024
|
comp_range?: boolean
|
|
86959
87025
|
budget?: boolean
|
|
86960
|
-
|
|
87026
|
+
openings?: boolean
|
|
86961
87027
|
responsibilities?: boolean
|
|
86962
87028
|
must_have_skills?: boolean
|
|
86963
87029
|
nice_to_have_skills?: boolean
|
|
@@ -86965,8 +87031,8 @@ export namespace Prisma {
|
|
|
86965
87031
|
competencies?: boolean
|
|
86966
87032
|
conversation_history?: boolean
|
|
86967
87033
|
orion_execution_id?: boolean
|
|
86968
|
-
created_at?: boolean
|
|
86969
87034
|
created_by?: boolean
|
|
87035
|
+
created_at?: boolean
|
|
86970
87036
|
updated_at?: boolean
|
|
86971
87037
|
is_active?: boolean
|
|
86972
87038
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
@@ -86987,14 +87053,18 @@ export namespace Prisma {
|
|
|
86987
87053
|
status?: boolean
|
|
86988
87054
|
title?: boolean
|
|
86989
87055
|
role_type?: boolean
|
|
87056
|
+
job_role_level?: boolean
|
|
86990
87057
|
work_arrangement?: boolean
|
|
86991
87058
|
employment_type?: boolean
|
|
87059
|
+
country_code?: boolean
|
|
87060
|
+
state_code?: boolean
|
|
87061
|
+
city?: boolean
|
|
86992
87062
|
location?: boolean
|
|
86993
87063
|
experience?: boolean
|
|
86994
87064
|
experience_min?: boolean
|
|
86995
87065
|
comp_range?: boolean
|
|
86996
87066
|
budget?: boolean
|
|
86997
|
-
|
|
87067
|
+
openings?: boolean
|
|
86998
87068
|
responsibilities?: boolean
|
|
86999
87069
|
must_have_skills?: boolean
|
|
87000
87070
|
nice_to_have_skills?: boolean
|
|
@@ -87002,8 +87072,8 @@ export namespace Prisma {
|
|
|
87002
87072
|
competencies?: boolean
|
|
87003
87073
|
conversation_history?: boolean
|
|
87004
87074
|
orion_execution_id?: boolean
|
|
87005
|
-
created_at?: boolean
|
|
87006
87075
|
created_by?: boolean
|
|
87076
|
+
created_at?: boolean
|
|
87007
87077
|
updated_at?: boolean
|
|
87008
87078
|
is_active?: boolean
|
|
87009
87079
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
@@ -87022,14 +87092,18 @@ export namespace Prisma {
|
|
|
87022
87092
|
status?: boolean
|
|
87023
87093
|
title?: boolean
|
|
87024
87094
|
role_type?: boolean
|
|
87095
|
+
job_role_level?: boolean
|
|
87025
87096
|
work_arrangement?: boolean
|
|
87026
87097
|
employment_type?: boolean
|
|
87098
|
+
country_code?: boolean
|
|
87099
|
+
state_code?: boolean
|
|
87100
|
+
city?: boolean
|
|
87027
87101
|
location?: boolean
|
|
87028
87102
|
experience?: boolean
|
|
87029
87103
|
experience_min?: boolean
|
|
87030
87104
|
comp_range?: boolean
|
|
87031
87105
|
budget?: boolean
|
|
87032
|
-
|
|
87106
|
+
openings?: boolean
|
|
87033
87107
|
responsibilities?: boolean
|
|
87034
87108
|
must_have_skills?: boolean
|
|
87035
87109
|
nice_to_have_skills?: boolean
|
|
@@ -87037,8 +87111,8 @@ export namespace Prisma {
|
|
|
87037
87111
|
competencies?: boolean
|
|
87038
87112
|
conversation_history?: boolean
|
|
87039
87113
|
orion_execution_id?: boolean
|
|
87040
|
-
created_at?: boolean
|
|
87041
87114
|
created_by?: boolean
|
|
87115
|
+
created_at?: boolean
|
|
87042
87116
|
updated_at?: boolean
|
|
87043
87117
|
is_active?: boolean
|
|
87044
87118
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
@@ -87057,14 +87131,18 @@ export namespace Prisma {
|
|
|
87057
87131
|
status?: boolean
|
|
87058
87132
|
title?: boolean
|
|
87059
87133
|
role_type?: boolean
|
|
87134
|
+
job_role_level?: boolean
|
|
87060
87135
|
work_arrangement?: boolean
|
|
87061
87136
|
employment_type?: boolean
|
|
87137
|
+
country_code?: boolean
|
|
87138
|
+
state_code?: boolean
|
|
87139
|
+
city?: boolean
|
|
87062
87140
|
location?: boolean
|
|
87063
87141
|
experience?: boolean
|
|
87064
87142
|
experience_min?: boolean
|
|
87065
87143
|
comp_range?: boolean
|
|
87066
87144
|
budget?: boolean
|
|
87067
|
-
|
|
87145
|
+
openings?: boolean
|
|
87068
87146
|
responsibilities?: boolean
|
|
87069
87147
|
must_have_skills?: boolean
|
|
87070
87148
|
nice_to_have_skills?: boolean
|
|
@@ -87072,13 +87150,13 @@ export namespace Prisma {
|
|
|
87072
87150
|
competencies?: boolean
|
|
87073
87151
|
conversation_history?: boolean
|
|
87074
87152
|
orion_execution_id?: boolean
|
|
87075
|
-
created_at?: boolean
|
|
87076
87153
|
created_by?: boolean
|
|
87154
|
+
created_at?: boolean
|
|
87077
87155
|
updated_at?: boolean
|
|
87078
87156
|
is_active?: boolean
|
|
87079
87157
|
}
|
|
87080
87158
|
|
|
87081
|
-
export type JobProfileOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "hiring_manager_id" | "department_id" | "assigned_to" | "status" | "title" | "role_type" | "work_arrangement" | "employment_type" | "location" | "experience" | "experience_min" | "comp_range" | "budget" | "
|
|
87159
|
+
export type JobProfileOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "hiring_manager_id" | "department_id" | "assigned_to" | "status" | "title" | "role_type" | "job_role_level" | "work_arrangement" | "employment_type" | "country_code" | "state_code" | "city" | "location" | "experience" | "experience_min" | "comp_range" | "budget" | "openings" | "responsibilities" | "must_have_skills" | "nice_to_have_skills" | "culture" | "competencies" | "conversation_history" | "orion_execution_id" | "created_by" | "created_at" | "updated_at" | "is_active", ExtArgs["result"]["jobProfile"]>
|
|
87082
87160
|
export type JobProfileInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
87083
87161
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
87084
87162
|
department?: boolean | JobProfile$departmentArgs<ExtArgs>
|
|
@@ -87121,18 +87199,37 @@ export namespace Prisma {
|
|
|
87121
87199
|
assigned_to: string | null
|
|
87122
87200
|
status: $Enums.JobProfileStatus
|
|
87123
87201
|
title: string | null
|
|
87202
|
+
/**
|
|
87203
|
+
* Requisition reason: new / replacement / backfill (not the seniority ladder).
|
|
87204
|
+
*/
|
|
87124
87205
|
role_type: string | null
|
|
87206
|
+
/**
|
|
87207
|
+
* Seniority ladder (JobRoleLevel), e.g. TRAINEE, SENIOR_IC, CXO.
|
|
87208
|
+
*/
|
|
87209
|
+
job_role_level: string | null
|
|
87125
87210
|
work_arrangement: string | null
|
|
87126
87211
|
employment_type: string | null
|
|
87212
|
+
/**
|
|
87213
|
+
* ISO 3166-1 alpha-2 (e.g. IN). Currency is derived in the UI from this.
|
|
87214
|
+
*/
|
|
87215
|
+
country_code: string
|
|
87216
|
+
/**
|
|
87217
|
+
* CSC state iso2 (unique with country_code).
|
|
87218
|
+
*/
|
|
87219
|
+
state_code: string | null
|
|
87220
|
+
/**
|
|
87221
|
+
* City display name from CSC (not a code).
|
|
87222
|
+
*/
|
|
87223
|
+
city: string | null
|
|
87224
|
+
/**
|
|
87225
|
+
* @deprecated Use `city` + `state_code`. Not written by new setup/PATCH paths.
|
|
87226
|
+
*/
|
|
87127
87227
|
location: string | null
|
|
87128
87228
|
experience: string | null
|
|
87129
87229
|
experience_min: string | null
|
|
87130
87230
|
comp_range: string | null
|
|
87131
87231
|
budget: string | null
|
|
87132
|
-
|
|
87133
|
-
* ISO 3166-1 alpha-2 (e.g. IN). Currency is derived in the UI from this.
|
|
87134
|
-
*/
|
|
87135
|
-
country_code: string
|
|
87232
|
+
openings: number
|
|
87136
87233
|
responsibilities: Prisma.JsonValue | null
|
|
87137
87234
|
must_have_skills: Prisma.JsonValue | null
|
|
87138
87235
|
nice_to_have_skills: Prisma.JsonValue | null
|
|
@@ -87140,8 +87237,8 @@ export namespace Prisma {
|
|
|
87140
87237
|
competencies: Prisma.JsonValue | null
|
|
87141
87238
|
conversation_history: Prisma.JsonValue | null
|
|
87142
87239
|
orion_execution_id: string | null
|
|
87143
|
-
created_at: Date
|
|
87144
87240
|
created_by: string
|
|
87241
|
+
created_at: Date
|
|
87145
87242
|
updated_at: Date
|
|
87146
87243
|
is_active: boolean
|
|
87147
87244
|
}, ExtArgs["result"]["jobProfile"]>
|
|
@@ -87581,14 +87678,18 @@ export namespace Prisma {
|
|
|
87581
87678
|
readonly status: FieldRef<"JobProfile", 'JobProfileStatus'>
|
|
87582
87679
|
readonly title: FieldRef<"JobProfile", 'String'>
|
|
87583
87680
|
readonly role_type: FieldRef<"JobProfile", 'String'>
|
|
87681
|
+
readonly job_role_level: FieldRef<"JobProfile", 'String'>
|
|
87584
87682
|
readonly work_arrangement: FieldRef<"JobProfile", 'String'>
|
|
87585
87683
|
readonly employment_type: FieldRef<"JobProfile", 'String'>
|
|
87684
|
+
readonly country_code: FieldRef<"JobProfile", 'String'>
|
|
87685
|
+
readonly state_code: FieldRef<"JobProfile", 'String'>
|
|
87686
|
+
readonly city: FieldRef<"JobProfile", 'String'>
|
|
87586
87687
|
readonly location: FieldRef<"JobProfile", 'String'>
|
|
87587
87688
|
readonly experience: FieldRef<"JobProfile", 'String'>
|
|
87588
87689
|
readonly experience_min: FieldRef<"JobProfile", 'String'>
|
|
87589
87690
|
readonly comp_range: FieldRef<"JobProfile", 'String'>
|
|
87590
87691
|
readonly budget: FieldRef<"JobProfile", 'String'>
|
|
87591
|
-
readonly
|
|
87692
|
+
readonly openings: FieldRef<"JobProfile", 'Int'>
|
|
87592
87693
|
readonly responsibilities: FieldRef<"JobProfile", 'Json'>
|
|
87593
87694
|
readonly must_have_skills: FieldRef<"JobProfile", 'Json'>
|
|
87594
87695
|
readonly nice_to_have_skills: FieldRef<"JobProfile", 'Json'>
|
|
@@ -87596,8 +87697,8 @@ export namespace Prisma {
|
|
|
87596
87697
|
readonly competencies: FieldRef<"JobProfile", 'Json'>
|
|
87597
87698
|
readonly conversation_history: FieldRef<"JobProfile", 'Json'>
|
|
87598
87699
|
readonly orion_execution_id: FieldRef<"JobProfile", 'String'>
|
|
87599
|
-
readonly created_at: FieldRef<"JobProfile", 'DateTime'>
|
|
87600
87700
|
readonly created_by: FieldRef<"JobProfile", 'String'>
|
|
87701
|
+
readonly created_at: FieldRef<"JobProfile", 'DateTime'>
|
|
87601
87702
|
readonly updated_at: FieldRef<"JobProfile", 'DateTime'>
|
|
87602
87703
|
readonly is_active: FieldRef<"JobProfile", 'Boolean'>
|
|
87603
87704
|
}
|
|
@@ -142988,14 +143089,18 @@ export namespace Prisma {
|
|
|
142988
143089
|
status: 'status',
|
|
142989
143090
|
title: 'title',
|
|
142990
143091
|
role_type: 'role_type',
|
|
143092
|
+
job_role_level: 'job_role_level',
|
|
142991
143093
|
work_arrangement: 'work_arrangement',
|
|
142992
143094
|
employment_type: 'employment_type',
|
|
143095
|
+
country_code: 'country_code',
|
|
143096
|
+
state_code: 'state_code',
|
|
143097
|
+
city: 'city',
|
|
142993
143098
|
location: 'location',
|
|
142994
143099
|
experience: 'experience',
|
|
142995
143100
|
experience_min: 'experience_min',
|
|
142996
143101
|
comp_range: 'comp_range',
|
|
142997
143102
|
budget: 'budget',
|
|
142998
|
-
|
|
143103
|
+
openings: 'openings',
|
|
142999
143104
|
responsibilities: 'responsibilities',
|
|
143000
143105
|
must_have_skills: 'must_have_skills',
|
|
143001
143106
|
nice_to_have_skills: 'nice_to_have_skills',
|
|
@@ -143003,8 +143108,8 @@ export namespace Prisma {
|
|
|
143003
143108
|
competencies: 'competencies',
|
|
143004
143109
|
conversation_history: 'conversation_history',
|
|
143005
143110
|
orion_execution_id: 'orion_execution_id',
|
|
143006
|
-
created_at: 'created_at',
|
|
143007
143111
|
created_by: 'created_by',
|
|
143112
|
+
created_at: 'created_at',
|
|
143008
143113
|
updated_at: 'updated_at',
|
|
143009
143114
|
is_active: 'is_active'
|
|
143010
143115
|
};
|
|
@@ -152577,14 +152682,18 @@ export namespace Prisma {
|
|
|
152577
152682
|
status?: EnumJobProfileStatusFilter<"JobProfile"> | $Enums.JobProfileStatus
|
|
152578
152683
|
title?: StringNullableFilter<"JobProfile"> | string | null
|
|
152579
152684
|
role_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
152685
|
+
job_role_level?: StringNullableFilter<"JobProfile"> | string | null
|
|
152580
152686
|
work_arrangement?: StringNullableFilter<"JobProfile"> | string | null
|
|
152581
152687
|
employment_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
152688
|
+
country_code?: StringFilter<"JobProfile"> | string
|
|
152689
|
+
state_code?: StringNullableFilter<"JobProfile"> | string | null
|
|
152690
|
+
city?: StringNullableFilter<"JobProfile"> | string | null
|
|
152582
152691
|
location?: StringNullableFilter<"JobProfile"> | string | null
|
|
152583
152692
|
experience?: StringNullableFilter<"JobProfile"> | string | null
|
|
152584
152693
|
experience_min?: StringNullableFilter<"JobProfile"> | string | null
|
|
152585
152694
|
comp_range?: StringNullableFilter<"JobProfile"> | string | null
|
|
152586
152695
|
budget?: StringNullableFilter<"JobProfile"> | string | null
|
|
152587
|
-
|
|
152696
|
+
openings?: IntFilter<"JobProfile"> | number
|
|
152588
152697
|
responsibilities?: JsonNullableFilter<"JobProfile">
|
|
152589
152698
|
must_have_skills?: JsonNullableFilter<"JobProfile">
|
|
152590
152699
|
nice_to_have_skills?: JsonNullableFilter<"JobProfile">
|
|
@@ -152592,8 +152701,8 @@ export namespace Prisma {
|
|
|
152592
152701
|
competencies?: JsonNullableFilter<"JobProfile">
|
|
152593
152702
|
conversation_history?: JsonNullableFilter<"JobProfile">
|
|
152594
152703
|
orion_execution_id?: StringNullableFilter<"JobProfile"> | string | null
|
|
152595
|
-
created_at?: DateTimeFilter<"JobProfile"> | Date | string
|
|
152596
152704
|
created_by?: StringFilter<"JobProfile"> | string
|
|
152705
|
+
created_at?: DateTimeFilter<"JobProfile"> | Date | string
|
|
152597
152706
|
updated_at?: DateTimeFilter<"JobProfile"> | Date | string
|
|
152598
152707
|
is_active?: BoolFilter<"JobProfile"> | boolean
|
|
152599
152708
|
organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
|
|
@@ -152613,14 +152722,18 @@ export namespace Prisma {
|
|
|
152613
152722
|
status?: SortOrder
|
|
152614
152723
|
title?: SortOrderInput | SortOrder
|
|
152615
152724
|
role_type?: SortOrderInput | SortOrder
|
|
152725
|
+
job_role_level?: SortOrderInput | SortOrder
|
|
152616
152726
|
work_arrangement?: SortOrderInput | SortOrder
|
|
152617
152727
|
employment_type?: SortOrderInput | SortOrder
|
|
152728
|
+
country_code?: SortOrder
|
|
152729
|
+
state_code?: SortOrderInput | SortOrder
|
|
152730
|
+
city?: SortOrderInput | SortOrder
|
|
152618
152731
|
location?: SortOrderInput | SortOrder
|
|
152619
152732
|
experience?: SortOrderInput | SortOrder
|
|
152620
152733
|
experience_min?: SortOrderInput | SortOrder
|
|
152621
152734
|
comp_range?: SortOrderInput | SortOrder
|
|
152622
152735
|
budget?: SortOrderInput | SortOrder
|
|
152623
|
-
|
|
152736
|
+
openings?: SortOrder
|
|
152624
152737
|
responsibilities?: SortOrderInput | SortOrder
|
|
152625
152738
|
must_have_skills?: SortOrderInput | SortOrder
|
|
152626
152739
|
nice_to_have_skills?: SortOrderInput | SortOrder
|
|
@@ -152628,8 +152741,8 @@ export namespace Prisma {
|
|
|
152628
152741
|
competencies?: SortOrderInput | SortOrder
|
|
152629
152742
|
conversation_history?: SortOrderInput | SortOrder
|
|
152630
152743
|
orion_execution_id?: SortOrderInput | SortOrder
|
|
152631
|
-
created_at?: SortOrder
|
|
152632
152744
|
created_by?: SortOrder
|
|
152745
|
+
created_at?: SortOrder
|
|
152633
152746
|
updated_at?: SortOrder
|
|
152634
152747
|
is_active?: SortOrder
|
|
152635
152748
|
organisation?: OrganisationOrderByWithRelationInput
|
|
@@ -152652,14 +152765,18 @@ export namespace Prisma {
|
|
|
152652
152765
|
status?: EnumJobProfileStatusFilter<"JobProfile"> | $Enums.JobProfileStatus
|
|
152653
152766
|
title?: StringNullableFilter<"JobProfile"> | string | null
|
|
152654
152767
|
role_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
152768
|
+
job_role_level?: StringNullableFilter<"JobProfile"> | string | null
|
|
152655
152769
|
work_arrangement?: StringNullableFilter<"JobProfile"> | string | null
|
|
152656
152770
|
employment_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
152771
|
+
country_code?: StringFilter<"JobProfile"> | string
|
|
152772
|
+
state_code?: StringNullableFilter<"JobProfile"> | string | null
|
|
152773
|
+
city?: StringNullableFilter<"JobProfile"> | string | null
|
|
152657
152774
|
location?: StringNullableFilter<"JobProfile"> | string | null
|
|
152658
152775
|
experience?: StringNullableFilter<"JobProfile"> | string | null
|
|
152659
152776
|
experience_min?: StringNullableFilter<"JobProfile"> | string | null
|
|
152660
152777
|
comp_range?: StringNullableFilter<"JobProfile"> | string | null
|
|
152661
152778
|
budget?: StringNullableFilter<"JobProfile"> | string | null
|
|
152662
|
-
|
|
152779
|
+
openings?: IntFilter<"JobProfile"> | number
|
|
152663
152780
|
responsibilities?: JsonNullableFilter<"JobProfile">
|
|
152664
152781
|
must_have_skills?: JsonNullableFilter<"JobProfile">
|
|
152665
152782
|
nice_to_have_skills?: JsonNullableFilter<"JobProfile">
|
|
@@ -152667,8 +152784,8 @@ export namespace Prisma {
|
|
|
152667
152784
|
competencies?: JsonNullableFilter<"JobProfile">
|
|
152668
152785
|
conversation_history?: JsonNullableFilter<"JobProfile">
|
|
152669
152786
|
orion_execution_id?: StringNullableFilter<"JobProfile"> | string | null
|
|
152670
|
-
created_at?: DateTimeFilter<"JobProfile"> | Date | string
|
|
152671
152787
|
created_by?: StringFilter<"JobProfile"> | string
|
|
152788
|
+
created_at?: DateTimeFilter<"JobProfile"> | Date | string
|
|
152672
152789
|
updated_at?: DateTimeFilter<"JobProfile"> | Date | string
|
|
152673
152790
|
is_active?: BoolFilter<"JobProfile"> | boolean
|
|
152674
152791
|
organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
|
|
@@ -152688,14 +152805,18 @@ export namespace Prisma {
|
|
|
152688
152805
|
status?: SortOrder
|
|
152689
152806
|
title?: SortOrderInput | SortOrder
|
|
152690
152807
|
role_type?: SortOrderInput | SortOrder
|
|
152808
|
+
job_role_level?: SortOrderInput | SortOrder
|
|
152691
152809
|
work_arrangement?: SortOrderInput | SortOrder
|
|
152692
152810
|
employment_type?: SortOrderInput | SortOrder
|
|
152811
|
+
country_code?: SortOrder
|
|
152812
|
+
state_code?: SortOrderInput | SortOrder
|
|
152813
|
+
city?: SortOrderInput | SortOrder
|
|
152693
152814
|
location?: SortOrderInput | SortOrder
|
|
152694
152815
|
experience?: SortOrderInput | SortOrder
|
|
152695
152816
|
experience_min?: SortOrderInput | SortOrder
|
|
152696
152817
|
comp_range?: SortOrderInput | SortOrder
|
|
152697
152818
|
budget?: SortOrderInput | SortOrder
|
|
152698
|
-
|
|
152819
|
+
openings?: SortOrder
|
|
152699
152820
|
responsibilities?: SortOrderInput | SortOrder
|
|
152700
152821
|
must_have_skills?: SortOrderInput | SortOrder
|
|
152701
152822
|
nice_to_have_skills?: SortOrderInput | SortOrder
|
|
@@ -152703,13 +152824,15 @@ export namespace Prisma {
|
|
|
152703
152824
|
competencies?: SortOrderInput | SortOrder
|
|
152704
152825
|
conversation_history?: SortOrderInput | SortOrder
|
|
152705
152826
|
orion_execution_id?: SortOrderInput | SortOrder
|
|
152706
|
-
created_at?: SortOrder
|
|
152707
152827
|
created_by?: SortOrder
|
|
152828
|
+
created_at?: SortOrder
|
|
152708
152829
|
updated_at?: SortOrder
|
|
152709
152830
|
is_active?: SortOrder
|
|
152710
152831
|
_count?: JobProfileCountOrderByAggregateInput
|
|
152832
|
+
_avg?: JobProfileAvgOrderByAggregateInput
|
|
152711
152833
|
_max?: JobProfileMaxOrderByAggregateInput
|
|
152712
152834
|
_min?: JobProfileMinOrderByAggregateInput
|
|
152835
|
+
_sum?: JobProfileSumOrderByAggregateInput
|
|
152713
152836
|
}
|
|
152714
152837
|
|
|
152715
152838
|
export type JobProfileScalarWhereWithAggregatesInput = {
|
|
@@ -152724,14 +152847,18 @@ export namespace Prisma {
|
|
|
152724
152847
|
status?: EnumJobProfileStatusWithAggregatesFilter<"JobProfile"> | $Enums.JobProfileStatus
|
|
152725
152848
|
title?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
152726
152849
|
role_type?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
152850
|
+
job_role_level?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
152727
152851
|
work_arrangement?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
152728
152852
|
employment_type?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
152853
|
+
country_code?: StringWithAggregatesFilter<"JobProfile"> | string
|
|
152854
|
+
state_code?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
152855
|
+
city?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
152729
152856
|
location?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
152730
152857
|
experience?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
152731
152858
|
experience_min?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
152732
152859
|
comp_range?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
152733
152860
|
budget?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
152734
|
-
|
|
152861
|
+
openings?: IntWithAggregatesFilter<"JobProfile"> | number
|
|
152735
152862
|
responsibilities?: JsonNullableWithAggregatesFilter<"JobProfile">
|
|
152736
152863
|
must_have_skills?: JsonNullableWithAggregatesFilter<"JobProfile">
|
|
152737
152864
|
nice_to_have_skills?: JsonNullableWithAggregatesFilter<"JobProfile">
|
|
@@ -152739,8 +152866,8 @@ export namespace Prisma {
|
|
|
152739
152866
|
competencies?: JsonNullableWithAggregatesFilter<"JobProfile">
|
|
152740
152867
|
conversation_history?: JsonNullableWithAggregatesFilter<"JobProfile">
|
|
152741
152868
|
orion_execution_id?: StringNullableWithAggregatesFilter<"JobProfile"> | string | null
|
|
152742
|
-
created_at?: DateTimeWithAggregatesFilter<"JobProfile"> | Date | string
|
|
152743
152869
|
created_by?: StringWithAggregatesFilter<"JobProfile"> | string
|
|
152870
|
+
created_at?: DateTimeWithAggregatesFilter<"JobProfile"> | Date | string
|
|
152744
152871
|
updated_at?: DateTimeWithAggregatesFilter<"JobProfile"> | Date | string
|
|
152745
152872
|
is_active?: BoolWithAggregatesFilter<"JobProfile"> | boolean
|
|
152746
152873
|
}
|
|
@@ -166599,14 +166726,18 @@ export namespace Prisma {
|
|
|
166599
166726
|
status?: $Enums.JobProfileStatus
|
|
166600
166727
|
title?: string | null
|
|
166601
166728
|
role_type?: string | null
|
|
166729
|
+
job_role_level?: string | null
|
|
166602
166730
|
work_arrangement?: string | null
|
|
166603
166731
|
employment_type?: string | null
|
|
166732
|
+
country_code?: string
|
|
166733
|
+
state_code?: string | null
|
|
166734
|
+
city?: string | null
|
|
166604
166735
|
location?: string | null
|
|
166605
166736
|
experience?: string | null
|
|
166606
166737
|
experience_min?: string | null
|
|
166607
166738
|
comp_range?: string | null
|
|
166608
166739
|
budget?: string | null
|
|
166609
|
-
|
|
166740
|
+
openings?: number
|
|
166610
166741
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
166611
166742
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
166612
166743
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -166634,14 +166765,18 @@ export namespace Prisma {
|
|
|
166634
166765
|
status?: $Enums.JobProfileStatus
|
|
166635
166766
|
title?: string | null
|
|
166636
166767
|
role_type?: string | null
|
|
166768
|
+
job_role_level?: string | null
|
|
166637
166769
|
work_arrangement?: string | null
|
|
166638
166770
|
employment_type?: string | null
|
|
166771
|
+
country_code?: string
|
|
166772
|
+
state_code?: string | null
|
|
166773
|
+
city?: string | null
|
|
166639
166774
|
location?: string | null
|
|
166640
166775
|
experience?: string | null
|
|
166641
166776
|
experience_min?: string | null
|
|
166642
166777
|
comp_range?: string | null
|
|
166643
166778
|
budget?: string | null
|
|
166644
|
-
|
|
166779
|
+
openings?: number
|
|
166645
166780
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
166646
166781
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
166647
166782
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -166649,8 +166784,8 @@ export namespace Prisma {
|
|
|
166649
166784
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
166650
166785
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
166651
166786
|
orion_execution_id?: string | null
|
|
166652
|
-
created_at?: Date | string
|
|
166653
166787
|
created_by: string
|
|
166788
|
+
created_at?: Date | string
|
|
166654
166789
|
updated_at?: Date | string
|
|
166655
166790
|
is_active?: boolean
|
|
166656
166791
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutJob_profileInput
|
|
@@ -166661,14 +166796,18 @@ export namespace Prisma {
|
|
|
166661
166796
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
166662
166797
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166663
166798
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166799
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166664
166800
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166665
166801
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166802
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
166803
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166804
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166666
166805
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166667
166806
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166668
166807
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166669
166808
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166670
166809
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166671
|
-
|
|
166810
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
166672
166811
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
166673
166812
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
166674
166813
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -166696,14 +166835,18 @@ export namespace Prisma {
|
|
|
166696
166835
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
166697
166836
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166698
166837
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166838
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166699
166839
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166700
166840
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166841
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
166842
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166843
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166701
166844
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166702
166845
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166703
166846
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166704
166847
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166705
166848
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166706
|
-
|
|
166849
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
166707
166850
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
166708
166851
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
166709
166852
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -166711,8 +166854,8 @@ export namespace Prisma {
|
|
|
166711
166854
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
166712
166855
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
166713
166856
|
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166714
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
166715
166857
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
166858
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
166716
166859
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
166717
166860
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
166718
166861
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutJob_profileNestedInput
|
|
@@ -166727,14 +166870,18 @@ export namespace Prisma {
|
|
|
166727
166870
|
status?: $Enums.JobProfileStatus
|
|
166728
166871
|
title?: string | null
|
|
166729
166872
|
role_type?: string | null
|
|
166873
|
+
job_role_level?: string | null
|
|
166730
166874
|
work_arrangement?: string | null
|
|
166731
166875
|
employment_type?: string | null
|
|
166876
|
+
country_code?: string
|
|
166877
|
+
state_code?: string | null
|
|
166878
|
+
city?: string | null
|
|
166732
166879
|
location?: string | null
|
|
166733
166880
|
experience?: string | null
|
|
166734
166881
|
experience_min?: string | null
|
|
166735
166882
|
comp_range?: string | null
|
|
166736
166883
|
budget?: string | null
|
|
166737
|
-
|
|
166884
|
+
openings?: number
|
|
166738
166885
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
166739
166886
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
166740
166887
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -166742,8 +166889,8 @@ export namespace Prisma {
|
|
|
166742
166889
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
166743
166890
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
166744
166891
|
orion_execution_id?: string | null
|
|
166745
|
-
created_at?: Date | string
|
|
166746
166892
|
created_by: string
|
|
166893
|
+
created_at?: Date | string
|
|
166747
166894
|
updated_at?: Date | string
|
|
166748
166895
|
is_active?: boolean
|
|
166749
166896
|
}
|
|
@@ -166753,14 +166900,18 @@ export namespace Prisma {
|
|
|
166753
166900
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
166754
166901
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166755
166902
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166903
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166756
166904
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166757
166905
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166906
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
166907
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166908
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166758
166909
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166759
166910
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166760
166911
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166761
166912
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166762
166913
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166763
|
-
|
|
166914
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
166764
166915
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
166765
166916
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
166766
166917
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -166782,14 +166933,18 @@ export namespace Prisma {
|
|
|
166782
166933
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
166783
166934
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166784
166935
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166936
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166785
166937
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166786
166938
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166939
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
166940
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166941
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166787
166942
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166788
166943
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166789
166944
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166790
166945
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166791
166946
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166792
|
-
|
|
166947
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
166793
166948
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
166794
166949
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
166795
166950
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -166797,8 +166952,8 @@ export namespace Prisma {
|
|
|
166797
166952
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
166798
166953
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
166799
166954
|
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166800
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
166801
166955
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
166956
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
166802
166957
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
166803
166958
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
166804
166959
|
}
|
|
@@ -178902,14 +179057,18 @@ export namespace Prisma {
|
|
|
178902
179057
|
status?: SortOrder
|
|
178903
179058
|
title?: SortOrder
|
|
178904
179059
|
role_type?: SortOrder
|
|
179060
|
+
job_role_level?: SortOrder
|
|
178905
179061
|
work_arrangement?: SortOrder
|
|
178906
179062
|
employment_type?: SortOrder
|
|
179063
|
+
country_code?: SortOrder
|
|
179064
|
+
state_code?: SortOrder
|
|
179065
|
+
city?: SortOrder
|
|
178907
179066
|
location?: SortOrder
|
|
178908
179067
|
experience?: SortOrder
|
|
178909
179068
|
experience_min?: SortOrder
|
|
178910
179069
|
comp_range?: SortOrder
|
|
178911
179070
|
budget?: SortOrder
|
|
178912
|
-
|
|
179071
|
+
openings?: SortOrder
|
|
178913
179072
|
responsibilities?: SortOrder
|
|
178914
179073
|
must_have_skills?: SortOrder
|
|
178915
179074
|
nice_to_have_skills?: SortOrder
|
|
@@ -178917,12 +179076,16 @@ export namespace Prisma {
|
|
|
178917
179076
|
competencies?: SortOrder
|
|
178918
179077
|
conversation_history?: SortOrder
|
|
178919
179078
|
orion_execution_id?: SortOrder
|
|
178920
|
-
created_at?: SortOrder
|
|
178921
179079
|
created_by?: SortOrder
|
|
179080
|
+
created_at?: SortOrder
|
|
178922
179081
|
updated_at?: SortOrder
|
|
178923
179082
|
is_active?: SortOrder
|
|
178924
179083
|
}
|
|
178925
179084
|
|
|
179085
|
+
export type JobProfileAvgOrderByAggregateInput = {
|
|
179086
|
+
openings?: SortOrder
|
|
179087
|
+
}
|
|
179088
|
+
|
|
178926
179089
|
export type JobProfileMaxOrderByAggregateInput = {
|
|
178927
179090
|
id?: SortOrder
|
|
178928
179091
|
organisation_id?: SortOrder
|
|
@@ -178932,17 +179095,21 @@ export namespace Prisma {
|
|
|
178932
179095
|
status?: SortOrder
|
|
178933
179096
|
title?: SortOrder
|
|
178934
179097
|
role_type?: SortOrder
|
|
179098
|
+
job_role_level?: SortOrder
|
|
178935
179099
|
work_arrangement?: SortOrder
|
|
178936
179100
|
employment_type?: SortOrder
|
|
179101
|
+
country_code?: SortOrder
|
|
179102
|
+
state_code?: SortOrder
|
|
179103
|
+
city?: SortOrder
|
|
178937
179104
|
location?: SortOrder
|
|
178938
179105
|
experience?: SortOrder
|
|
178939
179106
|
experience_min?: SortOrder
|
|
178940
179107
|
comp_range?: SortOrder
|
|
178941
179108
|
budget?: SortOrder
|
|
178942
|
-
|
|
179109
|
+
openings?: SortOrder
|
|
178943
179110
|
orion_execution_id?: SortOrder
|
|
178944
|
-
created_at?: SortOrder
|
|
178945
179111
|
created_by?: SortOrder
|
|
179112
|
+
created_at?: SortOrder
|
|
178946
179113
|
updated_at?: SortOrder
|
|
178947
179114
|
is_active?: SortOrder
|
|
178948
179115
|
}
|
|
@@ -178956,21 +179123,29 @@ export namespace Prisma {
|
|
|
178956
179123
|
status?: SortOrder
|
|
178957
179124
|
title?: SortOrder
|
|
178958
179125
|
role_type?: SortOrder
|
|
179126
|
+
job_role_level?: SortOrder
|
|
178959
179127
|
work_arrangement?: SortOrder
|
|
178960
179128
|
employment_type?: SortOrder
|
|
179129
|
+
country_code?: SortOrder
|
|
179130
|
+
state_code?: SortOrder
|
|
179131
|
+
city?: SortOrder
|
|
178961
179132
|
location?: SortOrder
|
|
178962
179133
|
experience?: SortOrder
|
|
178963
179134
|
experience_min?: SortOrder
|
|
178964
179135
|
comp_range?: SortOrder
|
|
178965
179136
|
budget?: SortOrder
|
|
178966
|
-
|
|
179137
|
+
openings?: SortOrder
|
|
178967
179138
|
orion_execution_id?: SortOrder
|
|
178968
|
-
created_at?: SortOrder
|
|
178969
179139
|
created_by?: SortOrder
|
|
179140
|
+
created_at?: SortOrder
|
|
178970
179141
|
updated_at?: SortOrder
|
|
178971
179142
|
is_active?: SortOrder
|
|
178972
179143
|
}
|
|
178973
179144
|
|
|
179145
|
+
export type JobProfileSumOrderByAggregateInput = {
|
|
179146
|
+
openings?: SortOrder
|
|
179147
|
+
}
|
|
179148
|
+
|
|
178974
179149
|
export type EnumJobProfileStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
178975
179150
|
equals?: $Enums.JobProfileStatus | EnumJobProfileStatusFieldRefInput<$PrismaModel>
|
|
178976
179151
|
in?: $Enums.JobProfileStatus[] | ListEnumJobProfileStatusFieldRefInput<$PrismaModel>
|
|
@@ -209715,14 +209890,18 @@ export namespace Prisma {
|
|
|
209715
209890
|
status?: $Enums.JobProfileStatus
|
|
209716
209891
|
title?: string | null
|
|
209717
209892
|
role_type?: string | null
|
|
209893
|
+
job_role_level?: string | null
|
|
209718
209894
|
work_arrangement?: string | null
|
|
209719
209895
|
employment_type?: string | null
|
|
209896
|
+
country_code?: string
|
|
209897
|
+
state_code?: string | null
|
|
209898
|
+
city?: string | null
|
|
209720
209899
|
location?: string | null
|
|
209721
209900
|
experience?: string | null
|
|
209722
209901
|
experience_min?: string | null
|
|
209723
209902
|
comp_range?: string | null
|
|
209724
209903
|
budget?: string | null
|
|
209725
|
-
|
|
209904
|
+
openings?: number
|
|
209726
209905
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
209727
209906
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
209728
209907
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -209748,14 +209927,18 @@ export namespace Prisma {
|
|
|
209748
209927
|
status?: $Enums.JobProfileStatus
|
|
209749
209928
|
title?: string | null
|
|
209750
209929
|
role_type?: string | null
|
|
209930
|
+
job_role_level?: string | null
|
|
209751
209931
|
work_arrangement?: string | null
|
|
209752
209932
|
employment_type?: string | null
|
|
209933
|
+
country_code?: string
|
|
209934
|
+
state_code?: string | null
|
|
209935
|
+
city?: string | null
|
|
209753
209936
|
location?: string | null
|
|
209754
209937
|
experience?: string | null
|
|
209755
209938
|
experience_min?: string | null
|
|
209756
209939
|
comp_range?: string | null
|
|
209757
209940
|
budget?: string | null
|
|
209758
|
-
|
|
209941
|
+
openings?: number
|
|
209759
209942
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
209760
209943
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
209761
209944
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -209763,8 +209946,8 @@ export namespace Prisma {
|
|
|
209763
209946
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
209764
209947
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
209765
209948
|
orion_execution_id?: string | null
|
|
209766
|
-
created_at?: Date | string
|
|
209767
209949
|
created_by: string
|
|
209950
|
+
created_at?: Date | string
|
|
209768
209951
|
updated_at?: Date | string
|
|
209769
209952
|
is_active?: boolean
|
|
209770
209953
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutJob_profileInput
|
|
@@ -210173,14 +210356,18 @@ export namespace Prisma {
|
|
|
210173
210356
|
status?: EnumJobProfileStatusFilter<"JobProfile"> | $Enums.JobProfileStatus
|
|
210174
210357
|
title?: StringNullableFilter<"JobProfile"> | string | null
|
|
210175
210358
|
role_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
210359
|
+
job_role_level?: StringNullableFilter<"JobProfile"> | string | null
|
|
210176
210360
|
work_arrangement?: StringNullableFilter<"JobProfile"> | string | null
|
|
210177
210361
|
employment_type?: StringNullableFilter<"JobProfile"> | string | null
|
|
210362
|
+
country_code?: StringFilter<"JobProfile"> | string
|
|
210363
|
+
state_code?: StringNullableFilter<"JobProfile"> | string | null
|
|
210364
|
+
city?: StringNullableFilter<"JobProfile"> | string | null
|
|
210178
210365
|
location?: StringNullableFilter<"JobProfile"> | string | null
|
|
210179
210366
|
experience?: StringNullableFilter<"JobProfile"> | string | null
|
|
210180
210367
|
experience_min?: StringNullableFilter<"JobProfile"> | string | null
|
|
210181
210368
|
comp_range?: StringNullableFilter<"JobProfile"> | string | null
|
|
210182
210369
|
budget?: StringNullableFilter<"JobProfile"> | string | null
|
|
210183
|
-
|
|
210370
|
+
openings?: IntFilter<"JobProfile"> | number
|
|
210184
210371
|
responsibilities?: JsonNullableFilter<"JobProfile">
|
|
210185
210372
|
must_have_skills?: JsonNullableFilter<"JobProfile">
|
|
210186
210373
|
nice_to_have_skills?: JsonNullableFilter<"JobProfile">
|
|
@@ -210188,8 +210375,8 @@ export namespace Prisma {
|
|
|
210188
210375
|
competencies?: JsonNullableFilter<"JobProfile">
|
|
210189
210376
|
conversation_history?: JsonNullableFilter<"JobProfile">
|
|
210190
210377
|
orion_execution_id?: StringNullableFilter<"JobProfile"> | string | null
|
|
210191
|
-
created_at?: DateTimeFilter<"JobProfile"> | Date | string
|
|
210192
210378
|
created_by?: StringFilter<"JobProfile"> | string
|
|
210379
|
+
created_at?: DateTimeFilter<"JobProfile"> | Date | string
|
|
210193
210380
|
updated_at?: DateTimeFilter<"JobProfile"> | Date | string
|
|
210194
210381
|
is_active?: BoolFilter<"JobProfile"> | boolean
|
|
210195
210382
|
}
|
|
@@ -222755,14 +222942,18 @@ export namespace Prisma {
|
|
|
222755
222942
|
status?: $Enums.JobProfileStatus
|
|
222756
222943
|
title?: string | null
|
|
222757
222944
|
role_type?: string | null
|
|
222945
|
+
job_role_level?: string | null
|
|
222758
222946
|
work_arrangement?: string | null
|
|
222759
222947
|
employment_type?: string | null
|
|
222948
|
+
country_code?: string
|
|
222949
|
+
state_code?: string | null
|
|
222950
|
+
city?: string | null
|
|
222760
222951
|
location?: string | null
|
|
222761
222952
|
experience?: string | null
|
|
222762
222953
|
experience_min?: string | null
|
|
222763
222954
|
comp_range?: string | null
|
|
222764
222955
|
budget?: string | null
|
|
222765
|
-
|
|
222956
|
+
openings?: number
|
|
222766
222957
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
222767
222958
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
222768
222959
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -222789,14 +222980,18 @@ export namespace Prisma {
|
|
|
222789
222980
|
status?: $Enums.JobProfileStatus
|
|
222790
222981
|
title?: string | null
|
|
222791
222982
|
role_type?: string | null
|
|
222983
|
+
job_role_level?: string | null
|
|
222792
222984
|
work_arrangement?: string | null
|
|
222793
222985
|
employment_type?: string | null
|
|
222986
|
+
country_code?: string
|
|
222987
|
+
state_code?: string | null
|
|
222988
|
+
city?: string | null
|
|
222794
222989
|
location?: string | null
|
|
222795
222990
|
experience?: string | null
|
|
222796
222991
|
experience_min?: string | null
|
|
222797
222992
|
comp_range?: string | null
|
|
222798
222993
|
budget?: string | null
|
|
222799
|
-
|
|
222994
|
+
openings?: number
|
|
222800
222995
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
222801
222996
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
222802
222997
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -222804,8 +222999,8 @@ export namespace Prisma {
|
|
|
222804
222999
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
222805
223000
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
222806
223001
|
orion_execution_id?: string | null
|
|
222807
|
-
created_at?: Date | string
|
|
222808
223002
|
created_by: string
|
|
223003
|
+
created_at?: Date | string
|
|
222809
223004
|
updated_at?: Date | string
|
|
222810
223005
|
is_active?: boolean
|
|
222811
223006
|
}
|
|
@@ -224713,14 +224908,18 @@ export namespace Prisma {
|
|
|
224713
224908
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
224714
224909
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224715
224910
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224911
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224716
224912
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224717
224913
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224914
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
224915
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224916
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224718
224917
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224719
224918
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224720
224919
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224721
224920
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224722
224921
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224723
|
-
|
|
224922
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
224724
224923
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
224725
224924
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
224726
224925
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -224747,14 +224946,18 @@ export namespace Prisma {
|
|
|
224747
224946
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
224748
224947
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224749
224948
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224949
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224750
224950
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224751
224951
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224952
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
224953
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224954
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224752
224955
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224753
224956
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224754
224957
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224755
224958
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224756
224959
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224757
|
-
|
|
224960
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
224758
224961
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
224759
224962
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
224760
224963
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -224762,8 +224965,8 @@ export namespace Prisma {
|
|
|
224762
224965
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
224763
224966
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
224764
224967
|
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224765
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
224766
224968
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
224969
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
224767
224970
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
224768
224971
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
224769
224972
|
}
|
|
@@ -233867,14 +234070,18 @@ export namespace Prisma {
|
|
|
233867
234070
|
status?: $Enums.JobProfileStatus
|
|
233868
234071
|
title?: string | null
|
|
233869
234072
|
role_type?: string | null
|
|
234073
|
+
job_role_level?: string | null
|
|
233870
234074
|
work_arrangement?: string | null
|
|
233871
234075
|
employment_type?: string | null
|
|
234076
|
+
country_code?: string
|
|
234077
|
+
state_code?: string | null
|
|
234078
|
+
city?: string | null
|
|
233872
234079
|
location?: string | null
|
|
233873
234080
|
experience?: string | null
|
|
233874
234081
|
experience_min?: string | null
|
|
233875
234082
|
comp_range?: string | null
|
|
233876
234083
|
budget?: string | null
|
|
233877
|
-
|
|
234084
|
+
openings?: number
|
|
233878
234085
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
233879
234086
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
233880
234087
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -233900,14 +234107,18 @@ export namespace Prisma {
|
|
|
233900
234107
|
status?: $Enums.JobProfileStatus
|
|
233901
234108
|
title?: string | null
|
|
233902
234109
|
role_type?: string | null
|
|
234110
|
+
job_role_level?: string | null
|
|
233903
234111
|
work_arrangement?: string | null
|
|
233904
234112
|
employment_type?: string | null
|
|
234113
|
+
country_code?: string
|
|
234114
|
+
state_code?: string | null
|
|
234115
|
+
city?: string | null
|
|
233905
234116
|
location?: string | null
|
|
233906
234117
|
experience?: string | null
|
|
233907
234118
|
experience_min?: string | null
|
|
233908
234119
|
comp_range?: string | null
|
|
233909
234120
|
budget?: string | null
|
|
233910
|
-
|
|
234121
|
+
openings?: number
|
|
233911
234122
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
233912
234123
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
233913
234124
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -233915,8 +234126,8 @@ export namespace Prisma {
|
|
|
233915
234126
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
233916
234127
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
233917
234128
|
orion_execution_id?: string | null
|
|
233918
|
-
created_at?: Date | string
|
|
233919
234129
|
created_by: string
|
|
234130
|
+
created_at?: Date | string
|
|
233920
234131
|
updated_at?: Date | string
|
|
233921
234132
|
is_active?: boolean
|
|
233922
234133
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutJob_profileInput
|
|
@@ -243736,14 +243947,18 @@ export namespace Prisma {
|
|
|
243736
243947
|
status?: $Enums.JobProfileStatus
|
|
243737
243948
|
title?: string | null
|
|
243738
243949
|
role_type?: string | null
|
|
243950
|
+
job_role_level?: string | null
|
|
243739
243951
|
work_arrangement?: string | null
|
|
243740
243952
|
employment_type?: string | null
|
|
243953
|
+
country_code?: string
|
|
243954
|
+
state_code?: string | null
|
|
243955
|
+
city?: string | null
|
|
243741
243956
|
location?: string | null
|
|
243742
243957
|
experience?: string | null
|
|
243743
243958
|
experience_min?: string | null
|
|
243744
243959
|
comp_range?: string | null
|
|
243745
243960
|
budget?: string | null
|
|
243746
|
-
|
|
243961
|
+
openings?: number
|
|
243747
243962
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
243748
243963
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
243749
243964
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -243769,14 +243984,18 @@ export namespace Prisma {
|
|
|
243769
243984
|
status?: $Enums.JobProfileStatus
|
|
243770
243985
|
title?: string | null
|
|
243771
243986
|
role_type?: string | null
|
|
243987
|
+
job_role_level?: string | null
|
|
243772
243988
|
work_arrangement?: string | null
|
|
243773
243989
|
employment_type?: string | null
|
|
243990
|
+
country_code?: string
|
|
243991
|
+
state_code?: string | null
|
|
243992
|
+
city?: string | null
|
|
243774
243993
|
location?: string | null
|
|
243775
243994
|
experience?: string | null
|
|
243776
243995
|
experience_min?: string | null
|
|
243777
243996
|
comp_range?: string | null
|
|
243778
243997
|
budget?: string | null
|
|
243779
|
-
|
|
243998
|
+
openings?: number
|
|
243780
243999
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
243781
244000
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
243782
244001
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -243784,8 +244003,8 @@ export namespace Prisma {
|
|
|
243784
244003
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
243785
244004
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
243786
244005
|
orion_execution_id?: string | null
|
|
243787
|
-
created_at?: Date | string
|
|
243788
244006
|
created_by: string
|
|
244007
|
+
created_at?: Date | string
|
|
243789
244008
|
updated_at?: Date | string
|
|
243790
244009
|
is_active?: boolean
|
|
243791
244010
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutJob_profileInput
|
|
@@ -244804,14 +245023,18 @@ export namespace Prisma {
|
|
|
244804
245023
|
status?: $Enums.JobProfileStatus
|
|
244805
245024
|
title?: string | null
|
|
244806
245025
|
role_type?: string | null
|
|
245026
|
+
job_role_level?: string | null
|
|
244807
245027
|
work_arrangement?: string | null
|
|
244808
245028
|
employment_type?: string | null
|
|
245029
|
+
country_code?: string
|
|
245030
|
+
state_code?: string | null
|
|
245031
|
+
city?: string | null
|
|
244809
245032
|
location?: string | null
|
|
244810
245033
|
experience?: string | null
|
|
244811
245034
|
experience_min?: string | null
|
|
244812
245035
|
comp_range?: string | null
|
|
244813
245036
|
budget?: string | null
|
|
244814
|
-
|
|
245037
|
+
openings?: number
|
|
244815
245038
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
244816
245039
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
244817
245040
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -244838,14 +245061,18 @@ export namespace Prisma {
|
|
|
244838
245061
|
status?: $Enums.JobProfileStatus
|
|
244839
245062
|
title?: string | null
|
|
244840
245063
|
role_type?: string | null
|
|
245064
|
+
job_role_level?: string | null
|
|
244841
245065
|
work_arrangement?: string | null
|
|
244842
245066
|
employment_type?: string | null
|
|
245067
|
+
country_code?: string
|
|
245068
|
+
state_code?: string | null
|
|
245069
|
+
city?: string | null
|
|
244843
245070
|
location?: string | null
|
|
244844
245071
|
experience?: string | null
|
|
244845
245072
|
experience_min?: string | null
|
|
244846
245073
|
comp_range?: string | null
|
|
244847
245074
|
budget?: string | null
|
|
244848
|
-
|
|
245075
|
+
openings?: number
|
|
244849
245076
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
244850
245077
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
244851
245078
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -244874,14 +245101,18 @@ export namespace Prisma {
|
|
|
244874
245101
|
status?: $Enums.JobProfileStatus
|
|
244875
245102
|
title?: string | null
|
|
244876
245103
|
role_type?: string | null
|
|
245104
|
+
job_role_level?: string | null
|
|
244877
245105
|
work_arrangement?: string | null
|
|
244878
245106
|
employment_type?: string | null
|
|
245107
|
+
country_code?: string
|
|
245108
|
+
state_code?: string | null
|
|
245109
|
+
city?: string | null
|
|
244879
245110
|
location?: string | null
|
|
244880
245111
|
experience?: string | null
|
|
244881
245112
|
experience_min?: string | null
|
|
244882
245113
|
comp_range?: string | null
|
|
244883
245114
|
budget?: string | null
|
|
244884
|
-
|
|
245115
|
+
openings?: number
|
|
244885
245116
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
244886
245117
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
244887
245118
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -244907,14 +245138,18 @@ export namespace Prisma {
|
|
|
244907
245138
|
status?: $Enums.JobProfileStatus
|
|
244908
245139
|
title?: string | null
|
|
244909
245140
|
role_type?: string | null
|
|
245141
|
+
job_role_level?: string | null
|
|
244910
245142
|
work_arrangement?: string | null
|
|
244911
245143
|
employment_type?: string | null
|
|
245144
|
+
country_code?: string
|
|
245145
|
+
state_code?: string | null
|
|
245146
|
+
city?: string | null
|
|
244912
245147
|
location?: string | null
|
|
244913
245148
|
experience?: string | null
|
|
244914
245149
|
experience_min?: string | null
|
|
244915
245150
|
comp_range?: string | null
|
|
244916
245151
|
budget?: string | null
|
|
244917
|
-
|
|
245152
|
+
openings?: number
|
|
244918
245153
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
244919
245154
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
244920
245155
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -244922,8 +245157,8 @@ export namespace Prisma {
|
|
|
244922
245157
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
244923
245158
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
244924
245159
|
orion_execution_id?: string | null
|
|
244925
|
-
created_at?: Date | string
|
|
244926
245160
|
created_by: string
|
|
245161
|
+
created_at?: Date | string
|
|
244927
245162
|
updated_at?: Date | string
|
|
244928
245163
|
is_active?: boolean
|
|
244929
245164
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutJob_profileInput
|
|
@@ -249426,14 +249661,18 @@ export namespace Prisma {
|
|
|
249426
249661
|
status?: $Enums.JobProfileStatus
|
|
249427
249662
|
title?: string | null
|
|
249428
249663
|
role_type?: string | null
|
|
249664
|
+
job_role_level?: string | null
|
|
249429
249665
|
work_arrangement?: string | null
|
|
249430
249666
|
employment_type?: string | null
|
|
249667
|
+
country_code?: string
|
|
249668
|
+
state_code?: string | null
|
|
249669
|
+
city?: string | null
|
|
249431
249670
|
location?: string | null
|
|
249432
249671
|
experience?: string | null
|
|
249433
249672
|
experience_min?: string | null
|
|
249434
249673
|
comp_range?: string | null
|
|
249435
249674
|
budget?: string | null
|
|
249436
|
-
|
|
249675
|
+
openings?: number
|
|
249437
249676
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
249438
249677
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
249439
249678
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -249441,8 +249680,8 @@ export namespace Prisma {
|
|
|
249441
249680
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
249442
249681
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
249443
249682
|
orion_execution_id?: string | null
|
|
249444
|
-
created_at?: Date | string
|
|
249445
249683
|
created_by: string
|
|
249684
|
+
created_at?: Date | string
|
|
249446
249685
|
updated_at?: Date | string
|
|
249447
249686
|
is_active?: boolean
|
|
249448
249687
|
}
|
|
@@ -249820,14 +250059,18 @@ export namespace Prisma {
|
|
|
249820
250059
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
249821
250060
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249822
250061
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
250062
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249823
250063
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249824
250064
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
250065
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
250066
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
250067
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249825
250068
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249826
250069
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249827
250070
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249828
250071
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249829
250072
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249830
|
-
|
|
250073
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
249831
250074
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
249832
250075
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
249833
250076
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -249853,14 +250096,18 @@ export namespace Prisma {
|
|
|
249853
250096
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
249854
250097
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249855
250098
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
250099
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249856
250100
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249857
250101
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
250102
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
250103
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
250104
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249858
250105
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249859
250106
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249860
250107
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249861
250108
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249862
250109
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249863
|
-
|
|
250110
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
249864
250111
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
249865
250112
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
249866
250113
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -249868,8 +250115,8 @@ export namespace Prisma {
|
|
|
249868
250115
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
249869
250116
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
249870
250117
|
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249871
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
249872
250118
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
250119
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
249873
250120
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
249874
250121
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
249875
250122
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutJob_profileNestedInput
|
|
@@ -249883,14 +250130,18 @@ export namespace Prisma {
|
|
|
249883
250130
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
249884
250131
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249885
250132
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
250133
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249886
250134
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249887
250135
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
250136
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
250137
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
250138
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249888
250139
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249889
250140
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249890
250141
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249891
250142
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249892
250143
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249893
|
-
|
|
250144
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
249894
250145
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
249895
250146
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
249896
250147
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -249898,8 +250149,8 @@ export namespace Prisma {
|
|
|
249898
250149
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
249899
250150
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
249900
250151
|
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249901
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
249902
250152
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
250153
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
249903
250154
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
249904
250155
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
249905
250156
|
}
|
|
@@ -254575,14 +254826,18 @@ export namespace Prisma {
|
|
|
254575
254826
|
status?: $Enums.JobProfileStatus
|
|
254576
254827
|
title?: string | null
|
|
254577
254828
|
role_type?: string | null
|
|
254829
|
+
job_role_level?: string | null
|
|
254578
254830
|
work_arrangement?: string | null
|
|
254579
254831
|
employment_type?: string | null
|
|
254832
|
+
country_code?: string
|
|
254833
|
+
state_code?: string | null
|
|
254834
|
+
city?: string | null
|
|
254580
254835
|
location?: string | null
|
|
254581
254836
|
experience?: string | null
|
|
254582
254837
|
experience_min?: string | null
|
|
254583
254838
|
comp_range?: string | null
|
|
254584
254839
|
budget?: string | null
|
|
254585
|
-
|
|
254840
|
+
openings?: number
|
|
254586
254841
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
254587
254842
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
254588
254843
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -254590,8 +254845,8 @@ export namespace Prisma {
|
|
|
254590
254845
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
254591
254846
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
254592
254847
|
orion_execution_id?: string | null
|
|
254593
|
-
created_at?: Date | string
|
|
254594
254848
|
created_by: string
|
|
254849
|
+
created_at?: Date | string
|
|
254595
254850
|
updated_at?: Date | string
|
|
254596
254851
|
is_active?: boolean
|
|
254597
254852
|
}
|
|
@@ -255716,14 +255971,18 @@ export namespace Prisma {
|
|
|
255716
255971
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
255717
255972
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255718
255973
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255974
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255719
255975
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255720
255976
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255977
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
255978
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255979
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255721
255980
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255722
255981
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255723
255982
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255724
255983
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255725
255984
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255726
|
-
|
|
255985
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
255727
255986
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
255728
255987
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
255729
255988
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -255749,14 +256008,18 @@ export namespace Prisma {
|
|
|
255749
256008
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
255750
256009
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255751
256010
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256011
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255752
256012
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255753
256013
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256014
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
256015
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256016
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255754
256017
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255755
256018
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255756
256019
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255757
256020
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255758
256021
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255759
|
-
|
|
256022
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
255760
256023
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
255761
256024
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
255762
256025
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -255764,8 +256027,8 @@ export namespace Prisma {
|
|
|
255764
256027
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
255765
256028
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
255766
256029
|
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255767
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
255768
256030
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
256031
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
255769
256032
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
255770
256033
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
255771
256034
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutJob_profileNestedInput
|
|
@@ -255779,14 +256042,18 @@ export namespace Prisma {
|
|
|
255779
256042
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
255780
256043
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255781
256044
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256045
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255782
256046
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255783
256047
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256048
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
256049
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256050
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255784
256051
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255785
256052
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255786
256053
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255787
256054
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255788
256055
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255789
|
-
|
|
256056
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
255790
256057
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
255791
256058
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
255792
256059
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -255794,8 +256061,8 @@ export namespace Prisma {
|
|
|
255794
256061
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
255795
256062
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
255796
256063
|
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255797
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
255798
256064
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
256065
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
255799
256066
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
255800
256067
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
255801
256068
|
}
|
|
@@ -259036,14 +259303,18 @@ export namespace Prisma {
|
|
|
259036
259303
|
status?: $Enums.JobProfileStatus
|
|
259037
259304
|
title?: string | null
|
|
259038
259305
|
role_type?: string | null
|
|
259306
|
+
job_role_level?: string | null
|
|
259039
259307
|
work_arrangement?: string | null
|
|
259040
259308
|
employment_type?: string | null
|
|
259309
|
+
country_code?: string
|
|
259310
|
+
state_code?: string | null
|
|
259311
|
+
city?: string | null
|
|
259041
259312
|
location?: string | null
|
|
259042
259313
|
experience?: string | null
|
|
259043
259314
|
experience_min?: string | null
|
|
259044
259315
|
comp_range?: string | null
|
|
259045
259316
|
budget?: string | null
|
|
259046
|
-
|
|
259317
|
+
openings?: number
|
|
259047
259318
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
259048
259319
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
259049
259320
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -259051,8 +259322,8 @@ export namespace Prisma {
|
|
|
259051
259322
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
259052
259323
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
259053
259324
|
orion_execution_id?: string | null
|
|
259054
|
-
created_at?: Date | string
|
|
259055
259325
|
created_by: string
|
|
259326
|
+
created_at?: Date | string
|
|
259056
259327
|
updated_at?: Date | string
|
|
259057
259328
|
is_active?: boolean
|
|
259058
259329
|
}
|
|
@@ -259428,14 +259699,18 @@ export namespace Prisma {
|
|
|
259428
259699
|
status?: $Enums.JobProfileStatus
|
|
259429
259700
|
title?: string | null
|
|
259430
259701
|
role_type?: string | null
|
|
259702
|
+
job_role_level?: string | null
|
|
259431
259703
|
work_arrangement?: string | null
|
|
259432
259704
|
employment_type?: string | null
|
|
259705
|
+
country_code?: string
|
|
259706
|
+
state_code?: string | null
|
|
259707
|
+
city?: string | null
|
|
259433
259708
|
location?: string | null
|
|
259434
259709
|
experience?: string | null
|
|
259435
259710
|
experience_min?: string | null
|
|
259436
259711
|
comp_range?: string | null
|
|
259437
259712
|
budget?: string | null
|
|
259438
|
-
|
|
259713
|
+
openings?: number
|
|
259439
259714
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
259440
259715
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
259441
259716
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -259456,14 +259731,18 @@ export namespace Prisma {
|
|
|
259456
259731
|
status?: $Enums.JobProfileStatus
|
|
259457
259732
|
title?: string | null
|
|
259458
259733
|
role_type?: string | null
|
|
259734
|
+
job_role_level?: string | null
|
|
259459
259735
|
work_arrangement?: string | null
|
|
259460
259736
|
employment_type?: string | null
|
|
259737
|
+
country_code?: string
|
|
259738
|
+
state_code?: string | null
|
|
259739
|
+
city?: string | null
|
|
259461
259740
|
location?: string | null
|
|
259462
259741
|
experience?: string | null
|
|
259463
259742
|
experience_min?: string | null
|
|
259464
259743
|
comp_range?: string | null
|
|
259465
259744
|
budget?: string | null
|
|
259466
|
-
|
|
259745
|
+
openings?: number
|
|
259467
259746
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
259468
259747
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
259469
259748
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -259471,8 +259750,8 @@ export namespace Prisma {
|
|
|
259471
259750
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
259472
259751
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
259473
259752
|
orion_execution_id?: string | null
|
|
259474
|
-
created_at?: Date | string
|
|
259475
259753
|
created_by: string
|
|
259754
|
+
created_at?: Date | string
|
|
259476
259755
|
updated_at?: Date | string
|
|
259477
259756
|
is_active?: boolean
|
|
259478
259757
|
}
|
|
@@ -260069,14 +260348,18 @@ export namespace Prisma {
|
|
|
260069
260348
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
260070
260349
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260071
260350
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260351
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260072
260352
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260073
260353
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260354
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
260355
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260356
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260074
260357
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260075
260358
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260076
260359
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260077
260360
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260078
260361
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260079
|
-
|
|
260362
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
260080
260363
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
260081
260364
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
260082
260365
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -260102,14 +260385,18 @@ export namespace Prisma {
|
|
|
260102
260385
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
260103
260386
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260104
260387
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260388
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260105
260389
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260106
260390
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260391
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
260392
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260393
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260107
260394
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260108
260395
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260109
260396
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260110
260397
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260111
260398
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260112
|
-
|
|
260399
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
260113
260400
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
260114
260401
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
260115
260402
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -260117,8 +260404,8 @@ export namespace Prisma {
|
|
|
260117
260404
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
260118
260405
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
260119
260406
|
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260120
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
260121
260407
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
260408
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
260122
260409
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
260123
260410
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
260124
260411
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutJob_profileNestedInput
|
|
@@ -260132,14 +260419,18 @@ export namespace Prisma {
|
|
|
260132
260419
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
260133
260420
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260134
260421
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260422
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260135
260423
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260136
260424
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260425
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
260426
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260427
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260137
260428
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260138
260429
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260139
260430
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260140
260431
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260141
260432
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260142
|
-
|
|
260433
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
260143
260434
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
260144
260435
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
260145
260436
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -260147,8 +260438,8 @@ export namespace Prisma {
|
|
|
260147
260438
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
260148
260439
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
260149
260440
|
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
260150
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
260151
260441
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
260442
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
260152
260443
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
260153
260444
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
260154
260445
|
}
|
|
@@ -261296,14 +261587,18 @@ export namespace Prisma {
|
|
|
261296
261587
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
261297
261588
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261298
261589
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261590
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261299
261591
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261300
261592
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261593
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
261594
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261595
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261301
261596
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261302
261597
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261303
261598
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261304
261599
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261305
261600
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261306
|
-
|
|
261601
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
261307
261602
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
261308
261603
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
261309
261604
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -261330,14 +261625,18 @@ export namespace Prisma {
|
|
|
261330
261625
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
261331
261626
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261332
261627
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261628
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261333
261629
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261334
261630
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261631
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
261632
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261633
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261335
261634
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261336
261635
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261337
261636
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261338
261637
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261339
261638
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261340
|
-
|
|
261639
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
261341
261640
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
261342
261641
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
261343
261642
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -261360,14 +261659,18 @@ export namespace Prisma {
|
|
|
261360
261659
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
261361
261660
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261362
261661
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261662
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261363
261663
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261364
261664
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261665
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
261666
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261667
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261365
261668
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261366
261669
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261367
261670
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261368
261671
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261369
261672
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261370
|
-
|
|
261673
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
261371
261674
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
261372
261675
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
261373
261676
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -261385,14 +261688,18 @@ export namespace Prisma {
|
|
|
261385
261688
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
261386
261689
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261387
261690
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261691
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261388
261692
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261389
261693
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261694
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
261695
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261696
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261390
261697
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261391
261698
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261392
261699
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261393
261700
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261394
261701
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261395
|
-
|
|
261702
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
261396
261703
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
261397
261704
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
261398
261705
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -261418,14 +261725,18 @@ export namespace Prisma {
|
|
|
261418
261725
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
261419
261726
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261420
261727
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261728
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261421
261729
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261422
261730
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261731
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
261732
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261733
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261423
261734
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261424
261735
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261425
261736
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261426
261737
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261427
261738
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261428
|
-
|
|
261739
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
261429
261740
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
261430
261741
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
261431
261742
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -261433,8 +261744,8 @@ export namespace Prisma {
|
|
|
261433
261744
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
261434
261745
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
261435
261746
|
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261436
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
261437
261747
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
261748
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
261438
261749
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
261439
261750
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
261440
261751
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutJob_profileNestedInput
|
|
@@ -261448,14 +261759,18 @@ export namespace Prisma {
|
|
|
261448
261759
|
status?: EnumJobProfileStatusFieldUpdateOperationsInput | $Enums.JobProfileStatus
|
|
261449
261760
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261450
261761
|
role_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261762
|
+
job_role_level?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261451
261763
|
work_arrangement?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261452
261764
|
employment_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261765
|
+
country_code?: StringFieldUpdateOperationsInput | string
|
|
261766
|
+
state_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261767
|
+
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261453
261768
|
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261454
261769
|
experience?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261455
261770
|
experience_min?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261456
261771
|
comp_range?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261457
261772
|
budget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261458
|
-
|
|
261773
|
+
openings?: IntFieldUpdateOperationsInput | number
|
|
261459
261774
|
responsibilities?: NullableJsonNullValueInput | InputJsonValue
|
|
261460
261775
|
must_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
261461
261776
|
nice_to_have_skills?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -261463,8 +261778,8 @@ export namespace Prisma {
|
|
|
261463
261778
|
competencies?: NullableJsonNullValueInput | InputJsonValue
|
|
261464
261779
|
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
261465
261780
|
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261466
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
261467
261781
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
261782
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
261468
261783
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
261469
261784
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
261470
261785
|
}
|