@a_team/prisma 3.9.3-win → 3.9.4-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.
- package/dist/client/edge.js +4 -5
- package/dist/client/index-browser.js +0 -1
- package/dist/client/index.d.ts +160 -59
- package/dist/client/index.js +6 -7
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-debian-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +6 -1
- package/dist/client/wasm.js +0 -1
- package/package.json +2 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -353,6 +353,11 @@ export type Availability = $Result.DefaultSelection<Prisma.$AvailabilityPayload>
|
|
|
353
353
|
*
|
|
354
354
|
*/
|
|
355
355
|
export type GitHubData = $Result.DefaultSelection<Prisma.$GitHubDataPayload>
|
|
356
|
+
/**
|
|
357
|
+
* Model DribbbleData
|
|
358
|
+
*
|
|
359
|
+
*/
|
|
360
|
+
export type DribbbleData = $Result.DefaultSelection<Prisma.$DribbbleDataPayload>
|
|
356
361
|
/**
|
|
357
362
|
* Model Location
|
|
358
363
|
*
|
|
@@ -7742,6 +7747,63 @@ export namespace Prisma {
|
|
|
7742
7747
|
}
|
|
7743
7748
|
|
|
7744
7749
|
|
|
7750
|
+
/**
|
|
7751
|
+
* Model DribbbleData
|
|
7752
|
+
*/
|
|
7753
|
+
|
|
7754
|
+
|
|
7755
|
+
|
|
7756
|
+
|
|
7757
|
+
|
|
7758
|
+
export type DribbbleDataSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
7759
|
+
username?: boolean
|
|
7760
|
+
profileURL?: boolean
|
|
7761
|
+
}, ExtArgs["result"]["dribbbleData"]>
|
|
7762
|
+
|
|
7763
|
+
|
|
7764
|
+
export type DribbbleDataSelectScalar = {
|
|
7765
|
+
username?: boolean
|
|
7766
|
+
profileURL?: boolean
|
|
7767
|
+
}
|
|
7768
|
+
|
|
7769
|
+
|
|
7770
|
+
export type $DribbbleDataPayload = {
|
|
7771
|
+
name: "DribbbleData"
|
|
7772
|
+
objects: {}
|
|
7773
|
+
scalars: {
|
|
7774
|
+
username: string
|
|
7775
|
+
profileURL: string | null
|
|
7776
|
+
}
|
|
7777
|
+
composites: {}
|
|
7778
|
+
}
|
|
7779
|
+
|
|
7780
|
+
type DribbbleDataGetPayload<S extends boolean | null | undefined | DribbbleDataDefaultArgs> = $Result.GetResult<Prisma.$DribbbleDataPayload, S>
|
|
7781
|
+
|
|
7782
|
+
|
|
7783
|
+
|
|
7784
|
+
|
|
7785
|
+
|
|
7786
|
+
/**
|
|
7787
|
+
* Fields of the DribbbleData model
|
|
7788
|
+
*/
|
|
7789
|
+
interface DribbbleDataFieldRefs {
|
|
7790
|
+
readonly username: FieldRef<"DribbbleData", 'String'>
|
|
7791
|
+
readonly profileURL: FieldRef<"DribbbleData", 'String'>
|
|
7792
|
+
}
|
|
7793
|
+
|
|
7794
|
+
|
|
7795
|
+
// Custom InputTypes
|
|
7796
|
+
/**
|
|
7797
|
+
* DribbbleData without action
|
|
7798
|
+
*/
|
|
7799
|
+
export type DribbbleDataDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7800
|
+
/**
|
|
7801
|
+
* Select specific fields to fetch from the DribbbleData
|
|
7802
|
+
*/
|
|
7803
|
+
select?: DribbbleDataSelect<ExtArgs> | null
|
|
7804
|
+
}
|
|
7805
|
+
|
|
7806
|
+
|
|
7745
7807
|
/**
|
|
7746
7808
|
* Model Location
|
|
7747
7809
|
*/
|
|
@@ -23709,7 +23771,6 @@ export namespace Prisma {
|
|
|
23709
23771
|
aboutMe: string | null
|
|
23710
23772
|
cvURL: string | null
|
|
23711
23773
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
23712
|
-
dribbble: string | null
|
|
23713
23774
|
yearsExperience: number | null
|
|
23714
23775
|
}
|
|
23715
23776
|
|
|
@@ -23729,7 +23790,6 @@ export namespace Prisma {
|
|
|
23729
23790
|
aboutMe: string | null
|
|
23730
23791
|
cvURL: string | null
|
|
23731
23792
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
23732
|
-
dribbble: string | null
|
|
23733
23793
|
yearsExperience: number | null
|
|
23734
23794
|
}
|
|
23735
23795
|
|
|
@@ -23750,7 +23810,6 @@ export namespace Prisma {
|
|
|
23750
23810
|
aboutMe: number
|
|
23751
23811
|
cvURL: number
|
|
23752
23812
|
onboardingStage: number
|
|
23753
|
-
dribbble: number
|
|
23754
23813
|
yearsExperience: number
|
|
23755
23814
|
websites: number
|
|
23756
23815
|
_all: number
|
|
@@ -23783,7 +23842,6 @@ export namespace Prisma {
|
|
|
23783
23842
|
aboutMe?: true
|
|
23784
23843
|
cvURL?: true
|
|
23785
23844
|
onboardingStage?: true
|
|
23786
|
-
dribbble?: true
|
|
23787
23845
|
yearsExperience?: true
|
|
23788
23846
|
}
|
|
23789
23847
|
|
|
@@ -23803,7 +23861,6 @@ export namespace Prisma {
|
|
|
23803
23861
|
aboutMe?: true
|
|
23804
23862
|
cvURL?: true
|
|
23805
23863
|
onboardingStage?: true
|
|
23806
|
-
dribbble?: true
|
|
23807
23864
|
yearsExperience?: true
|
|
23808
23865
|
}
|
|
23809
23866
|
|
|
@@ -23824,7 +23881,6 @@ export namespace Prisma {
|
|
|
23824
23881
|
aboutMe?: true
|
|
23825
23882
|
cvURL?: true
|
|
23826
23883
|
onboardingStage?: true
|
|
23827
|
-
dribbble?: true
|
|
23828
23884
|
yearsExperience?: true
|
|
23829
23885
|
websites?: true
|
|
23830
23886
|
_all?: true
|
|
@@ -23933,7 +23989,6 @@ export namespace Prisma {
|
|
|
23933
23989
|
aboutMe: string | null
|
|
23934
23990
|
cvURL: string | null
|
|
23935
23991
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
23936
|
-
dribbble: string | null
|
|
23937
23992
|
yearsExperience: number | null
|
|
23938
23993
|
websites: string[]
|
|
23939
23994
|
_count: UserCountAggregateOutputType | null
|
|
@@ -23982,7 +24037,7 @@ export namespace Prisma {
|
|
|
23982
24037
|
missionPreferences?: boolean | MissionPreferencesDefaultArgs<ExtArgs>
|
|
23983
24038
|
availability?: boolean | AvailabilityDefaultArgs<ExtArgs>
|
|
23984
24039
|
github?: boolean | GitHubDataDefaultArgs<ExtArgs>
|
|
23985
|
-
dribbble?: boolean
|
|
24040
|
+
dribbble?: boolean | DribbbleDataDefaultArgs<ExtArgs>
|
|
23986
24041
|
yearsExperience?: boolean
|
|
23987
24042
|
websites?: boolean
|
|
23988
24043
|
location?: boolean | LocationDefaultArgs<ExtArgs>
|
|
@@ -24016,7 +24071,6 @@ export namespace Prisma {
|
|
|
24016
24071
|
aboutMe?: boolean
|
|
24017
24072
|
cvURL?: boolean
|
|
24018
24073
|
onboardingStage?: boolean
|
|
24019
|
-
dribbble?: boolean
|
|
24020
24074
|
yearsExperience?: boolean
|
|
24021
24075
|
websites?: boolean
|
|
24022
24076
|
}
|
|
@@ -24062,7 +24116,6 @@ export namespace Prisma {
|
|
|
24062
24116
|
aboutMe: string | null
|
|
24063
24117
|
cvURL: string | null
|
|
24064
24118
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
24065
|
-
dribbble: string | null
|
|
24066
24119
|
yearsExperience: number | null
|
|
24067
24120
|
websites: string[]
|
|
24068
24121
|
}, ExtArgs["result"]["user"]>
|
|
@@ -24075,6 +24128,7 @@ export namespace Prisma {
|
|
|
24075
24128
|
missionPreferences: Prisma.$MissionPreferencesPayload | null
|
|
24076
24129
|
availability: Prisma.$AvailabilityPayload | null
|
|
24077
24130
|
github: Prisma.$GitHubDataPayload | null
|
|
24131
|
+
dribbble: Prisma.$DribbbleDataPayload | null
|
|
24078
24132
|
location: Prisma.$LocationPayload | null
|
|
24079
24133
|
platformExperience: Prisma.$PlatformExperiencePayload | null
|
|
24080
24134
|
}
|
|
@@ -24492,7 +24546,6 @@ export namespace Prisma {
|
|
|
24492
24546
|
readonly aboutMe: FieldRef<"User", 'String'>
|
|
24493
24547
|
readonly cvURL: FieldRef<"User", 'String'>
|
|
24494
24548
|
readonly onboardingStage: FieldRef<"User", 'InternalOnboardingStage'>
|
|
24495
|
-
readonly dribbble: FieldRef<"User", 'String'>
|
|
24496
24549
|
readonly yearsExperience: FieldRef<"User", 'Float'>
|
|
24497
24550
|
readonly websites: FieldRef<"User", 'String[]'>
|
|
24498
24551
|
}
|
|
@@ -25298,7 +25351,6 @@ export namespace Prisma {
|
|
|
25298
25351
|
aboutMe: 'aboutMe',
|
|
25299
25352
|
cvURL: 'cvURL',
|
|
25300
25353
|
onboardingStage: 'onboardingStage',
|
|
25301
|
-
dribbble: 'dribbble',
|
|
25302
25354
|
yearsExperience: 'yearsExperience',
|
|
25303
25355
|
websites: 'websites'
|
|
25304
25356
|
};
|
|
@@ -27367,7 +27419,7 @@ export namespace Prisma {
|
|
|
27367
27419
|
missionPreferences?: XOR<MissionPreferencesNullableCompositeFilter, MissionPreferencesObjectEqualityInput> | null
|
|
27368
27420
|
availability?: XOR<AvailabilityNullableCompositeFilter, AvailabilityObjectEqualityInput> | null
|
|
27369
27421
|
github?: XOR<GitHubDataNullableCompositeFilter, GitHubDataObjectEqualityInput> | null
|
|
27370
|
-
dribbble?:
|
|
27422
|
+
dribbble?: XOR<DribbbleDataNullableCompositeFilter, DribbbleDataObjectEqualityInput> | null
|
|
27371
27423
|
yearsExperience?: FloatNullableFilter<"User"> | number | null
|
|
27372
27424
|
websites?: StringNullableListFilter<"User">
|
|
27373
27425
|
location?: XOR<LocationNullableCompositeFilter, LocationObjectEqualityInput> | null
|
|
@@ -27407,7 +27459,7 @@ export namespace Prisma {
|
|
|
27407
27459
|
missionPreferences?: MissionPreferencesOrderByInput
|
|
27408
27460
|
availability?: AvailabilityOrderByInput
|
|
27409
27461
|
github?: GitHubDataOrderByInput
|
|
27410
|
-
dribbble?:
|
|
27462
|
+
dribbble?: DribbbleDataOrderByInput
|
|
27411
27463
|
yearsExperience?: SortOrder
|
|
27412
27464
|
websites?: SortOrder
|
|
27413
27465
|
location?: LocationOrderByInput
|
|
@@ -27450,7 +27502,7 @@ export namespace Prisma {
|
|
|
27450
27502
|
missionPreferences?: XOR<MissionPreferencesNullableCompositeFilter, MissionPreferencesObjectEqualityInput> | null
|
|
27451
27503
|
availability?: XOR<AvailabilityNullableCompositeFilter, AvailabilityObjectEqualityInput> | null
|
|
27452
27504
|
github?: XOR<GitHubDataNullableCompositeFilter, GitHubDataObjectEqualityInput> | null
|
|
27453
|
-
dribbble?:
|
|
27505
|
+
dribbble?: XOR<DribbbleDataNullableCompositeFilter, DribbbleDataObjectEqualityInput> | null
|
|
27454
27506
|
yearsExperience?: FloatNullableFilter<"User"> | number | null
|
|
27455
27507
|
websites?: StringNullableListFilter<"User">
|
|
27456
27508
|
location?: XOR<LocationNullableCompositeFilter, LocationObjectEqualityInput> | null
|
|
@@ -27482,7 +27534,6 @@ export namespace Prisma {
|
|
|
27482
27534
|
aboutMe?: SortOrder
|
|
27483
27535
|
cvURL?: SortOrder
|
|
27484
27536
|
onboardingStage?: SortOrder
|
|
27485
|
-
dribbble?: SortOrder
|
|
27486
27537
|
yearsExperience?: SortOrder
|
|
27487
27538
|
websites?: SortOrder
|
|
27488
27539
|
_count?: UserCountOrderByAggregateInput
|
|
@@ -27512,7 +27563,6 @@ export namespace Prisma {
|
|
|
27512
27563
|
aboutMe?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
27513
27564
|
cvURL?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
27514
27565
|
onboardingStage?: EnumInternalOnboardingStageNullableWithAggregatesFilter<"User"> | $Enums.InternalOnboardingStage | null
|
|
27515
|
-
dribbble?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
27516
27566
|
yearsExperience?: FloatNullableWithAggregatesFilter<"User"> | number | null
|
|
27517
27567
|
websites?: StringNullableListFilter<"User">
|
|
27518
27568
|
}
|
|
@@ -29421,7 +29471,7 @@ export namespace Prisma {
|
|
|
29421
29471
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
29422
29472
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
29423
29473
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
29424
|
-
dribbble?:
|
|
29474
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
29425
29475
|
yearsExperience?: number | null
|
|
29426
29476
|
websites?: UserCreatewebsitesInput | string[]
|
|
29427
29477
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -29461,7 +29511,7 @@ export namespace Prisma {
|
|
|
29461
29511
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
29462
29512
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
29463
29513
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
29464
|
-
dribbble?:
|
|
29514
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
29465
29515
|
yearsExperience?: number | null
|
|
29466
29516
|
websites?: UserCreatewebsitesInput | string[]
|
|
29467
29517
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -29500,7 +29550,7 @@ export namespace Prisma {
|
|
|
29500
29550
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
29501
29551
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
29502
29552
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
29503
|
-
dribbble?:
|
|
29553
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
29504
29554
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
29505
29555
|
websites?: UserUpdatewebsitesInput | string[]
|
|
29506
29556
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -29539,7 +29589,7 @@ export namespace Prisma {
|
|
|
29539
29589
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
29540
29590
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
29541
29591
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
29542
|
-
dribbble?:
|
|
29592
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
29543
29593
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
29544
29594
|
websites?: UserUpdatewebsitesInput | string[]
|
|
29545
29595
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -29579,7 +29629,7 @@ export namespace Prisma {
|
|
|
29579
29629
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
29580
29630
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
29581
29631
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
29582
|
-
dribbble?:
|
|
29632
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
29583
29633
|
yearsExperience?: number | null
|
|
29584
29634
|
websites?: UserCreatewebsitesInput | string[]
|
|
29585
29635
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -29610,7 +29660,7 @@ export namespace Prisma {
|
|
|
29610
29660
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
29611
29661
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
29612
29662
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
29613
|
-
dribbble?:
|
|
29663
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
29614
29664
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
29615
29665
|
websites?: UserUpdatewebsitesInput | string[]
|
|
29616
29666
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -29641,7 +29691,7 @@ export namespace Prisma {
|
|
|
29641
29691
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
29642
29692
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
29643
29693
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
29644
|
-
dribbble?:
|
|
29694
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
29645
29695
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
29646
29696
|
websites?: UserUpdatewebsitesInput | string[]
|
|
29647
29697
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -31759,6 +31809,18 @@ export namespace Prisma {
|
|
|
31759
31809
|
username: string
|
|
31760
31810
|
}
|
|
31761
31811
|
|
|
31812
|
+
export type DribbbleDataNullableCompositeFilter = {
|
|
31813
|
+
equals?: DribbbleDataObjectEqualityInput | null
|
|
31814
|
+
is?: DribbbleDataWhereInput | null
|
|
31815
|
+
isNot?: DribbbleDataWhereInput | null
|
|
31816
|
+
isSet?: boolean
|
|
31817
|
+
}
|
|
31818
|
+
|
|
31819
|
+
export type DribbbleDataObjectEqualityInput = {
|
|
31820
|
+
username: string
|
|
31821
|
+
profileURL?: string | null
|
|
31822
|
+
}
|
|
31823
|
+
|
|
31762
31824
|
export type LocationNullableCompositeFilter = {
|
|
31763
31825
|
equals?: LocationObjectEqualityInput | null
|
|
31764
31826
|
is?: LocationWhereInput | null
|
|
@@ -31841,6 +31903,11 @@ export namespace Prisma {
|
|
|
31841
31903
|
username?: SortOrder
|
|
31842
31904
|
}
|
|
31843
31905
|
|
|
31906
|
+
export type DribbbleDataOrderByInput = {
|
|
31907
|
+
username?: SortOrder
|
|
31908
|
+
profileURL?: SortOrder
|
|
31909
|
+
}
|
|
31910
|
+
|
|
31844
31911
|
export type LocationOrderByInput = {
|
|
31845
31912
|
country?: SortOrder
|
|
31846
31913
|
city?: SortOrder
|
|
@@ -31877,7 +31944,6 @@ export namespace Prisma {
|
|
|
31877
31944
|
aboutMe?: SortOrder
|
|
31878
31945
|
cvURL?: SortOrder
|
|
31879
31946
|
onboardingStage?: SortOrder
|
|
31880
|
-
dribbble?: SortOrder
|
|
31881
31947
|
yearsExperience?: SortOrder
|
|
31882
31948
|
websites?: SortOrder
|
|
31883
31949
|
}
|
|
@@ -31903,7 +31969,6 @@ export namespace Prisma {
|
|
|
31903
31969
|
aboutMe?: SortOrder
|
|
31904
31970
|
cvURL?: SortOrder
|
|
31905
31971
|
onboardingStage?: SortOrder
|
|
31906
|
-
dribbble?: SortOrder
|
|
31907
31972
|
yearsExperience?: SortOrder
|
|
31908
31973
|
}
|
|
31909
31974
|
|
|
@@ -31923,7 +31988,6 @@ export namespace Prisma {
|
|
|
31923
31988
|
aboutMe?: SortOrder
|
|
31924
31989
|
cvURL?: SortOrder
|
|
31925
31990
|
onboardingStage?: SortOrder
|
|
31926
|
-
dribbble?: SortOrder
|
|
31927
31991
|
yearsExperience?: SortOrder
|
|
31928
31992
|
}
|
|
31929
31993
|
|
|
@@ -33751,6 +33815,15 @@ export namespace Prisma {
|
|
|
33751
33815
|
username: string
|
|
33752
33816
|
}
|
|
33753
33817
|
|
|
33818
|
+
export type DribbbleDataNullableCreateEnvelopeInput = {
|
|
33819
|
+
set?: DribbbleDataCreateInput | null
|
|
33820
|
+
}
|
|
33821
|
+
|
|
33822
|
+
export type DribbbleDataCreateInput = {
|
|
33823
|
+
username: string
|
|
33824
|
+
profileURL?: string | null
|
|
33825
|
+
}
|
|
33826
|
+
|
|
33754
33827
|
export type UserCreatewebsitesInput = {
|
|
33755
33828
|
set: string[]
|
|
33756
33829
|
}
|
|
@@ -33952,6 +34025,12 @@ export namespace Prisma {
|
|
|
33952
34025
|
unset?: boolean
|
|
33953
34026
|
}
|
|
33954
34027
|
|
|
34028
|
+
export type DribbbleDataNullableUpdateEnvelopeInput = {
|
|
34029
|
+
set?: DribbbleDataCreateInput | null
|
|
34030
|
+
upsert?: DribbbleDataUpsertInput
|
|
34031
|
+
unset?: boolean
|
|
34032
|
+
}
|
|
34033
|
+
|
|
33955
34034
|
export type UserUpdatewebsitesInput = {
|
|
33956
34035
|
set?: string[]
|
|
33957
34036
|
push?: string | string[]
|
|
@@ -35258,6 +35337,14 @@ export namespace Prisma {
|
|
|
35258
35337
|
username?: StringFilter<"GitHubData"> | string
|
|
35259
35338
|
}
|
|
35260
35339
|
|
|
35340
|
+
export type DribbbleDataWhereInput = {
|
|
35341
|
+
AND?: DribbbleDataWhereInput | DribbbleDataWhereInput[]
|
|
35342
|
+
OR?: DribbbleDataWhereInput[]
|
|
35343
|
+
NOT?: DribbbleDataWhereInput | DribbbleDataWhereInput[]
|
|
35344
|
+
username?: StringFilter<"DribbbleData"> | string
|
|
35345
|
+
profileURL?: StringNullableFilter<"DribbbleData"> | string | null
|
|
35346
|
+
}
|
|
35347
|
+
|
|
35261
35348
|
export type LocationWhereInput = {
|
|
35262
35349
|
AND?: LocationWhereInput | LocationWhereInput[]
|
|
35263
35350
|
OR?: LocationWhereInput[]
|
|
@@ -36760,7 +36847,7 @@ export namespace Prisma {
|
|
|
36760
36847
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
36761
36848
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36762
36849
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36763
|
-
dribbble?:
|
|
36850
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
36764
36851
|
yearsExperience?: number | null
|
|
36765
36852
|
websites?: UserCreatewebsitesInput | string[]
|
|
36766
36853
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -36799,7 +36886,7 @@ export namespace Prisma {
|
|
|
36799
36886
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
36800
36887
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36801
36888
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36802
|
-
dribbble?:
|
|
36889
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
36803
36890
|
yearsExperience?: number | null
|
|
36804
36891
|
websites?: UserCreatewebsitesInput | string[]
|
|
36805
36892
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -36908,7 +36995,7 @@ export namespace Prisma {
|
|
|
36908
36995
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
36909
36996
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36910
36997
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36911
|
-
dribbble?:
|
|
36998
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
36912
36999
|
yearsExperience?: number | null
|
|
36913
37000
|
websites?: UserCreatewebsitesInput | string[]
|
|
36914
37001
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -36947,7 +37034,7 @@ export namespace Prisma {
|
|
|
36947
37034
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
36948
37035
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36949
37036
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36950
|
-
dribbble?:
|
|
37037
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
36951
37038
|
yearsExperience?: number | null
|
|
36952
37039
|
websites?: UserCreatewebsitesInput | string[]
|
|
36953
37040
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -37190,7 +37277,7 @@ export namespace Prisma {
|
|
|
37190
37277
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
37191
37278
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
37192
37279
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
37193
|
-
dribbble?:
|
|
37280
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
37194
37281
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
37195
37282
|
websites?: UserUpdatewebsitesInput | string[]
|
|
37196
37283
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -37228,7 +37315,7 @@ export namespace Prisma {
|
|
|
37228
37315
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
37229
37316
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
37230
37317
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
37231
|
-
dribbble?:
|
|
37318
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
37232
37319
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
37233
37320
|
websites?: UserUpdatewebsitesInput | string[]
|
|
37234
37321
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -37346,7 +37433,7 @@ export namespace Prisma {
|
|
|
37346
37433
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
37347
37434
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
37348
37435
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
37349
|
-
dribbble?:
|
|
37436
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
37350
37437
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
37351
37438
|
websites?: UserUpdatewebsitesInput | string[]
|
|
37352
37439
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -37384,7 +37471,7 @@ export namespace Prisma {
|
|
|
37384
37471
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
37385
37472
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
37386
37473
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
37387
|
-
dribbble?:
|
|
37474
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
37388
37475
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
37389
37476
|
websites?: UserUpdatewebsitesInput | string[]
|
|
37390
37477
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -37521,7 +37608,7 @@ export namespace Prisma {
|
|
|
37521
37608
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
37522
37609
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
37523
37610
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
37524
|
-
dribbble?:
|
|
37611
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
37525
37612
|
yearsExperience?: number | null
|
|
37526
37613
|
websites?: UserCreatewebsitesInput | string[]
|
|
37527
37614
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -37560,7 +37647,7 @@ export namespace Prisma {
|
|
|
37560
37647
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
37561
37648
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
37562
37649
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
37563
|
-
dribbble?:
|
|
37650
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
37564
37651
|
yearsExperience?: number | null
|
|
37565
37652
|
websites?: UserCreatewebsitesInput | string[]
|
|
37566
37653
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -37671,7 +37758,7 @@ export namespace Prisma {
|
|
|
37671
37758
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
37672
37759
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
37673
37760
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
37674
|
-
dribbble?:
|
|
37761
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
37675
37762
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
37676
37763
|
websites?: UserUpdatewebsitesInput | string[]
|
|
37677
37764
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -37709,7 +37796,7 @@ export namespace Prisma {
|
|
|
37709
37796
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
37710
37797
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
37711
37798
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
37712
|
-
dribbble?:
|
|
37799
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
37713
37800
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
37714
37801
|
websites?: UserUpdatewebsitesInput | string[]
|
|
37715
37802
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -37756,7 +37843,7 @@ export namespace Prisma {
|
|
|
37756
37843
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
37757
37844
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
37758
37845
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
37759
|
-
dribbble?:
|
|
37846
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
37760
37847
|
yearsExperience?: number | null
|
|
37761
37848
|
websites?: UserCreatewebsitesInput | string[]
|
|
37762
37849
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -37795,7 +37882,7 @@ export namespace Prisma {
|
|
|
37795
37882
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
37796
37883
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
37797
37884
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
37798
|
-
dribbble?:
|
|
37885
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
37799
37886
|
yearsExperience?: number | null
|
|
37800
37887
|
websites?: UserCreatewebsitesInput | string[]
|
|
37801
37888
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -37858,7 +37945,7 @@ export namespace Prisma {
|
|
|
37858
37945
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
37859
37946
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
37860
37947
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
37861
|
-
dribbble?:
|
|
37948
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
37862
37949
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
37863
37950
|
websites?: UserUpdatewebsitesInput | string[]
|
|
37864
37951
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -37896,7 +37983,7 @@ export namespace Prisma {
|
|
|
37896
37983
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
37897
37984
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
37898
37985
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
37899
|
-
dribbble?:
|
|
37986
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
37900
37987
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
37901
37988
|
websites?: UserUpdatewebsitesInput | string[]
|
|
37902
37989
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -37995,7 +38082,7 @@ export namespace Prisma {
|
|
|
37995
38082
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
37996
38083
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
37997
38084
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
37998
|
-
dribbble?:
|
|
38085
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
37999
38086
|
yearsExperience?: number | null
|
|
38000
38087
|
websites?: UserCreatewebsitesInput | string[]
|
|
38001
38088
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -38034,7 +38121,7 @@ export namespace Prisma {
|
|
|
38034
38121
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
38035
38122
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
38036
38123
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
38037
|
-
dribbble?:
|
|
38124
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
38038
38125
|
yearsExperience?: number | null
|
|
38039
38126
|
websites?: UserCreatewebsitesInput | string[]
|
|
38040
38127
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -38113,7 +38200,7 @@ export namespace Prisma {
|
|
|
38113
38200
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
38114
38201
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
38115
38202
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
38116
|
-
dribbble?:
|
|
38203
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
38117
38204
|
yearsExperience?: number | null
|
|
38118
38205
|
websites?: UserCreatewebsitesInput | string[]
|
|
38119
38206
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -38152,7 +38239,7 @@ export namespace Prisma {
|
|
|
38152
38239
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
38153
38240
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
38154
38241
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
38155
|
-
dribbble?:
|
|
38242
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
38156
38243
|
yearsExperience?: number | null
|
|
38157
38244
|
websites?: UserCreatewebsitesInput | string[]
|
|
38158
38245
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -38448,7 +38535,7 @@ export namespace Prisma {
|
|
|
38448
38535
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
38449
38536
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
38450
38537
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
38451
|
-
dribbble?:
|
|
38538
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
38452
38539
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
38453
38540
|
websites?: UserUpdatewebsitesInput | string[]
|
|
38454
38541
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -38486,7 +38573,7 @@ export namespace Prisma {
|
|
|
38486
38573
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
38487
38574
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
38488
38575
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
38489
|
-
dribbble?:
|
|
38576
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
38490
38577
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
38491
38578
|
websites?: UserUpdatewebsitesInput | string[]
|
|
38492
38579
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -38574,7 +38661,7 @@ export namespace Prisma {
|
|
|
38574
38661
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
38575
38662
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
38576
38663
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
38577
|
-
dribbble?:
|
|
38664
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
38578
38665
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
38579
38666
|
websites?: UserUpdatewebsitesInput | string[]
|
|
38580
38667
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -38612,7 +38699,7 @@ export namespace Prisma {
|
|
|
38612
38699
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
38613
38700
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
38614
38701
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
38615
|
-
dribbble?:
|
|
38702
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
38616
38703
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
38617
38704
|
websites?: UserUpdatewebsitesInput | string[]
|
|
38618
38705
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -38790,7 +38877,7 @@ export namespace Prisma {
|
|
|
38790
38877
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
38791
38878
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
38792
38879
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
38793
|
-
dribbble?:
|
|
38880
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
38794
38881
|
yearsExperience?: number | null
|
|
38795
38882
|
websites?: UserCreatewebsitesInput | string[]
|
|
38796
38883
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -38829,7 +38916,7 @@ export namespace Prisma {
|
|
|
38829
38916
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
38830
38917
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
38831
38918
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
38832
|
-
dribbble?:
|
|
38919
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
38833
38920
|
yearsExperience?: number | null
|
|
38834
38921
|
websites?: UserCreatewebsitesInput | string[]
|
|
38835
38922
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -38978,7 +39065,7 @@ export namespace Prisma {
|
|
|
38978
39065
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
38979
39066
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
38980
39067
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
38981
|
-
dribbble?:
|
|
39068
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
38982
39069
|
yearsExperience?: number | null
|
|
38983
39070
|
websites?: UserCreatewebsitesInput | string[]
|
|
38984
39071
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -39017,7 +39104,7 @@ export namespace Prisma {
|
|
|
39017
39104
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
39018
39105
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
39019
39106
|
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
39020
|
-
dribbble?:
|
|
39107
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
39021
39108
|
yearsExperience?: number | null
|
|
39022
39109
|
websites?: UserCreatewebsitesInput | string[]
|
|
39023
39110
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -39164,7 +39251,7 @@ export namespace Prisma {
|
|
|
39164
39251
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
39165
39252
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
39166
39253
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
39167
|
-
dribbble?:
|
|
39254
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
39168
39255
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
39169
39256
|
websites?: UserUpdatewebsitesInput | string[]
|
|
39170
39257
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -39202,7 +39289,7 @@ export namespace Prisma {
|
|
|
39202
39289
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
39203
39290
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
39204
39291
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
39205
|
-
dribbble?:
|
|
39292
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
39206
39293
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
39207
39294
|
websites?: UserUpdatewebsitesInput | string[]
|
|
39208
39295
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -39360,7 +39447,7 @@ export namespace Prisma {
|
|
|
39360
39447
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
39361
39448
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
39362
39449
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
39363
|
-
dribbble?:
|
|
39450
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
39364
39451
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
39365
39452
|
websites?: UserUpdatewebsitesInput | string[]
|
|
39366
39453
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -39398,7 +39485,7 @@ export namespace Prisma {
|
|
|
39398
39485
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
39399
39486
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
39400
39487
|
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
39401
|
-
dribbble?:
|
|
39488
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
39402
39489
|
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
39403
39490
|
websites?: UserUpdatewebsitesInput | string[]
|
|
39404
39491
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
@@ -40141,6 +40228,11 @@ export namespace Prisma {
|
|
|
40141
40228
|
update: GitHubDataUpdateInput
|
|
40142
40229
|
}
|
|
40143
40230
|
|
|
40231
|
+
export type DribbbleDataUpsertInput = {
|
|
40232
|
+
set: DribbbleDataCreateInput | null
|
|
40233
|
+
update: DribbbleDataUpdateInput
|
|
40234
|
+
}
|
|
40235
|
+
|
|
40144
40236
|
export type LocationUpsertInput = {
|
|
40145
40237
|
set: LocationCreateInput | null
|
|
40146
40238
|
update: LocationUpdateInput
|
|
@@ -42218,6 +42310,11 @@ export namespace Prisma {
|
|
|
42218
42310
|
username?: StringFieldUpdateOperationsInput | string
|
|
42219
42311
|
}
|
|
42220
42312
|
|
|
42313
|
+
export type DribbbleDataUpdateInput = {
|
|
42314
|
+
username?: StringFieldUpdateOperationsInput | string
|
|
42315
|
+
profileURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42316
|
+
}
|
|
42317
|
+
|
|
42221
42318
|
export type LocationUpdateInput = {
|
|
42222
42319
|
country?: StringFieldUpdateOperationsInput | string
|
|
42223
42320
|
city?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -44203,6 +44300,10 @@ export namespace Prisma {
|
|
|
44203
44300
|
* @deprecated Use GitHubDataDefaultArgs instead
|
|
44204
44301
|
*/
|
|
44205
44302
|
export type GitHubDataArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = GitHubDataDefaultArgs<ExtArgs>
|
|
44303
|
+
/**
|
|
44304
|
+
* @deprecated Use DribbbleDataDefaultArgs instead
|
|
44305
|
+
*/
|
|
44306
|
+
export type DribbbleDataArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = DribbbleDataDefaultArgs<ExtArgs>
|
|
44206
44307
|
/**
|
|
44207
44308
|
* @deprecated Use LocationDefaultArgs instead
|
|
44208
44309
|
*/
|