@a_team/prisma 3.4.5-win → 3.4.6-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 +4 -4
- package/dist/client/index.d.ts +260 -0
- package/dist/client/index.js +6 -6
- package/dist/client/{query_engine-windows.dll.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 +10 -0
- package/package.json +2 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -228,6 +228,16 @@ export type UserTalentIndustriesAssignment = $Result.DefaultSelection<Prisma.$Us
|
|
|
228
228
|
*
|
|
229
229
|
*/
|
|
230
230
|
export type TalentProfile = $Result.DefaultSelection<Prisma.$TalentProfilePayload>
|
|
231
|
+
/**
|
|
232
|
+
* Model MissionPreference
|
|
233
|
+
*
|
|
234
|
+
*/
|
|
235
|
+
export type MissionPreference = $Result.DefaultSelection<Prisma.$MissionPreferencePayload>
|
|
236
|
+
/**
|
|
237
|
+
* Model MissionPreferences
|
|
238
|
+
*
|
|
239
|
+
*/
|
|
240
|
+
export type MissionPreferences = $Result.DefaultSelection<Prisma.$MissionPreferencesPayload>
|
|
231
241
|
/**
|
|
232
242
|
* Model Account
|
|
233
243
|
*
|
|
@@ -5410,6 +5420,119 @@ export namespace Prisma {
|
|
|
5410
5420
|
}
|
|
5411
5421
|
|
|
5412
5422
|
|
|
5423
|
+
/**
|
|
5424
|
+
* Model MissionPreference
|
|
5425
|
+
*/
|
|
5426
|
+
|
|
5427
|
+
|
|
5428
|
+
|
|
5429
|
+
|
|
5430
|
+
|
|
5431
|
+
export type MissionPreferenceSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
5432
|
+
missionId?: boolean
|
|
5433
|
+
reason?: boolean
|
|
5434
|
+
}, ExtArgs["result"]["missionPreference"]>
|
|
5435
|
+
|
|
5436
|
+
|
|
5437
|
+
export type MissionPreferenceSelectScalar = {
|
|
5438
|
+
missionId?: boolean
|
|
5439
|
+
reason?: boolean
|
|
5440
|
+
}
|
|
5441
|
+
|
|
5442
|
+
|
|
5443
|
+
export type $MissionPreferencePayload = {
|
|
5444
|
+
name: "MissionPreference"
|
|
5445
|
+
objects: {}
|
|
5446
|
+
scalars: {
|
|
5447
|
+
missionId: string
|
|
5448
|
+
reason: string | null
|
|
5449
|
+
}
|
|
5450
|
+
composites: {}
|
|
5451
|
+
}
|
|
5452
|
+
|
|
5453
|
+
type MissionPreferenceGetPayload<S extends boolean | null | undefined | MissionPreferenceDefaultArgs> = $Result.GetResult<Prisma.$MissionPreferencePayload, S>
|
|
5454
|
+
|
|
5455
|
+
|
|
5456
|
+
|
|
5457
|
+
|
|
5458
|
+
|
|
5459
|
+
/**
|
|
5460
|
+
* Fields of the MissionPreference model
|
|
5461
|
+
*/
|
|
5462
|
+
interface MissionPreferenceFieldRefs {
|
|
5463
|
+
readonly missionId: FieldRef<"MissionPreference", 'String'>
|
|
5464
|
+
readonly reason: FieldRef<"MissionPreference", 'String'>
|
|
5465
|
+
}
|
|
5466
|
+
|
|
5467
|
+
|
|
5468
|
+
// Custom InputTypes
|
|
5469
|
+
/**
|
|
5470
|
+
* MissionPreference without action
|
|
5471
|
+
*/
|
|
5472
|
+
export type MissionPreferenceDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5473
|
+
/**
|
|
5474
|
+
* Select specific fields to fetch from the MissionPreference
|
|
5475
|
+
*/
|
|
5476
|
+
select?: MissionPreferenceSelect<ExtArgs> | null
|
|
5477
|
+
}
|
|
5478
|
+
|
|
5479
|
+
|
|
5480
|
+
/**
|
|
5481
|
+
* Model MissionPreferences
|
|
5482
|
+
*/
|
|
5483
|
+
|
|
5484
|
+
|
|
5485
|
+
|
|
5486
|
+
|
|
5487
|
+
|
|
5488
|
+
export type MissionPreferencesSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
5489
|
+
notInterestedMissions?: boolean | MissionPreferenceDefaultArgs<ExtArgs>
|
|
5490
|
+
}, ExtArgs["result"]["missionPreferences"]>
|
|
5491
|
+
|
|
5492
|
+
|
|
5493
|
+
export type MissionPreferencesSelectScalar = {}
|
|
5494
|
+
|
|
5495
|
+
export type MissionPreferencesInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
5496
|
+
|
|
5497
|
+
export type $MissionPreferencesPayload = {
|
|
5498
|
+
name: "MissionPreferences"
|
|
5499
|
+
objects: {}
|
|
5500
|
+
scalars: {}
|
|
5501
|
+
composites: {
|
|
5502
|
+
notInterestedMissions: Prisma.$MissionPreferencePayload[]
|
|
5503
|
+
}
|
|
5504
|
+
}
|
|
5505
|
+
|
|
5506
|
+
type MissionPreferencesGetPayload<S extends boolean | null | undefined | MissionPreferencesDefaultArgs> = $Result.GetResult<Prisma.$MissionPreferencesPayload, S>
|
|
5507
|
+
|
|
5508
|
+
|
|
5509
|
+
|
|
5510
|
+
|
|
5511
|
+
|
|
5512
|
+
/**
|
|
5513
|
+
* Fields of the MissionPreferences model
|
|
5514
|
+
*/
|
|
5515
|
+
interface MissionPreferencesFieldRefs {
|
|
5516
|
+
|
|
5517
|
+
}
|
|
5518
|
+
|
|
5519
|
+
|
|
5520
|
+
// Custom InputTypes
|
|
5521
|
+
/**
|
|
5522
|
+
* MissionPreferences without action
|
|
5523
|
+
*/
|
|
5524
|
+
export type MissionPreferencesDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5525
|
+
/**
|
|
5526
|
+
* Select specific fields to fetch from the MissionPreferences
|
|
5527
|
+
*/
|
|
5528
|
+
select?: MissionPreferencesSelect<ExtArgs> | null
|
|
5529
|
+
/**
|
|
5530
|
+
* Choose, which related nodes to fetch as well
|
|
5531
|
+
*/
|
|
5532
|
+
include?: MissionPreferencesInclude<ExtArgs> | null
|
|
5533
|
+
}
|
|
5534
|
+
|
|
5535
|
+
|
|
5413
5536
|
/**
|
|
5414
5537
|
* Model Account
|
|
5415
5538
|
*/
|
|
@@ -18152,6 +18275,7 @@ export namespace Prisma {
|
|
|
18152
18275
|
rateRange?: boolean | RateRangeDefaultArgs<ExtArgs>
|
|
18153
18276
|
talentProfile?: boolean | TalentProfileDefaultArgs<ExtArgs>
|
|
18154
18277
|
onboardingStage?: boolean
|
|
18278
|
+
missionPreferences?: boolean | MissionPreferencesDefaultArgs<ExtArgs>
|
|
18155
18279
|
createdMissionsModels?: boolean | User$createdMissionsModelsArgs<ExtArgs>
|
|
18156
18280
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
18157
18281
|
authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
|
|
@@ -18222,6 +18346,7 @@ export namespace Prisma {
|
|
|
18222
18346
|
linkedin: Prisma.$LinkedInObjectPayload | null
|
|
18223
18347
|
rateRange: Prisma.$RateRangePayload | null
|
|
18224
18348
|
talentProfile: Prisma.$TalentProfilePayload | null
|
|
18349
|
+
missionPreferences: Prisma.$MissionPreferencesPayload | null
|
|
18225
18350
|
}
|
|
18226
18351
|
}
|
|
18227
18352
|
|
|
@@ -20818,6 +20943,7 @@ export namespace Prisma {
|
|
|
20818
20943
|
rateRange?: XOR<RateRangeNullableCompositeFilter, RateRangeObjectEqualityInput> | null
|
|
20819
20944
|
talentProfile?: XOR<TalentProfileNullableCompositeFilter, TalentProfileObjectEqualityInput> | null
|
|
20820
20945
|
onboardingStage?: EnumInternalOnboardingStageNullableFilter<"User"> | $Enums.InternalOnboardingStage | null
|
|
20946
|
+
missionPreferences?: XOR<MissionPreferencesNullableCompositeFilter, MissionPreferencesObjectEqualityInput> | null
|
|
20821
20947
|
createdMissionsModels?: MissionListRelationFilter
|
|
20822
20948
|
ownedMissionsModels?: MissionListRelationFilter
|
|
20823
20949
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
@@ -20847,6 +20973,7 @@ export namespace Prisma {
|
|
|
20847
20973
|
rateRange?: RateRangeOrderByInput
|
|
20848
20974
|
talentProfile?: TalentProfileOrderByInput
|
|
20849
20975
|
onboardingStage?: SortOrder
|
|
20976
|
+
missionPreferences?: MissionPreferencesOrderByInput
|
|
20850
20977
|
createdMissionsModels?: MissionOrderByRelationAggregateInput
|
|
20851
20978
|
ownedMissionsModels?: MissionOrderByRelationAggregateInput
|
|
20852
20979
|
authoredMissionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
@@ -20879,6 +21006,7 @@ export namespace Prisma {
|
|
|
20879
21006
|
rateRange?: XOR<RateRangeNullableCompositeFilter, RateRangeObjectEqualityInput> | null
|
|
20880
21007
|
talentProfile?: XOR<TalentProfileNullableCompositeFilter, TalentProfileObjectEqualityInput> | null
|
|
20881
21008
|
onboardingStage?: EnumInternalOnboardingStageNullableFilter<"User"> | $Enums.InternalOnboardingStage | null
|
|
21009
|
+
missionPreferences?: XOR<MissionPreferencesNullableCompositeFilter, MissionPreferencesObjectEqualityInput> | null
|
|
20882
21010
|
createdMissionsModels?: MissionListRelationFilter
|
|
20883
21011
|
ownedMissionsModels?: MissionListRelationFilter
|
|
20884
21012
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
@@ -22353,6 +22481,7 @@ export namespace Prisma {
|
|
|
22353
22481
|
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
22354
22482
|
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
22355
22483
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
22484
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
22356
22485
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
22357
22486
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
22358
22487
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -22382,6 +22511,7 @@ export namespace Prisma {
|
|
|
22382
22511
|
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
22383
22512
|
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
22384
22513
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
22514
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
22385
22515
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
22386
22516
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
22387
22517
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -22410,6 +22540,7 @@ export namespace Prisma {
|
|
|
22410
22540
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
22411
22541
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
22412
22542
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
22543
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
22413
22544
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
22414
22545
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
22415
22546
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -22438,6 +22569,7 @@ export namespace Prisma {
|
|
|
22438
22569
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
22439
22570
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
22440
22571
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
22572
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
22441
22573
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
22442
22574
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
22443
22575
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -22467,6 +22599,7 @@ export namespace Prisma {
|
|
|
22467
22599
|
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
22468
22600
|
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
22469
22601
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
22602
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
22470
22603
|
}
|
|
22471
22604
|
|
|
22472
22605
|
export type UserUpdateManyMutationInput = {
|
|
@@ -22490,6 +22623,7 @@ export namespace Prisma {
|
|
|
22490
22623
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
22491
22624
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
22492
22625
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
22626
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
22493
22627
|
}
|
|
22494
22628
|
|
|
22495
22629
|
export type UserUncheckedUpdateManyInput = {
|
|
@@ -22513,6 +22647,7 @@ export namespace Prisma {
|
|
|
22513
22647
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
22514
22648
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
22515
22649
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
22650
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
22516
22651
|
}
|
|
22517
22652
|
|
|
22518
22653
|
export type StringFilter<$PrismaModel = never> = {
|
|
@@ -24014,6 +24149,17 @@ export namespace Prisma {
|
|
|
24014
24149
|
isSet?: boolean
|
|
24015
24150
|
}
|
|
24016
24151
|
|
|
24152
|
+
export type MissionPreferencesNullableCompositeFilter = {
|
|
24153
|
+
equals?: MissionPreferencesObjectEqualityInput | null
|
|
24154
|
+
is?: MissionPreferencesWhereInput | null
|
|
24155
|
+
isNot?: MissionPreferencesWhereInput | null
|
|
24156
|
+
isSet?: boolean
|
|
24157
|
+
}
|
|
24158
|
+
|
|
24159
|
+
export type MissionPreferencesObjectEqualityInput = {
|
|
24160
|
+
notInterestedMissions?: MissionPreferenceObjectEqualityInput[]
|
|
24161
|
+
}
|
|
24162
|
+
|
|
24017
24163
|
export type MissionPrefillListRelationFilter = {
|
|
24018
24164
|
every?: MissionPrefillWhereInput
|
|
24019
24165
|
some?: MissionPrefillWhereInput
|
|
@@ -24052,6 +24198,10 @@ export namespace Prisma {
|
|
|
24052
24198
|
talentIndustries?: UserTalentIndustriesAssignmentOrderByInput
|
|
24053
24199
|
}
|
|
24054
24200
|
|
|
24201
|
+
export type MissionPreferencesOrderByInput = {
|
|
24202
|
+
notInterestedMissions?: MissionPreferenceOrderByCompositeAggregateInput
|
|
24203
|
+
}
|
|
24204
|
+
|
|
24055
24205
|
export type MissionPrefillOrderByRelationAggregateInput = {
|
|
24056
24206
|
_count?: SortOrder
|
|
24057
24207
|
}
|
|
@@ -25277,6 +25427,14 @@ export namespace Prisma {
|
|
|
25277
25427
|
talentIndustries?: UserTalentIndustriesAssignmentCreateInput | null
|
|
25278
25428
|
}
|
|
25279
25429
|
|
|
25430
|
+
export type MissionPreferencesNullableCreateEnvelopeInput = {
|
|
25431
|
+
set?: MissionPreferencesCreateInput | null
|
|
25432
|
+
}
|
|
25433
|
+
|
|
25434
|
+
export type MissionPreferencesCreateInput = {
|
|
25435
|
+
notInterestedMissions?: MissionPreferenceCreateInput | MissionPreferenceCreateInput[]
|
|
25436
|
+
}
|
|
25437
|
+
|
|
25280
25438
|
export type MissionCreateNestedManyWithoutCreatorModelInput = {
|
|
25281
25439
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
25282
25440
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -25391,6 +25549,12 @@ export namespace Prisma {
|
|
|
25391
25549
|
unset?: boolean
|
|
25392
25550
|
}
|
|
25393
25551
|
|
|
25552
|
+
export type MissionPreferencesNullableUpdateEnvelopeInput = {
|
|
25553
|
+
set?: MissionPreferencesCreateInput | null
|
|
25554
|
+
upsert?: MissionPreferencesUpsertInput
|
|
25555
|
+
unset?: boolean
|
|
25556
|
+
}
|
|
25557
|
+
|
|
25394
25558
|
export type MissionUpdateManyWithoutCreatorModelNestedInput = {
|
|
25395
25559
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
25396
25560
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -26309,6 +26473,18 @@ export namespace Prisma {
|
|
|
26309
26473
|
isSet?: boolean
|
|
26310
26474
|
}
|
|
26311
26475
|
|
|
26476
|
+
export type MissionPreferencesWhereInput = {
|
|
26477
|
+
AND?: MissionPreferencesWhereInput | MissionPreferencesWhereInput[]
|
|
26478
|
+
OR?: MissionPreferencesWhereInput[]
|
|
26479
|
+
NOT?: MissionPreferencesWhereInput | MissionPreferencesWhereInput[]
|
|
26480
|
+
notInterestedMissions?: MissionPreferenceCompositeListFilter | MissionPreferenceObjectEqualityInput[]
|
|
26481
|
+
}
|
|
26482
|
+
|
|
26483
|
+
export type MissionPreferenceObjectEqualityInput = {
|
|
26484
|
+
missionId: string
|
|
26485
|
+
reason?: string | null
|
|
26486
|
+
}
|
|
26487
|
+
|
|
26312
26488
|
export type UserTalentSkillAssignmentDataOrderByInput = {
|
|
26313
26489
|
mainTalentSkills?: UserTalentSkillAssignmentOrderByCompositeAggregateInput
|
|
26314
26490
|
additionalTalentSkills?: UserTalentSkillAssignmentOrderByCompositeAggregateInput
|
|
@@ -26318,6 +26494,10 @@ export namespace Prisma {
|
|
|
26318
26494
|
experiences?: UserTalentIndustryExperienceViewOrderByCompositeAggregateInput
|
|
26319
26495
|
}
|
|
26320
26496
|
|
|
26497
|
+
export type MissionPreferenceOrderByCompositeAggregateInput = {
|
|
26498
|
+
_count?: SortOrder
|
|
26499
|
+
}
|
|
26500
|
+
|
|
26321
26501
|
export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
26322
26502
|
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
26323
26503
|
not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
|
|
@@ -27498,6 +27678,7 @@ export namespace Prisma {
|
|
|
27498
27678
|
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
27499
27679
|
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
27500
27680
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
27681
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27501
27682
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
27502
27683
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
27503
27684
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -27526,6 +27707,7 @@ export namespace Prisma {
|
|
|
27526
27707
|
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
27527
27708
|
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
27528
27709
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
27710
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27529
27711
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
27530
27712
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
27531
27713
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -27622,6 +27804,7 @@ export namespace Prisma {
|
|
|
27622
27804
|
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
27623
27805
|
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
27624
27806
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
27807
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27625
27808
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
27626
27809
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
27627
27810
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -27650,6 +27833,7 @@ export namespace Prisma {
|
|
|
27650
27833
|
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
27651
27834
|
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
27652
27835
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
27836
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27653
27837
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
27654
27838
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
27655
27839
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -27815,6 +27999,7 @@ export namespace Prisma {
|
|
|
27815
27999
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
27816
28000
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
27817
28001
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
28002
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27818
28003
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
27819
28004
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
27820
28005
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -27842,6 +28027,7 @@ export namespace Prisma {
|
|
|
27842
28027
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
27843
28028
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
27844
28029
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
28030
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27845
28031
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
27846
28032
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
27847
28033
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -27947,6 +28133,7 @@ export namespace Prisma {
|
|
|
27947
28133
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
27948
28134
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
27949
28135
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
28136
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27950
28137
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
27951
28138
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
27952
28139
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -27974,6 +28161,7 @@ export namespace Prisma {
|
|
|
27974
28161
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
27975
28162
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
27976
28163
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
28164
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27977
28165
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
27978
28166
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
27979
28167
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -28018,6 +28206,7 @@ export namespace Prisma {
|
|
|
28018
28206
|
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
28019
28207
|
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
28020
28208
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
28209
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
28021
28210
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
28022
28211
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
28023
28212
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -28046,6 +28235,7 @@ export namespace Prisma {
|
|
|
28046
28235
|
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
28047
28236
|
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
28048
28237
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
28238
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
28049
28239
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
28050
28240
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
28051
28241
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -28089,6 +28279,7 @@ export namespace Prisma {
|
|
|
28089
28279
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
28090
28280
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
28091
28281
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
28282
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
28092
28283
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
28093
28284
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
28094
28285
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -28116,6 +28307,7 @@ export namespace Prisma {
|
|
|
28116
28307
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
28117
28308
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
28118
28309
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
28310
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
28119
28311
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
28120
28312
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
28121
28313
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -28209,6 +28401,7 @@ export namespace Prisma {
|
|
|
28209
28401
|
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
28210
28402
|
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
28211
28403
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
28404
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
28212
28405
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
28213
28406
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
28214
28407
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -28237,6 +28430,7 @@ export namespace Prisma {
|
|
|
28237
28430
|
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
28238
28431
|
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
28239
28432
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
28433
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
28240
28434
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
28241
28435
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
28242
28436
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -28303,6 +28497,7 @@ export namespace Prisma {
|
|
|
28303
28497
|
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
28304
28498
|
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
28305
28499
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
28500
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
28306
28501
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
28307
28502
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
28308
28503
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -28331,6 +28526,7 @@ export namespace Prisma {
|
|
|
28331
28526
|
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
28332
28527
|
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
28333
28528
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
28529
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
28334
28530
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
28335
28531
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
28336
28532
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -28549,6 +28745,7 @@ export namespace Prisma {
|
|
|
28549
28745
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
28550
28746
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
28551
28747
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
28748
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
28552
28749
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
28553
28750
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
28554
28751
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -28576,6 +28773,7 @@ export namespace Prisma {
|
|
|
28576
28773
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
28577
28774
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
28578
28775
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
28776
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
28579
28777
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
28580
28778
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
28581
28779
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -28651,6 +28849,7 @@ export namespace Prisma {
|
|
|
28651
28849
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
28652
28850
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
28653
28851
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
28852
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
28654
28853
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
28655
28854
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
28656
28855
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -28678,6 +28877,7 @@ export namespace Prisma {
|
|
|
28678
28877
|
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
28679
28878
|
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
28680
28879
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
28880
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
28681
28881
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
28682
28882
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
28683
28883
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -28817,6 +29017,11 @@ export namespace Prisma {
|
|
|
28817
29017
|
experiences?: UserTalentIndustryExperienceViewCreateInput | UserTalentIndustryExperienceViewCreateInput[]
|
|
28818
29018
|
}
|
|
28819
29019
|
|
|
29020
|
+
export type MissionPreferenceCreateInput = {
|
|
29021
|
+
missionId: string
|
|
29022
|
+
reason?: string | null
|
|
29023
|
+
}
|
|
29024
|
+
|
|
28820
29025
|
export type MissionCreateWithoutCreatorModelInput = {
|
|
28821
29026
|
mid?: string
|
|
28822
29027
|
applyStatus?: string | null
|
|
@@ -29225,6 +29430,11 @@ export namespace Prisma {
|
|
|
29225
29430
|
update: TalentProfileUpdateInput
|
|
29226
29431
|
}
|
|
29227
29432
|
|
|
29433
|
+
export type MissionPreferencesUpsertInput = {
|
|
29434
|
+
set: MissionPreferencesCreateInput | null
|
|
29435
|
+
update: MissionPreferencesUpdateInput
|
|
29436
|
+
}
|
|
29437
|
+
|
|
29228
29438
|
export type MissionUpsertWithWhereUniqueWithoutCreatorModelInput = {
|
|
29229
29439
|
where: MissionWhereUniqueInput
|
|
29230
29440
|
update: XOR<MissionUpdateWithoutCreatorModelInput, MissionUncheckedUpdateWithoutCreatorModelInput>
|
|
@@ -29507,6 +29717,15 @@ export namespace Prisma {
|
|
|
29507
29717
|
talentIndustryName?: string | null
|
|
29508
29718
|
}
|
|
29509
29719
|
|
|
29720
|
+
export type MissionPreferenceCompositeListFilter = {
|
|
29721
|
+
equals?: MissionPreferenceObjectEqualityInput[]
|
|
29722
|
+
every?: MissionPreferenceWhereInput
|
|
29723
|
+
some?: MissionPreferenceWhereInput
|
|
29724
|
+
none?: MissionPreferenceWhereInput
|
|
29725
|
+
isEmpty?: boolean
|
|
29726
|
+
isSet?: boolean
|
|
29727
|
+
}
|
|
29728
|
+
|
|
29510
29729
|
export type UserTalentSkillAssignmentOrderByCompositeAggregateInput = {
|
|
29511
29730
|
_count?: SortOrder
|
|
29512
29731
|
}
|
|
@@ -30554,6 +30773,10 @@ export namespace Prisma {
|
|
|
30554
30773
|
talentIndustries?: XOR<UserTalentIndustriesAssignmentNullableUpdateEnvelopeInput, UserTalentIndustriesAssignmentCreateInput> | null
|
|
30555
30774
|
}
|
|
30556
30775
|
|
|
30776
|
+
export type MissionPreferencesUpdateInput = {
|
|
30777
|
+
notInterestedMissions?: XOR<MissionPreferenceListUpdateEnvelopeInput, MissionPreferenceCreateInput> | MissionPreferenceCreateInput[]
|
|
30778
|
+
}
|
|
30779
|
+
|
|
30557
30780
|
export type MissionUpdateWithoutCreatorModelInput = {
|
|
30558
30781
|
applyStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30559
30782
|
attachedLinks?: XOR<MissionsAttachedLinkListUpdateEnvelopeInput, MissionsAttachedLinkCreateInput> | MissionsAttachedLinkCreateInput[]
|
|
@@ -31237,6 +31460,14 @@ export namespace Prisma {
|
|
|
31237
31460
|
experiences?: UserTalentIndustryExperienceViewCompositeListFilter | UserTalentIndustryExperienceViewObjectEqualityInput[]
|
|
31238
31461
|
}
|
|
31239
31462
|
|
|
31463
|
+
export type MissionPreferenceWhereInput = {
|
|
31464
|
+
AND?: MissionPreferenceWhereInput | MissionPreferenceWhereInput[]
|
|
31465
|
+
OR?: MissionPreferenceWhereInput[]
|
|
31466
|
+
NOT?: MissionPreferenceWhereInput | MissionPreferenceWhereInput[]
|
|
31467
|
+
missionId?: StringFilter<"MissionPreference"> | string
|
|
31468
|
+
reason?: StringNullableFilter<"MissionPreference"> | string | null
|
|
31469
|
+
}
|
|
31470
|
+
|
|
31240
31471
|
export type StructuredEnrichmentUpsertInput = {
|
|
31241
31472
|
set: StructuredEnrichmentCreateInput | null
|
|
31242
31473
|
update: StructuredEnrichmentUpdateInput
|
|
@@ -31403,6 +31634,13 @@ export namespace Prisma {
|
|
|
31403
31634
|
unset?: boolean
|
|
31404
31635
|
}
|
|
31405
31636
|
|
|
31637
|
+
export type MissionPreferenceListUpdateEnvelopeInput = {
|
|
31638
|
+
set?: MissionPreferenceCreateInput | MissionPreferenceCreateInput[]
|
|
31639
|
+
push?: MissionPreferenceCreateInput | MissionPreferenceCreateInput[]
|
|
31640
|
+
updateMany?: MissionPreferenceUpdateManyInput
|
|
31641
|
+
deleteMany?: MissionPreferenceDeleteManyInput
|
|
31642
|
+
}
|
|
31643
|
+
|
|
31406
31644
|
export type FloatFilter<$PrismaModel = never> = {
|
|
31407
31645
|
equals?: number | FloatFieldRefInput<$PrismaModel>
|
|
31408
31646
|
in?: number[] | ListFloatFieldRefInput<$PrismaModel>
|
|
@@ -31554,6 +31792,15 @@ export namespace Prisma {
|
|
|
31554
31792
|
update: UserTalentIndustriesAssignmentUpdateInput
|
|
31555
31793
|
}
|
|
31556
31794
|
|
|
31795
|
+
export type MissionPreferenceUpdateManyInput = {
|
|
31796
|
+
where: MissionPreferenceWhereInput
|
|
31797
|
+
data: MissionPreferenceUpdateInput
|
|
31798
|
+
}
|
|
31799
|
+
|
|
31800
|
+
export type MissionPreferenceDeleteManyInput = {
|
|
31801
|
+
where: MissionPreferenceWhereInput
|
|
31802
|
+
}
|
|
31803
|
+
|
|
31557
31804
|
export type TimezoneObjectWhereInput = {
|
|
31558
31805
|
AND?: TimezoneObjectWhereInput | TimezoneObjectWhereInput[]
|
|
31559
31806
|
OR?: TimezoneObjectWhereInput[]
|
|
@@ -31671,6 +31918,11 @@ export namespace Prisma {
|
|
|
31671
31918
|
experiences?: XOR<UserTalentIndustryExperienceViewListUpdateEnvelopeInput, UserTalentIndustryExperienceViewCreateInput> | UserTalentIndustryExperienceViewCreateInput[]
|
|
31672
31919
|
}
|
|
31673
31920
|
|
|
31921
|
+
export type MissionPreferenceUpdateInput = {
|
|
31922
|
+
missionId?: StringFieldUpdateOperationsInput | string
|
|
31923
|
+
reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31924
|
+
}
|
|
31925
|
+
|
|
31674
31926
|
export type MemberCustomDataUpdateskillsInput = {
|
|
31675
31927
|
set?: string[]
|
|
31676
31928
|
push?: string | string[]
|
|
@@ -31946,6 +32198,14 @@ export namespace Prisma {
|
|
|
31946
32198
|
* @deprecated Use TalentProfileDefaultArgs instead
|
|
31947
32199
|
*/
|
|
31948
32200
|
export type TalentProfileArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = TalentProfileDefaultArgs<ExtArgs>
|
|
32201
|
+
/**
|
|
32202
|
+
* @deprecated Use MissionPreferenceDefaultArgs instead
|
|
32203
|
+
*/
|
|
32204
|
+
export type MissionPreferenceArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MissionPreferenceDefaultArgs<ExtArgs>
|
|
32205
|
+
/**
|
|
32206
|
+
* @deprecated Use MissionPreferencesDefaultArgs instead
|
|
32207
|
+
*/
|
|
32208
|
+
export type MissionPreferencesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MissionPreferencesDefaultArgs<ExtArgs>
|
|
31949
32209
|
/**
|
|
31950
32210
|
* @deprecated Use AccountDefaultArgs instead
|
|
31951
32211
|
*/
|