@a_team/prisma 3.8.2-win → 3.8.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.
- package/dist/client/edge.js +6 -5
- package/dist/client/index-browser.js +2 -1
- package/dist/client/index.d.ts +63 -1
- package/dist/client/index.js +8 -7
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +1 -0
- package/dist/client/wasm.js +2 -1
- package/package.json +2 -2
|
@@ -363,7 +363,8 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
363
363
|
cvURL: 'cvURL',
|
|
364
364
|
onboardingStage: 'onboardingStage',
|
|
365
365
|
dribbble: 'dribbble',
|
|
366
|
-
yearsExperience: 'yearsExperience'
|
|
366
|
+
yearsExperience: 'yearsExperience',
|
|
367
|
+
websites: 'websites'
|
|
367
368
|
};
|
|
368
369
|
|
|
369
370
|
exports.Prisma.SortOrder = {
|
package/dist/client/index.d.ts
CHANGED
|
@@ -22218,6 +22218,7 @@ export namespace Prisma {
|
|
|
22218
22218
|
onboardingStage: number
|
|
22219
22219
|
dribbble: number
|
|
22220
22220
|
yearsExperience: number
|
|
22221
|
+
websites: number
|
|
22221
22222
|
_all: number
|
|
22222
22223
|
}
|
|
22223
22224
|
|
|
@@ -22291,6 +22292,7 @@ export namespace Prisma {
|
|
|
22291
22292
|
onboardingStage?: true
|
|
22292
22293
|
dribbble?: true
|
|
22293
22294
|
yearsExperience?: true
|
|
22295
|
+
websites?: true
|
|
22294
22296
|
_all?: true
|
|
22295
22297
|
}
|
|
22296
22298
|
|
|
@@ -22399,6 +22401,7 @@ export namespace Prisma {
|
|
|
22399
22401
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
22400
22402
|
dribbble: string | null
|
|
22401
22403
|
yearsExperience: number | null
|
|
22404
|
+
websites: string[]
|
|
22402
22405
|
_count: UserCountAggregateOutputType | null
|
|
22403
22406
|
_avg: UserAvgAggregateOutputType | null
|
|
22404
22407
|
_sum: UserSumAggregateOutputType | null
|
|
@@ -22447,6 +22450,7 @@ export namespace Prisma {
|
|
|
22447
22450
|
github?: boolean | GitHubDataDefaultArgs<ExtArgs>
|
|
22448
22451
|
dribbble?: boolean
|
|
22449
22452
|
yearsExperience?: boolean
|
|
22453
|
+
websites?: boolean
|
|
22450
22454
|
createdMissionsModels?: boolean | User$createdMissionsModelsArgs<ExtArgs>
|
|
22451
22455
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
22452
22456
|
authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
|
|
@@ -22478,6 +22482,7 @@ export namespace Prisma {
|
|
|
22478
22482
|
onboardingStage?: boolean
|
|
22479
22483
|
dribbble?: boolean
|
|
22480
22484
|
yearsExperience?: boolean
|
|
22485
|
+
websites?: boolean
|
|
22481
22486
|
}
|
|
22482
22487
|
|
|
22483
22488
|
export type UserInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -22523,6 +22528,7 @@ export namespace Prisma {
|
|
|
22523
22528
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
22524
22529
|
dribbble: string | null
|
|
22525
22530
|
yearsExperience: number | null
|
|
22531
|
+
websites: string[]
|
|
22526
22532
|
}, ExtArgs["result"]["user"]>
|
|
22527
22533
|
composites: {
|
|
22528
22534
|
clientRegistration: Prisma.$ClientRegistrationPayload | null
|
|
@@ -22950,6 +22956,7 @@ export namespace Prisma {
|
|
|
22950
22956
|
readonly onboardingStage: FieldRef<"User", 'InternalOnboardingStage'>
|
|
22951
22957
|
readonly dribbble: FieldRef<"User", 'String'>
|
|
22952
22958
|
readonly yearsExperience: FieldRef<"User", 'Float'>
|
|
22959
|
+
readonly websites: FieldRef<"User", 'String[]'>
|
|
22953
22960
|
}
|
|
22954
22961
|
|
|
22955
22962
|
|
|
@@ -23744,7 +23751,8 @@ export namespace Prisma {
|
|
|
23744
23751
|
cvURL: 'cvURL',
|
|
23745
23752
|
onboardingStage: 'onboardingStage',
|
|
23746
23753
|
dribbble: 'dribbble',
|
|
23747
|
-
yearsExperience: 'yearsExperience'
|
|
23754
|
+
yearsExperience: 'yearsExperience',
|
|
23755
|
+
websites: 'websites'
|
|
23748
23756
|
};
|
|
23749
23757
|
|
|
23750
23758
|
export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum]
|
|
@@ -25728,6 +25736,7 @@ export namespace Prisma {
|
|
|
25728
25736
|
github?: XOR<GitHubDataNullableCompositeFilter, GitHubDataObjectEqualityInput> | null
|
|
25729
25737
|
dribbble?: StringNullableFilter<"User"> | string | null
|
|
25730
25738
|
yearsExperience?: FloatNullableFilter<"User"> | number | null
|
|
25739
|
+
websites?: StringNullableListFilter<"User">
|
|
25731
25740
|
createdMissionsModels?: MissionListRelationFilter
|
|
25732
25741
|
ownedMissionsModels?: MissionListRelationFilter
|
|
25733
25742
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
@@ -25765,6 +25774,7 @@ export namespace Prisma {
|
|
|
25765
25774
|
github?: GitHubDataOrderByInput
|
|
25766
25775
|
dribbble?: SortOrder
|
|
25767
25776
|
yearsExperience?: SortOrder
|
|
25777
|
+
websites?: SortOrder
|
|
25768
25778
|
createdMissionsModels?: MissionOrderByRelationAggregateInput
|
|
25769
25779
|
ownedMissionsModels?: MissionOrderByRelationAggregateInput
|
|
25770
25780
|
authoredMissionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
@@ -25805,6 +25815,7 @@ export namespace Prisma {
|
|
|
25805
25815
|
github?: XOR<GitHubDataNullableCompositeFilter, GitHubDataObjectEqualityInput> | null
|
|
25806
25816
|
dribbble?: StringNullableFilter<"User"> | string | null
|
|
25807
25817
|
yearsExperience?: FloatNullableFilter<"User"> | number | null
|
|
25818
|
+
websites?: StringNullableListFilter<"User">
|
|
25808
25819
|
createdMissionsModels?: MissionListRelationFilter
|
|
25809
25820
|
ownedMissionsModels?: MissionListRelationFilter
|
|
25810
25821
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
@@ -25834,6 +25845,7 @@ export namespace Prisma {
|
|
|
25834
25845
|
onboardingStage?: SortOrder
|
|
25835
25846
|
dribbble?: SortOrder
|
|
25836
25847
|
yearsExperience?: SortOrder
|
|
25848
|
+
websites?: SortOrder
|
|
25837
25849
|
_count?: UserCountOrderByAggregateInput
|
|
25838
25850
|
_avg?: UserAvgOrderByAggregateInput
|
|
25839
25851
|
_max?: UserMaxOrderByAggregateInput
|
|
@@ -25863,6 +25875,7 @@ export namespace Prisma {
|
|
|
25863
25875
|
onboardingStage?: EnumInternalOnboardingStageNullableWithAggregatesFilter<"User"> | $Enums.InternalOnboardingStage | null
|
|
25864
25876
|
dribbble?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
25865
25877
|
yearsExperience?: FloatNullableWithAggregatesFilter<"User"> | number | null
|
|
25878
|
+
websites?: StringNullableListFilter<"User">
|
|
25866
25879
|
}
|
|
25867
25880
|
|
|
25868
25881
|
export type AccountCreateInput = {
|
|
@@ -27692,6 +27705,7 @@ export namespace Prisma {
|
|
|
27692
27705
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27693
27706
|
dribbble?: string | null
|
|
27694
27707
|
yearsExperience?: number | null
|
|
27708
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
27695
27709
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
27696
27710
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
27697
27711
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -27729,6 +27743,7 @@ export namespace Prisma {
|
|
|
27729
27743
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27730
27744
|
dribbble?: string | null
|
|
27731
27745
|
yearsExperience?: number | null
|
|
27746
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
27732
27747
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
27733
27748
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
27734
27749
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -27765,6 +27780,7 @@ export namespace Prisma {
|
|
|
27765
27780
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27766
27781
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27767
27782
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
27783
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
27768
27784
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
27769
27785
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
27770
27786
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -27801,6 +27817,7 @@ export namespace Prisma {
|
|
|
27801
27817
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27802
27818
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27803
27819
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
27820
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
27804
27821
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
27805
27822
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
27806
27823
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -27838,6 +27855,7 @@ export namespace Prisma {
|
|
|
27838
27855
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27839
27856
|
dribbble?: string | null
|
|
27840
27857
|
yearsExperience?: number | null
|
|
27858
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
27841
27859
|
}
|
|
27842
27860
|
|
|
27843
27861
|
export type UserUpdateManyMutationInput = {
|
|
@@ -27866,6 +27884,7 @@ export namespace Prisma {
|
|
|
27866
27884
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27867
27885
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27868
27886
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
27887
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
27869
27888
|
}
|
|
27870
27889
|
|
|
27871
27890
|
export type UserUncheckedUpdateManyInput = {
|
|
@@ -27894,6 +27913,7 @@ export namespace Prisma {
|
|
|
27894
27913
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27895
27914
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27896
27915
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
27916
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
27897
27917
|
}
|
|
27898
27918
|
|
|
27899
27919
|
export type StringFilter<$PrismaModel = never> = {
|
|
@@ -29986,6 +30006,7 @@ export namespace Prisma {
|
|
|
29986
30006
|
onboardingStage?: SortOrder
|
|
29987
30007
|
dribbble?: SortOrder
|
|
29988
30008
|
yearsExperience?: SortOrder
|
|
30009
|
+
websites?: SortOrder
|
|
29989
30010
|
}
|
|
29990
30011
|
|
|
29991
30012
|
export type UserAvgOrderByAggregateInput = {
|
|
@@ -31680,6 +31701,10 @@ export namespace Prisma {
|
|
|
31680
31701
|
username: string
|
|
31681
31702
|
}
|
|
31682
31703
|
|
|
31704
|
+
export type UserCreatewebsitesInput = {
|
|
31705
|
+
set: string[]
|
|
31706
|
+
}
|
|
31707
|
+
|
|
31683
31708
|
export type MissionCreateNestedManyWithoutCreatorModelInput = {
|
|
31684
31709
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
31685
31710
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -31858,6 +31883,11 @@ export namespace Prisma {
|
|
|
31858
31883
|
unset?: boolean
|
|
31859
31884
|
}
|
|
31860
31885
|
|
|
31886
|
+
export type UserUpdatewebsitesInput = {
|
|
31887
|
+
set?: string[]
|
|
31888
|
+
push?: string | string[]
|
|
31889
|
+
}
|
|
31890
|
+
|
|
31861
31891
|
export type MissionUpdateManyWithoutCreatorModelNestedInput = {
|
|
31862
31892
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
31863
31893
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -34345,6 +34375,7 @@ export namespace Prisma {
|
|
|
34345
34375
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34346
34376
|
dribbble?: string | null
|
|
34347
34377
|
yearsExperience?: number | null
|
|
34378
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
34348
34379
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
34349
34380
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
34350
34381
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -34381,6 +34412,7 @@ export namespace Prisma {
|
|
|
34381
34412
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34382
34413
|
dribbble?: string | null
|
|
34383
34414
|
yearsExperience?: number | null
|
|
34415
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
34384
34416
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
34385
34417
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
34386
34418
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -34487,6 +34519,7 @@ export namespace Prisma {
|
|
|
34487
34519
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34488
34520
|
dribbble?: string | null
|
|
34489
34521
|
yearsExperience?: number | null
|
|
34522
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
34490
34523
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
34491
34524
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
34492
34525
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -34523,6 +34556,7 @@ export namespace Prisma {
|
|
|
34523
34556
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34524
34557
|
dribbble?: string | null
|
|
34525
34558
|
yearsExperience?: number | null
|
|
34559
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
34526
34560
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
34527
34561
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
34528
34562
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -34761,6 +34795,7 @@ export namespace Prisma {
|
|
|
34761
34795
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34762
34796
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34763
34797
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
34798
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
34764
34799
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
34765
34800
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
34766
34801
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -34796,6 +34831,7 @@ export namespace Prisma {
|
|
|
34796
34831
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34797
34832
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34798
34833
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
34834
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
34799
34835
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
34800
34836
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
34801
34837
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -34911,6 +34947,7 @@ export namespace Prisma {
|
|
|
34911
34947
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34912
34948
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34913
34949
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
34950
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
34914
34951
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
34915
34952
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
34916
34953
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -34946,6 +34983,7 @@ export namespace Prisma {
|
|
|
34946
34983
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34947
34984
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34948
34985
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
34986
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
34949
34987
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
34950
34988
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
34951
34989
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -35080,6 +35118,7 @@ export namespace Prisma {
|
|
|
35080
35118
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35081
35119
|
dribbble?: string | null
|
|
35082
35120
|
yearsExperience?: number | null
|
|
35121
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
35083
35122
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
35084
35123
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
35085
35124
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -35116,6 +35155,7 @@ export namespace Prisma {
|
|
|
35116
35155
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35117
35156
|
dribbble?: string | null
|
|
35118
35157
|
yearsExperience?: number | null
|
|
35158
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
35119
35159
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
35120
35160
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
35121
35161
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -35224,6 +35264,7 @@ export namespace Prisma {
|
|
|
35224
35264
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35225
35265
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35226
35266
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35267
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
35227
35268
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
35228
35269
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
35229
35270
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -35259,6 +35300,7 @@ export namespace Prisma {
|
|
|
35259
35300
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35260
35301
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35261
35302
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35303
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
35262
35304
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
35263
35305
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
35264
35306
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -35303,6 +35345,7 @@ export namespace Prisma {
|
|
|
35303
35345
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35304
35346
|
dribbble?: string | null
|
|
35305
35347
|
yearsExperience?: number | null
|
|
35348
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
35306
35349
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
35307
35350
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
35308
35351
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -35339,6 +35382,7 @@ export namespace Prisma {
|
|
|
35339
35382
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35340
35383
|
dribbble?: string | null
|
|
35341
35384
|
yearsExperience?: number | null
|
|
35385
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
35342
35386
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
35343
35387
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
35344
35388
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -35399,6 +35443,7 @@ export namespace Prisma {
|
|
|
35399
35443
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35400
35444
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35401
35445
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35446
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
35402
35447
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
35403
35448
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
35404
35449
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -35434,6 +35479,7 @@ export namespace Prisma {
|
|
|
35434
35479
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35435
35480
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35436
35481
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35482
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
35437
35483
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
35438
35484
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
35439
35485
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -35530,6 +35576,7 @@ export namespace Prisma {
|
|
|
35530
35576
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35531
35577
|
dribbble?: string | null
|
|
35532
35578
|
yearsExperience?: number | null
|
|
35579
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
35533
35580
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
35534
35581
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
35535
35582
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -35566,6 +35613,7 @@ export namespace Prisma {
|
|
|
35566
35613
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35567
35614
|
dribbble?: string | null
|
|
35568
35615
|
yearsExperience?: number | null
|
|
35616
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
35569
35617
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
35570
35618
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
35571
35619
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -35640,6 +35688,7 @@ export namespace Prisma {
|
|
|
35640
35688
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35641
35689
|
dribbble?: string | null
|
|
35642
35690
|
yearsExperience?: number | null
|
|
35691
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
35643
35692
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
35644
35693
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
35645
35694
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -35676,6 +35725,7 @@ export namespace Prisma {
|
|
|
35676
35725
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35677
35726
|
dribbble?: string | null
|
|
35678
35727
|
yearsExperience?: number | null
|
|
35728
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
35679
35729
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
35680
35730
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
35681
35731
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -35967,6 +36017,7 @@ export namespace Prisma {
|
|
|
35967
36017
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35968
36018
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35969
36019
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36020
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
35970
36021
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
35971
36022
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
35972
36023
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -36002,6 +36053,7 @@ export namespace Prisma {
|
|
|
36002
36053
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36003
36054
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36004
36055
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36056
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
36005
36057
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
36006
36058
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
36007
36059
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -36085,6 +36137,7 @@ export namespace Prisma {
|
|
|
36085
36137
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36086
36138
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36087
36139
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36140
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
36088
36141
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
36089
36142
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
36090
36143
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -36120,6 +36173,7 @@ export namespace Prisma {
|
|
|
36120
36173
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36121
36174
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36122
36175
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36176
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
36123
36177
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
36124
36178
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
36125
36179
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -36295,6 +36349,7 @@ export namespace Prisma {
|
|
|
36295
36349
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36296
36350
|
dribbble?: string | null
|
|
36297
36351
|
yearsExperience?: number | null
|
|
36352
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
36298
36353
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
36299
36354
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
36300
36355
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -36331,6 +36386,7 @@ export namespace Prisma {
|
|
|
36331
36386
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36332
36387
|
dribbble?: string | null
|
|
36333
36388
|
yearsExperience?: number | null
|
|
36389
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
36334
36390
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
36335
36391
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
36336
36392
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -36477,6 +36533,7 @@ export namespace Prisma {
|
|
|
36477
36533
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36478
36534
|
dribbble?: string | null
|
|
36479
36535
|
yearsExperience?: number | null
|
|
36536
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
36480
36537
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
36481
36538
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
36482
36539
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -36513,6 +36570,7 @@ export namespace Prisma {
|
|
|
36513
36570
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36514
36571
|
dribbble?: string | null
|
|
36515
36572
|
yearsExperience?: number | null
|
|
36573
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
36516
36574
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
36517
36575
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
36518
36576
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -36648,6 +36706,7 @@ export namespace Prisma {
|
|
|
36648
36706
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36649
36707
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36650
36708
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36709
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
36651
36710
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
36652
36711
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
36653
36712
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -36683,6 +36742,7 @@ export namespace Prisma {
|
|
|
36683
36742
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36684
36743
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36685
36744
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36745
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
36686
36746
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
36687
36747
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
36688
36748
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -36838,6 +36898,7 @@ export namespace Prisma {
|
|
|
36838
36898
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36839
36899
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36840
36900
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36901
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
36841
36902
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
36842
36903
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
36843
36904
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -36873,6 +36934,7 @@ export namespace Prisma {
|
|
|
36873
36934
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36874
36935
|
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36875
36936
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36937
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
36876
36938
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
36877
36939
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
36878
36940
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|