@a_team/prisma 3.15.3-macos-docker-linux → 3.16.0-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 +38 -4
- package/dist/client/index-browser.js +34 -0
- package/dist/client/index.d.ts +2620 -119
- package/dist/client/index.js +40 -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 +65 -0
- package/dist/client/wasm.js +34 -0
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -378,6 +378,16 @@ export type ProposalTfsPitch = $Result.DefaultSelection<Prisma.$ProposalTfsPitch
|
|
|
378
378
|
*
|
|
379
379
|
*/
|
|
380
380
|
export type CallParticipant = $Result.DefaultSelection<Prisma.$CallParticipantPayload>
|
|
381
|
+
/**
|
|
382
|
+
* Model CriteriaItem
|
|
383
|
+
*
|
|
384
|
+
*/
|
|
385
|
+
export type CriteriaItem = $Result.DefaultSelection<Prisma.$CriteriaItemPayload>
|
|
386
|
+
/**
|
|
387
|
+
* Model WeightedCriteriaItem
|
|
388
|
+
*
|
|
389
|
+
*/
|
|
390
|
+
export type WeightedCriteriaItem = $Result.DefaultSelection<Prisma.$WeightedCriteriaItemPayload>
|
|
381
391
|
/**
|
|
382
392
|
* Model Role
|
|
383
393
|
*
|
|
@@ -608,6 +618,11 @@ export type RecordedCall = $Result.DefaultSelection<Prisma.$RecordedCallPayload>
|
|
|
608
618
|
*
|
|
609
619
|
*/
|
|
610
620
|
export type RoleCategory = $Result.DefaultSelection<Prisma.$RoleCategoryPayload>
|
|
621
|
+
/**
|
|
622
|
+
* Model RoleHiringCriteria
|
|
623
|
+
*
|
|
624
|
+
*/
|
|
625
|
+
export type RoleHiringCriteria = $Result.DefaultSelection<Prisma.$RoleHiringCriteriaPayload>
|
|
611
626
|
/**
|
|
612
627
|
* Model Solution
|
|
613
628
|
*
|
|
@@ -1037,6 +1052,25 @@ export const ProposalCandidateRecommendation: {
|
|
|
1037
1052
|
export type ProposalCandidateRecommendation = (typeof ProposalCandidateRecommendation)[keyof typeof ProposalCandidateRecommendation]
|
|
1038
1053
|
|
|
1039
1054
|
|
|
1055
|
+
export const HiringCriteriaCategory: {
|
|
1056
|
+
skills: 'skills',
|
|
1057
|
+
communication: 'communication',
|
|
1058
|
+
culture: 'culture',
|
|
1059
|
+
experience: 'experience',
|
|
1060
|
+
other: 'other'
|
|
1061
|
+
};
|
|
1062
|
+
|
|
1063
|
+
export type HiringCriteriaCategory = (typeof HiringCriteriaCategory)[keyof typeof HiringCriteriaCategory]
|
|
1064
|
+
|
|
1065
|
+
|
|
1066
|
+
export const CriteriaItemType: {
|
|
1067
|
+
generated: 'generated',
|
|
1068
|
+
manual: 'manual'
|
|
1069
|
+
};
|
|
1070
|
+
|
|
1071
|
+
export type CriteriaItemType = (typeof CriteriaItemType)[keyof typeof CriteriaItemType]
|
|
1072
|
+
|
|
1073
|
+
|
|
1040
1074
|
export const RegisterRequestType: {
|
|
1041
1075
|
SUPERCHARGE: 'SUPERCHARGE',
|
|
1042
1076
|
BUILD_PRODUCT: 'BUILD_PRODUCT'
|
|
@@ -1220,6 +1254,14 @@ export type ProposalCandidateRecommendation = $Enums.ProposalCandidateRecommenda
|
|
|
1220
1254
|
|
|
1221
1255
|
export const ProposalCandidateRecommendation: typeof $Enums.ProposalCandidateRecommendation
|
|
1222
1256
|
|
|
1257
|
+
export type HiringCriteriaCategory = $Enums.HiringCriteriaCategory
|
|
1258
|
+
|
|
1259
|
+
export const HiringCriteriaCategory: typeof $Enums.HiringCriteriaCategory
|
|
1260
|
+
|
|
1261
|
+
export type CriteriaItemType = $Enums.CriteriaItemType
|
|
1262
|
+
|
|
1263
|
+
export const CriteriaItemType: typeof $Enums.CriteriaItemType
|
|
1264
|
+
|
|
1223
1265
|
export type RegisterRequestType = $Enums.RegisterRequestType
|
|
1224
1266
|
|
|
1225
1267
|
export const RegisterRequestType: typeof $Enums.RegisterRequestType
|
|
@@ -1536,6 +1578,16 @@ export class PrismaClient<
|
|
|
1536
1578
|
*/
|
|
1537
1579
|
get roleCategory(): Prisma.RoleCategoryDelegate<ExtArgs>;
|
|
1538
1580
|
|
|
1581
|
+
/**
|
|
1582
|
+
* `prisma.roleHiringCriteria`: Exposes CRUD operations for the **RoleHiringCriteria** model.
|
|
1583
|
+
* Example usage:
|
|
1584
|
+
* ```ts
|
|
1585
|
+
* // Fetch zero or more RoleHiringCriteria
|
|
1586
|
+
* const roleHiringCriteria = await prisma.roleHiringCriteria.findMany()
|
|
1587
|
+
* ```
|
|
1588
|
+
*/
|
|
1589
|
+
get roleHiringCriteria(): Prisma.RoleHiringCriteriaDelegate<ExtArgs>;
|
|
1590
|
+
|
|
1539
1591
|
/**
|
|
1540
1592
|
* `prisma.solution`: Exposes CRUD operations for the **Solution** model.
|
|
1541
1593
|
* Example usage:
|
|
@@ -2057,6 +2109,7 @@ export namespace Prisma {
|
|
|
2057
2109
|
Proposal: 'Proposal',
|
|
2058
2110
|
RecordedCall: 'RecordedCall',
|
|
2059
2111
|
RoleCategory: 'RoleCategory',
|
|
2112
|
+
RoleHiringCriteria: 'RoleHiringCriteria',
|
|
2060
2113
|
Solution: 'Solution',
|
|
2061
2114
|
TalentCategory: 'TalentCategory',
|
|
2062
2115
|
TalentIndustry: 'TalentIndustry',
|
|
@@ -2078,7 +2131,7 @@ export namespace Prisma {
|
|
|
2078
2131
|
|
|
2079
2132
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
|
2080
2133
|
meta: {
|
|
2081
|
-
modelProps: "account" | "billingAccount" | "calendar" | "calendarAvailability" | "calendarEvent" | "calendarEventType" | "clientCompany" | "clientInterview" | "company" | "contract" | "experience" | "invoice" | "linkedInRecommendation" | "mission" | "missionApplication" | "missionPrefill" | "missionSpec" | "paymentCycle" | "proposal" | "recordedCall" | "roleCategory" | "solution" | "talentCategory" | "talentIndustry" | "user" | "userPreference" | "userReview"
|
|
2134
|
+
modelProps: "account" | "billingAccount" | "calendar" | "calendarAvailability" | "calendarEvent" | "calendarEventType" | "clientCompany" | "clientInterview" | "company" | "contract" | "experience" | "invoice" | "linkedInRecommendation" | "mission" | "missionApplication" | "missionPrefill" | "missionSpec" | "paymentCycle" | "proposal" | "recordedCall" | "roleCategory" | "roleHiringCriteria" | "solution" | "talentCategory" | "talentIndustry" | "user" | "userPreference" | "userReview"
|
|
2082
2135
|
txIsolationLevel: never
|
|
2083
2136
|
}
|
|
2084
2137
|
model: {
|
|
@@ -3636,6 +3689,80 @@ export namespace Prisma {
|
|
|
3636
3689
|
}
|
|
3637
3690
|
}
|
|
3638
3691
|
}
|
|
3692
|
+
RoleHiringCriteria: {
|
|
3693
|
+
payload: Prisma.$RoleHiringCriteriaPayload<ExtArgs>
|
|
3694
|
+
fields: Prisma.RoleHiringCriteriaFieldRefs
|
|
3695
|
+
operations: {
|
|
3696
|
+
findUnique: {
|
|
3697
|
+
args: Prisma.RoleHiringCriteriaFindUniqueArgs<ExtArgs>
|
|
3698
|
+
result: $Utils.PayloadToResult<Prisma.$RoleHiringCriteriaPayload> | null
|
|
3699
|
+
}
|
|
3700
|
+
findUniqueOrThrow: {
|
|
3701
|
+
args: Prisma.RoleHiringCriteriaFindUniqueOrThrowArgs<ExtArgs>
|
|
3702
|
+
result: $Utils.PayloadToResult<Prisma.$RoleHiringCriteriaPayload>
|
|
3703
|
+
}
|
|
3704
|
+
findFirst: {
|
|
3705
|
+
args: Prisma.RoleHiringCriteriaFindFirstArgs<ExtArgs>
|
|
3706
|
+
result: $Utils.PayloadToResult<Prisma.$RoleHiringCriteriaPayload> | null
|
|
3707
|
+
}
|
|
3708
|
+
findFirstOrThrow: {
|
|
3709
|
+
args: Prisma.RoleHiringCriteriaFindFirstOrThrowArgs<ExtArgs>
|
|
3710
|
+
result: $Utils.PayloadToResult<Prisma.$RoleHiringCriteriaPayload>
|
|
3711
|
+
}
|
|
3712
|
+
findMany: {
|
|
3713
|
+
args: Prisma.RoleHiringCriteriaFindManyArgs<ExtArgs>
|
|
3714
|
+
result: $Utils.PayloadToResult<Prisma.$RoleHiringCriteriaPayload>[]
|
|
3715
|
+
}
|
|
3716
|
+
create: {
|
|
3717
|
+
args: Prisma.RoleHiringCriteriaCreateArgs<ExtArgs>
|
|
3718
|
+
result: $Utils.PayloadToResult<Prisma.$RoleHiringCriteriaPayload>
|
|
3719
|
+
}
|
|
3720
|
+
createMany: {
|
|
3721
|
+
args: Prisma.RoleHiringCriteriaCreateManyArgs<ExtArgs>
|
|
3722
|
+
result: BatchPayload
|
|
3723
|
+
}
|
|
3724
|
+
delete: {
|
|
3725
|
+
args: Prisma.RoleHiringCriteriaDeleteArgs<ExtArgs>
|
|
3726
|
+
result: $Utils.PayloadToResult<Prisma.$RoleHiringCriteriaPayload>
|
|
3727
|
+
}
|
|
3728
|
+
update: {
|
|
3729
|
+
args: Prisma.RoleHiringCriteriaUpdateArgs<ExtArgs>
|
|
3730
|
+
result: $Utils.PayloadToResult<Prisma.$RoleHiringCriteriaPayload>
|
|
3731
|
+
}
|
|
3732
|
+
deleteMany: {
|
|
3733
|
+
args: Prisma.RoleHiringCriteriaDeleteManyArgs<ExtArgs>
|
|
3734
|
+
result: BatchPayload
|
|
3735
|
+
}
|
|
3736
|
+
updateMany: {
|
|
3737
|
+
args: Prisma.RoleHiringCriteriaUpdateManyArgs<ExtArgs>
|
|
3738
|
+
result: BatchPayload
|
|
3739
|
+
}
|
|
3740
|
+
upsert: {
|
|
3741
|
+
args: Prisma.RoleHiringCriteriaUpsertArgs<ExtArgs>
|
|
3742
|
+
result: $Utils.PayloadToResult<Prisma.$RoleHiringCriteriaPayload>
|
|
3743
|
+
}
|
|
3744
|
+
aggregate: {
|
|
3745
|
+
args: Prisma.RoleHiringCriteriaAggregateArgs<ExtArgs>
|
|
3746
|
+
result: $Utils.Optional<AggregateRoleHiringCriteria>
|
|
3747
|
+
}
|
|
3748
|
+
groupBy: {
|
|
3749
|
+
args: Prisma.RoleHiringCriteriaGroupByArgs<ExtArgs>
|
|
3750
|
+
result: $Utils.Optional<RoleHiringCriteriaGroupByOutputType>[]
|
|
3751
|
+
}
|
|
3752
|
+
findRaw: {
|
|
3753
|
+
args: Prisma.RoleHiringCriteriaFindRawArgs<ExtArgs>
|
|
3754
|
+
result: JsonObject
|
|
3755
|
+
}
|
|
3756
|
+
aggregateRaw: {
|
|
3757
|
+
args: Prisma.RoleHiringCriteriaAggregateRawArgs<ExtArgs>
|
|
3758
|
+
result: JsonObject
|
|
3759
|
+
}
|
|
3760
|
+
count: {
|
|
3761
|
+
args: Prisma.RoleHiringCriteriaCountArgs<ExtArgs>
|
|
3762
|
+
result: $Utils.Optional<RoleHiringCriteriaCountAggregateOutputType> | number
|
|
3763
|
+
}
|
|
3764
|
+
}
|
|
3765
|
+
}
|
|
3639
3766
|
Solution: {
|
|
3640
3767
|
payload: Prisma.$SolutionPayload<ExtArgs>
|
|
3641
3768
|
fields: Prisma.SolutionFieldRefs
|
|
@@ -4480,12 +4607,14 @@ export namespace Prisma {
|
|
|
4480
4607
|
contracts: number
|
|
4481
4608
|
proposals: number
|
|
4482
4609
|
userReviews: number
|
|
4610
|
+
roleHiringCriterias: number
|
|
4483
4611
|
}
|
|
4484
4612
|
|
|
4485
4613
|
export type MissionCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4486
4614
|
contracts?: boolean | MissionCountOutputTypeCountContractsArgs
|
|
4487
4615
|
proposals?: boolean | MissionCountOutputTypeCountProposalsArgs
|
|
4488
4616
|
userReviews?: boolean | MissionCountOutputTypeCountUserReviewsArgs
|
|
4617
|
+
roleHiringCriterias?: boolean | MissionCountOutputTypeCountRoleHiringCriteriasArgs
|
|
4489
4618
|
}
|
|
4490
4619
|
|
|
4491
4620
|
// Custom InputTypes
|
|
@@ -4520,6 +4649,13 @@ export namespace Prisma {
|
|
|
4520
4649
|
where?: UserReviewWhereInput
|
|
4521
4650
|
}
|
|
4522
4651
|
|
|
4652
|
+
/**
|
|
4653
|
+
* MissionCountOutputType without action
|
|
4654
|
+
*/
|
|
4655
|
+
export type MissionCountOutputTypeCountRoleHiringCriteriasArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4656
|
+
where?: RoleHiringCriteriaWhereInput
|
|
4657
|
+
}
|
|
4658
|
+
|
|
4523
4659
|
|
|
4524
4660
|
/**
|
|
4525
4661
|
* Count Type MissionSpecCountOutputType
|
|
@@ -9808,6 +9944,140 @@ export namespace Prisma {
|
|
|
9808
9944
|
}
|
|
9809
9945
|
|
|
9810
9946
|
|
|
9947
|
+
/**
|
|
9948
|
+
* Model CriteriaItem
|
|
9949
|
+
*/
|
|
9950
|
+
|
|
9951
|
+
|
|
9952
|
+
|
|
9953
|
+
|
|
9954
|
+
|
|
9955
|
+
export type CriteriaItemSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9956
|
+
name?: boolean
|
|
9957
|
+
description?: boolean
|
|
9958
|
+
category?: boolean
|
|
9959
|
+
type?: boolean
|
|
9960
|
+
}, ExtArgs["result"]["criteriaItem"]>
|
|
9961
|
+
|
|
9962
|
+
|
|
9963
|
+
export type CriteriaItemSelectScalar = {
|
|
9964
|
+
name?: boolean
|
|
9965
|
+
description?: boolean
|
|
9966
|
+
category?: boolean
|
|
9967
|
+
type?: boolean
|
|
9968
|
+
}
|
|
9969
|
+
|
|
9970
|
+
|
|
9971
|
+
export type $CriteriaItemPayload = {
|
|
9972
|
+
name: "CriteriaItem"
|
|
9973
|
+
objects: {}
|
|
9974
|
+
scalars: {
|
|
9975
|
+
name: string
|
|
9976
|
+
description: string
|
|
9977
|
+
category: $Enums.HiringCriteriaCategory
|
|
9978
|
+
type: $Enums.CriteriaItemType
|
|
9979
|
+
}
|
|
9980
|
+
composites: {}
|
|
9981
|
+
}
|
|
9982
|
+
|
|
9983
|
+
type CriteriaItemGetPayload<S extends boolean | null | undefined | CriteriaItemDefaultArgs> = $Result.GetResult<Prisma.$CriteriaItemPayload, S>
|
|
9984
|
+
|
|
9985
|
+
|
|
9986
|
+
|
|
9987
|
+
|
|
9988
|
+
|
|
9989
|
+
/**
|
|
9990
|
+
* Fields of the CriteriaItem model
|
|
9991
|
+
*/
|
|
9992
|
+
interface CriteriaItemFieldRefs {
|
|
9993
|
+
readonly name: FieldRef<"CriteriaItem", 'String'>
|
|
9994
|
+
readonly description: FieldRef<"CriteriaItem", 'String'>
|
|
9995
|
+
readonly category: FieldRef<"CriteriaItem", 'HiringCriteriaCategory'>
|
|
9996
|
+
readonly type: FieldRef<"CriteriaItem", 'CriteriaItemType'>
|
|
9997
|
+
}
|
|
9998
|
+
|
|
9999
|
+
|
|
10000
|
+
// Custom InputTypes
|
|
10001
|
+
/**
|
|
10002
|
+
* CriteriaItem without action
|
|
10003
|
+
*/
|
|
10004
|
+
export type CriteriaItemDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10005
|
+
/**
|
|
10006
|
+
* Select specific fields to fetch from the CriteriaItem
|
|
10007
|
+
*/
|
|
10008
|
+
select?: CriteriaItemSelect<ExtArgs> | null
|
|
10009
|
+
}
|
|
10010
|
+
|
|
10011
|
+
|
|
10012
|
+
/**
|
|
10013
|
+
* Model WeightedCriteriaItem
|
|
10014
|
+
*/
|
|
10015
|
+
|
|
10016
|
+
|
|
10017
|
+
|
|
10018
|
+
|
|
10019
|
+
|
|
10020
|
+
export type WeightedCriteriaItemSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
10021
|
+
name?: boolean
|
|
10022
|
+
description?: boolean
|
|
10023
|
+
category?: boolean
|
|
10024
|
+
type?: boolean
|
|
10025
|
+
weight?: boolean
|
|
10026
|
+
}, ExtArgs["result"]["weightedCriteriaItem"]>
|
|
10027
|
+
|
|
10028
|
+
|
|
10029
|
+
export type WeightedCriteriaItemSelectScalar = {
|
|
10030
|
+
name?: boolean
|
|
10031
|
+
description?: boolean
|
|
10032
|
+
category?: boolean
|
|
10033
|
+
type?: boolean
|
|
10034
|
+
weight?: boolean
|
|
10035
|
+
}
|
|
10036
|
+
|
|
10037
|
+
|
|
10038
|
+
export type $WeightedCriteriaItemPayload = {
|
|
10039
|
+
name: "WeightedCriteriaItem"
|
|
10040
|
+
objects: {}
|
|
10041
|
+
scalars: {
|
|
10042
|
+
name: string
|
|
10043
|
+
description: string
|
|
10044
|
+
category: $Enums.HiringCriteriaCategory
|
|
10045
|
+
type: $Enums.CriteriaItemType
|
|
10046
|
+
weight: number | null
|
|
10047
|
+
}
|
|
10048
|
+
composites: {}
|
|
10049
|
+
}
|
|
10050
|
+
|
|
10051
|
+
type WeightedCriteriaItemGetPayload<S extends boolean | null | undefined | WeightedCriteriaItemDefaultArgs> = $Result.GetResult<Prisma.$WeightedCriteriaItemPayload, S>
|
|
10052
|
+
|
|
10053
|
+
|
|
10054
|
+
|
|
10055
|
+
|
|
10056
|
+
|
|
10057
|
+
/**
|
|
10058
|
+
* Fields of the WeightedCriteriaItem model
|
|
10059
|
+
*/
|
|
10060
|
+
interface WeightedCriteriaItemFieldRefs {
|
|
10061
|
+
readonly name: FieldRef<"WeightedCriteriaItem", 'String'>
|
|
10062
|
+
readonly description: FieldRef<"WeightedCriteriaItem", 'String'>
|
|
10063
|
+
readonly category: FieldRef<"WeightedCriteriaItem", 'HiringCriteriaCategory'>
|
|
10064
|
+
readonly type: FieldRef<"WeightedCriteriaItem", 'CriteriaItemType'>
|
|
10065
|
+
readonly weight: FieldRef<"WeightedCriteriaItem", 'Float'>
|
|
10066
|
+
}
|
|
10067
|
+
|
|
10068
|
+
|
|
10069
|
+
// Custom InputTypes
|
|
10070
|
+
/**
|
|
10071
|
+
* WeightedCriteriaItem without action
|
|
10072
|
+
*/
|
|
10073
|
+
export type WeightedCriteriaItemDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10074
|
+
/**
|
|
10075
|
+
* Select specific fields to fetch from the WeightedCriteriaItem
|
|
10076
|
+
*/
|
|
10077
|
+
select?: WeightedCriteriaItemSelect<ExtArgs> | null
|
|
10078
|
+
}
|
|
10079
|
+
|
|
10080
|
+
|
|
9811
10081
|
/**
|
|
9812
10082
|
* Model Role
|
|
9813
10083
|
*/
|
|
@@ -25589,6 +25859,7 @@ export namespace Prisma {
|
|
|
25589
25859
|
contracts?: boolean | Mission$contractsArgs<ExtArgs>
|
|
25590
25860
|
proposals?: boolean | Mission$proposalsArgs<ExtArgs>
|
|
25591
25861
|
userReviews?: boolean | Mission$userReviewsArgs<ExtArgs>
|
|
25862
|
+
roleHiringCriterias?: boolean | Mission$roleHiringCriteriasArgs<ExtArgs>
|
|
25592
25863
|
_count?: boolean | MissionCountOutputTypeDefaultArgs<ExtArgs>
|
|
25593
25864
|
}, ExtArgs["result"]["mission"]>
|
|
25594
25865
|
|
|
@@ -25644,6 +25915,7 @@ export namespace Prisma {
|
|
|
25644
25915
|
contracts?: boolean | Mission$contractsArgs<ExtArgs>
|
|
25645
25916
|
proposals?: boolean | Mission$proposalsArgs<ExtArgs>
|
|
25646
25917
|
userReviews?: boolean | Mission$userReviewsArgs<ExtArgs>
|
|
25918
|
+
roleHiringCriterias?: boolean | Mission$roleHiringCriteriasArgs<ExtArgs>
|
|
25647
25919
|
_count?: boolean | MissionCountOutputTypeDefaultArgs<ExtArgs>
|
|
25648
25920
|
}
|
|
25649
25921
|
|
|
@@ -25657,6 +25929,7 @@ export namespace Prisma {
|
|
|
25657
25929
|
contracts: Prisma.$ContractPayload<ExtArgs>[]
|
|
25658
25930
|
proposals: Prisma.$ProposalPayload<ExtArgs>[]
|
|
25659
25931
|
userReviews: Prisma.$UserReviewPayload<ExtArgs>[]
|
|
25932
|
+
roleHiringCriterias: Prisma.$RoleHiringCriteriaPayload<ExtArgs>[]
|
|
25660
25933
|
}
|
|
25661
25934
|
scalars: $Extensions.GetPayloadResult<{
|
|
25662
25935
|
mid: string
|
|
@@ -26076,6 +26349,7 @@ export namespace Prisma {
|
|
|
26076
26349
|
contracts<T extends Mission$contractsArgs<ExtArgs> = {}>(args?: Subset<T, Mission$contractsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ContractPayload<ExtArgs>, T, "findMany"> | Null>
|
|
26077
26350
|
proposals<T extends Mission$proposalsArgs<ExtArgs> = {}>(args?: Subset<T, Mission$proposalsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProposalPayload<ExtArgs>, T, "findMany"> | Null>
|
|
26078
26351
|
userReviews<T extends Mission$userReviewsArgs<ExtArgs> = {}>(args?: Subset<T, Mission$userReviewsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$UserReviewPayload<ExtArgs>, T, "findMany"> | Null>
|
|
26352
|
+
roleHiringCriterias<T extends Mission$roleHiringCriteriasArgs<ExtArgs> = {}>(args?: Subset<T, Mission$roleHiringCriteriasArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RoleHiringCriteriaPayload<ExtArgs>, T, "findMany"> | Null>
|
|
26079
26353
|
/**
|
|
26080
26354
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
26081
26355
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -26590,6 +26864,26 @@ export namespace Prisma {
|
|
|
26590
26864
|
distinct?: UserReviewScalarFieldEnum | UserReviewScalarFieldEnum[]
|
|
26591
26865
|
}
|
|
26592
26866
|
|
|
26867
|
+
/**
|
|
26868
|
+
* Mission.roleHiringCriterias
|
|
26869
|
+
*/
|
|
26870
|
+
export type Mission$roleHiringCriteriasArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
26871
|
+
/**
|
|
26872
|
+
* Select specific fields to fetch from the RoleHiringCriteria
|
|
26873
|
+
*/
|
|
26874
|
+
select?: RoleHiringCriteriaSelect<ExtArgs> | null
|
|
26875
|
+
/**
|
|
26876
|
+
* Choose, which related nodes to fetch as well
|
|
26877
|
+
*/
|
|
26878
|
+
include?: RoleHiringCriteriaInclude<ExtArgs> | null
|
|
26879
|
+
where?: RoleHiringCriteriaWhereInput
|
|
26880
|
+
orderBy?: RoleHiringCriteriaOrderByWithRelationInput | RoleHiringCriteriaOrderByWithRelationInput[]
|
|
26881
|
+
cursor?: RoleHiringCriteriaWhereUniqueInput
|
|
26882
|
+
take?: number
|
|
26883
|
+
skip?: number
|
|
26884
|
+
distinct?: RoleHiringCriteriaScalarFieldEnum | RoleHiringCriteriaScalarFieldEnum[]
|
|
26885
|
+
}
|
|
26886
|
+
|
|
26593
26887
|
/**
|
|
26594
26888
|
* Mission without action
|
|
26595
26889
|
*/
|
|
@@ -33712,280 +34006,1352 @@ export namespace Prisma {
|
|
|
33712
34006
|
|
|
33713
34007
|
|
|
33714
34008
|
/**
|
|
33715
|
-
* Fields of the RoleCategory model
|
|
34009
|
+
* Fields of the RoleCategory model
|
|
34010
|
+
*/
|
|
34011
|
+
interface RoleCategoryFieldRefs {
|
|
34012
|
+
readonly id: FieldRef<"RoleCategory", 'String'>
|
|
34013
|
+
readonly anchors: FieldRef<"RoleCategory", 'String[]'>
|
|
34014
|
+
readonly title: FieldRef<"RoleCategory", 'String'>
|
|
34015
|
+
readonly deletedAt: FieldRef<"RoleCategory", 'DateTime'>
|
|
34016
|
+
readonly group: FieldRef<"RoleCategory", 'String'>
|
|
34017
|
+
readonly talentCategoryIds: FieldRef<"RoleCategory", 'String[]'>
|
|
34018
|
+
}
|
|
34019
|
+
|
|
34020
|
+
|
|
34021
|
+
// Custom InputTypes
|
|
34022
|
+
/**
|
|
34023
|
+
* RoleCategory findUnique
|
|
34024
|
+
*/
|
|
34025
|
+
export type RoleCategoryFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34026
|
+
/**
|
|
34027
|
+
* Select specific fields to fetch from the RoleCategory
|
|
34028
|
+
*/
|
|
34029
|
+
select?: RoleCategorySelect<ExtArgs> | null
|
|
34030
|
+
/**
|
|
34031
|
+
* Filter, which RoleCategory to fetch.
|
|
34032
|
+
*/
|
|
34033
|
+
where: RoleCategoryWhereUniqueInput
|
|
34034
|
+
}
|
|
34035
|
+
|
|
34036
|
+
/**
|
|
34037
|
+
* RoleCategory findUniqueOrThrow
|
|
34038
|
+
*/
|
|
34039
|
+
export type RoleCategoryFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34040
|
+
/**
|
|
34041
|
+
* Select specific fields to fetch from the RoleCategory
|
|
34042
|
+
*/
|
|
34043
|
+
select?: RoleCategorySelect<ExtArgs> | null
|
|
34044
|
+
/**
|
|
34045
|
+
* Filter, which RoleCategory to fetch.
|
|
34046
|
+
*/
|
|
34047
|
+
where: RoleCategoryWhereUniqueInput
|
|
34048
|
+
}
|
|
34049
|
+
|
|
34050
|
+
/**
|
|
34051
|
+
* RoleCategory findFirst
|
|
34052
|
+
*/
|
|
34053
|
+
export type RoleCategoryFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34054
|
+
/**
|
|
34055
|
+
* Select specific fields to fetch from the RoleCategory
|
|
34056
|
+
*/
|
|
34057
|
+
select?: RoleCategorySelect<ExtArgs> | null
|
|
34058
|
+
/**
|
|
34059
|
+
* Filter, which RoleCategory to fetch.
|
|
34060
|
+
*/
|
|
34061
|
+
where?: RoleCategoryWhereInput
|
|
34062
|
+
/**
|
|
34063
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
34064
|
+
*
|
|
34065
|
+
* Determine the order of RoleCategories to fetch.
|
|
34066
|
+
*/
|
|
34067
|
+
orderBy?: RoleCategoryOrderByWithRelationInput | RoleCategoryOrderByWithRelationInput[]
|
|
34068
|
+
/**
|
|
34069
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
34070
|
+
*
|
|
34071
|
+
* Sets the position for searching for RoleCategories.
|
|
34072
|
+
*/
|
|
34073
|
+
cursor?: RoleCategoryWhereUniqueInput
|
|
34074
|
+
/**
|
|
34075
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
34076
|
+
*
|
|
34077
|
+
* Take `±n` RoleCategories from the position of the cursor.
|
|
34078
|
+
*/
|
|
34079
|
+
take?: number
|
|
34080
|
+
/**
|
|
34081
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
34082
|
+
*
|
|
34083
|
+
* Skip the first `n` RoleCategories.
|
|
34084
|
+
*/
|
|
34085
|
+
skip?: number
|
|
34086
|
+
/**
|
|
34087
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
34088
|
+
*
|
|
34089
|
+
* Filter by unique combinations of RoleCategories.
|
|
34090
|
+
*/
|
|
34091
|
+
distinct?: RoleCategoryScalarFieldEnum | RoleCategoryScalarFieldEnum[]
|
|
34092
|
+
}
|
|
34093
|
+
|
|
34094
|
+
/**
|
|
34095
|
+
* RoleCategory findFirstOrThrow
|
|
34096
|
+
*/
|
|
34097
|
+
export type RoleCategoryFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34098
|
+
/**
|
|
34099
|
+
* Select specific fields to fetch from the RoleCategory
|
|
34100
|
+
*/
|
|
34101
|
+
select?: RoleCategorySelect<ExtArgs> | null
|
|
34102
|
+
/**
|
|
34103
|
+
* Filter, which RoleCategory to fetch.
|
|
34104
|
+
*/
|
|
34105
|
+
where?: RoleCategoryWhereInput
|
|
34106
|
+
/**
|
|
34107
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
34108
|
+
*
|
|
34109
|
+
* Determine the order of RoleCategories to fetch.
|
|
34110
|
+
*/
|
|
34111
|
+
orderBy?: RoleCategoryOrderByWithRelationInput | RoleCategoryOrderByWithRelationInput[]
|
|
34112
|
+
/**
|
|
34113
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
34114
|
+
*
|
|
34115
|
+
* Sets the position for searching for RoleCategories.
|
|
34116
|
+
*/
|
|
34117
|
+
cursor?: RoleCategoryWhereUniqueInput
|
|
34118
|
+
/**
|
|
34119
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
34120
|
+
*
|
|
34121
|
+
* Take `±n` RoleCategories from the position of the cursor.
|
|
34122
|
+
*/
|
|
34123
|
+
take?: number
|
|
34124
|
+
/**
|
|
34125
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
34126
|
+
*
|
|
34127
|
+
* Skip the first `n` RoleCategories.
|
|
34128
|
+
*/
|
|
34129
|
+
skip?: number
|
|
34130
|
+
/**
|
|
34131
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
34132
|
+
*
|
|
34133
|
+
* Filter by unique combinations of RoleCategories.
|
|
34134
|
+
*/
|
|
34135
|
+
distinct?: RoleCategoryScalarFieldEnum | RoleCategoryScalarFieldEnum[]
|
|
34136
|
+
}
|
|
34137
|
+
|
|
34138
|
+
/**
|
|
34139
|
+
* RoleCategory findMany
|
|
34140
|
+
*/
|
|
34141
|
+
export type RoleCategoryFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34142
|
+
/**
|
|
34143
|
+
* Select specific fields to fetch from the RoleCategory
|
|
34144
|
+
*/
|
|
34145
|
+
select?: RoleCategorySelect<ExtArgs> | null
|
|
34146
|
+
/**
|
|
34147
|
+
* Filter, which RoleCategories to fetch.
|
|
34148
|
+
*/
|
|
34149
|
+
where?: RoleCategoryWhereInput
|
|
34150
|
+
/**
|
|
34151
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
34152
|
+
*
|
|
34153
|
+
* Determine the order of RoleCategories to fetch.
|
|
34154
|
+
*/
|
|
34155
|
+
orderBy?: RoleCategoryOrderByWithRelationInput | RoleCategoryOrderByWithRelationInput[]
|
|
34156
|
+
/**
|
|
34157
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
34158
|
+
*
|
|
34159
|
+
* Sets the position for listing RoleCategories.
|
|
34160
|
+
*/
|
|
34161
|
+
cursor?: RoleCategoryWhereUniqueInput
|
|
34162
|
+
/**
|
|
34163
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
34164
|
+
*
|
|
34165
|
+
* Take `±n` RoleCategories from the position of the cursor.
|
|
34166
|
+
*/
|
|
34167
|
+
take?: number
|
|
34168
|
+
/**
|
|
34169
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
34170
|
+
*
|
|
34171
|
+
* Skip the first `n` RoleCategories.
|
|
34172
|
+
*/
|
|
34173
|
+
skip?: number
|
|
34174
|
+
distinct?: RoleCategoryScalarFieldEnum | RoleCategoryScalarFieldEnum[]
|
|
34175
|
+
}
|
|
34176
|
+
|
|
34177
|
+
/**
|
|
34178
|
+
* RoleCategory create
|
|
34179
|
+
*/
|
|
34180
|
+
export type RoleCategoryCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34181
|
+
/**
|
|
34182
|
+
* Select specific fields to fetch from the RoleCategory
|
|
34183
|
+
*/
|
|
34184
|
+
select?: RoleCategorySelect<ExtArgs> | null
|
|
34185
|
+
/**
|
|
34186
|
+
* The data needed to create a RoleCategory.
|
|
34187
|
+
*/
|
|
34188
|
+
data: XOR<RoleCategoryCreateInput, RoleCategoryUncheckedCreateInput>
|
|
34189
|
+
}
|
|
34190
|
+
|
|
34191
|
+
/**
|
|
34192
|
+
* RoleCategory createMany
|
|
34193
|
+
*/
|
|
34194
|
+
export type RoleCategoryCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34195
|
+
/**
|
|
34196
|
+
* The data used to create many RoleCategories.
|
|
34197
|
+
*/
|
|
34198
|
+
data: RoleCategoryCreateManyInput | RoleCategoryCreateManyInput[]
|
|
34199
|
+
}
|
|
34200
|
+
|
|
34201
|
+
/**
|
|
34202
|
+
* RoleCategory update
|
|
34203
|
+
*/
|
|
34204
|
+
export type RoleCategoryUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34205
|
+
/**
|
|
34206
|
+
* Select specific fields to fetch from the RoleCategory
|
|
34207
|
+
*/
|
|
34208
|
+
select?: RoleCategorySelect<ExtArgs> | null
|
|
34209
|
+
/**
|
|
34210
|
+
* The data needed to update a RoleCategory.
|
|
34211
|
+
*/
|
|
34212
|
+
data: XOR<RoleCategoryUpdateInput, RoleCategoryUncheckedUpdateInput>
|
|
34213
|
+
/**
|
|
34214
|
+
* Choose, which RoleCategory to update.
|
|
34215
|
+
*/
|
|
34216
|
+
where: RoleCategoryWhereUniqueInput
|
|
34217
|
+
}
|
|
34218
|
+
|
|
34219
|
+
/**
|
|
34220
|
+
* RoleCategory updateMany
|
|
34221
|
+
*/
|
|
34222
|
+
export type RoleCategoryUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34223
|
+
/**
|
|
34224
|
+
* The data used to update RoleCategories.
|
|
34225
|
+
*/
|
|
34226
|
+
data: XOR<RoleCategoryUpdateManyMutationInput, RoleCategoryUncheckedUpdateManyInput>
|
|
34227
|
+
/**
|
|
34228
|
+
* Filter which RoleCategories to update
|
|
34229
|
+
*/
|
|
34230
|
+
where?: RoleCategoryWhereInput
|
|
34231
|
+
}
|
|
34232
|
+
|
|
34233
|
+
/**
|
|
34234
|
+
* RoleCategory upsert
|
|
34235
|
+
*/
|
|
34236
|
+
export type RoleCategoryUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34237
|
+
/**
|
|
34238
|
+
* Select specific fields to fetch from the RoleCategory
|
|
34239
|
+
*/
|
|
34240
|
+
select?: RoleCategorySelect<ExtArgs> | null
|
|
34241
|
+
/**
|
|
34242
|
+
* The filter to search for the RoleCategory to update in case it exists.
|
|
34243
|
+
*/
|
|
34244
|
+
where: RoleCategoryWhereUniqueInput
|
|
34245
|
+
/**
|
|
34246
|
+
* In case the RoleCategory found by the `where` argument doesn't exist, create a new RoleCategory with this data.
|
|
34247
|
+
*/
|
|
34248
|
+
create: XOR<RoleCategoryCreateInput, RoleCategoryUncheckedCreateInput>
|
|
34249
|
+
/**
|
|
34250
|
+
* In case the RoleCategory was found with the provided `where` argument, update it with this data.
|
|
34251
|
+
*/
|
|
34252
|
+
update: XOR<RoleCategoryUpdateInput, RoleCategoryUncheckedUpdateInput>
|
|
34253
|
+
}
|
|
34254
|
+
|
|
34255
|
+
/**
|
|
34256
|
+
* RoleCategory delete
|
|
34257
|
+
*/
|
|
34258
|
+
export type RoleCategoryDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34259
|
+
/**
|
|
34260
|
+
* Select specific fields to fetch from the RoleCategory
|
|
34261
|
+
*/
|
|
34262
|
+
select?: RoleCategorySelect<ExtArgs> | null
|
|
34263
|
+
/**
|
|
34264
|
+
* Filter which RoleCategory to delete.
|
|
34265
|
+
*/
|
|
34266
|
+
where: RoleCategoryWhereUniqueInput
|
|
34267
|
+
}
|
|
34268
|
+
|
|
34269
|
+
/**
|
|
34270
|
+
* RoleCategory deleteMany
|
|
34271
|
+
*/
|
|
34272
|
+
export type RoleCategoryDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34273
|
+
/**
|
|
34274
|
+
* Filter which RoleCategories to delete
|
|
34275
|
+
*/
|
|
34276
|
+
where?: RoleCategoryWhereInput
|
|
34277
|
+
}
|
|
34278
|
+
|
|
34279
|
+
/**
|
|
34280
|
+
* RoleCategory findRaw
|
|
34281
|
+
*/
|
|
34282
|
+
export type RoleCategoryFindRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34283
|
+
/**
|
|
34284
|
+
* The query predicate filter. If unspecified, then all documents in the collection will match the predicate. ${@link https://docs.mongodb.com/manual/reference/operator/query MongoDB Docs}.
|
|
34285
|
+
*/
|
|
34286
|
+
filter?: InputJsonValue
|
|
34287
|
+
/**
|
|
34288
|
+
* Additional options to pass to the `find` command ${@link https://docs.mongodb.com/manual/reference/command/find/#command-fields MongoDB Docs}.
|
|
34289
|
+
*/
|
|
34290
|
+
options?: InputJsonValue
|
|
34291
|
+
}
|
|
34292
|
+
|
|
34293
|
+
/**
|
|
34294
|
+
* RoleCategory aggregateRaw
|
|
34295
|
+
*/
|
|
34296
|
+
export type RoleCategoryAggregateRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34297
|
+
/**
|
|
34298
|
+
* An array of aggregation stages to process and transform the document stream via the aggregation pipeline. ${@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline MongoDB Docs}.
|
|
34299
|
+
*/
|
|
34300
|
+
pipeline?: InputJsonValue[]
|
|
34301
|
+
/**
|
|
34302
|
+
* Additional options to pass to the `aggregate` command ${@link https://docs.mongodb.com/manual/reference/command/aggregate/#command-fields MongoDB Docs}.
|
|
34303
|
+
*/
|
|
34304
|
+
options?: InputJsonValue
|
|
34305
|
+
}
|
|
34306
|
+
|
|
34307
|
+
/**
|
|
34308
|
+
* RoleCategory without action
|
|
34309
|
+
*/
|
|
34310
|
+
export type RoleCategoryDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34311
|
+
/**
|
|
34312
|
+
* Select specific fields to fetch from the RoleCategory
|
|
34313
|
+
*/
|
|
34314
|
+
select?: RoleCategorySelect<ExtArgs> | null
|
|
34315
|
+
}
|
|
34316
|
+
|
|
34317
|
+
|
|
34318
|
+
/**
|
|
34319
|
+
* Model RoleHiringCriteria
|
|
34320
|
+
*/
|
|
34321
|
+
|
|
34322
|
+
export type AggregateRoleHiringCriteria = {
|
|
34323
|
+
_count: RoleHiringCriteriaCountAggregateOutputType | null
|
|
34324
|
+
_avg: RoleHiringCriteriaAvgAggregateOutputType | null
|
|
34325
|
+
_sum: RoleHiringCriteriaSumAggregateOutputType | null
|
|
34326
|
+
_min: RoleHiringCriteriaMinAggregateOutputType | null
|
|
34327
|
+
_max: RoleHiringCriteriaMaxAggregateOutputType | null
|
|
34328
|
+
}
|
|
34329
|
+
|
|
34330
|
+
export type RoleHiringCriteriaAvgAggregateOutputType = {
|
|
34331
|
+
requiredWeeklyHours: number | null
|
|
34332
|
+
maxHourlyRate: number | null
|
|
34333
|
+
maxMonthlyRate: number | null
|
|
34334
|
+
}
|
|
34335
|
+
|
|
34336
|
+
export type RoleHiringCriteriaSumAggregateOutputType = {
|
|
34337
|
+
requiredWeeklyHours: number | null
|
|
34338
|
+
maxHourlyRate: number | null
|
|
34339
|
+
maxMonthlyRate: number | null
|
|
34340
|
+
}
|
|
34341
|
+
|
|
34342
|
+
export type RoleHiringCriteriaMinAggregateOutputType = {
|
|
34343
|
+
id: string | null
|
|
34344
|
+
roleId: string | null
|
|
34345
|
+
missionId: string | null
|
|
34346
|
+
requiredStartDate: Date | null
|
|
34347
|
+
requiredWeeklyHours: number | null
|
|
34348
|
+
maxHourlyRate: number | null
|
|
34349
|
+
maxMonthlyRate: number | null
|
|
34350
|
+
createdAt: Date | null
|
|
34351
|
+
updatedAt: Date | null
|
|
34352
|
+
}
|
|
34353
|
+
|
|
34354
|
+
export type RoleHiringCriteriaMaxAggregateOutputType = {
|
|
34355
|
+
id: string | null
|
|
34356
|
+
roleId: string | null
|
|
34357
|
+
missionId: string | null
|
|
34358
|
+
requiredStartDate: Date | null
|
|
34359
|
+
requiredWeeklyHours: number | null
|
|
34360
|
+
maxHourlyRate: number | null
|
|
34361
|
+
maxMonthlyRate: number | null
|
|
34362
|
+
createdAt: Date | null
|
|
34363
|
+
updatedAt: Date | null
|
|
34364
|
+
}
|
|
34365
|
+
|
|
34366
|
+
export type RoleHiringCriteriaCountAggregateOutputType = {
|
|
34367
|
+
id: number
|
|
34368
|
+
roleId: number
|
|
34369
|
+
missionId: number
|
|
34370
|
+
requiredSpecializations: number
|
|
34371
|
+
suggestedSpecializations: number
|
|
34372
|
+
requiredSkills: number
|
|
34373
|
+
preferredSkills: number
|
|
34374
|
+
requiredCountries: number
|
|
34375
|
+
preferredCountries: number
|
|
34376
|
+
requiredStartDate: number
|
|
34377
|
+
requiredWeeklyHours: number
|
|
34378
|
+
maxHourlyRate: number
|
|
34379
|
+
maxMonthlyRate: number
|
|
34380
|
+
requiredIndustries: number
|
|
34381
|
+
preferredIndustries: number
|
|
34382
|
+
createdAt: number
|
|
34383
|
+
updatedAt: number
|
|
34384
|
+
_all: number
|
|
34385
|
+
}
|
|
34386
|
+
|
|
34387
|
+
|
|
34388
|
+
export type RoleHiringCriteriaAvgAggregateInputType = {
|
|
34389
|
+
requiredWeeklyHours?: true
|
|
34390
|
+
maxHourlyRate?: true
|
|
34391
|
+
maxMonthlyRate?: true
|
|
34392
|
+
}
|
|
34393
|
+
|
|
34394
|
+
export type RoleHiringCriteriaSumAggregateInputType = {
|
|
34395
|
+
requiredWeeklyHours?: true
|
|
34396
|
+
maxHourlyRate?: true
|
|
34397
|
+
maxMonthlyRate?: true
|
|
34398
|
+
}
|
|
34399
|
+
|
|
34400
|
+
export type RoleHiringCriteriaMinAggregateInputType = {
|
|
34401
|
+
id?: true
|
|
34402
|
+
roleId?: true
|
|
34403
|
+
missionId?: true
|
|
34404
|
+
requiredStartDate?: true
|
|
34405
|
+
requiredWeeklyHours?: true
|
|
34406
|
+
maxHourlyRate?: true
|
|
34407
|
+
maxMonthlyRate?: true
|
|
34408
|
+
createdAt?: true
|
|
34409
|
+
updatedAt?: true
|
|
34410
|
+
}
|
|
34411
|
+
|
|
34412
|
+
export type RoleHiringCriteriaMaxAggregateInputType = {
|
|
34413
|
+
id?: true
|
|
34414
|
+
roleId?: true
|
|
34415
|
+
missionId?: true
|
|
34416
|
+
requiredStartDate?: true
|
|
34417
|
+
requiredWeeklyHours?: true
|
|
34418
|
+
maxHourlyRate?: true
|
|
34419
|
+
maxMonthlyRate?: true
|
|
34420
|
+
createdAt?: true
|
|
34421
|
+
updatedAt?: true
|
|
34422
|
+
}
|
|
34423
|
+
|
|
34424
|
+
export type RoleHiringCriteriaCountAggregateInputType = {
|
|
34425
|
+
id?: true
|
|
34426
|
+
roleId?: true
|
|
34427
|
+
missionId?: true
|
|
34428
|
+
requiredSpecializations?: true
|
|
34429
|
+
suggestedSpecializations?: true
|
|
34430
|
+
requiredSkills?: true
|
|
34431
|
+
preferredSkills?: true
|
|
34432
|
+
requiredCountries?: true
|
|
34433
|
+
preferredCountries?: true
|
|
34434
|
+
requiredStartDate?: true
|
|
34435
|
+
requiredWeeklyHours?: true
|
|
34436
|
+
maxHourlyRate?: true
|
|
34437
|
+
maxMonthlyRate?: true
|
|
34438
|
+
requiredIndustries?: true
|
|
34439
|
+
preferredIndustries?: true
|
|
34440
|
+
createdAt?: true
|
|
34441
|
+
updatedAt?: true
|
|
34442
|
+
_all?: true
|
|
34443
|
+
}
|
|
34444
|
+
|
|
34445
|
+
export type RoleHiringCriteriaAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34446
|
+
/**
|
|
34447
|
+
* Filter which RoleHiringCriteria to aggregate.
|
|
34448
|
+
*/
|
|
34449
|
+
where?: RoleHiringCriteriaWhereInput
|
|
34450
|
+
/**
|
|
34451
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
34452
|
+
*
|
|
34453
|
+
* Determine the order of RoleHiringCriteria to fetch.
|
|
34454
|
+
*/
|
|
34455
|
+
orderBy?: RoleHiringCriteriaOrderByWithRelationInput | RoleHiringCriteriaOrderByWithRelationInput[]
|
|
34456
|
+
/**
|
|
34457
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
34458
|
+
*
|
|
34459
|
+
* Sets the start position
|
|
34460
|
+
*/
|
|
34461
|
+
cursor?: RoleHiringCriteriaWhereUniqueInput
|
|
34462
|
+
/**
|
|
34463
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
34464
|
+
*
|
|
34465
|
+
* Take `±n` RoleHiringCriteria from the position of the cursor.
|
|
34466
|
+
*/
|
|
34467
|
+
take?: number
|
|
34468
|
+
/**
|
|
34469
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
34470
|
+
*
|
|
34471
|
+
* Skip the first `n` RoleHiringCriteria.
|
|
34472
|
+
*/
|
|
34473
|
+
skip?: number
|
|
34474
|
+
/**
|
|
34475
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
34476
|
+
*
|
|
34477
|
+
* Count returned RoleHiringCriteria
|
|
34478
|
+
**/
|
|
34479
|
+
_count?: true | RoleHiringCriteriaCountAggregateInputType
|
|
34480
|
+
/**
|
|
34481
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
34482
|
+
*
|
|
34483
|
+
* Select which fields to average
|
|
34484
|
+
**/
|
|
34485
|
+
_avg?: RoleHiringCriteriaAvgAggregateInputType
|
|
34486
|
+
/**
|
|
34487
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
34488
|
+
*
|
|
34489
|
+
* Select which fields to sum
|
|
34490
|
+
**/
|
|
34491
|
+
_sum?: RoleHiringCriteriaSumAggregateInputType
|
|
34492
|
+
/**
|
|
34493
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
34494
|
+
*
|
|
34495
|
+
* Select which fields to find the minimum value
|
|
34496
|
+
**/
|
|
34497
|
+
_min?: RoleHiringCriteriaMinAggregateInputType
|
|
34498
|
+
/**
|
|
34499
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
34500
|
+
*
|
|
34501
|
+
* Select which fields to find the maximum value
|
|
34502
|
+
**/
|
|
34503
|
+
_max?: RoleHiringCriteriaMaxAggregateInputType
|
|
34504
|
+
}
|
|
34505
|
+
|
|
34506
|
+
export type GetRoleHiringCriteriaAggregateType<T extends RoleHiringCriteriaAggregateArgs> = {
|
|
34507
|
+
[P in keyof T & keyof AggregateRoleHiringCriteria]: P extends '_count' | 'count'
|
|
34508
|
+
? T[P] extends true
|
|
34509
|
+
? number
|
|
34510
|
+
: GetScalarType<T[P], AggregateRoleHiringCriteria[P]>
|
|
34511
|
+
: GetScalarType<T[P], AggregateRoleHiringCriteria[P]>
|
|
34512
|
+
}
|
|
34513
|
+
|
|
34514
|
+
|
|
34515
|
+
|
|
34516
|
+
|
|
34517
|
+
export type RoleHiringCriteriaGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34518
|
+
where?: RoleHiringCriteriaWhereInput
|
|
34519
|
+
orderBy?: RoleHiringCriteriaOrderByWithAggregationInput | RoleHiringCriteriaOrderByWithAggregationInput[]
|
|
34520
|
+
by: RoleHiringCriteriaScalarFieldEnum[] | RoleHiringCriteriaScalarFieldEnum
|
|
34521
|
+
having?: RoleHiringCriteriaScalarWhereWithAggregatesInput
|
|
34522
|
+
take?: number
|
|
34523
|
+
skip?: number
|
|
34524
|
+
_count?: RoleHiringCriteriaCountAggregateInputType | true
|
|
34525
|
+
_avg?: RoleHiringCriteriaAvgAggregateInputType
|
|
34526
|
+
_sum?: RoleHiringCriteriaSumAggregateInputType
|
|
34527
|
+
_min?: RoleHiringCriteriaMinAggregateInputType
|
|
34528
|
+
_max?: RoleHiringCriteriaMaxAggregateInputType
|
|
34529
|
+
}
|
|
34530
|
+
|
|
34531
|
+
export type RoleHiringCriteriaGroupByOutputType = {
|
|
34532
|
+
id: string
|
|
34533
|
+
roleId: string
|
|
34534
|
+
missionId: string
|
|
34535
|
+
requiredSpecializations: string[]
|
|
34536
|
+
suggestedSpecializations: string[]
|
|
34537
|
+
requiredSkills: string[]
|
|
34538
|
+
preferredSkills: string[]
|
|
34539
|
+
requiredCountries: string[]
|
|
34540
|
+
preferredCountries: string[]
|
|
34541
|
+
requiredStartDate: Date | null
|
|
34542
|
+
requiredWeeklyHours: number | null
|
|
34543
|
+
maxHourlyRate: number | null
|
|
34544
|
+
maxMonthlyRate: number | null
|
|
34545
|
+
requiredIndustries: string[]
|
|
34546
|
+
preferredIndustries: string[]
|
|
34547
|
+
createdAt: Date | null
|
|
34548
|
+
updatedAt: Date | null
|
|
34549
|
+
_count: RoleHiringCriteriaCountAggregateOutputType | null
|
|
34550
|
+
_avg: RoleHiringCriteriaAvgAggregateOutputType | null
|
|
34551
|
+
_sum: RoleHiringCriteriaSumAggregateOutputType | null
|
|
34552
|
+
_min: RoleHiringCriteriaMinAggregateOutputType | null
|
|
34553
|
+
_max: RoleHiringCriteriaMaxAggregateOutputType | null
|
|
34554
|
+
}
|
|
34555
|
+
|
|
34556
|
+
type GetRoleHiringCriteriaGroupByPayload<T extends RoleHiringCriteriaGroupByArgs> = Prisma.PrismaPromise<
|
|
34557
|
+
Array<
|
|
34558
|
+
PickEnumerable<RoleHiringCriteriaGroupByOutputType, T['by']> &
|
|
34559
|
+
{
|
|
34560
|
+
[P in ((keyof T) & (keyof RoleHiringCriteriaGroupByOutputType))]: P extends '_count'
|
|
34561
|
+
? T[P] extends boolean
|
|
34562
|
+
? number
|
|
34563
|
+
: GetScalarType<T[P], RoleHiringCriteriaGroupByOutputType[P]>
|
|
34564
|
+
: GetScalarType<T[P], RoleHiringCriteriaGroupByOutputType[P]>
|
|
34565
|
+
}
|
|
34566
|
+
>
|
|
34567
|
+
>
|
|
34568
|
+
|
|
34569
|
+
|
|
34570
|
+
export type RoleHiringCriteriaSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
34571
|
+
id?: boolean
|
|
34572
|
+
roleId?: boolean
|
|
34573
|
+
missionId?: boolean
|
|
34574
|
+
requiredSpecializations?: boolean
|
|
34575
|
+
suggestedSpecializations?: boolean
|
|
34576
|
+
requiredSkills?: boolean
|
|
34577
|
+
preferredSkills?: boolean
|
|
34578
|
+
requiredCountries?: boolean
|
|
34579
|
+
preferredCountries?: boolean
|
|
34580
|
+
requiredStartDate?: boolean
|
|
34581
|
+
requiredWeeklyHours?: boolean
|
|
34582
|
+
maxHourlyRate?: boolean
|
|
34583
|
+
maxMonthlyRate?: boolean
|
|
34584
|
+
requiredIndustries?: boolean
|
|
34585
|
+
preferredIndustries?: boolean
|
|
34586
|
+
hardCriteria?: boolean | CriteriaItemDefaultArgs<ExtArgs>
|
|
34587
|
+
weightedCriteria?: boolean | WeightedCriteriaItemDefaultArgs<ExtArgs>
|
|
34588
|
+
createdAt?: boolean
|
|
34589
|
+
updatedAt?: boolean
|
|
34590
|
+
mission?: boolean | MissionDefaultArgs<ExtArgs>
|
|
34591
|
+
}, ExtArgs["result"]["roleHiringCriteria"]>
|
|
34592
|
+
|
|
34593
|
+
|
|
34594
|
+
export type RoleHiringCriteriaSelectScalar = {
|
|
34595
|
+
id?: boolean
|
|
34596
|
+
roleId?: boolean
|
|
34597
|
+
missionId?: boolean
|
|
34598
|
+
requiredSpecializations?: boolean
|
|
34599
|
+
suggestedSpecializations?: boolean
|
|
34600
|
+
requiredSkills?: boolean
|
|
34601
|
+
preferredSkills?: boolean
|
|
34602
|
+
requiredCountries?: boolean
|
|
34603
|
+
preferredCountries?: boolean
|
|
34604
|
+
requiredStartDate?: boolean
|
|
34605
|
+
requiredWeeklyHours?: boolean
|
|
34606
|
+
maxHourlyRate?: boolean
|
|
34607
|
+
maxMonthlyRate?: boolean
|
|
34608
|
+
requiredIndustries?: boolean
|
|
34609
|
+
preferredIndustries?: boolean
|
|
34610
|
+
createdAt?: boolean
|
|
34611
|
+
updatedAt?: boolean
|
|
34612
|
+
}
|
|
34613
|
+
|
|
34614
|
+
export type RoleHiringCriteriaInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34615
|
+
mission?: boolean | MissionDefaultArgs<ExtArgs>
|
|
34616
|
+
}
|
|
34617
|
+
|
|
34618
|
+
export type $RoleHiringCriteriaPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34619
|
+
name: "RoleHiringCriteria"
|
|
34620
|
+
objects: {
|
|
34621
|
+
mission: Prisma.$MissionPayload<ExtArgs>
|
|
34622
|
+
}
|
|
34623
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
34624
|
+
id: string
|
|
34625
|
+
roleId: string
|
|
34626
|
+
missionId: string
|
|
34627
|
+
requiredSpecializations: string[]
|
|
34628
|
+
suggestedSpecializations: string[]
|
|
34629
|
+
requiredSkills: string[]
|
|
34630
|
+
preferredSkills: string[]
|
|
34631
|
+
requiredCountries: string[]
|
|
34632
|
+
preferredCountries: string[]
|
|
34633
|
+
requiredStartDate: Date | null
|
|
34634
|
+
requiredWeeklyHours: number | null
|
|
34635
|
+
maxHourlyRate: number | null
|
|
34636
|
+
maxMonthlyRate: number | null
|
|
34637
|
+
requiredIndustries: string[]
|
|
34638
|
+
preferredIndustries: string[]
|
|
34639
|
+
createdAt: Date | null
|
|
34640
|
+
updatedAt: Date | null
|
|
34641
|
+
}, ExtArgs["result"]["roleHiringCriteria"]>
|
|
34642
|
+
composites: {
|
|
34643
|
+
hardCriteria: Prisma.$CriteriaItemPayload[]
|
|
34644
|
+
weightedCriteria: Prisma.$WeightedCriteriaItemPayload[]
|
|
34645
|
+
}
|
|
34646
|
+
}
|
|
34647
|
+
|
|
34648
|
+
type RoleHiringCriteriaGetPayload<S extends boolean | null | undefined | RoleHiringCriteriaDefaultArgs> = $Result.GetResult<Prisma.$RoleHiringCriteriaPayload, S>
|
|
34649
|
+
|
|
34650
|
+
type RoleHiringCriteriaCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
34651
|
+
Omit<RoleHiringCriteriaFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
34652
|
+
select?: RoleHiringCriteriaCountAggregateInputType | true
|
|
34653
|
+
}
|
|
34654
|
+
|
|
34655
|
+
export interface RoleHiringCriteriaDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
34656
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['RoleHiringCriteria'], meta: { name: 'RoleHiringCriteria' } }
|
|
34657
|
+
/**
|
|
34658
|
+
* Find zero or one RoleHiringCriteria that matches the filter.
|
|
34659
|
+
* @param {RoleHiringCriteriaFindUniqueArgs} args - Arguments to find a RoleHiringCriteria
|
|
34660
|
+
* @example
|
|
34661
|
+
* // Get one RoleHiringCriteria
|
|
34662
|
+
* const roleHiringCriteria = await prisma.roleHiringCriteria.findUnique({
|
|
34663
|
+
* where: {
|
|
34664
|
+
* // ... provide filter here
|
|
34665
|
+
* }
|
|
34666
|
+
* })
|
|
34667
|
+
*/
|
|
34668
|
+
findUnique<T extends RoleHiringCriteriaFindUniqueArgs>(args: SelectSubset<T, RoleHiringCriteriaFindUniqueArgs<ExtArgs>>): Prisma__RoleHiringCriteriaClient<$Result.GetResult<Prisma.$RoleHiringCriteriaPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
34669
|
+
|
|
34670
|
+
/**
|
|
34671
|
+
* Find one RoleHiringCriteria that matches the filter or throw an error with `error.code='P2025'`
|
|
34672
|
+
* if no matches were found.
|
|
34673
|
+
* @param {RoleHiringCriteriaFindUniqueOrThrowArgs} args - Arguments to find a RoleHiringCriteria
|
|
34674
|
+
* @example
|
|
34675
|
+
* // Get one RoleHiringCriteria
|
|
34676
|
+
* const roleHiringCriteria = await prisma.roleHiringCriteria.findUniqueOrThrow({
|
|
34677
|
+
* where: {
|
|
34678
|
+
* // ... provide filter here
|
|
34679
|
+
* }
|
|
34680
|
+
* })
|
|
34681
|
+
*/
|
|
34682
|
+
findUniqueOrThrow<T extends RoleHiringCriteriaFindUniqueOrThrowArgs>(args: SelectSubset<T, RoleHiringCriteriaFindUniqueOrThrowArgs<ExtArgs>>): Prisma__RoleHiringCriteriaClient<$Result.GetResult<Prisma.$RoleHiringCriteriaPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
34683
|
+
|
|
34684
|
+
/**
|
|
34685
|
+
* Find the first RoleHiringCriteria that matches the filter.
|
|
34686
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
34687
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
34688
|
+
* @param {RoleHiringCriteriaFindFirstArgs} args - Arguments to find a RoleHiringCriteria
|
|
34689
|
+
* @example
|
|
34690
|
+
* // Get one RoleHiringCriteria
|
|
34691
|
+
* const roleHiringCriteria = await prisma.roleHiringCriteria.findFirst({
|
|
34692
|
+
* where: {
|
|
34693
|
+
* // ... provide filter here
|
|
34694
|
+
* }
|
|
34695
|
+
* })
|
|
34696
|
+
*/
|
|
34697
|
+
findFirst<T extends RoleHiringCriteriaFindFirstArgs>(args?: SelectSubset<T, RoleHiringCriteriaFindFirstArgs<ExtArgs>>): Prisma__RoleHiringCriteriaClient<$Result.GetResult<Prisma.$RoleHiringCriteriaPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
34698
|
+
|
|
34699
|
+
/**
|
|
34700
|
+
* Find the first RoleHiringCriteria that matches the filter or
|
|
34701
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
34702
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
34703
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
34704
|
+
* @param {RoleHiringCriteriaFindFirstOrThrowArgs} args - Arguments to find a RoleHiringCriteria
|
|
34705
|
+
* @example
|
|
34706
|
+
* // Get one RoleHiringCriteria
|
|
34707
|
+
* const roleHiringCriteria = await prisma.roleHiringCriteria.findFirstOrThrow({
|
|
34708
|
+
* where: {
|
|
34709
|
+
* // ... provide filter here
|
|
34710
|
+
* }
|
|
34711
|
+
* })
|
|
34712
|
+
*/
|
|
34713
|
+
findFirstOrThrow<T extends RoleHiringCriteriaFindFirstOrThrowArgs>(args?: SelectSubset<T, RoleHiringCriteriaFindFirstOrThrowArgs<ExtArgs>>): Prisma__RoleHiringCriteriaClient<$Result.GetResult<Prisma.$RoleHiringCriteriaPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
34714
|
+
|
|
34715
|
+
/**
|
|
34716
|
+
* Find zero or more RoleHiringCriteria that matches the filter.
|
|
34717
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
34718
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
34719
|
+
* @param {RoleHiringCriteriaFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
34720
|
+
* @example
|
|
34721
|
+
* // Get all RoleHiringCriteria
|
|
34722
|
+
* const roleHiringCriteria = await prisma.roleHiringCriteria.findMany()
|
|
34723
|
+
*
|
|
34724
|
+
* // Get first 10 RoleHiringCriteria
|
|
34725
|
+
* const roleHiringCriteria = await prisma.roleHiringCriteria.findMany({ take: 10 })
|
|
34726
|
+
*
|
|
34727
|
+
* // Only select the `id`
|
|
34728
|
+
* const roleHiringCriteriaWithIdOnly = await prisma.roleHiringCriteria.findMany({ select: { id: true } })
|
|
34729
|
+
*
|
|
34730
|
+
*/
|
|
34731
|
+
findMany<T extends RoleHiringCriteriaFindManyArgs>(args?: SelectSubset<T, RoleHiringCriteriaFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RoleHiringCriteriaPayload<ExtArgs>, T, "findMany">>
|
|
34732
|
+
|
|
34733
|
+
/**
|
|
34734
|
+
* Create a RoleHiringCriteria.
|
|
34735
|
+
* @param {RoleHiringCriteriaCreateArgs} args - Arguments to create a RoleHiringCriteria.
|
|
34736
|
+
* @example
|
|
34737
|
+
* // Create one RoleHiringCriteria
|
|
34738
|
+
* const RoleHiringCriteria = await prisma.roleHiringCriteria.create({
|
|
34739
|
+
* data: {
|
|
34740
|
+
* // ... data to create a RoleHiringCriteria
|
|
34741
|
+
* }
|
|
34742
|
+
* })
|
|
34743
|
+
*
|
|
34744
|
+
*/
|
|
34745
|
+
create<T extends RoleHiringCriteriaCreateArgs>(args: SelectSubset<T, RoleHiringCriteriaCreateArgs<ExtArgs>>): Prisma__RoleHiringCriteriaClient<$Result.GetResult<Prisma.$RoleHiringCriteriaPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
34746
|
+
|
|
34747
|
+
/**
|
|
34748
|
+
* Create many RoleHiringCriteria.
|
|
34749
|
+
* @param {RoleHiringCriteriaCreateManyArgs} args - Arguments to create many RoleHiringCriteria.
|
|
34750
|
+
* @example
|
|
34751
|
+
* // Create many RoleHiringCriteria
|
|
34752
|
+
* const roleHiringCriteria = await prisma.roleHiringCriteria.createMany({
|
|
34753
|
+
* data: [
|
|
34754
|
+
* // ... provide data here
|
|
34755
|
+
* ]
|
|
34756
|
+
* })
|
|
34757
|
+
*
|
|
34758
|
+
*/
|
|
34759
|
+
createMany<T extends RoleHiringCriteriaCreateManyArgs>(args?: SelectSubset<T, RoleHiringCriteriaCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
34760
|
+
|
|
34761
|
+
/**
|
|
34762
|
+
* Delete a RoleHiringCriteria.
|
|
34763
|
+
* @param {RoleHiringCriteriaDeleteArgs} args - Arguments to delete one RoleHiringCriteria.
|
|
34764
|
+
* @example
|
|
34765
|
+
* // Delete one RoleHiringCriteria
|
|
34766
|
+
* const RoleHiringCriteria = await prisma.roleHiringCriteria.delete({
|
|
34767
|
+
* where: {
|
|
34768
|
+
* // ... filter to delete one RoleHiringCriteria
|
|
34769
|
+
* }
|
|
34770
|
+
* })
|
|
34771
|
+
*
|
|
34772
|
+
*/
|
|
34773
|
+
delete<T extends RoleHiringCriteriaDeleteArgs>(args: SelectSubset<T, RoleHiringCriteriaDeleteArgs<ExtArgs>>): Prisma__RoleHiringCriteriaClient<$Result.GetResult<Prisma.$RoleHiringCriteriaPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
34774
|
+
|
|
34775
|
+
/**
|
|
34776
|
+
* Update one RoleHiringCriteria.
|
|
34777
|
+
* @param {RoleHiringCriteriaUpdateArgs} args - Arguments to update one RoleHiringCriteria.
|
|
34778
|
+
* @example
|
|
34779
|
+
* // Update one RoleHiringCriteria
|
|
34780
|
+
* const roleHiringCriteria = await prisma.roleHiringCriteria.update({
|
|
34781
|
+
* where: {
|
|
34782
|
+
* // ... provide filter here
|
|
34783
|
+
* },
|
|
34784
|
+
* data: {
|
|
34785
|
+
* // ... provide data here
|
|
34786
|
+
* }
|
|
34787
|
+
* })
|
|
34788
|
+
*
|
|
34789
|
+
*/
|
|
34790
|
+
update<T extends RoleHiringCriteriaUpdateArgs>(args: SelectSubset<T, RoleHiringCriteriaUpdateArgs<ExtArgs>>): Prisma__RoleHiringCriteriaClient<$Result.GetResult<Prisma.$RoleHiringCriteriaPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
34791
|
+
|
|
34792
|
+
/**
|
|
34793
|
+
* Delete zero or more RoleHiringCriteria.
|
|
34794
|
+
* @param {RoleHiringCriteriaDeleteManyArgs} args - Arguments to filter RoleHiringCriteria to delete.
|
|
34795
|
+
* @example
|
|
34796
|
+
* // Delete a few RoleHiringCriteria
|
|
34797
|
+
* const { count } = await prisma.roleHiringCriteria.deleteMany({
|
|
34798
|
+
* where: {
|
|
34799
|
+
* // ... provide filter here
|
|
34800
|
+
* }
|
|
34801
|
+
* })
|
|
34802
|
+
*
|
|
34803
|
+
*/
|
|
34804
|
+
deleteMany<T extends RoleHiringCriteriaDeleteManyArgs>(args?: SelectSubset<T, RoleHiringCriteriaDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
34805
|
+
|
|
34806
|
+
/**
|
|
34807
|
+
* Update zero or more RoleHiringCriteria.
|
|
34808
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
34809
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
34810
|
+
* @param {RoleHiringCriteriaUpdateManyArgs} args - Arguments to update one or more rows.
|
|
34811
|
+
* @example
|
|
34812
|
+
* // Update many RoleHiringCriteria
|
|
34813
|
+
* const roleHiringCriteria = await prisma.roleHiringCriteria.updateMany({
|
|
34814
|
+
* where: {
|
|
34815
|
+
* // ... provide filter here
|
|
34816
|
+
* },
|
|
34817
|
+
* data: {
|
|
34818
|
+
* // ... provide data here
|
|
34819
|
+
* }
|
|
34820
|
+
* })
|
|
34821
|
+
*
|
|
34822
|
+
*/
|
|
34823
|
+
updateMany<T extends RoleHiringCriteriaUpdateManyArgs>(args: SelectSubset<T, RoleHiringCriteriaUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
34824
|
+
|
|
34825
|
+
/**
|
|
34826
|
+
* Create or update one RoleHiringCriteria.
|
|
34827
|
+
* @param {RoleHiringCriteriaUpsertArgs} args - Arguments to update or create a RoleHiringCriteria.
|
|
34828
|
+
* @example
|
|
34829
|
+
* // Update or create a RoleHiringCriteria
|
|
34830
|
+
* const roleHiringCriteria = await prisma.roleHiringCriteria.upsert({
|
|
34831
|
+
* create: {
|
|
34832
|
+
* // ... data to create a RoleHiringCriteria
|
|
34833
|
+
* },
|
|
34834
|
+
* update: {
|
|
34835
|
+
* // ... in case it already exists, update
|
|
34836
|
+
* },
|
|
34837
|
+
* where: {
|
|
34838
|
+
* // ... the filter for the RoleHiringCriteria we want to update
|
|
34839
|
+
* }
|
|
34840
|
+
* })
|
|
34841
|
+
*/
|
|
34842
|
+
upsert<T extends RoleHiringCriteriaUpsertArgs>(args: SelectSubset<T, RoleHiringCriteriaUpsertArgs<ExtArgs>>): Prisma__RoleHiringCriteriaClient<$Result.GetResult<Prisma.$RoleHiringCriteriaPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
34843
|
+
|
|
34844
|
+
/**
|
|
34845
|
+
* Find zero or more RoleHiringCriteria that matches the filter.
|
|
34846
|
+
* @param {RoleHiringCriteriaFindRawArgs} args - Select which filters you would like to apply.
|
|
34847
|
+
* @example
|
|
34848
|
+
* const roleHiringCriteria = await prisma.roleHiringCriteria.findRaw({
|
|
34849
|
+
* filter: { age: { $gt: 25 } }
|
|
34850
|
+
* })
|
|
34851
|
+
*/
|
|
34852
|
+
findRaw(args?: RoleHiringCriteriaFindRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
34853
|
+
|
|
34854
|
+
/**
|
|
34855
|
+
* Perform aggregation operations on a RoleHiringCriteria.
|
|
34856
|
+
* @param {RoleHiringCriteriaAggregateRawArgs} args - Select which aggregations you would like to apply.
|
|
34857
|
+
* @example
|
|
34858
|
+
* const roleHiringCriteria = await prisma.roleHiringCriteria.aggregateRaw({
|
|
34859
|
+
* pipeline: [
|
|
34860
|
+
* { $match: { status: "registered" } },
|
|
34861
|
+
* { $group: { _id: "$country", total: { $sum: 1 } } }
|
|
34862
|
+
* ]
|
|
34863
|
+
* })
|
|
34864
|
+
*/
|
|
34865
|
+
aggregateRaw(args?: RoleHiringCriteriaAggregateRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
34866
|
+
|
|
34867
|
+
|
|
34868
|
+
/**
|
|
34869
|
+
* Count the number of RoleHiringCriteria.
|
|
34870
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
34871
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
34872
|
+
* @param {RoleHiringCriteriaCountArgs} args - Arguments to filter RoleHiringCriteria to count.
|
|
34873
|
+
* @example
|
|
34874
|
+
* // Count the number of RoleHiringCriteria
|
|
34875
|
+
* const count = await prisma.roleHiringCriteria.count({
|
|
34876
|
+
* where: {
|
|
34877
|
+
* // ... the filter for the RoleHiringCriteria we want to count
|
|
34878
|
+
* }
|
|
34879
|
+
* })
|
|
34880
|
+
**/
|
|
34881
|
+
count<T extends RoleHiringCriteriaCountArgs>(
|
|
34882
|
+
args?: Subset<T, RoleHiringCriteriaCountArgs>,
|
|
34883
|
+
): Prisma.PrismaPromise<
|
|
34884
|
+
T extends $Utils.Record<'select', any>
|
|
34885
|
+
? T['select'] extends true
|
|
34886
|
+
? number
|
|
34887
|
+
: GetScalarType<T['select'], RoleHiringCriteriaCountAggregateOutputType>
|
|
34888
|
+
: number
|
|
34889
|
+
>
|
|
34890
|
+
|
|
34891
|
+
/**
|
|
34892
|
+
* Allows you to perform aggregations operations on a RoleHiringCriteria.
|
|
34893
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
34894
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
34895
|
+
* @param {RoleHiringCriteriaAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
34896
|
+
* @example
|
|
34897
|
+
* // Ordered by age ascending
|
|
34898
|
+
* // Where email contains prisma.io
|
|
34899
|
+
* // Limited to the 10 users
|
|
34900
|
+
* const aggregations = await prisma.user.aggregate({
|
|
34901
|
+
* _avg: {
|
|
34902
|
+
* age: true,
|
|
34903
|
+
* },
|
|
34904
|
+
* where: {
|
|
34905
|
+
* email: {
|
|
34906
|
+
* contains: "prisma.io",
|
|
34907
|
+
* },
|
|
34908
|
+
* },
|
|
34909
|
+
* orderBy: {
|
|
34910
|
+
* age: "asc",
|
|
34911
|
+
* },
|
|
34912
|
+
* take: 10,
|
|
34913
|
+
* })
|
|
34914
|
+
**/
|
|
34915
|
+
aggregate<T extends RoleHiringCriteriaAggregateArgs>(args: Subset<T, RoleHiringCriteriaAggregateArgs>): Prisma.PrismaPromise<GetRoleHiringCriteriaAggregateType<T>>
|
|
34916
|
+
|
|
34917
|
+
/**
|
|
34918
|
+
* Group by RoleHiringCriteria.
|
|
34919
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
34920
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
34921
|
+
* @param {RoleHiringCriteriaGroupByArgs} args - Group by arguments.
|
|
34922
|
+
* @example
|
|
34923
|
+
* // Group by city, order by createdAt, get count
|
|
34924
|
+
* const result = await prisma.user.groupBy({
|
|
34925
|
+
* by: ['city', 'createdAt'],
|
|
34926
|
+
* orderBy: {
|
|
34927
|
+
* createdAt: true
|
|
34928
|
+
* },
|
|
34929
|
+
* _count: {
|
|
34930
|
+
* _all: true
|
|
34931
|
+
* },
|
|
34932
|
+
* })
|
|
34933
|
+
*
|
|
34934
|
+
**/
|
|
34935
|
+
groupBy<
|
|
34936
|
+
T extends RoleHiringCriteriaGroupByArgs,
|
|
34937
|
+
HasSelectOrTake extends Or<
|
|
34938
|
+
Extends<'skip', Keys<T>>,
|
|
34939
|
+
Extends<'take', Keys<T>>
|
|
34940
|
+
>,
|
|
34941
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
34942
|
+
? { orderBy: RoleHiringCriteriaGroupByArgs['orderBy'] }
|
|
34943
|
+
: { orderBy?: RoleHiringCriteriaGroupByArgs['orderBy'] },
|
|
34944
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
34945
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
34946
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
34947
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
34948
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
34949
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
34950
|
+
InputErrors extends ByEmpty extends True
|
|
34951
|
+
? `Error: "by" must not be empty.`
|
|
34952
|
+
: HavingValid extends False
|
|
34953
|
+
? {
|
|
34954
|
+
[P in HavingFields]: P extends ByFields
|
|
34955
|
+
? never
|
|
34956
|
+
: P extends string
|
|
34957
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
34958
|
+
: [
|
|
34959
|
+
Error,
|
|
34960
|
+
'Field ',
|
|
34961
|
+
P,
|
|
34962
|
+
` in "having" needs to be provided in "by"`,
|
|
34963
|
+
]
|
|
34964
|
+
}[HavingFields]
|
|
34965
|
+
: 'take' extends Keys<T>
|
|
34966
|
+
? 'orderBy' extends Keys<T>
|
|
34967
|
+
? ByValid extends True
|
|
34968
|
+
? {}
|
|
34969
|
+
: {
|
|
34970
|
+
[P in OrderFields]: P extends ByFields
|
|
34971
|
+
? never
|
|
34972
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
34973
|
+
}[OrderFields]
|
|
34974
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
34975
|
+
: 'skip' extends Keys<T>
|
|
34976
|
+
? 'orderBy' extends Keys<T>
|
|
34977
|
+
? ByValid extends True
|
|
34978
|
+
? {}
|
|
34979
|
+
: {
|
|
34980
|
+
[P in OrderFields]: P extends ByFields
|
|
34981
|
+
? never
|
|
34982
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
34983
|
+
}[OrderFields]
|
|
34984
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
34985
|
+
: ByValid extends True
|
|
34986
|
+
? {}
|
|
34987
|
+
: {
|
|
34988
|
+
[P in OrderFields]: P extends ByFields
|
|
34989
|
+
? never
|
|
34990
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
34991
|
+
}[OrderFields]
|
|
34992
|
+
>(args: SubsetIntersection<T, RoleHiringCriteriaGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetRoleHiringCriteriaGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
34993
|
+
/**
|
|
34994
|
+
* Fields of the RoleHiringCriteria model
|
|
34995
|
+
*/
|
|
34996
|
+
readonly fields: RoleHiringCriteriaFieldRefs;
|
|
34997
|
+
}
|
|
34998
|
+
|
|
34999
|
+
/**
|
|
35000
|
+
* The delegate class that acts as a "Promise-like" for RoleHiringCriteria.
|
|
35001
|
+
* Why is this prefixed with `Prisma__`?
|
|
35002
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
35003
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
35004
|
+
*/
|
|
35005
|
+
export interface Prisma__RoleHiringCriteriaClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
35006
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
35007
|
+
mission<T extends MissionDefaultArgs<ExtArgs> = {}>(args?: Subset<T, MissionDefaultArgs<ExtArgs>>): Prisma__MissionClient<$Result.GetResult<Prisma.$MissionPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
35008
|
+
/**
|
|
35009
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
35010
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
35011
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
35012
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
35013
|
+
*/
|
|
35014
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>
|
|
35015
|
+
/**
|
|
35016
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
35017
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
35018
|
+
* @returns A Promise for the completion of the callback.
|
|
35019
|
+
*/
|
|
35020
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
35021
|
+
/**
|
|
35022
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
35023
|
+
* resolved value cannot be modified from the callback.
|
|
35024
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
35025
|
+
* @returns A Promise for the completion of the callback.
|
|
35026
|
+
*/
|
|
35027
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
35028
|
+
}
|
|
35029
|
+
|
|
35030
|
+
|
|
35031
|
+
|
|
35032
|
+
|
|
35033
|
+
/**
|
|
35034
|
+
* Fields of the RoleHiringCriteria model
|
|
33716
35035
|
*/
|
|
33717
|
-
interface
|
|
33718
|
-
readonly id: FieldRef<"
|
|
33719
|
-
readonly
|
|
33720
|
-
readonly
|
|
33721
|
-
readonly
|
|
33722
|
-
readonly
|
|
33723
|
-
readonly
|
|
35036
|
+
interface RoleHiringCriteriaFieldRefs {
|
|
35037
|
+
readonly id: FieldRef<"RoleHiringCriteria", 'String'>
|
|
35038
|
+
readonly roleId: FieldRef<"RoleHiringCriteria", 'String'>
|
|
35039
|
+
readonly missionId: FieldRef<"RoleHiringCriteria", 'String'>
|
|
35040
|
+
readonly requiredSpecializations: FieldRef<"RoleHiringCriteria", 'String[]'>
|
|
35041
|
+
readonly suggestedSpecializations: FieldRef<"RoleHiringCriteria", 'String[]'>
|
|
35042
|
+
readonly requiredSkills: FieldRef<"RoleHiringCriteria", 'String[]'>
|
|
35043
|
+
readonly preferredSkills: FieldRef<"RoleHiringCriteria", 'String[]'>
|
|
35044
|
+
readonly requiredCountries: FieldRef<"RoleHiringCriteria", 'String[]'>
|
|
35045
|
+
readonly preferredCountries: FieldRef<"RoleHiringCriteria", 'String[]'>
|
|
35046
|
+
readonly requiredStartDate: FieldRef<"RoleHiringCriteria", 'DateTime'>
|
|
35047
|
+
readonly requiredWeeklyHours: FieldRef<"RoleHiringCriteria", 'Int'>
|
|
35048
|
+
readonly maxHourlyRate: FieldRef<"RoleHiringCriteria", 'Float'>
|
|
35049
|
+
readonly maxMonthlyRate: FieldRef<"RoleHiringCriteria", 'Float'>
|
|
35050
|
+
readonly requiredIndustries: FieldRef<"RoleHiringCriteria", 'String[]'>
|
|
35051
|
+
readonly preferredIndustries: FieldRef<"RoleHiringCriteria", 'String[]'>
|
|
35052
|
+
readonly createdAt: FieldRef<"RoleHiringCriteria", 'DateTime'>
|
|
35053
|
+
readonly updatedAt: FieldRef<"RoleHiringCriteria", 'DateTime'>
|
|
33724
35054
|
}
|
|
33725
35055
|
|
|
33726
35056
|
|
|
33727
35057
|
// Custom InputTypes
|
|
33728
35058
|
/**
|
|
33729
|
-
*
|
|
35059
|
+
* RoleHiringCriteria findUnique
|
|
33730
35060
|
*/
|
|
33731
|
-
export type
|
|
35061
|
+
export type RoleHiringCriteriaFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33732
35062
|
/**
|
|
33733
|
-
* Select specific fields to fetch from the
|
|
35063
|
+
* Select specific fields to fetch from the RoleHiringCriteria
|
|
33734
35064
|
*/
|
|
33735
|
-
select?:
|
|
35065
|
+
select?: RoleHiringCriteriaSelect<ExtArgs> | null
|
|
33736
35066
|
/**
|
|
33737
|
-
*
|
|
35067
|
+
* Choose, which related nodes to fetch as well
|
|
33738
35068
|
*/
|
|
33739
|
-
|
|
35069
|
+
include?: RoleHiringCriteriaInclude<ExtArgs> | null
|
|
35070
|
+
/**
|
|
35071
|
+
* Filter, which RoleHiringCriteria to fetch.
|
|
35072
|
+
*/
|
|
35073
|
+
where: RoleHiringCriteriaWhereUniqueInput
|
|
33740
35074
|
}
|
|
33741
35075
|
|
|
33742
35076
|
/**
|
|
33743
|
-
*
|
|
35077
|
+
* RoleHiringCriteria findUniqueOrThrow
|
|
33744
35078
|
*/
|
|
33745
|
-
export type
|
|
35079
|
+
export type RoleHiringCriteriaFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33746
35080
|
/**
|
|
33747
|
-
* Select specific fields to fetch from the
|
|
35081
|
+
* Select specific fields to fetch from the RoleHiringCriteria
|
|
33748
35082
|
*/
|
|
33749
|
-
select?:
|
|
35083
|
+
select?: RoleHiringCriteriaSelect<ExtArgs> | null
|
|
33750
35084
|
/**
|
|
33751
|
-
*
|
|
35085
|
+
* Choose, which related nodes to fetch as well
|
|
33752
35086
|
*/
|
|
33753
|
-
|
|
35087
|
+
include?: RoleHiringCriteriaInclude<ExtArgs> | null
|
|
35088
|
+
/**
|
|
35089
|
+
* Filter, which RoleHiringCriteria to fetch.
|
|
35090
|
+
*/
|
|
35091
|
+
where: RoleHiringCriteriaWhereUniqueInput
|
|
33754
35092
|
}
|
|
33755
35093
|
|
|
33756
35094
|
/**
|
|
33757
|
-
*
|
|
35095
|
+
* RoleHiringCriteria findFirst
|
|
33758
35096
|
*/
|
|
33759
|
-
export type
|
|
35097
|
+
export type RoleHiringCriteriaFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33760
35098
|
/**
|
|
33761
|
-
* Select specific fields to fetch from the
|
|
35099
|
+
* Select specific fields to fetch from the RoleHiringCriteria
|
|
33762
35100
|
*/
|
|
33763
|
-
select?:
|
|
35101
|
+
select?: RoleHiringCriteriaSelect<ExtArgs> | null
|
|
33764
35102
|
/**
|
|
33765
|
-
*
|
|
35103
|
+
* Choose, which related nodes to fetch as well
|
|
33766
35104
|
*/
|
|
33767
|
-
|
|
35105
|
+
include?: RoleHiringCriteriaInclude<ExtArgs> | null
|
|
35106
|
+
/**
|
|
35107
|
+
* Filter, which RoleHiringCriteria to fetch.
|
|
35108
|
+
*/
|
|
35109
|
+
where?: RoleHiringCriteriaWhereInput
|
|
33768
35110
|
/**
|
|
33769
35111
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
33770
35112
|
*
|
|
33771
|
-
* Determine the order of
|
|
35113
|
+
* Determine the order of RoleHiringCriteria to fetch.
|
|
33772
35114
|
*/
|
|
33773
|
-
orderBy?:
|
|
35115
|
+
orderBy?: RoleHiringCriteriaOrderByWithRelationInput | RoleHiringCriteriaOrderByWithRelationInput[]
|
|
33774
35116
|
/**
|
|
33775
35117
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
33776
35118
|
*
|
|
33777
|
-
* Sets the position for searching for
|
|
35119
|
+
* Sets the position for searching for RoleHiringCriteria.
|
|
33778
35120
|
*/
|
|
33779
|
-
cursor?:
|
|
35121
|
+
cursor?: RoleHiringCriteriaWhereUniqueInput
|
|
33780
35122
|
/**
|
|
33781
35123
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
33782
35124
|
*
|
|
33783
|
-
* Take `±n`
|
|
35125
|
+
* Take `±n` RoleHiringCriteria from the position of the cursor.
|
|
33784
35126
|
*/
|
|
33785
35127
|
take?: number
|
|
33786
35128
|
/**
|
|
33787
35129
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
33788
35130
|
*
|
|
33789
|
-
* Skip the first `n`
|
|
35131
|
+
* Skip the first `n` RoleHiringCriteria.
|
|
33790
35132
|
*/
|
|
33791
35133
|
skip?: number
|
|
33792
35134
|
/**
|
|
33793
35135
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
33794
35136
|
*
|
|
33795
|
-
* Filter by unique combinations of
|
|
35137
|
+
* Filter by unique combinations of RoleHiringCriteria.
|
|
33796
35138
|
*/
|
|
33797
|
-
distinct?:
|
|
35139
|
+
distinct?: RoleHiringCriteriaScalarFieldEnum | RoleHiringCriteriaScalarFieldEnum[]
|
|
33798
35140
|
}
|
|
33799
35141
|
|
|
33800
35142
|
/**
|
|
33801
|
-
*
|
|
35143
|
+
* RoleHiringCriteria findFirstOrThrow
|
|
33802
35144
|
*/
|
|
33803
|
-
export type
|
|
35145
|
+
export type RoleHiringCriteriaFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33804
35146
|
/**
|
|
33805
|
-
* Select specific fields to fetch from the
|
|
35147
|
+
* Select specific fields to fetch from the RoleHiringCriteria
|
|
33806
35148
|
*/
|
|
33807
|
-
select?:
|
|
35149
|
+
select?: RoleHiringCriteriaSelect<ExtArgs> | null
|
|
33808
35150
|
/**
|
|
33809
|
-
*
|
|
35151
|
+
* Choose, which related nodes to fetch as well
|
|
33810
35152
|
*/
|
|
33811
|
-
|
|
35153
|
+
include?: RoleHiringCriteriaInclude<ExtArgs> | null
|
|
35154
|
+
/**
|
|
35155
|
+
* Filter, which RoleHiringCriteria to fetch.
|
|
35156
|
+
*/
|
|
35157
|
+
where?: RoleHiringCriteriaWhereInput
|
|
33812
35158
|
/**
|
|
33813
35159
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
33814
35160
|
*
|
|
33815
|
-
* Determine the order of
|
|
35161
|
+
* Determine the order of RoleHiringCriteria to fetch.
|
|
33816
35162
|
*/
|
|
33817
|
-
orderBy?:
|
|
35163
|
+
orderBy?: RoleHiringCriteriaOrderByWithRelationInput | RoleHiringCriteriaOrderByWithRelationInput[]
|
|
33818
35164
|
/**
|
|
33819
35165
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
33820
35166
|
*
|
|
33821
|
-
* Sets the position for searching for
|
|
35167
|
+
* Sets the position for searching for RoleHiringCriteria.
|
|
33822
35168
|
*/
|
|
33823
|
-
cursor?:
|
|
35169
|
+
cursor?: RoleHiringCriteriaWhereUniqueInput
|
|
33824
35170
|
/**
|
|
33825
35171
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
33826
35172
|
*
|
|
33827
|
-
* Take `±n`
|
|
35173
|
+
* Take `±n` RoleHiringCriteria from the position of the cursor.
|
|
33828
35174
|
*/
|
|
33829
35175
|
take?: number
|
|
33830
35176
|
/**
|
|
33831
35177
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
33832
35178
|
*
|
|
33833
|
-
* Skip the first `n`
|
|
35179
|
+
* Skip the first `n` RoleHiringCriteria.
|
|
33834
35180
|
*/
|
|
33835
35181
|
skip?: number
|
|
33836
35182
|
/**
|
|
33837
35183
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
33838
35184
|
*
|
|
33839
|
-
* Filter by unique combinations of
|
|
35185
|
+
* Filter by unique combinations of RoleHiringCriteria.
|
|
33840
35186
|
*/
|
|
33841
|
-
distinct?:
|
|
35187
|
+
distinct?: RoleHiringCriteriaScalarFieldEnum | RoleHiringCriteriaScalarFieldEnum[]
|
|
33842
35188
|
}
|
|
33843
35189
|
|
|
33844
35190
|
/**
|
|
33845
|
-
*
|
|
35191
|
+
* RoleHiringCriteria findMany
|
|
33846
35192
|
*/
|
|
33847
|
-
export type
|
|
35193
|
+
export type RoleHiringCriteriaFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33848
35194
|
/**
|
|
33849
|
-
* Select specific fields to fetch from the
|
|
35195
|
+
* Select specific fields to fetch from the RoleHiringCriteria
|
|
33850
35196
|
*/
|
|
33851
|
-
select?:
|
|
35197
|
+
select?: RoleHiringCriteriaSelect<ExtArgs> | null
|
|
33852
35198
|
/**
|
|
33853
|
-
*
|
|
35199
|
+
* Choose, which related nodes to fetch as well
|
|
33854
35200
|
*/
|
|
33855
|
-
|
|
35201
|
+
include?: RoleHiringCriteriaInclude<ExtArgs> | null
|
|
35202
|
+
/**
|
|
35203
|
+
* Filter, which RoleHiringCriteria to fetch.
|
|
35204
|
+
*/
|
|
35205
|
+
where?: RoleHiringCriteriaWhereInput
|
|
33856
35206
|
/**
|
|
33857
35207
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
33858
35208
|
*
|
|
33859
|
-
* Determine the order of
|
|
35209
|
+
* Determine the order of RoleHiringCriteria to fetch.
|
|
33860
35210
|
*/
|
|
33861
|
-
orderBy?:
|
|
35211
|
+
orderBy?: RoleHiringCriteriaOrderByWithRelationInput | RoleHiringCriteriaOrderByWithRelationInput[]
|
|
33862
35212
|
/**
|
|
33863
35213
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
33864
35214
|
*
|
|
33865
|
-
* Sets the position for listing
|
|
35215
|
+
* Sets the position for listing RoleHiringCriteria.
|
|
33866
35216
|
*/
|
|
33867
|
-
cursor?:
|
|
35217
|
+
cursor?: RoleHiringCriteriaWhereUniqueInput
|
|
33868
35218
|
/**
|
|
33869
35219
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
33870
35220
|
*
|
|
33871
|
-
* Take `±n`
|
|
35221
|
+
* Take `±n` RoleHiringCriteria from the position of the cursor.
|
|
33872
35222
|
*/
|
|
33873
35223
|
take?: number
|
|
33874
35224
|
/**
|
|
33875
35225
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
33876
35226
|
*
|
|
33877
|
-
* Skip the first `n`
|
|
35227
|
+
* Skip the first `n` RoleHiringCriteria.
|
|
33878
35228
|
*/
|
|
33879
35229
|
skip?: number
|
|
33880
|
-
distinct?:
|
|
35230
|
+
distinct?: RoleHiringCriteriaScalarFieldEnum | RoleHiringCriteriaScalarFieldEnum[]
|
|
33881
35231
|
}
|
|
33882
35232
|
|
|
33883
35233
|
/**
|
|
33884
|
-
*
|
|
35234
|
+
* RoleHiringCriteria create
|
|
33885
35235
|
*/
|
|
33886
|
-
export type
|
|
35236
|
+
export type RoleHiringCriteriaCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33887
35237
|
/**
|
|
33888
|
-
* Select specific fields to fetch from the
|
|
35238
|
+
* Select specific fields to fetch from the RoleHiringCriteria
|
|
33889
35239
|
*/
|
|
33890
|
-
select?:
|
|
35240
|
+
select?: RoleHiringCriteriaSelect<ExtArgs> | null
|
|
33891
35241
|
/**
|
|
33892
|
-
*
|
|
35242
|
+
* Choose, which related nodes to fetch as well
|
|
33893
35243
|
*/
|
|
33894
|
-
|
|
35244
|
+
include?: RoleHiringCriteriaInclude<ExtArgs> | null
|
|
35245
|
+
/**
|
|
35246
|
+
* The data needed to create a RoleHiringCriteria.
|
|
35247
|
+
*/
|
|
35248
|
+
data: XOR<RoleHiringCriteriaCreateInput, RoleHiringCriteriaUncheckedCreateInput>
|
|
33895
35249
|
}
|
|
33896
35250
|
|
|
33897
35251
|
/**
|
|
33898
|
-
*
|
|
35252
|
+
* RoleHiringCriteria createMany
|
|
33899
35253
|
*/
|
|
33900
|
-
export type
|
|
35254
|
+
export type RoleHiringCriteriaCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33901
35255
|
/**
|
|
33902
|
-
* The data used to create many
|
|
35256
|
+
* The data used to create many RoleHiringCriteria.
|
|
33903
35257
|
*/
|
|
33904
|
-
data:
|
|
35258
|
+
data: RoleHiringCriteriaCreateManyInput | RoleHiringCriteriaCreateManyInput[]
|
|
33905
35259
|
}
|
|
33906
35260
|
|
|
33907
35261
|
/**
|
|
33908
|
-
*
|
|
35262
|
+
* RoleHiringCriteria update
|
|
33909
35263
|
*/
|
|
33910
|
-
export type
|
|
35264
|
+
export type RoleHiringCriteriaUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33911
35265
|
/**
|
|
33912
|
-
* Select specific fields to fetch from the
|
|
35266
|
+
* Select specific fields to fetch from the RoleHiringCriteria
|
|
33913
35267
|
*/
|
|
33914
|
-
select?:
|
|
35268
|
+
select?: RoleHiringCriteriaSelect<ExtArgs> | null
|
|
33915
35269
|
/**
|
|
33916
|
-
*
|
|
35270
|
+
* Choose, which related nodes to fetch as well
|
|
33917
35271
|
*/
|
|
33918
|
-
|
|
35272
|
+
include?: RoleHiringCriteriaInclude<ExtArgs> | null
|
|
33919
35273
|
/**
|
|
33920
|
-
*
|
|
35274
|
+
* The data needed to update a RoleHiringCriteria.
|
|
33921
35275
|
*/
|
|
33922
|
-
|
|
35276
|
+
data: XOR<RoleHiringCriteriaUpdateInput, RoleHiringCriteriaUncheckedUpdateInput>
|
|
35277
|
+
/**
|
|
35278
|
+
* Choose, which RoleHiringCriteria to update.
|
|
35279
|
+
*/
|
|
35280
|
+
where: RoleHiringCriteriaWhereUniqueInput
|
|
33923
35281
|
}
|
|
33924
35282
|
|
|
33925
35283
|
/**
|
|
33926
|
-
*
|
|
35284
|
+
* RoleHiringCriteria updateMany
|
|
33927
35285
|
*/
|
|
33928
|
-
export type
|
|
35286
|
+
export type RoleHiringCriteriaUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33929
35287
|
/**
|
|
33930
|
-
* The data used to update
|
|
35288
|
+
* The data used to update RoleHiringCriteria.
|
|
33931
35289
|
*/
|
|
33932
|
-
data: XOR<
|
|
35290
|
+
data: XOR<RoleHiringCriteriaUpdateManyMutationInput, RoleHiringCriteriaUncheckedUpdateManyInput>
|
|
33933
35291
|
/**
|
|
33934
|
-
* Filter which
|
|
35292
|
+
* Filter which RoleHiringCriteria to update
|
|
33935
35293
|
*/
|
|
33936
|
-
where?:
|
|
35294
|
+
where?: RoleHiringCriteriaWhereInput
|
|
33937
35295
|
}
|
|
33938
35296
|
|
|
33939
35297
|
/**
|
|
33940
|
-
*
|
|
35298
|
+
* RoleHiringCriteria upsert
|
|
33941
35299
|
*/
|
|
33942
|
-
export type
|
|
35300
|
+
export type RoleHiringCriteriaUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33943
35301
|
/**
|
|
33944
|
-
* Select specific fields to fetch from the
|
|
35302
|
+
* Select specific fields to fetch from the RoleHiringCriteria
|
|
33945
35303
|
*/
|
|
33946
|
-
select?:
|
|
35304
|
+
select?: RoleHiringCriteriaSelect<ExtArgs> | null
|
|
33947
35305
|
/**
|
|
33948
|
-
*
|
|
35306
|
+
* Choose, which related nodes to fetch as well
|
|
33949
35307
|
*/
|
|
33950
|
-
|
|
35308
|
+
include?: RoleHiringCriteriaInclude<ExtArgs> | null
|
|
33951
35309
|
/**
|
|
33952
|
-
*
|
|
35310
|
+
* The filter to search for the RoleHiringCriteria to update in case it exists.
|
|
33953
35311
|
*/
|
|
33954
|
-
|
|
35312
|
+
where: RoleHiringCriteriaWhereUniqueInput
|
|
33955
35313
|
/**
|
|
33956
|
-
* In case the
|
|
35314
|
+
* In case the RoleHiringCriteria found by the `where` argument doesn't exist, create a new RoleHiringCriteria with this data.
|
|
33957
35315
|
*/
|
|
33958
|
-
|
|
35316
|
+
create: XOR<RoleHiringCriteriaCreateInput, RoleHiringCriteriaUncheckedCreateInput>
|
|
35317
|
+
/**
|
|
35318
|
+
* In case the RoleHiringCriteria was found with the provided `where` argument, update it with this data.
|
|
35319
|
+
*/
|
|
35320
|
+
update: XOR<RoleHiringCriteriaUpdateInput, RoleHiringCriteriaUncheckedUpdateInput>
|
|
33959
35321
|
}
|
|
33960
35322
|
|
|
33961
35323
|
/**
|
|
33962
|
-
*
|
|
35324
|
+
* RoleHiringCriteria delete
|
|
33963
35325
|
*/
|
|
33964
|
-
export type
|
|
35326
|
+
export type RoleHiringCriteriaDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33965
35327
|
/**
|
|
33966
|
-
* Select specific fields to fetch from the
|
|
35328
|
+
* Select specific fields to fetch from the RoleHiringCriteria
|
|
33967
35329
|
*/
|
|
33968
|
-
select?:
|
|
35330
|
+
select?: RoleHiringCriteriaSelect<ExtArgs> | null
|
|
33969
35331
|
/**
|
|
33970
|
-
*
|
|
35332
|
+
* Choose, which related nodes to fetch as well
|
|
33971
35333
|
*/
|
|
33972
|
-
|
|
35334
|
+
include?: RoleHiringCriteriaInclude<ExtArgs> | null
|
|
35335
|
+
/**
|
|
35336
|
+
* Filter which RoleHiringCriteria to delete.
|
|
35337
|
+
*/
|
|
35338
|
+
where: RoleHiringCriteriaWhereUniqueInput
|
|
33973
35339
|
}
|
|
33974
35340
|
|
|
33975
35341
|
/**
|
|
33976
|
-
*
|
|
35342
|
+
* RoleHiringCriteria deleteMany
|
|
33977
35343
|
*/
|
|
33978
|
-
export type
|
|
35344
|
+
export type RoleHiringCriteriaDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33979
35345
|
/**
|
|
33980
|
-
* Filter which
|
|
35346
|
+
* Filter which RoleHiringCriteria to delete
|
|
33981
35347
|
*/
|
|
33982
|
-
where?:
|
|
35348
|
+
where?: RoleHiringCriteriaWhereInput
|
|
33983
35349
|
}
|
|
33984
35350
|
|
|
33985
35351
|
/**
|
|
33986
|
-
*
|
|
35352
|
+
* RoleHiringCriteria findRaw
|
|
33987
35353
|
*/
|
|
33988
|
-
export type
|
|
35354
|
+
export type RoleHiringCriteriaFindRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33989
35355
|
/**
|
|
33990
35356
|
* The query predicate filter. If unspecified, then all documents in the collection will match the predicate. ${@link https://docs.mongodb.com/manual/reference/operator/query MongoDB Docs}.
|
|
33991
35357
|
*/
|
|
@@ -33997,9 +35363,9 @@ export namespace Prisma {
|
|
|
33997
35363
|
}
|
|
33998
35364
|
|
|
33999
35365
|
/**
|
|
34000
|
-
*
|
|
35366
|
+
* RoleHiringCriteria aggregateRaw
|
|
34001
35367
|
*/
|
|
34002
|
-
export type
|
|
35368
|
+
export type RoleHiringCriteriaAggregateRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34003
35369
|
/**
|
|
34004
35370
|
* An array of aggregation stages to process and transform the document stream via the aggregation pipeline. ${@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline MongoDB Docs}.
|
|
34005
35371
|
*/
|
|
@@ -34011,13 +35377,17 @@ export namespace Prisma {
|
|
|
34011
35377
|
}
|
|
34012
35378
|
|
|
34013
35379
|
/**
|
|
34014
|
-
*
|
|
35380
|
+
* RoleHiringCriteria without action
|
|
34015
35381
|
*/
|
|
34016
|
-
export type
|
|
35382
|
+
export type RoleHiringCriteriaDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34017
35383
|
/**
|
|
34018
|
-
* Select specific fields to fetch from the
|
|
35384
|
+
* Select specific fields to fetch from the RoleHiringCriteria
|
|
34019
35385
|
*/
|
|
34020
|
-
select?:
|
|
35386
|
+
select?: RoleHiringCriteriaSelect<ExtArgs> | null
|
|
35387
|
+
/**
|
|
35388
|
+
* Choose, which related nodes to fetch as well
|
|
35389
|
+
*/
|
|
35390
|
+
include?: RoleHiringCriteriaInclude<ExtArgs> | null
|
|
34021
35391
|
}
|
|
34022
35392
|
|
|
34023
35393
|
|
|
@@ -40773,6 +42143,29 @@ export namespace Prisma {
|
|
|
40773
42143
|
export type RoleCategoryScalarFieldEnum = (typeof RoleCategoryScalarFieldEnum)[keyof typeof RoleCategoryScalarFieldEnum]
|
|
40774
42144
|
|
|
40775
42145
|
|
|
42146
|
+
export const RoleHiringCriteriaScalarFieldEnum: {
|
|
42147
|
+
id: 'id',
|
|
42148
|
+
roleId: 'roleId',
|
|
42149
|
+
missionId: 'missionId',
|
|
42150
|
+
requiredSpecializations: 'requiredSpecializations',
|
|
42151
|
+
suggestedSpecializations: 'suggestedSpecializations',
|
|
42152
|
+
requiredSkills: 'requiredSkills',
|
|
42153
|
+
preferredSkills: 'preferredSkills',
|
|
42154
|
+
requiredCountries: 'requiredCountries',
|
|
42155
|
+
preferredCountries: 'preferredCountries',
|
|
42156
|
+
requiredStartDate: 'requiredStartDate',
|
|
42157
|
+
requiredWeeklyHours: 'requiredWeeklyHours',
|
|
42158
|
+
maxHourlyRate: 'maxHourlyRate',
|
|
42159
|
+
maxMonthlyRate: 'maxMonthlyRate',
|
|
42160
|
+
requiredIndustries: 'requiredIndustries',
|
|
42161
|
+
preferredIndustries: 'preferredIndustries',
|
|
42162
|
+
createdAt: 'createdAt',
|
|
42163
|
+
updatedAt: 'updatedAt'
|
|
42164
|
+
};
|
|
42165
|
+
|
|
42166
|
+
export type RoleHiringCriteriaScalarFieldEnum = (typeof RoleHiringCriteriaScalarFieldEnum)[keyof typeof RoleHiringCriteriaScalarFieldEnum]
|
|
42167
|
+
|
|
42168
|
+
|
|
40776
42169
|
export const SolutionScalarFieldEnum: {
|
|
40777
42170
|
id: 'id',
|
|
40778
42171
|
preset: 'preset',
|
|
@@ -41474,6 +42867,34 @@ export namespace Prisma {
|
|
|
41474
42867
|
|
|
41475
42868
|
|
|
41476
42869
|
|
|
42870
|
+
/**
|
|
42871
|
+
* Reference to a field of type 'HiringCriteriaCategory'
|
|
42872
|
+
*/
|
|
42873
|
+
export type EnumHiringCriteriaCategoryFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'HiringCriteriaCategory'>
|
|
42874
|
+
|
|
42875
|
+
|
|
42876
|
+
|
|
42877
|
+
/**
|
|
42878
|
+
* Reference to a field of type 'HiringCriteriaCategory[]'
|
|
42879
|
+
*/
|
|
42880
|
+
export type ListEnumHiringCriteriaCategoryFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'HiringCriteriaCategory[]'>
|
|
42881
|
+
|
|
42882
|
+
|
|
42883
|
+
|
|
42884
|
+
/**
|
|
42885
|
+
* Reference to a field of type 'CriteriaItemType'
|
|
42886
|
+
*/
|
|
42887
|
+
export type EnumCriteriaItemTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'CriteriaItemType'>
|
|
42888
|
+
|
|
42889
|
+
|
|
42890
|
+
|
|
42891
|
+
/**
|
|
42892
|
+
* Reference to a field of type 'CriteriaItemType[]'
|
|
42893
|
+
*/
|
|
42894
|
+
export type ListEnumCriteriaItemTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'CriteriaItemType[]'>
|
|
42895
|
+
|
|
42896
|
+
|
|
42897
|
+
|
|
41477
42898
|
/**
|
|
41478
42899
|
* Reference to a field of type 'RegisterRequestType'
|
|
41479
42900
|
*/
|
|
@@ -42906,6 +44327,7 @@ export namespace Prisma {
|
|
|
42906
44327
|
contracts?: ContractListRelationFilter
|
|
42907
44328
|
proposals?: ProposalListRelationFilter
|
|
42908
44329
|
userReviews?: UserReviewListRelationFilter
|
|
44330
|
+
roleHiringCriterias?: RoleHiringCriteriaListRelationFilter
|
|
42909
44331
|
}
|
|
42910
44332
|
|
|
42911
44333
|
export type MissionOrderByWithRelationInput = {
|
|
@@ -42962,6 +44384,7 @@ export namespace Prisma {
|
|
|
42962
44384
|
contracts?: ContractOrderByRelationAggregateInput
|
|
42963
44385
|
proposals?: ProposalOrderByRelationAggregateInput
|
|
42964
44386
|
userReviews?: UserReviewOrderByRelationAggregateInput
|
|
44387
|
+
roleHiringCriterias?: RoleHiringCriteriaOrderByRelationAggregateInput
|
|
42965
44388
|
}
|
|
42966
44389
|
|
|
42967
44390
|
export type MissionWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -43021,6 +44444,7 @@ export namespace Prisma {
|
|
|
43021
44444
|
contracts?: ContractListRelationFilter
|
|
43022
44445
|
proposals?: ProposalListRelationFilter
|
|
43023
44446
|
userReviews?: UserReviewListRelationFilter
|
|
44447
|
+
roleHiringCriterias?: RoleHiringCriteriaListRelationFilter
|
|
43024
44448
|
}, "mid" | "missionSpecId" | "id">
|
|
43025
44449
|
|
|
43026
44450
|
export type MissionOrderByWithAggregationInput = {
|
|
@@ -43903,6 +45327,130 @@ export namespace Prisma {
|
|
|
43903
45327
|
talentCategoryIds?: StringNullableListFilter<"RoleCategory">
|
|
43904
45328
|
}
|
|
43905
45329
|
|
|
45330
|
+
export type RoleHiringCriteriaWhereInput = {
|
|
45331
|
+
AND?: RoleHiringCriteriaWhereInput | RoleHiringCriteriaWhereInput[]
|
|
45332
|
+
OR?: RoleHiringCriteriaWhereInput[]
|
|
45333
|
+
NOT?: RoleHiringCriteriaWhereInput | RoleHiringCriteriaWhereInput[]
|
|
45334
|
+
id?: StringFilter<"RoleHiringCriteria"> | string
|
|
45335
|
+
roleId?: StringFilter<"RoleHiringCriteria"> | string
|
|
45336
|
+
missionId?: StringFilter<"RoleHiringCriteria"> | string
|
|
45337
|
+
requiredSpecializations?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45338
|
+
suggestedSpecializations?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45339
|
+
requiredSkills?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45340
|
+
preferredSkills?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45341
|
+
requiredCountries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45342
|
+
preferredCountries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45343
|
+
requiredStartDate?: DateTimeNullableFilter<"RoleHiringCriteria"> | Date | string | null
|
|
45344
|
+
requiredWeeklyHours?: IntNullableFilter<"RoleHiringCriteria"> | number | null
|
|
45345
|
+
maxHourlyRate?: FloatNullableFilter<"RoleHiringCriteria"> | number | null
|
|
45346
|
+
maxMonthlyRate?: FloatNullableFilter<"RoleHiringCriteria"> | number | null
|
|
45347
|
+
requiredIndustries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45348
|
+
preferredIndustries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45349
|
+
hardCriteria?: CriteriaItemCompositeListFilter | CriteriaItemObjectEqualityInput[]
|
|
45350
|
+
weightedCriteria?: WeightedCriteriaItemCompositeListFilter | WeightedCriteriaItemObjectEqualityInput[]
|
|
45351
|
+
createdAt?: DateTimeNullableFilter<"RoleHiringCriteria"> | Date | string | null
|
|
45352
|
+
updatedAt?: DateTimeNullableFilter<"RoleHiringCriteria"> | Date | string | null
|
|
45353
|
+
mission?: XOR<MissionRelationFilter, MissionWhereInput>
|
|
45354
|
+
}
|
|
45355
|
+
|
|
45356
|
+
export type RoleHiringCriteriaOrderByWithRelationInput = {
|
|
45357
|
+
id?: SortOrder
|
|
45358
|
+
roleId?: SortOrder
|
|
45359
|
+
missionId?: SortOrder
|
|
45360
|
+
requiredSpecializations?: SortOrder
|
|
45361
|
+
suggestedSpecializations?: SortOrder
|
|
45362
|
+
requiredSkills?: SortOrder
|
|
45363
|
+
preferredSkills?: SortOrder
|
|
45364
|
+
requiredCountries?: SortOrder
|
|
45365
|
+
preferredCountries?: SortOrder
|
|
45366
|
+
requiredStartDate?: SortOrder
|
|
45367
|
+
requiredWeeklyHours?: SortOrder
|
|
45368
|
+
maxHourlyRate?: SortOrder
|
|
45369
|
+
maxMonthlyRate?: SortOrder
|
|
45370
|
+
requiredIndustries?: SortOrder
|
|
45371
|
+
preferredIndustries?: SortOrder
|
|
45372
|
+
hardCriteria?: CriteriaItemOrderByCompositeAggregateInput
|
|
45373
|
+
weightedCriteria?: WeightedCriteriaItemOrderByCompositeAggregateInput
|
|
45374
|
+
createdAt?: SortOrder
|
|
45375
|
+
updatedAt?: SortOrder
|
|
45376
|
+
mission?: MissionOrderByWithRelationInput
|
|
45377
|
+
}
|
|
45378
|
+
|
|
45379
|
+
export type RoleHiringCriteriaWhereUniqueInput = Prisma.AtLeast<{
|
|
45380
|
+
id?: string
|
|
45381
|
+
missionId_roleId?: RoleHiringCriteriaMissionIdRoleIdCompoundUniqueInput
|
|
45382
|
+
AND?: RoleHiringCriteriaWhereInput | RoleHiringCriteriaWhereInput[]
|
|
45383
|
+
OR?: RoleHiringCriteriaWhereInput[]
|
|
45384
|
+
NOT?: RoleHiringCriteriaWhereInput | RoleHiringCriteriaWhereInput[]
|
|
45385
|
+
roleId?: StringFilter<"RoleHiringCriteria"> | string
|
|
45386
|
+
missionId?: StringFilter<"RoleHiringCriteria"> | string
|
|
45387
|
+
requiredSpecializations?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45388
|
+
suggestedSpecializations?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45389
|
+
requiredSkills?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45390
|
+
preferredSkills?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45391
|
+
requiredCountries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45392
|
+
preferredCountries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45393
|
+
requiredStartDate?: DateTimeNullableFilter<"RoleHiringCriteria"> | Date | string | null
|
|
45394
|
+
requiredWeeklyHours?: IntNullableFilter<"RoleHiringCriteria"> | number | null
|
|
45395
|
+
maxHourlyRate?: FloatNullableFilter<"RoleHiringCriteria"> | number | null
|
|
45396
|
+
maxMonthlyRate?: FloatNullableFilter<"RoleHiringCriteria"> | number | null
|
|
45397
|
+
requiredIndustries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45398
|
+
preferredIndustries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45399
|
+
hardCriteria?: CriteriaItemCompositeListFilter | CriteriaItemObjectEqualityInput[]
|
|
45400
|
+
weightedCriteria?: WeightedCriteriaItemCompositeListFilter | WeightedCriteriaItemObjectEqualityInput[]
|
|
45401
|
+
createdAt?: DateTimeNullableFilter<"RoleHiringCriteria"> | Date | string | null
|
|
45402
|
+
updatedAt?: DateTimeNullableFilter<"RoleHiringCriteria"> | Date | string | null
|
|
45403
|
+
mission?: XOR<MissionRelationFilter, MissionWhereInput>
|
|
45404
|
+
}, "id" | "missionId_roleId">
|
|
45405
|
+
|
|
45406
|
+
export type RoleHiringCriteriaOrderByWithAggregationInput = {
|
|
45407
|
+
id?: SortOrder
|
|
45408
|
+
roleId?: SortOrder
|
|
45409
|
+
missionId?: SortOrder
|
|
45410
|
+
requiredSpecializations?: SortOrder
|
|
45411
|
+
suggestedSpecializations?: SortOrder
|
|
45412
|
+
requiredSkills?: SortOrder
|
|
45413
|
+
preferredSkills?: SortOrder
|
|
45414
|
+
requiredCountries?: SortOrder
|
|
45415
|
+
preferredCountries?: SortOrder
|
|
45416
|
+
requiredStartDate?: SortOrder
|
|
45417
|
+
requiredWeeklyHours?: SortOrder
|
|
45418
|
+
maxHourlyRate?: SortOrder
|
|
45419
|
+
maxMonthlyRate?: SortOrder
|
|
45420
|
+
requiredIndustries?: SortOrder
|
|
45421
|
+
preferredIndustries?: SortOrder
|
|
45422
|
+
createdAt?: SortOrder
|
|
45423
|
+
updatedAt?: SortOrder
|
|
45424
|
+
_count?: RoleHiringCriteriaCountOrderByAggregateInput
|
|
45425
|
+
_avg?: RoleHiringCriteriaAvgOrderByAggregateInput
|
|
45426
|
+
_max?: RoleHiringCriteriaMaxOrderByAggregateInput
|
|
45427
|
+
_min?: RoleHiringCriteriaMinOrderByAggregateInput
|
|
45428
|
+
_sum?: RoleHiringCriteriaSumOrderByAggregateInput
|
|
45429
|
+
}
|
|
45430
|
+
|
|
45431
|
+
export type RoleHiringCriteriaScalarWhereWithAggregatesInput = {
|
|
45432
|
+
AND?: RoleHiringCriteriaScalarWhereWithAggregatesInput | RoleHiringCriteriaScalarWhereWithAggregatesInput[]
|
|
45433
|
+
OR?: RoleHiringCriteriaScalarWhereWithAggregatesInput[]
|
|
45434
|
+
NOT?: RoleHiringCriteriaScalarWhereWithAggregatesInput | RoleHiringCriteriaScalarWhereWithAggregatesInput[]
|
|
45435
|
+
id?: StringWithAggregatesFilter<"RoleHiringCriteria"> | string
|
|
45436
|
+
roleId?: StringWithAggregatesFilter<"RoleHiringCriteria"> | string
|
|
45437
|
+
missionId?: StringWithAggregatesFilter<"RoleHiringCriteria"> | string
|
|
45438
|
+
requiredSpecializations?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45439
|
+
suggestedSpecializations?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45440
|
+
requiredSkills?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45441
|
+
preferredSkills?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45442
|
+
requiredCountries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45443
|
+
preferredCountries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45444
|
+
requiredStartDate?: DateTimeNullableWithAggregatesFilter<"RoleHiringCriteria"> | Date | string | null
|
|
45445
|
+
requiredWeeklyHours?: IntNullableWithAggregatesFilter<"RoleHiringCriteria"> | number | null
|
|
45446
|
+
maxHourlyRate?: FloatNullableWithAggregatesFilter<"RoleHiringCriteria"> | number | null
|
|
45447
|
+
maxMonthlyRate?: FloatNullableWithAggregatesFilter<"RoleHiringCriteria"> | number | null
|
|
45448
|
+
requiredIndustries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45449
|
+
preferredIndustries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
45450
|
+
createdAt?: DateTimeNullableWithAggregatesFilter<"RoleHiringCriteria"> | Date | string | null
|
|
45451
|
+
updatedAt?: DateTimeNullableWithAggregatesFilter<"RoleHiringCriteria"> | Date | string | null
|
|
45452
|
+
}
|
|
45453
|
+
|
|
43906
45454
|
export type SolutionWhereInput = {
|
|
43907
45455
|
AND?: SolutionWhereInput | SolutionWhereInput[]
|
|
43908
45456
|
OR?: SolutionWhereInput[]
|
|
@@ -46049,6 +47597,7 @@ export namespace Prisma {
|
|
|
46049
47597
|
contracts?: ContractCreateNestedManyWithoutMissionInput
|
|
46050
47598
|
proposals?: ProposalCreateNestedManyWithoutMissionInput
|
|
46051
47599
|
userReviews?: UserReviewCreateNestedManyWithoutMissionModelInput
|
|
47600
|
+
roleHiringCriterias?: RoleHiringCriteriaCreateNestedManyWithoutMissionInput
|
|
46052
47601
|
}
|
|
46053
47602
|
|
|
46054
47603
|
export type MissionUncheckedCreateInput = {
|
|
@@ -46101,6 +47650,7 @@ export namespace Prisma {
|
|
|
46101
47650
|
contracts?: ContractUncheckedCreateNestedManyWithoutMissionInput
|
|
46102
47651
|
proposals?: ProposalUncheckedCreateNestedManyWithoutMissionInput
|
|
46103
47652
|
userReviews?: UserReviewUncheckedCreateNestedManyWithoutMissionModelInput
|
|
47653
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedCreateNestedManyWithoutMissionInput
|
|
46104
47654
|
}
|
|
46105
47655
|
|
|
46106
47656
|
export type MissionUpdateInput = {
|
|
@@ -46152,6 +47702,7 @@ export namespace Prisma {
|
|
|
46152
47702
|
contracts?: ContractUpdateManyWithoutMissionNestedInput
|
|
46153
47703
|
proposals?: ProposalUpdateManyWithoutMissionNestedInput
|
|
46154
47704
|
userReviews?: UserReviewUpdateManyWithoutMissionModelNestedInput
|
|
47705
|
+
roleHiringCriterias?: RoleHiringCriteriaUpdateManyWithoutMissionNestedInput
|
|
46155
47706
|
}
|
|
46156
47707
|
|
|
46157
47708
|
export type MissionUncheckedUpdateInput = {
|
|
@@ -46203,6 +47754,7 @@ export namespace Prisma {
|
|
|
46203
47754
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
46204
47755
|
proposals?: ProposalUncheckedUpdateManyWithoutMissionNestedInput
|
|
46205
47756
|
userReviews?: UserReviewUncheckedUpdateManyWithoutMissionModelNestedInput
|
|
47757
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedUpdateManyWithoutMissionNestedInput
|
|
46206
47758
|
}
|
|
46207
47759
|
|
|
46208
47760
|
export type MissionCreateManyInput = {
|
|
@@ -47299,6 +48851,155 @@ export namespace Prisma {
|
|
|
47299
48851
|
talentCategoryIds?: RoleCategoryUpdatetalentCategoryIdsInput | string[]
|
|
47300
48852
|
}
|
|
47301
48853
|
|
|
48854
|
+
export type RoleHiringCriteriaCreateInput = {
|
|
48855
|
+
id?: string
|
|
48856
|
+
roleId: string
|
|
48857
|
+
requiredSpecializations?: RoleHiringCriteriaCreaterequiredSpecializationsInput | string[]
|
|
48858
|
+
suggestedSpecializations?: RoleHiringCriteriaCreatesuggestedSpecializationsInput | string[]
|
|
48859
|
+
requiredSkills?: RoleHiringCriteriaCreaterequiredSkillsInput | string[]
|
|
48860
|
+
preferredSkills?: RoleHiringCriteriaCreatepreferredSkillsInput | string[]
|
|
48861
|
+
requiredCountries?: RoleHiringCriteriaCreaterequiredCountriesInput | string[]
|
|
48862
|
+
preferredCountries?: RoleHiringCriteriaCreatepreferredCountriesInput | string[]
|
|
48863
|
+
requiredStartDate?: Date | string | null
|
|
48864
|
+
requiredWeeklyHours?: number | null
|
|
48865
|
+
maxHourlyRate?: number | null
|
|
48866
|
+
maxMonthlyRate?: number | null
|
|
48867
|
+
requiredIndustries?: RoleHiringCriteriaCreaterequiredIndustriesInput | string[]
|
|
48868
|
+
preferredIndustries?: RoleHiringCriteriaCreatepreferredIndustriesInput | string[]
|
|
48869
|
+
hardCriteria?: XOR<CriteriaItemListCreateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
48870
|
+
weightedCriteria?: XOR<WeightedCriteriaItemListCreateEnvelopeInput, WeightedCriteriaItemCreateInput> | WeightedCriteriaItemCreateInput[]
|
|
48871
|
+
createdAt?: Date | string | null
|
|
48872
|
+
updatedAt?: Date | string | null
|
|
48873
|
+
mission: MissionCreateNestedOneWithoutRoleHiringCriteriasInput
|
|
48874
|
+
}
|
|
48875
|
+
|
|
48876
|
+
export type RoleHiringCriteriaUncheckedCreateInput = {
|
|
48877
|
+
id?: string
|
|
48878
|
+
roleId: string
|
|
48879
|
+
missionId: string
|
|
48880
|
+
requiredSpecializations?: RoleHiringCriteriaCreaterequiredSpecializationsInput | string[]
|
|
48881
|
+
suggestedSpecializations?: RoleHiringCriteriaCreatesuggestedSpecializationsInput | string[]
|
|
48882
|
+
requiredSkills?: RoleHiringCriteriaCreaterequiredSkillsInput | string[]
|
|
48883
|
+
preferredSkills?: RoleHiringCriteriaCreatepreferredSkillsInput | string[]
|
|
48884
|
+
requiredCountries?: RoleHiringCriteriaCreaterequiredCountriesInput | string[]
|
|
48885
|
+
preferredCountries?: RoleHiringCriteriaCreatepreferredCountriesInput | string[]
|
|
48886
|
+
requiredStartDate?: Date | string | null
|
|
48887
|
+
requiredWeeklyHours?: number | null
|
|
48888
|
+
maxHourlyRate?: number | null
|
|
48889
|
+
maxMonthlyRate?: number | null
|
|
48890
|
+
requiredIndustries?: RoleHiringCriteriaCreaterequiredIndustriesInput | string[]
|
|
48891
|
+
preferredIndustries?: RoleHiringCriteriaCreatepreferredIndustriesInput | string[]
|
|
48892
|
+
hardCriteria?: XOR<CriteriaItemListCreateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
48893
|
+
weightedCriteria?: XOR<WeightedCriteriaItemListCreateEnvelopeInput, WeightedCriteriaItemCreateInput> | WeightedCriteriaItemCreateInput[]
|
|
48894
|
+
createdAt?: Date | string | null
|
|
48895
|
+
updatedAt?: Date | string | null
|
|
48896
|
+
}
|
|
48897
|
+
|
|
48898
|
+
export type RoleHiringCriteriaUpdateInput = {
|
|
48899
|
+
roleId?: StringFieldUpdateOperationsInput | string
|
|
48900
|
+
requiredSpecializations?: RoleHiringCriteriaUpdaterequiredSpecializationsInput | string[]
|
|
48901
|
+
suggestedSpecializations?: RoleHiringCriteriaUpdatesuggestedSpecializationsInput | string[]
|
|
48902
|
+
requiredSkills?: RoleHiringCriteriaUpdaterequiredSkillsInput | string[]
|
|
48903
|
+
preferredSkills?: RoleHiringCriteriaUpdatepreferredSkillsInput | string[]
|
|
48904
|
+
requiredCountries?: RoleHiringCriteriaUpdaterequiredCountriesInput | string[]
|
|
48905
|
+
preferredCountries?: RoleHiringCriteriaUpdatepreferredCountriesInput | string[]
|
|
48906
|
+
requiredStartDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
48907
|
+
requiredWeeklyHours?: NullableIntFieldUpdateOperationsInput | number | null
|
|
48908
|
+
maxHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
48909
|
+
maxMonthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
48910
|
+
requiredIndustries?: RoleHiringCriteriaUpdaterequiredIndustriesInput | string[]
|
|
48911
|
+
preferredIndustries?: RoleHiringCriteriaUpdatepreferredIndustriesInput | string[]
|
|
48912
|
+
hardCriteria?: XOR<CriteriaItemListUpdateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
48913
|
+
weightedCriteria?: XOR<WeightedCriteriaItemListUpdateEnvelopeInput, WeightedCriteriaItemCreateInput> | WeightedCriteriaItemCreateInput[]
|
|
48914
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
48915
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
48916
|
+
mission?: MissionUpdateOneRequiredWithoutRoleHiringCriteriasNestedInput
|
|
48917
|
+
}
|
|
48918
|
+
|
|
48919
|
+
export type RoleHiringCriteriaUncheckedUpdateInput = {
|
|
48920
|
+
roleId?: StringFieldUpdateOperationsInput | string
|
|
48921
|
+
missionId?: StringFieldUpdateOperationsInput | string
|
|
48922
|
+
requiredSpecializations?: RoleHiringCriteriaUpdaterequiredSpecializationsInput | string[]
|
|
48923
|
+
suggestedSpecializations?: RoleHiringCriteriaUpdatesuggestedSpecializationsInput | string[]
|
|
48924
|
+
requiredSkills?: RoleHiringCriteriaUpdaterequiredSkillsInput | string[]
|
|
48925
|
+
preferredSkills?: RoleHiringCriteriaUpdatepreferredSkillsInput | string[]
|
|
48926
|
+
requiredCountries?: RoleHiringCriteriaUpdaterequiredCountriesInput | string[]
|
|
48927
|
+
preferredCountries?: RoleHiringCriteriaUpdatepreferredCountriesInput | string[]
|
|
48928
|
+
requiredStartDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
48929
|
+
requiredWeeklyHours?: NullableIntFieldUpdateOperationsInput | number | null
|
|
48930
|
+
maxHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
48931
|
+
maxMonthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
48932
|
+
requiredIndustries?: RoleHiringCriteriaUpdaterequiredIndustriesInput | string[]
|
|
48933
|
+
preferredIndustries?: RoleHiringCriteriaUpdatepreferredIndustriesInput | string[]
|
|
48934
|
+
hardCriteria?: XOR<CriteriaItemListUpdateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
48935
|
+
weightedCriteria?: XOR<WeightedCriteriaItemListUpdateEnvelopeInput, WeightedCriteriaItemCreateInput> | WeightedCriteriaItemCreateInput[]
|
|
48936
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
48937
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
48938
|
+
}
|
|
48939
|
+
|
|
48940
|
+
export type RoleHiringCriteriaCreateManyInput = {
|
|
48941
|
+
id?: string
|
|
48942
|
+
roleId: string
|
|
48943
|
+
missionId: string
|
|
48944
|
+
requiredSpecializations?: RoleHiringCriteriaCreaterequiredSpecializationsInput | string[]
|
|
48945
|
+
suggestedSpecializations?: RoleHiringCriteriaCreatesuggestedSpecializationsInput | string[]
|
|
48946
|
+
requiredSkills?: RoleHiringCriteriaCreaterequiredSkillsInput | string[]
|
|
48947
|
+
preferredSkills?: RoleHiringCriteriaCreatepreferredSkillsInput | string[]
|
|
48948
|
+
requiredCountries?: RoleHiringCriteriaCreaterequiredCountriesInput | string[]
|
|
48949
|
+
preferredCountries?: RoleHiringCriteriaCreatepreferredCountriesInput | string[]
|
|
48950
|
+
requiredStartDate?: Date | string | null
|
|
48951
|
+
requiredWeeklyHours?: number | null
|
|
48952
|
+
maxHourlyRate?: number | null
|
|
48953
|
+
maxMonthlyRate?: number | null
|
|
48954
|
+
requiredIndustries?: RoleHiringCriteriaCreaterequiredIndustriesInput | string[]
|
|
48955
|
+
preferredIndustries?: RoleHiringCriteriaCreatepreferredIndustriesInput | string[]
|
|
48956
|
+
hardCriteria?: XOR<CriteriaItemListCreateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
48957
|
+
weightedCriteria?: XOR<WeightedCriteriaItemListCreateEnvelopeInput, WeightedCriteriaItemCreateInput> | WeightedCriteriaItemCreateInput[]
|
|
48958
|
+
createdAt?: Date | string | null
|
|
48959
|
+
updatedAt?: Date | string | null
|
|
48960
|
+
}
|
|
48961
|
+
|
|
48962
|
+
export type RoleHiringCriteriaUpdateManyMutationInput = {
|
|
48963
|
+
roleId?: StringFieldUpdateOperationsInput | string
|
|
48964
|
+
requiredSpecializations?: RoleHiringCriteriaUpdaterequiredSpecializationsInput | string[]
|
|
48965
|
+
suggestedSpecializations?: RoleHiringCriteriaUpdatesuggestedSpecializationsInput | string[]
|
|
48966
|
+
requiredSkills?: RoleHiringCriteriaUpdaterequiredSkillsInput | string[]
|
|
48967
|
+
preferredSkills?: RoleHiringCriteriaUpdatepreferredSkillsInput | string[]
|
|
48968
|
+
requiredCountries?: RoleHiringCriteriaUpdaterequiredCountriesInput | string[]
|
|
48969
|
+
preferredCountries?: RoleHiringCriteriaUpdatepreferredCountriesInput | string[]
|
|
48970
|
+
requiredStartDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
48971
|
+
requiredWeeklyHours?: NullableIntFieldUpdateOperationsInput | number | null
|
|
48972
|
+
maxHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
48973
|
+
maxMonthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
48974
|
+
requiredIndustries?: RoleHiringCriteriaUpdaterequiredIndustriesInput | string[]
|
|
48975
|
+
preferredIndustries?: RoleHiringCriteriaUpdatepreferredIndustriesInput | string[]
|
|
48976
|
+
hardCriteria?: XOR<CriteriaItemListUpdateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
48977
|
+
weightedCriteria?: XOR<WeightedCriteriaItemListUpdateEnvelopeInput, WeightedCriteriaItemCreateInput> | WeightedCriteriaItemCreateInput[]
|
|
48978
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
48979
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
48980
|
+
}
|
|
48981
|
+
|
|
48982
|
+
export type RoleHiringCriteriaUncheckedUpdateManyInput = {
|
|
48983
|
+
roleId?: StringFieldUpdateOperationsInput | string
|
|
48984
|
+
missionId?: StringFieldUpdateOperationsInput | string
|
|
48985
|
+
requiredSpecializations?: RoleHiringCriteriaUpdaterequiredSpecializationsInput | string[]
|
|
48986
|
+
suggestedSpecializations?: RoleHiringCriteriaUpdatesuggestedSpecializationsInput | string[]
|
|
48987
|
+
requiredSkills?: RoleHiringCriteriaUpdaterequiredSkillsInput | string[]
|
|
48988
|
+
preferredSkills?: RoleHiringCriteriaUpdatepreferredSkillsInput | string[]
|
|
48989
|
+
requiredCountries?: RoleHiringCriteriaUpdaterequiredCountriesInput | string[]
|
|
48990
|
+
preferredCountries?: RoleHiringCriteriaUpdatepreferredCountriesInput | string[]
|
|
48991
|
+
requiredStartDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
48992
|
+
requiredWeeklyHours?: NullableIntFieldUpdateOperationsInput | number | null
|
|
48993
|
+
maxHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
48994
|
+
maxMonthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
48995
|
+
requiredIndustries?: RoleHiringCriteriaUpdaterequiredIndustriesInput | string[]
|
|
48996
|
+
preferredIndustries?: RoleHiringCriteriaUpdatepreferredIndustriesInput | string[]
|
|
48997
|
+
hardCriteria?: XOR<CriteriaItemListUpdateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
48998
|
+
weightedCriteria?: XOR<WeightedCriteriaItemListUpdateEnvelopeInput, WeightedCriteriaItemCreateInput> | WeightedCriteriaItemCreateInput[]
|
|
48999
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
49000
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
49001
|
+
}
|
|
49002
|
+
|
|
47302
49003
|
export type SolutionCreateInput = {
|
|
47303
49004
|
id?: string
|
|
47304
49005
|
preset: $Enums.PresetID
|
|
@@ -49824,6 +51525,12 @@ export namespace Prisma {
|
|
|
49824
51525
|
none?: ProposalWhereInput
|
|
49825
51526
|
}
|
|
49826
51527
|
|
|
51528
|
+
export type RoleHiringCriteriaListRelationFilter = {
|
|
51529
|
+
every?: RoleHiringCriteriaWhereInput
|
|
51530
|
+
some?: RoleHiringCriteriaWhereInput
|
|
51531
|
+
none?: RoleHiringCriteriaWhereInput
|
|
51532
|
+
}
|
|
51533
|
+
|
|
49827
51534
|
export type MissionsAttachedLinkOrderByCompositeAggregateInput = {
|
|
49828
51535
|
_count?: SortOrder
|
|
49829
51536
|
}
|
|
@@ -49860,6 +51567,10 @@ export namespace Prisma {
|
|
|
49860
51567
|
_count?: SortOrder
|
|
49861
51568
|
}
|
|
49862
51569
|
|
|
51570
|
+
export type RoleHiringCriteriaOrderByRelationAggregateInput = {
|
|
51571
|
+
_count?: SortOrder
|
|
51572
|
+
}
|
|
51573
|
+
|
|
49863
51574
|
export type MissionCountOrderByAggregateInput = {
|
|
49864
51575
|
mid?: SortOrder
|
|
49865
51576
|
accountId?: SortOrder
|
|
@@ -50971,6 +52682,113 @@ export namespace Prisma {
|
|
|
50971
52682
|
group?: SortOrder
|
|
50972
52683
|
}
|
|
50973
52684
|
|
|
52685
|
+
export type CriteriaItemCompositeListFilter = {
|
|
52686
|
+
equals?: CriteriaItemObjectEqualityInput[]
|
|
52687
|
+
every?: CriteriaItemWhereInput
|
|
52688
|
+
some?: CriteriaItemWhereInput
|
|
52689
|
+
none?: CriteriaItemWhereInput
|
|
52690
|
+
isEmpty?: boolean
|
|
52691
|
+
isSet?: boolean
|
|
52692
|
+
}
|
|
52693
|
+
|
|
52694
|
+
export type CriteriaItemObjectEqualityInput = {
|
|
52695
|
+
name: string
|
|
52696
|
+
description: string
|
|
52697
|
+
category: $Enums.HiringCriteriaCategory
|
|
52698
|
+
type: $Enums.CriteriaItemType
|
|
52699
|
+
}
|
|
52700
|
+
|
|
52701
|
+
export type WeightedCriteriaItemCompositeListFilter = {
|
|
52702
|
+
equals?: WeightedCriteriaItemObjectEqualityInput[]
|
|
52703
|
+
every?: WeightedCriteriaItemWhereInput
|
|
52704
|
+
some?: WeightedCriteriaItemWhereInput
|
|
52705
|
+
none?: WeightedCriteriaItemWhereInput
|
|
52706
|
+
isEmpty?: boolean
|
|
52707
|
+
isSet?: boolean
|
|
52708
|
+
}
|
|
52709
|
+
|
|
52710
|
+
export type WeightedCriteriaItemObjectEqualityInput = {
|
|
52711
|
+
name: string
|
|
52712
|
+
description: string
|
|
52713
|
+
category: $Enums.HiringCriteriaCategory
|
|
52714
|
+
type: $Enums.CriteriaItemType
|
|
52715
|
+
weight?: number | null
|
|
52716
|
+
}
|
|
52717
|
+
|
|
52718
|
+
export type MissionRelationFilter = {
|
|
52719
|
+
is?: MissionWhereInput
|
|
52720
|
+
isNot?: MissionWhereInput
|
|
52721
|
+
}
|
|
52722
|
+
|
|
52723
|
+
export type CriteriaItemOrderByCompositeAggregateInput = {
|
|
52724
|
+
_count?: SortOrder
|
|
52725
|
+
}
|
|
52726
|
+
|
|
52727
|
+
export type WeightedCriteriaItemOrderByCompositeAggregateInput = {
|
|
52728
|
+
_count?: SortOrder
|
|
52729
|
+
}
|
|
52730
|
+
|
|
52731
|
+
export type RoleHiringCriteriaMissionIdRoleIdCompoundUniqueInput = {
|
|
52732
|
+
missionId: string
|
|
52733
|
+
roleId: string
|
|
52734
|
+
}
|
|
52735
|
+
|
|
52736
|
+
export type RoleHiringCriteriaCountOrderByAggregateInput = {
|
|
52737
|
+
id?: SortOrder
|
|
52738
|
+
roleId?: SortOrder
|
|
52739
|
+
missionId?: SortOrder
|
|
52740
|
+
requiredSpecializations?: SortOrder
|
|
52741
|
+
suggestedSpecializations?: SortOrder
|
|
52742
|
+
requiredSkills?: SortOrder
|
|
52743
|
+
preferredSkills?: SortOrder
|
|
52744
|
+
requiredCountries?: SortOrder
|
|
52745
|
+
preferredCountries?: SortOrder
|
|
52746
|
+
requiredStartDate?: SortOrder
|
|
52747
|
+
requiredWeeklyHours?: SortOrder
|
|
52748
|
+
maxHourlyRate?: SortOrder
|
|
52749
|
+
maxMonthlyRate?: SortOrder
|
|
52750
|
+
requiredIndustries?: SortOrder
|
|
52751
|
+
preferredIndustries?: SortOrder
|
|
52752
|
+
createdAt?: SortOrder
|
|
52753
|
+
updatedAt?: SortOrder
|
|
52754
|
+
}
|
|
52755
|
+
|
|
52756
|
+
export type RoleHiringCriteriaAvgOrderByAggregateInput = {
|
|
52757
|
+
requiredWeeklyHours?: SortOrder
|
|
52758
|
+
maxHourlyRate?: SortOrder
|
|
52759
|
+
maxMonthlyRate?: SortOrder
|
|
52760
|
+
}
|
|
52761
|
+
|
|
52762
|
+
export type RoleHiringCriteriaMaxOrderByAggregateInput = {
|
|
52763
|
+
id?: SortOrder
|
|
52764
|
+
roleId?: SortOrder
|
|
52765
|
+
missionId?: SortOrder
|
|
52766
|
+
requiredStartDate?: SortOrder
|
|
52767
|
+
requiredWeeklyHours?: SortOrder
|
|
52768
|
+
maxHourlyRate?: SortOrder
|
|
52769
|
+
maxMonthlyRate?: SortOrder
|
|
52770
|
+
createdAt?: SortOrder
|
|
52771
|
+
updatedAt?: SortOrder
|
|
52772
|
+
}
|
|
52773
|
+
|
|
52774
|
+
export type RoleHiringCriteriaMinOrderByAggregateInput = {
|
|
52775
|
+
id?: SortOrder
|
|
52776
|
+
roleId?: SortOrder
|
|
52777
|
+
missionId?: SortOrder
|
|
52778
|
+
requiredStartDate?: SortOrder
|
|
52779
|
+
requiredWeeklyHours?: SortOrder
|
|
52780
|
+
maxHourlyRate?: SortOrder
|
|
52781
|
+
maxMonthlyRate?: SortOrder
|
|
52782
|
+
createdAt?: SortOrder
|
|
52783
|
+
updatedAt?: SortOrder
|
|
52784
|
+
}
|
|
52785
|
+
|
|
52786
|
+
export type RoleHiringCriteriaSumOrderByAggregateInput = {
|
|
52787
|
+
requiredWeeklyHours?: SortOrder
|
|
52788
|
+
maxHourlyRate?: SortOrder
|
|
52789
|
+
maxMonthlyRate?: SortOrder
|
|
52790
|
+
}
|
|
52791
|
+
|
|
50974
52792
|
export type EnumPresetIDFilter<$PrismaModel = never> = {
|
|
50975
52793
|
equals?: $Enums.PresetID | EnumPresetIDFieldRefInput<$PrismaModel>
|
|
50976
52794
|
in?: $Enums.PresetID[] | ListEnumPresetIDFieldRefInput<$PrismaModel>
|
|
@@ -51595,11 +53413,6 @@ export namespace Prisma {
|
|
|
51595
53413
|
isEmpty?: boolean
|
|
51596
53414
|
}
|
|
51597
53415
|
|
|
51598
|
-
export type MissionRelationFilter = {
|
|
51599
|
-
is?: MissionWhereInput
|
|
51600
|
-
isNot?: MissionWhereInput
|
|
51601
|
-
}
|
|
51602
|
-
|
|
51603
53416
|
export type UserReviewVisibilityOrderByInput = {
|
|
51604
53417
|
visible?: SortOrder
|
|
51605
53418
|
updatedAt?: SortOrder
|
|
@@ -53244,6 +55057,13 @@ export namespace Prisma {
|
|
|
53244
55057
|
connect?: UserReviewWhereUniqueInput | UserReviewWhereUniqueInput[]
|
|
53245
55058
|
}
|
|
53246
55059
|
|
|
55060
|
+
export type RoleHiringCriteriaCreateNestedManyWithoutMissionInput = {
|
|
55061
|
+
create?: XOR<RoleHiringCriteriaCreateWithoutMissionInput, RoleHiringCriteriaUncheckedCreateWithoutMissionInput> | RoleHiringCriteriaCreateWithoutMissionInput[] | RoleHiringCriteriaUncheckedCreateWithoutMissionInput[]
|
|
55062
|
+
connectOrCreate?: RoleHiringCriteriaCreateOrConnectWithoutMissionInput | RoleHiringCriteriaCreateOrConnectWithoutMissionInput[]
|
|
55063
|
+
createMany?: RoleHiringCriteriaCreateManyMissionInputEnvelope
|
|
55064
|
+
connect?: RoleHiringCriteriaWhereUniqueInput | RoleHiringCriteriaWhereUniqueInput[]
|
|
55065
|
+
}
|
|
55066
|
+
|
|
53247
55067
|
export type ContractUncheckedCreateNestedManyWithoutMissionInput = {
|
|
53248
55068
|
create?: XOR<ContractCreateWithoutMissionInput, ContractUncheckedCreateWithoutMissionInput> | ContractCreateWithoutMissionInput[] | ContractUncheckedCreateWithoutMissionInput[]
|
|
53249
55069
|
connectOrCreate?: ContractCreateOrConnectWithoutMissionInput | ContractCreateOrConnectWithoutMissionInput[]
|
|
@@ -53265,6 +55085,13 @@ export namespace Prisma {
|
|
|
53265
55085
|
connect?: UserReviewWhereUniqueInput | UserReviewWhereUniqueInput[]
|
|
53266
55086
|
}
|
|
53267
55087
|
|
|
55088
|
+
export type RoleHiringCriteriaUncheckedCreateNestedManyWithoutMissionInput = {
|
|
55089
|
+
create?: XOR<RoleHiringCriteriaCreateWithoutMissionInput, RoleHiringCriteriaUncheckedCreateWithoutMissionInput> | RoleHiringCriteriaCreateWithoutMissionInput[] | RoleHiringCriteriaUncheckedCreateWithoutMissionInput[]
|
|
55090
|
+
connectOrCreate?: RoleHiringCriteriaCreateOrConnectWithoutMissionInput | RoleHiringCriteriaCreateOrConnectWithoutMissionInput[]
|
|
55091
|
+
createMany?: RoleHiringCriteriaCreateManyMissionInputEnvelope
|
|
55092
|
+
connect?: RoleHiringCriteriaWhereUniqueInput | RoleHiringCriteriaWhereUniqueInput[]
|
|
55093
|
+
}
|
|
55094
|
+
|
|
53268
55095
|
export type MissionsAttachedLinkListUpdateEnvelopeInput = {
|
|
53269
55096
|
set?: MissionsAttachedLinkCreateInput | MissionsAttachedLinkCreateInput[]
|
|
53270
55097
|
push?: MissionsAttachedLinkCreateInput | MissionsAttachedLinkCreateInput[]
|
|
@@ -53419,6 +55246,20 @@ export namespace Prisma {
|
|
|
53419
55246
|
deleteMany?: UserReviewScalarWhereInput | UserReviewScalarWhereInput[]
|
|
53420
55247
|
}
|
|
53421
55248
|
|
|
55249
|
+
export type RoleHiringCriteriaUpdateManyWithoutMissionNestedInput = {
|
|
55250
|
+
create?: XOR<RoleHiringCriteriaCreateWithoutMissionInput, RoleHiringCriteriaUncheckedCreateWithoutMissionInput> | RoleHiringCriteriaCreateWithoutMissionInput[] | RoleHiringCriteriaUncheckedCreateWithoutMissionInput[]
|
|
55251
|
+
connectOrCreate?: RoleHiringCriteriaCreateOrConnectWithoutMissionInput | RoleHiringCriteriaCreateOrConnectWithoutMissionInput[]
|
|
55252
|
+
upsert?: RoleHiringCriteriaUpsertWithWhereUniqueWithoutMissionInput | RoleHiringCriteriaUpsertWithWhereUniqueWithoutMissionInput[]
|
|
55253
|
+
createMany?: RoleHiringCriteriaCreateManyMissionInputEnvelope
|
|
55254
|
+
set?: RoleHiringCriteriaWhereUniqueInput | RoleHiringCriteriaWhereUniqueInput[]
|
|
55255
|
+
disconnect?: RoleHiringCriteriaWhereUniqueInput | RoleHiringCriteriaWhereUniqueInput[]
|
|
55256
|
+
delete?: RoleHiringCriteriaWhereUniqueInput | RoleHiringCriteriaWhereUniqueInput[]
|
|
55257
|
+
connect?: RoleHiringCriteriaWhereUniqueInput | RoleHiringCriteriaWhereUniqueInput[]
|
|
55258
|
+
update?: RoleHiringCriteriaUpdateWithWhereUniqueWithoutMissionInput | RoleHiringCriteriaUpdateWithWhereUniqueWithoutMissionInput[]
|
|
55259
|
+
updateMany?: RoleHiringCriteriaUpdateManyWithWhereWithoutMissionInput | RoleHiringCriteriaUpdateManyWithWhereWithoutMissionInput[]
|
|
55260
|
+
deleteMany?: RoleHiringCriteriaScalarWhereInput | RoleHiringCriteriaScalarWhereInput[]
|
|
55261
|
+
}
|
|
55262
|
+
|
|
53422
55263
|
export type ContractUncheckedUpdateManyWithoutMissionNestedInput = {
|
|
53423
55264
|
create?: XOR<ContractCreateWithoutMissionInput, ContractUncheckedCreateWithoutMissionInput> | ContractCreateWithoutMissionInput[] | ContractUncheckedCreateWithoutMissionInput[]
|
|
53424
55265
|
connectOrCreate?: ContractCreateOrConnectWithoutMissionInput | ContractCreateOrConnectWithoutMissionInput[]
|
|
@@ -53461,6 +55302,20 @@ export namespace Prisma {
|
|
|
53461
55302
|
deleteMany?: UserReviewScalarWhereInput | UserReviewScalarWhereInput[]
|
|
53462
55303
|
}
|
|
53463
55304
|
|
|
55305
|
+
export type RoleHiringCriteriaUncheckedUpdateManyWithoutMissionNestedInput = {
|
|
55306
|
+
create?: XOR<RoleHiringCriteriaCreateWithoutMissionInput, RoleHiringCriteriaUncheckedCreateWithoutMissionInput> | RoleHiringCriteriaCreateWithoutMissionInput[] | RoleHiringCriteriaUncheckedCreateWithoutMissionInput[]
|
|
55307
|
+
connectOrCreate?: RoleHiringCriteriaCreateOrConnectWithoutMissionInput | RoleHiringCriteriaCreateOrConnectWithoutMissionInput[]
|
|
55308
|
+
upsert?: RoleHiringCriteriaUpsertWithWhereUniqueWithoutMissionInput | RoleHiringCriteriaUpsertWithWhereUniqueWithoutMissionInput[]
|
|
55309
|
+
createMany?: RoleHiringCriteriaCreateManyMissionInputEnvelope
|
|
55310
|
+
set?: RoleHiringCriteriaWhereUniqueInput | RoleHiringCriteriaWhereUniqueInput[]
|
|
55311
|
+
disconnect?: RoleHiringCriteriaWhereUniqueInput | RoleHiringCriteriaWhereUniqueInput[]
|
|
55312
|
+
delete?: RoleHiringCriteriaWhereUniqueInput | RoleHiringCriteriaWhereUniqueInput[]
|
|
55313
|
+
connect?: RoleHiringCriteriaWhereUniqueInput | RoleHiringCriteriaWhereUniqueInput[]
|
|
55314
|
+
update?: RoleHiringCriteriaUpdateWithWhereUniqueWithoutMissionInput | RoleHiringCriteriaUpdateWithWhereUniqueWithoutMissionInput[]
|
|
55315
|
+
updateMany?: RoleHiringCriteriaUpdateManyWithWhereWithoutMissionInput | RoleHiringCriteriaUpdateManyWithWhereWithoutMissionInput[]
|
|
55316
|
+
deleteMany?: RoleHiringCriteriaScalarWhereInput | RoleHiringCriteriaScalarWhereInput[]
|
|
55317
|
+
}
|
|
55318
|
+
|
|
53464
55319
|
export type MissionApplicationRateRangeNullableCreateEnvelopeInput = {
|
|
53465
55320
|
set?: MissionApplicationRateRangeCreateInput | null
|
|
53466
55321
|
}
|
|
@@ -54237,6 +56092,129 @@ export namespace Prisma {
|
|
|
54237
56092
|
push?: string | string[]
|
|
54238
56093
|
}
|
|
54239
56094
|
|
|
56095
|
+
export type RoleHiringCriteriaCreaterequiredSpecializationsInput = {
|
|
56096
|
+
set: string[]
|
|
56097
|
+
}
|
|
56098
|
+
|
|
56099
|
+
export type RoleHiringCriteriaCreatesuggestedSpecializationsInput = {
|
|
56100
|
+
set: string[]
|
|
56101
|
+
}
|
|
56102
|
+
|
|
56103
|
+
export type RoleHiringCriteriaCreaterequiredSkillsInput = {
|
|
56104
|
+
set: string[]
|
|
56105
|
+
}
|
|
56106
|
+
|
|
56107
|
+
export type RoleHiringCriteriaCreatepreferredSkillsInput = {
|
|
56108
|
+
set: string[]
|
|
56109
|
+
}
|
|
56110
|
+
|
|
56111
|
+
export type RoleHiringCriteriaCreaterequiredCountriesInput = {
|
|
56112
|
+
set: string[]
|
|
56113
|
+
}
|
|
56114
|
+
|
|
56115
|
+
export type RoleHiringCriteriaCreatepreferredCountriesInput = {
|
|
56116
|
+
set: string[]
|
|
56117
|
+
}
|
|
56118
|
+
|
|
56119
|
+
export type RoleHiringCriteriaCreaterequiredIndustriesInput = {
|
|
56120
|
+
set: string[]
|
|
56121
|
+
}
|
|
56122
|
+
|
|
56123
|
+
export type RoleHiringCriteriaCreatepreferredIndustriesInput = {
|
|
56124
|
+
set: string[]
|
|
56125
|
+
}
|
|
56126
|
+
|
|
56127
|
+
export type CriteriaItemListCreateEnvelopeInput = {
|
|
56128
|
+
set?: CriteriaItemCreateInput | CriteriaItemCreateInput[]
|
|
56129
|
+
}
|
|
56130
|
+
|
|
56131
|
+
export type CriteriaItemCreateInput = {
|
|
56132
|
+
name: string
|
|
56133
|
+
description: string
|
|
56134
|
+
category: $Enums.HiringCriteriaCategory
|
|
56135
|
+
type: $Enums.CriteriaItemType
|
|
56136
|
+
}
|
|
56137
|
+
|
|
56138
|
+
export type WeightedCriteriaItemListCreateEnvelopeInput = {
|
|
56139
|
+
set?: WeightedCriteriaItemCreateInput | WeightedCriteriaItemCreateInput[]
|
|
56140
|
+
}
|
|
56141
|
+
|
|
56142
|
+
export type WeightedCriteriaItemCreateInput = {
|
|
56143
|
+
name: string
|
|
56144
|
+
description: string
|
|
56145
|
+
category: $Enums.HiringCriteriaCategory
|
|
56146
|
+
type: $Enums.CriteriaItemType
|
|
56147
|
+
weight?: number | null
|
|
56148
|
+
}
|
|
56149
|
+
|
|
56150
|
+
export type MissionCreateNestedOneWithoutRoleHiringCriteriasInput = {
|
|
56151
|
+
create?: XOR<MissionCreateWithoutRoleHiringCriteriasInput, MissionUncheckedCreateWithoutRoleHiringCriteriasInput>
|
|
56152
|
+
connectOrCreate?: MissionCreateOrConnectWithoutRoleHiringCriteriasInput
|
|
56153
|
+
connect?: MissionWhereUniqueInput
|
|
56154
|
+
}
|
|
56155
|
+
|
|
56156
|
+
export type RoleHiringCriteriaUpdaterequiredSpecializationsInput = {
|
|
56157
|
+
set?: string[]
|
|
56158
|
+
push?: string | string[]
|
|
56159
|
+
}
|
|
56160
|
+
|
|
56161
|
+
export type RoleHiringCriteriaUpdatesuggestedSpecializationsInput = {
|
|
56162
|
+
set?: string[]
|
|
56163
|
+
push?: string | string[]
|
|
56164
|
+
}
|
|
56165
|
+
|
|
56166
|
+
export type RoleHiringCriteriaUpdaterequiredSkillsInput = {
|
|
56167
|
+
set?: string[]
|
|
56168
|
+
push?: string | string[]
|
|
56169
|
+
}
|
|
56170
|
+
|
|
56171
|
+
export type RoleHiringCriteriaUpdatepreferredSkillsInput = {
|
|
56172
|
+
set?: string[]
|
|
56173
|
+
push?: string | string[]
|
|
56174
|
+
}
|
|
56175
|
+
|
|
56176
|
+
export type RoleHiringCriteriaUpdaterequiredCountriesInput = {
|
|
56177
|
+
set?: string[]
|
|
56178
|
+
push?: string | string[]
|
|
56179
|
+
}
|
|
56180
|
+
|
|
56181
|
+
export type RoleHiringCriteriaUpdatepreferredCountriesInput = {
|
|
56182
|
+
set?: string[]
|
|
56183
|
+
push?: string | string[]
|
|
56184
|
+
}
|
|
56185
|
+
|
|
56186
|
+
export type RoleHiringCriteriaUpdaterequiredIndustriesInput = {
|
|
56187
|
+
set?: string[]
|
|
56188
|
+
push?: string | string[]
|
|
56189
|
+
}
|
|
56190
|
+
|
|
56191
|
+
export type RoleHiringCriteriaUpdatepreferredIndustriesInput = {
|
|
56192
|
+
set?: string[]
|
|
56193
|
+
push?: string | string[]
|
|
56194
|
+
}
|
|
56195
|
+
|
|
56196
|
+
export type CriteriaItemListUpdateEnvelopeInput = {
|
|
56197
|
+
set?: CriteriaItemCreateInput | CriteriaItemCreateInput[]
|
|
56198
|
+
push?: CriteriaItemCreateInput | CriteriaItemCreateInput[]
|
|
56199
|
+
updateMany?: CriteriaItemUpdateManyInput
|
|
56200
|
+
deleteMany?: CriteriaItemDeleteManyInput
|
|
56201
|
+
}
|
|
56202
|
+
|
|
56203
|
+
export type WeightedCriteriaItemListUpdateEnvelopeInput = {
|
|
56204
|
+
set?: WeightedCriteriaItemCreateInput | WeightedCriteriaItemCreateInput[]
|
|
56205
|
+
push?: WeightedCriteriaItemCreateInput | WeightedCriteriaItemCreateInput[]
|
|
56206
|
+
updateMany?: WeightedCriteriaItemUpdateManyInput
|
|
56207
|
+
deleteMany?: WeightedCriteriaItemDeleteManyInput
|
|
56208
|
+
}
|
|
56209
|
+
|
|
56210
|
+
export type MissionUpdateOneRequiredWithoutRoleHiringCriteriasNestedInput = {
|
|
56211
|
+
create?: XOR<MissionCreateWithoutRoleHiringCriteriasInput, MissionUncheckedCreateWithoutRoleHiringCriteriasInput>
|
|
56212
|
+
connectOrCreate?: MissionCreateOrConnectWithoutRoleHiringCriteriasInput
|
|
56213
|
+
upsert?: MissionUpsertWithoutRoleHiringCriteriasInput
|
|
56214
|
+
connect?: MissionWhereUniqueInput
|
|
56215
|
+
update?: XOR<XOR<MissionUpdateToOneWithWhereWithoutRoleHiringCriteriasInput, MissionUpdateWithoutRoleHiringCriteriasInput>, MissionUncheckedUpdateWithoutRoleHiringCriteriasInput>
|
|
56216
|
+
}
|
|
56217
|
+
|
|
54240
56218
|
export type RoleListCreateEnvelopeInput = {
|
|
54241
56219
|
set?: RoleCreateInput | RoleCreateInput[]
|
|
54242
56220
|
}
|
|
@@ -56795,6 +58773,27 @@ export namespace Prisma {
|
|
|
56795
58773
|
_max?: NestedEnumPlatformRecordedOnFilter<$PrismaModel>
|
|
56796
58774
|
}
|
|
56797
58775
|
|
|
58776
|
+
export type CriteriaItemWhereInput = {
|
|
58777
|
+
AND?: CriteriaItemWhereInput | CriteriaItemWhereInput[]
|
|
58778
|
+
OR?: CriteriaItemWhereInput[]
|
|
58779
|
+
NOT?: CriteriaItemWhereInput | CriteriaItemWhereInput[]
|
|
58780
|
+
name?: StringFilter<"CriteriaItem"> | string
|
|
58781
|
+
description?: StringFilter<"CriteriaItem"> | string
|
|
58782
|
+
category?: EnumHiringCriteriaCategoryFilter<"CriteriaItem"> | $Enums.HiringCriteriaCategory
|
|
58783
|
+
type?: EnumCriteriaItemTypeFilter<"CriteriaItem"> | $Enums.CriteriaItemType
|
|
58784
|
+
}
|
|
58785
|
+
|
|
58786
|
+
export type WeightedCriteriaItemWhereInput = {
|
|
58787
|
+
AND?: WeightedCriteriaItemWhereInput | WeightedCriteriaItemWhereInput[]
|
|
58788
|
+
OR?: WeightedCriteriaItemWhereInput[]
|
|
58789
|
+
NOT?: WeightedCriteriaItemWhereInput | WeightedCriteriaItemWhereInput[]
|
|
58790
|
+
name?: StringFilter<"WeightedCriteriaItem"> | string
|
|
58791
|
+
description?: StringFilter<"WeightedCriteriaItem"> | string
|
|
58792
|
+
category?: EnumHiringCriteriaCategoryFilter<"WeightedCriteriaItem"> | $Enums.HiringCriteriaCategory
|
|
58793
|
+
type?: EnumCriteriaItemTypeFilter<"WeightedCriteriaItem"> | $Enums.CriteriaItemType
|
|
58794
|
+
weight?: FloatNullableFilter<"WeightedCriteriaItem"> | number | null
|
|
58795
|
+
}
|
|
58796
|
+
|
|
56798
58797
|
export type NestedEnumPresetIDFilter<$PrismaModel = never> = {
|
|
56799
58798
|
equals?: $Enums.PresetID | EnumPresetIDFieldRefInput<$PrismaModel>
|
|
56800
58799
|
in?: $Enums.PresetID[] | ListEnumPresetIDFieldRefInput<$PrismaModel>
|
|
@@ -57213,6 +59212,7 @@ export namespace Prisma {
|
|
|
57213
59212
|
contracts?: ContractCreateNestedManyWithoutMissionInput
|
|
57214
59213
|
proposals?: ProposalCreateNestedManyWithoutMissionInput
|
|
57215
59214
|
userReviews?: UserReviewCreateNestedManyWithoutMissionModelInput
|
|
59215
|
+
roleHiringCriterias?: RoleHiringCriteriaCreateNestedManyWithoutMissionInput
|
|
57216
59216
|
}
|
|
57217
59217
|
|
|
57218
59218
|
export type MissionUncheckedCreateWithoutAccountModelInput = {
|
|
@@ -57264,6 +59264,7 @@ export namespace Prisma {
|
|
|
57264
59264
|
contracts?: ContractUncheckedCreateNestedManyWithoutMissionInput
|
|
57265
59265
|
proposals?: ProposalUncheckedCreateNestedManyWithoutMissionInput
|
|
57266
59266
|
userReviews?: UserReviewUncheckedCreateNestedManyWithoutMissionModelInput
|
|
59267
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedCreateNestedManyWithoutMissionInput
|
|
57267
59268
|
}
|
|
57268
59269
|
|
|
57269
59270
|
export type MissionCreateOrConnectWithoutAccountModelInput = {
|
|
@@ -60800,6 +62801,7 @@ export namespace Prisma {
|
|
|
60800
62801
|
ownerModel?: UserCreateNestedOneWithoutOwnedMissionsModelsInput
|
|
60801
62802
|
proposals?: ProposalCreateNestedManyWithoutMissionInput
|
|
60802
62803
|
userReviews?: UserReviewCreateNestedManyWithoutMissionModelInput
|
|
62804
|
+
roleHiringCriterias?: RoleHiringCriteriaCreateNestedManyWithoutMissionInput
|
|
60803
62805
|
}
|
|
60804
62806
|
|
|
60805
62807
|
export type MissionUncheckedCreateWithoutContractsInput = {
|
|
@@ -60851,6 +62853,7 @@ export namespace Prisma {
|
|
|
60851
62853
|
timezone?: string | null
|
|
60852
62854
|
proposals?: ProposalUncheckedCreateNestedManyWithoutMissionInput
|
|
60853
62855
|
userReviews?: UserReviewUncheckedCreateNestedManyWithoutMissionModelInput
|
|
62856
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedCreateNestedManyWithoutMissionInput
|
|
60854
62857
|
}
|
|
60855
62858
|
|
|
60856
62859
|
export type MissionCreateOrConnectWithoutContractsInput = {
|
|
@@ -60970,6 +62973,7 @@ export namespace Prisma {
|
|
|
60970
62973
|
ownerModel?: UserUpdateOneWithoutOwnedMissionsModelsNestedInput
|
|
60971
62974
|
proposals?: ProposalUpdateManyWithoutMissionNestedInput
|
|
60972
62975
|
userReviews?: UserReviewUpdateManyWithoutMissionModelNestedInput
|
|
62976
|
+
roleHiringCriterias?: RoleHiringCriteriaUpdateManyWithoutMissionNestedInput
|
|
60973
62977
|
}
|
|
60974
62978
|
|
|
60975
62979
|
export type MissionUncheckedUpdateWithoutContractsInput = {
|
|
@@ -61020,6 +63024,7 @@ export namespace Prisma {
|
|
|
61020
63024
|
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61021
63025
|
proposals?: ProposalUncheckedUpdateManyWithoutMissionNestedInput
|
|
61022
63026
|
userReviews?: UserReviewUncheckedUpdateManyWithoutMissionModelNestedInput
|
|
63027
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedUpdateManyWithoutMissionNestedInput
|
|
61023
63028
|
}
|
|
61024
63029
|
|
|
61025
63030
|
export type AccountUpsertWithoutContractsInput = {
|
|
@@ -61917,6 +63922,57 @@ export namespace Prisma {
|
|
|
61917
63922
|
data: UserReviewCreateManyMissionModelInput | UserReviewCreateManyMissionModelInput[]
|
|
61918
63923
|
}
|
|
61919
63924
|
|
|
63925
|
+
export type RoleHiringCriteriaCreateWithoutMissionInput = {
|
|
63926
|
+
id?: string
|
|
63927
|
+
roleId: string
|
|
63928
|
+
requiredSpecializations?: RoleHiringCriteriaCreaterequiredSpecializationsInput | string[]
|
|
63929
|
+
suggestedSpecializations?: RoleHiringCriteriaCreatesuggestedSpecializationsInput | string[]
|
|
63930
|
+
requiredSkills?: RoleHiringCriteriaCreaterequiredSkillsInput | string[]
|
|
63931
|
+
preferredSkills?: RoleHiringCriteriaCreatepreferredSkillsInput | string[]
|
|
63932
|
+
requiredCountries?: RoleHiringCriteriaCreaterequiredCountriesInput | string[]
|
|
63933
|
+
preferredCountries?: RoleHiringCriteriaCreatepreferredCountriesInput | string[]
|
|
63934
|
+
requiredStartDate?: Date | string | null
|
|
63935
|
+
requiredWeeklyHours?: number | null
|
|
63936
|
+
maxHourlyRate?: number | null
|
|
63937
|
+
maxMonthlyRate?: number | null
|
|
63938
|
+
requiredIndustries?: RoleHiringCriteriaCreaterequiredIndustriesInput | string[]
|
|
63939
|
+
preferredIndustries?: RoleHiringCriteriaCreatepreferredIndustriesInput | string[]
|
|
63940
|
+
hardCriteria?: XOR<CriteriaItemListCreateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
63941
|
+
weightedCriteria?: XOR<WeightedCriteriaItemListCreateEnvelopeInput, WeightedCriteriaItemCreateInput> | WeightedCriteriaItemCreateInput[]
|
|
63942
|
+
createdAt?: Date | string | null
|
|
63943
|
+
updatedAt?: Date | string | null
|
|
63944
|
+
}
|
|
63945
|
+
|
|
63946
|
+
export type RoleHiringCriteriaUncheckedCreateWithoutMissionInput = {
|
|
63947
|
+
id?: string
|
|
63948
|
+
roleId: string
|
|
63949
|
+
requiredSpecializations?: RoleHiringCriteriaCreaterequiredSpecializationsInput | string[]
|
|
63950
|
+
suggestedSpecializations?: RoleHiringCriteriaCreatesuggestedSpecializationsInput | string[]
|
|
63951
|
+
requiredSkills?: RoleHiringCriteriaCreaterequiredSkillsInput | string[]
|
|
63952
|
+
preferredSkills?: RoleHiringCriteriaCreatepreferredSkillsInput | string[]
|
|
63953
|
+
requiredCountries?: RoleHiringCriteriaCreaterequiredCountriesInput | string[]
|
|
63954
|
+
preferredCountries?: RoleHiringCriteriaCreatepreferredCountriesInput | string[]
|
|
63955
|
+
requiredStartDate?: Date | string | null
|
|
63956
|
+
requiredWeeklyHours?: number | null
|
|
63957
|
+
maxHourlyRate?: number | null
|
|
63958
|
+
maxMonthlyRate?: number | null
|
|
63959
|
+
requiredIndustries?: RoleHiringCriteriaCreaterequiredIndustriesInput | string[]
|
|
63960
|
+
preferredIndustries?: RoleHiringCriteriaCreatepreferredIndustriesInput | string[]
|
|
63961
|
+
hardCriteria?: XOR<CriteriaItemListCreateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
63962
|
+
weightedCriteria?: XOR<WeightedCriteriaItemListCreateEnvelopeInput, WeightedCriteriaItemCreateInput> | WeightedCriteriaItemCreateInput[]
|
|
63963
|
+
createdAt?: Date | string | null
|
|
63964
|
+
updatedAt?: Date | string | null
|
|
63965
|
+
}
|
|
63966
|
+
|
|
63967
|
+
export type RoleHiringCriteriaCreateOrConnectWithoutMissionInput = {
|
|
63968
|
+
where: RoleHiringCriteriaWhereUniqueInput
|
|
63969
|
+
create: XOR<RoleHiringCriteriaCreateWithoutMissionInput, RoleHiringCriteriaUncheckedCreateWithoutMissionInput>
|
|
63970
|
+
}
|
|
63971
|
+
|
|
63972
|
+
export type RoleHiringCriteriaCreateManyMissionInputEnvelope = {
|
|
63973
|
+
data: RoleHiringCriteriaCreateManyMissionInput | RoleHiringCriteriaCreateManyMissionInput[]
|
|
63974
|
+
}
|
|
63975
|
+
|
|
61920
63976
|
export type MissionsAttachedLinkUpdateManyInput = {
|
|
61921
63977
|
where: MissionsAttachedLinkWhereInput
|
|
61922
63978
|
data: MissionsAttachedLinkUpdateInput
|
|
@@ -62393,6 +64449,45 @@ export namespace Prisma {
|
|
|
62393
64449
|
data: XOR<UserReviewUpdateManyMutationInput, UserReviewUncheckedUpdateManyWithoutMissionModelInput>
|
|
62394
64450
|
}
|
|
62395
64451
|
|
|
64452
|
+
export type RoleHiringCriteriaUpsertWithWhereUniqueWithoutMissionInput = {
|
|
64453
|
+
where: RoleHiringCriteriaWhereUniqueInput
|
|
64454
|
+
update: XOR<RoleHiringCriteriaUpdateWithoutMissionInput, RoleHiringCriteriaUncheckedUpdateWithoutMissionInput>
|
|
64455
|
+
create: XOR<RoleHiringCriteriaCreateWithoutMissionInput, RoleHiringCriteriaUncheckedCreateWithoutMissionInput>
|
|
64456
|
+
}
|
|
64457
|
+
|
|
64458
|
+
export type RoleHiringCriteriaUpdateWithWhereUniqueWithoutMissionInput = {
|
|
64459
|
+
where: RoleHiringCriteriaWhereUniqueInput
|
|
64460
|
+
data: XOR<RoleHiringCriteriaUpdateWithoutMissionInput, RoleHiringCriteriaUncheckedUpdateWithoutMissionInput>
|
|
64461
|
+
}
|
|
64462
|
+
|
|
64463
|
+
export type RoleHiringCriteriaUpdateManyWithWhereWithoutMissionInput = {
|
|
64464
|
+
where: RoleHiringCriteriaScalarWhereInput
|
|
64465
|
+
data: XOR<RoleHiringCriteriaUpdateManyMutationInput, RoleHiringCriteriaUncheckedUpdateManyWithoutMissionInput>
|
|
64466
|
+
}
|
|
64467
|
+
|
|
64468
|
+
export type RoleHiringCriteriaScalarWhereInput = {
|
|
64469
|
+
AND?: RoleHiringCriteriaScalarWhereInput | RoleHiringCriteriaScalarWhereInput[]
|
|
64470
|
+
OR?: RoleHiringCriteriaScalarWhereInput[]
|
|
64471
|
+
NOT?: RoleHiringCriteriaScalarWhereInput | RoleHiringCriteriaScalarWhereInput[]
|
|
64472
|
+
id?: StringFilter<"RoleHiringCriteria"> | string
|
|
64473
|
+
roleId?: StringFilter<"RoleHiringCriteria"> | string
|
|
64474
|
+
missionId?: StringFilter<"RoleHiringCriteria"> | string
|
|
64475
|
+
requiredSpecializations?: StringNullableListFilter<"RoleHiringCriteria">
|
|
64476
|
+
suggestedSpecializations?: StringNullableListFilter<"RoleHiringCriteria">
|
|
64477
|
+
requiredSkills?: StringNullableListFilter<"RoleHiringCriteria">
|
|
64478
|
+
preferredSkills?: StringNullableListFilter<"RoleHiringCriteria">
|
|
64479
|
+
requiredCountries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
64480
|
+
preferredCountries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
64481
|
+
requiredStartDate?: DateTimeNullableFilter<"RoleHiringCriteria"> | Date | string | null
|
|
64482
|
+
requiredWeeklyHours?: IntNullableFilter<"RoleHiringCriteria"> | number | null
|
|
64483
|
+
maxHourlyRate?: FloatNullableFilter<"RoleHiringCriteria"> | number | null
|
|
64484
|
+
maxMonthlyRate?: FloatNullableFilter<"RoleHiringCriteria"> | number | null
|
|
64485
|
+
requiredIndustries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
64486
|
+
preferredIndustries?: StringNullableListFilter<"RoleHiringCriteria">
|
|
64487
|
+
createdAt?: DateTimeNullableFilter<"RoleHiringCriteria"> | Date | string | null
|
|
64488
|
+
updatedAt?: DateTimeNullableFilter<"RoleHiringCriteria"> | Date | string | null
|
|
64489
|
+
}
|
|
64490
|
+
|
|
62396
64491
|
export type LocalHourRangeCreateInput = {
|
|
62397
64492
|
endTime?: number | null
|
|
62398
64493
|
startTime?: number | null
|
|
@@ -63368,6 +65463,7 @@ export namespace Prisma {
|
|
|
63368
65463
|
contracts?: ContractCreateNestedManyWithoutMissionInput
|
|
63369
65464
|
proposals?: ProposalCreateNestedManyWithoutMissionInput
|
|
63370
65465
|
userReviews?: UserReviewCreateNestedManyWithoutMissionModelInput
|
|
65466
|
+
roleHiringCriterias?: RoleHiringCriteriaCreateNestedManyWithoutMissionInput
|
|
63371
65467
|
}
|
|
63372
65468
|
|
|
63373
65469
|
export type MissionUncheckedCreateWithoutMissionSpecInput = {
|
|
@@ -63419,6 +65515,7 @@ export namespace Prisma {
|
|
|
63419
65515
|
contracts?: ContractUncheckedCreateNestedManyWithoutMissionInput
|
|
63420
65516
|
proposals?: ProposalUncheckedCreateNestedManyWithoutMissionInput
|
|
63421
65517
|
userReviews?: UserReviewUncheckedCreateNestedManyWithoutMissionModelInput
|
|
65518
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedCreateNestedManyWithoutMissionInput
|
|
63422
65519
|
}
|
|
63423
65520
|
|
|
63424
65521
|
export type MissionCreateOrConnectWithoutMissionSpecInput = {
|
|
@@ -63917,6 +66014,7 @@ export namespace Prisma {
|
|
|
63917
66014
|
contracts?: ContractUpdateManyWithoutMissionNestedInput
|
|
63918
66015
|
proposals?: ProposalUpdateManyWithoutMissionNestedInput
|
|
63919
66016
|
userReviews?: UserReviewUpdateManyWithoutMissionModelNestedInput
|
|
66017
|
+
roleHiringCriterias?: RoleHiringCriteriaUpdateManyWithoutMissionNestedInput
|
|
63920
66018
|
}
|
|
63921
66019
|
|
|
63922
66020
|
export type MissionUncheckedUpdateWithoutMissionSpecInput = {
|
|
@@ -63967,6 +66065,7 @@ export namespace Prisma {
|
|
|
63967
66065
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
63968
66066
|
proposals?: ProposalUncheckedUpdateManyWithoutMissionNestedInput
|
|
63969
66067
|
userReviews?: UserReviewUncheckedUpdateManyWithoutMissionModelNestedInput
|
|
66068
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedUpdateManyWithoutMissionNestedInput
|
|
63970
66069
|
}
|
|
63971
66070
|
|
|
63972
66071
|
export type ProposalUpsertWithWhereUniqueWithoutMissionSpecInput = {
|
|
@@ -64170,6 +66269,7 @@ export namespace Prisma {
|
|
|
64170
66269
|
ownerModel?: UserCreateNestedOneWithoutOwnedMissionsModelsInput
|
|
64171
66270
|
contracts?: ContractCreateNestedManyWithoutMissionInput
|
|
64172
66271
|
userReviews?: UserReviewCreateNestedManyWithoutMissionModelInput
|
|
66272
|
+
roleHiringCriterias?: RoleHiringCriteriaCreateNestedManyWithoutMissionInput
|
|
64173
66273
|
}
|
|
64174
66274
|
|
|
64175
66275
|
export type MissionUncheckedCreateWithoutProposalsInput = {
|
|
@@ -64221,6 +66321,7 @@ export namespace Prisma {
|
|
|
64221
66321
|
timezone?: string | null
|
|
64222
66322
|
contracts?: ContractUncheckedCreateNestedManyWithoutMissionInput
|
|
64223
66323
|
userReviews?: UserReviewUncheckedCreateNestedManyWithoutMissionModelInput
|
|
66324
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedCreateNestedManyWithoutMissionInput
|
|
64224
66325
|
}
|
|
64225
66326
|
|
|
64226
66327
|
export type MissionCreateOrConnectWithoutProposalsInput = {
|
|
@@ -64806,6 +66907,7 @@ export namespace Prisma {
|
|
|
64806
66907
|
ownerModel?: UserUpdateOneWithoutOwnedMissionsModelsNestedInput
|
|
64807
66908
|
contracts?: ContractUpdateManyWithoutMissionNestedInput
|
|
64808
66909
|
userReviews?: UserReviewUpdateManyWithoutMissionModelNestedInput
|
|
66910
|
+
roleHiringCriterias?: RoleHiringCriteriaUpdateManyWithoutMissionNestedInput
|
|
64809
66911
|
}
|
|
64810
66912
|
|
|
64811
66913
|
export type MissionUncheckedUpdateWithoutProposalsInput = {
|
|
@@ -64856,6 +66958,7 @@ export namespace Prisma {
|
|
|
64856
66958
|
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64857
66959
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
64858
66960
|
userReviews?: UserReviewUncheckedUpdateManyWithoutMissionModelNestedInput
|
|
66961
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedUpdateManyWithoutMissionNestedInput
|
|
64859
66962
|
}
|
|
64860
66963
|
|
|
64861
66964
|
export type UserUpsertWithoutSharedProposalsInput = {
|
|
@@ -65194,6 +67297,246 @@ export namespace Prisma {
|
|
|
65194
67297
|
where: CallParticipantWhereInput
|
|
65195
67298
|
}
|
|
65196
67299
|
|
|
67300
|
+
export type MissionCreateWithoutRoleHiringCriteriasInput = {
|
|
67301
|
+
mid?: string
|
|
67302
|
+
applyStatus?: string | null
|
|
67303
|
+
attachedLinks?: XOR<MissionsAttachedLinkListCreateEnvelopeInput, MissionsAttachedLinkCreateInput> | MissionsAttachedLinkCreateInput[]
|
|
67304
|
+
automatedStatusesDisabled?: boolean | null
|
|
67305
|
+
automaticInvoicingPeriod?: string | null
|
|
67306
|
+
bdOwners?: MissionCreatebdOwnersInput | string[]
|
|
67307
|
+
billingPeriod?: string | null
|
|
67308
|
+
clientMargin?: number | null
|
|
67309
|
+
companyRequest?: XOR<MissionsCompanyRequestNullableCreateEnvelopeInput, MissionsCompanyRequestCreateInput> | null
|
|
67310
|
+
companyStory?: string | null
|
|
67311
|
+
createdAt?: Date | string | null
|
|
67312
|
+
description?: string | null
|
|
67313
|
+
expectedDurationMonths?: number | null
|
|
67314
|
+
hidden?: boolean | null
|
|
67315
|
+
hubspotDealId?: string | null
|
|
67316
|
+
internalDescription?: string | null
|
|
67317
|
+
internalMission?: boolean | null
|
|
67318
|
+
invoiceEmailGreeting?: string | null
|
|
67319
|
+
invoicing?: XOR<MissionsInvoicingNullableCreateEnvelopeInput, MissionsInvoicingCreateInput> | null
|
|
67320
|
+
lastDeployedAt?: Date | string | null
|
|
67321
|
+
logoURL?: string | null
|
|
67322
|
+
mainManagerUserId?: string | null
|
|
67323
|
+
managers?: XOR<MissionsManagerListCreateEnvelopeInput, MissionsManagerCreateInput> | MissionsManagerCreateInput[]
|
|
67324
|
+
migrations?: MissionCreatemigrationsInput | string[]
|
|
67325
|
+
promotedTags?: MissionCreatepromotedTagsInput | string[]
|
|
67326
|
+
publishedAt?: Date | string | null
|
|
67327
|
+
publisherUser?: string | null
|
|
67328
|
+
roles?: XOR<MissionRoleListCreateEnvelopeInput, MissionRoleCreateInput> | MissionRoleCreateInput[]
|
|
67329
|
+
rolesMargin?: number | null
|
|
67330
|
+
setAsScheduledToEndAt?: Date | string | null
|
|
67331
|
+
shortCompanyDescription?: string | null
|
|
67332
|
+
skipContracts?: boolean | null
|
|
67333
|
+
status: $Enums.MissionStatus
|
|
67334
|
+
talentIndustries?: MissionCreatetalentIndustriesInput | string[]
|
|
67335
|
+
testing?: XOR<MissionsTestingNullableCreateEnvelopeInput, MissionsTestingCreateInput> | null
|
|
67336
|
+
title: string
|
|
67337
|
+
updatedAt?: Date | string | null
|
|
67338
|
+
videoURL?: string | null
|
|
67339
|
+
website?: string | null
|
|
67340
|
+
plannedStart?: string | null
|
|
67341
|
+
overlapMinutes?: number | null
|
|
67342
|
+
timezone?: string | null
|
|
67343
|
+
accountModel?: AccountCreateNestedOneWithoutMissionsInput
|
|
67344
|
+
creatorModel?: UserCreateNestedOneWithoutCreatedMissionsModelsInput
|
|
67345
|
+
missionSpec?: MissionSpecCreateNestedOneWithoutMissionInput
|
|
67346
|
+
ownerModel?: UserCreateNestedOneWithoutOwnedMissionsModelsInput
|
|
67347
|
+
contracts?: ContractCreateNestedManyWithoutMissionInput
|
|
67348
|
+
proposals?: ProposalCreateNestedManyWithoutMissionInput
|
|
67349
|
+
userReviews?: UserReviewCreateNestedManyWithoutMissionModelInput
|
|
67350
|
+
}
|
|
67351
|
+
|
|
67352
|
+
export type MissionUncheckedCreateWithoutRoleHiringCriteriasInput = {
|
|
67353
|
+
mid?: string
|
|
67354
|
+
accountId?: string | null
|
|
67355
|
+
applyStatus?: string | null
|
|
67356
|
+
attachedLinks?: XOR<MissionsAttachedLinkListCreateEnvelopeInput, MissionsAttachedLinkCreateInput> | MissionsAttachedLinkCreateInput[]
|
|
67357
|
+
automatedStatusesDisabled?: boolean | null
|
|
67358
|
+
automaticInvoicingPeriod?: string | null
|
|
67359
|
+
bdOwners?: MissionCreatebdOwnersInput | string[]
|
|
67360
|
+
billingPeriod?: string | null
|
|
67361
|
+
clientMargin?: number | null
|
|
67362
|
+
companyRequest?: XOR<MissionsCompanyRequestNullableCreateEnvelopeInput, MissionsCompanyRequestCreateInput> | null
|
|
67363
|
+
companyStory?: string | null
|
|
67364
|
+
createdAt?: Date | string | null
|
|
67365
|
+
creatorUser?: string | null
|
|
67366
|
+
description?: string | null
|
|
67367
|
+
expectedDurationMonths?: number | null
|
|
67368
|
+
hidden?: boolean | null
|
|
67369
|
+
hubspotDealId?: string | null
|
|
67370
|
+
internalDescription?: string | null
|
|
67371
|
+
internalMission?: boolean | null
|
|
67372
|
+
invoiceEmailGreeting?: string | null
|
|
67373
|
+
invoicing?: XOR<MissionsInvoicingNullableCreateEnvelopeInput, MissionsInvoicingCreateInput> | null
|
|
67374
|
+
lastDeployedAt?: Date | string | null
|
|
67375
|
+
logoURL?: string | null
|
|
67376
|
+
mainManagerUserId?: string | null
|
|
67377
|
+
managers?: XOR<MissionsManagerListCreateEnvelopeInput, MissionsManagerCreateInput> | MissionsManagerCreateInput[]
|
|
67378
|
+
migrations?: MissionCreatemigrationsInput | string[]
|
|
67379
|
+
missionSpecId?: string | null
|
|
67380
|
+
owner?: string | null
|
|
67381
|
+
promotedTags?: MissionCreatepromotedTagsInput | string[]
|
|
67382
|
+
publishedAt?: Date | string | null
|
|
67383
|
+
publisherUser?: string | null
|
|
67384
|
+
roles?: XOR<MissionRoleListCreateEnvelopeInput, MissionRoleCreateInput> | MissionRoleCreateInput[]
|
|
67385
|
+
rolesMargin?: number | null
|
|
67386
|
+
setAsScheduledToEndAt?: Date | string | null
|
|
67387
|
+
shortCompanyDescription?: string | null
|
|
67388
|
+
skipContracts?: boolean | null
|
|
67389
|
+
status: $Enums.MissionStatus
|
|
67390
|
+
talentIndustries?: MissionCreatetalentIndustriesInput | string[]
|
|
67391
|
+
testing?: XOR<MissionsTestingNullableCreateEnvelopeInput, MissionsTestingCreateInput> | null
|
|
67392
|
+
title: string
|
|
67393
|
+
updatedAt?: Date | string | null
|
|
67394
|
+
videoURL?: string | null
|
|
67395
|
+
website?: string | null
|
|
67396
|
+
plannedStart?: string | null
|
|
67397
|
+
overlapMinutes?: number | null
|
|
67398
|
+
timezone?: string | null
|
|
67399
|
+
contracts?: ContractUncheckedCreateNestedManyWithoutMissionInput
|
|
67400
|
+
proposals?: ProposalUncheckedCreateNestedManyWithoutMissionInput
|
|
67401
|
+
userReviews?: UserReviewUncheckedCreateNestedManyWithoutMissionModelInput
|
|
67402
|
+
}
|
|
67403
|
+
|
|
67404
|
+
export type MissionCreateOrConnectWithoutRoleHiringCriteriasInput = {
|
|
67405
|
+
where: MissionWhereUniqueInput
|
|
67406
|
+
create: XOR<MissionCreateWithoutRoleHiringCriteriasInput, MissionUncheckedCreateWithoutRoleHiringCriteriasInput>
|
|
67407
|
+
}
|
|
67408
|
+
|
|
67409
|
+
export type CriteriaItemUpdateManyInput = {
|
|
67410
|
+
where: CriteriaItemWhereInput
|
|
67411
|
+
data: CriteriaItemUpdateInput
|
|
67412
|
+
}
|
|
67413
|
+
|
|
67414
|
+
export type CriteriaItemDeleteManyInput = {
|
|
67415
|
+
where: CriteriaItemWhereInput
|
|
67416
|
+
}
|
|
67417
|
+
|
|
67418
|
+
export type WeightedCriteriaItemUpdateManyInput = {
|
|
67419
|
+
where: WeightedCriteriaItemWhereInput
|
|
67420
|
+
data: WeightedCriteriaItemUpdateInput
|
|
67421
|
+
}
|
|
67422
|
+
|
|
67423
|
+
export type WeightedCriteriaItemDeleteManyInput = {
|
|
67424
|
+
where: WeightedCriteriaItemWhereInput
|
|
67425
|
+
}
|
|
67426
|
+
|
|
67427
|
+
export type MissionUpsertWithoutRoleHiringCriteriasInput = {
|
|
67428
|
+
update: XOR<MissionUpdateWithoutRoleHiringCriteriasInput, MissionUncheckedUpdateWithoutRoleHiringCriteriasInput>
|
|
67429
|
+
create: XOR<MissionCreateWithoutRoleHiringCriteriasInput, MissionUncheckedCreateWithoutRoleHiringCriteriasInput>
|
|
67430
|
+
where?: MissionWhereInput
|
|
67431
|
+
}
|
|
67432
|
+
|
|
67433
|
+
export type MissionUpdateToOneWithWhereWithoutRoleHiringCriteriasInput = {
|
|
67434
|
+
where?: MissionWhereInput
|
|
67435
|
+
data: XOR<MissionUpdateWithoutRoleHiringCriteriasInput, MissionUncheckedUpdateWithoutRoleHiringCriteriasInput>
|
|
67436
|
+
}
|
|
67437
|
+
|
|
67438
|
+
export type MissionUpdateWithoutRoleHiringCriteriasInput = {
|
|
67439
|
+
applyStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67440
|
+
attachedLinks?: XOR<MissionsAttachedLinkListUpdateEnvelopeInput, MissionsAttachedLinkCreateInput> | MissionsAttachedLinkCreateInput[]
|
|
67441
|
+
automatedStatusesDisabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
67442
|
+
automaticInvoicingPeriod?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67443
|
+
bdOwners?: MissionUpdatebdOwnersInput | string[]
|
|
67444
|
+
billingPeriod?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67445
|
+
clientMargin?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
67446
|
+
companyRequest?: XOR<MissionsCompanyRequestNullableUpdateEnvelopeInput, MissionsCompanyRequestCreateInput> | null
|
|
67447
|
+
companyStory?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67448
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
67449
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67450
|
+
expectedDurationMonths?: NullableIntFieldUpdateOperationsInput | number | null
|
|
67451
|
+
hidden?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
67452
|
+
hubspotDealId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67453
|
+
internalDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67454
|
+
internalMission?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
67455
|
+
invoiceEmailGreeting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67456
|
+
invoicing?: XOR<MissionsInvoicingNullableUpdateEnvelopeInput, MissionsInvoicingCreateInput> | null
|
|
67457
|
+
lastDeployedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
67458
|
+
logoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67459
|
+
mainManagerUserId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67460
|
+
managers?: XOR<MissionsManagerListUpdateEnvelopeInput, MissionsManagerCreateInput> | MissionsManagerCreateInput[]
|
|
67461
|
+
migrations?: MissionUpdatemigrationsInput | string[]
|
|
67462
|
+
promotedTags?: MissionUpdatepromotedTagsInput | string[]
|
|
67463
|
+
publishedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
67464
|
+
publisherUser?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67465
|
+
roles?: XOR<MissionRoleListUpdateEnvelopeInput, MissionRoleCreateInput> | MissionRoleCreateInput[]
|
|
67466
|
+
rolesMargin?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
67467
|
+
setAsScheduledToEndAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
67468
|
+
shortCompanyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67469
|
+
skipContracts?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
67470
|
+
status?: EnumMissionStatusFieldUpdateOperationsInput | $Enums.MissionStatus
|
|
67471
|
+
talentIndustries?: MissionUpdatetalentIndustriesInput | string[]
|
|
67472
|
+
testing?: XOR<MissionsTestingNullableUpdateEnvelopeInput, MissionsTestingCreateInput> | null
|
|
67473
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
67474
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
67475
|
+
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67476
|
+
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67477
|
+
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67478
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
67479
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67480
|
+
accountModel?: AccountUpdateOneWithoutMissionsNestedInput
|
|
67481
|
+
creatorModel?: UserUpdateOneWithoutCreatedMissionsModelsNestedInput
|
|
67482
|
+
missionSpec?: MissionSpecUpdateOneWithoutMissionNestedInput
|
|
67483
|
+
ownerModel?: UserUpdateOneWithoutOwnedMissionsModelsNestedInput
|
|
67484
|
+
contracts?: ContractUpdateManyWithoutMissionNestedInput
|
|
67485
|
+
proposals?: ProposalUpdateManyWithoutMissionNestedInput
|
|
67486
|
+
userReviews?: UserReviewUpdateManyWithoutMissionModelNestedInput
|
|
67487
|
+
}
|
|
67488
|
+
|
|
67489
|
+
export type MissionUncheckedUpdateWithoutRoleHiringCriteriasInput = {
|
|
67490
|
+
accountId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67491
|
+
applyStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67492
|
+
attachedLinks?: XOR<MissionsAttachedLinkListUpdateEnvelopeInput, MissionsAttachedLinkCreateInput> | MissionsAttachedLinkCreateInput[]
|
|
67493
|
+
automatedStatusesDisabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
67494
|
+
automaticInvoicingPeriod?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67495
|
+
bdOwners?: MissionUpdatebdOwnersInput | string[]
|
|
67496
|
+
billingPeriod?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67497
|
+
clientMargin?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
67498
|
+
companyRequest?: XOR<MissionsCompanyRequestNullableUpdateEnvelopeInput, MissionsCompanyRequestCreateInput> | null
|
|
67499
|
+
companyStory?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67500
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
67501
|
+
creatorUser?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67502
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67503
|
+
expectedDurationMonths?: NullableIntFieldUpdateOperationsInput | number | null
|
|
67504
|
+
hidden?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
67505
|
+
hubspotDealId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67506
|
+
internalDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67507
|
+
internalMission?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
67508
|
+
invoiceEmailGreeting?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67509
|
+
invoicing?: XOR<MissionsInvoicingNullableUpdateEnvelopeInput, MissionsInvoicingCreateInput> | null
|
|
67510
|
+
lastDeployedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
67511
|
+
logoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67512
|
+
mainManagerUserId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67513
|
+
managers?: XOR<MissionsManagerListUpdateEnvelopeInput, MissionsManagerCreateInput> | MissionsManagerCreateInput[]
|
|
67514
|
+
migrations?: MissionUpdatemigrationsInput | string[]
|
|
67515
|
+
missionSpecId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67516
|
+
owner?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67517
|
+
promotedTags?: MissionUpdatepromotedTagsInput | string[]
|
|
67518
|
+
publishedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
67519
|
+
publisherUser?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67520
|
+
roles?: XOR<MissionRoleListUpdateEnvelopeInput, MissionRoleCreateInput> | MissionRoleCreateInput[]
|
|
67521
|
+
rolesMargin?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
67522
|
+
setAsScheduledToEndAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
67523
|
+
shortCompanyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67524
|
+
skipContracts?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
67525
|
+
status?: EnumMissionStatusFieldUpdateOperationsInput | $Enums.MissionStatus
|
|
67526
|
+
talentIndustries?: MissionUpdatetalentIndustriesInput | string[]
|
|
67527
|
+
testing?: XOR<MissionsTestingNullableUpdateEnvelopeInput, MissionsTestingCreateInput> | null
|
|
67528
|
+
title?: StringFieldUpdateOperationsInput | string
|
|
67529
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
67530
|
+
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67531
|
+
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67532
|
+
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67533
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
67534
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67535
|
+
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
67536
|
+
proposals?: ProposalUncheckedUpdateManyWithoutMissionNestedInput
|
|
67537
|
+
userReviews?: UserReviewUncheckedUpdateManyWithoutMissionModelNestedInput
|
|
67538
|
+
}
|
|
67539
|
+
|
|
65197
67540
|
export type RoleUpdateManyInput = {
|
|
65198
67541
|
where: RoleWhereInput
|
|
65199
67542
|
data: RoleUpdateInput
|
|
@@ -65279,6 +67622,7 @@ export namespace Prisma {
|
|
|
65279
67622
|
contracts?: ContractCreateNestedManyWithoutMissionInput
|
|
65280
67623
|
proposals?: ProposalCreateNestedManyWithoutMissionInput
|
|
65281
67624
|
userReviews?: UserReviewCreateNestedManyWithoutMissionModelInput
|
|
67625
|
+
roleHiringCriterias?: RoleHiringCriteriaCreateNestedManyWithoutMissionInput
|
|
65282
67626
|
}
|
|
65283
67627
|
|
|
65284
67628
|
export type MissionUncheckedCreateWithoutCreatorModelInput = {
|
|
@@ -65330,6 +67674,7 @@ export namespace Prisma {
|
|
|
65330
67674
|
contracts?: ContractUncheckedCreateNestedManyWithoutMissionInput
|
|
65331
67675
|
proposals?: ProposalUncheckedCreateNestedManyWithoutMissionInput
|
|
65332
67676
|
userReviews?: UserReviewUncheckedCreateNestedManyWithoutMissionModelInput
|
|
67677
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedCreateNestedManyWithoutMissionInput
|
|
65333
67678
|
}
|
|
65334
67679
|
|
|
65335
67680
|
export type MissionCreateOrConnectWithoutCreatorModelInput = {
|
|
@@ -65390,6 +67735,7 @@ export namespace Prisma {
|
|
|
65390
67735
|
contracts?: ContractCreateNestedManyWithoutMissionInput
|
|
65391
67736
|
proposals?: ProposalCreateNestedManyWithoutMissionInput
|
|
65392
67737
|
userReviews?: UserReviewCreateNestedManyWithoutMissionModelInput
|
|
67738
|
+
roleHiringCriterias?: RoleHiringCriteriaCreateNestedManyWithoutMissionInput
|
|
65393
67739
|
}
|
|
65394
67740
|
|
|
65395
67741
|
export type MissionUncheckedCreateWithoutOwnerModelInput = {
|
|
@@ -65441,6 +67787,7 @@ export namespace Prisma {
|
|
|
65441
67787
|
contracts?: ContractUncheckedCreateNestedManyWithoutMissionInput
|
|
65442
67788
|
proposals?: ProposalUncheckedCreateNestedManyWithoutMissionInput
|
|
65443
67789
|
userReviews?: UserReviewUncheckedCreateNestedManyWithoutMissionModelInput
|
|
67790
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedCreateNestedManyWithoutMissionInput
|
|
65444
67791
|
}
|
|
65445
67792
|
|
|
65446
67793
|
export type MissionCreateOrConnectWithoutOwnerModelInput = {
|
|
@@ -67415,6 +69762,7 @@ export namespace Prisma {
|
|
|
67415
69762
|
ownerModel?: UserCreateNestedOneWithoutOwnedMissionsModelsInput
|
|
67416
69763
|
contracts?: ContractCreateNestedManyWithoutMissionInput
|
|
67417
69764
|
proposals?: ProposalCreateNestedManyWithoutMissionInput
|
|
69765
|
+
roleHiringCriterias?: RoleHiringCriteriaCreateNestedManyWithoutMissionInput
|
|
67418
69766
|
}
|
|
67419
69767
|
|
|
67420
69768
|
export type MissionUncheckedCreateWithoutUserReviewsInput = {
|
|
@@ -67466,6 +69814,7 @@ export namespace Prisma {
|
|
|
67466
69814
|
timezone?: string | null
|
|
67467
69815
|
contracts?: ContractUncheckedCreateNestedManyWithoutMissionInput
|
|
67468
69816
|
proposals?: ProposalUncheckedCreateNestedManyWithoutMissionInput
|
|
69817
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedCreateNestedManyWithoutMissionInput
|
|
67469
69818
|
}
|
|
67470
69819
|
|
|
67471
69820
|
export type MissionCreateOrConnectWithoutUserReviewsInput = {
|
|
@@ -67827,6 +70176,7 @@ export namespace Prisma {
|
|
|
67827
70176
|
ownerModel?: UserUpdateOneWithoutOwnedMissionsModelsNestedInput
|
|
67828
70177
|
contracts?: ContractUpdateManyWithoutMissionNestedInput
|
|
67829
70178
|
proposals?: ProposalUpdateManyWithoutMissionNestedInput
|
|
70179
|
+
roleHiringCriterias?: RoleHiringCriteriaUpdateManyWithoutMissionNestedInput
|
|
67830
70180
|
}
|
|
67831
70181
|
|
|
67832
70182
|
export type MissionUncheckedUpdateWithoutUserReviewsInput = {
|
|
@@ -67877,6 +70227,7 @@ export namespace Prisma {
|
|
|
67877
70227
|
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67878
70228
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
67879
70229
|
proposals?: ProposalUncheckedUpdateManyWithoutMissionNestedInput
|
|
70230
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedUpdateManyWithoutMissionNestedInput
|
|
67880
70231
|
}
|
|
67881
70232
|
|
|
67882
70233
|
export type EnumBillingPaymentDueFilter<$PrismaModel = never> = {
|
|
@@ -68169,6 +70520,20 @@ export namespace Prisma {
|
|
|
68169
70520
|
title?: string | null
|
|
68170
70521
|
}
|
|
68171
70522
|
|
|
70523
|
+
export type EnumHiringCriteriaCategoryFilter<$PrismaModel = never> = {
|
|
70524
|
+
equals?: $Enums.HiringCriteriaCategory | EnumHiringCriteriaCategoryFieldRefInput<$PrismaModel>
|
|
70525
|
+
in?: $Enums.HiringCriteriaCategory[] | ListEnumHiringCriteriaCategoryFieldRefInput<$PrismaModel>
|
|
70526
|
+
notIn?: $Enums.HiringCriteriaCategory[] | ListEnumHiringCriteriaCategoryFieldRefInput<$PrismaModel>
|
|
70527
|
+
not?: NestedEnumHiringCriteriaCategoryFilter<$PrismaModel> | $Enums.HiringCriteriaCategory
|
|
70528
|
+
}
|
|
70529
|
+
|
|
70530
|
+
export type EnumCriteriaItemTypeFilter<$PrismaModel = never> = {
|
|
70531
|
+
equals?: $Enums.CriteriaItemType | EnumCriteriaItemTypeFieldRefInput<$PrismaModel>
|
|
70532
|
+
in?: $Enums.CriteriaItemType[] | ListEnumCriteriaItemTypeFieldRefInput<$PrismaModel>
|
|
70533
|
+
notIn?: $Enums.CriteriaItemType[] | ListEnumCriteriaItemTypeFieldRefInput<$PrismaModel>
|
|
70534
|
+
not?: NestedEnumCriteriaItemTypeFilter<$PrismaModel> | $Enums.CriteriaItemType
|
|
70535
|
+
}
|
|
70536
|
+
|
|
68172
70537
|
export type EnumRegisterRequestTypeNullableFilter<$PrismaModel = never> = {
|
|
68173
70538
|
equals?: $Enums.RegisterRequestType | EnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
68174
70539
|
in?: $Enums.RegisterRequestType[] | ListEnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
@@ -68456,6 +70821,7 @@ export namespace Prisma {
|
|
|
68456
70821
|
contracts?: ContractUpdateManyWithoutMissionNestedInput
|
|
68457
70822
|
proposals?: ProposalUpdateManyWithoutMissionNestedInput
|
|
68458
70823
|
userReviews?: UserReviewUpdateManyWithoutMissionModelNestedInput
|
|
70824
|
+
roleHiringCriterias?: RoleHiringCriteriaUpdateManyWithoutMissionNestedInput
|
|
68459
70825
|
}
|
|
68460
70826
|
|
|
68461
70827
|
export type MissionUncheckedUpdateWithoutAccountModelInput = {
|
|
@@ -68506,6 +70872,7 @@ export namespace Prisma {
|
|
|
68506
70872
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
68507
70873
|
proposals?: ProposalUncheckedUpdateManyWithoutMissionNestedInput
|
|
68508
70874
|
userReviews?: UserReviewUncheckedUpdateManyWithoutMissionModelNestedInput
|
|
70875
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedUpdateManyWithoutMissionNestedInput
|
|
68509
70876
|
}
|
|
68510
70877
|
|
|
68511
70878
|
export type MissionUncheckedUpdateManyWithoutAccountModelInput = {
|
|
@@ -69590,6 +71957,27 @@ export namespace Prisma {
|
|
|
69590
71957
|
endedRoleReasons?: UserReviewCreateendedRoleReasonsInput | $Enums.UserReviewRoleEndedReason[]
|
|
69591
71958
|
}
|
|
69592
71959
|
|
|
71960
|
+
export type RoleHiringCriteriaCreateManyMissionInput = {
|
|
71961
|
+
id?: string
|
|
71962
|
+
roleId: string
|
|
71963
|
+
requiredSpecializations?: RoleHiringCriteriaCreaterequiredSpecializationsInput | string[]
|
|
71964
|
+
suggestedSpecializations?: RoleHiringCriteriaCreatesuggestedSpecializationsInput | string[]
|
|
71965
|
+
requiredSkills?: RoleHiringCriteriaCreaterequiredSkillsInput | string[]
|
|
71966
|
+
preferredSkills?: RoleHiringCriteriaCreatepreferredSkillsInput | string[]
|
|
71967
|
+
requiredCountries?: RoleHiringCriteriaCreaterequiredCountriesInput | string[]
|
|
71968
|
+
preferredCountries?: RoleHiringCriteriaCreatepreferredCountriesInput | string[]
|
|
71969
|
+
requiredStartDate?: Date | string | null
|
|
71970
|
+
requiredWeeklyHours?: number | null
|
|
71971
|
+
maxHourlyRate?: number | null
|
|
71972
|
+
maxMonthlyRate?: number | null
|
|
71973
|
+
requiredIndustries?: RoleHiringCriteriaCreaterequiredIndustriesInput | string[]
|
|
71974
|
+
preferredIndustries?: RoleHiringCriteriaCreatepreferredIndustriesInput | string[]
|
|
71975
|
+
hardCriteria?: XOR<CriteriaItemListCreateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
71976
|
+
weightedCriteria?: XOR<WeightedCriteriaItemListCreateEnvelopeInput, WeightedCriteriaItemCreateInput> | WeightedCriteriaItemCreateInput[]
|
|
71977
|
+
createdAt?: Date | string | null
|
|
71978
|
+
updatedAt?: Date | string | null
|
|
71979
|
+
}
|
|
71980
|
+
|
|
69593
71981
|
export type MissionsAttachedLinkUpdateInput = {
|
|
69594
71982
|
URL?: StringFieldUpdateOperationsInput | string
|
|
69595
71983
|
title?: StringFieldUpdateOperationsInput | string
|
|
@@ -69871,6 +72259,66 @@ export namespace Prisma {
|
|
|
69871
72259
|
endedRoleReasons?: UserReviewUpdateendedRoleReasonsInput | $Enums.UserReviewRoleEndedReason[]
|
|
69872
72260
|
}
|
|
69873
72261
|
|
|
72262
|
+
export type RoleHiringCriteriaUpdateWithoutMissionInput = {
|
|
72263
|
+
roleId?: StringFieldUpdateOperationsInput | string
|
|
72264
|
+
requiredSpecializations?: RoleHiringCriteriaUpdaterequiredSpecializationsInput | string[]
|
|
72265
|
+
suggestedSpecializations?: RoleHiringCriteriaUpdatesuggestedSpecializationsInput | string[]
|
|
72266
|
+
requiredSkills?: RoleHiringCriteriaUpdaterequiredSkillsInput | string[]
|
|
72267
|
+
preferredSkills?: RoleHiringCriteriaUpdatepreferredSkillsInput | string[]
|
|
72268
|
+
requiredCountries?: RoleHiringCriteriaUpdaterequiredCountriesInput | string[]
|
|
72269
|
+
preferredCountries?: RoleHiringCriteriaUpdatepreferredCountriesInput | string[]
|
|
72270
|
+
requiredStartDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72271
|
+
requiredWeeklyHours?: NullableIntFieldUpdateOperationsInput | number | null
|
|
72272
|
+
maxHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
72273
|
+
maxMonthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
72274
|
+
requiredIndustries?: RoleHiringCriteriaUpdaterequiredIndustriesInput | string[]
|
|
72275
|
+
preferredIndustries?: RoleHiringCriteriaUpdatepreferredIndustriesInput | string[]
|
|
72276
|
+
hardCriteria?: XOR<CriteriaItemListUpdateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
72277
|
+
weightedCriteria?: XOR<WeightedCriteriaItemListUpdateEnvelopeInput, WeightedCriteriaItemCreateInput> | WeightedCriteriaItemCreateInput[]
|
|
72278
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72279
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72280
|
+
}
|
|
72281
|
+
|
|
72282
|
+
export type RoleHiringCriteriaUncheckedUpdateWithoutMissionInput = {
|
|
72283
|
+
roleId?: StringFieldUpdateOperationsInput | string
|
|
72284
|
+
requiredSpecializations?: RoleHiringCriteriaUpdaterequiredSpecializationsInput | string[]
|
|
72285
|
+
suggestedSpecializations?: RoleHiringCriteriaUpdatesuggestedSpecializationsInput | string[]
|
|
72286
|
+
requiredSkills?: RoleHiringCriteriaUpdaterequiredSkillsInput | string[]
|
|
72287
|
+
preferredSkills?: RoleHiringCriteriaUpdatepreferredSkillsInput | string[]
|
|
72288
|
+
requiredCountries?: RoleHiringCriteriaUpdaterequiredCountriesInput | string[]
|
|
72289
|
+
preferredCountries?: RoleHiringCriteriaUpdatepreferredCountriesInput | string[]
|
|
72290
|
+
requiredStartDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72291
|
+
requiredWeeklyHours?: NullableIntFieldUpdateOperationsInput | number | null
|
|
72292
|
+
maxHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
72293
|
+
maxMonthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
72294
|
+
requiredIndustries?: RoleHiringCriteriaUpdaterequiredIndustriesInput | string[]
|
|
72295
|
+
preferredIndustries?: RoleHiringCriteriaUpdatepreferredIndustriesInput | string[]
|
|
72296
|
+
hardCriteria?: XOR<CriteriaItemListUpdateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
72297
|
+
weightedCriteria?: XOR<WeightedCriteriaItemListUpdateEnvelopeInput, WeightedCriteriaItemCreateInput> | WeightedCriteriaItemCreateInput[]
|
|
72298
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72299
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72300
|
+
}
|
|
72301
|
+
|
|
72302
|
+
export type RoleHiringCriteriaUncheckedUpdateManyWithoutMissionInput = {
|
|
72303
|
+
roleId?: StringFieldUpdateOperationsInput | string
|
|
72304
|
+
requiredSpecializations?: RoleHiringCriteriaUpdaterequiredSpecializationsInput | string[]
|
|
72305
|
+
suggestedSpecializations?: RoleHiringCriteriaUpdatesuggestedSpecializationsInput | string[]
|
|
72306
|
+
requiredSkills?: RoleHiringCriteriaUpdaterequiredSkillsInput | string[]
|
|
72307
|
+
preferredSkills?: RoleHiringCriteriaUpdatepreferredSkillsInput | string[]
|
|
72308
|
+
requiredCountries?: RoleHiringCriteriaUpdaterequiredCountriesInput | string[]
|
|
72309
|
+
preferredCountries?: RoleHiringCriteriaUpdatepreferredCountriesInput | string[]
|
|
72310
|
+
requiredStartDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72311
|
+
requiredWeeklyHours?: NullableIntFieldUpdateOperationsInput | number | null
|
|
72312
|
+
maxHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
72313
|
+
maxMonthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
72314
|
+
requiredIndustries?: RoleHiringCriteriaUpdaterequiredIndustriesInput | string[]
|
|
72315
|
+
preferredIndustries?: RoleHiringCriteriaUpdatepreferredIndustriesInput | string[]
|
|
72316
|
+
hardCriteria?: XOR<CriteriaItemListUpdateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
72317
|
+
weightedCriteria?: XOR<WeightedCriteriaItemListUpdateEnvelopeInput, WeightedCriteriaItemCreateInput> | WeightedCriteriaItemCreateInput[]
|
|
72318
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72319
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72320
|
+
}
|
|
72321
|
+
|
|
69874
72322
|
export type MissionApplicationRateRangeUpdateInput = {
|
|
69875
72323
|
min?: FloatFieldUpdateOperationsInput | number
|
|
69876
72324
|
max?: FloatFieldUpdateOperationsInput | number
|
|
@@ -70314,6 +72762,21 @@ export namespace Prisma {
|
|
|
70314
72762
|
email?: StringFieldUpdateOperationsInput | string
|
|
70315
72763
|
}
|
|
70316
72764
|
|
|
72765
|
+
export type CriteriaItemUpdateInput = {
|
|
72766
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
72767
|
+
description?: StringFieldUpdateOperationsInput | string
|
|
72768
|
+
category?: EnumHiringCriteriaCategoryFieldUpdateOperationsInput | $Enums.HiringCriteriaCategory
|
|
72769
|
+
type?: EnumCriteriaItemTypeFieldUpdateOperationsInput | $Enums.CriteriaItemType
|
|
72770
|
+
}
|
|
72771
|
+
|
|
72772
|
+
export type WeightedCriteriaItemUpdateInput = {
|
|
72773
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
72774
|
+
description?: StringFieldUpdateOperationsInput | string
|
|
72775
|
+
category?: EnumHiringCriteriaCategoryFieldUpdateOperationsInput | $Enums.HiringCriteriaCategory
|
|
72776
|
+
type?: EnumCriteriaItemTypeFieldUpdateOperationsInput | $Enums.CriteriaItemType
|
|
72777
|
+
weight?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
72778
|
+
}
|
|
72779
|
+
|
|
70317
72780
|
export type RoleUpdateInput = {
|
|
70318
72781
|
category?: StringFieldUpdateOperationsInput | string
|
|
70319
72782
|
}
|
|
@@ -70925,6 +73388,7 @@ export namespace Prisma {
|
|
|
70925
73388
|
contracts?: ContractUpdateManyWithoutMissionNestedInput
|
|
70926
73389
|
proposals?: ProposalUpdateManyWithoutMissionNestedInput
|
|
70927
73390
|
userReviews?: UserReviewUpdateManyWithoutMissionModelNestedInput
|
|
73391
|
+
roleHiringCriterias?: RoleHiringCriteriaUpdateManyWithoutMissionNestedInput
|
|
70928
73392
|
}
|
|
70929
73393
|
|
|
70930
73394
|
export type MissionUncheckedUpdateWithoutCreatorModelInput = {
|
|
@@ -70975,6 +73439,7 @@ export namespace Prisma {
|
|
|
70975
73439
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
70976
73440
|
proposals?: ProposalUncheckedUpdateManyWithoutMissionNestedInput
|
|
70977
73441
|
userReviews?: UserReviewUncheckedUpdateManyWithoutMissionModelNestedInput
|
|
73442
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedUpdateManyWithoutMissionNestedInput
|
|
70978
73443
|
}
|
|
70979
73444
|
|
|
70980
73445
|
export type MissionUncheckedUpdateManyWithoutCreatorModelInput = {
|
|
@@ -71072,6 +73537,7 @@ export namespace Prisma {
|
|
|
71072
73537
|
contracts?: ContractUpdateManyWithoutMissionNestedInput
|
|
71073
73538
|
proposals?: ProposalUpdateManyWithoutMissionNestedInput
|
|
71074
73539
|
userReviews?: UserReviewUpdateManyWithoutMissionModelNestedInput
|
|
73540
|
+
roleHiringCriterias?: RoleHiringCriteriaUpdateManyWithoutMissionNestedInput
|
|
71075
73541
|
}
|
|
71076
73542
|
|
|
71077
73543
|
export type MissionUncheckedUpdateWithoutOwnerModelInput = {
|
|
@@ -71122,6 +73588,7 @@ export namespace Prisma {
|
|
|
71122
73588
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
71123
73589
|
proposals?: ProposalUncheckedUpdateManyWithoutMissionNestedInput
|
|
71124
73590
|
userReviews?: UserReviewUncheckedUpdateManyWithoutMissionModelNestedInput
|
|
73591
|
+
roleHiringCriterias?: RoleHiringCriteriaUncheckedUpdateManyWithoutMissionNestedInput
|
|
71125
73592
|
}
|
|
71126
73593
|
|
|
71127
73594
|
export type MissionUncheckedUpdateManyWithoutOwnerModelInput = {
|
|
@@ -72534,6 +75001,20 @@ export namespace Prisma {
|
|
|
72534
75001
|
website?: StringNullableFilter<"ProposalTfsPitch"> | string | null
|
|
72535
75002
|
}
|
|
72536
75003
|
|
|
75004
|
+
export type NestedEnumHiringCriteriaCategoryFilter<$PrismaModel = never> = {
|
|
75005
|
+
equals?: $Enums.HiringCriteriaCategory | EnumHiringCriteriaCategoryFieldRefInput<$PrismaModel>
|
|
75006
|
+
in?: $Enums.HiringCriteriaCategory[] | ListEnumHiringCriteriaCategoryFieldRefInput<$PrismaModel>
|
|
75007
|
+
notIn?: $Enums.HiringCriteriaCategory[] | ListEnumHiringCriteriaCategoryFieldRefInput<$PrismaModel>
|
|
75008
|
+
not?: NestedEnumHiringCriteriaCategoryFilter<$PrismaModel> | $Enums.HiringCriteriaCategory
|
|
75009
|
+
}
|
|
75010
|
+
|
|
75011
|
+
export type NestedEnumCriteriaItemTypeFilter<$PrismaModel = never> = {
|
|
75012
|
+
equals?: $Enums.CriteriaItemType | EnumCriteriaItemTypeFieldRefInput<$PrismaModel>
|
|
75013
|
+
in?: $Enums.CriteriaItemType[] | ListEnumCriteriaItemTypeFieldRefInput<$PrismaModel>
|
|
75014
|
+
notIn?: $Enums.CriteriaItemType[] | ListEnumCriteriaItemTypeFieldRefInput<$PrismaModel>
|
|
75015
|
+
not?: NestedEnumCriteriaItemTypeFilter<$PrismaModel> | $Enums.CriteriaItemType
|
|
75016
|
+
}
|
|
75017
|
+
|
|
72537
75018
|
export type NestedEnumRegisterRequestTypeNullableFilter<$PrismaModel = never> = {
|
|
72538
75019
|
equals?: $Enums.RegisterRequestType | EnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
72539
75020
|
in?: $Enums.RegisterRequestType[] | ListEnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
@@ -72856,6 +75337,14 @@ export namespace Prisma {
|
|
|
72856
75337
|
unset?: boolean
|
|
72857
75338
|
}
|
|
72858
75339
|
|
|
75340
|
+
export type EnumHiringCriteriaCategoryFieldUpdateOperationsInput = {
|
|
75341
|
+
set?: $Enums.HiringCriteriaCategory
|
|
75342
|
+
}
|
|
75343
|
+
|
|
75344
|
+
export type EnumCriteriaItemTypeFieldUpdateOperationsInput = {
|
|
75345
|
+
set?: $Enums.CriteriaItemType
|
|
75346
|
+
}
|
|
75347
|
+
|
|
72859
75348
|
export type UserTalentIndustryExperienceViewCreatejobTitlesInput = {
|
|
72860
75349
|
set: string[]
|
|
72861
75350
|
}
|
|
@@ -73695,6 +76184,14 @@ export namespace Prisma {
|
|
|
73695
76184
|
* @deprecated Use CallParticipantDefaultArgs instead
|
|
73696
76185
|
*/
|
|
73697
76186
|
export type CallParticipantArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = CallParticipantDefaultArgs<ExtArgs>
|
|
76187
|
+
/**
|
|
76188
|
+
* @deprecated Use CriteriaItemDefaultArgs instead
|
|
76189
|
+
*/
|
|
76190
|
+
export type CriteriaItemArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = CriteriaItemDefaultArgs<ExtArgs>
|
|
76191
|
+
/**
|
|
76192
|
+
* @deprecated Use WeightedCriteriaItemDefaultArgs instead
|
|
76193
|
+
*/
|
|
76194
|
+
export type WeightedCriteriaItemArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = WeightedCriteriaItemDefaultArgs<ExtArgs>
|
|
73698
76195
|
/**
|
|
73699
76196
|
* @deprecated Use RoleDefaultArgs instead
|
|
73700
76197
|
*/
|
|
@@ -73879,6 +76376,10 @@ export namespace Prisma {
|
|
|
73879
76376
|
* @deprecated Use RoleCategoryDefaultArgs instead
|
|
73880
76377
|
*/
|
|
73881
76378
|
export type RoleCategoryArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = RoleCategoryDefaultArgs<ExtArgs>
|
|
76379
|
+
/**
|
|
76380
|
+
* @deprecated Use RoleHiringCriteriaDefaultArgs instead
|
|
76381
|
+
*/
|
|
76382
|
+
export type RoleHiringCriteriaArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = RoleHiringCriteriaDefaultArgs<ExtArgs>
|
|
73882
76383
|
/**
|
|
73883
76384
|
* @deprecated Use SolutionDefaultArgs instead
|
|
73884
76385
|
*/
|