@a_team/prisma 3.12.2-win → 3.12.3-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.
@@ -428,6 +428,11 @@ export type Location = $Result.DefaultSelection<Prisma.$LocationPayload>
428
428
  *
429
429
  */
430
430
  export type PlatformExperience = $Result.DefaultSelection<Prisma.$PlatformExperiencePayload>
431
+ /**
432
+ * Model UserExclusiveApplication
433
+ *
434
+ */
435
+ export type UserExclusiveApplication = $Result.DefaultSelection<Prisma.$UserExclusiveApplicationPayload>
431
436
  /**
432
437
  * Model BookingFrequency
433
438
  *
@@ -9912,6 +9917,63 @@ export namespace Prisma {
9912
9917
  }
9913
9918
 
9914
9919
 
9920
+ /**
9921
+ * Model UserExclusiveApplication
9922
+ */
9923
+
9924
+
9925
+
9926
+
9927
+
9928
+ export type UserExclusiveApplicationSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
9929
+ aid?: boolean
9930
+ updatedAt?: boolean
9931
+ }, ExtArgs["result"]["userExclusiveApplication"]>
9932
+
9933
+
9934
+ export type UserExclusiveApplicationSelectScalar = {
9935
+ aid?: boolean
9936
+ updatedAt?: boolean
9937
+ }
9938
+
9939
+
9940
+ export type $UserExclusiveApplicationPayload = {
9941
+ name: "UserExclusiveApplication"
9942
+ objects: {}
9943
+ scalars: {
9944
+ aid: string
9945
+ updatedAt: Date
9946
+ }
9947
+ composites: {}
9948
+ }
9949
+
9950
+ type UserExclusiveApplicationGetPayload<S extends boolean | null | undefined | UserExclusiveApplicationDefaultArgs> = $Result.GetResult<Prisma.$UserExclusiveApplicationPayload, S>
9951
+
9952
+
9953
+
9954
+
9955
+
9956
+ /**
9957
+ * Fields of the UserExclusiveApplication model
9958
+ */
9959
+ interface UserExclusiveApplicationFieldRefs {
9960
+ readonly aid: FieldRef<"UserExclusiveApplication", 'String'>
9961
+ readonly updatedAt: FieldRef<"UserExclusiveApplication", 'DateTime'>
9962
+ }
9963
+
9964
+
9965
+ // Custom InputTypes
9966
+ /**
9967
+ * UserExclusiveApplication without action
9968
+ */
9969
+ export type UserExclusiveApplicationDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
9970
+ /**
9971
+ * Select specific fields to fetch from the UserExclusiveApplication
9972
+ */
9973
+ select?: UserExclusiveApplicationSelect<ExtArgs> | null
9974
+ }
9975
+
9976
+
9915
9977
  /**
9916
9978
  * Model BookingFrequency
9917
9979
  */
@@ -32765,6 +32827,7 @@ export namespace Prisma {
32765
32827
  yearsExperience?: boolean
32766
32828
  websites?: boolean
32767
32829
  location?: boolean | LocationDefaultArgs<ExtArgs>
32830
+ exclusiveApplication?: boolean | UserExclusiveApplicationDefaultArgs<ExtArgs>
32768
32831
  platformExperience?: boolean | PlatformExperienceDefaultArgs<ExtArgs>
32769
32832
  createdMissionsModels?: boolean | User$createdMissionsModelsArgs<ExtArgs>
32770
32833
  ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
@@ -32887,6 +32950,7 @@ export namespace Prisma {
32887
32950
  github: Prisma.$GitHubDataPayload | null
32888
32951
  dribbble: Prisma.$DribbbleDataPayload | null
32889
32952
  location: Prisma.$LocationPayload | null
32953
+ exclusiveApplication: Prisma.$UserExclusiveApplicationPayload | null
32890
32954
  platformExperience: Prisma.$PlatformExperiencePayload | null
32891
32955
  }
32892
32956
  }
@@ -39353,6 +39417,7 @@ export namespace Prisma {
39353
39417
  yearsExperience?: FloatNullableFilter<"User"> | number | null
39354
39418
  websites?: StringNullableListFilter<"User">
39355
39419
  location?: XOR<LocationNullableCompositeFilter, LocationObjectEqualityInput> | null
39420
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCompositeFilter, UserExclusiveApplicationObjectEqualityInput> | null
39356
39421
  platformExperience?: XOR<PlatformExperienceNullableCompositeFilter, PlatformExperienceObjectEqualityInput> | null
39357
39422
  createdMissionsModels?: MissionListRelationFilter
39358
39423
  ownedMissionsModels?: MissionListRelationFilter
@@ -39404,6 +39469,7 @@ export namespace Prisma {
39404
39469
  yearsExperience?: SortOrder
39405
39470
  websites?: SortOrder
39406
39471
  location?: LocationOrderByInput
39472
+ exclusiveApplication?: UserExclusiveApplicationOrderByInput
39407
39473
  platformExperience?: PlatformExperienceOrderByInput
39408
39474
  createdMissionsModels?: MissionOrderByRelationAggregateInput
39409
39475
  ownedMissionsModels?: MissionOrderByRelationAggregateInput
@@ -39458,6 +39524,7 @@ export namespace Prisma {
39458
39524
  yearsExperience?: FloatNullableFilter<"User"> | number | null
39459
39525
  websites?: StringNullableListFilter<"User">
39460
39526
  location?: XOR<LocationNullableCompositeFilter, LocationObjectEqualityInput> | null
39527
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCompositeFilter, UserExclusiveApplicationObjectEqualityInput> | null
39461
39528
  platformExperience?: XOR<PlatformExperienceNullableCompositeFilter, PlatformExperienceObjectEqualityInput> | null
39462
39529
  createdMissionsModels?: MissionListRelationFilter
39463
39530
  ownedMissionsModels?: MissionListRelationFilter
@@ -42328,6 +42395,7 @@ export namespace Prisma {
42328
42395
  yearsExperience?: number | null
42329
42396
  websites?: UserCreatewebsitesInput | string[]
42330
42397
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
42398
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
42331
42399
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
42332
42400
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
42333
42401
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -42379,6 +42447,7 @@ export namespace Prisma {
42379
42447
  yearsExperience?: number | null
42380
42448
  websites?: UserCreatewebsitesInput | string[]
42381
42449
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
42450
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
42382
42451
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
42383
42452
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
42384
42453
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -42429,6 +42498,7 @@ export namespace Prisma {
42429
42498
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
42430
42499
  websites?: UserUpdatewebsitesInput | string[]
42431
42500
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
42501
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
42432
42502
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
42433
42503
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
42434
42504
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -42479,6 +42549,7 @@ export namespace Prisma {
42479
42549
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
42480
42550
  websites?: UserUpdatewebsitesInput | string[]
42481
42551
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
42552
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
42482
42553
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
42483
42554
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
42484
42555
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -42530,6 +42601,7 @@ export namespace Prisma {
42530
42601
  yearsExperience?: number | null
42531
42602
  websites?: UserCreatewebsitesInput | string[]
42532
42603
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
42604
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
42533
42605
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
42534
42606
  }
42535
42607
 
@@ -42561,6 +42633,7 @@ export namespace Prisma {
42561
42633
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
42562
42634
  websites?: UserUpdatewebsitesInput | string[]
42563
42635
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
42636
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
42564
42637
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
42565
42638
  }
42566
42639
 
@@ -42592,6 +42665,7 @@ export namespace Prisma {
42592
42665
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
42593
42666
  websites?: UserUpdatewebsitesInput | string[]
42594
42667
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
42668
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
42595
42669
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
42596
42670
  }
42597
42671
 
@@ -45597,6 +45671,18 @@ export namespace Prisma {
45597
45671
  province?: string | null
45598
45672
  }
45599
45673
 
45674
+ export type UserExclusiveApplicationNullableCompositeFilter = {
45675
+ equals?: UserExclusiveApplicationObjectEqualityInput | null
45676
+ is?: UserExclusiveApplicationWhereInput | null
45677
+ isNot?: UserExclusiveApplicationWhereInput | null
45678
+ isSet?: boolean
45679
+ }
45680
+
45681
+ export type UserExclusiveApplicationObjectEqualityInput = {
45682
+ aid: string
45683
+ updatedAt: Date | string
45684
+ }
45685
+
45600
45686
  export type PlatformExperienceNullableCompositeFilter = {
45601
45687
  equals?: PlatformExperienceObjectEqualityInput | null
45602
45688
  is?: PlatformExperienceWhereInput | null
@@ -45693,6 +45779,11 @@ export namespace Prisma {
45693
45779
  province?: SortOrder
45694
45780
  }
45695
45781
 
45782
+ export type UserExclusiveApplicationOrderByInput = {
45783
+ aid?: SortOrder
45784
+ updatedAt?: SortOrder
45785
+ }
45786
+
45696
45787
  export type PlatformExperienceOrderByInput = {
45697
45788
  billedMinutes?: SortOrder
45698
45789
  }
@@ -48450,6 +48541,15 @@ export namespace Prisma {
48450
48541
  province?: string | null
48451
48542
  }
48452
48543
 
48544
+ export type UserExclusiveApplicationNullableCreateEnvelopeInput = {
48545
+ set?: UserExclusiveApplicationCreateInput | null
48546
+ }
48547
+
48548
+ export type UserExclusiveApplicationCreateInput = {
48549
+ aid: string
48550
+ updatedAt: Date | string
48551
+ }
48552
+
48453
48553
  export type PlatformExperienceNullableCreateEnvelopeInput = {
48454
48554
  set?: PlatformExperienceCreateInput | null
48455
48555
  }
@@ -48799,6 +48899,12 @@ export namespace Prisma {
48799
48899
  unset?: boolean
48800
48900
  }
48801
48901
 
48902
+ export type UserExclusiveApplicationNullableUpdateEnvelopeInput = {
48903
+ set?: UserExclusiveApplicationCreateInput | null
48904
+ upsert?: UserExclusiveApplicationUpsertInput
48905
+ unset?: boolean
48906
+ }
48907
+
48802
48908
  export type PlatformExperienceNullableUpdateEnvelopeInput = {
48803
48909
  set?: PlatformExperienceCreateInput | null
48804
48910
  upsert?: PlatformExperienceUpsertInput
@@ -50781,6 +50887,14 @@ export namespace Prisma {
50781
50887
  province?: StringNullableFilter<"Location"> | string | null
50782
50888
  }
50783
50889
 
50890
+ export type UserExclusiveApplicationWhereInput = {
50891
+ AND?: UserExclusiveApplicationWhereInput | UserExclusiveApplicationWhereInput[]
50892
+ OR?: UserExclusiveApplicationWhereInput[]
50893
+ NOT?: UserExclusiveApplicationWhereInput | UserExclusiveApplicationWhereInput[]
50894
+ aid?: StringFilter<"UserExclusiveApplication"> | string
50895
+ updatedAt?: DateTimeFilter<"UserExclusiveApplication"> | Date | string
50896
+ }
50897
+
50784
50898
  export type PlatformExperienceWhereInput = {
50785
50899
  AND?: PlatformExperienceWhereInput | PlatformExperienceWhereInput[]
50786
50900
  OR?: PlatformExperienceWhereInput[]
@@ -51843,6 +51957,7 @@ export namespace Prisma {
51843
51957
  yearsExperience?: number | null
51844
51958
  websites?: UserCreatewebsitesInput | string[]
51845
51959
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
51960
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
51846
51961
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
51847
51962
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
51848
51963
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -51893,6 +52008,7 @@ export namespace Prisma {
51893
52008
  yearsExperience?: number | null
51894
52009
  websites?: UserCreatewebsitesInput | string[]
51895
52010
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
52011
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
51896
52012
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
51897
52013
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
51898
52014
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -52014,6 +52130,7 @@ export namespace Prisma {
52014
52130
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
52015
52131
  websites?: UserUpdatewebsitesInput | string[]
52016
52132
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
52133
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52017
52134
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
52018
52135
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
52019
52136
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -52063,6 +52180,7 @@ export namespace Prisma {
52063
52180
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
52064
52181
  websites?: UserUpdatewebsitesInput | string[]
52065
52182
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
52183
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52066
52184
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
52067
52185
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
52068
52186
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -52150,6 +52268,7 @@ export namespace Prisma {
52150
52268
  yearsExperience?: number | null
52151
52269
  websites?: UserCreatewebsitesInput | string[]
52152
52270
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
52271
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52153
52272
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
52154
52273
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
52155
52274
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -52200,6 +52319,7 @@ export namespace Prisma {
52200
52319
  yearsExperience?: number | null
52201
52320
  websites?: UserCreatewebsitesInput | string[]
52202
52321
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
52322
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52203
52323
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
52204
52324
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
52205
52325
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -52300,6 +52420,7 @@ export namespace Prisma {
52300
52420
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
52301
52421
  websites?: UserUpdatewebsitesInput | string[]
52302
52422
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
52423
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52303
52424
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
52304
52425
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
52305
52426
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -52349,6 +52470,7 @@ export namespace Prisma {
52349
52470
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
52350
52471
  websites?: UserUpdatewebsitesInput | string[]
52351
52472
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
52473
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52352
52474
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
52353
52475
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
52354
52476
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -52438,6 +52560,7 @@ export namespace Prisma {
52438
52560
  yearsExperience?: number | null
52439
52561
  websites?: UserCreatewebsitesInput | string[]
52440
52562
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
52563
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52441
52564
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
52442
52565
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
52443
52566
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -52488,6 +52611,7 @@ export namespace Prisma {
52488
52611
  yearsExperience?: number | null
52489
52612
  websites?: UserCreatewebsitesInput | string[]
52490
52613
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
52614
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52491
52615
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
52492
52616
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
52493
52617
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -52603,6 +52727,7 @@ export namespace Prisma {
52603
52727
  yearsExperience?: number | null
52604
52728
  websites?: UserCreatewebsitesInput | string[]
52605
52729
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
52730
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52606
52731
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
52607
52732
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
52608
52733
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -52653,6 +52778,7 @@ export namespace Prisma {
52653
52778
  yearsExperience?: number | null
52654
52779
  websites?: UserCreatewebsitesInput | string[]
52655
52780
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
52781
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52656
52782
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
52657
52783
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
52658
52784
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -52727,6 +52853,7 @@ export namespace Prisma {
52727
52853
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
52728
52854
  websites?: UserUpdatewebsitesInput | string[]
52729
52855
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
52856
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52730
52857
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
52731
52858
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
52732
52859
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -52776,6 +52903,7 @@ export namespace Prisma {
52776
52903
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
52777
52904
  websites?: UserUpdatewebsitesInput | string[]
52778
52905
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
52906
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52779
52907
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
52780
52908
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
52781
52909
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -52904,6 +53032,7 @@ export namespace Prisma {
52904
53032
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
52905
53033
  websites?: UserUpdatewebsitesInput | string[]
52906
53034
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
53035
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52907
53036
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
52908
53037
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
52909
53038
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -52953,6 +53082,7 @@ export namespace Prisma {
52953
53082
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
52954
53083
  websites?: UserUpdatewebsitesInput | string[]
52955
53084
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
53085
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
52956
53086
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
52957
53087
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
52958
53088
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -53389,6 +53519,7 @@ export namespace Prisma {
53389
53519
  yearsExperience?: number | null
53390
53520
  websites?: UserCreatewebsitesInput | string[]
53391
53521
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
53522
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
53392
53523
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
53393
53524
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
53394
53525
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -53439,6 +53570,7 @@ export namespace Prisma {
53439
53570
  yearsExperience?: number | null
53440
53571
  websites?: UserCreatewebsitesInput | string[]
53441
53572
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
53573
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
53442
53574
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
53443
53575
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
53444
53576
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -53494,6 +53626,7 @@ export namespace Prisma {
53494
53626
  yearsExperience?: number | null
53495
53627
  websites?: UserCreatewebsitesInput | string[]
53496
53628
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
53629
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
53497
53630
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
53498
53631
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
53499
53632
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -53544,6 +53677,7 @@ export namespace Prisma {
53544
53677
  yearsExperience?: number | null
53545
53678
  websites?: UserCreatewebsitesInput | string[]
53546
53679
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
53680
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
53547
53681
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
53548
53682
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
53549
53683
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -53742,6 +53876,7 @@ export namespace Prisma {
53742
53876
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
53743
53877
  websites?: UserUpdatewebsitesInput | string[]
53744
53878
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
53879
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
53745
53880
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
53746
53881
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
53747
53882
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -53791,6 +53926,7 @@ export namespace Prisma {
53791
53926
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
53792
53927
  websites?: UserUpdatewebsitesInput | string[]
53793
53928
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
53929
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
53794
53930
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
53795
53931
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
53796
53932
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -53851,6 +53987,7 @@ export namespace Prisma {
53851
53987
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
53852
53988
  websites?: UserUpdatewebsitesInput | string[]
53853
53989
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
53990
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
53854
53991
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
53855
53992
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
53856
53993
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -53900,6 +54037,7 @@ export namespace Prisma {
53900
54037
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
53901
54038
  websites?: UserUpdatewebsitesInput | string[]
53902
54039
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
54040
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
53903
54041
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
53904
54042
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
53905
54043
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -54453,6 +54591,7 @@ export namespace Prisma {
54453
54591
  yearsExperience?: number | null
54454
54592
  websites?: UserCreatewebsitesInput | string[]
54455
54593
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
54594
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
54456
54595
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
54457
54596
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
54458
54597
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -54503,6 +54642,7 @@ export namespace Prisma {
54503
54642
  yearsExperience?: number | null
54504
54643
  websites?: UserCreatewebsitesInput | string[]
54505
54644
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
54645
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
54506
54646
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
54507
54647
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
54508
54648
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -54581,6 +54721,7 @@ export namespace Prisma {
54581
54721
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
54582
54722
  websites?: UserUpdatewebsitesInput | string[]
54583
54723
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
54724
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
54584
54725
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
54585
54726
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
54586
54727
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -54630,6 +54771,7 @@ export namespace Prisma {
54630
54771
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
54631
54772
  websites?: UserUpdatewebsitesInput | string[]
54632
54773
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
54774
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
54633
54775
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
54634
54776
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
54635
54777
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -54781,6 +54923,7 @@ export namespace Prisma {
54781
54923
  yearsExperience?: number | null
54782
54924
  websites?: UserCreatewebsitesInput | string[]
54783
54925
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
54926
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
54784
54927
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
54785
54928
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
54786
54929
  authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
@@ -54831,6 +54974,7 @@ export namespace Prisma {
54831
54974
  yearsExperience?: number | null
54832
54975
  websites?: UserCreatewebsitesInput | string[]
54833
54976
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
54977
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
54834
54978
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
54835
54979
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
54836
54980
  authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
@@ -54951,6 +55095,7 @@ export namespace Prisma {
54951
55095
  yearsExperience?: number | null
54952
55096
  websites?: UserCreatewebsitesInput | string[]
54953
55097
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
55098
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
54954
55099
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
54955
55100
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
54956
55101
  authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
@@ -55001,6 +55146,7 @@ export namespace Prisma {
55001
55146
  yearsExperience?: number | null
55002
55147
  websites?: UserCreatewebsitesInput | string[]
55003
55148
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
55149
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
55004
55150
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
55005
55151
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
55006
55152
  authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
@@ -55320,6 +55466,7 @@ export namespace Prisma {
55320
55466
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
55321
55467
  websites?: UserUpdatewebsitesInput | string[]
55322
55468
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
55469
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
55323
55470
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
55324
55471
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
55325
55472
  authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
@@ -55369,6 +55516,7 @@ export namespace Prisma {
55369
55516
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
55370
55517
  websites?: UserUpdatewebsitesInput | string[]
55371
55518
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
55519
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
55372
55520
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
55373
55521
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
55374
55522
  authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
@@ -55498,6 +55646,7 @@ export namespace Prisma {
55498
55646
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
55499
55647
  websites?: UserUpdatewebsitesInput | string[]
55500
55648
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
55649
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
55501
55650
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
55502
55651
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
55503
55652
  authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
@@ -55547,6 +55696,7 @@ export namespace Prisma {
55547
55696
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
55548
55697
  websites?: UserUpdatewebsitesInput | string[]
55549
55698
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
55699
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
55550
55700
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
55551
55701
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
55552
55702
  authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
@@ -55715,6 +55865,7 @@ export namespace Prisma {
55715
55865
  yearsExperience?: number | null
55716
55866
  websites?: UserCreatewebsitesInput | string[]
55717
55867
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
55868
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
55718
55869
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
55719
55870
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
55720
55871
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -55765,6 +55916,7 @@ export namespace Prisma {
55765
55916
  yearsExperience?: number | null
55766
55917
  websites?: UserCreatewebsitesInput | string[]
55767
55918
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
55919
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
55768
55920
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
55769
55921
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
55770
55922
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -55887,6 +56039,7 @@ export namespace Prisma {
55887
56039
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
55888
56040
  websites?: UserUpdatewebsitesInput | string[]
55889
56041
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
56042
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
55890
56043
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
55891
56044
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
55892
56045
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -55936,6 +56089,7 @@ export namespace Prisma {
55936
56089
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
55937
56090
  websites?: UserUpdatewebsitesInput | string[]
55938
56091
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
56092
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
55939
56093
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
55940
56094
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
55941
56095
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -55994,6 +56148,7 @@ export namespace Prisma {
55994
56148
  yearsExperience?: number | null
55995
56149
  websites?: UserCreatewebsitesInput | string[]
55996
56150
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
56151
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
55997
56152
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
55998
56153
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
55999
56154
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -56044,6 +56199,7 @@ export namespace Prisma {
56044
56199
  yearsExperience?: number | null
56045
56200
  websites?: UserCreatewebsitesInput | string[]
56046
56201
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
56202
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
56047
56203
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
56048
56204
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
56049
56205
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -56118,6 +56274,7 @@ export namespace Prisma {
56118
56274
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
56119
56275
  websites?: UserUpdatewebsitesInput | string[]
56120
56276
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
56277
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
56121
56278
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
56122
56279
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
56123
56280
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -56167,6 +56324,7 @@ export namespace Prisma {
56167
56324
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
56168
56325
  websites?: UserUpdatewebsitesInput | string[]
56169
56326
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
56327
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
56170
56328
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
56171
56329
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
56172
56330
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -56281,6 +56439,7 @@ export namespace Prisma {
56281
56439
  yearsExperience?: number | null
56282
56440
  websites?: UserCreatewebsitesInput | string[]
56283
56441
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
56442
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
56284
56443
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
56285
56444
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
56286
56445
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -56331,6 +56490,7 @@ export namespace Prisma {
56331
56490
  yearsExperience?: number | null
56332
56491
  websites?: UserCreatewebsitesInput | string[]
56333
56492
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
56493
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
56334
56494
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
56335
56495
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
56336
56496
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -56421,6 +56581,7 @@ export namespace Prisma {
56421
56581
  yearsExperience?: number | null
56422
56582
  websites?: UserCreatewebsitesInput | string[]
56423
56583
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
56584
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
56424
56585
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
56425
56586
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
56426
56587
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -56471,6 +56632,7 @@ export namespace Prisma {
56471
56632
  yearsExperience?: number | null
56472
56633
  websites?: UserCreatewebsitesInput | string[]
56473
56634
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
56635
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
56474
56636
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
56475
56637
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
56476
56638
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -56794,6 +56956,7 @@ export namespace Prisma {
56794
56956
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
56795
56957
  websites?: UserUpdatewebsitesInput | string[]
56796
56958
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
56959
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
56797
56960
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
56798
56961
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
56799
56962
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -56843,6 +57006,7 @@ export namespace Prisma {
56843
57006
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
56844
57007
  websites?: UserUpdatewebsitesInput | string[]
56845
57008
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
57009
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
56846
57010
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
56847
57011
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
56848
57012
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -56942,6 +57106,7 @@ export namespace Prisma {
56942
57106
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
56943
57107
  websites?: UserUpdatewebsitesInput | string[]
56944
57108
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
57109
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
56945
57110
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
56946
57111
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
56947
57112
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -56991,6 +57156,7 @@ export namespace Prisma {
56991
57156
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
56992
57157
  websites?: UserUpdatewebsitesInput | string[]
56993
57158
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
57159
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
56994
57160
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
56995
57161
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
56996
57162
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -57187,6 +57353,7 @@ export namespace Prisma {
57187
57353
  yearsExperience?: number | null
57188
57354
  websites?: UserCreatewebsitesInput | string[]
57189
57355
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
57356
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
57190
57357
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
57191
57358
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
57192
57359
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -57237,6 +57404,7 @@ export namespace Prisma {
57237
57404
  yearsExperience?: number | null
57238
57405
  websites?: UserCreatewebsitesInput | string[]
57239
57406
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
57407
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
57240
57408
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
57241
57409
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
57242
57410
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -57399,6 +57567,7 @@ export namespace Prisma {
57399
57567
  yearsExperience?: number | null
57400
57568
  websites?: UserCreatewebsitesInput | string[]
57401
57569
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
57570
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
57402
57571
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
57403
57572
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
57404
57573
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -57449,6 +57618,7 @@ export namespace Prisma {
57449
57618
  yearsExperience?: number | null
57450
57619
  websites?: UserCreatewebsitesInput | string[]
57451
57620
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
57621
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
57452
57622
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
57453
57623
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
57454
57624
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -57569,6 +57739,7 @@ export namespace Prisma {
57569
57739
  yearsExperience?: number | null
57570
57740
  websites?: UserCreatewebsitesInput | string[]
57571
57741
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
57742
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
57572
57743
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
57573
57744
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
57574
57745
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -57619,6 +57790,7 @@ export namespace Prisma {
57619
57790
  yearsExperience?: number | null
57620
57791
  websites?: UserCreatewebsitesInput | string[]
57621
57792
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
57793
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
57622
57794
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
57623
57795
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
57624
57796
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -57781,6 +57953,7 @@ export namespace Prisma {
57781
57953
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
57782
57954
  websites?: UserUpdatewebsitesInput | string[]
57783
57955
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
57956
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
57784
57957
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
57785
57958
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
57786
57959
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -57830,6 +58003,7 @@ export namespace Prisma {
57830
58003
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
57831
58004
  websites?: UserUpdatewebsitesInput | string[]
57832
58005
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
58006
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
57833
58007
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
57834
58008
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
57835
58009
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -58001,6 +58175,7 @@ export namespace Prisma {
58001
58175
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
58002
58176
  websites?: UserUpdatewebsitesInput | string[]
58003
58177
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
58178
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
58004
58179
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
58005
58180
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
58006
58181
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -58050,6 +58225,7 @@ export namespace Prisma {
58050
58225
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
58051
58226
  websites?: UserUpdatewebsitesInput | string[]
58052
58227
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
58228
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
58053
58229
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
58054
58230
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
58055
58231
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -58179,6 +58355,7 @@ export namespace Prisma {
58179
58355
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
58180
58356
  websites?: UserUpdatewebsitesInput | string[]
58181
58357
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
58358
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
58182
58359
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
58183
58360
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
58184
58361
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -58228,6 +58405,7 @@ export namespace Prisma {
58228
58405
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
58229
58406
  websites?: UserUpdatewebsitesInput | string[]
58230
58407
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
58408
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
58231
58409
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
58232
58410
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
58233
58411
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -59470,6 +59648,11 @@ export namespace Prisma {
59470
59648
  update: LocationUpdateInput
59471
59649
  }
59472
59650
 
59651
+ export type UserExclusiveApplicationUpsertInput = {
59652
+ set: UserExclusiveApplicationCreateInput | null
59653
+ update: UserExclusiveApplicationUpdateInput
59654
+ }
59655
+
59473
59656
  export type PlatformExperienceUpsertInput = {
59474
59657
  set: PlatformExperienceCreateInput | null
59475
59658
  update: PlatformExperienceUpdateInput
@@ -59883,6 +60066,7 @@ export namespace Prisma {
59883
60066
  yearsExperience?: number | null
59884
60067
  websites?: UserCreatewebsitesInput | string[]
59885
60068
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
60069
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
59886
60070
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
59887
60071
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
59888
60072
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -59933,6 +60117,7 @@ export namespace Prisma {
59933
60117
  yearsExperience?: number | null
59934
60118
  websites?: UserCreatewebsitesInput | string[]
59935
60119
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
60120
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
59936
60121
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
59937
60122
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
59938
60123
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -60007,6 +60192,7 @@ export namespace Prisma {
60007
60192
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
60008
60193
  websites?: UserUpdatewebsitesInput | string[]
60009
60194
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
60195
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
60010
60196
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
60011
60197
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
60012
60198
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -60056,6 +60242,7 @@ export namespace Prisma {
60056
60242
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
60057
60243
  websites?: UserUpdatewebsitesInput | string[]
60058
60244
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
60245
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
60059
60246
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
60060
60247
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
60061
60248
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -60145,6 +60332,7 @@ export namespace Prisma {
60145
60332
  yearsExperience?: number | null
60146
60333
  websites?: UserCreatewebsitesInput | string[]
60147
60334
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
60335
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
60148
60336
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
60149
60337
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
60150
60338
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -60195,6 +60383,7 @@ export namespace Prisma {
60195
60383
  yearsExperience?: number | null
60196
60384
  websites?: UserCreatewebsitesInput | string[]
60197
60385
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
60386
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
60198
60387
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
60199
60388
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
60200
60389
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -60250,6 +60439,7 @@ export namespace Prisma {
60250
60439
  yearsExperience?: number | null
60251
60440
  websites?: UserCreatewebsitesInput | string[]
60252
60441
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
60442
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
60253
60443
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
60254
60444
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
60255
60445
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
@@ -60300,6 +60490,7 @@ export namespace Prisma {
60300
60490
  yearsExperience?: number | null
60301
60491
  websites?: UserCreatewebsitesInput | string[]
60302
60492
  location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
60493
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
60303
60494
  platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
60304
60495
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
60305
60496
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
@@ -60525,6 +60716,7 @@ export namespace Prisma {
60525
60716
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
60526
60717
  websites?: UserUpdatewebsitesInput | string[]
60527
60718
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
60719
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
60528
60720
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
60529
60721
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
60530
60722
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -60574,6 +60766,7 @@ export namespace Prisma {
60574
60766
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
60575
60767
  websites?: UserUpdatewebsitesInput | string[]
60576
60768
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
60769
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
60577
60770
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
60578
60771
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
60579
60772
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -60634,6 +60827,7 @@ export namespace Prisma {
60634
60827
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
60635
60828
  websites?: UserUpdatewebsitesInput | string[]
60636
60829
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
60830
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
60637
60831
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
60638
60832
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
60639
60833
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
@@ -60683,6 +60877,7 @@ export namespace Prisma {
60683
60877
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
60684
60878
  websites?: UserUpdatewebsitesInput | string[]
60685
60879
  location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
60880
+ exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
60686
60881
  platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
60687
60882
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
60688
60883
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
@@ -63647,6 +63842,11 @@ export namespace Prisma {
63647
63842
  province?: NullableStringFieldUpdateOperationsInput | string | null
63648
63843
  }
63649
63844
 
63845
+ export type UserExclusiveApplicationUpdateInput = {
63846
+ aid?: StringFieldUpdateOperationsInput | string
63847
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
63848
+ }
63849
+
63650
63850
  export type PlatformExperienceUpdateInput = {
63651
63851
  billedMinutes?: FloatFieldUpdateOperationsInput | number
63652
63852
  }
@@ -66467,6 +66667,10 @@ export namespace Prisma {
66467
66667
  * @deprecated Use PlatformExperienceDefaultArgs instead
66468
66668
  */
66469
66669
  export type PlatformExperienceArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = PlatformExperienceDefaultArgs<ExtArgs>
66670
+ /**
66671
+ * @deprecated Use UserExclusiveApplicationDefaultArgs instead
66672
+ */
66673
+ export type UserExclusiveApplicationArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = UserExclusiveApplicationDefaultArgs<ExtArgs>
66470
66674
  /**
66471
66675
  * @deprecated Use BookingFrequencyDefaultArgs instead
66472
66676
  */