@a_team/prisma 3.8.1-win → 3.8.2-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 +7 -5
- package/dist/client/index-browser.js +3 -1
- package/dist/client/index.d.ts +276 -1
- package/dist/client/index.js +9 -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 +7 -0
- package/dist/client/wasm.js +3 -1
- package/package.json +2 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -328,6 +328,11 @@ export type AvailabilityObject = $Result.DefaultSelection<Prisma.$AvailabilityOb
|
|
|
328
328
|
*
|
|
329
329
|
*/
|
|
330
330
|
export type Availability = $Result.DefaultSelection<Prisma.$AvailabilityPayload>
|
|
331
|
+
/**
|
|
332
|
+
* Model GitHubData
|
|
333
|
+
*
|
|
334
|
+
*/
|
|
335
|
+
export type GitHubData = $Result.DefaultSelection<Prisma.$GitHubDataPayload>
|
|
331
336
|
/**
|
|
332
337
|
* Model Account
|
|
333
338
|
*
|
|
@@ -7279,6 +7284,59 @@ export namespace Prisma {
|
|
|
7279
7284
|
}
|
|
7280
7285
|
|
|
7281
7286
|
|
|
7287
|
+
/**
|
|
7288
|
+
* Model GitHubData
|
|
7289
|
+
*/
|
|
7290
|
+
|
|
7291
|
+
|
|
7292
|
+
|
|
7293
|
+
|
|
7294
|
+
|
|
7295
|
+
export type GitHubDataSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
7296
|
+
username?: boolean
|
|
7297
|
+
}, ExtArgs["result"]["gitHubData"]>
|
|
7298
|
+
|
|
7299
|
+
|
|
7300
|
+
export type GitHubDataSelectScalar = {
|
|
7301
|
+
username?: boolean
|
|
7302
|
+
}
|
|
7303
|
+
|
|
7304
|
+
|
|
7305
|
+
export type $GitHubDataPayload = {
|
|
7306
|
+
name: "GitHubData"
|
|
7307
|
+
objects: {}
|
|
7308
|
+
scalars: {
|
|
7309
|
+
username: string
|
|
7310
|
+
}
|
|
7311
|
+
composites: {}
|
|
7312
|
+
}
|
|
7313
|
+
|
|
7314
|
+
type GitHubDataGetPayload<S extends boolean | null | undefined | GitHubDataDefaultArgs> = $Result.GetResult<Prisma.$GitHubDataPayload, S>
|
|
7315
|
+
|
|
7316
|
+
|
|
7317
|
+
|
|
7318
|
+
|
|
7319
|
+
|
|
7320
|
+
/**
|
|
7321
|
+
* Fields of the GitHubData model
|
|
7322
|
+
*/
|
|
7323
|
+
interface GitHubDataFieldRefs {
|
|
7324
|
+
readonly username: FieldRef<"GitHubData", 'String'>
|
|
7325
|
+
}
|
|
7326
|
+
|
|
7327
|
+
|
|
7328
|
+
// Custom InputTypes
|
|
7329
|
+
/**
|
|
7330
|
+
* GitHubData without action
|
|
7331
|
+
*/
|
|
7332
|
+
export type GitHubDataDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7333
|
+
/**
|
|
7334
|
+
* Select specific fields to fetch from the GitHubData
|
|
7335
|
+
*/
|
|
7336
|
+
select?: GitHubDataSelect<ExtArgs> | null
|
|
7337
|
+
}
|
|
7338
|
+
|
|
7339
|
+
|
|
7282
7340
|
/**
|
|
7283
7341
|
* Model Account
|
|
7284
7342
|
*/
|
|
@@ -22093,10 +22151,12 @@ export namespace Prisma {
|
|
|
22093
22151
|
|
|
22094
22152
|
export type UserAvgAggregateOutputType = {
|
|
22095
22153
|
tokenVersion: number | null
|
|
22154
|
+
yearsExperience: number | null
|
|
22096
22155
|
}
|
|
22097
22156
|
|
|
22098
22157
|
export type UserSumAggregateOutputType = {
|
|
22099
22158
|
tokenVersion: number | null
|
|
22159
|
+
yearsExperience: number | null
|
|
22100
22160
|
}
|
|
22101
22161
|
|
|
22102
22162
|
export type UserMinAggregateOutputType = {
|
|
@@ -22115,6 +22175,8 @@ export namespace Prisma {
|
|
|
22115
22175
|
aboutMe: string | null
|
|
22116
22176
|
cvURL: string | null
|
|
22117
22177
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
22178
|
+
dribbble: string | null
|
|
22179
|
+
yearsExperience: number | null
|
|
22118
22180
|
}
|
|
22119
22181
|
|
|
22120
22182
|
export type UserMaxAggregateOutputType = {
|
|
@@ -22133,6 +22195,8 @@ export namespace Prisma {
|
|
|
22133
22195
|
aboutMe: string | null
|
|
22134
22196
|
cvURL: string | null
|
|
22135
22197
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
22198
|
+
dribbble: string | null
|
|
22199
|
+
yearsExperience: number | null
|
|
22136
22200
|
}
|
|
22137
22201
|
|
|
22138
22202
|
export type UserCountAggregateOutputType = {
|
|
@@ -22152,16 +22216,20 @@ export namespace Prisma {
|
|
|
22152
22216
|
aboutMe: number
|
|
22153
22217
|
cvURL: number
|
|
22154
22218
|
onboardingStage: number
|
|
22219
|
+
dribbble: number
|
|
22220
|
+
yearsExperience: number
|
|
22155
22221
|
_all: number
|
|
22156
22222
|
}
|
|
22157
22223
|
|
|
22158
22224
|
|
|
22159
22225
|
export type UserAvgAggregateInputType = {
|
|
22160
22226
|
tokenVersion?: true
|
|
22227
|
+
yearsExperience?: true
|
|
22161
22228
|
}
|
|
22162
22229
|
|
|
22163
22230
|
export type UserSumAggregateInputType = {
|
|
22164
22231
|
tokenVersion?: true
|
|
22232
|
+
yearsExperience?: true
|
|
22165
22233
|
}
|
|
22166
22234
|
|
|
22167
22235
|
export type UserMinAggregateInputType = {
|
|
@@ -22180,6 +22248,8 @@ export namespace Prisma {
|
|
|
22180
22248
|
aboutMe?: true
|
|
22181
22249
|
cvURL?: true
|
|
22182
22250
|
onboardingStage?: true
|
|
22251
|
+
dribbble?: true
|
|
22252
|
+
yearsExperience?: true
|
|
22183
22253
|
}
|
|
22184
22254
|
|
|
22185
22255
|
export type UserMaxAggregateInputType = {
|
|
@@ -22198,6 +22268,8 @@ export namespace Prisma {
|
|
|
22198
22268
|
aboutMe?: true
|
|
22199
22269
|
cvURL?: true
|
|
22200
22270
|
onboardingStage?: true
|
|
22271
|
+
dribbble?: true
|
|
22272
|
+
yearsExperience?: true
|
|
22201
22273
|
}
|
|
22202
22274
|
|
|
22203
22275
|
export type UserCountAggregateInputType = {
|
|
@@ -22217,6 +22289,8 @@ export namespace Prisma {
|
|
|
22217
22289
|
aboutMe?: true
|
|
22218
22290
|
cvURL?: true
|
|
22219
22291
|
onboardingStage?: true
|
|
22292
|
+
dribbble?: true
|
|
22293
|
+
yearsExperience?: true
|
|
22220
22294
|
_all?: true
|
|
22221
22295
|
}
|
|
22222
22296
|
|
|
@@ -22323,6 +22397,8 @@ export namespace Prisma {
|
|
|
22323
22397
|
aboutMe: string | null
|
|
22324
22398
|
cvURL: string | null
|
|
22325
22399
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
22400
|
+
dribbble: string | null
|
|
22401
|
+
yearsExperience: number | null
|
|
22326
22402
|
_count: UserCountAggregateOutputType | null
|
|
22327
22403
|
_avg: UserAvgAggregateOutputType | null
|
|
22328
22404
|
_sum: UserSumAggregateOutputType | null
|
|
@@ -22368,6 +22444,9 @@ export namespace Prisma {
|
|
|
22368
22444
|
onboardingStage?: boolean
|
|
22369
22445
|
missionPreferences?: boolean | MissionPreferencesDefaultArgs<ExtArgs>
|
|
22370
22446
|
availability?: boolean | AvailabilityDefaultArgs<ExtArgs>
|
|
22447
|
+
github?: boolean | GitHubDataDefaultArgs<ExtArgs>
|
|
22448
|
+
dribbble?: boolean
|
|
22449
|
+
yearsExperience?: boolean
|
|
22371
22450
|
createdMissionsModels?: boolean | User$createdMissionsModelsArgs<ExtArgs>
|
|
22372
22451
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
22373
22452
|
authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
|
|
@@ -22397,6 +22476,8 @@ export namespace Prisma {
|
|
|
22397
22476
|
aboutMe?: boolean
|
|
22398
22477
|
cvURL?: boolean
|
|
22399
22478
|
onboardingStage?: boolean
|
|
22479
|
+
dribbble?: boolean
|
|
22480
|
+
yearsExperience?: boolean
|
|
22400
22481
|
}
|
|
22401
22482
|
|
|
22402
22483
|
export type UserInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -22440,6 +22521,8 @@ export namespace Prisma {
|
|
|
22440
22521
|
aboutMe: string | null
|
|
22441
22522
|
cvURL: string | null
|
|
22442
22523
|
onboardingStage: $Enums.InternalOnboardingStage | null
|
|
22524
|
+
dribbble: string | null
|
|
22525
|
+
yearsExperience: number | null
|
|
22443
22526
|
}, ExtArgs["result"]["user"]>
|
|
22444
22527
|
composites: {
|
|
22445
22528
|
clientRegistration: Prisma.$ClientRegistrationPayload | null
|
|
@@ -22449,6 +22532,7 @@ export namespace Prisma {
|
|
|
22449
22532
|
talentProfile: Prisma.$TalentProfilePayload | null
|
|
22450
22533
|
missionPreferences: Prisma.$MissionPreferencesPayload | null
|
|
22451
22534
|
availability: Prisma.$AvailabilityPayload | null
|
|
22535
|
+
github: Prisma.$GitHubDataPayload | null
|
|
22452
22536
|
}
|
|
22453
22537
|
}
|
|
22454
22538
|
|
|
@@ -22864,6 +22948,8 @@ export namespace Prisma {
|
|
|
22864
22948
|
readonly aboutMe: FieldRef<"User", 'String'>
|
|
22865
22949
|
readonly cvURL: FieldRef<"User", 'String'>
|
|
22866
22950
|
readonly onboardingStage: FieldRef<"User", 'InternalOnboardingStage'>
|
|
22951
|
+
readonly dribbble: FieldRef<"User", 'String'>
|
|
22952
|
+
readonly yearsExperience: FieldRef<"User", 'Float'>
|
|
22867
22953
|
}
|
|
22868
22954
|
|
|
22869
22955
|
|
|
@@ -23656,7 +23742,9 @@ export namespace Prisma {
|
|
|
23656
23742
|
tokenVersion: 'tokenVersion',
|
|
23657
23743
|
aboutMe: 'aboutMe',
|
|
23658
23744
|
cvURL: 'cvURL',
|
|
23659
|
-
onboardingStage: 'onboardingStage'
|
|
23745
|
+
onboardingStage: 'onboardingStage',
|
|
23746
|
+
dribbble: 'dribbble',
|
|
23747
|
+
yearsExperience: 'yearsExperience'
|
|
23660
23748
|
};
|
|
23661
23749
|
|
|
23662
23750
|
export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum]
|
|
@@ -25637,6 +25725,9 @@ export namespace Prisma {
|
|
|
25637
25725
|
onboardingStage?: EnumInternalOnboardingStageNullableFilter<"User"> | $Enums.InternalOnboardingStage | null
|
|
25638
25726
|
missionPreferences?: XOR<MissionPreferencesNullableCompositeFilter, MissionPreferencesObjectEqualityInput> | null
|
|
25639
25727
|
availability?: XOR<AvailabilityNullableCompositeFilter, AvailabilityObjectEqualityInput> | null
|
|
25728
|
+
github?: XOR<GitHubDataNullableCompositeFilter, GitHubDataObjectEqualityInput> | null
|
|
25729
|
+
dribbble?: StringNullableFilter<"User"> | string | null
|
|
25730
|
+
yearsExperience?: FloatNullableFilter<"User"> | number | null
|
|
25640
25731
|
createdMissionsModels?: MissionListRelationFilter
|
|
25641
25732
|
ownedMissionsModels?: MissionListRelationFilter
|
|
25642
25733
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
@@ -25671,6 +25762,9 @@ export namespace Prisma {
|
|
|
25671
25762
|
onboardingStage?: SortOrder
|
|
25672
25763
|
missionPreferences?: MissionPreferencesOrderByInput
|
|
25673
25764
|
availability?: AvailabilityOrderByInput
|
|
25765
|
+
github?: GitHubDataOrderByInput
|
|
25766
|
+
dribbble?: SortOrder
|
|
25767
|
+
yearsExperience?: SortOrder
|
|
25674
25768
|
createdMissionsModels?: MissionOrderByRelationAggregateInput
|
|
25675
25769
|
ownedMissionsModels?: MissionOrderByRelationAggregateInput
|
|
25676
25770
|
authoredMissionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
@@ -25708,6 +25802,9 @@ export namespace Prisma {
|
|
|
25708
25802
|
onboardingStage?: EnumInternalOnboardingStageNullableFilter<"User"> | $Enums.InternalOnboardingStage | null
|
|
25709
25803
|
missionPreferences?: XOR<MissionPreferencesNullableCompositeFilter, MissionPreferencesObjectEqualityInput> | null
|
|
25710
25804
|
availability?: XOR<AvailabilityNullableCompositeFilter, AvailabilityObjectEqualityInput> | null
|
|
25805
|
+
github?: XOR<GitHubDataNullableCompositeFilter, GitHubDataObjectEqualityInput> | null
|
|
25806
|
+
dribbble?: StringNullableFilter<"User"> | string | null
|
|
25807
|
+
yearsExperience?: FloatNullableFilter<"User"> | number | null
|
|
25711
25808
|
createdMissionsModels?: MissionListRelationFilter
|
|
25712
25809
|
ownedMissionsModels?: MissionListRelationFilter
|
|
25713
25810
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
@@ -25735,6 +25832,8 @@ export namespace Prisma {
|
|
|
25735
25832
|
aboutMe?: SortOrder
|
|
25736
25833
|
cvURL?: SortOrder
|
|
25737
25834
|
onboardingStage?: SortOrder
|
|
25835
|
+
dribbble?: SortOrder
|
|
25836
|
+
yearsExperience?: SortOrder
|
|
25738
25837
|
_count?: UserCountOrderByAggregateInput
|
|
25739
25838
|
_avg?: UserAvgOrderByAggregateInput
|
|
25740
25839
|
_max?: UserMaxOrderByAggregateInput
|
|
@@ -25762,6 +25861,8 @@ export namespace Prisma {
|
|
|
25762
25861
|
aboutMe?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
25763
25862
|
cvURL?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
25764
25863
|
onboardingStage?: EnumInternalOnboardingStageNullableWithAggregatesFilter<"User"> | $Enums.InternalOnboardingStage | null
|
|
25864
|
+
dribbble?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
25865
|
+
yearsExperience?: FloatNullableWithAggregatesFilter<"User"> | number | null
|
|
25765
25866
|
}
|
|
25766
25867
|
|
|
25767
25868
|
export type AccountCreateInput = {
|
|
@@ -27588,6 +27689,9 @@ export namespace Prisma {
|
|
|
27588
27689
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
27589
27690
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27590
27691
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
27692
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27693
|
+
dribbble?: string | null
|
|
27694
|
+
yearsExperience?: number | null
|
|
27591
27695
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
27592
27696
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
27593
27697
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -27622,6 +27726,9 @@ export namespace Prisma {
|
|
|
27622
27726
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
27623
27727
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27624
27728
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
27729
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27730
|
+
dribbble?: string | null
|
|
27731
|
+
yearsExperience?: number | null
|
|
27625
27732
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
27626
27733
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
27627
27734
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -27655,6 +27762,9 @@ export namespace Prisma {
|
|
|
27655
27762
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
27656
27763
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27657
27764
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
27765
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27766
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27767
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
27658
27768
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
27659
27769
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
27660
27770
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -27688,6 +27798,9 @@ export namespace Prisma {
|
|
|
27688
27798
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
27689
27799
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27690
27800
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
27801
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27802
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27803
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
27691
27804
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
27692
27805
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
27693
27806
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -27722,6 +27835,9 @@ export namespace Prisma {
|
|
|
27722
27835
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
27723
27836
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27724
27837
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
27838
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27839
|
+
dribbble?: string | null
|
|
27840
|
+
yearsExperience?: number | null
|
|
27725
27841
|
}
|
|
27726
27842
|
|
|
27727
27843
|
export type UserUpdateManyMutationInput = {
|
|
@@ -27747,6 +27863,9 @@ export namespace Prisma {
|
|
|
27747
27863
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
27748
27864
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27749
27865
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
27866
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27867
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27868
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
27750
27869
|
}
|
|
27751
27870
|
|
|
27752
27871
|
export type UserUncheckedUpdateManyInput = {
|
|
@@ -27772,6 +27891,9 @@ export namespace Prisma {
|
|
|
27772
27891
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
27773
27892
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
27774
27893
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
27894
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
27895
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27896
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
27775
27897
|
}
|
|
27776
27898
|
|
|
27777
27899
|
export type StringFilter<$PrismaModel = never> = {
|
|
@@ -29769,6 +29891,17 @@ export namespace Prisma {
|
|
|
29769
29891
|
availability?: AvailabilityObjectObjectEqualityInput | null
|
|
29770
29892
|
}
|
|
29771
29893
|
|
|
29894
|
+
export type GitHubDataNullableCompositeFilter = {
|
|
29895
|
+
equals?: GitHubDataObjectEqualityInput | null
|
|
29896
|
+
is?: GitHubDataWhereInput | null
|
|
29897
|
+
isNot?: GitHubDataWhereInput | null
|
|
29898
|
+
isSet?: boolean
|
|
29899
|
+
}
|
|
29900
|
+
|
|
29901
|
+
export type GitHubDataObjectEqualityInput = {
|
|
29902
|
+
username: string
|
|
29903
|
+
}
|
|
29904
|
+
|
|
29772
29905
|
export type MissionPrefillListRelationFilter = {
|
|
29773
29906
|
every?: MissionPrefillWhereInput
|
|
29774
29907
|
some?: MissionPrefillWhereInput
|
|
@@ -29822,6 +29955,10 @@ export namespace Prisma {
|
|
|
29822
29955
|
availability?: AvailabilityObjectOrderByInput
|
|
29823
29956
|
}
|
|
29824
29957
|
|
|
29958
|
+
export type GitHubDataOrderByInput = {
|
|
29959
|
+
username?: SortOrder
|
|
29960
|
+
}
|
|
29961
|
+
|
|
29825
29962
|
export type MissionPrefillOrderByRelationAggregateInput = {
|
|
29826
29963
|
_count?: SortOrder
|
|
29827
29964
|
}
|
|
@@ -29847,10 +29984,13 @@ export namespace Prisma {
|
|
|
29847
29984
|
aboutMe?: SortOrder
|
|
29848
29985
|
cvURL?: SortOrder
|
|
29849
29986
|
onboardingStage?: SortOrder
|
|
29987
|
+
dribbble?: SortOrder
|
|
29988
|
+
yearsExperience?: SortOrder
|
|
29850
29989
|
}
|
|
29851
29990
|
|
|
29852
29991
|
export type UserAvgOrderByAggregateInput = {
|
|
29853
29992
|
tokenVersion?: SortOrder
|
|
29993
|
+
yearsExperience?: SortOrder
|
|
29854
29994
|
}
|
|
29855
29995
|
|
|
29856
29996
|
export type UserMaxOrderByAggregateInput = {
|
|
@@ -29869,6 +30009,8 @@ export namespace Prisma {
|
|
|
29869
30009
|
aboutMe?: SortOrder
|
|
29870
30010
|
cvURL?: SortOrder
|
|
29871
30011
|
onboardingStage?: SortOrder
|
|
30012
|
+
dribbble?: SortOrder
|
|
30013
|
+
yearsExperience?: SortOrder
|
|
29872
30014
|
}
|
|
29873
30015
|
|
|
29874
30016
|
export type UserMinOrderByAggregateInput = {
|
|
@@ -29887,10 +30029,13 @@ export namespace Prisma {
|
|
|
29887
30029
|
aboutMe?: SortOrder
|
|
29888
30030
|
cvURL?: SortOrder
|
|
29889
30031
|
onboardingStage?: SortOrder
|
|
30032
|
+
dribbble?: SortOrder
|
|
30033
|
+
yearsExperience?: SortOrder
|
|
29890
30034
|
}
|
|
29891
30035
|
|
|
29892
30036
|
export type UserSumOrderByAggregateInput = {
|
|
29893
30037
|
tokenVersion?: SortOrder
|
|
30038
|
+
yearsExperience?: SortOrder
|
|
29894
30039
|
}
|
|
29895
30040
|
|
|
29896
30041
|
export type BoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -31527,6 +31672,14 @@ export namespace Prisma {
|
|
|
31527
31672
|
availability?: AvailabilityObjectCreateInput | null
|
|
31528
31673
|
}
|
|
31529
31674
|
|
|
31675
|
+
export type GitHubDataNullableCreateEnvelopeInput = {
|
|
31676
|
+
set?: GitHubDataCreateInput | null
|
|
31677
|
+
}
|
|
31678
|
+
|
|
31679
|
+
export type GitHubDataCreateInput = {
|
|
31680
|
+
username: string
|
|
31681
|
+
}
|
|
31682
|
+
|
|
31530
31683
|
export type MissionCreateNestedManyWithoutCreatorModelInput = {
|
|
31531
31684
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
31532
31685
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -31699,6 +31852,12 @@ export namespace Prisma {
|
|
|
31699
31852
|
unset?: boolean
|
|
31700
31853
|
}
|
|
31701
31854
|
|
|
31855
|
+
export type GitHubDataNullableUpdateEnvelopeInput = {
|
|
31856
|
+
set?: GitHubDataCreateInput | null
|
|
31857
|
+
upsert?: GitHubDataUpsertInput
|
|
31858
|
+
unset?: boolean
|
|
31859
|
+
}
|
|
31860
|
+
|
|
31702
31861
|
export type MissionUpdateManyWithoutCreatorModelNestedInput = {
|
|
31703
31862
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
31704
31863
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -32949,6 +33108,13 @@ export namespace Prisma {
|
|
|
32949
33108
|
weeklyHoursAvailable?: number | null
|
|
32950
33109
|
}
|
|
32951
33110
|
|
|
33111
|
+
export type GitHubDataWhereInput = {
|
|
33112
|
+
AND?: GitHubDataWhereInput | GitHubDataWhereInput[]
|
|
33113
|
+
OR?: GitHubDataWhereInput[]
|
|
33114
|
+
NOT?: GitHubDataWhereInput | GitHubDataWhereInput[]
|
|
33115
|
+
username?: StringFilter<"GitHubData"> | string
|
|
33116
|
+
}
|
|
33117
|
+
|
|
32952
33118
|
export type UserTalentSkillAssignmentDataOrderByInput = {
|
|
32953
33119
|
mainTalentSkills?: UserTalentSkillAssignmentOrderByCompositeAggregateInput
|
|
32954
33120
|
additionalTalentSkills?: UserTalentSkillAssignmentOrderByCompositeAggregateInput
|
|
@@ -34176,6 +34342,9 @@ export namespace Prisma {
|
|
|
34176
34342
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
34177
34343
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
34178
34344
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
34345
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34346
|
+
dribbble?: string | null
|
|
34347
|
+
yearsExperience?: number | null
|
|
34179
34348
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
34180
34349
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
34181
34350
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -34209,6 +34378,9 @@ export namespace Prisma {
|
|
|
34209
34378
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
34210
34379
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
34211
34380
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
34381
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34382
|
+
dribbble?: string | null
|
|
34383
|
+
yearsExperience?: number | null
|
|
34212
34384
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
34213
34385
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
34214
34386
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -34312,6 +34484,9 @@ export namespace Prisma {
|
|
|
34312
34484
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
34313
34485
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
34314
34486
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
34487
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34488
|
+
dribbble?: string | null
|
|
34489
|
+
yearsExperience?: number | null
|
|
34315
34490
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
34316
34491
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
34317
34492
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -34345,6 +34520,9 @@ export namespace Prisma {
|
|
|
34345
34520
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
34346
34521
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
34347
34522
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
34523
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34524
|
+
dribbble?: string | null
|
|
34525
|
+
yearsExperience?: number | null
|
|
34348
34526
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
34349
34527
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
34350
34528
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -34580,6 +34758,9 @@ export namespace Prisma {
|
|
|
34580
34758
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
34581
34759
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
34582
34760
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
34761
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34762
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34763
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
34583
34764
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
34584
34765
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
34585
34766
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -34612,6 +34793,9 @@ export namespace Prisma {
|
|
|
34612
34793
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
34613
34794
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
34614
34795
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
34796
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34797
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34798
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
34615
34799
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
34616
34800
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
34617
34801
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -34724,6 +34908,9 @@ export namespace Prisma {
|
|
|
34724
34908
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
34725
34909
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
34726
34910
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
34911
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34912
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34913
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
34727
34914
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
34728
34915
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
34729
34916
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -34756,6 +34943,9 @@ export namespace Prisma {
|
|
|
34756
34943
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
34757
34944
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
34758
34945
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
34946
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
34947
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34948
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
34759
34949
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
34760
34950
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
34761
34951
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -34887,6 +35077,9 @@ export namespace Prisma {
|
|
|
34887
35077
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
34888
35078
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
34889
35079
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
35080
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35081
|
+
dribbble?: string | null
|
|
35082
|
+
yearsExperience?: number | null
|
|
34890
35083
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
34891
35084
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
34892
35085
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -34920,6 +35113,9 @@ export namespace Prisma {
|
|
|
34920
35113
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
34921
35114
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
34922
35115
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
35116
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35117
|
+
dribbble?: string | null
|
|
35118
|
+
yearsExperience?: number | null
|
|
34923
35119
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
34924
35120
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
34925
35121
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -35025,6 +35221,9 @@ export namespace Prisma {
|
|
|
35025
35221
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
35026
35222
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35027
35223
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
35224
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35225
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35226
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35028
35227
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
35029
35228
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
35030
35229
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -35057,6 +35256,9 @@ export namespace Prisma {
|
|
|
35057
35256
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
35058
35257
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35059
35258
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
35259
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35260
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35261
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35060
35262
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
35061
35263
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
35062
35264
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -35098,6 +35300,9 @@ export namespace Prisma {
|
|
|
35098
35300
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
35099
35301
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35100
35302
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
35303
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35304
|
+
dribbble?: string | null
|
|
35305
|
+
yearsExperience?: number | null
|
|
35101
35306
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
35102
35307
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
35103
35308
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -35131,6 +35336,9 @@ export namespace Prisma {
|
|
|
35131
35336
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
35132
35337
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35133
35338
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
35339
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35340
|
+
dribbble?: string | null
|
|
35341
|
+
yearsExperience?: number | null
|
|
35134
35342
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
35135
35343
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
35136
35344
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -35188,6 +35396,9 @@ export namespace Prisma {
|
|
|
35188
35396
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
35189
35397
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35190
35398
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
35399
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35400
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35401
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35191
35402
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
35192
35403
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
35193
35404
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -35220,6 +35431,9 @@ export namespace Prisma {
|
|
|
35220
35431
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
35221
35432
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35222
35433
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
35434
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35435
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35436
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35223
35437
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
35224
35438
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
35225
35439
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -35313,6 +35527,9 @@ export namespace Prisma {
|
|
|
35313
35527
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
35314
35528
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35315
35529
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
35530
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35531
|
+
dribbble?: string | null
|
|
35532
|
+
yearsExperience?: number | null
|
|
35316
35533
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
35317
35534
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
35318
35535
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -35346,6 +35563,9 @@ export namespace Prisma {
|
|
|
35346
35563
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
35347
35564
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35348
35565
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
35566
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35567
|
+
dribbble?: string | null
|
|
35568
|
+
yearsExperience?: number | null
|
|
35349
35569
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
35350
35570
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
35351
35571
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -35417,6 +35637,9 @@ export namespace Prisma {
|
|
|
35417
35637
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
35418
35638
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35419
35639
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
35640
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35641
|
+
dribbble?: string | null
|
|
35642
|
+
yearsExperience?: number | null
|
|
35420
35643
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
35421
35644
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
35422
35645
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -35450,6 +35673,9 @@ export namespace Prisma {
|
|
|
35450
35673
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
35451
35674
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35452
35675
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
35676
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35677
|
+
dribbble?: string | null
|
|
35678
|
+
yearsExperience?: number | null
|
|
35453
35679
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
35454
35680
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
35455
35681
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -35738,6 +35964,9 @@ export namespace Prisma {
|
|
|
35738
35964
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
35739
35965
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35740
35966
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
35967
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
35968
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
35969
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35741
35970
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
35742
35971
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
35743
35972
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -35770,6 +35999,9 @@ export namespace Prisma {
|
|
|
35770
35999
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
35771
36000
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35772
36001
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36002
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36003
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36004
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35773
36005
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
35774
36006
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
35775
36007
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -35850,6 +36082,9 @@ export namespace Prisma {
|
|
|
35850
36082
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
35851
36083
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35852
36084
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36085
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36086
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36087
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35853
36088
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
35854
36089
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
35855
36090
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -35882,6 +36117,9 @@ export namespace Prisma {
|
|
|
35882
36117
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
35883
36118
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
35884
36119
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36120
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36121
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36122
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
35885
36123
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
35886
36124
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
35887
36125
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -36054,6 +36292,9 @@ export namespace Prisma {
|
|
|
36054
36292
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
36055
36293
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
36056
36294
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36295
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36296
|
+
dribbble?: string | null
|
|
36297
|
+
yearsExperience?: number | null
|
|
36057
36298
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
36058
36299
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
36059
36300
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -36087,6 +36328,9 @@ export namespace Prisma {
|
|
|
36087
36328
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
36088
36329
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
36089
36330
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36331
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36332
|
+
dribbble?: string | null
|
|
36333
|
+
yearsExperience?: number | null
|
|
36090
36334
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
36091
36335
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
36092
36336
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -36230,6 +36474,9 @@ export namespace Prisma {
|
|
|
36230
36474
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
36231
36475
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
36232
36476
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36477
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36478
|
+
dribbble?: string | null
|
|
36479
|
+
yearsExperience?: number | null
|
|
36233
36480
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
36234
36481
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
36235
36482
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -36263,6 +36510,9 @@ export namespace Prisma {
|
|
|
36263
36510
|
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
36264
36511
|
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
36265
36512
|
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36513
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36514
|
+
dribbble?: string | null
|
|
36515
|
+
yearsExperience?: number | null
|
|
36266
36516
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
36267
36517
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
36268
36518
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -36395,6 +36645,9 @@ export namespace Prisma {
|
|
|
36395
36645
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
36396
36646
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
36397
36647
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36648
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36649
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36650
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36398
36651
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
36399
36652
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
36400
36653
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -36427,6 +36680,9 @@ export namespace Prisma {
|
|
|
36427
36680
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
36428
36681
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
36429
36682
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36683
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36684
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36685
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36430
36686
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
36431
36687
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
36432
36688
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -36579,6 +36835,9 @@ export namespace Prisma {
|
|
|
36579
36835
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
36580
36836
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
36581
36837
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36838
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36839
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36840
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36582
36841
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
36583
36842
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
36584
36843
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -36611,6 +36870,9 @@ export namespace Prisma {
|
|
|
36611
36870
|
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
36612
36871
|
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
36613
36872
|
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
36873
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
36874
|
+
dribbble?: NullableStringFieldUpdateOperationsInput | string | null
|
|
36875
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
36614
36876
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
36615
36877
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
36616
36878
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -37340,6 +37602,11 @@ export namespace Prisma {
|
|
|
37340
37602
|
update: AvailabilityUpdateInput
|
|
37341
37603
|
}
|
|
37342
37604
|
|
|
37605
|
+
export type GitHubDataUpsertInput = {
|
|
37606
|
+
set: GitHubDataCreateInput | null
|
|
37607
|
+
update: GitHubDataUpdateInput
|
|
37608
|
+
}
|
|
37609
|
+
|
|
37343
37610
|
export type MissionUpsertWithWhereUniqueWithoutCreatorModelInput = {
|
|
37344
37611
|
where: MissionWhereUniqueInput
|
|
37345
37612
|
update: XOR<MissionUpdateWithoutCreatorModelInput, MissionUncheckedUpdateWithoutCreatorModelInput>
|
|
@@ -39280,6 +39547,10 @@ export namespace Prisma {
|
|
|
39280
39547
|
availability?: XOR<AvailabilityObjectNullableUpdateEnvelopeInput, AvailabilityObjectCreateInput> | null
|
|
39281
39548
|
}
|
|
39282
39549
|
|
|
39550
|
+
export type GitHubDataUpdateInput = {
|
|
39551
|
+
username?: StringFieldUpdateOperationsInput | string
|
|
39552
|
+
}
|
|
39553
|
+
|
|
39283
39554
|
export type MissionUpdateWithoutCreatorModelInput = {
|
|
39284
39555
|
applyStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
39285
39556
|
attachedLinks?: XOR<MissionsAttachedLinkListUpdateEnvelopeInput, MissionsAttachedLinkCreateInput> | MissionsAttachedLinkCreateInput[]
|
|
@@ -41213,6 +41484,10 @@ export namespace Prisma {
|
|
|
41213
41484
|
* @deprecated Use AvailabilityDefaultArgs instead
|
|
41214
41485
|
*/
|
|
41215
41486
|
export type AvailabilityArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = AvailabilityDefaultArgs<ExtArgs>
|
|
41487
|
+
/**
|
|
41488
|
+
* @deprecated Use GitHubDataDefaultArgs instead
|
|
41489
|
+
*/
|
|
41490
|
+
export type GitHubDataArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = GitHubDataDefaultArgs<ExtArgs>
|
|
41216
41491
|
/**
|
|
41217
41492
|
* @deprecated Use AccountDefaultArgs instead
|
|
41218
41493
|
*/
|