@a_team/prisma 3.12.3-win → 3.12.4-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 +6 -5
- package/dist/client/index-browser.js +2 -1
- package/dist/client/index.d.ts +104 -1
- package/dist/client/index.js +8 -7
- 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 +1 -0
- package/dist/client/wasm.js +2 -1
- package/package.json +2 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -32558,6 +32558,7 @@ export namespace Prisma {
|
|
|
32558
32558
|
cvURL: string | null
|
|
32559
32559
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
32560
32560
|
yearsExperience: number | null
|
|
32561
|
+
isUsingSharedCalendar: boolean | null
|
|
32561
32562
|
}
|
|
32562
32563
|
|
|
32563
32564
|
export type UserMaxAggregateOutputType = {
|
|
@@ -32577,6 +32578,7 @@ export namespace Prisma {
|
|
|
32577
32578
|
cvURL: string | null
|
|
32578
32579
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
32579
32580
|
yearsExperience: number | null
|
|
32581
|
+
isUsingSharedCalendar: boolean | null
|
|
32580
32582
|
}
|
|
32581
32583
|
|
|
32582
32584
|
export type UserCountAggregateOutputType = {
|
|
@@ -32598,6 +32600,7 @@ export namespace Prisma {
|
|
|
32598
32600
|
onboardingStage: number
|
|
32599
32601
|
yearsExperience: number
|
|
32600
32602
|
websites: number
|
|
32603
|
+
isUsingSharedCalendar: number
|
|
32601
32604
|
_all: number
|
|
32602
32605
|
}
|
|
32603
32606
|
|
|
@@ -32629,6 +32632,7 @@ export namespace Prisma {
|
|
|
32629
32632
|
cvURL?: true
|
|
32630
32633
|
onboardingStage?: true
|
|
32631
32634
|
yearsExperience?: true
|
|
32635
|
+
isUsingSharedCalendar?: true
|
|
32632
32636
|
}
|
|
32633
32637
|
|
|
32634
32638
|
export type UserMaxAggregateInputType = {
|
|
@@ -32648,6 +32652,7 @@ export namespace Prisma {
|
|
|
32648
32652
|
cvURL?: true
|
|
32649
32653
|
onboardingStage?: true
|
|
32650
32654
|
yearsExperience?: true
|
|
32655
|
+
isUsingSharedCalendar?: true
|
|
32651
32656
|
}
|
|
32652
32657
|
|
|
32653
32658
|
export type UserCountAggregateInputType = {
|
|
@@ -32669,6 +32674,7 @@ export namespace Prisma {
|
|
|
32669
32674
|
onboardingStage?: true
|
|
32670
32675
|
yearsExperience?: true
|
|
32671
32676
|
websites?: true
|
|
32677
|
+
isUsingSharedCalendar?: true
|
|
32672
32678
|
_all?: true
|
|
32673
32679
|
}
|
|
32674
32680
|
|
|
@@ -32777,6 +32783,7 @@ export namespace Prisma {
|
|
|
32777
32783
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
32778
32784
|
yearsExperience: number | null
|
|
32779
32785
|
websites: string[]
|
|
32786
|
+
isUsingSharedCalendar: boolean
|
|
32780
32787
|
_count: UserCountAggregateOutputType | null
|
|
32781
32788
|
_avg: UserAvgAggregateOutputType | null
|
|
32782
32789
|
_sum: UserSumAggregateOutputType | null
|
|
@@ -32829,6 +32836,7 @@ export namespace Prisma {
|
|
|
32829
32836
|
location?: boolean | LocationDefaultArgs<ExtArgs>
|
|
32830
32837
|
exclusiveApplication?: boolean | UserExclusiveApplicationDefaultArgs<ExtArgs>
|
|
32831
32838
|
platformExperience?: boolean | PlatformExperienceDefaultArgs<ExtArgs>
|
|
32839
|
+
isUsingSharedCalendar?: boolean
|
|
32832
32840
|
createdMissionsModels?: boolean | User$createdMissionsModelsArgs<ExtArgs>
|
|
32833
32841
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
32834
32842
|
authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
|
|
@@ -32871,6 +32879,7 @@ export namespace Prisma {
|
|
|
32871
32879
|
onboardingStage?: boolean
|
|
32872
32880
|
yearsExperience?: boolean
|
|
32873
32881
|
websites?: boolean
|
|
32882
|
+
isUsingSharedCalendar?: boolean
|
|
32874
32883
|
}
|
|
32875
32884
|
|
|
32876
32885
|
export type UserInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -32938,6 +32947,7 @@ export namespace Prisma {
|
|
|
32938
32947
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
32939
32948
|
yearsExperience: number | null
|
|
32940
32949
|
websites: string[]
|
|
32950
|
+
isUsingSharedCalendar: boolean
|
|
32941
32951
|
}, ExtArgs["result"]["user"]>
|
|
32942
32952
|
composites: {
|
|
32943
32953
|
clientRegistration: Prisma.$ClientRegistrationPayload | null
|
|
@@ -33380,6 +33390,7 @@ export namespace Prisma {
|
|
|
33380
33390
|
readonly onboardingStage: FieldRef<"User", 'InternalOnboardingStage'>
|
|
33381
33391
|
readonly yearsExperience: FieldRef<"User", 'Float'>
|
|
33382
33392
|
readonly websites: FieldRef<"User", 'String[]'>
|
|
33393
|
+
readonly isUsingSharedCalendar: FieldRef<"User", 'Boolean'>
|
|
33383
33394
|
}
|
|
33384
33395
|
|
|
33385
33396
|
|
|
@@ -36551,7 +36562,8 @@ export namespace Prisma {
|
|
|
36551
36562
|
cvURL: 'cvURL',
|
|
36552
36563
|
onboardingStage: 'onboardingStage',
|
|
36553
36564
|
yearsExperience: 'yearsExperience',
|
|
36554
|
-
websites: 'websites'
|
|
36565
|
+
websites: 'websites',
|
|
36566
|
+
isUsingSharedCalendar: 'isUsingSharedCalendar'
|
|
36555
36567
|
};
|
|
36556
36568
|
|
|
36557
36569
|
export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum]
|
|
@@ -39419,6 +39431,7 @@ export namespace Prisma {
|
|
|
39419
39431
|
location?: XOR<LocationNullableCompositeFilter, LocationObjectEqualityInput> | null
|
|
39420
39432
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCompositeFilter, UserExclusiveApplicationObjectEqualityInput> | null
|
|
39421
39433
|
platformExperience?: XOR<PlatformExperienceNullableCompositeFilter, PlatformExperienceObjectEqualityInput> | null
|
|
39434
|
+
isUsingSharedCalendar?: BoolFilter<"User"> | boolean
|
|
39422
39435
|
createdMissionsModels?: MissionListRelationFilter
|
|
39423
39436
|
ownedMissionsModels?: MissionListRelationFilter
|
|
39424
39437
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
@@ -39471,6 +39484,7 @@ export namespace Prisma {
|
|
|
39471
39484
|
location?: LocationOrderByInput
|
|
39472
39485
|
exclusiveApplication?: UserExclusiveApplicationOrderByInput
|
|
39473
39486
|
platformExperience?: PlatformExperienceOrderByInput
|
|
39487
|
+
isUsingSharedCalendar?: SortOrder
|
|
39474
39488
|
createdMissionsModels?: MissionOrderByRelationAggregateInput
|
|
39475
39489
|
ownedMissionsModels?: MissionOrderByRelationAggregateInput
|
|
39476
39490
|
authoredMissionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
@@ -39526,6 +39540,7 @@ export namespace Prisma {
|
|
|
39526
39540
|
location?: XOR<LocationNullableCompositeFilter, LocationObjectEqualityInput> | null
|
|
39527
39541
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCompositeFilter, UserExclusiveApplicationObjectEqualityInput> | null
|
|
39528
39542
|
platformExperience?: XOR<PlatformExperienceNullableCompositeFilter, PlatformExperienceObjectEqualityInput> | null
|
|
39543
|
+
isUsingSharedCalendar?: BoolFilter<"User"> | boolean
|
|
39529
39544
|
createdMissionsModels?: MissionListRelationFilter
|
|
39530
39545
|
ownedMissionsModels?: MissionListRelationFilter
|
|
39531
39546
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
@@ -39566,6 +39581,7 @@ export namespace Prisma {
|
|
|
39566
39581
|
onboardingStage?: SortOrder
|
|
39567
39582
|
yearsExperience?: SortOrder
|
|
39568
39583
|
websites?: SortOrder
|
|
39584
|
+
isUsingSharedCalendar?: SortOrder
|
|
39569
39585
|
_count?: UserCountOrderByAggregateInput
|
|
39570
39586
|
_avg?: UserAvgOrderByAggregateInput
|
|
39571
39587
|
_max?: UserMaxOrderByAggregateInput
|
|
@@ -39595,6 +39611,7 @@ export namespace Prisma {
|
|
|
39595
39611
|
onboardingStage?: EnumInternalOnboardingStageNullableWithAggregatesFilter<"User"> | $Enums.InternalOnboardingStage | null
|
|
39596
39612
|
yearsExperience?: FloatNullableWithAggregatesFilter<"User"> | number | null
|
|
39597
39613
|
websites?: StringNullableListFilter<"User">
|
|
39614
|
+
isUsingSharedCalendar?: BoolWithAggregatesFilter<"User"> | boolean
|
|
39598
39615
|
}
|
|
39599
39616
|
|
|
39600
39617
|
export type UserPreferenceWhereInput = {
|
|
@@ -42397,6 +42414,7 @@ export namespace Prisma {
|
|
|
42397
42414
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
42398
42415
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
42399
42416
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
42417
|
+
isUsingSharedCalendar?: boolean
|
|
42400
42418
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
42401
42419
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
42402
42420
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -42449,6 +42467,7 @@ export namespace Prisma {
|
|
|
42449
42467
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
42450
42468
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
42451
42469
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
42470
|
+
isUsingSharedCalendar?: boolean
|
|
42452
42471
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
42453
42472
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
42454
42473
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -42500,6 +42519,7 @@ export namespace Prisma {
|
|
|
42500
42519
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
42501
42520
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
42502
42521
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
42522
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
42503
42523
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
42504
42524
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
42505
42525
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -42551,6 +42571,7 @@ export namespace Prisma {
|
|
|
42551
42571
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
42552
42572
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
42553
42573
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
42574
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
42554
42575
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
42555
42576
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
42556
42577
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -42603,6 +42624,7 @@ export namespace Prisma {
|
|
|
42603
42624
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
42604
42625
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
42605
42626
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
42627
|
+
isUsingSharedCalendar?: boolean
|
|
42606
42628
|
}
|
|
42607
42629
|
|
|
42608
42630
|
export type UserUpdateManyMutationInput = {
|
|
@@ -42635,6 +42657,7 @@ export namespace Prisma {
|
|
|
42635
42657
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
42636
42658
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
42637
42659
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
42660
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
42638
42661
|
}
|
|
42639
42662
|
|
|
42640
42663
|
export type UserUncheckedUpdateManyInput = {
|
|
@@ -42667,6 +42690,7 @@ export namespace Prisma {
|
|
|
42667
42690
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
42668
42691
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
42669
42692
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
42693
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
42670
42694
|
}
|
|
42671
42695
|
|
|
42672
42696
|
export type UserPreferenceCreateInput = {
|
|
@@ -45819,6 +45843,7 @@ export namespace Prisma {
|
|
|
45819
45843
|
onboardingStage?: SortOrder
|
|
45820
45844
|
yearsExperience?: SortOrder
|
|
45821
45845
|
websites?: SortOrder
|
|
45846
|
+
isUsingSharedCalendar?: SortOrder
|
|
45822
45847
|
}
|
|
45823
45848
|
|
|
45824
45849
|
export type UserAvgOrderByAggregateInput = {
|
|
@@ -45843,6 +45868,7 @@ export namespace Prisma {
|
|
|
45843
45868
|
cvURL?: SortOrder
|
|
45844
45869
|
onboardingStage?: SortOrder
|
|
45845
45870
|
yearsExperience?: SortOrder
|
|
45871
|
+
isUsingSharedCalendar?: SortOrder
|
|
45846
45872
|
}
|
|
45847
45873
|
|
|
45848
45874
|
export type UserMinOrderByAggregateInput = {
|
|
@@ -45862,6 +45888,7 @@ export namespace Prisma {
|
|
|
45862
45888
|
cvURL?: SortOrder
|
|
45863
45889
|
onboardingStage?: SortOrder
|
|
45864
45890
|
yearsExperience?: SortOrder
|
|
45891
|
+
isUsingSharedCalendar?: SortOrder
|
|
45865
45892
|
}
|
|
45866
45893
|
|
|
45867
45894
|
export type UserSumOrderByAggregateInput = {
|
|
@@ -51959,6 +51986,7 @@ export namespace Prisma {
|
|
|
51959
51986
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
51960
51987
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
51961
51988
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
51989
|
+
isUsingSharedCalendar?: boolean
|
|
51962
51990
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
51963
51991
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
51964
51992
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -52010,6 +52038,7 @@ export namespace Prisma {
|
|
|
52010
52038
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
52011
52039
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52012
52040
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52041
|
+
isUsingSharedCalendar?: boolean
|
|
52013
52042
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
52014
52043
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
52015
52044
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -52132,6 +52161,7 @@ export namespace Prisma {
|
|
|
52132
52161
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
52133
52162
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52134
52163
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52164
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
52135
52165
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
52136
52166
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
52137
52167
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -52182,6 +52212,7 @@ export namespace Prisma {
|
|
|
52182
52212
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
52183
52213
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52184
52214
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52215
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
52185
52216
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
52186
52217
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
52187
52218
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -52270,6 +52301,7 @@ export namespace Prisma {
|
|
|
52270
52301
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
52271
52302
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52272
52303
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52304
|
+
isUsingSharedCalendar?: boolean
|
|
52273
52305
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
52274
52306
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
52275
52307
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -52321,6 +52353,7 @@ export namespace Prisma {
|
|
|
52321
52353
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
52322
52354
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52323
52355
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52356
|
+
isUsingSharedCalendar?: boolean
|
|
52324
52357
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
52325
52358
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
52326
52359
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -52422,6 +52455,7 @@ export namespace Prisma {
|
|
|
52422
52455
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
52423
52456
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52424
52457
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52458
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
52425
52459
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
52426
52460
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
52427
52461
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -52472,6 +52506,7 @@ export namespace Prisma {
|
|
|
52472
52506
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
52473
52507
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52474
52508
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52509
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
52475
52510
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
52476
52511
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
52477
52512
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -52562,6 +52597,7 @@ export namespace Prisma {
|
|
|
52562
52597
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
52563
52598
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52564
52599
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52600
|
+
isUsingSharedCalendar?: boolean
|
|
52565
52601
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
52566
52602
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
52567
52603
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -52613,6 +52649,7 @@ export namespace Prisma {
|
|
|
52613
52649
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
52614
52650
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52615
52651
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52652
|
+
isUsingSharedCalendar?: boolean
|
|
52616
52653
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
52617
52654
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
52618
52655
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -52729,6 +52766,7 @@ export namespace Prisma {
|
|
|
52729
52766
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
52730
52767
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52731
52768
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52769
|
+
isUsingSharedCalendar?: boolean
|
|
52732
52770
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
52733
52771
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
52734
52772
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -52780,6 +52818,7 @@ export namespace Prisma {
|
|
|
52780
52818
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
52781
52819
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52782
52820
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52821
|
+
isUsingSharedCalendar?: boolean
|
|
52783
52822
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
52784
52823
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
52785
52824
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -52855,6 +52894,7 @@ export namespace Prisma {
|
|
|
52855
52894
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
52856
52895
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52857
52896
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52897
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
52858
52898
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
52859
52899
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
52860
52900
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -52905,6 +52945,7 @@ export namespace Prisma {
|
|
|
52905
52945
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
52906
52946
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52907
52947
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52948
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
52908
52949
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
52909
52950
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
52910
52951
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -53034,6 +53075,7 @@ export namespace Prisma {
|
|
|
53034
53075
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
53035
53076
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
53036
53077
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
53078
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
53037
53079
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
53038
53080
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
53039
53081
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -53084,6 +53126,7 @@ export namespace Prisma {
|
|
|
53084
53126
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
53085
53127
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
53086
53128
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
53129
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
53087
53130
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
53088
53131
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
53089
53132
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -53521,6 +53564,7 @@ export namespace Prisma {
|
|
|
53521
53564
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
53522
53565
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
53523
53566
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
53567
|
+
isUsingSharedCalendar?: boolean
|
|
53524
53568
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
53525
53569
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
53526
53570
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -53572,6 +53616,7 @@ export namespace Prisma {
|
|
|
53572
53616
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
53573
53617
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
53574
53618
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
53619
|
+
isUsingSharedCalendar?: boolean
|
|
53575
53620
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
53576
53621
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
53577
53622
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -53628,6 +53673,7 @@ export namespace Prisma {
|
|
|
53628
53673
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
53629
53674
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
53630
53675
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
53676
|
+
isUsingSharedCalendar?: boolean
|
|
53631
53677
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
53632
53678
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
53633
53679
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -53679,6 +53725,7 @@ export namespace Prisma {
|
|
|
53679
53725
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
53680
53726
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
53681
53727
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
53728
|
+
isUsingSharedCalendar?: boolean
|
|
53682
53729
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
53683
53730
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
53684
53731
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -53878,6 +53925,7 @@ export namespace Prisma {
|
|
|
53878
53925
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
53879
53926
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
53880
53927
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
53928
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
53881
53929
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
53882
53930
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
53883
53931
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -53928,6 +53976,7 @@ export namespace Prisma {
|
|
|
53928
53976
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
53929
53977
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
53930
53978
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
53979
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
53931
53980
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
53932
53981
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
53933
53982
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -53989,6 +54038,7 @@ export namespace Prisma {
|
|
|
53989
54038
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
53990
54039
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
53991
54040
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
54041
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
53992
54042
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
53993
54043
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
53994
54044
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -54039,6 +54089,7 @@ export namespace Prisma {
|
|
|
54039
54089
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
54040
54090
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
54041
54091
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
54092
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
54042
54093
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
54043
54094
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
54044
54095
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -54593,6 +54644,7 @@ export namespace Prisma {
|
|
|
54593
54644
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
54594
54645
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
54595
54646
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
54647
|
+
isUsingSharedCalendar?: boolean
|
|
54596
54648
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
54597
54649
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
54598
54650
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -54644,6 +54696,7 @@ export namespace Prisma {
|
|
|
54644
54696
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
54645
54697
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
54646
54698
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
54699
|
+
isUsingSharedCalendar?: boolean
|
|
54647
54700
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
54648
54701
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
54649
54702
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -54723,6 +54776,7 @@ export namespace Prisma {
|
|
|
54723
54776
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
54724
54777
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
54725
54778
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
54779
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
54726
54780
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
54727
54781
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
54728
54782
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -54773,6 +54827,7 @@ export namespace Prisma {
|
|
|
54773
54827
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
54774
54828
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
54775
54829
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
54830
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
54776
54831
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
54777
54832
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
54778
54833
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -54925,6 +54980,7 @@ export namespace Prisma {
|
|
|
54925
54980
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
54926
54981
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
54927
54982
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
54983
|
+
isUsingSharedCalendar?: boolean
|
|
54928
54984
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
54929
54985
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
54930
54986
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -54976,6 +55032,7 @@ export namespace Prisma {
|
|
|
54976
55032
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
54977
55033
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
54978
55034
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
55035
|
+
isUsingSharedCalendar?: boolean
|
|
54979
55036
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
54980
55037
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
54981
55038
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -55097,6 +55154,7 @@ export namespace Prisma {
|
|
|
55097
55154
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
55098
55155
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
55099
55156
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
55157
|
+
isUsingSharedCalendar?: boolean
|
|
55100
55158
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
55101
55159
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
55102
55160
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -55148,6 +55206,7 @@ export namespace Prisma {
|
|
|
55148
55206
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
55149
55207
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
55150
55208
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
55209
|
+
isUsingSharedCalendar?: boolean
|
|
55151
55210
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
55152
55211
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
55153
55212
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -55468,6 +55527,7 @@ export namespace Prisma {
|
|
|
55468
55527
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
55469
55528
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
55470
55529
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
55530
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
55471
55531
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
55472
55532
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
55473
55533
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -55518,6 +55578,7 @@ export namespace Prisma {
|
|
|
55518
55578
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
55519
55579
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
55520
55580
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
55581
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
55521
55582
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
55522
55583
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
55523
55584
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -55648,6 +55709,7 @@ export namespace Prisma {
|
|
|
55648
55709
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
55649
55710
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
55650
55711
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
55712
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
55651
55713
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
55652
55714
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
55653
55715
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -55698,6 +55760,7 @@ export namespace Prisma {
|
|
|
55698
55760
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
55699
55761
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
55700
55762
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
55763
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
55701
55764
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
55702
55765
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
55703
55766
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -55867,6 +55930,7 @@ export namespace Prisma {
|
|
|
55867
55930
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
55868
55931
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
55869
55932
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
55933
|
+
isUsingSharedCalendar?: boolean
|
|
55870
55934
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
55871
55935
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
55872
55936
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -55918,6 +55982,7 @@ export namespace Prisma {
|
|
|
55918
55982
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
55919
55983
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
55920
55984
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
55985
|
+
isUsingSharedCalendar?: boolean
|
|
55921
55986
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
55922
55987
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
55923
55988
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -56041,6 +56106,7 @@ export namespace Prisma {
|
|
|
56041
56106
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
56042
56107
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
56043
56108
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
56109
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
56044
56110
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
56045
56111
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
56046
56112
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -56091,6 +56157,7 @@ export namespace Prisma {
|
|
|
56091
56157
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
56092
56158
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
56093
56159
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
56160
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
56094
56161
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
56095
56162
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
56096
56163
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -56150,6 +56217,7 @@ export namespace Prisma {
|
|
|
56150
56217
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
56151
56218
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
56152
56219
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
56220
|
+
isUsingSharedCalendar?: boolean
|
|
56153
56221
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
56154
56222
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
56155
56223
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -56201,6 +56269,7 @@ export namespace Prisma {
|
|
|
56201
56269
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
56202
56270
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
56203
56271
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
56272
|
+
isUsingSharedCalendar?: boolean
|
|
56204
56273
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
56205
56274
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
56206
56275
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -56276,6 +56345,7 @@ export namespace Prisma {
|
|
|
56276
56345
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
56277
56346
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
56278
56347
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
56348
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
56279
56349
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
56280
56350
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
56281
56351
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -56326,6 +56396,7 @@ export namespace Prisma {
|
|
|
56326
56396
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
56327
56397
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
56328
56398
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
56399
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
56329
56400
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
56330
56401
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
56331
56402
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -56441,6 +56512,7 @@ export namespace Prisma {
|
|
|
56441
56512
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
56442
56513
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
56443
56514
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
56515
|
+
isUsingSharedCalendar?: boolean
|
|
56444
56516
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
56445
56517
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
56446
56518
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -56492,6 +56564,7 @@ export namespace Prisma {
|
|
|
56492
56564
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
56493
56565
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
56494
56566
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
56567
|
+
isUsingSharedCalendar?: boolean
|
|
56495
56568
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
56496
56569
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
56497
56570
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -56583,6 +56656,7 @@ export namespace Prisma {
|
|
|
56583
56656
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
56584
56657
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
56585
56658
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
56659
|
+
isUsingSharedCalendar?: boolean
|
|
56586
56660
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
56587
56661
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
56588
56662
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -56634,6 +56708,7 @@ export namespace Prisma {
|
|
|
56634
56708
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
56635
56709
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
56636
56710
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
56711
|
+
isUsingSharedCalendar?: boolean
|
|
56637
56712
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
56638
56713
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
56639
56714
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -56958,6 +57033,7 @@ export namespace Prisma {
|
|
|
56958
57033
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
56959
57034
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
56960
57035
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
57036
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
56961
57037
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
56962
57038
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
56963
57039
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -57008,6 +57084,7 @@ export namespace Prisma {
|
|
|
57008
57084
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
57009
57085
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
57010
57086
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
57087
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
57011
57088
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
57012
57089
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
57013
57090
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -57108,6 +57185,7 @@ export namespace Prisma {
|
|
|
57108
57185
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
57109
57186
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
57110
57187
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
57188
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
57111
57189
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
57112
57190
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
57113
57191
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -57158,6 +57236,7 @@ export namespace Prisma {
|
|
|
57158
57236
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
57159
57237
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
57160
57238
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
57239
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
57161
57240
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
57162
57241
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
57163
57242
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -57355,6 +57434,7 @@ export namespace Prisma {
|
|
|
57355
57434
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
57356
57435
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
57357
57436
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
57437
|
+
isUsingSharedCalendar?: boolean
|
|
57358
57438
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
57359
57439
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
57360
57440
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -57406,6 +57486,7 @@ export namespace Prisma {
|
|
|
57406
57486
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
57407
57487
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
57408
57488
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
57489
|
+
isUsingSharedCalendar?: boolean
|
|
57409
57490
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
57410
57491
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
57411
57492
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -57569,6 +57650,7 @@ export namespace Prisma {
|
|
|
57569
57650
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
57570
57651
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
57571
57652
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
57653
|
+
isUsingSharedCalendar?: boolean
|
|
57572
57654
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
57573
57655
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
57574
57656
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -57620,6 +57702,7 @@ export namespace Prisma {
|
|
|
57620
57702
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
57621
57703
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
57622
57704
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
57705
|
+
isUsingSharedCalendar?: boolean
|
|
57623
57706
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
57624
57707
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
57625
57708
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -57741,6 +57824,7 @@ export namespace Prisma {
|
|
|
57741
57824
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
57742
57825
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
57743
57826
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
57827
|
+
isUsingSharedCalendar?: boolean
|
|
57744
57828
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
57745
57829
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
57746
57830
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -57792,6 +57876,7 @@ export namespace Prisma {
|
|
|
57792
57876
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
57793
57877
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
57794
57878
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
57879
|
+
isUsingSharedCalendar?: boolean
|
|
57795
57880
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
57796
57881
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
57797
57882
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -57955,6 +58040,7 @@ export namespace Prisma {
|
|
|
57955
58040
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
57956
58041
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
57957
58042
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
58043
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
57958
58044
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
57959
58045
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
57960
58046
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -58005,6 +58091,7 @@ export namespace Prisma {
|
|
|
58005
58091
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
58006
58092
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
58007
58093
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
58094
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
58008
58095
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
58009
58096
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
58010
58097
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -58177,6 +58264,7 @@ export namespace Prisma {
|
|
|
58177
58264
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
58178
58265
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
58179
58266
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
58267
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
58180
58268
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
58181
58269
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
58182
58270
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -58227,6 +58315,7 @@ export namespace Prisma {
|
|
|
58227
58315
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
58228
58316
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
58229
58317
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
58318
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
58230
58319
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
58231
58320
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
58232
58321
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -58357,6 +58446,7 @@ export namespace Prisma {
|
|
|
58357
58446
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
58358
58447
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
58359
58448
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
58449
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
58360
58450
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
58361
58451
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
58362
58452
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -58407,6 +58497,7 @@ export namespace Prisma {
|
|
|
58407
58497
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
58408
58498
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
58409
58499
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
58500
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
58410
58501
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
58411
58502
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
58412
58503
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -60068,6 +60159,7 @@ export namespace Prisma {
|
|
|
60068
60159
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
60069
60160
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
60070
60161
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
60162
|
+
isUsingSharedCalendar?: boolean
|
|
60071
60163
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
60072
60164
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
60073
60165
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -60119,6 +60211,7 @@ export namespace Prisma {
|
|
|
60119
60211
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
60120
60212
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
60121
60213
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
60214
|
+
isUsingSharedCalendar?: boolean
|
|
60122
60215
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
60123
60216
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
60124
60217
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -60194,6 +60287,7 @@ export namespace Prisma {
|
|
|
60194
60287
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
60195
60288
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
60196
60289
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
60290
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
60197
60291
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
60198
60292
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
60199
60293
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -60244,6 +60338,7 @@ export namespace Prisma {
|
|
|
60244
60338
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
60245
60339
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
60246
60340
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
60341
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
60247
60342
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
60248
60343
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
60249
60344
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -60334,6 +60429,7 @@ export namespace Prisma {
|
|
|
60334
60429
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
60335
60430
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
60336
60431
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
60432
|
+
isUsingSharedCalendar?: boolean
|
|
60337
60433
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
60338
60434
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
60339
60435
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -60385,6 +60481,7 @@ export namespace Prisma {
|
|
|
60385
60481
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
60386
60482
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
60387
60483
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
60484
|
+
isUsingSharedCalendar?: boolean
|
|
60388
60485
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
60389
60486
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
60390
60487
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -60441,6 +60538,7 @@ export namespace Prisma {
|
|
|
60441
60538
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
60442
60539
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
60443
60540
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
60541
|
+
isUsingSharedCalendar?: boolean
|
|
60444
60542
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
60445
60543
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
60446
60544
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -60492,6 +60590,7 @@ export namespace Prisma {
|
|
|
60492
60590
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
60493
60591
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
60494
60592
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
60593
|
+
isUsingSharedCalendar?: boolean
|
|
60495
60594
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
60496
60595
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
60497
60596
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -60718,6 +60817,7 @@ export namespace Prisma {
|
|
|
60718
60817
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
60719
60818
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
60720
60819
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
60820
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
60721
60821
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
60722
60822
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
60723
60823
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -60768,6 +60868,7 @@ export namespace Prisma {
|
|
|
60768
60868
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
60769
60869
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
60770
60870
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
60871
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
60771
60872
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
60772
60873
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
60773
60874
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -60829,6 +60930,7 @@ export namespace Prisma {
|
|
|
60829
60930
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
60830
60931
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
60831
60932
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
60933
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
60832
60934
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
60833
60935
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
60834
60936
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -60879,6 +60981,7 @@ export namespace Prisma {
|
|
|
60879
60981
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
60880
60982
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
60881
60983
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
60984
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
60882
60985
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
60883
60986
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
60884
60987
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|