@a_team/prisma 3.21.0-macos-docker-linux → 3.21.1-linux
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/dist/client/edge.js +8 -5
- package/dist/client/index-browser.js +4 -1
- package/dist/client/index.d.ts +485 -3
- package/dist/client/index.js +10 -7
- package/dist/client/{libquery_engine-linux-arm64-openssl-3.0.x.so.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +32 -25
- package/dist/client/wasm.js +4 -1
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -5194,10 +5194,12 @@ export namespace Prisma {
|
|
|
5194
5194
|
|
|
5195
5195
|
export type RoleCategoryCountOutputType = {
|
|
5196
5196
|
mappedRoleTitles: number
|
|
5197
|
+
Experience: number
|
|
5197
5198
|
}
|
|
5198
5199
|
|
|
5199
5200
|
export type RoleCategoryCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5200
5201
|
mappedRoleTitles?: boolean | RoleCategoryCountOutputTypeCountMappedRoleTitlesArgs
|
|
5202
|
+
Experience?: boolean | RoleCategoryCountOutputTypeCountExperienceArgs
|
|
5201
5203
|
}
|
|
5202
5204
|
|
|
5203
5205
|
// Custom InputTypes
|
|
@@ -5218,6 +5220,13 @@ export namespace Prisma {
|
|
|
5218
5220
|
where?: MapperRoleTitleToRoleCategoryWhereInput
|
|
5219
5221
|
}
|
|
5220
5222
|
|
|
5223
|
+
/**
|
|
5224
|
+
* RoleCategoryCountOutputType without action
|
|
5225
|
+
*/
|
|
5226
|
+
export type RoleCategoryCountOutputTypeCountExperienceArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5227
|
+
where?: ExperienceWhereInput
|
|
5228
|
+
}
|
|
5229
|
+
|
|
5221
5230
|
|
|
5222
5231
|
/**
|
|
5223
5232
|
* Count Type TalentIndustryCountOutputType
|
|
@@ -24527,6 +24536,9 @@ export namespace Prisma {
|
|
|
24527
24536
|
startDate: Date | null
|
|
24528
24537
|
endDate: Date | null
|
|
24529
24538
|
description: string | null
|
|
24539
|
+
talentSpecializationId: string | null
|
|
24540
|
+
createdAt: Date | null
|
|
24541
|
+
updatedAt: Date | null
|
|
24530
24542
|
}
|
|
24531
24543
|
|
|
24532
24544
|
export type ExperienceMaxAggregateOutputType = {
|
|
@@ -24547,6 +24559,9 @@ export namespace Prisma {
|
|
|
24547
24559
|
startDate: Date | null
|
|
24548
24560
|
endDate: Date | null
|
|
24549
24561
|
description: string | null
|
|
24562
|
+
talentSpecializationId: string | null
|
|
24563
|
+
createdAt: Date | null
|
|
24564
|
+
updatedAt: Date | null
|
|
24550
24565
|
}
|
|
24551
24566
|
|
|
24552
24567
|
export type ExperienceCountAggregateOutputType = {
|
|
@@ -24570,6 +24585,9 @@ export namespace Prisma {
|
|
|
24570
24585
|
endDate: number
|
|
24571
24586
|
description: number
|
|
24572
24587
|
skills: number
|
|
24588
|
+
talentSpecializationId: number
|
|
24589
|
+
createdAt: number
|
|
24590
|
+
updatedAt: number
|
|
24573
24591
|
_all: number
|
|
24574
24592
|
}
|
|
24575
24593
|
|
|
@@ -24592,6 +24610,9 @@ export namespace Prisma {
|
|
|
24592
24610
|
startDate?: true
|
|
24593
24611
|
endDate?: true
|
|
24594
24612
|
description?: true
|
|
24613
|
+
talentSpecializationId?: true
|
|
24614
|
+
createdAt?: true
|
|
24615
|
+
updatedAt?: true
|
|
24595
24616
|
}
|
|
24596
24617
|
|
|
24597
24618
|
export type ExperienceMaxAggregateInputType = {
|
|
@@ -24612,6 +24633,9 @@ export namespace Prisma {
|
|
|
24612
24633
|
startDate?: true
|
|
24613
24634
|
endDate?: true
|
|
24614
24635
|
description?: true
|
|
24636
|
+
talentSpecializationId?: true
|
|
24637
|
+
createdAt?: true
|
|
24638
|
+
updatedAt?: true
|
|
24615
24639
|
}
|
|
24616
24640
|
|
|
24617
24641
|
export type ExperienceCountAggregateInputType = {
|
|
@@ -24635,6 +24659,9 @@ export namespace Prisma {
|
|
|
24635
24659
|
endDate?: true
|
|
24636
24660
|
description?: true
|
|
24637
24661
|
skills?: true
|
|
24662
|
+
talentSpecializationId?: true
|
|
24663
|
+
createdAt?: true
|
|
24664
|
+
updatedAt?: true
|
|
24638
24665
|
_all?: true
|
|
24639
24666
|
}
|
|
24640
24667
|
|
|
@@ -24731,6 +24758,9 @@ export namespace Prisma {
|
|
|
24731
24758
|
endDate: Date | null
|
|
24732
24759
|
description: string | null
|
|
24733
24760
|
skills: string[]
|
|
24761
|
+
talentSpecializationId: string | null
|
|
24762
|
+
createdAt: Date | null
|
|
24763
|
+
updatedAt: Date | null
|
|
24734
24764
|
_count: ExperienceCountAggregateOutputType | null
|
|
24735
24765
|
_min: ExperienceMinAggregateOutputType | null
|
|
24736
24766
|
_max: ExperienceMaxAggregateOutputType | null
|
|
@@ -24771,7 +24801,11 @@ export namespace Prisma {
|
|
|
24771
24801
|
endDate?: boolean
|
|
24772
24802
|
description?: boolean
|
|
24773
24803
|
skills?: boolean
|
|
24804
|
+
talentSpecializationId?: boolean
|
|
24805
|
+
createdAt?: boolean
|
|
24806
|
+
updatedAt?: boolean
|
|
24774
24807
|
members?: boolean | ExperienceMemberDefaultArgs<ExtArgs>
|
|
24808
|
+
talentSpecialization?: boolean | Experience$talentSpecializationArgs<ExtArgs>
|
|
24775
24809
|
}, ExtArgs["result"]["experience"]>
|
|
24776
24810
|
|
|
24777
24811
|
|
|
@@ -24796,13 +24830,20 @@ export namespace Prisma {
|
|
|
24796
24830
|
endDate?: boolean
|
|
24797
24831
|
description?: boolean
|
|
24798
24832
|
skills?: boolean
|
|
24833
|
+
talentSpecializationId?: boolean
|
|
24834
|
+
createdAt?: boolean
|
|
24835
|
+
updatedAt?: boolean
|
|
24799
24836
|
}
|
|
24800
24837
|
|
|
24801
|
-
export type ExperienceInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24838
|
+
export type ExperienceInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24839
|
+
talentSpecialization?: boolean | Experience$talentSpecializationArgs<ExtArgs>
|
|
24840
|
+
}
|
|
24802
24841
|
|
|
24803
24842
|
export type $ExperiencePayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
24804
24843
|
name: "Experience"
|
|
24805
|
-
objects: {
|
|
24844
|
+
objects: {
|
|
24845
|
+
talentSpecialization: Prisma.$RoleCategoryPayload<ExtArgs> | null
|
|
24846
|
+
}
|
|
24806
24847
|
scalars: $Extensions.GetPayloadResult<{
|
|
24807
24848
|
id: string
|
|
24808
24849
|
kind: $Enums.ExperienceType
|
|
@@ -24824,6 +24865,9 @@ export namespace Prisma {
|
|
|
24824
24865
|
endDate: Date | null
|
|
24825
24866
|
description: string | null
|
|
24826
24867
|
skills: string[]
|
|
24868
|
+
talentSpecializationId: string | null
|
|
24869
|
+
createdAt: Date | null
|
|
24870
|
+
updatedAt: Date | null
|
|
24827
24871
|
}, ExtArgs["result"]["experience"]>
|
|
24828
24872
|
composites: {
|
|
24829
24873
|
members: Prisma.$ExperienceMemberPayload[]
|
|
@@ -25189,6 +25233,7 @@ export namespace Prisma {
|
|
|
25189
25233
|
*/
|
|
25190
25234
|
export interface Prisma__ExperienceClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
25191
25235
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
25236
|
+
talentSpecialization<T extends Experience$talentSpecializationArgs<ExtArgs> = {}>(args?: Subset<T, Experience$talentSpecializationArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
25192
25237
|
/**
|
|
25193
25238
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
25194
25239
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -25238,6 +25283,9 @@ export namespace Prisma {
|
|
|
25238
25283
|
readonly endDate: FieldRef<"Experience", 'DateTime'>
|
|
25239
25284
|
readonly description: FieldRef<"Experience", 'String'>
|
|
25240
25285
|
readonly skills: FieldRef<"Experience", 'String[]'>
|
|
25286
|
+
readonly talentSpecializationId: FieldRef<"Experience", 'String'>
|
|
25287
|
+
readonly createdAt: FieldRef<"Experience", 'DateTime'>
|
|
25288
|
+
readonly updatedAt: FieldRef<"Experience", 'DateTime'>
|
|
25241
25289
|
}
|
|
25242
25290
|
|
|
25243
25291
|
|
|
@@ -25563,6 +25611,21 @@ export namespace Prisma {
|
|
|
25563
25611
|
options?: InputJsonValue
|
|
25564
25612
|
}
|
|
25565
25613
|
|
|
25614
|
+
/**
|
|
25615
|
+
* Experience.talentSpecialization
|
|
25616
|
+
*/
|
|
25617
|
+
export type Experience$talentSpecializationArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
25618
|
+
/**
|
|
25619
|
+
* Select specific fields to fetch from the RoleCategory
|
|
25620
|
+
*/
|
|
25621
|
+
select?: RoleCategorySelect<ExtArgs> | null
|
|
25622
|
+
/**
|
|
25623
|
+
* Choose, which related nodes to fetch as well
|
|
25624
|
+
*/
|
|
25625
|
+
include?: RoleCategoryInclude<ExtArgs> | null
|
|
25626
|
+
where?: RoleCategoryWhereInput
|
|
25627
|
+
}
|
|
25628
|
+
|
|
25566
25629
|
/**
|
|
25567
25630
|
* Experience without action
|
|
25568
25631
|
*/
|
|
@@ -37696,6 +37759,7 @@ export namespace Prisma {
|
|
|
37696
37759
|
group?: boolean
|
|
37697
37760
|
talentCategoryIds?: boolean
|
|
37698
37761
|
mappedRoleTitles?: boolean | RoleCategory$mappedRoleTitlesArgs<ExtArgs>
|
|
37762
|
+
Experience?: boolean | RoleCategory$ExperienceArgs<ExtArgs>
|
|
37699
37763
|
_count?: boolean | RoleCategoryCountOutputTypeDefaultArgs<ExtArgs>
|
|
37700
37764
|
}, ExtArgs["result"]["roleCategory"]>
|
|
37701
37765
|
|
|
@@ -37711,6 +37775,7 @@ export namespace Prisma {
|
|
|
37711
37775
|
|
|
37712
37776
|
export type RoleCategoryInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
37713
37777
|
mappedRoleTitles?: boolean | RoleCategory$mappedRoleTitlesArgs<ExtArgs>
|
|
37778
|
+
Experience?: boolean | RoleCategory$ExperienceArgs<ExtArgs>
|
|
37714
37779
|
_count?: boolean | RoleCategoryCountOutputTypeDefaultArgs<ExtArgs>
|
|
37715
37780
|
}
|
|
37716
37781
|
|
|
@@ -37718,6 +37783,7 @@ export namespace Prisma {
|
|
|
37718
37783
|
name: "RoleCategory"
|
|
37719
37784
|
objects: {
|
|
37720
37785
|
mappedRoleTitles: Prisma.$MapperRoleTitleToRoleCategoryPayload<ExtArgs>[]
|
|
37786
|
+
Experience: Prisma.$ExperiencePayload<ExtArgs>[]
|
|
37721
37787
|
}
|
|
37722
37788
|
scalars: $Extensions.GetPayloadResult<{
|
|
37723
37789
|
id: string
|
|
@@ -38090,6 +38156,7 @@ export namespace Prisma {
|
|
|
38090
38156
|
export interface Prisma__RoleCategoryClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
38091
38157
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
38092
38158
|
mappedRoleTitles<T extends RoleCategory$mappedRoleTitlesArgs<ExtArgs> = {}>(args?: Subset<T, RoleCategory$mappedRoleTitlesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MapperRoleTitleToRoleCategoryPayload<ExtArgs>, T, "findMany"> | Null>
|
|
38159
|
+
Experience<T extends RoleCategory$ExperienceArgs<ExtArgs> = {}>(args?: Subset<T, RoleCategory$ExperienceArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ExperiencePayload<ExtArgs>, T, "findMany"> | Null>
|
|
38093
38160
|
/**
|
|
38094
38161
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
38095
38162
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -38470,6 +38537,26 @@ export namespace Prisma {
|
|
|
38470
38537
|
distinct?: MapperRoleTitleToRoleCategoryScalarFieldEnum | MapperRoleTitleToRoleCategoryScalarFieldEnum[]
|
|
38471
38538
|
}
|
|
38472
38539
|
|
|
38540
|
+
/**
|
|
38541
|
+
* RoleCategory.Experience
|
|
38542
|
+
*/
|
|
38543
|
+
export type RoleCategory$ExperienceArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
38544
|
+
/**
|
|
38545
|
+
* Select specific fields to fetch from the Experience
|
|
38546
|
+
*/
|
|
38547
|
+
select?: ExperienceSelect<ExtArgs> | null
|
|
38548
|
+
/**
|
|
38549
|
+
* Choose, which related nodes to fetch as well
|
|
38550
|
+
*/
|
|
38551
|
+
include?: ExperienceInclude<ExtArgs> | null
|
|
38552
|
+
where?: ExperienceWhereInput
|
|
38553
|
+
orderBy?: ExperienceOrderByWithRelationInput | ExperienceOrderByWithRelationInput[]
|
|
38554
|
+
cursor?: ExperienceWhereUniqueInput
|
|
38555
|
+
take?: number
|
|
38556
|
+
skip?: number
|
|
38557
|
+
distinct?: ExperienceScalarFieldEnum | ExperienceScalarFieldEnum[]
|
|
38558
|
+
}
|
|
38559
|
+
|
|
38473
38560
|
/**
|
|
38474
38561
|
* RoleCategory without action
|
|
38475
38562
|
*/
|
|
@@ -47229,7 +47316,10 @@ export namespace Prisma {
|
|
|
47229
47316
|
startDate: 'startDate',
|
|
47230
47317
|
endDate: 'endDate',
|
|
47231
47318
|
description: 'description',
|
|
47232
|
-
skills: 'skills'
|
|
47319
|
+
skills: 'skills',
|
|
47320
|
+
talentSpecializationId: 'talentSpecializationId',
|
|
47321
|
+
createdAt: 'createdAt',
|
|
47322
|
+
updatedAt: 'updatedAt'
|
|
47233
47323
|
};
|
|
47234
47324
|
|
|
47235
47325
|
export type ExperienceScalarFieldEnum = (typeof ExperienceScalarFieldEnum)[keyof typeof ExperienceScalarFieldEnum]
|
|
@@ -49484,7 +49574,11 @@ export namespace Prisma {
|
|
|
49484
49574
|
endDate?: DateTimeNullableFilter<"Experience"> | Date | string | null
|
|
49485
49575
|
description?: StringNullableFilter<"Experience"> | string | null
|
|
49486
49576
|
skills?: StringNullableListFilter<"Experience">
|
|
49577
|
+
talentSpecializationId?: StringNullableFilter<"Experience"> | string | null
|
|
49578
|
+
createdAt?: DateTimeNullableFilter<"Experience"> | Date | string | null
|
|
49579
|
+
updatedAt?: DateTimeNullableFilter<"Experience"> | Date | string | null
|
|
49487
49580
|
members?: ExperienceMemberCompositeListFilter | ExperienceMemberObjectEqualityInput[]
|
|
49581
|
+
talentSpecialization?: XOR<RoleCategoryNullableRelationFilter, RoleCategoryWhereInput> | null
|
|
49488
49582
|
}
|
|
49489
49583
|
|
|
49490
49584
|
export type ExperienceOrderByWithRelationInput = {
|
|
@@ -49508,7 +49602,11 @@ export namespace Prisma {
|
|
|
49508
49602
|
endDate?: SortOrder
|
|
49509
49603
|
description?: SortOrder
|
|
49510
49604
|
skills?: SortOrder
|
|
49605
|
+
talentSpecializationId?: SortOrder
|
|
49606
|
+
createdAt?: SortOrder
|
|
49607
|
+
updatedAt?: SortOrder
|
|
49511
49608
|
members?: ExperienceMemberOrderByCompositeAggregateInput
|
|
49609
|
+
talentSpecialization?: RoleCategoryOrderByWithRelationInput
|
|
49512
49610
|
}
|
|
49513
49611
|
|
|
49514
49612
|
export type ExperienceWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -49535,7 +49633,11 @@ export namespace Prisma {
|
|
|
49535
49633
|
endDate?: DateTimeNullableFilter<"Experience"> | Date | string | null
|
|
49536
49634
|
description?: StringNullableFilter<"Experience"> | string | null
|
|
49537
49635
|
skills?: StringNullableListFilter<"Experience">
|
|
49636
|
+
talentSpecializationId?: StringNullableFilter<"Experience"> | string | null
|
|
49637
|
+
createdAt?: DateTimeNullableFilter<"Experience"> | Date | string | null
|
|
49638
|
+
updatedAt?: DateTimeNullableFilter<"Experience"> | Date | string | null
|
|
49538
49639
|
members?: ExperienceMemberCompositeListFilter | ExperienceMemberObjectEqualityInput[]
|
|
49640
|
+
talentSpecialization?: XOR<RoleCategoryNullableRelationFilter, RoleCategoryWhereInput> | null
|
|
49539
49641
|
}, "id">
|
|
49540
49642
|
|
|
49541
49643
|
export type ExperienceOrderByWithAggregationInput = {
|
|
@@ -49559,6 +49661,9 @@ export namespace Prisma {
|
|
|
49559
49661
|
endDate?: SortOrder
|
|
49560
49662
|
description?: SortOrder
|
|
49561
49663
|
skills?: SortOrder
|
|
49664
|
+
talentSpecializationId?: SortOrder
|
|
49665
|
+
createdAt?: SortOrder
|
|
49666
|
+
updatedAt?: SortOrder
|
|
49562
49667
|
_count?: ExperienceCountOrderByAggregateInput
|
|
49563
49668
|
_max?: ExperienceMaxOrderByAggregateInput
|
|
49564
49669
|
_min?: ExperienceMinOrderByAggregateInput
|
|
@@ -49588,6 +49693,9 @@ export namespace Prisma {
|
|
|
49588
49693
|
endDate?: DateTimeNullableWithAggregatesFilter<"Experience"> | Date | string | null
|
|
49589
49694
|
description?: StringNullableWithAggregatesFilter<"Experience"> | string | null
|
|
49590
49695
|
skills?: StringNullableListFilter<"Experience">
|
|
49696
|
+
talentSpecializationId?: StringNullableWithAggregatesFilter<"Experience"> | string | null
|
|
49697
|
+
createdAt?: DateTimeNullableWithAggregatesFilter<"Experience"> | Date | string | null
|
|
49698
|
+
updatedAt?: DateTimeNullableWithAggregatesFilter<"Experience"> | Date | string | null
|
|
49591
49699
|
}
|
|
49592
49700
|
|
|
49593
49701
|
export type InvoiceWhereInput = {
|
|
@@ -50905,6 +51013,7 @@ export namespace Prisma {
|
|
|
50905
51013
|
group?: StringNullableFilter<"RoleCategory"> | string | null
|
|
50906
51014
|
talentCategoryIds?: StringNullableListFilter<"RoleCategory">
|
|
50907
51015
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryListRelationFilter
|
|
51016
|
+
Experience?: ExperienceListRelationFilter
|
|
50908
51017
|
}
|
|
50909
51018
|
|
|
50910
51019
|
export type RoleCategoryOrderByWithRelationInput = {
|
|
@@ -50915,6 +51024,7 @@ export namespace Prisma {
|
|
|
50915
51024
|
group?: SortOrder
|
|
50916
51025
|
talentCategoryIds?: SortOrder
|
|
50917
51026
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryOrderByRelationAggregateInput
|
|
51027
|
+
Experience?: ExperienceOrderByRelationAggregateInput
|
|
50918
51028
|
}
|
|
50919
51029
|
|
|
50920
51030
|
export type RoleCategoryWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -50928,6 +51038,7 @@ export namespace Prisma {
|
|
|
50928
51038
|
group?: StringNullableFilter<"RoleCategory"> | string | null
|
|
50929
51039
|
talentCategoryIds?: StringNullableListFilter<"RoleCategory">
|
|
50930
51040
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryListRelationFilter
|
|
51041
|
+
Experience?: ExperienceListRelationFilter
|
|
50931
51042
|
}, "id" | "title">
|
|
50932
51043
|
|
|
50933
51044
|
export type RoleCategoryOrderByWithAggregationInput = {
|
|
@@ -52963,7 +53074,10 @@ export namespace Prisma {
|
|
|
52963
53074
|
endDate?: Date | string | null
|
|
52964
53075
|
description?: string | null
|
|
52965
53076
|
skills?: ExperienceCreateskillsInput | string[]
|
|
53077
|
+
createdAt?: Date | string | null
|
|
53078
|
+
updatedAt?: Date | string | null
|
|
52966
53079
|
members?: XOR<ExperienceMemberListCreateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
53080
|
+
talentSpecialization?: RoleCategoryCreateNestedOneWithoutExperienceInput
|
|
52967
53081
|
}
|
|
52968
53082
|
|
|
52969
53083
|
export type ExperienceUncheckedCreateInput = {
|
|
@@ -52987,6 +53101,9 @@ export namespace Prisma {
|
|
|
52987
53101
|
endDate?: Date | string | null
|
|
52988
53102
|
description?: string | null
|
|
52989
53103
|
skills?: ExperienceCreateskillsInput | string[]
|
|
53104
|
+
talentSpecializationId?: string | null
|
|
53105
|
+
createdAt?: Date | string | null
|
|
53106
|
+
updatedAt?: Date | string | null
|
|
52990
53107
|
members?: XOR<ExperienceMemberListCreateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
52991
53108
|
}
|
|
52992
53109
|
|
|
@@ -53010,7 +53127,10 @@ export namespace Prisma {
|
|
|
53010
53127
|
endDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53011
53128
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53012
53129
|
skills?: ExperienceUpdateskillsInput | string[]
|
|
53130
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53131
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53013
53132
|
members?: XOR<ExperienceMemberListUpdateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
53133
|
+
talentSpecialization?: RoleCategoryUpdateOneWithoutExperienceNestedInput
|
|
53014
53134
|
}
|
|
53015
53135
|
|
|
53016
53136
|
export type ExperienceUncheckedUpdateInput = {
|
|
@@ -53033,6 +53153,9 @@ export namespace Prisma {
|
|
|
53033
53153
|
endDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53034
53154
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53035
53155
|
skills?: ExperienceUpdateskillsInput | string[]
|
|
53156
|
+
talentSpecializationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53157
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53158
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53036
53159
|
members?: XOR<ExperienceMemberListUpdateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
53037
53160
|
}
|
|
53038
53161
|
|
|
@@ -53057,6 +53180,9 @@ export namespace Prisma {
|
|
|
53057
53180
|
endDate?: Date | string | null
|
|
53058
53181
|
description?: string | null
|
|
53059
53182
|
skills?: ExperienceCreateskillsInput | string[]
|
|
53183
|
+
talentSpecializationId?: string | null
|
|
53184
|
+
createdAt?: Date | string | null
|
|
53185
|
+
updatedAt?: Date | string | null
|
|
53060
53186
|
members?: XOR<ExperienceMemberListCreateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
53061
53187
|
}
|
|
53062
53188
|
|
|
@@ -53080,6 +53206,8 @@ export namespace Prisma {
|
|
|
53080
53206
|
endDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53081
53207
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53082
53208
|
skills?: ExperienceUpdateskillsInput | string[]
|
|
53209
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53210
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53083
53211
|
members?: XOR<ExperienceMemberListUpdateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
53084
53212
|
}
|
|
53085
53213
|
|
|
@@ -53103,6 +53231,9 @@ export namespace Prisma {
|
|
|
53103
53231
|
endDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53104
53232
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53105
53233
|
skills?: ExperienceUpdateskillsInput | string[]
|
|
53234
|
+
talentSpecializationId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53235
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53236
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53106
53237
|
members?: XOR<ExperienceMemberListUpdateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
53107
53238
|
}
|
|
53108
53239
|
|
|
@@ -54693,6 +54824,7 @@ export namespace Prisma {
|
|
|
54693
54824
|
group?: string | null
|
|
54694
54825
|
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
54695
54826
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryCreateNestedManyWithoutRoleCategoryInput
|
|
54827
|
+
Experience?: ExperienceCreateNestedManyWithoutTalentSpecializationInput
|
|
54696
54828
|
}
|
|
54697
54829
|
|
|
54698
54830
|
export type RoleCategoryUncheckedCreateInput = {
|
|
@@ -54703,6 +54835,7 @@ export namespace Prisma {
|
|
|
54703
54835
|
group?: string | null
|
|
54704
54836
|
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
54705
54837
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUncheckedCreateNestedManyWithoutRoleCategoryInput
|
|
54838
|
+
Experience?: ExperienceUncheckedCreateNestedManyWithoutTalentSpecializationInput
|
|
54706
54839
|
}
|
|
54707
54840
|
|
|
54708
54841
|
export type RoleCategoryUpdateInput = {
|
|
@@ -54712,6 +54845,7 @@ export namespace Prisma {
|
|
|
54712
54845
|
group?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54713
54846
|
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
54714
54847
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUpdateManyWithoutRoleCategoryNestedInput
|
|
54848
|
+
Experience?: ExperienceUpdateManyWithoutTalentSpecializationNestedInput
|
|
54715
54849
|
}
|
|
54716
54850
|
|
|
54717
54851
|
export type RoleCategoryUncheckedUpdateInput = {
|
|
@@ -54721,6 +54855,7 @@ export namespace Prisma {
|
|
|
54721
54855
|
group?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54722
54856
|
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
54723
54857
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUncheckedUpdateManyWithoutRoleCategoryNestedInput
|
|
54858
|
+
Experience?: ExperienceUncheckedUpdateManyWithoutTalentSpecializationNestedInput
|
|
54724
54859
|
}
|
|
54725
54860
|
|
|
54726
54861
|
export type RoleCategoryCreateManyInput = {
|
|
@@ -57194,6 +57329,11 @@ export namespace Prisma {
|
|
|
57194
57329
|
customData?: MemberCustomDataObjectEqualityInput | null
|
|
57195
57330
|
}
|
|
57196
57331
|
|
|
57332
|
+
export type RoleCategoryNullableRelationFilter = {
|
|
57333
|
+
is?: RoleCategoryWhereInput | null
|
|
57334
|
+
isNot?: RoleCategoryWhereInput | null
|
|
57335
|
+
}
|
|
57336
|
+
|
|
57197
57337
|
export type ExperienceMemberOrderByCompositeAggregateInput = {
|
|
57198
57338
|
_count?: SortOrder
|
|
57199
57339
|
}
|
|
@@ -57219,6 +57359,9 @@ export namespace Prisma {
|
|
|
57219
57359
|
endDate?: SortOrder
|
|
57220
57360
|
description?: SortOrder
|
|
57221
57361
|
skills?: SortOrder
|
|
57362
|
+
talentSpecializationId?: SortOrder
|
|
57363
|
+
createdAt?: SortOrder
|
|
57364
|
+
updatedAt?: SortOrder
|
|
57222
57365
|
}
|
|
57223
57366
|
|
|
57224
57367
|
export type ExperienceMaxOrderByAggregateInput = {
|
|
@@ -57239,6 +57382,9 @@ export namespace Prisma {
|
|
|
57239
57382
|
startDate?: SortOrder
|
|
57240
57383
|
endDate?: SortOrder
|
|
57241
57384
|
description?: SortOrder
|
|
57385
|
+
talentSpecializationId?: SortOrder
|
|
57386
|
+
createdAt?: SortOrder
|
|
57387
|
+
updatedAt?: SortOrder
|
|
57242
57388
|
}
|
|
57243
57389
|
|
|
57244
57390
|
export type ExperienceMinOrderByAggregateInput = {
|
|
@@ -57259,6 +57405,9 @@ export namespace Prisma {
|
|
|
57259
57405
|
startDate?: SortOrder
|
|
57260
57406
|
endDate?: SortOrder
|
|
57261
57407
|
description?: SortOrder
|
|
57408
|
+
talentSpecializationId?: SortOrder
|
|
57409
|
+
createdAt?: SortOrder
|
|
57410
|
+
updatedAt?: SortOrder
|
|
57262
57411
|
}
|
|
57263
57412
|
|
|
57264
57413
|
export type EnumExperienceTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -58803,10 +58952,20 @@ export namespace Prisma {
|
|
|
58803
58952
|
none?: MapperRoleTitleToRoleCategoryWhereInput
|
|
58804
58953
|
}
|
|
58805
58954
|
|
|
58955
|
+
export type ExperienceListRelationFilter = {
|
|
58956
|
+
every?: ExperienceWhereInput
|
|
58957
|
+
some?: ExperienceWhereInput
|
|
58958
|
+
none?: ExperienceWhereInput
|
|
58959
|
+
}
|
|
58960
|
+
|
|
58806
58961
|
export type MapperRoleTitleToRoleCategoryOrderByRelationAggregateInput = {
|
|
58807
58962
|
_count?: SortOrder
|
|
58808
58963
|
}
|
|
58809
58964
|
|
|
58965
|
+
export type ExperienceOrderByRelationAggregateInput = {
|
|
58966
|
+
_count?: SortOrder
|
|
58967
|
+
}
|
|
58968
|
+
|
|
58810
58969
|
export type RoleCategoryCountOrderByAggregateInput = {
|
|
58811
58970
|
id?: SortOrder
|
|
58812
58971
|
anchors?: SortOrder
|
|
@@ -61143,6 +61302,12 @@ export namespace Prisma {
|
|
|
61143
61302
|
customData?: MemberCustomDataCreateInput | null
|
|
61144
61303
|
}
|
|
61145
61304
|
|
|
61305
|
+
export type RoleCategoryCreateNestedOneWithoutExperienceInput = {
|
|
61306
|
+
create?: XOR<RoleCategoryCreateWithoutExperienceInput, RoleCategoryUncheckedCreateWithoutExperienceInput>
|
|
61307
|
+
connectOrCreate?: RoleCategoryCreateOrConnectWithoutExperienceInput
|
|
61308
|
+
connect?: RoleCategoryWhereUniqueInput
|
|
61309
|
+
}
|
|
61310
|
+
|
|
61146
61311
|
export type EnumExperienceTypeFieldUpdateOperationsInput = {
|
|
61147
61312
|
set?: $Enums.ExperienceType
|
|
61148
61313
|
}
|
|
@@ -61169,6 +61334,16 @@ export namespace Prisma {
|
|
|
61169
61334
|
deleteMany?: ExperienceMemberDeleteManyInput
|
|
61170
61335
|
}
|
|
61171
61336
|
|
|
61337
|
+
export type RoleCategoryUpdateOneWithoutExperienceNestedInput = {
|
|
61338
|
+
create?: XOR<RoleCategoryCreateWithoutExperienceInput, RoleCategoryUncheckedCreateWithoutExperienceInput>
|
|
61339
|
+
connectOrCreate?: RoleCategoryCreateOrConnectWithoutExperienceInput
|
|
61340
|
+
upsert?: RoleCategoryUpsertWithoutExperienceInput
|
|
61341
|
+
disconnect?: boolean
|
|
61342
|
+
delete?: RoleCategoryWhereInput | boolean
|
|
61343
|
+
connect?: RoleCategoryWhereUniqueInput
|
|
61344
|
+
update?: XOR<XOR<RoleCategoryUpdateToOneWithWhereWithoutExperienceInput, RoleCategoryUpdateWithoutExperienceInput>, RoleCategoryUncheckedUpdateWithoutExperienceInput>
|
|
61345
|
+
}
|
|
61346
|
+
|
|
61172
61347
|
export type RelatedDatesCreateEnvelopeInput = {
|
|
61173
61348
|
set?: RelatedDatesCreateInput
|
|
61174
61349
|
}
|
|
@@ -62438,6 +62613,13 @@ export namespace Prisma {
|
|
|
62438
62613
|
connect?: MapperRoleTitleToRoleCategoryWhereUniqueInput | MapperRoleTitleToRoleCategoryWhereUniqueInput[]
|
|
62439
62614
|
}
|
|
62440
62615
|
|
|
62616
|
+
export type ExperienceCreateNestedManyWithoutTalentSpecializationInput = {
|
|
62617
|
+
create?: XOR<ExperienceCreateWithoutTalentSpecializationInput, ExperienceUncheckedCreateWithoutTalentSpecializationInput> | ExperienceCreateWithoutTalentSpecializationInput[] | ExperienceUncheckedCreateWithoutTalentSpecializationInput[]
|
|
62618
|
+
connectOrCreate?: ExperienceCreateOrConnectWithoutTalentSpecializationInput | ExperienceCreateOrConnectWithoutTalentSpecializationInput[]
|
|
62619
|
+
createMany?: ExperienceCreateManyTalentSpecializationInputEnvelope
|
|
62620
|
+
connect?: ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[]
|
|
62621
|
+
}
|
|
62622
|
+
|
|
62441
62623
|
export type MapperRoleTitleToRoleCategoryUncheckedCreateNestedManyWithoutRoleCategoryInput = {
|
|
62442
62624
|
create?: XOR<MapperRoleTitleToRoleCategoryCreateWithoutRoleCategoryInput, MapperRoleTitleToRoleCategoryUncheckedCreateWithoutRoleCategoryInput> | MapperRoleTitleToRoleCategoryCreateWithoutRoleCategoryInput[] | MapperRoleTitleToRoleCategoryUncheckedCreateWithoutRoleCategoryInput[]
|
|
62443
62625
|
connectOrCreate?: MapperRoleTitleToRoleCategoryCreateOrConnectWithoutRoleCategoryInput | MapperRoleTitleToRoleCategoryCreateOrConnectWithoutRoleCategoryInput[]
|
|
@@ -62445,6 +62627,13 @@ export namespace Prisma {
|
|
|
62445
62627
|
connect?: MapperRoleTitleToRoleCategoryWhereUniqueInput | MapperRoleTitleToRoleCategoryWhereUniqueInput[]
|
|
62446
62628
|
}
|
|
62447
62629
|
|
|
62630
|
+
export type ExperienceUncheckedCreateNestedManyWithoutTalentSpecializationInput = {
|
|
62631
|
+
create?: XOR<ExperienceCreateWithoutTalentSpecializationInput, ExperienceUncheckedCreateWithoutTalentSpecializationInput> | ExperienceCreateWithoutTalentSpecializationInput[] | ExperienceUncheckedCreateWithoutTalentSpecializationInput[]
|
|
62632
|
+
connectOrCreate?: ExperienceCreateOrConnectWithoutTalentSpecializationInput | ExperienceCreateOrConnectWithoutTalentSpecializationInput[]
|
|
62633
|
+
createMany?: ExperienceCreateManyTalentSpecializationInputEnvelope
|
|
62634
|
+
connect?: ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[]
|
|
62635
|
+
}
|
|
62636
|
+
|
|
62448
62637
|
export type RoleCategoryUpdateanchorsInput = {
|
|
62449
62638
|
set?: string[]
|
|
62450
62639
|
push?: string | string[]
|
|
@@ -62469,6 +62658,20 @@ export namespace Prisma {
|
|
|
62469
62658
|
deleteMany?: MapperRoleTitleToRoleCategoryScalarWhereInput | MapperRoleTitleToRoleCategoryScalarWhereInput[]
|
|
62470
62659
|
}
|
|
62471
62660
|
|
|
62661
|
+
export type ExperienceUpdateManyWithoutTalentSpecializationNestedInput = {
|
|
62662
|
+
create?: XOR<ExperienceCreateWithoutTalentSpecializationInput, ExperienceUncheckedCreateWithoutTalentSpecializationInput> | ExperienceCreateWithoutTalentSpecializationInput[] | ExperienceUncheckedCreateWithoutTalentSpecializationInput[]
|
|
62663
|
+
connectOrCreate?: ExperienceCreateOrConnectWithoutTalentSpecializationInput | ExperienceCreateOrConnectWithoutTalentSpecializationInput[]
|
|
62664
|
+
upsert?: ExperienceUpsertWithWhereUniqueWithoutTalentSpecializationInput | ExperienceUpsertWithWhereUniqueWithoutTalentSpecializationInput[]
|
|
62665
|
+
createMany?: ExperienceCreateManyTalentSpecializationInputEnvelope
|
|
62666
|
+
set?: ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[]
|
|
62667
|
+
disconnect?: ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[]
|
|
62668
|
+
delete?: ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[]
|
|
62669
|
+
connect?: ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[]
|
|
62670
|
+
update?: ExperienceUpdateWithWhereUniqueWithoutTalentSpecializationInput | ExperienceUpdateWithWhereUniqueWithoutTalentSpecializationInput[]
|
|
62671
|
+
updateMany?: ExperienceUpdateManyWithWhereWithoutTalentSpecializationInput | ExperienceUpdateManyWithWhereWithoutTalentSpecializationInput[]
|
|
62672
|
+
deleteMany?: ExperienceScalarWhereInput | ExperienceScalarWhereInput[]
|
|
62673
|
+
}
|
|
62674
|
+
|
|
62472
62675
|
export type MapperRoleTitleToRoleCategoryUncheckedUpdateManyWithoutRoleCategoryNestedInput = {
|
|
62473
62676
|
create?: XOR<MapperRoleTitleToRoleCategoryCreateWithoutRoleCategoryInput, MapperRoleTitleToRoleCategoryUncheckedCreateWithoutRoleCategoryInput> | MapperRoleTitleToRoleCategoryCreateWithoutRoleCategoryInput[] | MapperRoleTitleToRoleCategoryUncheckedCreateWithoutRoleCategoryInput[]
|
|
62474
62677
|
connectOrCreate?: MapperRoleTitleToRoleCategoryCreateOrConnectWithoutRoleCategoryInput | MapperRoleTitleToRoleCategoryCreateOrConnectWithoutRoleCategoryInput[]
|
|
@@ -62483,6 +62686,20 @@ export namespace Prisma {
|
|
|
62483
62686
|
deleteMany?: MapperRoleTitleToRoleCategoryScalarWhereInput | MapperRoleTitleToRoleCategoryScalarWhereInput[]
|
|
62484
62687
|
}
|
|
62485
62688
|
|
|
62689
|
+
export type ExperienceUncheckedUpdateManyWithoutTalentSpecializationNestedInput = {
|
|
62690
|
+
create?: XOR<ExperienceCreateWithoutTalentSpecializationInput, ExperienceUncheckedCreateWithoutTalentSpecializationInput> | ExperienceCreateWithoutTalentSpecializationInput[] | ExperienceUncheckedCreateWithoutTalentSpecializationInput[]
|
|
62691
|
+
connectOrCreate?: ExperienceCreateOrConnectWithoutTalentSpecializationInput | ExperienceCreateOrConnectWithoutTalentSpecializationInput[]
|
|
62692
|
+
upsert?: ExperienceUpsertWithWhereUniqueWithoutTalentSpecializationInput | ExperienceUpsertWithWhereUniqueWithoutTalentSpecializationInput[]
|
|
62693
|
+
createMany?: ExperienceCreateManyTalentSpecializationInputEnvelope
|
|
62694
|
+
set?: ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[]
|
|
62695
|
+
disconnect?: ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[]
|
|
62696
|
+
delete?: ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[]
|
|
62697
|
+
connect?: ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[]
|
|
62698
|
+
update?: ExperienceUpdateWithWhereUniqueWithoutTalentSpecializationInput | ExperienceUpdateWithWhereUniqueWithoutTalentSpecializationInput[]
|
|
62699
|
+
updateMany?: ExperienceUpdateManyWithWhereWithoutTalentSpecializationInput | ExperienceUpdateManyWithWhereWithoutTalentSpecializationInput[]
|
|
62700
|
+
deleteMany?: ExperienceScalarWhereInput | ExperienceScalarWhereInput[]
|
|
62701
|
+
}
|
|
62702
|
+
|
|
62486
62703
|
export type RoleHiringCriteriaCreaterequiredSkillsInput = {
|
|
62487
62704
|
set: string[]
|
|
62488
62705
|
}
|
|
@@ -70370,6 +70587,31 @@ export namespace Prisma {
|
|
|
70370
70587
|
skills?: MemberCustomDataCreateskillsInput | string[]
|
|
70371
70588
|
}
|
|
70372
70589
|
|
|
70590
|
+
export type RoleCategoryCreateWithoutExperienceInput = {
|
|
70591
|
+
id?: string
|
|
70592
|
+
anchors?: RoleCategoryCreateanchorsInput | string[]
|
|
70593
|
+
title: string
|
|
70594
|
+
deletedAt?: Date | string | null
|
|
70595
|
+
group?: string | null
|
|
70596
|
+
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
70597
|
+
mappedRoleTitles?: MapperRoleTitleToRoleCategoryCreateNestedManyWithoutRoleCategoryInput
|
|
70598
|
+
}
|
|
70599
|
+
|
|
70600
|
+
export type RoleCategoryUncheckedCreateWithoutExperienceInput = {
|
|
70601
|
+
id?: string
|
|
70602
|
+
anchors?: RoleCategoryCreateanchorsInput | string[]
|
|
70603
|
+
title: string
|
|
70604
|
+
deletedAt?: Date | string | null
|
|
70605
|
+
group?: string | null
|
|
70606
|
+
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
70607
|
+
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUncheckedCreateNestedManyWithoutRoleCategoryInput
|
|
70608
|
+
}
|
|
70609
|
+
|
|
70610
|
+
export type RoleCategoryCreateOrConnectWithoutExperienceInput = {
|
|
70611
|
+
where: RoleCategoryWhereUniqueInput
|
|
70612
|
+
create: XOR<RoleCategoryCreateWithoutExperienceInput, RoleCategoryUncheckedCreateWithoutExperienceInput>
|
|
70613
|
+
}
|
|
70614
|
+
|
|
70373
70615
|
export type ExperienceMemberUpdateManyInput = {
|
|
70374
70616
|
where: ExperienceMemberWhereInput
|
|
70375
70617
|
data: ExperienceMemberUpdateInput
|
|
@@ -70379,6 +70621,35 @@ export namespace Prisma {
|
|
|
70379
70621
|
where: ExperienceMemberWhereInput
|
|
70380
70622
|
}
|
|
70381
70623
|
|
|
70624
|
+
export type RoleCategoryUpsertWithoutExperienceInput = {
|
|
70625
|
+
update: XOR<RoleCategoryUpdateWithoutExperienceInput, RoleCategoryUncheckedUpdateWithoutExperienceInput>
|
|
70626
|
+
create: XOR<RoleCategoryCreateWithoutExperienceInput, RoleCategoryUncheckedCreateWithoutExperienceInput>
|
|
70627
|
+
where?: RoleCategoryWhereInput
|
|
70628
|
+
}
|
|
70629
|
+
|
|
70630
|
+
export type RoleCategoryUpdateToOneWithWhereWithoutExperienceInput = {
|
|
70631
|
+
where?: RoleCategoryWhereInput
|
|
70632
|
+
data: XOR<RoleCategoryUpdateWithoutExperienceInput, RoleCategoryUncheckedUpdateWithoutExperienceInput>
|
|
70633
|
+
}
|
|
70634
|
+
|
|
70635
|
+
export type RoleCategoryUpdateWithoutExperienceInput = {
|
|
70636
|
+
anchors?: RoleCategoryUpdateanchorsInput | string[]
|
|
70637
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
70638
|
+
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
70639
|
+
group?: NullableStringFieldUpdateOperationsInput | string | null
|
|
70640
|
+
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
70641
|
+
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUpdateManyWithoutRoleCategoryNestedInput
|
|
70642
|
+
}
|
|
70643
|
+
|
|
70644
|
+
export type RoleCategoryUncheckedUpdateWithoutExperienceInput = {
|
|
70645
|
+
anchors?: RoleCategoryUpdateanchorsInput | string[]
|
|
70646
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
70647
|
+
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
70648
|
+
group?: NullableStringFieldUpdateOperationsInput | string | null
|
|
70649
|
+
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
70650
|
+
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUncheckedUpdateManyWithoutRoleCategoryNestedInput
|
|
70651
|
+
}
|
|
70652
|
+
|
|
70382
70653
|
export type RelatedDatesUpdateInput = {
|
|
70383
70654
|
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
70384
70655
|
endDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -70711,6 +70982,7 @@ export namespace Prisma {
|
|
|
70711
70982
|
deletedAt?: Date | string | null
|
|
70712
70983
|
group?: string | null
|
|
70713
70984
|
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
70985
|
+
Experience?: ExperienceCreateNestedManyWithoutTalentSpecializationInput
|
|
70714
70986
|
}
|
|
70715
70987
|
|
|
70716
70988
|
export type RoleCategoryUncheckedCreateWithoutMappedRoleTitlesInput = {
|
|
@@ -70720,6 +70992,7 @@ export namespace Prisma {
|
|
|
70720
70992
|
deletedAt?: Date | string | null
|
|
70721
70993
|
group?: string | null
|
|
70722
70994
|
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
70995
|
+
Experience?: ExperienceUncheckedCreateNestedManyWithoutTalentSpecializationInput
|
|
70723
70996
|
}
|
|
70724
70997
|
|
|
70725
70998
|
export type RoleCategoryCreateOrConnectWithoutMappedRoleTitlesInput = {
|
|
@@ -70744,6 +71017,7 @@ export namespace Prisma {
|
|
|
70744
71017
|
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
70745
71018
|
group?: NullableStringFieldUpdateOperationsInput | string | null
|
|
70746
71019
|
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
71020
|
+
Experience?: ExperienceUpdateManyWithoutTalentSpecializationNestedInput
|
|
70747
71021
|
}
|
|
70748
71022
|
|
|
70749
71023
|
export type RoleCategoryUncheckedUpdateWithoutMappedRoleTitlesInput = {
|
|
@@ -70752,6 +71026,7 @@ export namespace Prisma {
|
|
|
70752
71026
|
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
70753
71027
|
group?: NullableStringFieldUpdateOperationsInput | string | null
|
|
70754
71028
|
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
71029
|
+
Experience?: ExperienceUncheckedUpdateManyWithoutTalentSpecializationNestedInput
|
|
70755
71030
|
}
|
|
70756
71031
|
|
|
70757
71032
|
export type MissionRoleAvailabilityCreateInput = {
|
|
@@ -74774,6 +75049,67 @@ export namespace Prisma {
|
|
|
74774
75049
|
data: MapperRoleTitleToRoleCategoryCreateManyRoleCategoryInput | MapperRoleTitleToRoleCategoryCreateManyRoleCategoryInput[]
|
|
74775
75050
|
}
|
|
74776
75051
|
|
|
75052
|
+
export type ExperienceCreateWithoutTalentSpecializationInput = {
|
|
75053
|
+
id?: string
|
|
75054
|
+
kind: $Enums.ExperienceType
|
|
75055
|
+
title?: string | null
|
|
75056
|
+
name?: string | null
|
|
75057
|
+
summary?: string | null
|
|
75058
|
+
imageURL?: string | null
|
|
75059
|
+
imagesUrls?: ExperienceCreateimagesUrlsInput | string[]
|
|
75060
|
+
logoURL?: string | null
|
|
75061
|
+
websiteURL?: string | null
|
|
75062
|
+
jobRole?: string | null
|
|
75063
|
+
jobRoleId?: string | null
|
|
75064
|
+
projectUrl?: string | null
|
|
75065
|
+
industry?: string | null
|
|
75066
|
+
industries?: ExperienceCreateindustriesInput | string[]
|
|
75067
|
+
companyV2Id?: string | null
|
|
75068
|
+
companyName?: string | null
|
|
75069
|
+
startDate?: Date | string | null
|
|
75070
|
+
endDate?: Date | string | null
|
|
75071
|
+
description?: string | null
|
|
75072
|
+
skills?: ExperienceCreateskillsInput | string[]
|
|
75073
|
+
createdAt?: Date | string | null
|
|
75074
|
+
updatedAt?: Date | string | null
|
|
75075
|
+
members?: XOR<ExperienceMemberListCreateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
75076
|
+
}
|
|
75077
|
+
|
|
75078
|
+
export type ExperienceUncheckedCreateWithoutTalentSpecializationInput = {
|
|
75079
|
+
id?: string
|
|
75080
|
+
kind: $Enums.ExperienceType
|
|
75081
|
+
title?: string | null
|
|
75082
|
+
name?: string | null
|
|
75083
|
+
summary?: string | null
|
|
75084
|
+
imageURL?: string | null
|
|
75085
|
+
imagesUrls?: ExperienceCreateimagesUrlsInput | string[]
|
|
75086
|
+
logoURL?: string | null
|
|
75087
|
+
websiteURL?: string | null
|
|
75088
|
+
jobRole?: string | null
|
|
75089
|
+
jobRoleId?: string | null
|
|
75090
|
+
projectUrl?: string | null
|
|
75091
|
+
industry?: string | null
|
|
75092
|
+
industries?: ExperienceCreateindustriesInput | string[]
|
|
75093
|
+
companyV2Id?: string | null
|
|
75094
|
+
companyName?: string | null
|
|
75095
|
+
startDate?: Date | string | null
|
|
75096
|
+
endDate?: Date | string | null
|
|
75097
|
+
description?: string | null
|
|
75098
|
+
skills?: ExperienceCreateskillsInput | string[]
|
|
75099
|
+
createdAt?: Date | string | null
|
|
75100
|
+
updatedAt?: Date | string | null
|
|
75101
|
+
members?: XOR<ExperienceMemberListCreateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
75102
|
+
}
|
|
75103
|
+
|
|
75104
|
+
export type ExperienceCreateOrConnectWithoutTalentSpecializationInput = {
|
|
75105
|
+
where: ExperienceWhereUniqueInput
|
|
75106
|
+
create: XOR<ExperienceCreateWithoutTalentSpecializationInput, ExperienceUncheckedCreateWithoutTalentSpecializationInput>
|
|
75107
|
+
}
|
|
75108
|
+
|
|
75109
|
+
export type ExperienceCreateManyTalentSpecializationInputEnvelope = {
|
|
75110
|
+
data: ExperienceCreateManyTalentSpecializationInput | ExperienceCreateManyTalentSpecializationInput[]
|
|
75111
|
+
}
|
|
75112
|
+
|
|
74777
75113
|
export type MapperRoleTitleToRoleCategoryUpsertWithWhereUniqueWithoutRoleCategoryInput = {
|
|
74778
75114
|
where: MapperRoleTitleToRoleCategoryWhereUniqueInput
|
|
74779
75115
|
update: XOR<MapperRoleTitleToRoleCategoryUpdateWithoutRoleCategoryInput, MapperRoleTitleToRoleCategoryUncheckedUpdateWithoutRoleCategoryInput>
|
|
@@ -74801,6 +75137,51 @@ export namespace Prisma {
|
|
|
74801
75137
|
updatedAt?: DateTimeNullableFilter<"MapperRoleTitleToRoleCategory"> | Date | string | null
|
|
74802
75138
|
}
|
|
74803
75139
|
|
|
75140
|
+
export type ExperienceUpsertWithWhereUniqueWithoutTalentSpecializationInput = {
|
|
75141
|
+
where: ExperienceWhereUniqueInput
|
|
75142
|
+
update: XOR<ExperienceUpdateWithoutTalentSpecializationInput, ExperienceUncheckedUpdateWithoutTalentSpecializationInput>
|
|
75143
|
+
create: XOR<ExperienceCreateWithoutTalentSpecializationInput, ExperienceUncheckedCreateWithoutTalentSpecializationInput>
|
|
75144
|
+
}
|
|
75145
|
+
|
|
75146
|
+
export type ExperienceUpdateWithWhereUniqueWithoutTalentSpecializationInput = {
|
|
75147
|
+
where: ExperienceWhereUniqueInput
|
|
75148
|
+
data: XOR<ExperienceUpdateWithoutTalentSpecializationInput, ExperienceUncheckedUpdateWithoutTalentSpecializationInput>
|
|
75149
|
+
}
|
|
75150
|
+
|
|
75151
|
+
export type ExperienceUpdateManyWithWhereWithoutTalentSpecializationInput = {
|
|
75152
|
+
where: ExperienceScalarWhereInput
|
|
75153
|
+
data: XOR<ExperienceUpdateManyMutationInput, ExperienceUncheckedUpdateManyWithoutTalentSpecializationInput>
|
|
75154
|
+
}
|
|
75155
|
+
|
|
75156
|
+
export type ExperienceScalarWhereInput = {
|
|
75157
|
+
AND?: ExperienceScalarWhereInput | ExperienceScalarWhereInput[]
|
|
75158
|
+
OR?: ExperienceScalarWhereInput[]
|
|
75159
|
+
NOT?: ExperienceScalarWhereInput | ExperienceScalarWhereInput[]
|
|
75160
|
+
id?: StringFilter<"Experience"> | string
|
|
75161
|
+
kind?: EnumExperienceTypeFilter<"Experience"> | $Enums.ExperienceType
|
|
75162
|
+
title?: StringNullableFilter<"Experience"> | string | null
|
|
75163
|
+
name?: StringNullableFilter<"Experience"> | string | null
|
|
75164
|
+
summary?: StringNullableFilter<"Experience"> | string | null
|
|
75165
|
+
imageURL?: StringNullableFilter<"Experience"> | string | null
|
|
75166
|
+
imagesUrls?: StringNullableListFilter<"Experience">
|
|
75167
|
+
logoURL?: StringNullableFilter<"Experience"> | string | null
|
|
75168
|
+
websiteURL?: StringNullableFilter<"Experience"> | string | null
|
|
75169
|
+
jobRole?: StringNullableFilter<"Experience"> | string | null
|
|
75170
|
+
jobRoleId?: StringNullableFilter<"Experience"> | string | null
|
|
75171
|
+
projectUrl?: StringNullableFilter<"Experience"> | string | null
|
|
75172
|
+
industry?: StringNullableFilter<"Experience"> | string | null
|
|
75173
|
+
industries?: StringNullableListFilter<"Experience">
|
|
75174
|
+
companyV2Id?: StringNullableFilter<"Experience"> | string | null
|
|
75175
|
+
companyName?: StringNullableFilter<"Experience"> | string | null
|
|
75176
|
+
startDate?: DateTimeNullableFilter<"Experience"> | Date | string | null
|
|
75177
|
+
endDate?: DateTimeNullableFilter<"Experience"> | Date | string | null
|
|
75178
|
+
description?: StringNullableFilter<"Experience"> | string | null
|
|
75179
|
+
skills?: StringNullableListFilter<"Experience">
|
|
75180
|
+
talentSpecializationId?: StringNullableFilter<"Experience"> | string | null
|
|
75181
|
+
createdAt?: DateTimeNullableFilter<"Experience"> | Date | string | null
|
|
75182
|
+
updatedAt?: DateTimeNullableFilter<"Experience"> | Date | string | null
|
|
75183
|
+
}
|
|
75184
|
+
|
|
74804
75185
|
export type CriteriaItemUpdateManyInput = {
|
|
74805
75186
|
where: CriteriaItemWhereInput
|
|
74806
75187
|
data: CriteriaItemUpdateInput
|
|
@@ -80296,6 +80677,32 @@ export namespace Prisma {
|
|
|
80296
80677
|
updatedAt?: Date | string | null
|
|
80297
80678
|
}
|
|
80298
80679
|
|
|
80680
|
+
export type ExperienceCreateManyTalentSpecializationInput = {
|
|
80681
|
+
id?: string
|
|
80682
|
+
kind: $Enums.ExperienceType
|
|
80683
|
+
title?: string | null
|
|
80684
|
+
name?: string | null
|
|
80685
|
+
summary?: string | null
|
|
80686
|
+
imageURL?: string | null
|
|
80687
|
+
imagesUrls?: ExperienceCreateimagesUrlsInput | string[]
|
|
80688
|
+
logoURL?: string | null
|
|
80689
|
+
websiteURL?: string | null
|
|
80690
|
+
jobRole?: string | null
|
|
80691
|
+
jobRoleId?: string | null
|
|
80692
|
+
projectUrl?: string | null
|
|
80693
|
+
industry?: string | null
|
|
80694
|
+
industries?: ExperienceCreateindustriesInput | string[]
|
|
80695
|
+
companyV2Id?: string | null
|
|
80696
|
+
companyName?: string | null
|
|
80697
|
+
startDate?: Date | string | null
|
|
80698
|
+
endDate?: Date | string | null
|
|
80699
|
+
description?: string | null
|
|
80700
|
+
skills?: ExperienceCreateskillsInput | string[]
|
|
80701
|
+
createdAt?: Date | string | null
|
|
80702
|
+
updatedAt?: Date | string | null
|
|
80703
|
+
members?: XOR<ExperienceMemberListCreateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
80704
|
+
}
|
|
80705
|
+
|
|
80299
80706
|
export type MapperRoleTitleToRoleCategoryUpdateWithoutRoleCategoryInput = {
|
|
80300
80707
|
roleTitle?: StringFieldUpdateOperationsInput | string
|
|
80301
80708
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -80314,6 +80721,81 @@ export namespace Prisma {
|
|
|
80314
80721
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80315
80722
|
}
|
|
80316
80723
|
|
|
80724
|
+
export type ExperienceUpdateWithoutTalentSpecializationInput = {
|
|
80725
|
+
kind?: EnumExperienceTypeFieldUpdateOperationsInput | $Enums.ExperienceType
|
|
80726
|
+
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80727
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80728
|
+
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80729
|
+
imageURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80730
|
+
imagesUrls?: ExperienceUpdateimagesUrlsInput | string[]
|
|
80731
|
+
logoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80732
|
+
websiteURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80733
|
+
jobRole?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80734
|
+
jobRoleId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80735
|
+
projectUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80736
|
+
industry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80737
|
+
industries?: ExperienceUpdateindustriesInput | string[]
|
|
80738
|
+
companyV2Id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80739
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80740
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80741
|
+
endDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80742
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80743
|
+
skills?: ExperienceUpdateskillsInput | string[]
|
|
80744
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80745
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80746
|
+
members?: XOR<ExperienceMemberListUpdateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
80747
|
+
}
|
|
80748
|
+
|
|
80749
|
+
export type ExperienceUncheckedUpdateWithoutTalentSpecializationInput = {
|
|
80750
|
+
kind?: EnumExperienceTypeFieldUpdateOperationsInput | $Enums.ExperienceType
|
|
80751
|
+
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80752
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80753
|
+
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80754
|
+
imageURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80755
|
+
imagesUrls?: ExperienceUpdateimagesUrlsInput | string[]
|
|
80756
|
+
logoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80757
|
+
websiteURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80758
|
+
jobRole?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80759
|
+
jobRoleId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80760
|
+
projectUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80761
|
+
industry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80762
|
+
industries?: ExperienceUpdateindustriesInput | string[]
|
|
80763
|
+
companyV2Id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80764
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80765
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80766
|
+
endDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80767
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80768
|
+
skills?: ExperienceUpdateskillsInput | string[]
|
|
80769
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80770
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80771
|
+
members?: XOR<ExperienceMemberListUpdateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
80772
|
+
}
|
|
80773
|
+
|
|
80774
|
+
export type ExperienceUncheckedUpdateManyWithoutTalentSpecializationInput = {
|
|
80775
|
+
kind?: EnumExperienceTypeFieldUpdateOperationsInput | $Enums.ExperienceType
|
|
80776
|
+
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80777
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80778
|
+
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80779
|
+
imageURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80780
|
+
imagesUrls?: ExperienceUpdateimagesUrlsInput | string[]
|
|
80781
|
+
logoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80782
|
+
websiteURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80783
|
+
jobRole?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80784
|
+
jobRoleId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80785
|
+
projectUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80786
|
+
industry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80787
|
+
industries?: ExperienceUpdateindustriesInput | string[]
|
|
80788
|
+
companyV2Id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80789
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80790
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80791
|
+
endDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80792
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80793
|
+
skills?: ExperienceUpdateskillsInput | string[]
|
|
80794
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80795
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
80796
|
+
members?: XOR<ExperienceMemberListUpdateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
80797
|
+
}
|
|
80798
|
+
|
|
80317
80799
|
export type CriteriaItemUpdateInput = {
|
|
80318
80800
|
id?: StringFieldUpdateOperationsInput | string
|
|
80319
80801
|
description?: StringFieldUpdateOperationsInput | string
|