@a_team/prisma 3.28.4-macos-docker-linux → 3.28.5-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 +7 -4
- package/dist/client/index-browser.js +3 -0
- package/dist/client/index.d.ts +1638 -87
- package/dist/client/index.js +9 -6
- 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 +21 -12
- package/dist/client/wasm.js +3 -0
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -6158,11 +6158,13 @@ export namespace Prisma {
|
|
|
6158
6158
|
export type RoleCategoryCountOutputType = {
|
|
6159
6159
|
mappedRoleTitles: number
|
|
6160
6160
|
Experience: number
|
|
6161
|
+
vettingProcesses: number
|
|
6161
6162
|
}
|
|
6162
6163
|
|
|
6163
6164
|
export type RoleCategoryCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6164
6165
|
mappedRoleTitles?: boolean | RoleCategoryCountOutputTypeCountMappedRoleTitlesArgs
|
|
6165
6166
|
Experience?: boolean | RoleCategoryCountOutputTypeCountExperienceArgs
|
|
6167
|
+
vettingProcesses?: boolean | RoleCategoryCountOutputTypeCountVettingProcessesArgs
|
|
6166
6168
|
}
|
|
6167
6169
|
|
|
6168
6170
|
// Custom InputTypes
|
|
@@ -6190,6 +6192,44 @@ export namespace Prisma {
|
|
|
6190
6192
|
where?: ExperienceWhereInput
|
|
6191
6193
|
}
|
|
6192
6194
|
|
|
6195
|
+
/**
|
|
6196
|
+
* RoleCategoryCountOutputType without action
|
|
6197
|
+
*/
|
|
6198
|
+
export type RoleCategoryCountOutputTypeCountVettingProcessesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6199
|
+
where?: VettingProcessWhereInput
|
|
6200
|
+
}
|
|
6201
|
+
|
|
6202
|
+
|
|
6203
|
+
/**
|
|
6204
|
+
* Count Type TalentCategoryCountOutputType
|
|
6205
|
+
*/
|
|
6206
|
+
|
|
6207
|
+
export type TalentCategoryCountOutputType = {
|
|
6208
|
+
vettingProcesses: number
|
|
6209
|
+
}
|
|
6210
|
+
|
|
6211
|
+
export type TalentCategoryCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6212
|
+
vettingProcesses?: boolean | TalentCategoryCountOutputTypeCountVettingProcessesArgs
|
|
6213
|
+
}
|
|
6214
|
+
|
|
6215
|
+
// Custom InputTypes
|
|
6216
|
+
/**
|
|
6217
|
+
* TalentCategoryCountOutputType without action
|
|
6218
|
+
*/
|
|
6219
|
+
export type TalentCategoryCountOutputTypeDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6220
|
+
/**
|
|
6221
|
+
* Select specific fields to fetch from the TalentCategoryCountOutputType
|
|
6222
|
+
*/
|
|
6223
|
+
select?: TalentCategoryCountOutputTypeSelect<ExtArgs> | null
|
|
6224
|
+
}
|
|
6225
|
+
|
|
6226
|
+
/**
|
|
6227
|
+
* TalentCategoryCountOutputType without action
|
|
6228
|
+
*/
|
|
6229
|
+
export type TalentCategoryCountOutputTypeCountVettingProcessesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6230
|
+
where?: VettingProcessWhereInput
|
|
6231
|
+
}
|
|
6232
|
+
|
|
6193
6233
|
|
|
6194
6234
|
/**
|
|
6195
6235
|
* Count Type TalentIndustryCountOutputType
|
|
@@ -6251,6 +6291,7 @@ export namespace Prisma {
|
|
|
6251
6291
|
evaluatorEvaluationProcesses: number
|
|
6252
6292
|
userEvaluationProcesses: number
|
|
6253
6293
|
vetters: number
|
|
6294
|
+
contactOwnerVettingProcesses: number
|
|
6254
6295
|
}
|
|
6255
6296
|
|
|
6256
6297
|
export type UserCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -6278,6 +6319,7 @@ export namespace Prisma {
|
|
|
6278
6319
|
evaluatorEvaluationProcesses?: boolean | UserCountOutputTypeCountEvaluatorEvaluationProcessesArgs
|
|
6279
6320
|
userEvaluationProcesses?: boolean | UserCountOutputTypeCountUserEvaluationProcessesArgs
|
|
6280
6321
|
vetters?: boolean | UserCountOutputTypeCountVettersArgs
|
|
6322
|
+
contactOwnerVettingProcesses?: boolean | UserCountOutputTypeCountContactOwnerVettingProcessesArgs
|
|
6281
6323
|
}
|
|
6282
6324
|
|
|
6283
6325
|
// Custom InputTypes
|
|
@@ -6459,6 +6501,13 @@ export namespace Prisma {
|
|
|
6459
6501
|
where?: VetterWhereInput
|
|
6460
6502
|
}
|
|
6461
6503
|
|
|
6504
|
+
/**
|
|
6505
|
+
* UserCountOutputType without action
|
|
6506
|
+
*/
|
|
6507
|
+
export type UserCountOutputTypeCountContactOwnerVettingProcessesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6508
|
+
where?: VettingProcessWhereInput
|
|
6509
|
+
}
|
|
6510
|
+
|
|
6462
6511
|
|
|
6463
6512
|
/**
|
|
6464
6513
|
* Models
|
|
@@ -44851,6 +44900,7 @@ export namespace Prisma {
|
|
|
44851
44900
|
talentCategoryIds?: boolean
|
|
44852
44901
|
mappedRoleTitles?: boolean | RoleCategory$mappedRoleTitlesArgs<ExtArgs>
|
|
44853
44902
|
Experience?: boolean | RoleCategory$ExperienceArgs<ExtArgs>
|
|
44903
|
+
vettingProcesses?: boolean | RoleCategory$vettingProcessesArgs<ExtArgs>
|
|
44854
44904
|
_count?: boolean | RoleCategoryCountOutputTypeDefaultArgs<ExtArgs>
|
|
44855
44905
|
}, ExtArgs["result"]["roleCategory"]>
|
|
44856
44906
|
|
|
@@ -44867,6 +44917,7 @@ export namespace Prisma {
|
|
|
44867
44917
|
export type RoleCategoryInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
44868
44918
|
mappedRoleTitles?: boolean | RoleCategory$mappedRoleTitlesArgs<ExtArgs>
|
|
44869
44919
|
Experience?: boolean | RoleCategory$ExperienceArgs<ExtArgs>
|
|
44920
|
+
vettingProcesses?: boolean | RoleCategory$vettingProcessesArgs<ExtArgs>
|
|
44870
44921
|
_count?: boolean | RoleCategoryCountOutputTypeDefaultArgs<ExtArgs>
|
|
44871
44922
|
}
|
|
44872
44923
|
|
|
@@ -44875,6 +44926,7 @@ export namespace Prisma {
|
|
|
44875
44926
|
objects: {
|
|
44876
44927
|
mappedRoleTitles: Prisma.$MapperRoleTitleToRoleCategoryPayload<ExtArgs>[]
|
|
44877
44928
|
Experience: Prisma.$ExperiencePayload<ExtArgs>[]
|
|
44929
|
+
vettingProcesses: Prisma.$VettingProcessPayload<ExtArgs>[]
|
|
44878
44930
|
}
|
|
44879
44931
|
scalars: $Extensions.GetPayloadResult<{
|
|
44880
44932
|
id: string
|
|
@@ -45248,6 +45300,7 @@ export namespace Prisma {
|
|
|
45248
45300
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
45249
45301
|
mappedRoleTitles<T extends RoleCategory$mappedRoleTitlesArgs<ExtArgs> = {}>(args?: Subset<T, RoleCategory$mappedRoleTitlesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MapperRoleTitleToRoleCategoryPayload<ExtArgs>, T, "findMany"> | Null>
|
|
45250
45302
|
Experience<T extends RoleCategory$ExperienceArgs<ExtArgs> = {}>(args?: Subset<T, RoleCategory$ExperienceArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ExperiencePayload<ExtArgs>, T, "findMany"> | Null>
|
|
45303
|
+
vettingProcesses<T extends RoleCategory$vettingProcessesArgs<ExtArgs> = {}>(args?: Subset<T, RoleCategory$vettingProcessesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$VettingProcessPayload<ExtArgs>, T, "findMany"> | Null>
|
|
45251
45304
|
/**
|
|
45252
45305
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
45253
45306
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -45648,6 +45701,26 @@ export namespace Prisma {
|
|
|
45648
45701
|
distinct?: ExperienceScalarFieldEnum | ExperienceScalarFieldEnum[]
|
|
45649
45702
|
}
|
|
45650
45703
|
|
|
45704
|
+
/**
|
|
45705
|
+
* RoleCategory.vettingProcesses
|
|
45706
|
+
*/
|
|
45707
|
+
export type RoleCategory$vettingProcessesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45708
|
+
/**
|
|
45709
|
+
* Select specific fields to fetch from the VettingProcess
|
|
45710
|
+
*/
|
|
45711
|
+
select?: VettingProcessSelect<ExtArgs> | null
|
|
45712
|
+
/**
|
|
45713
|
+
* Choose, which related nodes to fetch as well
|
|
45714
|
+
*/
|
|
45715
|
+
include?: VettingProcessInclude<ExtArgs> | null
|
|
45716
|
+
where?: VettingProcessWhereInput
|
|
45717
|
+
orderBy?: VettingProcessOrderByWithRelationInput | VettingProcessOrderByWithRelationInput[]
|
|
45718
|
+
cursor?: VettingProcessWhereUniqueInput
|
|
45719
|
+
take?: number
|
|
45720
|
+
skip?: number
|
|
45721
|
+
distinct?: VettingProcessScalarFieldEnum | VettingProcessScalarFieldEnum[]
|
|
45722
|
+
}
|
|
45723
|
+
|
|
45651
45724
|
/**
|
|
45652
45725
|
* RoleCategory without action
|
|
45653
45726
|
*/
|
|
@@ -48838,6 +48911,8 @@ export namespace Prisma {
|
|
|
48838
48911
|
isProgrammingLanguage?: boolean
|
|
48839
48912
|
isVettingEligible?: boolean
|
|
48840
48913
|
deletedAt?: boolean
|
|
48914
|
+
vettingProcesses?: boolean | TalentCategory$vettingProcessesArgs<ExtArgs>
|
|
48915
|
+
_count?: boolean | TalentCategoryCountOutputTypeDefaultArgs<ExtArgs>
|
|
48841
48916
|
}, ExtArgs["result"]["talentCategory"]>
|
|
48842
48917
|
|
|
48843
48918
|
|
|
@@ -48853,10 +48928,16 @@ export namespace Prisma {
|
|
|
48853
48928
|
deletedAt?: boolean
|
|
48854
48929
|
}
|
|
48855
48930
|
|
|
48931
|
+
export type TalentCategoryInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
48932
|
+
vettingProcesses?: boolean | TalentCategory$vettingProcessesArgs<ExtArgs>
|
|
48933
|
+
_count?: boolean | TalentCategoryCountOutputTypeDefaultArgs<ExtArgs>
|
|
48934
|
+
}
|
|
48856
48935
|
|
|
48857
48936
|
export type $TalentCategoryPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
48858
48937
|
name: "TalentCategory"
|
|
48859
|
-
objects: {
|
|
48938
|
+
objects: {
|
|
48939
|
+
vettingProcesses: Prisma.$VettingProcessPayload<ExtArgs>[]
|
|
48940
|
+
}
|
|
48860
48941
|
scalars: $Extensions.GetPayloadResult<{
|
|
48861
48942
|
id: string
|
|
48862
48943
|
textId: string
|
|
@@ -49230,6 +49311,7 @@ export namespace Prisma {
|
|
|
49230
49311
|
*/
|
|
49231
49312
|
export interface Prisma__TalentCategoryClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
49232
49313
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
49314
|
+
vettingProcesses<T extends TalentCategory$vettingProcessesArgs<ExtArgs> = {}>(args?: Subset<T, TalentCategory$vettingProcessesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$VettingProcessPayload<ExtArgs>, T, "findMany"> | Null>
|
|
49233
49315
|
/**
|
|
49234
49316
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
49235
49317
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -49280,6 +49362,10 @@ export namespace Prisma {
|
|
|
49280
49362
|
* Select specific fields to fetch from the TalentCategory
|
|
49281
49363
|
*/
|
|
49282
49364
|
select?: TalentCategorySelect<ExtArgs> | null
|
|
49365
|
+
/**
|
|
49366
|
+
* Choose, which related nodes to fetch as well
|
|
49367
|
+
*/
|
|
49368
|
+
include?: TalentCategoryInclude<ExtArgs> | null
|
|
49283
49369
|
/**
|
|
49284
49370
|
* Filter, which TalentCategory to fetch.
|
|
49285
49371
|
*/
|
|
@@ -49294,6 +49380,10 @@ export namespace Prisma {
|
|
|
49294
49380
|
* Select specific fields to fetch from the TalentCategory
|
|
49295
49381
|
*/
|
|
49296
49382
|
select?: TalentCategorySelect<ExtArgs> | null
|
|
49383
|
+
/**
|
|
49384
|
+
* Choose, which related nodes to fetch as well
|
|
49385
|
+
*/
|
|
49386
|
+
include?: TalentCategoryInclude<ExtArgs> | null
|
|
49297
49387
|
/**
|
|
49298
49388
|
* Filter, which TalentCategory to fetch.
|
|
49299
49389
|
*/
|
|
@@ -49308,6 +49398,10 @@ export namespace Prisma {
|
|
|
49308
49398
|
* Select specific fields to fetch from the TalentCategory
|
|
49309
49399
|
*/
|
|
49310
49400
|
select?: TalentCategorySelect<ExtArgs> | null
|
|
49401
|
+
/**
|
|
49402
|
+
* Choose, which related nodes to fetch as well
|
|
49403
|
+
*/
|
|
49404
|
+
include?: TalentCategoryInclude<ExtArgs> | null
|
|
49311
49405
|
/**
|
|
49312
49406
|
* Filter, which TalentCategory to fetch.
|
|
49313
49407
|
*/
|
|
@@ -49352,6 +49446,10 @@ export namespace Prisma {
|
|
|
49352
49446
|
* Select specific fields to fetch from the TalentCategory
|
|
49353
49447
|
*/
|
|
49354
49448
|
select?: TalentCategorySelect<ExtArgs> | null
|
|
49449
|
+
/**
|
|
49450
|
+
* Choose, which related nodes to fetch as well
|
|
49451
|
+
*/
|
|
49452
|
+
include?: TalentCategoryInclude<ExtArgs> | null
|
|
49355
49453
|
/**
|
|
49356
49454
|
* Filter, which TalentCategory to fetch.
|
|
49357
49455
|
*/
|
|
@@ -49396,6 +49494,10 @@ export namespace Prisma {
|
|
|
49396
49494
|
* Select specific fields to fetch from the TalentCategory
|
|
49397
49495
|
*/
|
|
49398
49496
|
select?: TalentCategorySelect<ExtArgs> | null
|
|
49497
|
+
/**
|
|
49498
|
+
* Choose, which related nodes to fetch as well
|
|
49499
|
+
*/
|
|
49500
|
+
include?: TalentCategoryInclude<ExtArgs> | null
|
|
49399
49501
|
/**
|
|
49400
49502
|
* Filter, which TalentCategories to fetch.
|
|
49401
49503
|
*/
|
|
@@ -49435,6 +49537,10 @@ export namespace Prisma {
|
|
|
49435
49537
|
* Select specific fields to fetch from the TalentCategory
|
|
49436
49538
|
*/
|
|
49437
49539
|
select?: TalentCategorySelect<ExtArgs> | null
|
|
49540
|
+
/**
|
|
49541
|
+
* Choose, which related nodes to fetch as well
|
|
49542
|
+
*/
|
|
49543
|
+
include?: TalentCategoryInclude<ExtArgs> | null
|
|
49438
49544
|
/**
|
|
49439
49545
|
* The data needed to create a TalentCategory.
|
|
49440
49546
|
*/
|
|
@@ -49459,6 +49565,10 @@ export namespace Prisma {
|
|
|
49459
49565
|
* Select specific fields to fetch from the TalentCategory
|
|
49460
49566
|
*/
|
|
49461
49567
|
select?: TalentCategorySelect<ExtArgs> | null
|
|
49568
|
+
/**
|
|
49569
|
+
* Choose, which related nodes to fetch as well
|
|
49570
|
+
*/
|
|
49571
|
+
include?: TalentCategoryInclude<ExtArgs> | null
|
|
49462
49572
|
/**
|
|
49463
49573
|
* The data needed to update a TalentCategory.
|
|
49464
49574
|
*/
|
|
@@ -49491,6 +49601,10 @@ export namespace Prisma {
|
|
|
49491
49601
|
* Select specific fields to fetch from the TalentCategory
|
|
49492
49602
|
*/
|
|
49493
49603
|
select?: TalentCategorySelect<ExtArgs> | null
|
|
49604
|
+
/**
|
|
49605
|
+
* Choose, which related nodes to fetch as well
|
|
49606
|
+
*/
|
|
49607
|
+
include?: TalentCategoryInclude<ExtArgs> | null
|
|
49494
49608
|
/**
|
|
49495
49609
|
* The filter to search for the TalentCategory to update in case it exists.
|
|
49496
49610
|
*/
|
|
@@ -49513,6 +49627,10 @@ export namespace Prisma {
|
|
|
49513
49627
|
* Select specific fields to fetch from the TalentCategory
|
|
49514
49628
|
*/
|
|
49515
49629
|
select?: TalentCategorySelect<ExtArgs> | null
|
|
49630
|
+
/**
|
|
49631
|
+
* Choose, which related nodes to fetch as well
|
|
49632
|
+
*/
|
|
49633
|
+
include?: TalentCategoryInclude<ExtArgs> | null
|
|
49516
49634
|
/**
|
|
49517
49635
|
* Filter which TalentCategory to delete.
|
|
49518
49636
|
*/
|
|
@@ -49557,6 +49675,26 @@ export namespace Prisma {
|
|
|
49557
49675
|
options?: InputJsonValue
|
|
49558
49676
|
}
|
|
49559
49677
|
|
|
49678
|
+
/**
|
|
49679
|
+
* TalentCategory.vettingProcesses
|
|
49680
|
+
*/
|
|
49681
|
+
export type TalentCategory$vettingProcessesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
49682
|
+
/**
|
|
49683
|
+
* Select specific fields to fetch from the VettingProcess
|
|
49684
|
+
*/
|
|
49685
|
+
select?: VettingProcessSelect<ExtArgs> | null
|
|
49686
|
+
/**
|
|
49687
|
+
* Choose, which related nodes to fetch as well
|
|
49688
|
+
*/
|
|
49689
|
+
include?: VettingProcessInclude<ExtArgs> | null
|
|
49690
|
+
where?: VettingProcessWhereInput
|
|
49691
|
+
orderBy?: VettingProcessOrderByWithRelationInput | VettingProcessOrderByWithRelationInput[]
|
|
49692
|
+
cursor?: VettingProcessWhereUniqueInput
|
|
49693
|
+
take?: number
|
|
49694
|
+
skip?: number
|
|
49695
|
+
distinct?: VettingProcessScalarFieldEnum | VettingProcessScalarFieldEnum[]
|
|
49696
|
+
}
|
|
49697
|
+
|
|
49560
49698
|
/**
|
|
49561
49699
|
* TalentCategory without action
|
|
49562
49700
|
*/
|
|
@@ -49565,6 +49703,10 @@ export namespace Prisma {
|
|
|
49565
49703
|
* Select specific fields to fetch from the TalentCategory
|
|
49566
49704
|
*/
|
|
49567
49705
|
select?: TalentCategorySelect<ExtArgs> | null
|
|
49706
|
+
/**
|
|
49707
|
+
* Choose, which related nodes to fetch as well
|
|
49708
|
+
*/
|
|
49709
|
+
include?: TalentCategoryInclude<ExtArgs> | null
|
|
49568
49710
|
}
|
|
49569
49711
|
|
|
49570
49712
|
|
|
@@ -52013,6 +52155,7 @@ export namespace Prisma {
|
|
|
52013
52155
|
evaluatorEvaluationProcesses?: boolean | User$evaluatorEvaluationProcessesArgs<ExtArgs>
|
|
52014
52156
|
userEvaluationProcesses?: boolean | User$userEvaluationProcessesArgs<ExtArgs>
|
|
52015
52157
|
vetters?: boolean | User$vettersArgs<ExtArgs>
|
|
52158
|
+
contactOwnerVettingProcesses?: boolean | User$contactOwnerVettingProcessesArgs<ExtArgs>
|
|
52016
52159
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
52017
52160
|
}, ExtArgs["result"]["user"]>
|
|
52018
52161
|
|
|
@@ -52067,6 +52210,7 @@ export namespace Prisma {
|
|
|
52067
52210
|
evaluatorEvaluationProcesses?: boolean | User$evaluatorEvaluationProcessesArgs<ExtArgs>
|
|
52068
52211
|
userEvaluationProcesses?: boolean | User$userEvaluationProcessesArgs<ExtArgs>
|
|
52069
52212
|
vetters?: boolean | User$vettersArgs<ExtArgs>
|
|
52213
|
+
contactOwnerVettingProcesses?: boolean | User$contactOwnerVettingProcessesArgs<ExtArgs>
|
|
52070
52214
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
52071
52215
|
}
|
|
52072
52216
|
|
|
@@ -52099,6 +52243,7 @@ export namespace Prisma {
|
|
|
52099
52243
|
evaluatorEvaluationProcesses: Prisma.$EvaluationProcessPayload<ExtArgs>[]
|
|
52100
52244
|
userEvaluationProcesses: Prisma.$EvaluationProcessPayload<ExtArgs>[]
|
|
52101
52245
|
vetters: Prisma.$VetterPayload<ExtArgs>[]
|
|
52246
|
+
contactOwnerVettingProcesses: Prisma.$VettingProcessPayload<ExtArgs>[]
|
|
52102
52247
|
}
|
|
52103
52248
|
scalars: $Extensions.GetPayloadResult<{
|
|
52104
52249
|
id: string
|
|
@@ -52530,6 +52675,7 @@ export namespace Prisma {
|
|
|
52530
52675
|
evaluatorEvaluationProcesses<T extends User$evaluatorEvaluationProcessesArgs<ExtArgs> = {}>(args?: Subset<T, User$evaluatorEvaluationProcessesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EvaluationProcessPayload<ExtArgs>, T, "findMany"> | Null>
|
|
52531
52676
|
userEvaluationProcesses<T extends User$userEvaluationProcessesArgs<ExtArgs> = {}>(args?: Subset<T, User$userEvaluationProcessesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EvaluationProcessPayload<ExtArgs>, T, "findMany"> | Null>
|
|
52532
52677
|
vetters<T extends User$vettersArgs<ExtArgs> = {}>(args?: Subset<T, User$vettersArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$VetterPayload<ExtArgs>, T, "findMany"> | Null>
|
|
52678
|
+
contactOwnerVettingProcesses<T extends User$contactOwnerVettingProcessesArgs<ExtArgs> = {}>(args?: Subset<T, User$contactOwnerVettingProcessesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$VettingProcessPayload<ExtArgs>, T, "findMany"> | Null>
|
|
52533
52679
|
/**
|
|
52534
52680
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
52535
52681
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -53414,6 +53560,26 @@ export namespace Prisma {
|
|
|
53414
53560
|
distinct?: VetterScalarFieldEnum | VetterScalarFieldEnum[]
|
|
53415
53561
|
}
|
|
53416
53562
|
|
|
53563
|
+
/**
|
|
53564
|
+
* User.contactOwnerVettingProcesses
|
|
53565
|
+
*/
|
|
53566
|
+
export type User$contactOwnerVettingProcessesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
53567
|
+
/**
|
|
53568
|
+
* Select specific fields to fetch from the VettingProcess
|
|
53569
|
+
*/
|
|
53570
|
+
select?: VettingProcessSelect<ExtArgs> | null
|
|
53571
|
+
/**
|
|
53572
|
+
* Choose, which related nodes to fetch as well
|
|
53573
|
+
*/
|
|
53574
|
+
include?: VettingProcessInclude<ExtArgs> | null
|
|
53575
|
+
where?: VettingProcessWhereInput
|
|
53576
|
+
orderBy?: VettingProcessOrderByWithRelationInput | VettingProcessOrderByWithRelationInput[]
|
|
53577
|
+
cursor?: VettingProcessWhereUniqueInput
|
|
53578
|
+
take?: number
|
|
53579
|
+
skip?: number
|
|
53580
|
+
distinct?: VettingProcessScalarFieldEnum | VettingProcessScalarFieldEnum[]
|
|
53581
|
+
}
|
|
53582
|
+
|
|
53417
53583
|
/**
|
|
53418
53584
|
* User without action
|
|
53419
53585
|
*/
|
|
@@ -56500,6 +56666,9 @@ export namespace Prisma {
|
|
|
56500
56666
|
vettingType: $Enums.VettingType | null
|
|
56501
56667
|
preVettingFormNonce: string | null
|
|
56502
56668
|
automationReason: $Enums.VettingProcessAutomationReason | null
|
|
56669
|
+
categoryId: string | null
|
|
56670
|
+
primaryRoleCategoryId: string | null
|
|
56671
|
+
contactOwnerId: string | null
|
|
56503
56672
|
publicId: string | null
|
|
56504
56673
|
isNewEvaluationProcess: boolean | null
|
|
56505
56674
|
calComDailyMeetingId: string | null
|
|
@@ -56519,6 +56688,9 @@ export namespace Prisma {
|
|
|
56519
56688
|
vettingType: $Enums.VettingType | null
|
|
56520
56689
|
preVettingFormNonce: string | null
|
|
56521
56690
|
automationReason: $Enums.VettingProcessAutomationReason | null
|
|
56691
|
+
categoryId: string | null
|
|
56692
|
+
primaryRoleCategoryId: string | null
|
|
56693
|
+
contactOwnerId: string | null
|
|
56522
56694
|
publicId: string | null
|
|
56523
56695
|
isNewEvaluationProcess: boolean | null
|
|
56524
56696
|
calComDailyMeetingId: string | null
|
|
@@ -56538,6 +56710,9 @@ export namespace Prisma {
|
|
|
56538
56710
|
vettingType: number
|
|
56539
56711
|
preVettingFormNonce: number
|
|
56540
56712
|
automationReason: number
|
|
56713
|
+
categoryId: number
|
|
56714
|
+
primaryRoleCategoryId: number
|
|
56715
|
+
contactOwnerId: number
|
|
56541
56716
|
publicId: number
|
|
56542
56717
|
isNewEvaluationProcess: number
|
|
56543
56718
|
calComDailyMeetingId: number
|
|
@@ -56569,6 +56744,9 @@ export namespace Prisma {
|
|
|
56569
56744
|
vettingType?: true
|
|
56570
56745
|
preVettingFormNonce?: true
|
|
56571
56746
|
automationReason?: true
|
|
56747
|
+
categoryId?: true
|
|
56748
|
+
primaryRoleCategoryId?: true
|
|
56749
|
+
contactOwnerId?: true
|
|
56572
56750
|
publicId?: true
|
|
56573
56751
|
isNewEvaluationProcess?: true
|
|
56574
56752
|
calComDailyMeetingId?: true
|
|
@@ -56588,6 +56766,9 @@ export namespace Prisma {
|
|
|
56588
56766
|
vettingType?: true
|
|
56589
56767
|
preVettingFormNonce?: true
|
|
56590
56768
|
automationReason?: true
|
|
56769
|
+
categoryId?: true
|
|
56770
|
+
primaryRoleCategoryId?: true
|
|
56771
|
+
contactOwnerId?: true
|
|
56591
56772
|
publicId?: true
|
|
56592
56773
|
isNewEvaluationProcess?: true
|
|
56593
56774
|
calComDailyMeetingId?: true
|
|
@@ -56607,6 +56788,9 @@ export namespace Prisma {
|
|
|
56607
56788
|
vettingType?: true
|
|
56608
56789
|
preVettingFormNonce?: true
|
|
56609
56790
|
automationReason?: true
|
|
56791
|
+
categoryId?: true
|
|
56792
|
+
primaryRoleCategoryId?: true
|
|
56793
|
+
contactOwnerId?: true
|
|
56610
56794
|
publicId?: true
|
|
56611
56795
|
isNewEvaluationProcess?: true
|
|
56612
56796
|
calComDailyMeetingId?: true
|
|
@@ -56715,6 +56899,9 @@ export namespace Prisma {
|
|
|
56715
56899
|
vettingType: $Enums.VettingType
|
|
56716
56900
|
preVettingFormNonce: string | null
|
|
56717
56901
|
automationReason: $Enums.VettingProcessAutomationReason | null
|
|
56902
|
+
categoryId: string | null
|
|
56903
|
+
primaryRoleCategoryId: string | null
|
|
56904
|
+
contactOwnerId: string | null
|
|
56718
56905
|
publicId: string | null
|
|
56719
56906
|
isNewEvaluationProcess: boolean | null
|
|
56720
56907
|
calComDailyMeetingId: string | null
|
|
@@ -56755,6 +56942,9 @@ export namespace Prisma {
|
|
|
56755
56942
|
vettingType?: boolean
|
|
56756
56943
|
preVettingFormNonce?: boolean
|
|
56757
56944
|
automationReason?: boolean
|
|
56945
|
+
categoryId?: boolean
|
|
56946
|
+
primaryRoleCategoryId?: boolean
|
|
56947
|
+
contactOwnerId?: boolean
|
|
56758
56948
|
publicId?: boolean
|
|
56759
56949
|
isNewEvaluationProcess?: boolean
|
|
56760
56950
|
calComDailyMeetingId?: boolean
|
|
@@ -56768,6 +56958,9 @@ export namespace Prisma {
|
|
|
56768
56958
|
updatedAt?: boolean
|
|
56769
56959
|
user?: boolean | VettingProcess$userArgs<ExtArgs>
|
|
56770
56960
|
vetter?: boolean | VettingProcess$vetterArgs<ExtArgs>
|
|
56961
|
+
category?: boolean | VettingProcess$categoryArgs<ExtArgs>
|
|
56962
|
+
primaryRoleCategory?: boolean | VettingProcess$primaryRoleCategoryArgs<ExtArgs>
|
|
56963
|
+
contactOwner?: boolean | VettingProcess$contactOwnerArgs<ExtArgs>
|
|
56771
56964
|
}, ExtArgs["result"]["vettingProcess"]>
|
|
56772
56965
|
|
|
56773
56966
|
|
|
@@ -56779,6 +56972,9 @@ export namespace Prisma {
|
|
|
56779
56972
|
vettingType?: boolean
|
|
56780
56973
|
preVettingFormNonce?: boolean
|
|
56781
56974
|
automationReason?: boolean
|
|
56975
|
+
categoryId?: boolean
|
|
56976
|
+
primaryRoleCategoryId?: boolean
|
|
56977
|
+
contactOwnerId?: boolean
|
|
56782
56978
|
publicId?: boolean
|
|
56783
56979
|
isNewEvaluationProcess?: boolean
|
|
56784
56980
|
calComDailyMeetingId?: boolean
|
|
@@ -56795,6 +56991,9 @@ export namespace Prisma {
|
|
|
56795
56991
|
export type VettingProcessInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
56796
56992
|
user?: boolean | VettingProcess$userArgs<ExtArgs>
|
|
56797
56993
|
vetter?: boolean | VettingProcess$vetterArgs<ExtArgs>
|
|
56994
|
+
category?: boolean | VettingProcess$categoryArgs<ExtArgs>
|
|
56995
|
+
primaryRoleCategory?: boolean | VettingProcess$primaryRoleCategoryArgs<ExtArgs>
|
|
56996
|
+
contactOwner?: boolean | VettingProcess$contactOwnerArgs<ExtArgs>
|
|
56798
56997
|
}
|
|
56799
56998
|
|
|
56800
56999
|
export type $VettingProcessPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -56802,6 +57001,9 @@ export namespace Prisma {
|
|
|
56802
57001
|
objects: {
|
|
56803
57002
|
user: Prisma.$UserPayload<ExtArgs> | null
|
|
56804
57003
|
vetter: Prisma.$UserPayload<ExtArgs> | null
|
|
57004
|
+
category: Prisma.$TalentCategoryPayload<ExtArgs> | null
|
|
57005
|
+
primaryRoleCategory: Prisma.$RoleCategoryPayload<ExtArgs> | null
|
|
57006
|
+
contactOwner: Prisma.$UserPayload<ExtArgs> | null
|
|
56805
57007
|
}
|
|
56806
57008
|
scalars: $Extensions.GetPayloadResult<{
|
|
56807
57009
|
id: string
|
|
@@ -56817,6 +57019,9 @@ export namespace Prisma {
|
|
|
56817
57019
|
vettingType: $Enums.VettingType
|
|
56818
57020
|
preVettingFormNonce: string | null
|
|
56819
57021
|
automationReason: $Enums.VettingProcessAutomationReason | null
|
|
57022
|
+
categoryId: string | null
|
|
57023
|
+
primaryRoleCategoryId: string | null
|
|
57024
|
+
contactOwnerId: string | null
|
|
56820
57025
|
publicId: string | null
|
|
56821
57026
|
isNewEvaluationProcess: boolean | null
|
|
56822
57027
|
/**
|
|
@@ -57214,6 +57419,9 @@ export namespace Prisma {
|
|
|
57214
57419
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
57215
57420
|
user<T extends VettingProcess$userArgs<ExtArgs> = {}>(args?: Subset<T, VettingProcess$userArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
57216
57421
|
vetter<T extends VettingProcess$vetterArgs<ExtArgs> = {}>(args?: Subset<T, VettingProcess$vetterArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
57422
|
+
category<T extends VettingProcess$categoryArgs<ExtArgs> = {}>(args?: Subset<T, VettingProcess$categoryArgs<ExtArgs>>): Prisma__TalentCategoryClient<$Result.GetResult<Prisma.$TalentCategoryPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
57423
|
+
primaryRoleCategory<T extends VettingProcess$primaryRoleCategoryArgs<ExtArgs> = {}>(args?: Subset<T, VettingProcess$primaryRoleCategoryArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
57424
|
+
contactOwner<T extends VettingProcess$contactOwnerArgs<ExtArgs> = {}>(args?: Subset<T, VettingProcess$contactOwnerArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
57217
57425
|
/**
|
|
57218
57426
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
57219
57427
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -57250,6 +57458,9 @@ export namespace Prisma {
|
|
|
57250
57458
|
readonly vettingType: FieldRef<"VettingProcess", 'VettingType'>
|
|
57251
57459
|
readonly preVettingFormNonce: FieldRef<"VettingProcess", 'String'>
|
|
57252
57460
|
readonly automationReason: FieldRef<"VettingProcess", 'VettingProcessAutomationReason'>
|
|
57461
|
+
readonly categoryId: FieldRef<"VettingProcess", 'String'>
|
|
57462
|
+
readonly primaryRoleCategoryId: FieldRef<"VettingProcess", 'String'>
|
|
57463
|
+
readonly contactOwnerId: FieldRef<"VettingProcess", 'String'>
|
|
57253
57464
|
readonly publicId: FieldRef<"VettingProcess", 'String'>
|
|
57254
57465
|
readonly isNewEvaluationProcess: FieldRef<"VettingProcess", 'Boolean'>
|
|
57255
57466
|
readonly calComDailyMeetingId: FieldRef<"VettingProcess", 'String'>
|
|
@@ -57616,6 +57827,51 @@ export namespace Prisma {
|
|
|
57616
57827
|
where?: UserWhereInput
|
|
57617
57828
|
}
|
|
57618
57829
|
|
|
57830
|
+
/**
|
|
57831
|
+
* VettingProcess.category
|
|
57832
|
+
*/
|
|
57833
|
+
export type VettingProcess$categoryArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
57834
|
+
/**
|
|
57835
|
+
* Select specific fields to fetch from the TalentCategory
|
|
57836
|
+
*/
|
|
57837
|
+
select?: TalentCategorySelect<ExtArgs> | null
|
|
57838
|
+
/**
|
|
57839
|
+
* Choose, which related nodes to fetch as well
|
|
57840
|
+
*/
|
|
57841
|
+
include?: TalentCategoryInclude<ExtArgs> | null
|
|
57842
|
+
where?: TalentCategoryWhereInput
|
|
57843
|
+
}
|
|
57844
|
+
|
|
57845
|
+
/**
|
|
57846
|
+
* VettingProcess.primaryRoleCategory
|
|
57847
|
+
*/
|
|
57848
|
+
export type VettingProcess$primaryRoleCategoryArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
57849
|
+
/**
|
|
57850
|
+
* Select specific fields to fetch from the RoleCategory
|
|
57851
|
+
*/
|
|
57852
|
+
select?: RoleCategorySelect<ExtArgs> | null
|
|
57853
|
+
/**
|
|
57854
|
+
* Choose, which related nodes to fetch as well
|
|
57855
|
+
*/
|
|
57856
|
+
include?: RoleCategoryInclude<ExtArgs> | null
|
|
57857
|
+
where?: RoleCategoryWhereInput
|
|
57858
|
+
}
|
|
57859
|
+
|
|
57860
|
+
/**
|
|
57861
|
+
* VettingProcess.contactOwner
|
|
57862
|
+
*/
|
|
57863
|
+
export type VettingProcess$contactOwnerArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
57864
|
+
/**
|
|
57865
|
+
* Select specific fields to fetch from the User
|
|
57866
|
+
*/
|
|
57867
|
+
select?: UserSelect<ExtArgs> | null
|
|
57868
|
+
/**
|
|
57869
|
+
* Choose, which related nodes to fetch as well
|
|
57870
|
+
*/
|
|
57871
|
+
include?: UserInclude<ExtArgs> | null
|
|
57872
|
+
where?: UserWhereInput
|
|
57873
|
+
}
|
|
57874
|
+
|
|
57619
57875
|
/**
|
|
57620
57876
|
* VettingProcess without action
|
|
57621
57877
|
*/
|
|
@@ -58343,6 +58599,9 @@ export namespace Prisma {
|
|
|
58343
58599
|
vettingType: 'vettingType',
|
|
58344
58600
|
preVettingFormNonce: 'preVettingFormNonce',
|
|
58345
58601
|
automationReason: 'automationReason',
|
|
58602
|
+
categoryId: 'categoryId',
|
|
58603
|
+
primaryRoleCategoryId: 'primaryRoleCategoryId',
|
|
58604
|
+
contactOwnerId: 'contactOwnerId',
|
|
58346
58605
|
publicId: 'publicId',
|
|
58347
58606
|
isNewEvaluationProcess: 'isNewEvaluationProcess',
|
|
58348
58607
|
calComDailyMeetingId: 'calComDailyMeetingId',
|
|
@@ -62142,6 +62401,7 @@ export namespace Prisma {
|
|
|
62142
62401
|
talentCategoryIds?: StringNullableListFilter<"RoleCategory">
|
|
62143
62402
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryListRelationFilter
|
|
62144
62403
|
Experience?: ExperienceListRelationFilter
|
|
62404
|
+
vettingProcesses?: VettingProcessListRelationFilter
|
|
62145
62405
|
}
|
|
62146
62406
|
|
|
62147
62407
|
export type RoleCategoryOrderByWithRelationInput = {
|
|
@@ -62153,6 +62413,7 @@ export namespace Prisma {
|
|
|
62153
62413
|
talentCategoryIds?: SortOrder
|
|
62154
62414
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryOrderByRelationAggregateInput
|
|
62155
62415
|
Experience?: ExperienceOrderByRelationAggregateInput
|
|
62416
|
+
vettingProcesses?: VettingProcessOrderByRelationAggregateInput
|
|
62156
62417
|
}
|
|
62157
62418
|
|
|
62158
62419
|
export type RoleCategoryWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -62167,6 +62428,7 @@ export namespace Prisma {
|
|
|
62167
62428
|
talentCategoryIds?: StringNullableListFilter<"RoleCategory">
|
|
62168
62429
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryListRelationFilter
|
|
62169
62430
|
Experience?: ExperienceListRelationFilter
|
|
62431
|
+
vettingProcesses?: VettingProcessListRelationFilter
|
|
62170
62432
|
}, "id" | "title">
|
|
62171
62433
|
|
|
62172
62434
|
export type RoleCategoryOrderByWithAggregationInput = {
|
|
@@ -62443,6 +62705,7 @@ export namespace Prisma {
|
|
|
62443
62705
|
isProgrammingLanguage?: BoolNullableFilter<"TalentCategory"> | boolean | null
|
|
62444
62706
|
isVettingEligible?: BoolNullableFilter<"TalentCategory"> | boolean | null
|
|
62445
62707
|
deletedAt?: DateTimeNullableFilter<"TalentCategory"> | Date | string | null
|
|
62708
|
+
vettingProcesses?: VettingProcessListRelationFilter
|
|
62446
62709
|
}
|
|
62447
62710
|
|
|
62448
62711
|
export type TalentCategoryOrderByWithRelationInput = {
|
|
@@ -62455,6 +62718,7 @@ export namespace Prisma {
|
|
|
62455
62718
|
isProgrammingLanguage?: SortOrder
|
|
62456
62719
|
isVettingEligible?: SortOrder
|
|
62457
62720
|
deletedAt?: SortOrder
|
|
62721
|
+
vettingProcesses?: VettingProcessOrderByRelationAggregateInput
|
|
62458
62722
|
}
|
|
62459
62723
|
|
|
62460
62724
|
export type TalentCategoryWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -62470,6 +62734,7 @@ export namespace Prisma {
|
|
|
62470
62734
|
isProgrammingLanguage?: BoolNullableFilter<"TalentCategory"> | boolean | null
|
|
62471
62735
|
isVettingEligible?: BoolNullableFilter<"TalentCategory"> | boolean | null
|
|
62472
62736
|
deletedAt?: DateTimeNullableFilter<"TalentCategory"> | Date | string | null
|
|
62737
|
+
vettingProcesses?: VettingProcessListRelationFilter
|
|
62473
62738
|
}, "id">
|
|
62474
62739
|
|
|
62475
62740
|
export type TalentCategoryOrderByWithAggregationInput = {
|
|
@@ -62753,6 +63018,7 @@ export namespace Prisma {
|
|
|
62753
63018
|
evaluatorEvaluationProcesses?: EvaluationProcessListRelationFilter
|
|
62754
63019
|
userEvaluationProcesses?: EvaluationProcessListRelationFilter
|
|
62755
63020
|
vetters?: VetterListRelationFilter
|
|
63021
|
+
contactOwnerVettingProcesses?: VettingProcessListRelationFilter
|
|
62756
63022
|
}
|
|
62757
63023
|
|
|
62758
63024
|
export type UserOrderByWithRelationInput = {
|
|
@@ -62821,6 +63087,7 @@ export namespace Prisma {
|
|
|
62821
63087
|
evaluatorEvaluationProcesses?: EvaluationProcessOrderByRelationAggregateInput
|
|
62822
63088
|
userEvaluationProcesses?: EvaluationProcessOrderByRelationAggregateInput
|
|
62823
63089
|
vetters?: VetterOrderByRelationAggregateInput
|
|
63090
|
+
contactOwnerVettingProcesses?: VettingProcessOrderByRelationAggregateInput
|
|
62824
63091
|
}
|
|
62825
63092
|
|
|
62826
63093
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -62892,6 +63159,7 @@ export namespace Prisma {
|
|
|
62892
63159
|
evaluatorEvaluationProcesses?: EvaluationProcessListRelationFilter
|
|
62893
63160
|
userEvaluationProcesses?: EvaluationProcessListRelationFilter
|
|
62894
63161
|
vetters?: VetterListRelationFilter
|
|
63162
|
+
contactOwnerVettingProcesses?: VettingProcessListRelationFilter
|
|
62895
63163
|
}, "id" | "username" | "email">
|
|
62896
63164
|
|
|
62897
63165
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -63221,6 +63489,9 @@ export namespace Prisma {
|
|
|
63221
63489
|
vettingType?: EnumVettingTypeFilter<"VettingProcess"> | $Enums.VettingType
|
|
63222
63490
|
preVettingFormNonce?: StringNullableFilter<"VettingProcess"> | string | null
|
|
63223
63491
|
automationReason?: EnumVettingProcessAutomationReasonNullableFilter<"VettingProcess"> | $Enums.VettingProcessAutomationReason | null
|
|
63492
|
+
categoryId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
63493
|
+
primaryRoleCategoryId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
63494
|
+
contactOwnerId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
63224
63495
|
publicId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
63225
63496
|
isNewEvaluationProcess?: BoolNullableFilter<"VettingProcess"> | boolean | null
|
|
63226
63497
|
calComDailyMeetingId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
@@ -63234,6 +63505,9 @@ export namespace Prisma {
|
|
|
63234
63505
|
updatedAt?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
63235
63506
|
user?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
63236
63507
|
vetter?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
63508
|
+
category?: XOR<TalentCategoryNullableRelationFilter, TalentCategoryWhereInput> | null
|
|
63509
|
+
primaryRoleCategory?: XOR<RoleCategoryNullableRelationFilter, RoleCategoryWhereInput> | null
|
|
63510
|
+
contactOwner?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
63237
63511
|
}
|
|
63238
63512
|
|
|
63239
63513
|
export type VettingProcessOrderByWithRelationInput = {
|
|
@@ -63244,6 +63518,9 @@ export namespace Prisma {
|
|
|
63244
63518
|
vettingType?: SortOrder
|
|
63245
63519
|
preVettingFormNonce?: SortOrder
|
|
63246
63520
|
automationReason?: SortOrder
|
|
63521
|
+
categoryId?: SortOrder
|
|
63522
|
+
primaryRoleCategoryId?: SortOrder
|
|
63523
|
+
contactOwnerId?: SortOrder
|
|
63247
63524
|
publicId?: SortOrder
|
|
63248
63525
|
isNewEvaluationProcess?: SortOrder
|
|
63249
63526
|
calComDailyMeetingId?: SortOrder
|
|
@@ -63257,6 +63534,9 @@ export namespace Prisma {
|
|
|
63257
63534
|
updatedAt?: SortOrder
|
|
63258
63535
|
user?: UserOrderByWithRelationInput
|
|
63259
63536
|
vetter?: UserOrderByWithRelationInput
|
|
63537
|
+
category?: TalentCategoryOrderByWithRelationInput
|
|
63538
|
+
primaryRoleCategory?: RoleCategoryOrderByWithRelationInput
|
|
63539
|
+
contactOwner?: UserOrderByWithRelationInput
|
|
63260
63540
|
}
|
|
63261
63541
|
|
|
63262
63542
|
export type VettingProcessWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -63270,6 +63550,9 @@ export namespace Prisma {
|
|
|
63270
63550
|
vettingType?: EnumVettingTypeFilter<"VettingProcess"> | $Enums.VettingType
|
|
63271
63551
|
preVettingFormNonce?: StringNullableFilter<"VettingProcess"> | string | null
|
|
63272
63552
|
automationReason?: EnumVettingProcessAutomationReasonNullableFilter<"VettingProcess"> | $Enums.VettingProcessAutomationReason | null
|
|
63553
|
+
categoryId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
63554
|
+
primaryRoleCategoryId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
63555
|
+
contactOwnerId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
63273
63556
|
publicId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
63274
63557
|
isNewEvaluationProcess?: BoolNullableFilter<"VettingProcess"> | boolean | null
|
|
63275
63558
|
calComDailyMeetingId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
@@ -63283,6 +63566,9 @@ export namespace Prisma {
|
|
|
63283
63566
|
updatedAt?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
63284
63567
|
user?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
63285
63568
|
vetter?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
63569
|
+
category?: XOR<TalentCategoryNullableRelationFilter, TalentCategoryWhereInput> | null
|
|
63570
|
+
primaryRoleCategory?: XOR<RoleCategoryNullableRelationFilter, RoleCategoryWhereInput> | null
|
|
63571
|
+
contactOwner?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
63286
63572
|
}, "id">
|
|
63287
63573
|
|
|
63288
63574
|
export type VettingProcessOrderByWithAggregationInput = {
|
|
@@ -63293,6 +63579,9 @@ export namespace Prisma {
|
|
|
63293
63579
|
vettingType?: SortOrder
|
|
63294
63580
|
preVettingFormNonce?: SortOrder
|
|
63295
63581
|
automationReason?: SortOrder
|
|
63582
|
+
categoryId?: SortOrder
|
|
63583
|
+
primaryRoleCategoryId?: SortOrder
|
|
63584
|
+
contactOwnerId?: SortOrder
|
|
63296
63585
|
publicId?: SortOrder
|
|
63297
63586
|
isNewEvaluationProcess?: SortOrder
|
|
63298
63587
|
calComDailyMeetingId?: SortOrder
|
|
@@ -63322,6 +63611,9 @@ export namespace Prisma {
|
|
|
63322
63611
|
vettingType?: EnumVettingTypeWithAggregatesFilter<"VettingProcess"> | $Enums.VettingType
|
|
63323
63612
|
preVettingFormNonce?: StringNullableWithAggregatesFilter<"VettingProcess"> | string | null
|
|
63324
63613
|
automationReason?: EnumVettingProcessAutomationReasonNullableWithAggregatesFilter<"VettingProcess"> | $Enums.VettingProcessAutomationReason | null
|
|
63614
|
+
categoryId?: StringNullableWithAggregatesFilter<"VettingProcess"> | string | null
|
|
63615
|
+
primaryRoleCategoryId?: StringNullableWithAggregatesFilter<"VettingProcess"> | string | null
|
|
63616
|
+
contactOwnerId?: StringNullableWithAggregatesFilter<"VettingProcess"> | string | null
|
|
63325
63617
|
publicId?: StringNullableWithAggregatesFilter<"VettingProcess"> | string | null
|
|
63326
63618
|
isNewEvaluationProcess?: BoolNullableWithAggregatesFilter<"VettingProcess"> | boolean | null
|
|
63327
63619
|
calComDailyMeetingId?: StringNullableWithAggregatesFilter<"VettingProcess"> | string | null
|
|
@@ -66712,6 +67004,7 @@ export namespace Prisma {
|
|
|
66712
67004
|
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
66713
67005
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryCreateNestedManyWithoutRoleCategoryInput
|
|
66714
67006
|
Experience?: ExperienceCreateNestedManyWithoutTalentSpecializationInput
|
|
67007
|
+
vettingProcesses?: VettingProcessCreateNestedManyWithoutPrimaryRoleCategoryInput
|
|
66715
67008
|
}
|
|
66716
67009
|
|
|
66717
67010
|
export type RoleCategoryUncheckedCreateInput = {
|
|
@@ -66723,6 +67016,7 @@ export namespace Prisma {
|
|
|
66723
67016
|
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
66724
67017
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUncheckedCreateNestedManyWithoutRoleCategoryInput
|
|
66725
67018
|
Experience?: ExperienceUncheckedCreateNestedManyWithoutTalentSpecializationInput
|
|
67019
|
+
vettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutPrimaryRoleCategoryInput
|
|
66726
67020
|
}
|
|
66727
67021
|
|
|
66728
67022
|
export type RoleCategoryUpdateInput = {
|
|
@@ -66733,6 +67027,7 @@ export namespace Prisma {
|
|
|
66733
67027
|
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
66734
67028
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUpdateManyWithoutRoleCategoryNestedInput
|
|
66735
67029
|
Experience?: ExperienceUpdateManyWithoutTalentSpecializationNestedInput
|
|
67030
|
+
vettingProcesses?: VettingProcessUpdateManyWithoutPrimaryRoleCategoryNestedInput
|
|
66736
67031
|
}
|
|
66737
67032
|
|
|
66738
67033
|
export type RoleCategoryUncheckedUpdateInput = {
|
|
@@ -66743,6 +67038,7 @@ export namespace Prisma {
|
|
|
66743
67038
|
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
66744
67039
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUncheckedUpdateManyWithoutRoleCategoryNestedInput
|
|
66745
67040
|
Experience?: ExperienceUncheckedUpdateManyWithoutTalentSpecializationNestedInput
|
|
67041
|
+
vettingProcesses?: VettingProcessUncheckedUpdateManyWithoutPrimaryRoleCategoryNestedInput
|
|
66746
67042
|
}
|
|
66747
67043
|
|
|
66748
67044
|
export type RoleCategoryCreateManyInput = {
|
|
@@ -67055,6 +67351,7 @@ export namespace Prisma {
|
|
|
67055
67351
|
isProgrammingLanguage?: boolean | null
|
|
67056
67352
|
isVettingEligible?: boolean | null
|
|
67057
67353
|
deletedAt?: Date | string | null
|
|
67354
|
+
vettingProcesses?: VettingProcessCreateNestedManyWithoutCategoryInput
|
|
67058
67355
|
}
|
|
67059
67356
|
|
|
67060
67357
|
export type TalentCategoryUncheckedCreateInput = {
|
|
@@ -67067,6 +67364,7 @@ export namespace Prisma {
|
|
|
67067
67364
|
isProgrammingLanguage?: boolean | null
|
|
67068
67365
|
isVettingEligible?: boolean | null
|
|
67069
67366
|
deletedAt?: Date | string | null
|
|
67367
|
+
vettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutCategoryInput
|
|
67070
67368
|
}
|
|
67071
67369
|
|
|
67072
67370
|
export type TalentCategoryUpdateInput = {
|
|
@@ -67078,6 +67376,7 @@ export namespace Prisma {
|
|
|
67078
67376
|
isProgrammingLanguage?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
67079
67377
|
isVettingEligible?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
67080
67378
|
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
67379
|
+
vettingProcesses?: VettingProcessUpdateManyWithoutCategoryNestedInput
|
|
67081
67380
|
}
|
|
67082
67381
|
|
|
67083
67382
|
export type TalentCategoryUncheckedUpdateInput = {
|
|
@@ -67089,6 +67388,7 @@ export namespace Prisma {
|
|
|
67089
67388
|
isProgrammingLanguage?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
67090
67389
|
isVettingEligible?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
67091
67390
|
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
67391
|
+
vettingProcesses?: VettingProcessUncheckedUpdateManyWithoutCategoryNestedInput
|
|
67092
67392
|
}
|
|
67093
67393
|
|
|
67094
67394
|
export type TalentCategoryCreateManyInput = {
|
|
@@ -67396,6 +67696,7 @@ export namespace Prisma {
|
|
|
67396
67696
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
67397
67697
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
67398
67698
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
67699
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
67399
67700
|
}
|
|
67400
67701
|
|
|
67401
67702
|
export type UserUncheckedCreateInput = {
|
|
@@ -67464,6 +67765,7 @@ export namespace Prisma {
|
|
|
67464
67765
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
67465
67766
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
67466
67767
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
67768
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
67467
67769
|
}
|
|
67468
67770
|
|
|
67469
67771
|
export type UserUpdateInput = {
|
|
@@ -67531,6 +67833,7 @@ export namespace Prisma {
|
|
|
67531
67833
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
67532
67834
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
67533
67835
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
67836
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
67534
67837
|
}
|
|
67535
67838
|
|
|
67536
67839
|
export type UserUncheckedUpdateInput = {
|
|
@@ -67598,6 +67901,7 @@ export namespace Prisma {
|
|
|
67598
67901
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
67599
67902
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
67600
67903
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
67904
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
67601
67905
|
}
|
|
67602
67906
|
|
|
67603
67907
|
export type UserCreateManyInput = {
|
|
@@ -68019,6 +68323,9 @@ export namespace Prisma {
|
|
|
68019
68323
|
updatedAt?: Date | string | null
|
|
68020
68324
|
user?: UserCreateNestedOneWithoutUserVettingProcessesInput
|
|
68021
68325
|
vetter?: UserCreateNestedOneWithoutVetterVettingProcessesInput
|
|
68326
|
+
category?: TalentCategoryCreateNestedOneWithoutVettingProcessesInput
|
|
68327
|
+
primaryRoleCategory?: RoleCategoryCreateNestedOneWithoutVettingProcessesInput
|
|
68328
|
+
contactOwner?: UserCreateNestedOneWithoutContactOwnerVettingProcessesInput
|
|
68022
68329
|
}
|
|
68023
68330
|
|
|
68024
68331
|
export type VettingProcessUncheckedCreateInput = {
|
|
@@ -68029,6 +68336,9 @@ export namespace Prisma {
|
|
|
68029
68336
|
vettingType: $Enums.VettingType
|
|
68030
68337
|
preVettingFormNonce?: string | null
|
|
68031
68338
|
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
68339
|
+
categoryId?: string | null
|
|
68340
|
+
primaryRoleCategoryId?: string | null
|
|
68341
|
+
contactOwnerId?: string | null
|
|
68032
68342
|
publicId?: string | null
|
|
68033
68343
|
isNewEvaluationProcess?: boolean | null
|
|
68034
68344
|
calComDailyMeetingId?: string | null
|
|
@@ -68060,6 +68370,9 @@ export namespace Prisma {
|
|
|
68060
68370
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
68061
68371
|
user?: UserUpdateOneWithoutUserVettingProcessesNestedInput
|
|
68062
68372
|
vetter?: UserUpdateOneWithoutVetterVettingProcessesNestedInput
|
|
68373
|
+
category?: TalentCategoryUpdateOneWithoutVettingProcessesNestedInput
|
|
68374
|
+
primaryRoleCategory?: RoleCategoryUpdateOneWithoutVettingProcessesNestedInput
|
|
68375
|
+
contactOwner?: UserUpdateOneWithoutContactOwnerVettingProcessesNestedInput
|
|
68063
68376
|
}
|
|
68064
68377
|
|
|
68065
68378
|
export type VettingProcessUncheckedUpdateInput = {
|
|
@@ -68069,6 +68382,9 @@ export namespace Prisma {
|
|
|
68069
68382
|
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
68070
68383
|
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
68071
68384
|
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
68385
|
+
categoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
68386
|
+
primaryRoleCategoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
68387
|
+
contactOwnerId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
68072
68388
|
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
68073
68389
|
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
68074
68390
|
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -68090,6 +68406,9 @@ export namespace Prisma {
|
|
|
68090
68406
|
vettingType: $Enums.VettingType
|
|
68091
68407
|
preVettingFormNonce?: string | null
|
|
68092
68408
|
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
68409
|
+
categoryId?: string | null
|
|
68410
|
+
primaryRoleCategoryId?: string | null
|
|
68411
|
+
contactOwnerId?: string | null
|
|
68093
68412
|
publicId?: string | null
|
|
68094
68413
|
isNewEvaluationProcess?: boolean | null
|
|
68095
68414
|
calComDailyMeetingId?: string | null
|
|
@@ -68128,6 +68447,9 @@ export namespace Prisma {
|
|
|
68128
68447
|
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
68129
68448
|
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
68130
68449
|
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
68450
|
+
categoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
68451
|
+
primaryRoleCategoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
68452
|
+
contactOwnerId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
68131
68453
|
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
68132
68454
|
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
68133
68455
|
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -71632,6 +71954,12 @@ export namespace Prisma {
|
|
|
71632
71954
|
none?: ExperienceWhereInput
|
|
71633
71955
|
}
|
|
71634
71956
|
|
|
71957
|
+
export type VettingProcessListRelationFilter = {
|
|
71958
|
+
every?: VettingProcessWhereInput
|
|
71959
|
+
some?: VettingProcessWhereInput
|
|
71960
|
+
none?: VettingProcessWhereInput
|
|
71961
|
+
}
|
|
71962
|
+
|
|
71635
71963
|
export type MapperRoleTitleToRoleCategoryOrderByRelationAggregateInput = {
|
|
71636
71964
|
_count?: SortOrder
|
|
71637
71965
|
}
|
|
@@ -71640,6 +71968,10 @@ export namespace Prisma {
|
|
|
71640
71968
|
_count?: SortOrder
|
|
71641
71969
|
}
|
|
71642
71970
|
|
|
71971
|
+
export type VettingProcessOrderByRelationAggregateInput = {
|
|
71972
|
+
_count?: SortOrder
|
|
71973
|
+
}
|
|
71974
|
+
|
|
71643
71975
|
export type RoleCategoryCountOrderByAggregateInput = {
|
|
71644
71976
|
id?: SortOrder
|
|
71645
71977
|
anchors?: SortOrder
|
|
@@ -72380,12 +72712,6 @@ export namespace Prisma {
|
|
|
72380
72712
|
none?: BuilderWebsitesDataWhereInput
|
|
72381
72713
|
}
|
|
72382
72714
|
|
|
72383
|
-
export type VettingProcessListRelationFilter = {
|
|
72384
|
-
every?: VettingProcessWhereInput
|
|
72385
|
-
some?: VettingProcessWhereInput
|
|
72386
|
-
none?: VettingProcessWhereInput
|
|
72387
|
-
}
|
|
72388
|
-
|
|
72389
72715
|
export type EvaluationProcessListRelationFilter = {
|
|
72390
72716
|
every?: EvaluationProcessWhereInput
|
|
72391
72717
|
some?: EvaluationProcessWhereInput
|
|
@@ -72511,10 +72837,6 @@ export namespace Prisma {
|
|
|
72511
72837
|
_count?: SortOrder
|
|
72512
72838
|
}
|
|
72513
72839
|
|
|
72514
|
-
export type VettingProcessOrderByRelationAggregateInput = {
|
|
72515
|
-
_count?: SortOrder
|
|
72516
|
-
}
|
|
72517
|
-
|
|
72518
72840
|
export type EvaluationProcessOrderByRelationAggregateInput = {
|
|
72519
72841
|
_count?: SortOrder
|
|
72520
72842
|
}
|
|
@@ -72877,6 +73199,11 @@ export namespace Prisma {
|
|
|
72877
73199
|
isSet?: boolean
|
|
72878
73200
|
}
|
|
72879
73201
|
|
|
73202
|
+
export type TalentCategoryNullableRelationFilter = {
|
|
73203
|
+
is?: TalentCategoryWhereInput | null
|
|
73204
|
+
isNot?: TalentCategoryWhereInput | null
|
|
73205
|
+
}
|
|
73206
|
+
|
|
72880
73207
|
export type VettingProcessCountOrderByAggregateInput = {
|
|
72881
73208
|
id?: SortOrder
|
|
72882
73209
|
userId?: SortOrder
|
|
@@ -72885,6 +73212,9 @@ export namespace Prisma {
|
|
|
72885
73212
|
vettingType?: SortOrder
|
|
72886
73213
|
preVettingFormNonce?: SortOrder
|
|
72887
73214
|
automationReason?: SortOrder
|
|
73215
|
+
categoryId?: SortOrder
|
|
73216
|
+
primaryRoleCategoryId?: SortOrder
|
|
73217
|
+
contactOwnerId?: SortOrder
|
|
72888
73218
|
publicId?: SortOrder
|
|
72889
73219
|
isNewEvaluationProcess?: SortOrder
|
|
72890
73220
|
calComDailyMeetingId?: SortOrder
|
|
@@ -72910,6 +73240,9 @@ export namespace Prisma {
|
|
|
72910
73240
|
vettingType?: SortOrder
|
|
72911
73241
|
preVettingFormNonce?: SortOrder
|
|
72912
73242
|
automationReason?: SortOrder
|
|
73243
|
+
categoryId?: SortOrder
|
|
73244
|
+
primaryRoleCategoryId?: SortOrder
|
|
73245
|
+
contactOwnerId?: SortOrder
|
|
72913
73246
|
publicId?: SortOrder
|
|
72914
73247
|
isNewEvaluationProcess?: SortOrder
|
|
72915
73248
|
calComDailyMeetingId?: SortOrder
|
|
@@ -72929,6 +73262,9 @@ export namespace Prisma {
|
|
|
72929
73262
|
vettingType?: SortOrder
|
|
72930
73263
|
preVettingFormNonce?: SortOrder
|
|
72931
73264
|
automationReason?: SortOrder
|
|
73265
|
+
categoryId?: SortOrder
|
|
73266
|
+
primaryRoleCategoryId?: SortOrder
|
|
73267
|
+
contactOwnerId?: SortOrder
|
|
72932
73268
|
publicId?: SortOrder
|
|
72933
73269
|
isNewEvaluationProcess?: SortOrder
|
|
72934
73270
|
calComDailyMeetingId?: SortOrder
|
|
@@ -75870,6 +76206,13 @@ export namespace Prisma {
|
|
|
75870
76206
|
connect?: ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[]
|
|
75871
76207
|
}
|
|
75872
76208
|
|
|
76209
|
+
export type VettingProcessCreateNestedManyWithoutPrimaryRoleCategoryInput = {
|
|
76210
|
+
create?: XOR<VettingProcessCreateWithoutPrimaryRoleCategoryInput, VettingProcessUncheckedCreateWithoutPrimaryRoleCategoryInput> | VettingProcessCreateWithoutPrimaryRoleCategoryInput[] | VettingProcessUncheckedCreateWithoutPrimaryRoleCategoryInput[]
|
|
76211
|
+
connectOrCreate?: VettingProcessCreateOrConnectWithoutPrimaryRoleCategoryInput | VettingProcessCreateOrConnectWithoutPrimaryRoleCategoryInput[]
|
|
76212
|
+
createMany?: VettingProcessCreateManyPrimaryRoleCategoryInputEnvelope
|
|
76213
|
+
connect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76214
|
+
}
|
|
76215
|
+
|
|
75873
76216
|
export type MapperRoleTitleToRoleCategoryUncheckedCreateNestedManyWithoutRoleCategoryInput = {
|
|
75874
76217
|
create?: XOR<MapperRoleTitleToRoleCategoryCreateWithoutRoleCategoryInput, MapperRoleTitleToRoleCategoryUncheckedCreateWithoutRoleCategoryInput> | MapperRoleTitleToRoleCategoryCreateWithoutRoleCategoryInput[] | MapperRoleTitleToRoleCategoryUncheckedCreateWithoutRoleCategoryInput[]
|
|
75875
76218
|
connectOrCreate?: MapperRoleTitleToRoleCategoryCreateOrConnectWithoutRoleCategoryInput | MapperRoleTitleToRoleCategoryCreateOrConnectWithoutRoleCategoryInput[]
|
|
@@ -75884,6 +76227,13 @@ export namespace Prisma {
|
|
|
75884
76227
|
connect?: ExperienceWhereUniqueInput | ExperienceWhereUniqueInput[]
|
|
75885
76228
|
}
|
|
75886
76229
|
|
|
76230
|
+
export type VettingProcessUncheckedCreateNestedManyWithoutPrimaryRoleCategoryInput = {
|
|
76231
|
+
create?: XOR<VettingProcessCreateWithoutPrimaryRoleCategoryInput, VettingProcessUncheckedCreateWithoutPrimaryRoleCategoryInput> | VettingProcessCreateWithoutPrimaryRoleCategoryInput[] | VettingProcessUncheckedCreateWithoutPrimaryRoleCategoryInput[]
|
|
76232
|
+
connectOrCreate?: VettingProcessCreateOrConnectWithoutPrimaryRoleCategoryInput | VettingProcessCreateOrConnectWithoutPrimaryRoleCategoryInput[]
|
|
76233
|
+
createMany?: VettingProcessCreateManyPrimaryRoleCategoryInputEnvelope
|
|
76234
|
+
connect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76235
|
+
}
|
|
76236
|
+
|
|
75887
76237
|
export type RoleCategoryUpdateanchorsInput = {
|
|
75888
76238
|
set?: string[]
|
|
75889
76239
|
push?: string | string[]
|
|
@@ -75922,6 +76272,20 @@ export namespace Prisma {
|
|
|
75922
76272
|
deleteMany?: ExperienceScalarWhereInput | ExperienceScalarWhereInput[]
|
|
75923
76273
|
}
|
|
75924
76274
|
|
|
76275
|
+
export type VettingProcessUpdateManyWithoutPrimaryRoleCategoryNestedInput = {
|
|
76276
|
+
create?: XOR<VettingProcessCreateWithoutPrimaryRoleCategoryInput, VettingProcessUncheckedCreateWithoutPrimaryRoleCategoryInput> | VettingProcessCreateWithoutPrimaryRoleCategoryInput[] | VettingProcessUncheckedCreateWithoutPrimaryRoleCategoryInput[]
|
|
76277
|
+
connectOrCreate?: VettingProcessCreateOrConnectWithoutPrimaryRoleCategoryInput | VettingProcessCreateOrConnectWithoutPrimaryRoleCategoryInput[]
|
|
76278
|
+
upsert?: VettingProcessUpsertWithWhereUniqueWithoutPrimaryRoleCategoryInput | VettingProcessUpsertWithWhereUniqueWithoutPrimaryRoleCategoryInput[]
|
|
76279
|
+
createMany?: VettingProcessCreateManyPrimaryRoleCategoryInputEnvelope
|
|
76280
|
+
set?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76281
|
+
disconnect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76282
|
+
delete?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76283
|
+
connect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76284
|
+
update?: VettingProcessUpdateWithWhereUniqueWithoutPrimaryRoleCategoryInput | VettingProcessUpdateWithWhereUniqueWithoutPrimaryRoleCategoryInput[]
|
|
76285
|
+
updateMany?: VettingProcessUpdateManyWithWhereWithoutPrimaryRoleCategoryInput | VettingProcessUpdateManyWithWhereWithoutPrimaryRoleCategoryInput[]
|
|
76286
|
+
deleteMany?: VettingProcessScalarWhereInput | VettingProcessScalarWhereInput[]
|
|
76287
|
+
}
|
|
76288
|
+
|
|
75925
76289
|
export type MapperRoleTitleToRoleCategoryUncheckedUpdateManyWithoutRoleCategoryNestedInput = {
|
|
75926
76290
|
create?: XOR<MapperRoleTitleToRoleCategoryCreateWithoutRoleCategoryInput, MapperRoleTitleToRoleCategoryUncheckedCreateWithoutRoleCategoryInput> | MapperRoleTitleToRoleCategoryCreateWithoutRoleCategoryInput[] | MapperRoleTitleToRoleCategoryUncheckedCreateWithoutRoleCategoryInput[]
|
|
75927
76291
|
connectOrCreate?: MapperRoleTitleToRoleCategoryCreateOrConnectWithoutRoleCategoryInput | MapperRoleTitleToRoleCategoryCreateOrConnectWithoutRoleCategoryInput[]
|
|
@@ -75950,6 +76314,20 @@ export namespace Prisma {
|
|
|
75950
76314
|
deleteMany?: ExperienceScalarWhereInput | ExperienceScalarWhereInput[]
|
|
75951
76315
|
}
|
|
75952
76316
|
|
|
76317
|
+
export type VettingProcessUncheckedUpdateManyWithoutPrimaryRoleCategoryNestedInput = {
|
|
76318
|
+
create?: XOR<VettingProcessCreateWithoutPrimaryRoleCategoryInput, VettingProcessUncheckedCreateWithoutPrimaryRoleCategoryInput> | VettingProcessCreateWithoutPrimaryRoleCategoryInput[] | VettingProcessUncheckedCreateWithoutPrimaryRoleCategoryInput[]
|
|
76319
|
+
connectOrCreate?: VettingProcessCreateOrConnectWithoutPrimaryRoleCategoryInput | VettingProcessCreateOrConnectWithoutPrimaryRoleCategoryInput[]
|
|
76320
|
+
upsert?: VettingProcessUpsertWithWhereUniqueWithoutPrimaryRoleCategoryInput | VettingProcessUpsertWithWhereUniqueWithoutPrimaryRoleCategoryInput[]
|
|
76321
|
+
createMany?: VettingProcessCreateManyPrimaryRoleCategoryInputEnvelope
|
|
76322
|
+
set?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76323
|
+
disconnect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76324
|
+
delete?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76325
|
+
connect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76326
|
+
update?: VettingProcessUpdateWithWhereUniqueWithoutPrimaryRoleCategoryInput | VettingProcessUpdateWithWhereUniqueWithoutPrimaryRoleCategoryInput[]
|
|
76327
|
+
updateMany?: VettingProcessUpdateManyWithWhereWithoutPrimaryRoleCategoryInput | VettingProcessUpdateManyWithWhereWithoutPrimaryRoleCategoryInput[]
|
|
76328
|
+
deleteMany?: VettingProcessScalarWhereInput | VettingProcessScalarWhereInput[]
|
|
76329
|
+
}
|
|
76330
|
+
|
|
75953
76331
|
export type RoleHiringCriteriaCreaterequiredSkillsInput = {
|
|
75954
76332
|
set: string[]
|
|
75955
76333
|
}
|
|
@@ -76068,6 +76446,20 @@ export namespace Prisma {
|
|
|
76068
76446
|
set: string[]
|
|
76069
76447
|
}
|
|
76070
76448
|
|
|
76449
|
+
export type VettingProcessCreateNestedManyWithoutCategoryInput = {
|
|
76450
|
+
create?: XOR<VettingProcessCreateWithoutCategoryInput, VettingProcessUncheckedCreateWithoutCategoryInput> | VettingProcessCreateWithoutCategoryInput[] | VettingProcessUncheckedCreateWithoutCategoryInput[]
|
|
76451
|
+
connectOrCreate?: VettingProcessCreateOrConnectWithoutCategoryInput | VettingProcessCreateOrConnectWithoutCategoryInput[]
|
|
76452
|
+
createMany?: VettingProcessCreateManyCategoryInputEnvelope
|
|
76453
|
+
connect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76454
|
+
}
|
|
76455
|
+
|
|
76456
|
+
export type VettingProcessUncheckedCreateNestedManyWithoutCategoryInput = {
|
|
76457
|
+
create?: XOR<VettingProcessCreateWithoutCategoryInput, VettingProcessUncheckedCreateWithoutCategoryInput> | VettingProcessCreateWithoutCategoryInput[] | VettingProcessUncheckedCreateWithoutCategoryInput[]
|
|
76458
|
+
connectOrCreate?: VettingProcessCreateOrConnectWithoutCategoryInput | VettingProcessCreateOrConnectWithoutCategoryInput[]
|
|
76459
|
+
createMany?: VettingProcessCreateManyCategoryInputEnvelope
|
|
76460
|
+
connect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76461
|
+
}
|
|
76462
|
+
|
|
76071
76463
|
export type TalentCategoryUpdateparentTalentCategoryIdsInput = {
|
|
76072
76464
|
set?: string[]
|
|
76073
76465
|
push?: string | string[]
|
|
@@ -76078,6 +76470,34 @@ export namespace Prisma {
|
|
|
76078
76470
|
push?: string | string[]
|
|
76079
76471
|
}
|
|
76080
76472
|
|
|
76473
|
+
export type VettingProcessUpdateManyWithoutCategoryNestedInput = {
|
|
76474
|
+
create?: XOR<VettingProcessCreateWithoutCategoryInput, VettingProcessUncheckedCreateWithoutCategoryInput> | VettingProcessCreateWithoutCategoryInput[] | VettingProcessUncheckedCreateWithoutCategoryInput[]
|
|
76475
|
+
connectOrCreate?: VettingProcessCreateOrConnectWithoutCategoryInput | VettingProcessCreateOrConnectWithoutCategoryInput[]
|
|
76476
|
+
upsert?: VettingProcessUpsertWithWhereUniqueWithoutCategoryInput | VettingProcessUpsertWithWhereUniqueWithoutCategoryInput[]
|
|
76477
|
+
createMany?: VettingProcessCreateManyCategoryInputEnvelope
|
|
76478
|
+
set?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76479
|
+
disconnect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76480
|
+
delete?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76481
|
+
connect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76482
|
+
update?: VettingProcessUpdateWithWhereUniqueWithoutCategoryInput | VettingProcessUpdateWithWhereUniqueWithoutCategoryInput[]
|
|
76483
|
+
updateMany?: VettingProcessUpdateManyWithWhereWithoutCategoryInput | VettingProcessUpdateManyWithWhereWithoutCategoryInput[]
|
|
76484
|
+
deleteMany?: VettingProcessScalarWhereInput | VettingProcessScalarWhereInput[]
|
|
76485
|
+
}
|
|
76486
|
+
|
|
76487
|
+
export type VettingProcessUncheckedUpdateManyWithoutCategoryNestedInput = {
|
|
76488
|
+
create?: XOR<VettingProcessCreateWithoutCategoryInput, VettingProcessUncheckedCreateWithoutCategoryInput> | VettingProcessCreateWithoutCategoryInput[] | VettingProcessUncheckedCreateWithoutCategoryInput[]
|
|
76489
|
+
connectOrCreate?: VettingProcessCreateOrConnectWithoutCategoryInput | VettingProcessCreateOrConnectWithoutCategoryInput[]
|
|
76490
|
+
upsert?: VettingProcessUpsertWithWhereUniqueWithoutCategoryInput | VettingProcessUpsertWithWhereUniqueWithoutCategoryInput[]
|
|
76491
|
+
createMany?: VettingProcessCreateManyCategoryInputEnvelope
|
|
76492
|
+
set?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76493
|
+
disconnect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76494
|
+
delete?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76495
|
+
connect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76496
|
+
update?: VettingProcessUpdateWithWhereUniqueWithoutCategoryInput | VettingProcessUpdateWithWhereUniqueWithoutCategoryInput[]
|
|
76497
|
+
updateMany?: VettingProcessUpdateManyWithWhereWithoutCategoryInput | VettingProcessUpdateManyWithWhereWithoutCategoryInput[]
|
|
76498
|
+
deleteMany?: VettingProcessScalarWhereInput | VettingProcessScalarWhereInput[]
|
|
76499
|
+
}
|
|
76500
|
+
|
|
76081
76501
|
export type MapperIndustryTitleToTalentIndustryCreateNestedManyWithoutTalentIndustryInput = {
|
|
76082
76502
|
create?: XOR<MapperIndustryTitleToTalentIndustryCreateWithoutTalentIndustryInput, MapperIndustryTitleToTalentIndustryUncheckedCreateWithoutTalentIndustryInput> | MapperIndustryTitleToTalentIndustryCreateWithoutTalentIndustryInput[] | MapperIndustryTitleToTalentIndustryUncheckedCreateWithoutTalentIndustryInput[]
|
|
76083
76503
|
connectOrCreate?: MapperIndustryTitleToTalentIndustryCreateOrConnectWithoutTalentIndustryInput | MapperIndustryTitleToTalentIndustryCreateOrConnectWithoutTalentIndustryInput[]
|
|
@@ -76494,6 +76914,13 @@ export namespace Prisma {
|
|
|
76494
76914
|
connect?: VetterWhereUniqueInput | VetterWhereUniqueInput[]
|
|
76495
76915
|
}
|
|
76496
76916
|
|
|
76917
|
+
export type VettingProcessCreateNestedManyWithoutContactOwnerInput = {
|
|
76918
|
+
create?: XOR<VettingProcessCreateWithoutContactOwnerInput, VettingProcessUncheckedCreateWithoutContactOwnerInput> | VettingProcessCreateWithoutContactOwnerInput[] | VettingProcessUncheckedCreateWithoutContactOwnerInput[]
|
|
76919
|
+
connectOrCreate?: VettingProcessCreateOrConnectWithoutContactOwnerInput | VettingProcessCreateOrConnectWithoutContactOwnerInput[]
|
|
76920
|
+
createMany?: VettingProcessCreateManyContactOwnerInputEnvelope
|
|
76921
|
+
connect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
76922
|
+
}
|
|
76923
|
+
|
|
76497
76924
|
export type MissionUncheckedCreateNestedManyWithoutCreatorModelInput = {
|
|
76498
76925
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
76499
76926
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -76674,6 +77101,13 @@ export namespace Prisma {
|
|
|
76674
77101
|
connect?: VetterWhereUniqueInput | VetterWhereUniqueInput[]
|
|
76675
77102
|
}
|
|
76676
77103
|
|
|
77104
|
+
export type VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput = {
|
|
77105
|
+
create?: XOR<VettingProcessCreateWithoutContactOwnerInput, VettingProcessUncheckedCreateWithoutContactOwnerInput> | VettingProcessCreateWithoutContactOwnerInput[] | VettingProcessUncheckedCreateWithoutContactOwnerInput[]
|
|
77106
|
+
connectOrCreate?: VettingProcessCreateOrConnectWithoutContactOwnerInput | VettingProcessCreateOrConnectWithoutContactOwnerInput[]
|
|
77107
|
+
createMany?: VettingProcessCreateManyContactOwnerInputEnvelope
|
|
77108
|
+
connect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
77109
|
+
}
|
|
77110
|
+
|
|
76677
77111
|
export type EnumUserStatusFieldUpdateOperationsInput = {
|
|
76678
77112
|
set?: $Enums.UserStatus
|
|
76679
77113
|
}
|
|
@@ -77158,6 +77592,20 @@ export namespace Prisma {
|
|
|
77158
77592
|
deleteMany?: VetterScalarWhereInput | VetterScalarWhereInput[]
|
|
77159
77593
|
}
|
|
77160
77594
|
|
|
77595
|
+
export type VettingProcessUpdateManyWithoutContactOwnerNestedInput = {
|
|
77596
|
+
create?: XOR<VettingProcessCreateWithoutContactOwnerInput, VettingProcessUncheckedCreateWithoutContactOwnerInput> | VettingProcessCreateWithoutContactOwnerInput[] | VettingProcessUncheckedCreateWithoutContactOwnerInput[]
|
|
77597
|
+
connectOrCreate?: VettingProcessCreateOrConnectWithoutContactOwnerInput | VettingProcessCreateOrConnectWithoutContactOwnerInput[]
|
|
77598
|
+
upsert?: VettingProcessUpsertWithWhereUniqueWithoutContactOwnerInput | VettingProcessUpsertWithWhereUniqueWithoutContactOwnerInput[]
|
|
77599
|
+
createMany?: VettingProcessCreateManyContactOwnerInputEnvelope
|
|
77600
|
+
set?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
77601
|
+
disconnect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
77602
|
+
delete?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
77603
|
+
connect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
77604
|
+
update?: VettingProcessUpdateWithWhereUniqueWithoutContactOwnerInput | VettingProcessUpdateWithWhereUniqueWithoutContactOwnerInput[]
|
|
77605
|
+
updateMany?: VettingProcessUpdateManyWithWhereWithoutContactOwnerInput | VettingProcessUpdateManyWithWhereWithoutContactOwnerInput[]
|
|
77606
|
+
deleteMany?: VettingProcessScalarWhereInput | VettingProcessScalarWhereInput[]
|
|
77607
|
+
}
|
|
77608
|
+
|
|
77161
77609
|
export type MissionUncheckedUpdateManyWithoutCreatorModelNestedInput = {
|
|
77162
77610
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
77163
77611
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -77514,6 +77962,20 @@ export namespace Prisma {
|
|
|
77514
77962
|
deleteMany?: VetterScalarWhereInput | VetterScalarWhereInput[]
|
|
77515
77963
|
}
|
|
77516
77964
|
|
|
77965
|
+
export type VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput = {
|
|
77966
|
+
create?: XOR<VettingProcessCreateWithoutContactOwnerInput, VettingProcessUncheckedCreateWithoutContactOwnerInput> | VettingProcessCreateWithoutContactOwnerInput[] | VettingProcessUncheckedCreateWithoutContactOwnerInput[]
|
|
77967
|
+
connectOrCreate?: VettingProcessCreateOrConnectWithoutContactOwnerInput | VettingProcessCreateOrConnectWithoutContactOwnerInput[]
|
|
77968
|
+
upsert?: VettingProcessUpsertWithWhereUniqueWithoutContactOwnerInput | VettingProcessUpsertWithWhereUniqueWithoutContactOwnerInput[]
|
|
77969
|
+
createMany?: VettingProcessCreateManyContactOwnerInputEnvelope
|
|
77970
|
+
set?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
77971
|
+
disconnect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
77972
|
+
delete?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
77973
|
+
connect?: VettingProcessWhereUniqueInput | VettingProcessWhereUniqueInput[]
|
|
77974
|
+
update?: VettingProcessUpdateWithWhereUniqueWithoutContactOwnerInput | VettingProcessUpdateWithWhereUniqueWithoutContactOwnerInput[]
|
|
77975
|
+
updateMany?: VettingProcessUpdateManyWithWhereWithoutContactOwnerInput | VettingProcessUpdateManyWithWhereWithoutContactOwnerInput[]
|
|
77976
|
+
deleteMany?: VettingProcessScalarWhereInput | VettingProcessScalarWhereInput[]
|
|
77977
|
+
}
|
|
77978
|
+
|
|
77517
77979
|
export type PreferencesCreateEnvelopeInput = {
|
|
77518
77980
|
set?: PreferencesCreateInput
|
|
77519
77981
|
}
|
|
@@ -77705,6 +78167,24 @@ export namespace Prisma {
|
|
|
77705
78167
|
connect?: UserWhereUniqueInput
|
|
77706
78168
|
}
|
|
77707
78169
|
|
|
78170
|
+
export type TalentCategoryCreateNestedOneWithoutVettingProcessesInput = {
|
|
78171
|
+
create?: XOR<TalentCategoryCreateWithoutVettingProcessesInput, TalentCategoryUncheckedCreateWithoutVettingProcessesInput>
|
|
78172
|
+
connectOrCreate?: TalentCategoryCreateOrConnectWithoutVettingProcessesInput
|
|
78173
|
+
connect?: TalentCategoryWhereUniqueInput
|
|
78174
|
+
}
|
|
78175
|
+
|
|
78176
|
+
export type RoleCategoryCreateNestedOneWithoutVettingProcessesInput = {
|
|
78177
|
+
create?: XOR<RoleCategoryCreateWithoutVettingProcessesInput, RoleCategoryUncheckedCreateWithoutVettingProcessesInput>
|
|
78178
|
+
connectOrCreate?: RoleCategoryCreateOrConnectWithoutVettingProcessesInput
|
|
78179
|
+
connect?: RoleCategoryWhereUniqueInput
|
|
78180
|
+
}
|
|
78181
|
+
|
|
78182
|
+
export type UserCreateNestedOneWithoutContactOwnerVettingProcessesInput = {
|
|
78183
|
+
create?: XOR<UserCreateWithoutContactOwnerVettingProcessesInput, UserUncheckedCreateWithoutContactOwnerVettingProcessesInput>
|
|
78184
|
+
connectOrCreate?: UserCreateOrConnectWithoutContactOwnerVettingProcessesInput
|
|
78185
|
+
connect?: UserWhereUniqueInput
|
|
78186
|
+
}
|
|
78187
|
+
|
|
77708
78188
|
export type EnumVettingProcessStatusFieldUpdateOperationsInput = {
|
|
77709
78189
|
set?: $Enums.VettingProcessStatus
|
|
77710
78190
|
}
|
|
@@ -77748,6 +78228,36 @@ export namespace Prisma {
|
|
|
77748
78228
|
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutVetterVettingProcessesInput, UserUpdateWithoutVetterVettingProcessesInput>, UserUncheckedUpdateWithoutVetterVettingProcessesInput>
|
|
77749
78229
|
}
|
|
77750
78230
|
|
|
78231
|
+
export type TalentCategoryUpdateOneWithoutVettingProcessesNestedInput = {
|
|
78232
|
+
create?: XOR<TalentCategoryCreateWithoutVettingProcessesInput, TalentCategoryUncheckedCreateWithoutVettingProcessesInput>
|
|
78233
|
+
connectOrCreate?: TalentCategoryCreateOrConnectWithoutVettingProcessesInput
|
|
78234
|
+
upsert?: TalentCategoryUpsertWithoutVettingProcessesInput
|
|
78235
|
+
disconnect?: boolean
|
|
78236
|
+
delete?: TalentCategoryWhereInput | boolean
|
|
78237
|
+
connect?: TalentCategoryWhereUniqueInput
|
|
78238
|
+
update?: XOR<XOR<TalentCategoryUpdateToOneWithWhereWithoutVettingProcessesInput, TalentCategoryUpdateWithoutVettingProcessesInput>, TalentCategoryUncheckedUpdateWithoutVettingProcessesInput>
|
|
78239
|
+
}
|
|
78240
|
+
|
|
78241
|
+
export type RoleCategoryUpdateOneWithoutVettingProcessesNestedInput = {
|
|
78242
|
+
create?: XOR<RoleCategoryCreateWithoutVettingProcessesInput, RoleCategoryUncheckedCreateWithoutVettingProcessesInput>
|
|
78243
|
+
connectOrCreate?: RoleCategoryCreateOrConnectWithoutVettingProcessesInput
|
|
78244
|
+
upsert?: RoleCategoryUpsertWithoutVettingProcessesInput
|
|
78245
|
+
disconnect?: boolean
|
|
78246
|
+
delete?: RoleCategoryWhereInput | boolean
|
|
78247
|
+
connect?: RoleCategoryWhereUniqueInput
|
|
78248
|
+
update?: XOR<XOR<RoleCategoryUpdateToOneWithWhereWithoutVettingProcessesInput, RoleCategoryUpdateWithoutVettingProcessesInput>, RoleCategoryUncheckedUpdateWithoutVettingProcessesInput>
|
|
78249
|
+
}
|
|
78250
|
+
|
|
78251
|
+
export type UserUpdateOneWithoutContactOwnerVettingProcessesNestedInput = {
|
|
78252
|
+
create?: XOR<UserCreateWithoutContactOwnerVettingProcessesInput, UserUncheckedCreateWithoutContactOwnerVettingProcessesInput>
|
|
78253
|
+
connectOrCreate?: UserCreateOrConnectWithoutContactOwnerVettingProcessesInput
|
|
78254
|
+
upsert?: UserUpsertWithoutContactOwnerVettingProcessesInput
|
|
78255
|
+
disconnect?: boolean
|
|
78256
|
+
delete?: UserWhereInput | boolean
|
|
78257
|
+
connect?: UserWhereUniqueInput
|
|
78258
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutContactOwnerVettingProcessesInput, UserUpdateWithoutContactOwnerVettingProcessesInput>, UserUncheckedUpdateWithoutContactOwnerVettingProcessesInput>
|
|
78259
|
+
}
|
|
78260
|
+
|
|
77751
78261
|
export type NestedStringFilter<$PrismaModel = never> = {
|
|
77752
78262
|
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
77753
78263
|
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
@@ -80855,6 +81365,7 @@ export namespace Prisma {
|
|
|
80855
81365
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
80856
81366
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
80857
81367
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
81368
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
80858
81369
|
}
|
|
80859
81370
|
|
|
80860
81371
|
export type UserUncheckedCreateWithoutBuilderWebsitesDataInput = {
|
|
@@ -80922,6 +81433,7 @@ export namespace Prisma {
|
|
|
80922
81433
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
80923
81434
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
80924
81435
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
81436
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
80925
81437
|
}
|
|
80926
81438
|
|
|
80927
81439
|
export type UserCreateOrConnectWithoutBuilderWebsitesDataInput = {
|
|
@@ -81004,6 +81516,7 @@ export namespace Prisma {
|
|
|
81004
81516
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
81005
81517
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
81006
81518
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
81519
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
81007
81520
|
}
|
|
81008
81521
|
|
|
81009
81522
|
export type UserUncheckedUpdateWithoutBuilderWebsitesDataInput = {
|
|
@@ -81070,6 +81583,7 @@ export namespace Prisma {
|
|
|
81070
81583
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
81071
81584
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
81072
81585
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
81586
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
81073
81587
|
}
|
|
81074
81588
|
|
|
81075
81589
|
export type UserCreateWithoutCalendarInput = {
|
|
@@ -81137,6 +81651,7 @@ export namespace Prisma {
|
|
|
81137
81651
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
81138
81652
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
81139
81653
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
81654
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
81140
81655
|
}
|
|
81141
81656
|
|
|
81142
81657
|
export type UserUncheckedCreateWithoutCalendarInput = {
|
|
@@ -81204,6 +81719,7 @@ export namespace Prisma {
|
|
|
81204
81719
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
81205
81720
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
81206
81721
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
81722
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
81207
81723
|
}
|
|
81208
81724
|
|
|
81209
81725
|
export type UserCreateOrConnectWithoutCalendarInput = {
|
|
@@ -81356,6 +81872,7 @@ export namespace Prisma {
|
|
|
81356
81872
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
81357
81873
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
81358
81874
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
81875
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
81359
81876
|
}
|
|
81360
81877
|
|
|
81361
81878
|
export type UserUncheckedUpdateWithoutCalendarInput = {
|
|
@@ -81422,6 +81939,7 @@ export namespace Prisma {
|
|
|
81422
81939
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
81423
81940
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
81424
81941
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
81942
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
81425
81943
|
}
|
|
81426
81944
|
|
|
81427
81945
|
export type CalendarEventUpsertWithWhereUniqueWithoutCalendarInput = {
|
|
@@ -81528,6 +82046,7 @@ export namespace Prisma {
|
|
|
81528
82046
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
81529
82047
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
81530
82048
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
82049
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
81531
82050
|
}
|
|
81532
82051
|
|
|
81533
82052
|
export type UserUncheckedCreateWithoutCalendarAvailabilityInput = {
|
|
@@ -81595,6 +82114,7 @@ export namespace Prisma {
|
|
|
81595
82114
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
81596
82115
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
81597
82116
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
82117
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
81598
82118
|
}
|
|
81599
82119
|
|
|
81600
82120
|
export type UserCreateOrConnectWithoutCalendarAvailabilityInput = {
|
|
@@ -81716,6 +82236,7 @@ export namespace Prisma {
|
|
|
81716
82236
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
81717
82237
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
81718
82238
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
82239
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
81719
82240
|
}
|
|
81720
82241
|
|
|
81721
82242
|
export type UserUncheckedUpdateWithoutCalendarAvailabilityInput = {
|
|
@@ -81782,6 +82303,7 @@ export namespace Prisma {
|
|
|
81782
82303
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
81783
82304
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
81784
82305
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
82306
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
81785
82307
|
}
|
|
81786
82308
|
|
|
81787
82309
|
export type CalendarEventTypeUpsertWithoutAvailabilitiesInput = {
|
|
@@ -81931,6 +82453,7 @@ export namespace Prisma {
|
|
|
81931
82453
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
81932
82454
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
81933
82455
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
82456
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
81934
82457
|
}
|
|
81935
82458
|
|
|
81936
82459
|
export type UserUncheckedCreateWithoutInterviewsInput = {
|
|
@@ -81998,6 +82521,7 @@ export namespace Prisma {
|
|
|
81998
82521
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
81999
82522
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
82000
82523
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
82524
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
82001
82525
|
}
|
|
82002
82526
|
|
|
82003
82527
|
export type UserCreateOrConnectWithoutInterviewsInput = {
|
|
@@ -82095,6 +82619,7 @@ export namespace Prisma {
|
|
|
82095
82619
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
82096
82620
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
82097
82621
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
82622
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
82098
82623
|
}
|
|
82099
82624
|
|
|
82100
82625
|
export type UserUncheckedCreateWithoutRescheduledInterviewsInput = {
|
|
@@ -82162,6 +82687,7 @@ export namespace Prisma {
|
|
|
82162
82687
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
82163
82688
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
82164
82689
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
82690
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
82165
82691
|
}
|
|
82166
82692
|
|
|
82167
82693
|
export type UserCreateOrConnectWithoutRescheduledInterviewsInput = {
|
|
@@ -82387,6 +82913,7 @@ export namespace Prisma {
|
|
|
82387
82913
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
82388
82914
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
82389
82915
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
82916
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
82390
82917
|
}
|
|
82391
82918
|
|
|
82392
82919
|
export type UserUncheckedUpdateWithoutInterviewsInput = {
|
|
@@ -82453,6 +82980,7 @@ export namespace Prisma {
|
|
|
82453
82980
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
82454
82981
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
82455
82982
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
82983
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
82456
82984
|
}
|
|
82457
82985
|
|
|
82458
82986
|
export type CalendarUpsertWithoutEventsInput = {
|
|
@@ -82559,6 +83087,7 @@ export namespace Prisma {
|
|
|
82559
83087
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
82560
83088
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
82561
83089
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
83090
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
82562
83091
|
}
|
|
82563
83092
|
|
|
82564
83093
|
export type UserUncheckedUpdateWithoutRescheduledInterviewsInput = {
|
|
@@ -82625,6 +83154,7 @@ export namespace Prisma {
|
|
|
82625
83154
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
82626
83155
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
82627
83156
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
83157
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
82628
83158
|
}
|
|
82629
83159
|
|
|
82630
83160
|
export type ClientInterviewUpsertWithoutCalendarEventInput = {
|
|
@@ -83163,6 +83693,7 @@ export namespace Prisma {
|
|
|
83163
83693
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
83164
83694
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
83165
83695
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
83696
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
83166
83697
|
}
|
|
83167
83698
|
|
|
83168
83699
|
export type UserUncheckedCreateWithoutClientInterviewsInput = {
|
|
@@ -83230,6 +83761,7 @@ export namespace Prisma {
|
|
|
83230
83761
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
83231
83762
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
83232
83763
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
83764
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
83233
83765
|
}
|
|
83234
83766
|
|
|
83235
83767
|
export type UserCreateOrConnectWithoutClientInterviewsInput = {
|
|
@@ -83302,6 +83834,7 @@ export namespace Prisma {
|
|
|
83302
83834
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
83303
83835
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
83304
83836
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
83837
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
83305
83838
|
}
|
|
83306
83839
|
|
|
83307
83840
|
export type UserUncheckedCreateWithoutBuilderInterviewsInput = {
|
|
@@ -83369,6 +83902,7 @@ export namespace Prisma {
|
|
|
83369
83902
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
83370
83903
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
83371
83904
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
83905
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
83372
83906
|
}
|
|
83373
83907
|
|
|
83374
83908
|
export type UserCreateOrConnectWithoutBuilderInterviewsInput = {
|
|
@@ -83639,6 +84173,7 @@ export namespace Prisma {
|
|
|
83639
84173
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
83640
84174
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
83641
84175
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
84176
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
83642
84177
|
}
|
|
83643
84178
|
|
|
83644
84179
|
export type UserUncheckedUpdateWithoutClientInterviewsInput = {
|
|
@@ -83705,6 +84240,7 @@ export namespace Prisma {
|
|
|
83705
84240
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
83706
84241
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
83707
84242
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
84243
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
83708
84244
|
}
|
|
83709
84245
|
|
|
83710
84246
|
export type UserUpsertWithoutBuilderInterviewsInput = {
|
|
@@ -83782,6 +84318,7 @@ export namespace Prisma {
|
|
|
83782
84318
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
83783
84319
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
83784
84320
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
84321
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
83785
84322
|
}
|
|
83786
84323
|
|
|
83787
84324
|
export type UserUncheckedUpdateWithoutBuilderInterviewsInput = {
|
|
@@ -83848,6 +84385,7 @@ export namespace Prisma {
|
|
|
83848
84385
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
83849
84386
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
83850
84387
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
84388
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
83851
84389
|
}
|
|
83852
84390
|
|
|
83853
84391
|
export type ProposalUpsertWithoutClientInterviewsInput = {
|
|
@@ -84286,6 +84824,7 @@ export namespace Prisma {
|
|
|
84286
84824
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
84287
84825
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
84288
84826
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
84827
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
84289
84828
|
}
|
|
84290
84829
|
|
|
84291
84830
|
export type UserUncheckedCreateWithoutBuilderContractsInput = {
|
|
@@ -84353,6 +84892,7 @@ export namespace Prisma {
|
|
|
84353
84892
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
84354
84893
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
84355
84894
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
84895
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
84356
84896
|
}
|
|
84357
84897
|
|
|
84358
84898
|
export type UserCreateOrConnectWithoutBuilderContractsInput = {
|
|
@@ -84603,6 +85143,7 @@ export namespace Prisma {
|
|
|
84603
85143
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
84604
85144
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
84605
85145
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
85146
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
84606
85147
|
}
|
|
84607
85148
|
|
|
84608
85149
|
export type UserUncheckedUpdateWithoutBuilderContractsInput = {
|
|
@@ -84669,6 +85210,7 @@ export namespace Prisma {
|
|
|
84669
85210
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
84670
85211
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
84671
85212
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
85213
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
84672
85214
|
}
|
|
84673
85215
|
|
|
84674
85216
|
export type UserCreateWithoutUserEvaluationProcessesInput = {
|
|
@@ -84736,6 +85278,7 @@ export namespace Prisma {
|
|
|
84736
85278
|
vetterVettingProcesses?: VettingProcessCreateNestedManyWithoutVetterInput
|
|
84737
85279
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
84738
85280
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
85281
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
84739
85282
|
}
|
|
84740
85283
|
|
|
84741
85284
|
export type UserUncheckedCreateWithoutUserEvaluationProcessesInput = {
|
|
@@ -84803,6 +85346,7 @@ export namespace Prisma {
|
|
|
84803
85346
|
vetterVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutVetterInput
|
|
84804
85347
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
84805
85348
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
85349
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
84806
85350
|
}
|
|
84807
85351
|
|
|
84808
85352
|
export type UserCreateOrConnectWithoutUserEvaluationProcessesInput = {
|
|
@@ -84875,6 +85419,7 @@ export namespace Prisma {
|
|
|
84875
85419
|
vetterVettingProcesses?: VettingProcessCreateNestedManyWithoutVetterInput
|
|
84876
85420
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
84877
85421
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
85422
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
84878
85423
|
}
|
|
84879
85424
|
|
|
84880
85425
|
export type UserUncheckedCreateWithoutEvaluatorEvaluationProcessesInput = {
|
|
@@ -84942,6 +85487,7 @@ export namespace Prisma {
|
|
|
84942
85487
|
vetterVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutVetterInput
|
|
84943
85488
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
84944
85489
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
85490
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
84945
85491
|
}
|
|
84946
85492
|
|
|
84947
85493
|
export type UserCreateOrConnectWithoutEvaluatorEvaluationProcessesInput = {
|
|
@@ -85024,6 +85570,7 @@ export namespace Prisma {
|
|
|
85024
85570
|
vetterVettingProcesses?: VettingProcessUpdateManyWithoutVetterNestedInput
|
|
85025
85571
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
85026
85572
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
85573
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
85027
85574
|
}
|
|
85028
85575
|
|
|
85029
85576
|
export type UserUncheckedUpdateWithoutUserEvaluationProcessesInput = {
|
|
@@ -85090,6 +85637,7 @@ export namespace Prisma {
|
|
|
85090
85637
|
vetterVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutVetterNestedInput
|
|
85091
85638
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
85092
85639
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
85640
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
85093
85641
|
}
|
|
85094
85642
|
|
|
85095
85643
|
export type UserUpsertWithoutEvaluatorEvaluationProcessesInput = {
|
|
@@ -85167,6 +85715,7 @@ export namespace Prisma {
|
|
|
85167
85715
|
vetterVettingProcesses?: VettingProcessUpdateManyWithoutVetterNestedInput
|
|
85168
85716
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
85169
85717
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
85718
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
85170
85719
|
}
|
|
85171
85720
|
|
|
85172
85721
|
export type UserUncheckedUpdateWithoutEvaluatorEvaluationProcessesInput = {
|
|
@@ -85233,6 +85782,7 @@ export namespace Prisma {
|
|
|
85233
85782
|
vetterVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutVetterNestedInput
|
|
85234
85783
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
85235
85784
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
85785
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
85236
85786
|
}
|
|
85237
85787
|
|
|
85238
85788
|
export type TokenUsageCreateInput = {
|
|
@@ -85270,6 +85820,7 @@ export namespace Prisma {
|
|
|
85270
85820
|
group?: string | null
|
|
85271
85821
|
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
85272
85822
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryCreateNestedManyWithoutRoleCategoryInput
|
|
85823
|
+
vettingProcesses?: VettingProcessCreateNestedManyWithoutPrimaryRoleCategoryInput
|
|
85273
85824
|
}
|
|
85274
85825
|
|
|
85275
85826
|
export type RoleCategoryUncheckedCreateWithoutExperienceInput = {
|
|
@@ -85280,6 +85831,7 @@ export namespace Prisma {
|
|
|
85280
85831
|
group?: string | null
|
|
85281
85832
|
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
85282
85833
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUncheckedCreateNestedManyWithoutRoleCategoryInput
|
|
85834
|
+
vettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutPrimaryRoleCategoryInput
|
|
85283
85835
|
}
|
|
85284
85836
|
|
|
85285
85837
|
export type RoleCategoryCreateOrConnectWithoutExperienceInput = {
|
|
@@ -85323,6 +85875,7 @@ export namespace Prisma {
|
|
|
85323
85875
|
group?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85324
85876
|
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
85325
85877
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUpdateManyWithoutRoleCategoryNestedInput
|
|
85878
|
+
vettingProcesses?: VettingProcessUpdateManyWithoutPrimaryRoleCategoryNestedInput
|
|
85326
85879
|
}
|
|
85327
85880
|
|
|
85328
85881
|
export type RoleCategoryUncheckedUpdateWithoutExperienceInput = {
|
|
@@ -85332,6 +85885,7 @@ export namespace Prisma {
|
|
|
85332
85885
|
group?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85333
85886
|
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
85334
85887
|
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUncheckedUpdateManyWithoutRoleCategoryNestedInput
|
|
85888
|
+
vettingProcesses?: VettingProcessUncheckedUpdateManyWithoutPrimaryRoleCategoryNestedInput
|
|
85335
85889
|
}
|
|
85336
85890
|
|
|
85337
85891
|
export type RelatedDatesUpdateInput = {
|
|
@@ -85415,6 +85969,7 @@ export namespace Prisma {
|
|
|
85415
85969
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
85416
85970
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
85417
85971
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
85972
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
85418
85973
|
}
|
|
85419
85974
|
|
|
85420
85975
|
export type UserUncheckedCreateWithoutLinkedInRecommendationsInput = {
|
|
@@ -85482,6 +86037,7 @@ export namespace Prisma {
|
|
|
85482
86037
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
85483
86038
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
85484
86039
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
86040
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
85485
86041
|
}
|
|
85486
86042
|
|
|
85487
86043
|
export type UserCreateOrConnectWithoutLinkedInRecommendationsInput = {
|
|
@@ -85577,6 +86133,7 @@ export namespace Prisma {
|
|
|
85577
86133
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
85578
86134
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
85579
86135
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
86136
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
85580
86137
|
}
|
|
85581
86138
|
|
|
85582
86139
|
export type UserUncheckedUpdateWithoutLinkedInRecommendationsInput = {
|
|
@@ -85643,6 +86200,7 @@ export namespace Prisma {
|
|
|
85643
86200
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
85644
86201
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
85645
86202
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
86203
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
85646
86204
|
}
|
|
85647
86205
|
|
|
85648
86206
|
export type TalentIndustryCreateWithoutMapperIndustryTitleToTalentIndustryInput = {
|
|
@@ -85695,6 +86253,7 @@ export namespace Prisma {
|
|
|
85695
86253
|
group?: string | null
|
|
85696
86254
|
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
85697
86255
|
Experience?: ExperienceCreateNestedManyWithoutTalentSpecializationInput
|
|
86256
|
+
vettingProcesses?: VettingProcessCreateNestedManyWithoutPrimaryRoleCategoryInput
|
|
85698
86257
|
}
|
|
85699
86258
|
|
|
85700
86259
|
export type RoleCategoryUncheckedCreateWithoutMappedRoleTitlesInput = {
|
|
@@ -85705,6 +86264,7 @@ export namespace Prisma {
|
|
|
85705
86264
|
group?: string | null
|
|
85706
86265
|
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
85707
86266
|
Experience?: ExperienceUncheckedCreateNestedManyWithoutTalentSpecializationInput
|
|
86267
|
+
vettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutPrimaryRoleCategoryInput
|
|
85708
86268
|
}
|
|
85709
86269
|
|
|
85710
86270
|
export type RoleCategoryCreateOrConnectWithoutMappedRoleTitlesInput = {
|
|
@@ -85730,6 +86290,7 @@ export namespace Prisma {
|
|
|
85730
86290
|
group?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85731
86291
|
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
85732
86292
|
Experience?: ExperienceUpdateManyWithoutTalentSpecializationNestedInput
|
|
86293
|
+
vettingProcesses?: VettingProcessUpdateManyWithoutPrimaryRoleCategoryNestedInput
|
|
85733
86294
|
}
|
|
85734
86295
|
|
|
85735
86296
|
export type RoleCategoryUncheckedUpdateWithoutMappedRoleTitlesInput = {
|
|
@@ -85739,6 +86300,7 @@ export namespace Prisma {
|
|
|
85739
86300
|
group?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85740
86301
|
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
85741
86302
|
Experience?: ExperienceUncheckedUpdateManyWithoutTalentSpecializationNestedInput
|
|
86303
|
+
vettingProcesses?: VettingProcessUncheckedUpdateManyWithoutPrimaryRoleCategoryNestedInput
|
|
85742
86304
|
}
|
|
85743
86305
|
|
|
85744
86306
|
export type MissionRoleAvailabilityCreateInput = {
|
|
@@ -85920,6 +86482,7 @@ export namespace Prisma {
|
|
|
85920
86482
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
85921
86483
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
85922
86484
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
86485
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
85923
86486
|
}
|
|
85924
86487
|
|
|
85925
86488
|
export type UserUncheckedCreateWithoutCreatedMissionsModelsInput = {
|
|
@@ -85987,6 +86550,7 @@ export namespace Prisma {
|
|
|
85987
86550
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
85988
86551
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
85989
86552
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
86553
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
85990
86554
|
}
|
|
85991
86555
|
|
|
85992
86556
|
export type UserCreateOrConnectWithoutCreatedMissionsModelsInput = {
|
|
@@ -86124,6 +86688,7 @@ export namespace Prisma {
|
|
|
86124
86688
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
86125
86689
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
86126
86690
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
86691
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
86127
86692
|
}
|
|
86128
86693
|
|
|
86129
86694
|
export type UserUncheckedCreateWithoutOwnedMissionsModelsInput = {
|
|
@@ -86191,6 +86756,7 @@ export namespace Prisma {
|
|
|
86191
86756
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
86192
86757
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
86193
86758
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
86759
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
86194
86760
|
}
|
|
86195
86761
|
|
|
86196
86762
|
export type UserCreateOrConnectWithoutOwnedMissionsModelsInput = {
|
|
@@ -86529,6 +87095,7 @@ export namespace Prisma {
|
|
|
86529
87095
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
86530
87096
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
86531
87097
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
87098
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
86532
87099
|
}
|
|
86533
87100
|
|
|
86534
87101
|
export type UserUncheckedUpdateWithoutCreatedMissionsModelsInput = {
|
|
@@ -86595,6 +87162,7 @@ export namespace Prisma {
|
|
|
86595
87162
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
86596
87163
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
86597
87164
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
87165
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
86598
87166
|
}
|
|
86599
87167
|
|
|
86600
87168
|
export type MissionSpecUpsertWithoutMissionInput = {
|
|
@@ -86741,6 +87309,7 @@ export namespace Prisma {
|
|
|
86741
87309
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
86742
87310
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
86743
87311
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
87312
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
86744
87313
|
}
|
|
86745
87314
|
|
|
86746
87315
|
export type UserUncheckedUpdateWithoutOwnedMissionsModelsInput = {
|
|
@@ -86807,6 +87376,7 @@ export namespace Prisma {
|
|
|
86807
87376
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
86808
87377
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
86809
87378
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
87379
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
86810
87380
|
}
|
|
86811
87381
|
|
|
86812
87382
|
export type ContractUpsertWithWhereUniqueWithoutMissionInput = {
|
|
@@ -86992,6 +87562,7 @@ export namespace Prisma {
|
|
|
86992
87562
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
86993
87563
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
86994
87564
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
87565
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
86995
87566
|
}
|
|
86996
87567
|
|
|
86997
87568
|
export type UserUncheckedCreateWithoutMissionApplicationInput = {
|
|
@@ -87059,6 +87630,7 @@ export namespace Prisma {
|
|
|
87059
87630
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
87060
87631
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
87061
87632
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
87633
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
87062
87634
|
}
|
|
87063
87635
|
|
|
87064
87636
|
export type UserCreateOrConnectWithoutMissionApplicationInput = {
|
|
@@ -87203,6 +87775,7 @@ export namespace Prisma {
|
|
|
87203
87775
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
87204
87776
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
87205
87777
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
87778
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
87206
87779
|
}
|
|
87207
87780
|
|
|
87208
87781
|
export type UserUncheckedUpdateWithoutMissionApplicationInput = {
|
|
@@ -87269,6 +87842,7 @@ export namespace Prisma {
|
|
|
87269
87842
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
87270
87843
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
87271
87844
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
87845
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
87272
87846
|
}
|
|
87273
87847
|
|
|
87274
87848
|
export type MissionPrefillRoleCreaterequiredSkillsInput = {
|
|
@@ -87344,6 +87918,7 @@ export namespace Prisma {
|
|
|
87344
87918
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
87345
87919
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
87346
87920
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
87921
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
87347
87922
|
}
|
|
87348
87923
|
|
|
87349
87924
|
export type UserUncheckedCreateWithoutMissionPrefillsInput = {
|
|
@@ -87411,6 +87986,7 @@ export namespace Prisma {
|
|
|
87411
87986
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
87412
87987
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
87413
87988
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
87989
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
87414
87990
|
}
|
|
87415
87991
|
|
|
87416
87992
|
export type UserCreateOrConnectWithoutMissionPrefillsInput = {
|
|
@@ -87502,6 +88078,7 @@ export namespace Prisma {
|
|
|
87502
88078
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
87503
88079
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
87504
88080
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
88081
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
87505
88082
|
}
|
|
87506
88083
|
|
|
87507
88084
|
export type UserUncheckedUpdateWithoutMissionPrefillsInput = {
|
|
@@ -87568,6 +88145,7 @@ export namespace Prisma {
|
|
|
87568
88145
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
87569
88146
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
87570
88147
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
88148
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
87571
88149
|
}
|
|
87572
88150
|
|
|
87573
88151
|
export type ClientRoleQuestionCreateInput = {
|
|
@@ -87691,6 +88269,7 @@ export namespace Prisma {
|
|
|
87691
88269
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
87692
88270
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
87693
88271
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
88272
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
87694
88273
|
}
|
|
87695
88274
|
|
|
87696
88275
|
export type UserUncheckedCreateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -87758,6 +88337,7 @@ export namespace Prisma {
|
|
|
87758
88337
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
87759
88338
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
87760
88339
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
88340
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
87761
88341
|
}
|
|
87762
88342
|
|
|
87763
88343
|
export type UserCreateOrConnectWithoutAuthoredMissionSpecsInput = {
|
|
@@ -87865,6 +88445,7 @@ export namespace Prisma {
|
|
|
87865
88445
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
87866
88446
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
87867
88447
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
88448
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
87868
88449
|
}
|
|
87869
88450
|
|
|
87870
88451
|
export type UserUncheckedCreateWithoutModifiedMissionSpecsInput = {
|
|
@@ -87932,6 +88513,7 @@ export namespace Prisma {
|
|
|
87932
88513
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
87933
88514
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
87934
88515
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
88516
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
87935
88517
|
}
|
|
87936
88518
|
|
|
87937
88519
|
export type UserCreateOrConnectWithoutModifiedMissionSpecsInput = {
|
|
@@ -88272,6 +88854,7 @@ export namespace Prisma {
|
|
|
88272
88854
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
88273
88855
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
88274
88856
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
88857
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
88275
88858
|
}
|
|
88276
88859
|
|
|
88277
88860
|
export type UserUncheckedUpdateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -88338,6 +88921,7 @@ export namespace Prisma {
|
|
|
88338
88921
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
88339
88922
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
88340
88923
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
88924
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
88341
88925
|
}
|
|
88342
88926
|
|
|
88343
88927
|
export type ClientCompanyUpsertWithoutMissionSpecsInput = {
|
|
@@ -88454,6 +89038,7 @@ export namespace Prisma {
|
|
|
88454
89038
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
88455
89039
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
88456
89040
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
89041
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
88457
89042
|
}
|
|
88458
89043
|
|
|
88459
89044
|
export type UserUncheckedUpdateWithoutModifiedMissionSpecsInput = {
|
|
@@ -88520,6 +89105,7 @@ export namespace Prisma {
|
|
|
88520
89105
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
88521
89106
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
88522
89107
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
89108
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
88523
89109
|
}
|
|
88524
89110
|
|
|
88525
89111
|
export type MissionUpsertWithoutMissionSpecInput = {
|
|
@@ -88784,6 +89370,7 @@ export namespace Prisma {
|
|
|
88784
89370
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
88785
89371
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
88786
89372
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
89373
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
88787
89374
|
}
|
|
88788
89375
|
|
|
88789
89376
|
export type UserUncheckedCreateWithoutAuthoredProposalsInput = {
|
|
@@ -88851,6 +89438,7 @@ export namespace Prisma {
|
|
|
88851
89438
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
88852
89439
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
88853
89440
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
89441
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
88854
89442
|
}
|
|
88855
89443
|
|
|
88856
89444
|
export type UserCreateOrConnectWithoutAuthoredProposalsInput = {
|
|
@@ -89030,6 +89618,7 @@ export namespace Prisma {
|
|
|
89030
89618
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
89031
89619
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
89032
89620
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
89621
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
89033
89622
|
}
|
|
89034
89623
|
|
|
89035
89624
|
export type UserUncheckedCreateWithoutSharedProposalsInput = {
|
|
@@ -89097,6 +89686,7 @@ export namespace Prisma {
|
|
|
89097
89686
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
89098
89687
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
89099
89688
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
89689
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
89100
89690
|
}
|
|
89101
89691
|
|
|
89102
89692
|
export type UserCreateOrConnectWithoutSharedProposalsInput = {
|
|
@@ -89234,6 +89824,7 @@ export namespace Prisma {
|
|
|
89234
89824
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
89235
89825
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
89236
89826
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
89827
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
89237
89828
|
}
|
|
89238
89829
|
|
|
89239
89830
|
export type UserUncheckedCreateWithoutProposalsAsTeamAdvisorInput = {
|
|
@@ -89301,6 +89892,7 @@ export namespace Prisma {
|
|
|
89301
89892
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
89302
89893
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
89303
89894
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
89895
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
89304
89896
|
}
|
|
89305
89897
|
|
|
89306
89898
|
export type UserCreateOrConnectWithoutProposalsAsTeamAdvisorInput = {
|
|
@@ -89482,6 +90074,7 @@ export namespace Prisma {
|
|
|
89482
90074
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
89483
90075
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
89484
90076
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
90077
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
89485
90078
|
}
|
|
89486
90079
|
|
|
89487
90080
|
export type UserUncheckedUpdateWithoutAuthoredProposalsInput = {
|
|
@@ -89548,6 +90141,7 @@ export namespace Prisma {
|
|
|
89548
90141
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
89549
90142
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
89550
90143
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
90144
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
89551
90145
|
}
|
|
89552
90146
|
|
|
89553
90147
|
export type MissionUpsertWithoutProposalsInput = {
|
|
@@ -89736,6 +90330,7 @@ export namespace Prisma {
|
|
|
89736
90330
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
89737
90331
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
89738
90332
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
90333
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
89739
90334
|
}
|
|
89740
90335
|
|
|
89741
90336
|
export type UserUncheckedUpdateWithoutSharedProposalsInput = {
|
|
@@ -89802,6 +90397,7 @@ export namespace Prisma {
|
|
|
89802
90397
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
89803
90398
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
89804
90399
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
90400
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
89805
90401
|
}
|
|
89806
90402
|
|
|
89807
90403
|
export type MissionSpecUpsertWithoutProposalsInput = {
|
|
@@ -89948,6 +90544,7 @@ export namespace Prisma {
|
|
|
89948
90544
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
89949
90545
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
89950
90546
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
90547
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
89951
90548
|
}
|
|
89952
90549
|
|
|
89953
90550
|
export type UserUncheckedUpdateWithoutProposalsAsTeamAdvisorInput = {
|
|
@@ -90014,6 +90611,7 @@ export namespace Prisma {
|
|
|
90014
90611
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
90015
90612
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
90016
90613
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
90614
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
90017
90615
|
}
|
|
90018
90616
|
|
|
90019
90617
|
export type ClientInterviewUpsertWithWhereUniqueWithoutProposalInput = {
|
|
@@ -90230,6 +90828,61 @@ export namespace Prisma {
|
|
|
90230
90828
|
data: ExperienceCreateManyTalentSpecializationInput | ExperienceCreateManyTalentSpecializationInput[]
|
|
90231
90829
|
}
|
|
90232
90830
|
|
|
90831
|
+
export type VettingProcessCreateWithoutPrimaryRoleCategoryInput = {
|
|
90832
|
+
id?: string
|
|
90833
|
+
status: $Enums.VettingProcessStatus
|
|
90834
|
+
vettingType: $Enums.VettingType
|
|
90835
|
+
preVettingFormNonce?: string | null
|
|
90836
|
+
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
90837
|
+
publicId?: string | null
|
|
90838
|
+
isNewEvaluationProcess?: boolean | null
|
|
90839
|
+
calComDailyMeetingId?: string | null
|
|
90840
|
+
transcriptJobIds?: VettingProcessCreatetranscriptJobIdsInput | string[]
|
|
90841
|
+
interviewDate?: Date | string | null
|
|
90842
|
+
calComBookingUid?: string | null
|
|
90843
|
+
calComBookingId?: number | null
|
|
90844
|
+
calendarEventId?: string | null
|
|
90845
|
+
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
90846
|
+
createdAt?: Date | string | null
|
|
90847
|
+
updatedAt?: Date | string | null
|
|
90848
|
+
user?: UserCreateNestedOneWithoutUserVettingProcessesInput
|
|
90849
|
+
vetter?: UserCreateNestedOneWithoutVetterVettingProcessesInput
|
|
90850
|
+
category?: TalentCategoryCreateNestedOneWithoutVettingProcessesInput
|
|
90851
|
+
contactOwner?: UserCreateNestedOneWithoutContactOwnerVettingProcessesInput
|
|
90852
|
+
}
|
|
90853
|
+
|
|
90854
|
+
export type VettingProcessUncheckedCreateWithoutPrimaryRoleCategoryInput = {
|
|
90855
|
+
id?: string
|
|
90856
|
+
userId?: string | null
|
|
90857
|
+
vetterId?: string | null
|
|
90858
|
+
status: $Enums.VettingProcessStatus
|
|
90859
|
+
vettingType: $Enums.VettingType
|
|
90860
|
+
preVettingFormNonce?: string | null
|
|
90861
|
+
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
90862
|
+
categoryId?: string | null
|
|
90863
|
+
contactOwnerId?: string | null
|
|
90864
|
+
publicId?: string | null
|
|
90865
|
+
isNewEvaluationProcess?: boolean | null
|
|
90866
|
+
calComDailyMeetingId?: string | null
|
|
90867
|
+
transcriptJobIds?: VettingProcessCreatetranscriptJobIdsInput | string[]
|
|
90868
|
+
interviewDate?: Date | string | null
|
|
90869
|
+
calComBookingUid?: string | null
|
|
90870
|
+
calComBookingId?: number | null
|
|
90871
|
+
calendarEventId?: string | null
|
|
90872
|
+
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
90873
|
+
createdAt?: Date | string | null
|
|
90874
|
+
updatedAt?: Date | string | null
|
|
90875
|
+
}
|
|
90876
|
+
|
|
90877
|
+
export type VettingProcessCreateOrConnectWithoutPrimaryRoleCategoryInput = {
|
|
90878
|
+
where: VettingProcessWhereUniqueInput
|
|
90879
|
+
create: XOR<VettingProcessCreateWithoutPrimaryRoleCategoryInput, VettingProcessUncheckedCreateWithoutPrimaryRoleCategoryInput>
|
|
90880
|
+
}
|
|
90881
|
+
|
|
90882
|
+
export type VettingProcessCreateManyPrimaryRoleCategoryInputEnvelope = {
|
|
90883
|
+
data: VettingProcessCreateManyPrimaryRoleCategoryInput | VettingProcessCreateManyPrimaryRoleCategoryInput[]
|
|
90884
|
+
}
|
|
90885
|
+
|
|
90233
90886
|
export type MapperRoleTitleToRoleCategoryUpsertWithWhereUniqueWithoutRoleCategoryInput = {
|
|
90234
90887
|
where: MapperRoleTitleToRoleCategoryWhereUniqueInput
|
|
90235
90888
|
update: XOR<MapperRoleTitleToRoleCategoryUpdateWithoutRoleCategoryInput, MapperRoleTitleToRoleCategoryUncheckedUpdateWithoutRoleCategoryInput>
|
|
@@ -90306,6 +90959,49 @@ export namespace Prisma {
|
|
|
90306
90959
|
migrations?: StringNullableListFilter<"Experience">
|
|
90307
90960
|
}
|
|
90308
90961
|
|
|
90962
|
+
export type VettingProcessUpsertWithWhereUniqueWithoutPrimaryRoleCategoryInput = {
|
|
90963
|
+
where: VettingProcessWhereUniqueInput
|
|
90964
|
+
update: XOR<VettingProcessUpdateWithoutPrimaryRoleCategoryInput, VettingProcessUncheckedUpdateWithoutPrimaryRoleCategoryInput>
|
|
90965
|
+
create: XOR<VettingProcessCreateWithoutPrimaryRoleCategoryInput, VettingProcessUncheckedCreateWithoutPrimaryRoleCategoryInput>
|
|
90966
|
+
}
|
|
90967
|
+
|
|
90968
|
+
export type VettingProcessUpdateWithWhereUniqueWithoutPrimaryRoleCategoryInput = {
|
|
90969
|
+
where: VettingProcessWhereUniqueInput
|
|
90970
|
+
data: XOR<VettingProcessUpdateWithoutPrimaryRoleCategoryInput, VettingProcessUncheckedUpdateWithoutPrimaryRoleCategoryInput>
|
|
90971
|
+
}
|
|
90972
|
+
|
|
90973
|
+
export type VettingProcessUpdateManyWithWhereWithoutPrimaryRoleCategoryInput = {
|
|
90974
|
+
where: VettingProcessScalarWhereInput
|
|
90975
|
+
data: XOR<VettingProcessUpdateManyMutationInput, VettingProcessUncheckedUpdateManyWithoutPrimaryRoleCategoryInput>
|
|
90976
|
+
}
|
|
90977
|
+
|
|
90978
|
+
export type VettingProcessScalarWhereInput = {
|
|
90979
|
+
AND?: VettingProcessScalarWhereInput | VettingProcessScalarWhereInput[]
|
|
90980
|
+
OR?: VettingProcessScalarWhereInput[]
|
|
90981
|
+
NOT?: VettingProcessScalarWhereInput | VettingProcessScalarWhereInput[]
|
|
90982
|
+
id?: StringFilter<"VettingProcess"> | string
|
|
90983
|
+
userId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
90984
|
+
vetterId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
90985
|
+
status?: EnumVettingProcessStatusFilter<"VettingProcess"> | $Enums.VettingProcessStatus
|
|
90986
|
+
vettingType?: EnumVettingTypeFilter<"VettingProcess"> | $Enums.VettingType
|
|
90987
|
+
preVettingFormNonce?: StringNullableFilter<"VettingProcess"> | string | null
|
|
90988
|
+
automationReason?: EnumVettingProcessAutomationReasonNullableFilter<"VettingProcess"> | $Enums.VettingProcessAutomationReason | null
|
|
90989
|
+
categoryId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
90990
|
+
primaryRoleCategoryId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
90991
|
+
contactOwnerId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
90992
|
+
publicId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
90993
|
+
isNewEvaluationProcess?: BoolNullableFilter<"VettingProcess"> | boolean | null
|
|
90994
|
+
calComDailyMeetingId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
90995
|
+
transcriptJobIds?: StringNullableListFilter<"VettingProcess">
|
|
90996
|
+
interviewDate?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
90997
|
+
calComBookingUid?: StringNullableFilter<"VettingProcess"> | string | null
|
|
90998
|
+
calComBookingId?: IntNullableFilter<"VettingProcess"> | number | null
|
|
90999
|
+
calendarEventId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
91000
|
+
migrations?: StringNullableListFilter<"VettingProcess">
|
|
91001
|
+
createdAt?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
91002
|
+
updatedAt?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
91003
|
+
}
|
|
91004
|
+
|
|
90309
91005
|
export type EvidencePointerCreateInput = {
|
|
90310
91006
|
sourceType: $Enums.EvidenceSourceType
|
|
90311
91007
|
sourceId: string
|
|
@@ -90385,6 +91081,77 @@ export namespace Prisma {
|
|
|
90385
91081
|
where: RoleWhereInput
|
|
90386
91082
|
}
|
|
90387
91083
|
|
|
91084
|
+
export type VettingProcessCreateWithoutCategoryInput = {
|
|
91085
|
+
id?: string
|
|
91086
|
+
status: $Enums.VettingProcessStatus
|
|
91087
|
+
vettingType: $Enums.VettingType
|
|
91088
|
+
preVettingFormNonce?: string | null
|
|
91089
|
+
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
91090
|
+
publicId?: string | null
|
|
91091
|
+
isNewEvaluationProcess?: boolean | null
|
|
91092
|
+
calComDailyMeetingId?: string | null
|
|
91093
|
+
transcriptJobIds?: VettingProcessCreatetranscriptJobIdsInput | string[]
|
|
91094
|
+
interviewDate?: Date | string | null
|
|
91095
|
+
calComBookingUid?: string | null
|
|
91096
|
+
calComBookingId?: number | null
|
|
91097
|
+
calendarEventId?: string | null
|
|
91098
|
+
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
91099
|
+
createdAt?: Date | string | null
|
|
91100
|
+
updatedAt?: Date | string | null
|
|
91101
|
+
user?: UserCreateNestedOneWithoutUserVettingProcessesInput
|
|
91102
|
+
vetter?: UserCreateNestedOneWithoutVetterVettingProcessesInput
|
|
91103
|
+
primaryRoleCategory?: RoleCategoryCreateNestedOneWithoutVettingProcessesInput
|
|
91104
|
+
contactOwner?: UserCreateNestedOneWithoutContactOwnerVettingProcessesInput
|
|
91105
|
+
}
|
|
91106
|
+
|
|
91107
|
+
export type VettingProcessUncheckedCreateWithoutCategoryInput = {
|
|
91108
|
+
id?: string
|
|
91109
|
+
userId?: string | null
|
|
91110
|
+
vetterId?: string | null
|
|
91111
|
+
status: $Enums.VettingProcessStatus
|
|
91112
|
+
vettingType: $Enums.VettingType
|
|
91113
|
+
preVettingFormNonce?: string | null
|
|
91114
|
+
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
91115
|
+
primaryRoleCategoryId?: string | null
|
|
91116
|
+
contactOwnerId?: string | null
|
|
91117
|
+
publicId?: string | null
|
|
91118
|
+
isNewEvaluationProcess?: boolean | null
|
|
91119
|
+
calComDailyMeetingId?: string | null
|
|
91120
|
+
transcriptJobIds?: VettingProcessCreatetranscriptJobIdsInput | string[]
|
|
91121
|
+
interviewDate?: Date | string | null
|
|
91122
|
+
calComBookingUid?: string | null
|
|
91123
|
+
calComBookingId?: number | null
|
|
91124
|
+
calendarEventId?: string | null
|
|
91125
|
+
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
91126
|
+
createdAt?: Date | string | null
|
|
91127
|
+
updatedAt?: Date | string | null
|
|
91128
|
+
}
|
|
91129
|
+
|
|
91130
|
+
export type VettingProcessCreateOrConnectWithoutCategoryInput = {
|
|
91131
|
+
where: VettingProcessWhereUniqueInput
|
|
91132
|
+
create: XOR<VettingProcessCreateWithoutCategoryInput, VettingProcessUncheckedCreateWithoutCategoryInput>
|
|
91133
|
+
}
|
|
91134
|
+
|
|
91135
|
+
export type VettingProcessCreateManyCategoryInputEnvelope = {
|
|
91136
|
+
data: VettingProcessCreateManyCategoryInput | VettingProcessCreateManyCategoryInput[]
|
|
91137
|
+
}
|
|
91138
|
+
|
|
91139
|
+
export type VettingProcessUpsertWithWhereUniqueWithoutCategoryInput = {
|
|
91140
|
+
where: VettingProcessWhereUniqueInput
|
|
91141
|
+
update: XOR<VettingProcessUpdateWithoutCategoryInput, VettingProcessUncheckedUpdateWithoutCategoryInput>
|
|
91142
|
+
create: XOR<VettingProcessCreateWithoutCategoryInput, VettingProcessUncheckedCreateWithoutCategoryInput>
|
|
91143
|
+
}
|
|
91144
|
+
|
|
91145
|
+
export type VettingProcessUpdateWithWhereUniqueWithoutCategoryInput = {
|
|
91146
|
+
where: VettingProcessWhereUniqueInput
|
|
91147
|
+
data: XOR<VettingProcessUpdateWithoutCategoryInput, VettingProcessUncheckedUpdateWithoutCategoryInput>
|
|
91148
|
+
}
|
|
91149
|
+
|
|
91150
|
+
export type VettingProcessUpdateManyWithWhereWithoutCategoryInput = {
|
|
91151
|
+
where: VettingProcessScalarWhereInput
|
|
91152
|
+
data: XOR<VettingProcessUpdateManyMutationInput, VettingProcessUncheckedUpdateManyWithoutCategoryInput>
|
|
91153
|
+
}
|
|
91154
|
+
|
|
90388
91155
|
export type MapperIndustryTitleToTalentIndustryCreateWithoutTalentIndustryInput = {
|
|
90389
91156
|
id?: string
|
|
90390
91157
|
industryTitle: string
|
|
@@ -91796,6 +92563,9 @@ export namespace Prisma {
|
|
|
91796
92563
|
createdAt?: Date | string | null
|
|
91797
92564
|
updatedAt?: Date | string | null
|
|
91798
92565
|
vetter?: UserCreateNestedOneWithoutVetterVettingProcessesInput
|
|
92566
|
+
category?: TalentCategoryCreateNestedOneWithoutVettingProcessesInput
|
|
92567
|
+
primaryRoleCategory?: RoleCategoryCreateNestedOneWithoutVettingProcessesInput
|
|
92568
|
+
contactOwner?: UserCreateNestedOneWithoutContactOwnerVettingProcessesInput
|
|
91799
92569
|
}
|
|
91800
92570
|
|
|
91801
92571
|
export type VettingProcessUncheckedCreateWithoutUserInput = {
|
|
@@ -91805,6 +92575,9 @@ export namespace Prisma {
|
|
|
91805
92575
|
vettingType: $Enums.VettingType
|
|
91806
92576
|
preVettingFormNonce?: string | null
|
|
91807
92577
|
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
92578
|
+
categoryId?: string | null
|
|
92579
|
+
primaryRoleCategoryId?: string | null
|
|
92580
|
+
contactOwnerId?: string | null
|
|
91808
92581
|
publicId?: string | null
|
|
91809
92582
|
isNewEvaluationProcess?: boolean | null
|
|
91810
92583
|
calComDailyMeetingId?: string | null
|
|
@@ -91845,6 +92618,9 @@ export namespace Prisma {
|
|
|
91845
92618
|
createdAt?: Date | string | null
|
|
91846
92619
|
updatedAt?: Date | string | null
|
|
91847
92620
|
user?: UserCreateNestedOneWithoutUserVettingProcessesInput
|
|
92621
|
+
category?: TalentCategoryCreateNestedOneWithoutVettingProcessesInput
|
|
92622
|
+
primaryRoleCategory?: RoleCategoryCreateNestedOneWithoutVettingProcessesInput
|
|
92623
|
+
contactOwner?: UserCreateNestedOneWithoutContactOwnerVettingProcessesInput
|
|
91848
92624
|
}
|
|
91849
92625
|
|
|
91850
92626
|
export type VettingProcessUncheckedCreateWithoutVetterInput = {
|
|
@@ -91854,6 +92630,9 @@ export namespace Prisma {
|
|
|
91854
92630
|
vettingType: $Enums.VettingType
|
|
91855
92631
|
preVettingFormNonce?: string | null
|
|
91856
92632
|
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
92633
|
+
categoryId?: string | null
|
|
92634
|
+
primaryRoleCategoryId?: string | null
|
|
92635
|
+
contactOwnerId?: string | null
|
|
91857
92636
|
publicId?: string | null
|
|
91858
92637
|
isNewEvaluationProcess?: boolean | null
|
|
91859
92638
|
calComDailyMeetingId?: string | null
|
|
@@ -91965,6 +92744,61 @@ export namespace Prisma {
|
|
|
91965
92744
|
data: VetterCreateManyUserModelInput | VetterCreateManyUserModelInput[]
|
|
91966
92745
|
}
|
|
91967
92746
|
|
|
92747
|
+
export type VettingProcessCreateWithoutContactOwnerInput = {
|
|
92748
|
+
id?: string
|
|
92749
|
+
status: $Enums.VettingProcessStatus
|
|
92750
|
+
vettingType: $Enums.VettingType
|
|
92751
|
+
preVettingFormNonce?: string | null
|
|
92752
|
+
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
92753
|
+
publicId?: string | null
|
|
92754
|
+
isNewEvaluationProcess?: boolean | null
|
|
92755
|
+
calComDailyMeetingId?: string | null
|
|
92756
|
+
transcriptJobIds?: VettingProcessCreatetranscriptJobIdsInput | string[]
|
|
92757
|
+
interviewDate?: Date | string | null
|
|
92758
|
+
calComBookingUid?: string | null
|
|
92759
|
+
calComBookingId?: number | null
|
|
92760
|
+
calendarEventId?: string | null
|
|
92761
|
+
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
92762
|
+
createdAt?: Date | string | null
|
|
92763
|
+
updatedAt?: Date | string | null
|
|
92764
|
+
user?: UserCreateNestedOneWithoutUserVettingProcessesInput
|
|
92765
|
+
vetter?: UserCreateNestedOneWithoutVetterVettingProcessesInput
|
|
92766
|
+
category?: TalentCategoryCreateNestedOneWithoutVettingProcessesInput
|
|
92767
|
+
primaryRoleCategory?: RoleCategoryCreateNestedOneWithoutVettingProcessesInput
|
|
92768
|
+
}
|
|
92769
|
+
|
|
92770
|
+
export type VettingProcessUncheckedCreateWithoutContactOwnerInput = {
|
|
92771
|
+
id?: string
|
|
92772
|
+
userId?: string | null
|
|
92773
|
+
vetterId?: string | null
|
|
92774
|
+
status: $Enums.VettingProcessStatus
|
|
92775
|
+
vettingType: $Enums.VettingType
|
|
92776
|
+
preVettingFormNonce?: string | null
|
|
92777
|
+
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
92778
|
+
categoryId?: string | null
|
|
92779
|
+
primaryRoleCategoryId?: string | null
|
|
92780
|
+
publicId?: string | null
|
|
92781
|
+
isNewEvaluationProcess?: boolean | null
|
|
92782
|
+
calComDailyMeetingId?: string | null
|
|
92783
|
+
transcriptJobIds?: VettingProcessCreatetranscriptJobIdsInput | string[]
|
|
92784
|
+
interviewDate?: Date | string | null
|
|
92785
|
+
calComBookingUid?: string | null
|
|
92786
|
+
calComBookingId?: number | null
|
|
92787
|
+
calendarEventId?: string | null
|
|
92788
|
+
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
92789
|
+
createdAt?: Date | string | null
|
|
92790
|
+
updatedAt?: Date | string | null
|
|
92791
|
+
}
|
|
92792
|
+
|
|
92793
|
+
export type VettingProcessCreateOrConnectWithoutContactOwnerInput = {
|
|
92794
|
+
where: VettingProcessWhereUniqueInput
|
|
92795
|
+
create: XOR<VettingProcessCreateWithoutContactOwnerInput, VettingProcessUncheckedCreateWithoutContactOwnerInput>
|
|
92796
|
+
}
|
|
92797
|
+
|
|
92798
|
+
export type VettingProcessCreateManyContactOwnerInputEnvelope = {
|
|
92799
|
+
data: VettingProcessCreateManyContactOwnerInput | VettingProcessCreateManyContactOwnerInput[]
|
|
92800
|
+
}
|
|
92801
|
+
|
|
91968
92802
|
export type ClientRegistrationUpsertInput = {
|
|
91969
92803
|
set: ClientRegistrationCreateInput | null
|
|
91970
92804
|
update: ClientRegistrationUpdateInput
|
|
@@ -92496,30 +93330,6 @@ export namespace Prisma {
|
|
|
92496
93330
|
data: XOR<VettingProcessUpdateManyMutationInput, VettingProcessUncheckedUpdateManyWithoutUserInput>
|
|
92497
93331
|
}
|
|
92498
93332
|
|
|
92499
|
-
export type VettingProcessScalarWhereInput = {
|
|
92500
|
-
AND?: VettingProcessScalarWhereInput | VettingProcessScalarWhereInput[]
|
|
92501
|
-
OR?: VettingProcessScalarWhereInput[]
|
|
92502
|
-
NOT?: VettingProcessScalarWhereInput | VettingProcessScalarWhereInput[]
|
|
92503
|
-
id?: StringFilter<"VettingProcess"> | string
|
|
92504
|
-
userId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
92505
|
-
vetterId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
92506
|
-
status?: EnumVettingProcessStatusFilter<"VettingProcess"> | $Enums.VettingProcessStatus
|
|
92507
|
-
vettingType?: EnumVettingTypeFilter<"VettingProcess"> | $Enums.VettingType
|
|
92508
|
-
preVettingFormNonce?: StringNullableFilter<"VettingProcess"> | string | null
|
|
92509
|
-
automationReason?: EnumVettingProcessAutomationReasonNullableFilter<"VettingProcess"> | $Enums.VettingProcessAutomationReason | null
|
|
92510
|
-
publicId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
92511
|
-
isNewEvaluationProcess?: BoolNullableFilter<"VettingProcess"> | boolean | null
|
|
92512
|
-
calComDailyMeetingId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
92513
|
-
transcriptJobIds?: StringNullableListFilter<"VettingProcess">
|
|
92514
|
-
interviewDate?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
92515
|
-
calComBookingUid?: StringNullableFilter<"VettingProcess"> | string | null
|
|
92516
|
-
calComBookingId?: IntNullableFilter<"VettingProcess"> | number | null
|
|
92517
|
-
calendarEventId?: StringNullableFilter<"VettingProcess"> | string | null
|
|
92518
|
-
migrations?: StringNullableListFilter<"VettingProcess">
|
|
92519
|
-
createdAt?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
92520
|
-
updatedAt?: DateTimeNullableFilter<"VettingProcess"> | Date | string | null
|
|
92521
|
-
}
|
|
92522
|
-
|
|
92523
93333
|
export type VettingProcessUpsertWithWhereUniqueWithoutVetterInput = {
|
|
92524
93334
|
where: VettingProcessWhereUniqueInput
|
|
92525
93335
|
update: XOR<VettingProcessUpdateWithoutVetterInput, VettingProcessUncheckedUpdateWithoutVetterInput>
|
|
@@ -92613,6 +93423,22 @@ export namespace Prisma {
|
|
|
92613
93423
|
updatedAt?: DateTimeNullableFilter<"Vetter"> | Date | string | null
|
|
92614
93424
|
}
|
|
92615
93425
|
|
|
93426
|
+
export type VettingProcessUpsertWithWhereUniqueWithoutContactOwnerInput = {
|
|
93427
|
+
where: VettingProcessWhereUniqueInput
|
|
93428
|
+
update: XOR<VettingProcessUpdateWithoutContactOwnerInput, VettingProcessUncheckedUpdateWithoutContactOwnerInput>
|
|
93429
|
+
create: XOR<VettingProcessCreateWithoutContactOwnerInput, VettingProcessUncheckedCreateWithoutContactOwnerInput>
|
|
93430
|
+
}
|
|
93431
|
+
|
|
93432
|
+
export type VettingProcessUpdateWithWhereUniqueWithoutContactOwnerInput = {
|
|
93433
|
+
where: VettingProcessWhereUniqueInput
|
|
93434
|
+
data: XOR<VettingProcessUpdateWithoutContactOwnerInput, VettingProcessUncheckedUpdateWithoutContactOwnerInput>
|
|
93435
|
+
}
|
|
93436
|
+
|
|
93437
|
+
export type VettingProcessUpdateManyWithWhereWithoutContactOwnerInput = {
|
|
93438
|
+
where: VettingProcessScalarWhereInput
|
|
93439
|
+
data: XOR<VettingProcessUpdateManyMutationInput, VettingProcessUncheckedUpdateManyWithoutContactOwnerInput>
|
|
93440
|
+
}
|
|
93441
|
+
|
|
92616
93442
|
export type BookingFrequencyCreateInput = {
|
|
92617
93443
|
perDay: number
|
|
92618
93444
|
perWeek: number
|
|
@@ -92683,6 +93509,7 @@ export namespace Prisma {
|
|
|
92683
93509
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
92684
93510
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
92685
93511
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
93512
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
92686
93513
|
}
|
|
92687
93514
|
|
|
92688
93515
|
export type UserUncheckedCreateWithoutPreferencesInput = {
|
|
@@ -92750,6 +93577,7 @@ export namespace Prisma {
|
|
|
92750
93577
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
92751
93578
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
92752
93579
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
93580
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
92753
93581
|
}
|
|
92754
93582
|
|
|
92755
93583
|
export type UserCreateOrConnectWithoutPreferencesInput = {
|
|
@@ -92841,6 +93669,7 @@ export namespace Prisma {
|
|
|
92841
93669
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
92842
93670
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
92843
93671
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
93672
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
92844
93673
|
}
|
|
92845
93674
|
|
|
92846
93675
|
export type UserUncheckedUpdateWithoutPreferencesInput = {
|
|
@@ -92907,6 +93736,7 @@ export namespace Prisma {
|
|
|
92907
93736
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
92908
93737
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
92909
93738
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
93739
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
92910
93740
|
}
|
|
92911
93741
|
|
|
92912
93742
|
export type AccountCreateWithoutUserReviewsInput = {
|
|
@@ -93013,6 +93843,7 @@ export namespace Prisma {
|
|
|
93013
93843
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
93014
93844
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
93015
93845
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
93846
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
93016
93847
|
}
|
|
93017
93848
|
|
|
93018
93849
|
export type UserUncheckedCreateWithoutGivenReviewsInput = {
|
|
@@ -93080,6 +93911,7 @@ export namespace Prisma {
|
|
|
93080
93911
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
93081
93912
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
93082
93913
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
93914
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
93083
93915
|
}
|
|
93084
93916
|
|
|
93085
93917
|
export type UserCreateOrConnectWithoutGivenReviewsInput = {
|
|
@@ -93152,6 +93984,7 @@ export namespace Prisma {
|
|
|
93152
93984
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
93153
93985
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
93154
93986
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
93987
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
93155
93988
|
}
|
|
93156
93989
|
|
|
93157
93990
|
export type UserUncheckedCreateWithoutReceivedReviewsInput = {
|
|
@@ -93219,6 +94052,7 @@ export namespace Prisma {
|
|
|
93219
94052
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
93220
94053
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
93221
94054
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
94055
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
93222
94056
|
}
|
|
93223
94057
|
|
|
93224
94058
|
export type UserCreateOrConnectWithoutReceivedReviewsInput = {
|
|
@@ -93461,6 +94295,7 @@ export namespace Prisma {
|
|
|
93461
94295
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
93462
94296
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
93463
94297
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
94298
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
93464
94299
|
}
|
|
93465
94300
|
|
|
93466
94301
|
export type UserUncheckedUpdateWithoutGivenReviewsInput = {
|
|
@@ -93527,6 +94362,7 @@ export namespace Prisma {
|
|
|
93527
94362
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
93528
94363
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
93529
94364
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
94365
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
93530
94366
|
}
|
|
93531
94367
|
|
|
93532
94368
|
export type UserUpsertWithoutReceivedReviewsInput = {
|
|
@@ -93604,6 +94440,7 @@ export namespace Prisma {
|
|
|
93604
94440
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
93605
94441
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
93606
94442
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
94443
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
93607
94444
|
}
|
|
93608
94445
|
|
|
93609
94446
|
export type UserUncheckedUpdateWithoutReceivedReviewsInput = {
|
|
@@ -93670,6 +94507,7 @@ export namespace Prisma {
|
|
|
93670
94507
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
93671
94508
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
93672
94509
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
94510
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
93673
94511
|
}
|
|
93674
94512
|
|
|
93675
94513
|
export type MissionUpsertWithoutUserReviewsInput = {
|
|
@@ -93848,6 +94686,7 @@ export namespace Prisma {
|
|
|
93848
94686
|
vetterVettingProcesses?: VettingProcessCreateNestedManyWithoutVetterInput
|
|
93849
94687
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
93850
94688
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
94689
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
93851
94690
|
}
|
|
93852
94691
|
|
|
93853
94692
|
export type UserUncheckedCreateWithoutVettersInput = {
|
|
@@ -93915,6 +94754,7 @@ export namespace Prisma {
|
|
|
93915
94754
|
vetterVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutVetterInput
|
|
93916
94755
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
93917
94756
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
94757
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
93918
94758
|
}
|
|
93919
94759
|
|
|
93920
94760
|
export type UserCreateOrConnectWithoutVettersInput = {
|
|
@@ -93997,6 +94837,7 @@ export namespace Prisma {
|
|
|
93997
94837
|
vetterVettingProcesses?: VettingProcessUpdateManyWithoutVetterNestedInput
|
|
93998
94838
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
93999
94839
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
94840
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
94000
94841
|
}
|
|
94001
94842
|
|
|
94002
94843
|
export type UserUncheckedUpdateWithoutVettersInput = {
|
|
@@ -94063,6 +94904,7 @@ export namespace Prisma {
|
|
|
94063
94904
|
vetterVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutVetterNestedInput
|
|
94064
94905
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
94065
94906
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
94907
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
94066
94908
|
}
|
|
94067
94909
|
|
|
94068
94910
|
export type UserCreateWithoutUserVettingProcessesInput = {
|
|
@@ -94130,6 +94972,7 @@ export namespace Prisma {
|
|
|
94130
94972
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
94131
94973
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
94132
94974
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
94975
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
94133
94976
|
}
|
|
94134
94977
|
|
|
94135
94978
|
export type UserUncheckedCreateWithoutUserVettingProcessesInput = {
|
|
@@ -94197,6 +95040,7 @@ export namespace Prisma {
|
|
|
94197
95040
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
94198
95041
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
94199
95042
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
95043
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
94200
95044
|
}
|
|
94201
95045
|
|
|
94202
95046
|
export type UserCreateOrConnectWithoutUserVettingProcessesInput = {
|
|
@@ -94269,6 +95113,7 @@ export namespace Prisma {
|
|
|
94269
95113
|
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
94270
95114
|
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
94271
95115
|
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
95116
|
+
contactOwnerVettingProcesses?: VettingProcessCreateNestedManyWithoutContactOwnerInput
|
|
94272
95117
|
}
|
|
94273
95118
|
|
|
94274
95119
|
export type UserUncheckedCreateWithoutVetterVettingProcessesInput = {
|
|
@@ -94336,6 +95181,7 @@ export namespace Prisma {
|
|
|
94336
95181
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
94337
95182
|
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
94338
95183
|
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
95184
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutContactOwnerInput
|
|
94339
95185
|
}
|
|
94340
95186
|
|
|
94341
95187
|
export type UserCreateOrConnectWithoutVetterVettingProcessesInput = {
|
|
@@ -94343,6 +95189,203 @@ export namespace Prisma {
|
|
|
94343
95189
|
create: XOR<UserCreateWithoutVetterVettingProcessesInput, UserUncheckedCreateWithoutVetterVettingProcessesInput>
|
|
94344
95190
|
}
|
|
94345
95191
|
|
|
95192
|
+
export type TalentCategoryCreateWithoutVettingProcessesInput = {
|
|
95193
|
+
id?: string
|
|
95194
|
+
textId: string
|
|
95195
|
+
name: string
|
|
95196
|
+
nodeType: string
|
|
95197
|
+
parentTalentCategoryIds?: TalentCategoryCreateparentTalentCategoryIdsInput | string[]
|
|
95198
|
+
aliases?: TalentCategoryCreatealiasesInput | string[]
|
|
95199
|
+
isProgrammingLanguage?: boolean | null
|
|
95200
|
+
isVettingEligible?: boolean | null
|
|
95201
|
+
deletedAt?: Date | string | null
|
|
95202
|
+
}
|
|
95203
|
+
|
|
95204
|
+
export type TalentCategoryUncheckedCreateWithoutVettingProcessesInput = {
|
|
95205
|
+
id?: string
|
|
95206
|
+
textId: string
|
|
95207
|
+
name: string
|
|
95208
|
+
nodeType: string
|
|
95209
|
+
parentTalentCategoryIds?: TalentCategoryCreateparentTalentCategoryIdsInput | string[]
|
|
95210
|
+
aliases?: TalentCategoryCreatealiasesInput | string[]
|
|
95211
|
+
isProgrammingLanguage?: boolean | null
|
|
95212
|
+
isVettingEligible?: boolean | null
|
|
95213
|
+
deletedAt?: Date | string | null
|
|
95214
|
+
}
|
|
95215
|
+
|
|
95216
|
+
export type TalentCategoryCreateOrConnectWithoutVettingProcessesInput = {
|
|
95217
|
+
where: TalentCategoryWhereUniqueInput
|
|
95218
|
+
create: XOR<TalentCategoryCreateWithoutVettingProcessesInput, TalentCategoryUncheckedCreateWithoutVettingProcessesInput>
|
|
95219
|
+
}
|
|
95220
|
+
|
|
95221
|
+
export type RoleCategoryCreateWithoutVettingProcessesInput = {
|
|
95222
|
+
id?: string
|
|
95223
|
+
anchors?: RoleCategoryCreateanchorsInput | string[]
|
|
95224
|
+
title: string
|
|
95225
|
+
deletedAt?: Date | string | null
|
|
95226
|
+
group?: string | null
|
|
95227
|
+
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
95228
|
+
mappedRoleTitles?: MapperRoleTitleToRoleCategoryCreateNestedManyWithoutRoleCategoryInput
|
|
95229
|
+
Experience?: ExperienceCreateNestedManyWithoutTalentSpecializationInput
|
|
95230
|
+
}
|
|
95231
|
+
|
|
95232
|
+
export type RoleCategoryUncheckedCreateWithoutVettingProcessesInput = {
|
|
95233
|
+
id?: string
|
|
95234
|
+
anchors?: RoleCategoryCreateanchorsInput | string[]
|
|
95235
|
+
title: string
|
|
95236
|
+
deletedAt?: Date | string | null
|
|
95237
|
+
group?: string | null
|
|
95238
|
+
talentCategoryIds?: RoleCategoryCreatetalentCategoryIdsInput | string[]
|
|
95239
|
+
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUncheckedCreateNestedManyWithoutRoleCategoryInput
|
|
95240
|
+
Experience?: ExperienceUncheckedCreateNestedManyWithoutTalentSpecializationInput
|
|
95241
|
+
}
|
|
95242
|
+
|
|
95243
|
+
export type RoleCategoryCreateOrConnectWithoutVettingProcessesInput = {
|
|
95244
|
+
where: RoleCategoryWhereUniqueInput
|
|
95245
|
+
create: XOR<RoleCategoryCreateWithoutVettingProcessesInput, RoleCategoryUncheckedCreateWithoutVettingProcessesInput>
|
|
95246
|
+
}
|
|
95247
|
+
|
|
95248
|
+
export type UserCreateWithoutContactOwnerVettingProcessesInput = {
|
|
95249
|
+
id?: string
|
|
95250
|
+
firstName?: string | null
|
|
95251
|
+
lastName?: string | null
|
|
95252
|
+
username?: string | null
|
|
95253
|
+
email: string
|
|
95254
|
+
displayEmail?: string | null
|
|
95255
|
+
isAdmin?: boolean
|
|
95256
|
+
type: string
|
|
95257
|
+
pictureURL?: string | null
|
|
95258
|
+
status: $Enums.UserStatus
|
|
95259
|
+
createdAt?: Date | string
|
|
95260
|
+
titles?: UserCreatetitlesInput | string[]
|
|
95261
|
+
scrubbed?: string | null
|
|
95262
|
+
tokenVersion: number
|
|
95263
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
95264
|
+
aboutMe?: string | null
|
|
95265
|
+
profileCompleteness?: XOR<ProfileCompletenessObjectNullableCreateEnvelopeInput, ProfileCompletenessObjectCreateInput> | null
|
|
95266
|
+
cvURL?: string | null
|
|
95267
|
+
linkedin?: XOR<LinkedInObjectNullableCreateEnvelopeInput, LinkedInObjectCreateInput> | null
|
|
95268
|
+
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
95269
|
+
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
95270
|
+
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
95271
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
95272
|
+
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
95273
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
95274
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
95275
|
+
yearsExperience?: number | null
|
|
95276
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
95277
|
+
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
95278
|
+
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
95279
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
95280
|
+
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
95281
|
+
isUsingSharedCalendar?: boolean
|
|
95282
|
+
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
95283
|
+
workingHours?: XOR<WorkingHoursNullableCreateEnvelopeInput, WorkingHoursCreateInput> | null
|
|
95284
|
+
acceptTOS?: XOR<AcceptTOSNullableCreateEnvelopeInput, AcceptTOSCreateInput> | null
|
|
95285
|
+
acceptTOSHistory?: XOR<AcceptTOSListCreateEnvelopeInput, AcceptTOSCreateInput> | AcceptTOSCreateInput[]
|
|
95286
|
+
portfolio?: XOR<UserPortfolioNullableCreateEnvelopeInput, UserPortfolioCreateInput> | null
|
|
95287
|
+
adminNotes?: XOR<AdminNotesObjectNullableCreateEnvelopeInput, AdminNotesObjectCreateInput> | null
|
|
95288
|
+
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
95289
|
+
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
95290
|
+
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
95291
|
+
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
95292
|
+
missionPrefills?: MissionPrefillCreateNestedManyWithoutUserInput
|
|
95293
|
+
missionApplication?: MissionApplicationCreateNestedManyWithoutUserModelInput
|
|
95294
|
+
authoredProposals?: ProposalCreateNestedManyWithoutCreatedByModelInput
|
|
95295
|
+
sharedProposals?: ProposalCreateNestedManyWithoutSharedByModelInput
|
|
95296
|
+
linkedInRecommendations?: LinkedInRecommendationCreateNestedManyWithoutUserInput
|
|
95297
|
+
givenReviews?: UserReviewCreateNestedManyWithoutFromUserModelInput
|
|
95298
|
+
receivedReviews?: UserReviewCreateNestedManyWithoutToUserModelInput
|
|
95299
|
+
calendar?: CalendarCreateNestedOneWithoutCalendarUserInput
|
|
95300
|
+
interviews?: CalendarEventCreateNestedManyWithoutEventOwnerInput
|
|
95301
|
+
calendarAvailability?: CalendarAvailabilityCreateNestedManyWithoutUserInput
|
|
95302
|
+
preferences?: UserPreferenceCreateNestedOneWithoutUserInput
|
|
95303
|
+
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
95304
|
+
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
95305
|
+
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
95306
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
95307
|
+
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
95308
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
95309
|
+
userVettingProcesses?: VettingProcessCreateNestedManyWithoutUserInput
|
|
95310
|
+
vetterVettingProcesses?: VettingProcessCreateNestedManyWithoutVetterInput
|
|
95311
|
+
evaluatorEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutEvaluatorInput
|
|
95312
|
+
userEvaluationProcesses?: EvaluationProcessCreateNestedManyWithoutUserInput
|
|
95313
|
+
vetters?: VetterCreateNestedManyWithoutUserModelInput
|
|
95314
|
+
}
|
|
95315
|
+
|
|
95316
|
+
export type UserUncheckedCreateWithoutContactOwnerVettingProcessesInput = {
|
|
95317
|
+
id?: string
|
|
95318
|
+
firstName?: string | null
|
|
95319
|
+
lastName?: string | null
|
|
95320
|
+
username?: string | null
|
|
95321
|
+
email: string
|
|
95322
|
+
displayEmail?: string | null
|
|
95323
|
+
isAdmin?: boolean
|
|
95324
|
+
type: string
|
|
95325
|
+
pictureURL?: string | null
|
|
95326
|
+
status: $Enums.UserStatus
|
|
95327
|
+
createdAt?: Date | string
|
|
95328
|
+
titles?: UserCreatetitlesInput | string[]
|
|
95329
|
+
scrubbed?: string | null
|
|
95330
|
+
tokenVersion: number
|
|
95331
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
95332
|
+
aboutMe?: string | null
|
|
95333
|
+
profileCompleteness?: XOR<ProfileCompletenessObjectNullableCreateEnvelopeInput, ProfileCompletenessObjectCreateInput> | null
|
|
95334
|
+
cvURL?: string | null
|
|
95335
|
+
linkedin?: XOR<LinkedInObjectNullableCreateEnvelopeInput, LinkedInObjectCreateInput> | null
|
|
95336
|
+
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
95337
|
+
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
95338
|
+
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
95339
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
95340
|
+
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
95341
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
95342
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
95343
|
+
yearsExperience?: number | null
|
|
95344
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
95345
|
+
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
95346
|
+
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
95347
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
95348
|
+
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
95349
|
+
isUsingSharedCalendar?: boolean
|
|
95350
|
+
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
95351
|
+
workingHours?: XOR<WorkingHoursNullableCreateEnvelopeInput, WorkingHoursCreateInput> | null
|
|
95352
|
+
acceptTOS?: XOR<AcceptTOSNullableCreateEnvelopeInput, AcceptTOSCreateInput> | null
|
|
95353
|
+
acceptTOSHistory?: XOR<AcceptTOSListCreateEnvelopeInput, AcceptTOSCreateInput> | AcceptTOSCreateInput[]
|
|
95354
|
+
portfolio?: XOR<UserPortfolioNullableCreateEnvelopeInput, UserPortfolioCreateInput> | null
|
|
95355
|
+
adminNotes?: XOR<AdminNotesObjectNullableCreateEnvelopeInput, AdminNotesObjectCreateInput> | null
|
|
95356
|
+
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
95357
|
+
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
95358
|
+
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
95359
|
+
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
95360
|
+
missionPrefills?: MissionPrefillUncheckedCreateNestedManyWithoutUserInput
|
|
95361
|
+
missionApplication?: MissionApplicationUncheckedCreateNestedManyWithoutUserModelInput
|
|
95362
|
+
authoredProposals?: ProposalUncheckedCreateNestedManyWithoutCreatedByModelInput
|
|
95363
|
+
sharedProposals?: ProposalUncheckedCreateNestedManyWithoutSharedByModelInput
|
|
95364
|
+
linkedInRecommendations?: LinkedInRecommendationUncheckedCreateNestedManyWithoutUserInput
|
|
95365
|
+
givenReviews?: UserReviewUncheckedCreateNestedManyWithoutFromUserModelInput
|
|
95366
|
+
receivedReviews?: UserReviewUncheckedCreateNestedManyWithoutToUserModelInput
|
|
95367
|
+
calendar?: CalendarUncheckedCreateNestedOneWithoutCalendarUserInput
|
|
95368
|
+
interviews?: CalendarEventUncheckedCreateNestedManyWithoutEventOwnerInput
|
|
95369
|
+
calendarAvailability?: CalendarAvailabilityUncheckedCreateNestedManyWithoutUserInput
|
|
95370
|
+
preferences?: UserPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
95371
|
+
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
95372
|
+
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
95373
|
+
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
95374
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
95375
|
+
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
95376
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
95377
|
+
userVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutUserInput
|
|
95378
|
+
vetterVettingProcesses?: VettingProcessUncheckedCreateNestedManyWithoutVetterInput
|
|
95379
|
+
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutEvaluatorInput
|
|
95380
|
+
userEvaluationProcesses?: EvaluationProcessUncheckedCreateNestedManyWithoutUserInput
|
|
95381
|
+
vetters?: VetterUncheckedCreateNestedManyWithoutUserModelInput
|
|
95382
|
+
}
|
|
95383
|
+
|
|
95384
|
+
export type UserCreateOrConnectWithoutContactOwnerVettingProcessesInput = {
|
|
95385
|
+
where: UserWhereUniqueInput
|
|
95386
|
+
create: XOR<UserCreateWithoutContactOwnerVettingProcessesInput, UserUncheckedCreateWithoutContactOwnerVettingProcessesInput>
|
|
95387
|
+
}
|
|
95388
|
+
|
|
94346
95389
|
export type UserUpsertWithoutUserVettingProcessesInput = {
|
|
94347
95390
|
update: XOR<UserUpdateWithoutUserVettingProcessesInput, UserUncheckedUpdateWithoutUserVettingProcessesInput>
|
|
94348
95391
|
create: XOR<UserCreateWithoutUserVettingProcessesInput, UserUncheckedCreateWithoutUserVettingProcessesInput>
|
|
@@ -94418,6 +95461,7 @@ export namespace Prisma {
|
|
|
94418
95461
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
94419
95462
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
94420
95463
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
95464
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
94421
95465
|
}
|
|
94422
95466
|
|
|
94423
95467
|
export type UserUncheckedUpdateWithoutUserVettingProcessesInput = {
|
|
@@ -94484,6 +95528,7 @@ export namespace Prisma {
|
|
|
94484
95528
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
94485
95529
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
94486
95530
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
95531
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
94487
95532
|
}
|
|
94488
95533
|
|
|
94489
95534
|
export type UserUpsertWithoutVetterVettingProcessesInput = {
|
|
@@ -94561,6 +95606,7 @@ export namespace Prisma {
|
|
|
94561
95606
|
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
94562
95607
|
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
94563
95608
|
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
95609
|
+
contactOwnerVettingProcesses?: VettingProcessUpdateManyWithoutContactOwnerNestedInput
|
|
94564
95610
|
}
|
|
94565
95611
|
|
|
94566
95612
|
export type UserUncheckedUpdateWithoutVetterVettingProcessesInput = {
|
|
@@ -94627,6 +95673,216 @@ export namespace Prisma {
|
|
|
94627
95673
|
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
94628
95674
|
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
94629
95675
|
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
95676
|
+
contactOwnerVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutContactOwnerNestedInput
|
|
95677
|
+
}
|
|
95678
|
+
|
|
95679
|
+
export type TalentCategoryUpsertWithoutVettingProcessesInput = {
|
|
95680
|
+
update: XOR<TalentCategoryUpdateWithoutVettingProcessesInput, TalentCategoryUncheckedUpdateWithoutVettingProcessesInput>
|
|
95681
|
+
create: XOR<TalentCategoryCreateWithoutVettingProcessesInput, TalentCategoryUncheckedCreateWithoutVettingProcessesInput>
|
|
95682
|
+
where?: TalentCategoryWhereInput
|
|
95683
|
+
}
|
|
95684
|
+
|
|
95685
|
+
export type TalentCategoryUpdateToOneWithWhereWithoutVettingProcessesInput = {
|
|
95686
|
+
where?: TalentCategoryWhereInput
|
|
95687
|
+
data: XOR<TalentCategoryUpdateWithoutVettingProcessesInput, TalentCategoryUncheckedUpdateWithoutVettingProcessesInput>
|
|
95688
|
+
}
|
|
95689
|
+
|
|
95690
|
+
export type TalentCategoryUpdateWithoutVettingProcessesInput = {
|
|
95691
|
+
textId?: StringFieldUpdateOperationsInput | string
|
|
95692
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
95693
|
+
nodeType?: StringFieldUpdateOperationsInput | string
|
|
95694
|
+
parentTalentCategoryIds?: TalentCategoryUpdateparentTalentCategoryIdsInput | string[]
|
|
95695
|
+
aliases?: TalentCategoryUpdatealiasesInput | string[]
|
|
95696
|
+
isProgrammingLanguage?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
95697
|
+
isVettingEligible?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
95698
|
+
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
95699
|
+
}
|
|
95700
|
+
|
|
95701
|
+
export type TalentCategoryUncheckedUpdateWithoutVettingProcessesInput = {
|
|
95702
|
+
textId?: StringFieldUpdateOperationsInput | string
|
|
95703
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
95704
|
+
nodeType?: StringFieldUpdateOperationsInput | string
|
|
95705
|
+
parentTalentCategoryIds?: TalentCategoryUpdateparentTalentCategoryIdsInput | string[]
|
|
95706
|
+
aliases?: TalentCategoryUpdatealiasesInput | string[]
|
|
95707
|
+
isProgrammingLanguage?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
95708
|
+
isVettingEligible?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
95709
|
+
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
95710
|
+
}
|
|
95711
|
+
|
|
95712
|
+
export type RoleCategoryUpsertWithoutVettingProcessesInput = {
|
|
95713
|
+
update: XOR<RoleCategoryUpdateWithoutVettingProcessesInput, RoleCategoryUncheckedUpdateWithoutVettingProcessesInput>
|
|
95714
|
+
create: XOR<RoleCategoryCreateWithoutVettingProcessesInput, RoleCategoryUncheckedCreateWithoutVettingProcessesInput>
|
|
95715
|
+
where?: RoleCategoryWhereInput
|
|
95716
|
+
}
|
|
95717
|
+
|
|
95718
|
+
export type RoleCategoryUpdateToOneWithWhereWithoutVettingProcessesInput = {
|
|
95719
|
+
where?: RoleCategoryWhereInput
|
|
95720
|
+
data: XOR<RoleCategoryUpdateWithoutVettingProcessesInput, RoleCategoryUncheckedUpdateWithoutVettingProcessesInput>
|
|
95721
|
+
}
|
|
95722
|
+
|
|
95723
|
+
export type RoleCategoryUpdateWithoutVettingProcessesInput = {
|
|
95724
|
+
anchors?: RoleCategoryUpdateanchorsInput | string[]
|
|
95725
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
95726
|
+
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
95727
|
+
group?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95728
|
+
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
95729
|
+
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUpdateManyWithoutRoleCategoryNestedInput
|
|
95730
|
+
Experience?: ExperienceUpdateManyWithoutTalentSpecializationNestedInput
|
|
95731
|
+
}
|
|
95732
|
+
|
|
95733
|
+
export type RoleCategoryUncheckedUpdateWithoutVettingProcessesInput = {
|
|
95734
|
+
anchors?: RoleCategoryUpdateanchorsInput | string[]
|
|
95735
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
95736
|
+
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
95737
|
+
group?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95738
|
+
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
95739
|
+
mappedRoleTitles?: MapperRoleTitleToRoleCategoryUncheckedUpdateManyWithoutRoleCategoryNestedInput
|
|
95740
|
+
Experience?: ExperienceUncheckedUpdateManyWithoutTalentSpecializationNestedInput
|
|
95741
|
+
}
|
|
95742
|
+
|
|
95743
|
+
export type UserUpsertWithoutContactOwnerVettingProcessesInput = {
|
|
95744
|
+
update: XOR<UserUpdateWithoutContactOwnerVettingProcessesInput, UserUncheckedUpdateWithoutContactOwnerVettingProcessesInput>
|
|
95745
|
+
create: XOR<UserCreateWithoutContactOwnerVettingProcessesInput, UserUncheckedCreateWithoutContactOwnerVettingProcessesInput>
|
|
95746
|
+
where?: UserWhereInput
|
|
95747
|
+
}
|
|
95748
|
+
|
|
95749
|
+
export type UserUpdateToOneWithWhereWithoutContactOwnerVettingProcessesInput = {
|
|
95750
|
+
where?: UserWhereInput
|
|
95751
|
+
data: XOR<UserUpdateWithoutContactOwnerVettingProcessesInput, UserUncheckedUpdateWithoutContactOwnerVettingProcessesInput>
|
|
95752
|
+
}
|
|
95753
|
+
|
|
95754
|
+
export type UserUpdateWithoutContactOwnerVettingProcessesInput = {
|
|
95755
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95756
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95757
|
+
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95758
|
+
email?: StringFieldUpdateOperationsInput | string
|
|
95759
|
+
displayEmail?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95760
|
+
isAdmin?: BoolFieldUpdateOperationsInput | boolean
|
|
95761
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
95762
|
+
pictureURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95763
|
+
status?: EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
95764
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95765
|
+
titles?: UserUpdatetitlesInput | string[]
|
|
95766
|
+
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95767
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
95768
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
95769
|
+
aboutMe?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95770
|
+
profileCompleteness?: XOR<ProfileCompletenessObjectNullableUpdateEnvelopeInput, ProfileCompletenessObjectCreateInput> | null
|
|
95771
|
+
cvURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95772
|
+
linkedin?: XOR<LinkedInObjectNullableUpdateEnvelopeInput, LinkedInObjectCreateInput> | null
|
|
95773
|
+
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
95774
|
+
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
95775
|
+
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
95776
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
95777
|
+
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
95778
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
95779
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
95780
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95781
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
95782
|
+
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
95783
|
+
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
95784
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
95785
|
+
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
95786
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
95787
|
+
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
95788
|
+
workingHours?: XOR<WorkingHoursNullableUpdateEnvelopeInput, WorkingHoursCreateInput> | null
|
|
95789
|
+
acceptTOS?: XOR<AcceptTOSNullableUpdateEnvelopeInput, AcceptTOSCreateInput> | null
|
|
95790
|
+
acceptTOSHistory?: XOR<AcceptTOSListUpdateEnvelopeInput, AcceptTOSCreateInput> | AcceptTOSCreateInput[]
|
|
95791
|
+
portfolio?: XOR<UserPortfolioNullableUpdateEnvelopeInput, UserPortfolioCreateInput> | null
|
|
95792
|
+
adminNotes?: XOR<AdminNotesObjectNullableUpdateEnvelopeInput, AdminNotesObjectCreateInput> | null
|
|
95793
|
+
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
95794
|
+
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
95795
|
+
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
95796
|
+
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
95797
|
+
missionPrefills?: MissionPrefillUpdateManyWithoutUserNestedInput
|
|
95798
|
+
missionApplication?: MissionApplicationUpdateManyWithoutUserModelNestedInput
|
|
95799
|
+
authoredProposals?: ProposalUpdateManyWithoutCreatedByModelNestedInput
|
|
95800
|
+
sharedProposals?: ProposalUpdateManyWithoutSharedByModelNestedInput
|
|
95801
|
+
linkedInRecommendations?: LinkedInRecommendationUpdateManyWithoutUserNestedInput
|
|
95802
|
+
givenReviews?: UserReviewUpdateManyWithoutFromUserModelNestedInput
|
|
95803
|
+
receivedReviews?: UserReviewUpdateManyWithoutToUserModelNestedInput
|
|
95804
|
+
calendar?: CalendarUpdateOneWithoutCalendarUserNestedInput
|
|
95805
|
+
interviews?: CalendarEventUpdateManyWithoutEventOwnerNestedInput
|
|
95806
|
+
calendarAvailability?: CalendarAvailabilityUpdateManyWithoutUserNestedInput
|
|
95807
|
+
preferences?: UserPreferenceUpdateOneWithoutUserNestedInput
|
|
95808
|
+
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
95809
|
+
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
95810
|
+
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
95811
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
95812
|
+
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
95813
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
95814
|
+
userVettingProcesses?: VettingProcessUpdateManyWithoutUserNestedInput
|
|
95815
|
+
vetterVettingProcesses?: VettingProcessUpdateManyWithoutVetterNestedInput
|
|
95816
|
+
evaluatorEvaluationProcesses?: EvaluationProcessUpdateManyWithoutEvaluatorNestedInput
|
|
95817
|
+
userEvaluationProcesses?: EvaluationProcessUpdateManyWithoutUserNestedInput
|
|
95818
|
+
vetters?: VetterUpdateManyWithoutUserModelNestedInput
|
|
95819
|
+
}
|
|
95820
|
+
|
|
95821
|
+
export type UserUncheckedUpdateWithoutContactOwnerVettingProcessesInput = {
|
|
95822
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95823
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95824
|
+
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95825
|
+
email?: StringFieldUpdateOperationsInput | string
|
|
95826
|
+
displayEmail?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95827
|
+
isAdmin?: BoolFieldUpdateOperationsInput | boolean
|
|
95828
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
95829
|
+
pictureURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95830
|
+
status?: EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
95831
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95832
|
+
titles?: UserUpdatetitlesInput | string[]
|
|
95833
|
+
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95834
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
95835
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
95836
|
+
aboutMe?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95837
|
+
profileCompleteness?: XOR<ProfileCompletenessObjectNullableUpdateEnvelopeInput, ProfileCompletenessObjectCreateInput> | null
|
|
95838
|
+
cvURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95839
|
+
linkedin?: XOR<LinkedInObjectNullableUpdateEnvelopeInput, LinkedInObjectCreateInput> | null
|
|
95840
|
+
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
95841
|
+
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
95842
|
+
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
95843
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
95844
|
+
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
95845
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
95846
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
95847
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95848
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
95849
|
+
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
95850
|
+
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
95851
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
95852
|
+
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
95853
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
95854
|
+
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
95855
|
+
workingHours?: XOR<WorkingHoursNullableUpdateEnvelopeInput, WorkingHoursCreateInput> | null
|
|
95856
|
+
acceptTOS?: XOR<AcceptTOSNullableUpdateEnvelopeInput, AcceptTOSCreateInput> | null
|
|
95857
|
+
acceptTOSHistory?: XOR<AcceptTOSListUpdateEnvelopeInput, AcceptTOSCreateInput> | AcceptTOSCreateInput[]
|
|
95858
|
+
portfolio?: XOR<UserPortfolioNullableUpdateEnvelopeInput, UserPortfolioCreateInput> | null
|
|
95859
|
+
adminNotes?: XOR<AdminNotesObjectNullableUpdateEnvelopeInput, AdminNotesObjectCreateInput> | null
|
|
95860
|
+
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
95861
|
+
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
95862
|
+
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
95863
|
+
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
95864
|
+
missionPrefills?: MissionPrefillUncheckedUpdateManyWithoutUserNestedInput
|
|
95865
|
+
missionApplication?: MissionApplicationUncheckedUpdateManyWithoutUserModelNestedInput
|
|
95866
|
+
authoredProposals?: ProposalUncheckedUpdateManyWithoutCreatedByModelNestedInput
|
|
95867
|
+
sharedProposals?: ProposalUncheckedUpdateManyWithoutSharedByModelNestedInput
|
|
95868
|
+
linkedInRecommendations?: LinkedInRecommendationUncheckedUpdateManyWithoutUserNestedInput
|
|
95869
|
+
givenReviews?: UserReviewUncheckedUpdateManyWithoutFromUserModelNestedInput
|
|
95870
|
+
receivedReviews?: UserReviewUncheckedUpdateManyWithoutToUserModelNestedInput
|
|
95871
|
+
calendar?: CalendarUncheckedUpdateOneWithoutCalendarUserNestedInput
|
|
95872
|
+
interviews?: CalendarEventUncheckedUpdateManyWithoutEventOwnerNestedInput
|
|
95873
|
+
calendarAvailability?: CalendarAvailabilityUncheckedUpdateManyWithoutUserNestedInput
|
|
95874
|
+
preferences?: UserPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
95875
|
+
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
95876
|
+
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
95877
|
+
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
95878
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
95879
|
+
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
95880
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
95881
|
+
userVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
95882
|
+
vetterVettingProcesses?: VettingProcessUncheckedUpdateManyWithoutVetterNestedInput
|
|
95883
|
+
evaluatorEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutEvaluatorNestedInput
|
|
95884
|
+
userEvaluationProcesses?: EvaluationProcessUncheckedUpdateManyWithoutUserNestedInput
|
|
95885
|
+
vetters?: VetterUncheckedUpdateManyWithoutUserModelNestedInput
|
|
94630
95886
|
}
|
|
94631
95887
|
|
|
94632
95888
|
export type BillingAccountBillingInfoAddressNullableCompositeFilter = {
|
|
@@ -97421,6 +98677,29 @@ export namespace Prisma {
|
|
|
97421
98677
|
members?: XOR<ExperienceMemberListCreateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
97422
98678
|
}
|
|
97423
98679
|
|
|
98680
|
+
export type VettingProcessCreateManyPrimaryRoleCategoryInput = {
|
|
98681
|
+
id?: string
|
|
98682
|
+
userId?: string | null
|
|
98683
|
+
vetterId?: string | null
|
|
98684
|
+
status: $Enums.VettingProcessStatus
|
|
98685
|
+
vettingType: $Enums.VettingType
|
|
98686
|
+
preVettingFormNonce?: string | null
|
|
98687
|
+
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
98688
|
+
categoryId?: string | null
|
|
98689
|
+
contactOwnerId?: string | null
|
|
98690
|
+
publicId?: string | null
|
|
98691
|
+
isNewEvaluationProcess?: boolean | null
|
|
98692
|
+
calComDailyMeetingId?: string | null
|
|
98693
|
+
transcriptJobIds?: VettingProcessCreatetranscriptJobIdsInput | string[]
|
|
98694
|
+
interviewDate?: Date | string | null
|
|
98695
|
+
calComBookingUid?: string | null
|
|
98696
|
+
calComBookingId?: number | null
|
|
98697
|
+
calendarEventId?: string | null
|
|
98698
|
+
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
98699
|
+
createdAt?: Date | string | null
|
|
98700
|
+
updatedAt?: Date | string | null
|
|
98701
|
+
}
|
|
98702
|
+
|
|
97424
98703
|
export type MapperRoleTitleToRoleCategoryUpdateWithoutRoleCategoryInput = {
|
|
97425
98704
|
roleTitle?: StringFieldUpdateOperationsInput | string
|
|
97426
98705
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -97469,64 +98748,130 @@ export namespace Prisma {
|
|
|
97469
98748
|
members?: XOR<ExperienceMemberListUpdateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
97470
98749
|
}
|
|
97471
98750
|
|
|
97472
|
-
export type ExperienceUncheckedUpdateWithoutTalentSpecializationInput = {
|
|
97473
|
-
kind?: EnumExperienceTypeFieldUpdateOperationsInput | $Enums.ExperienceType
|
|
97474
|
-
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97475
|
-
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97476
|
-
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97477
|
-
imageURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97478
|
-
imagesUrls?: ExperienceUpdateimagesUrlsInput | string[]
|
|
97479
|
-
logoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97480
|
-
websiteURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97481
|
-
jobRole?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97482
|
-
jobRoleId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97483
|
-
projectUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97484
|
-
industry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97485
|
-
industries?: ExperienceUpdateindustriesInput | string[]
|
|
97486
|
-
companyV2Id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97487
|
-
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97488
|
-
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
97489
|
-
endDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
97490
|
-
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97491
|
-
descriptionHTML?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97492
|
-
skills?: ExperienceUpdateskillsInput | string[]
|
|
97493
|
-
metrics?: XOR<MetricListUpdateEnvelopeInput, MetricCreateInput> | MetricCreateInput[]
|
|
97494
|
-
talentSkills?: ExperienceUpdatetalentSkillsInput | string[]
|
|
97495
|
-
isAutoImported?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98751
|
+
export type ExperienceUncheckedUpdateWithoutTalentSpecializationInput = {
|
|
98752
|
+
kind?: EnumExperienceTypeFieldUpdateOperationsInput | $Enums.ExperienceType
|
|
98753
|
+
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98754
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98755
|
+
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98756
|
+
imageURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98757
|
+
imagesUrls?: ExperienceUpdateimagesUrlsInput | string[]
|
|
98758
|
+
logoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98759
|
+
websiteURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98760
|
+
jobRole?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98761
|
+
jobRoleId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98762
|
+
projectUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98763
|
+
industry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98764
|
+
industries?: ExperienceUpdateindustriesInput | string[]
|
|
98765
|
+
companyV2Id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98766
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98767
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98768
|
+
endDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98769
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98770
|
+
descriptionHTML?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98771
|
+
skills?: ExperienceUpdateskillsInput | string[]
|
|
98772
|
+
metrics?: XOR<MetricListUpdateEnvelopeInput, MetricCreateInput> | MetricCreateInput[]
|
|
98773
|
+
talentSkills?: ExperienceUpdatetalentSkillsInput | string[]
|
|
98774
|
+
isAutoImported?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98775
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98776
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98777
|
+
migrations?: ExperienceUpdatemigrationsInput | string[]
|
|
98778
|
+
members?: XOR<ExperienceMemberListUpdateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
98779
|
+
}
|
|
98780
|
+
|
|
98781
|
+
export type ExperienceUncheckedUpdateManyWithoutTalentSpecializationInput = {
|
|
98782
|
+
kind?: EnumExperienceTypeFieldUpdateOperationsInput | $Enums.ExperienceType
|
|
98783
|
+
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98784
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98785
|
+
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98786
|
+
imageURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98787
|
+
imagesUrls?: ExperienceUpdateimagesUrlsInput | string[]
|
|
98788
|
+
logoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98789
|
+
websiteURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98790
|
+
jobRole?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98791
|
+
jobRoleId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98792
|
+
projectUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98793
|
+
industry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98794
|
+
industries?: ExperienceUpdateindustriesInput | string[]
|
|
98795
|
+
companyV2Id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98796
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98797
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98798
|
+
endDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98799
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98800
|
+
descriptionHTML?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98801
|
+
skills?: ExperienceUpdateskillsInput | string[]
|
|
98802
|
+
metrics?: XOR<MetricListUpdateEnvelopeInput, MetricCreateInput> | MetricCreateInput[]
|
|
98803
|
+
talentSkills?: ExperienceUpdatetalentSkillsInput | string[]
|
|
98804
|
+
isAutoImported?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98805
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98806
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98807
|
+
migrations?: ExperienceUpdatemigrationsInput | string[]
|
|
98808
|
+
members?: XOR<ExperienceMemberListUpdateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
98809
|
+
}
|
|
98810
|
+
|
|
98811
|
+
export type VettingProcessUpdateWithoutPrimaryRoleCategoryInput = {
|
|
98812
|
+
status?: EnumVettingProcessStatusFieldUpdateOperationsInput | $Enums.VettingProcessStatus
|
|
98813
|
+
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
98814
|
+
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98815
|
+
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
98816
|
+
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98817
|
+
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98818
|
+
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98819
|
+
transcriptJobIds?: VettingProcessUpdatetranscriptJobIdsInput | string[]
|
|
98820
|
+
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98821
|
+
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98822
|
+
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98823
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98824
|
+
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
97496
98825
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
97497
98826
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
97498
|
-
|
|
97499
|
-
|
|
98827
|
+
user?: UserUpdateOneWithoutUserVettingProcessesNestedInput
|
|
98828
|
+
vetter?: UserUpdateOneWithoutVetterVettingProcessesNestedInput
|
|
98829
|
+
category?: TalentCategoryUpdateOneWithoutVettingProcessesNestedInput
|
|
98830
|
+
contactOwner?: UserUpdateOneWithoutContactOwnerVettingProcessesNestedInput
|
|
97500
98831
|
}
|
|
97501
98832
|
|
|
97502
|
-
export type
|
|
97503
|
-
|
|
97504
|
-
|
|
97505
|
-
|
|
97506
|
-
|
|
97507
|
-
|
|
97508
|
-
|
|
97509
|
-
|
|
97510
|
-
|
|
97511
|
-
|
|
97512
|
-
|
|
97513
|
-
|
|
97514
|
-
|
|
97515
|
-
|
|
97516
|
-
|
|
97517
|
-
|
|
97518
|
-
|
|
97519
|
-
|
|
97520
|
-
|
|
97521
|
-
|
|
97522
|
-
|
|
97523
|
-
|
|
97524
|
-
|
|
97525
|
-
|
|
98833
|
+
export type VettingProcessUncheckedUpdateWithoutPrimaryRoleCategoryInput = {
|
|
98834
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98835
|
+
vetterId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98836
|
+
status?: EnumVettingProcessStatusFieldUpdateOperationsInput | $Enums.VettingProcessStatus
|
|
98837
|
+
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
98838
|
+
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98839
|
+
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
98840
|
+
categoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98841
|
+
contactOwnerId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98842
|
+
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98843
|
+
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98844
|
+
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98845
|
+
transcriptJobIds?: VettingProcessUpdatetranscriptJobIdsInput | string[]
|
|
98846
|
+
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98847
|
+
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98848
|
+
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98849
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98850
|
+
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
98851
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98852
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98853
|
+
}
|
|
98854
|
+
|
|
98855
|
+
export type VettingProcessUncheckedUpdateManyWithoutPrimaryRoleCategoryInput = {
|
|
98856
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98857
|
+
vetterId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98858
|
+
status?: EnumVettingProcessStatusFieldUpdateOperationsInput | $Enums.VettingProcessStatus
|
|
98859
|
+
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
98860
|
+
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98861
|
+
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
98862
|
+
categoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98863
|
+
contactOwnerId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98864
|
+
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98865
|
+
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98866
|
+
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98867
|
+
transcriptJobIds?: VettingProcessUpdatetranscriptJobIdsInput | string[]
|
|
98868
|
+
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98869
|
+
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98870
|
+
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98871
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98872
|
+
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
97526
98873
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
97527
98874
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
97528
|
-
migrations?: ExperienceUpdatemigrationsInput | string[]
|
|
97529
|
-
members?: XOR<ExperienceMemberListUpdateEnvelopeInput, ExperienceMemberCreateInput> | ExperienceMemberCreateInput[]
|
|
97530
98875
|
}
|
|
97531
98876
|
|
|
97532
98877
|
export type EvidenceLocatorCreateInput = {
|
|
@@ -97595,6 +98940,95 @@ export namespace Prisma {
|
|
|
97595
98940
|
category?: StringFieldUpdateOperationsInput | string
|
|
97596
98941
|
}
|
|
97597
98942
|
|
|
98943
|
+
export type VettingProcessCreateManyCategoryInput = {
|
|
98944
|
+
id?: string
|
|
98945
|
+
userId?: string | null
|
|
98946
|
+
vetterId?: string | null
|
|
98947
|
+
status: $Enums.VettingProcessStatus
|
|
98948
|
+
vettingType: $Enums.VettingType
|
|
98949
|
+
preVettingFormNonce?: string | null
|
|
98950
|
+
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
98951
|
+
primaryRoleCategoryId?: string | null
|
|
98952
|
+
contactOwnerId?: string | null
|
|
98953
|
+
publicId?: string | null
|
|
98954
|
+
isNewEvaluationProcess?: boolean | null
|
|
98955
|
+
calComDailyMeetingId?: string | null
|
|
98956
|
+
transcriptJobIds?: VettingProcessCreatetranscriptJobIdsInput | string[]
|
|
98957
|
+
interviewDate?: Date | string | null
|
|
98958
|
+
calComBookingUid?: string | null
|
|
98959
|
+
calComBookingId?: number | null
|
|
98960
|
+
calendarEventId?: string | null
|
|
98961
|
+
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
98962
|
+
createdAt?: Date | string | null
|
|
98963
|
+
updatedAt?: Date | string | null
|
|
98964
|
+
}
|
|
98965
|
+
|
|
98966
|
+
export type VettingProcessUpdateWithoutCategoryInput = {
|
|
98967
|
+
status?: EnumVettingProcessStatusFieldUpdateOperationsInput | $Enums.VettingProcessStatus
|
|
98968
|
+
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
98969
|
+
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98970
|
+
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
98971
|
+
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98972
|
+
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98973
|
+
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98974
|
+
transcriptJobIds?: VettingProcessUpdatetranscriptJobIdsInput | string[]
|
|
98975
|
+
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98976
|
+
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98977
|
+
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98978
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98979
|
+
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
98980
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98981
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98982
|
+
user?: UserUpdateOneWithoutUserVettingProcessesNestedInput
|
|
98983
|
+
vetter?: UserUpdateOneWithoutVetterVettingProcessesNestedInput
|
|
98984
|
+
primaryRoleCategory?: RoleCategoryUpdateOneWithoutVettingProcessesNestedInput
|
|
98985
|
+
contactOwner?: UserUpdateOneWithoutContactOwnerVettingProcessesNestedInput
|
|
98986
|
+
}
|
|
98987
|
+
|
|
98988
|
+
export type VettingProcessUncheckedUpdateWithoutCategoryInput = {
|
|
98989
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98990
|
+
vetterId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98991
|
+
status?: EnumVettingProcessStatusFieldUpdateOperationsInput | $Enums.VettingProcessStatus
|
|
98992
|
+
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
98993
|
+
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98994
|
+
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
98995
|
+
primaryRoleCategoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98996
|
+
contactOwnerId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98997
|
+
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98998
|
+
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98999
|
+
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99000
|
+
transcriptJobIds?: VettingProcessUpdatetranscriptJobIdsInput | string[]
|
|
99001
|
+
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
99002
|
+
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99003
|
+
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
99004
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99005
|
+
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
99006
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
99007
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
99008
|
+
}
|
|
99009
|
+
|
|
99010
|
+
export type VettingProcessUncheckedUpdateManyWithoutCategoryInput = {
|
|
99011
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99012
|
+
vetterId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99013
|
+
status?: EnumVettingProcessStatusFieldUpdateOperationsInput | $Enums.VettingProcessStatus
|
|
99014
|
+
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
99015
|
+
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99016
|
+
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
99017
|
+
primaryRoleCategoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99018
|
+
contactOwnerId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99019
|
+
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99020
|
+
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
99021
|
+
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99022
|
+
transcriptJobIds?: VettingProcessUpdatetranscriptJobIdsInput | string[]
|
|
99023
|
+
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
99024
|
+
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99025
|
+
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
99026
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99027
|
+
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
99028
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
99029
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
99030
|
+
}
|
|
99031
|
+
|
|
97598
99032
|
export type MapperIndustryTitleToTalentIndustryCreateManyTalentIndustryInput = {
|
|
97599
99033
|
id?: string
|
|
97600
99034
|
industryTitle: string
|
|
@@ -98131,6 +99565,9 @@ export namespace Prisma {
|
|
|
98131
99565
|
vettingType: $Enums.VettingType
|
|
98132
99566
|
preVettingFormNonce?: string | null
|
|
98133
99567
|
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
99568
|
+
categoryId?: string | null
|
|
99569
|
+
primaryRoleCategoryId?: string | null
|
|
99570
|
+
contactOwnerId?: string | null
|
|
98134
99571
|
publicId?: string | null
|
|
98135
99572
|
isNewEvaluationProcess?: boolean | null
|
|
98136
99573
|
calComDailyMeetingId?: string | null
|
|
@@ -98151,6 +99588,9 @@ export namespace Prisma {
|
|
|
98151
99588
|
vettingType: $Enums.VettingType
|
|
98152
99589
|
preVettingFormNonce?: string | null
|
|
98153
99590
|
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
99591
|
+
categoryId?: string | null
|
|
99592
|
+
primaryRoleCategoryId?: string | null
|
|
99593
|
+
contactOwnerId?: string | null
|
|
98154
99594
|
publicId?: string | null
|
|
98155
99595
|
isNewEvaluationProcess?: boolean | null
|
|
98156
99596
|
calComDailyMeetingId?: string | null
|
|
@@ -98195,6 +99635,29 @@ export namespace Prisma {
|
|
|
98195
99635
|
updatedAt?: Date | string | null
|
|
98196
99636
|
}
|
|
98197
99637
|
|
|
99638
|
+
export type VettingProcessCreateManyContactOwnerInput = {
|
|
99639
|
+
id?: string
|
|
99640
|
+
userId?: string | null
|
|
99641
|
+
vetterId?: string | null
|
|
99642
|
+
status: $Enums.VettingProcessStatus
|
|
99643
|
+
vettingType: $Enums.VettingType
|
|
99644
|
+
preVettingFormNonce?: string | null
|
|
99645
|
+
automationReason?: $Enums.VettingProcessAutomationReason | null
|
|
99646
|
+
categoryId?: string | null
|
|
99647
|
+
primaryRoleCategoryId?: string | null
|
|
99648
|
+
publicId?: string | null
|
|
99649
|
+
isNewEvaluationProcess?: boolean | null
|
|
99650
|
+
calComDailyMeetingId?: string | null
|
|
99651
|
+
transcriptJobIds?: VettingProcessCreatetranscriptJobIdsInput | string[]
|
|
99652
|
+
interviewDate?: Date | string | null
|
|
99653
|
+
calComBookingUid?: string | null
|
|
99654
|
+
calComBookingId?: number | null
|
|
99655
|
+
calendarEventId?: string | null
|
|
99656
|
+
migrations?: VettingProcessCreatemigrationsInput | string[]
|
|
99657
|
+
createdAt?: Date | string | null
|
|
99658
|
+
updatedAt?: Date | string | null
|
|
99659
|
+
}
|
|
99660
|
+
|
|
98198
99661
|
export type ClientRegistrationUpdateInput = {
|
|
98199
99662
|
emailVerified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
98200
99663
|
signupCompany?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -99754,6 +101217,9 @@ export namespace Prisma {
|
|
|
99754
101217
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
99755
101218
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
99756
101219
|
vetter?: UserUpdateOneWithoutVetterVettingProcessesNestedInput
|
|
101220
|
+
category?: TalentCategoryUpdateOneWithoutVettingProcessesNestedInput
|
|
101221
|
+
primaryRoleCategory?: RoleCategoryUpdateOneWithoutVettingProcessesNestedInput
|
|
101222
|
+
contactOwner?: UserUpdateOneWithoutContactOwnerVettingProcessesNestedInput
|
|
99757
101223
|
}
|
|
99758
101224
|
|
|
99759
101225
|
export type VettingProcessUncheckedUpdateWithoutUserInput = {
|
|
@@ -99762,6 +101228,9 @@ export namespace Prisma {
|
|
|
99762
101228
|
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
99763
101229
|
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99764
101230
|
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
101231
|
+
categoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101232
|
+
primaryRoleCategoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101233
|
+
contactOwnerId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99765
101234
|
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99766
101235
|
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
99767
101236
|
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -99781,6 +101250,9 @@ export namespace Prisma {
|
|
|
99781
101250
|
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
99782
101251
|
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99783
101252
|
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
101253
|
+
categoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101254
|
+
primaryRoleCategoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101255
|
+
contactOwnerId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99784
101256
|
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99785
101257
|
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
99786
101258
|
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -99811,6 +101283,9 @@ export namespace Prisma {
|
|
|
99811
101283
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
99812
101284
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
99813
101285
|
user?: UserUpdateOneWithoutUserVettingProcessesNestedInput
|
|
101286
|
+
category?: TalentCategoryUpdateOneWithoutVettingProcessesNestedInput
|
|
101287
|
+
primaryRoleCategory?: RoleCategoryUpdateOneWithoutVettingProcessesNestedInput
|
|
101288
|
+
contactOwner?: UserUpdateOneWithoutContactOwnerVettingProcessesNestedInput
|
|
99814
101289
|
}
|
|
99815
101290
|
|
|
99816
101291
|
export type VettingProcessUncheckedUpdateWithoutVetterInput = {
|
|
@@ -99819,6 +101294,9 @@ export namespace Prisma {
|
|
|
99819
101294
|
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
99820
101295
|
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99821
101296
|
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
101297
|
+
categoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101298
|
+
primaryRoleCategoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101299
|
+
contactOwnerId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99822
101300
|
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99823
101301
|
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
99824
101302
|
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -99838,6 +101316,9 @@ export namespace Prisma {
|
|
|
99838
101316
|
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
99839
101317
|
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99840
101318
|
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
101319
|
+
categoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101320
|
+
primaryRoleCategoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101321
|
+
contactOwnerId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99841
101322
|
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99842
101323
|
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
99843
101324
|
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -99935,6 +101416,72 @@ export namespace Prisma {
|
|
|
99935
101416
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
99936
101417
|
}
|
|
99937
101418
|
|
|
101419
|
+
export type VettingProcessUpdateWithoutContactOwnerInput = {
|
|
101420
|
+
status?: EnumVettingProcessStatusFieldUpdateOperationsInput | $Enums.VettingProcessStatus
|
|
101421
|
+
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
101422
|
+
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101423
|
+
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
101424
|
+
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101425
|
+
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
101426
|
+
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101427
|
+
transcriptJobIds?: VettingProcessUpdatetranscriptJobIdsInput | string[]
|
|
101428
|
+
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101429
|
+
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101430
|
+
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
101431
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101432
|
+
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
101433
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101434
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101435
|
+
user?: UserUpdateOneWithoutUserVettingProcessesNestedInput
|
|
101436
|
+
vetter?: UserUpdateOneWithoutVetterVettingProcessesNestedInput
|
|
101437
|
+
category?: TalentCategoryUpdateOneWithoutVettingProcessesNestedInput
|
|
101438
|
+
primaryRoleCategory?: RoleCategoryUpdateOneWithoutVettingProcessesNestedInput
|
|
101439
|
+
}
|
|
101440
|
+
|
|
101441
|
+
export type VettingProcessUncheckedUpdateWithoutContactOwnerInput = {
|
|
101442
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101443
|
+
vetterId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101444
|
+
status?: EnumVettingProcessStatusFieldUpdateOperationsInput | $Enums.VettingProcessStatus
|
|
101445
|
+
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
101446
|
+
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101447
|
+
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
101448
|
+
categoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101449
|
+
primaryRoleCategoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101450
|
+
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101451
|
+
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
101452
|
+
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101453
|
+
transcriptJobIds?: VettingProcessUpdatetranscriptJobIdsInput | string[]
|
|
101454
|
+
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101455
|
+
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101456
|
+
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
101457
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101458
|
+
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
101459
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101460
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101461
|
+
}
|
|
101462
|
+
|
|
101463
|
+
export type VettingProcessUncheckedUpdateManyWithoutContactOwnerInput = {
|
|
101464
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101465
|
+
vetterId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101466
|
+
status?: EnumVettingProcessStatusFieldUpdateOperationsInput | $Enums.VettingProcessStatus
|
|
101467
|
+
vettingType?: EnumVettingTypeFieldUpdateOperationsInput | $Enums.VettingType
|
|
101468
|
+
preVettingFormNonce?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101469
|
+
automationReason?: NullableEnumVettingProcessAutomationReasonFieldUpdateOperationsInput | $Enums.VettingProcessAutomationReason | null
|
|
101470
|
+
categoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101471
|
+
primaryRoleCategoryId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101472
|
+
publicId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101473
|
+
isNewEvaluationProcess?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
101474
|
+
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101475
|
+
transcriptJobIds?: VettingProcessUpdatetranscriptJobIdsInput | string[]
|
|
101476
|
+
interviewDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101477
|
+
calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101478
|
+
calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
101479
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101480
|
+
migrations?: VettingProcessUpdatemigrationsInput | string[]
|
|
101481
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101482
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101483
|
+
}
|
|
101484
|
+
|
|
99938
101485
|
export type BookingFrequencyNullableUpdateEnvelopeInput = {
|
|
99939
101486
|
set?: BookingFrequencyCreateInput | null
|
|
99940
101487
|
upsert?: BookingFrequencyUpsertInput
|
|
@@ -101787,6 +103334,10 @@ export namespace Prisma {
|
|
|
101787
103334
|
* @deprecated Use RoleCategoryCountOutputTypeDefaultArgs instead
|
|
101788
103335
|
*/
|
|
101789
103336
|
export type RoleCategoryCountOutputTypeArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = RoleCategoryCountOutputTypeDefaultArgs<ExtArgs>
|
|
103337
|
+
/**
|
|
103338
|
+
* @deprecated Use TalentCategoryCountOutputTypeDefaultArgs instead
|
|
103339
|
+
*/
|
|
103340
|
+
export type TalentCategoryCountOutputTypeArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = TalentCategoryCountOutputTypeDefaultArgs<ExtArgs>
|
|
101790
103341
|
/**
|
|
101791
103342
|
* @deprecated Use TalentIndustryCountOutputTypeDefaultArgs instead
|
|
101792
103343
|
*/
|