@a_team/prisma 3.8.5-win → 3.8.6-linux-debian

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.
@@ -333,6 +333,16 @@ export type Availability = $Result.DefaultSelection<Prisma.$AvailabilityPayload>
333
333
  *
334
334
  */
335
335
  export type GitHubData = $Result.DefaultSelection<Prisma.$GitHubDataPayload>
336
+ /**
337
+ * Model Location
338
+ *
339
+ */
340
+ export type Location = $Result.DefaultSelection<Prisma.$LocationPayload>
341
+ /**
342
+ * Model PlatformExperience
343
+ *
344
+ */
345
+ export type PlatformExperience = $Result.DefaultSelection<Prisma.$PlatformExperiencePayload>
336
346
  /**
337
347
  * Model Account
338
348
  *
@@ -7337,6 +7347,124 @@ export namespace Prisma {
7337
7347
  }
7338
7348
 
7339
7349
 
7350
+ /**
7351
+ * Model Location
7352
+ */
7353
+
7354
+
7355
+
7356
+
7357
+
7358
+ export type LocationSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
7359
+ country?: boolean
7360
+ city?: boolean
7361
+ countryShortName?: boolean
7362
+ province?: boolean
7363
+ }, ExtArgs["result"]["location"]>
7364
+
7365
+
7366
+ export type LocationSelectScalar = {
7367
+ country?: boolean
7368
+ city?: boolean
7369
+ countryShortName?: boolean
7370
+ province?: boolean
7371
+ }
7372
+
7373
+
7374
+ export type $LocationPayload = {
7375
+ name: "Location"
7376
+ objects: {}
7377
+ scalars: {
7378
+ country: string
7379
+ city: string | null
7380
+ countryShortName: string | null
7381
+ province: string | null
7382
+ }
7383
+ composites: {}
7384
+ }
7385
+
7386
+ type LocationGetPayload<S extends boolean | null | undefined | LocationDefaultArgs> = $Result.GetResult<Prisma.$LocationPayload, S>
7387
+
7388
+
7389
+
7390
+
7391
+
7392
+ /**
7393
+ * Fields of the Location model
7394
+ */
7395
+ interface LocationFieldRefs {
7396
+ readonly country: FieldRef<"Location", 'String'>
7397
+ readonly city: FieldRef<"Location", 'String'>
7398
+ readonly countryShortName: FieldRef<"Location", 'String'>
7399
+ readonly province: FieldRef<"Location", 'String'>
7400
+ }
7401
+
7402
+
7403
+ // Custom InputTypes
7404
+ /**
7405
+ * Location without action
7406
+ */
7407
+ export type LocationDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
7408
+ /**
7409
+ * Select specific fields to fetch from the Location
7410
+ */
7411
+ select?: LocationSelect<ExtArgs> | null
7412
+ }
7413
+
7414
+
7415
+ /**
7416
+ * Model PlatformExperience
7417
+ */
7418
+
7419
+
7420
+
7421
+
7422
+
7423
+ export type PlatformExperienceSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
7424
+ billedMinutes?: boolean
7425
+ }, ExtArgs["result"]["platformExperience"]>
7426
+
7427
+
7428
+ export type PlatformExperienceSelectScalar = {
7429
+ billedMinutes?: boolean
7430
+ }
7431
+
7432
+
7433
+ export type $PlatformExperiencePayload = {
7434
+ name: "PlatformExperience"
7435
+ objects: {}
7436
+ scalars: {
7437
+ billedMinutes: number
7438
+ }
7439
+ composites: {}
7440
+ }
7441
+
7442
+ type PlatformExperienceGetPayload<S extends boolean | null | undefined | PlatformExperienceDefaultArgs> = $Result.GetResult<Prisma.$PlatformExperiencePayload, S>
7443
+
7444
+
7445
+
7446
+
7447
+
7448
+ /**
7449
+ * Fields of the PlatformExperience model
7450
+ */
7451
+ interface PlatformExperienceFieldRefs {
7452
+ readonly billedMinutes: FieldRef<"PlatformExperience", 'Float'>
7453
+ }
7454
+
7455
+
7456
+ // Custom InputTypes
7457
+ /**
7458
+ * PlatformExperience without action
7459
+ */
7460
+ export type PlatformExperienceDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
7461
+ /**
7462
+ * Select specific fields to fetch from the PlatformExperience
7463
+ */
7464
+ select?: PlatformExperienceSelect<ExtArgs> | null
7465
+ }
7466
+
7467
+
7340
7468
  /**
7341
7469
  * Model Account
7342
7470
  */
@@ -22451,6 +22579,8 @@ export namespace Prisma {
22451
22579
  dribbble?: boolean
22452
22580
  yearsExperience?: boolean
22453
22581
  websites?: boolean
22582
+ location?: boolean | LocationDefaultArgs<ExtArgs>
22583
+ platformExperience?: boolean | PlatformExperienceDefaultArgs<ExtArgs>
22454
22584
  createdMissionsModels?: boolean | User$createdMissionsModelsArgs<ExtArgs>
22455
22585
  ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
22456
22586
  authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
@@ -22539,6 +22669,8 @@ export namespace Prisma {
22539
22669
  missionPreferences: Prisma.$MissionPreferencesPayload | null
22540
22670
  availability: Prisma.$AvailabilityPayload | null
22541
22671
  github: Prisma.$GitHubDataPayload | null
22672
+ location: Prisma.$LocationPayload | null
22673
+ platformExperience: Prisma.$PlatformExperiencePayload | null
22542
22674
  }
22543
22675
  }
22544
22676
 
@@ -25737,6 +25869,8 @@ export namespace Prisma {
25737
25869
  dribbble?: StringNullableFilter<"User"> | string | null
25738
25870
  yearsExperience?: FloatNullableFilter<"User"> | number | null
25739
25871
  websites?: StringNullableListFilter<"User">
25872
+ location?: XOR<LocationNullableCompositeFilter, LocationObjectEqualityInput> | null
25873
+ platformExperience?: XOR<PlatformExperienceNullableCompositeFilter, PlatformExperienceObjectEqualityInput> | null
25740
25874
  createdMissionsModels?: MissionListRelationFilter
25741
25875
  ownedMissionsModels?: MissionListRelationFilter
25742
25876
  authoredMissionSpecs?: MissionSpecListRelationFilter
@@ -25775,6 +25909,8 @@ export namespace Prisma {
25775
25909
  dribbble?: SortOrder
25776
25910
  yearsExperience?: SortOrder
25777
25911
  websites?: SortOrder
25912
+ location?: LocationOrderByInput
25913
+ platformExperience?: PlatformExperienceOrderByInput
25778
25914
  createdMissionsModels?: MissionOrderByRelationAggregateInput
25779
25915
  ownedMissionsModels?: MissionOrderByRelationAggregateInput
25780
25916
  authoredMissionSpecs?: MissionSpecOrderByRelationAggregateInput
@@ -25816,6 +25952,8 @@ export namespace Prisma {
25816
25952
  dribbble?: StringNullableFilter<"User"> | string | null
25817
25953
  yearsExperience?: FloatNullableFilter<"User"> | number | null
25818
25954
  websites?: StringNullableListFilter<"User">
25955
+ location?: XOR<LocationNullableCompositeFilter, LocationObjectEqualityInput> | null
25956
+ platformExperience?: XOR<PlatformExperienceNullableCompositeFilter, PlatformExperienceObjectEqualityInput> | null
25819
25957
  createdMissionsModels?: MissionListRelationFilter
25820
25958
  ownedMissionsModels?: MissionListRelationFilter
25821
25959
  authoredMissionSpecs?: MissionSpecListRelationFilter
@@ -27706,6 +27844,8 @@ export namespace Prisma {
27706
27844
  dribbble?: string | null
27707
27845
  yearsExperience?: number | null
27708
27846
  websites?: UserCreatewebsitesInput | string[]
27847
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
27848
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
27709
27849
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
27710
27850
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
27711
27851
  authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
@@ -27744,6 +27884,8 @@ export namespace Prisma {
27744
27884
  dribbble?: string | null
27745
27885
  yearsExperience?: number | null
27746
27886
  websites?: UserCreatewebsitesInput | string[]
27887
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
27888
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
27747
27889
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
27748
27890
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
27749
27891
  authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
@@ -27781,6 +27923,8 @@ export namespace Prisma {
27781
27923
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
27782
27924
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
27783
27925
  websites?: UserUpdatewebsitesInput | string[]
27926
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
27927
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
27784
27928
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
27785
27929
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
27786
27930
  authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
@@ -27818,6 +27962,8 @@ export namespace Prisma {
27818
27962
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
27819
27963
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
27820
27964
  websites?: UserUpdatewebsitesInput | string[]
27965
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
27966
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
27821
27967
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
27822
27968
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
27823
27969
  authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
@@ -27856,6 +28002,8 @@ export namespace Prisma {
27856
28002
  dribbble?: string | null
27857
28003
  yearsExperience?: number | null
27858
28004
  websites?: UserCreatewebsitesInput | string[]
28005
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
28006
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
27859
28007
  }
27860
28008
 
27861
28009
  export type UserUpdateManyMutationInput = {
@@ -27885,6 +28033,8 @@ export namespace Prisma {
27885
28033
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
27886
28034
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
27887
28035
  websites?: UserUpdatewebsitesInput | string[]
28036
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
28037
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
27888
28038
  }
27889
28039
 
27890
28040
  export type UserUncheckedUpdateManyInput = {
@@ -27914,6 +28064,8 @@ export namespace Prisma {
27914
28064
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
27915
28065
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
27916
28066
  websites?: UserUpdatewebsitesInput | string[]
28067
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
28068
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
27917
28069
  }
27918
28070
 
27919
28071
  export type StringFilter<$PrismaModel = never> = {
@@ -29922,6 +30074,31 @@ export namespace Prisma {
29922
30074
  username: string
29923
30075
  }
29924
30076
 
30077
+ export type LocationNullableCompositeFilter = {
30078
+ equals?: LocationObjectEqualityInput | null
30079
+ is?: LocationWhereInput | null
30080
+ isNot?: LocationWhereInput | null
30081
+ isSet?: boolean
30082
+ }
30083
+
30084
+ export type LocationObjectEqualityInput = {
30085
+ country: string
30086
+ city?: string | null
30087
+ countryShortName?: string | null
30088
+ province?: string | null
30089
+ }
30090
+
30091
+ export type PlatformExperienceNullableCompositeFilter = {
30092
+ equals?: PlatformExperienceObjectEqualityInput | null
30093
+ is?: PlatformExperienceWhereInput | null
30094
+ isNot?: PlatformExperienceWhereInput | null
30095
+ isSet?: boolean
30096
+ }
30097
+
30098
+ export type PlatformExperienceObjectEqualityInput = {
30099
+ billedMinutes: number
30100
+ }
30101
+
29925
30102
  export type MissionPrefillListRelationFilter = {
29926
30103
  every?: MissionPrefillWhereInput
29927
30104
  some?: MissionPrefillWhereInput
@@ -29979,6 +30156,17 @@ export namespace Prisma {
29979
30156
  username?: SortOrder
29980
30157
  }
29981
30158
 
30159
+ export type LocationOrderByInput = {
30160
+ country?: SortOrder
30161
+ city?: SortOrder
30162
+ countryShortName?: SortOrder
30163
+ province?: SortOrder
30164
+ }
30165
+
30166
+ export type PlatformExperienceOrderByInput = {
30167
+ billedMinutes?: SortOrder
30168
+ }
30169
+
29982
30170
  export type MissionPrefillOrderByRelationAggregateInput = {
29983
30171
  _count?: SortOrder
29984
30172
  }
@@ -31705,6 +31893,25 @@ export namespace Prisma {
31705
31893
  set: string[]
31706
31894
  }
31707
31895
 
31896
+ export type LocationNullableCreateEnvelopeInput = {
31897
+ set?: LocationCreateInput | null
31898
+ }
31899
+
31900
+ export type LocationCreateInput = {
31901
+ country: string
31902
+ city?: string | null
31903
+ countryShortName?: string | null
31904
+ province?: string | null
31905
+ }
31906
+
31907
+ export type PlatformExperienceNullableCreateEnvelopeInput = {
31908
+ set?: PlatformExperienceCreateInput | null
31909
+ }
31910
+
31911
+ export type PlatformExperienceCreateInput = {
31912
+ billedMinutes: number
31913
+ }
31914
+
31708
31915
  export type MissionCreateNestedManyWithoutCreatorModelInput = {
31709
31916
  create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
31710
31917
  connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
@@ -31888,6 +32095,18 @@ export namespace Prisma {
31888
32095
  push?: string | string[]
31889
32096
  }
31890
32097
 
32098
+ export type LocationNullableUpdateEnvelopeInput = {
32099
+ set?: LocationCreateInput | null
32100
+ upsert?: LocationUpsertInput
32101
+ unset?: boolean
32102
+ }
32103
+
32104
+ export type PlatformExperienceNullableUpdateEnvelopeInput = {
32105
+ set?: PlatformExperienceCreateInput | null
32106
+ upsert?: PlatformExperienceUpsertInput
32107
+ unset?: boolean
32108
+ }
32109
+
31891
32110
  export type MissionUpdateManyWithoutCreatorModelNestedInput = {
31892
32111
  create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
31893
32112
  connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
@@ -33145,6 +33364,23 @@ export namespace Prisma {
33145
33364
  username?: StringFilter<"GitHubData"> | string
33146
33365
  }
33147
33366
 
33367
+ export type LocationWhereInput = {
33368
+ AND?: LocationWhereInput | LocationWhereInput[]
33369
+ OR?: LocationWhereInput[]
33370
+ NOT?: LocationWhereInput | LocationWhereInput[]
33371
+ country?: StringFilter<"Location"> | string
33372
+ city?: StringNullableFilter<"Location"> | string | null
33373
+ countryShortName?: StringNullableFilter<"Location"> | string | null
33374
+ province?: StringNullableFilter<"Location"> | string | null
33375
+ }
33376
+
33377
+ export type PlatformExperienceWhereInput = {
33378
+ AND?: PlatformExperienceWhereInput | PlatformExperienceWhereInput[]
33379
+ OR?: PlatformExperienceWhereInput[]
33380
+ NOT?: PlatformExperienceWhereInput | PlatformExperienceWhereInput[]
33381
+ billedMinutes?: FloatFilter<"PlatformExperience"> | number
33382
+ }
33383
+
33148
33384
  export type UserTalentSkillAssignmentDataOrderByInput = {
33149
33385
  mainTalentSkills?: UserTalentSkillAssignmentOrderByCompositeAggregateInput
33150
33386
  additionalTalentSkills?: UserTalentSkillAssignmentOrderByCompositeAggregateInput
@@ -34376,6 +34612,8 @@ export namespace Prisma {
34376
34612
  dribbble?: string | null
34377
34613
  yearsExperience?: number | null
34378
34614
  websites?: UserCreatewebsitesInput | string[]
34615
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
34616
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
34379
34617
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
34380
34618
  authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
34381
34619
  modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
@@ -34413,6 +34651,8 @@ export namespace Prisma {
34413
34651
  dribbble?: string | null
34414
34652
  yearsExperience?: number | null
34415
34653
  websites?: UserCreatewebsitesInput | string[]
34654
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
34655
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
34416
34656
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
34417
34657
  authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
34418
34658
  modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
@@ -34520,6 +34760,8 @@ export namespace Prisma {
34520
34760
  dribbble?: string | null
34521
34761
  yearsExperience?: number | null
34522
34762
  websites?: UserCreatewebsitesInput | string[]
34763
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
34764
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
34523
34765
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
34524
34766
  authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
34525
34767
  modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
@@ -34557,6 +34799,8 @@ export namespace Prisma {
34557
34799
  dribbble?: string | null
34558
34800
  yearsExperience?: number | null
34559
34801
  websites?: UserCreatewebsitesInput | string[]
34802
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
34803
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
34560
34804
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
34561
34805
  authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
34562
34806
  modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
@@ -34796,6 +35040,8 @@ export namespace Prisma {
34796
35040
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
34797
35041
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
34798
35042
  websites?: UserUpdatewebsitesInput | string[]
35043
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
35044
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
34799
35045
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
34800
35046
  authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
34801
35047
  modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
@@ -34832,6 +35078,8 @@ export namespace Prisma {
34832
35078
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
34833
35079
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
34834
35080
  websites?: UserUpdatewebsitesInput | string[]
35081
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
35082
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
34835
35083
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
34836
35084
  authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
34837
35085
  modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
@@ -34948,6 +35196,8 @@ export namespace Prisma {
34948
35196
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
34949
35197
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
34950
35198
  websites?: UserUpdatewebsitesInput | string[]
35199
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
35200
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
34951
35201
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
34952
35202
  authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
34953
35203
  modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
@@ -34984,6 +35234,8 @@ export namespace Prisma {
34984
35234
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
34985
35235
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
34986
35236
  websites?: UserUpdatewebsitesInput | string[]
35237
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
35238
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
34987
35239
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
34988
35240
  authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
34989
35241
  modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
@@ -35119,6 +35371,8 @@ export namespace Prisma {
35119
35371
  dribbble?: string | null
35120
35372
  yearsExperience?: number | null
35121
35373
  websites?: UserCreatewebsitesInput | string[]
35374
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
35375
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
35122
35376
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
35123
35377
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
35124
35378
  authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
@@ -35156,6 +35410,8 @@ export namespace Prisma {
35156
35410
  dribbble?: string | null
35157
35411
  yearsExperience?: number | null
35158
35412
  websites?: UserCreatewebsitesInput | string[]
35413
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
35414
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
35159
35415
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
35160
35416
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
35161
35417
  authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
@@ -35265,6 +35521,8 @@ export namespace Prisma {
35265
35521
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
35266
35522
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
35267
35523
  websites?: UserUpdatewebsitesInput | string[]
35524
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
35525
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
35268
35526
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
35269
35527
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
35270
35528
  authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
@@ -35301,6 +35559,8 @@ export namespace Prisma {
35301
35559
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
35302
35560
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
35303
35561
  websites?: UserUpdatewebsitesInput | string[]
35562
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
35563
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
35304
35564
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
35305
35565
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
35306
35566
  authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
@@ -35346,6 +35606,8 @@ export namespace Prisma {
35346
35606
  dribbble?: string | null
35347
35607
  yearsExperience?: number | null
35348
35608
  websites?: UserCreatewebsitesInput | string[]
35609
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
35610
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
35349
35611
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
35350
35612
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
35351
35613
  authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
@@ -35383,6 +35645,8 @@ export namespace Prisma {
35383
35645
  dribbble?: string | null
35384
35646
  yearsExperience?: number | null
35385
35647
  websites?: UserCreatewebsitesInput | string[]
35648
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
35649
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
35386
35650
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
35387
35651
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
35388
35652
  authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
@@ -35444,6 +35708,8 @@ export namespace Prisma {
35444
35708
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
35445
35709
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
35446
35710
  websites?: UserUpdatewebsitesInput | string[]
35711
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
35712
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
35447
35713
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
35448
35714
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
35449
35715
  authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
@@ -35480,6 +35746,8 @@ export namespace Prisma {
35480
35746
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
35481
35747
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
35482
35748
  websites?: UserUpdatewebsitesInput | string[]
35749
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
35750
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
35483
35751
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
35484
35752
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
35485
35753
  authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
@@ -35577,6 +35845,8 @@ export namespace Prisma {
35577
35845
  dribbble?: string | null
35578
35846
  yearsExperience?: number | null
35579
35847
  websites?: UserCreatewebsitesInput | string[]
35848
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
35849
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
35580
35850
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
35581
35851
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
35582
35852
  modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
@@ -35614,6 +35884,8 @@ export namespace Prisma {
35614
35884
  dribbble?: string | null
35615
35885
  yearsExperience?: number | null
35616
35886
  websites?: UserCreatewebsitesInput | string[]
35887
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
35888
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
35617
35889
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
35618
35890
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
35619
35891
  modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
@@ -35689,6 +35961,8 @@ export namespace Prisma {
35689
35961
  dribbble?: string | null
35690
35962
  yearsExperience?: number | null
35691
35963
  websites?: UserCreatewebsitesInput | string[]
35964
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
35965
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
35692
35966
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
35693
35967
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
35694
35968
  authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
@@ -35726,6 +36000,8 @@ export namespace Prisma {
35726
36000
  dribbble?: string | null
35727
36001
  yearsExperience?: number | null
35728
36002
  websites?: UserCreatewebsitesInput | string[]
36003
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
36004
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
35729
36005
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
35730
36006
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
35731
36007
  authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
@@ -36018,6 +36294,8 @@ export namespace Prisma {
36018
36294
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
36019
36295
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
36020
36296
  websites?: UserUpdatewebsitesInput | string[]
36297
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
36298
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
36021
36299
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
36022
36300
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
36023
36301
  modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
@@ -36054,6 +36332,8 @@ export namespace Prisma {
36054
36332
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
36055
36333
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
36056
36334
  websites?: UserUpdatewebsitesInput | string[]
36335
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
36336
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
36057
36337
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
36058
36338
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
36059
36339
  modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
@@ -36138,6 +36418,8 @@ export namespace Prisma {
36138
36418
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
36139
36419
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
36140
36420
  websites?: UserUpdatewebsitesInput | string[]
36421
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
36422
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
36141
36423
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
36142
36424
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
36143
36425
  authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
@@ -36174,6 +36456,8 @@ export namespace Prisma {
36174
36456
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
36175
36457
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
36176
36458
  websites?: UserUpdatewebsitesInput | string[]
36459
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
36460
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
36177
36461
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
36178
36462
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
36179
36463
  authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
@@ -36350,6 +36634,8 @@ export namespace Prisma {
36350
36634
  dribbble?: string | null
36351
36635
  yearsExperience?: number | null
36352
36636
  websites?: UserCreatewebsitesInput | string[]
36637
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
36638
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
36353
36639
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
36354
36640
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
36355
36641
  authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
@@ -36387,6 +36673,8 @@ export namespace Prisma {
36387
36673
  dribbble?: string | null
36388
36674
  yearsExperience?: number | null
36389
36675
  websites?: UserCreatewebsitesInput | string[]
36676
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
36677
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
36390
36678
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
36391
36679
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
36392
36680
  authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
@@ -36534,6 +36822,8 @@ export namespace Prisma {
36534
36822
  dribbble?: string | null
36535
36823
  yearsExperience?: number | null
36536
36824
  websites?: UserCreatewebsitesInput | string[]
36825
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
36826
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
36537
36827
  createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
36538
36828
  ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
36539
36829
  authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
@@ -36571,6 +36861,8 @@ export namespace Prisma {
36571
36861
  dribbble?: string | null
36572
36862
  yearsExperience?: number | null
36573
36863
  websites?: UserCreatewebsitesInput | string[]
36864
+ location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
36865
+ platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
36574
36866
  createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
36575
36867
  ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
36576
36868
  authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
@@ -36707,6 +36999,8 @@ export namespace Prisma {
36707
36999
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
36708
37000
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
36709
37001
  websites?: UserUpdatewebsitesInput | string[]
37002
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
37003
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
36710
37004
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
36711
37005
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
36712
37006
  authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
@@ -36743,6 +37037,8 @@ export namespace Prisma {
36743
37037
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
36744
37038
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
36745
37039
  websites?: UserUpdatewebsitesInput | string[]
37040
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
37041
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
36746
37042
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
36747
37043
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
36748
37044
  authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
@@ -36899,6 +37195,8 @@ export namespace Prisma {
36899
37195
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
36900
37196
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
36901
37197
  websites?: UserUpdatewebsitesInput | string[]
37198
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
37199
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
36902
37200
  createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
36903
37201
  ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
36904
37202
  authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
@@ -36935,6 +37233,8 @@ export namespace Prisma {
36935
37233
  dribbble?: NullableStringFieldUpdateOperationsInput | string | null
36936
37234
  yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
36937
37235
  websites?: UserUpdatewebsitesInput | string[]
37236
+ location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
37237
+ platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
36938
37238
  createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
36939
37239
  ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
36940
37240
  authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
@@ -37669,6 +37969,16 @@ export namespace Prisma {
37669
37969
  update: GitHubDataUpdateInput
37670
37970
  }
37671
37971
 
37972
+ export type LocationUpsertInput = {
37973
+ set: LocationCreateInput | null
37974
+ update: LocationUpdateInput
37975
+ }
37976
+
37977
+ export type PlatformExperienceUpsertInput = {
37978
+ set: PlatformExperienceCreateInput | null
37979
+ update: PlatformExperienceUpdateInput
37980
+ }
37981
+
37672
37982
  export type MissionUpsertWithWhereUniqueWithoutCreatorModelInput = {
37673
37983
  where: MissionWhereUniqueInput
37674
37984
  update: XOR<MissionUpdateWithoutCreatorModelInput, MissionUncheckedUpdateWithoutCreatorModelInput>
@@ -39613,6 +39923,17 @@ export namespace Prisma {
39613
39923
  username?: StringFieldUpdateOperationsInput | string
39614
39924
  }
39615
39925
 
39926
+ export type LocationUpdateInput = {
39927
+ country?: StringFieldUpdateOperationsInput | string
39928
+ city?: NullableStringFieldUpdateOperationsInput | string | null
39929
+ countryShortName?: NullableStringFieldUpdateOperationsInput | string | null
39930
+ province?: NullableStringFieldUpdateOperationsInput | string | null
39931
+ }
39932
+
39933
+ export type PlatformExperienceUpdateInput = {
39934
+ billedMinutes?: FloatFieldUpdateOperationsInput | number
39935
+ }
39936
+
39616
39937
  export type MissionUpdateWithoutCreatorModelInput = {
39617
39938
  applyStatus?: NullableStringFieldUpdateOperationsInput | string | null
39618
39939
  attachedLinks?: XOR<MissionsAttachedLinkListUpdateEnvelopeInput, MissionsAttachedLinkCreateInput> | MissionsAttachedLinkCreateInput[]
@@ -41550,6 +41871,14 @@ export namespace Prisma {
41550
41871
  * @deprecated Use GitHubDataDefaultArgs instead
41551
41872
  */
41552
41873
  export type GitHubDataArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = GitHubDataDefaultArgs<ExtArgs>
41874
+ /**
41875
+ * @deprecated Use LocationDefaultArgs instead
41876
+ */
41877
+ export type LocationArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = LocationDefaultArgs<ExtArgs>
41878
+ /**
41879
+ * @deprecated Use PlatformExperienceDefaultArgs instead
41880
+ */
41881
+ export type PlatformExperienceArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = PlatformExperienceDefaultArgs<ExtArgs>
41553
41882
  /**
41554
41883
  * @deprecated Use AccountDefaultArgs instead
41555
41884
  */