@a_team/prisma 3.2.6-win → 3.2.7-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 +8 -6
- package/dist/client/index-browser.js +4 -2
- package/dist/client/index.d.ts +94 -2
- package/dist/client/index.js +10 -8
- 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 +2 -0
- package/dist/client/wasm.js +4 -2
- package/package.json +2 -2
|
@@ -288,7 +288,8 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
288
288
|
status: 'status',
|
|
289
289
|
createdAt: 'createdAt',
|
|
290
290
|
titles: 'titles',
|
|
291
|
-
scrubbed: 'scrubbed'
|
|
291
|
+
scrubbed: 'scrubbed',
|
|
292
|
+
tokenVersion: 'tokenVersion'
|
|
292
293
|
};
|
|
293
294
|
|
|
294
295
|
exports.Prisma.SortOrder = {
|
|
@@ -310,7 +311,8 @@ exports.ContractType = exports.$Enums.ContractType = {
|
|
|
310
311
|
MissionAgreement: 'MissionAgreement',
|
|
311
312
|
ClientContract: 'ClientContract',
|
|
312
313
|
ServiceOrder: 'ServiceOrder',
|
|
313
|
-
ScopeOfWork: 'ScopeOfWork'
|
|
314
|
+
ScopeOfWork: 'ScopeOfWork',
|
|
315
|
+
MasterServicesAgreement: 'MasterServicesAgreement'
|
|
314
316
|
};
|
|
315
317
|
|
|
316
318
|
exports.ContractSource = exports.$Enums.ContractSource = {
|
package/dist/client/index.d.ts
CHANGED
|
@@ -246,7 +246,8 @@ export const ContractType: {
|
|
|
246
246
|
MissionAgreement: 'MissionAgreement',
|
|
247
247
|
ClientContract: 'ClientContract',
|
|
248
248
|
ServiceOrder: 'ServiceOrder',
|
|
249
|
-
ScopeOfWork: 'ScopeOfWork'
|
|
249
|
+
ScopeOfWork: 'ScopeOfWork',
|
|
250
|
+
MasterServicesAgreement: 'MasterServicesAgreement'
|
|
250
251
|
};
|
|
251
252
|
|
|
252
253
|
export type ContractType = (typeof ContractType)[keyof typeof ContractType]
|
|
@@ -15884,10 +15885,20 @@ export namespace Prisma {
|
|
|
15884
15885
|
|
|
15885
15886
|
export type AggregateUser = {
|
|
15886
15887
|
_count: UserCountAggregateOutputType | null
|
|
15888
|
+
_avg: UserAvgAggregateOutputType | null
|
|
15889
|
+
_sum: UserSumAggregateOutputType | null
|
|
15887
15890
|
_min: UserMinAggregateOutputType | null
|
|
15888
15891
|
_max: UserMaxAggregateOutputType | null
|
|
15889
15892
|
}
|
|
15890
15893
|
|
|
15894
|
+
export type UserAvgAggregateOutputType = {
|
|
15895
|
+
tokenVersion: number | null
|
|
15896
|
+
}
|
|
15897
|
+
|
|
15898
|
+
export type UserSumAggregateOutputType = {
|
|
15899
|
+
tokenVersion: number | null
|
|
15900
|
+
}
|
|
15901
|
+
|
|
15891
15902
|
export type UserMinAggregateOutputType = {
|
|
15892
15903
|
id: string | null
|
|
15893
15904
|
firstName: string | null
|
|
@@ -15900,6 +15911,7 @@ export namespace Prisma {
|
|
|
15900
15911
|
status: string | null
|
|
15901
15912
|
createdAt: Date | null
|
|
15902
15913
|
scrubbed: string | null
|
|
15914
|
+
tokenVersion: number | null
|
|
15903
15915
|
}
|
|
15904
15916
|
|
|
15905
15917
|
export type UserMaxAggregateOutputType = {
|
|
@@ -15914,6 +15926,7 @@ export namespace Prisma {
|
|
|
15914
15926
|
status: string | null
|
|
15915
15927
|
createdAt: Date | null
|
|
15916
15928
|
scrubbed: string | null
|
|
15929
|
+
tokenVersion: number | null
|
|
15917
15930
|
}
|
|
15918
15931
|
|
|
15919
15932
|
export type UserCountAggregateOutputType = {
|
|
@@ -15929,10 +15942,19 @@ export namespace Prisma {
|
|
|
15929
15942
|
createdAt: number
|
|
15930
15943
|
titles: number
|
|
15931
15944
|
scrubbed: number
|
|
15945
|
+
tokenVersion: number
|
|
15932
15946
|
_all: number
|
|
15933
15947
|
}
|
|
15934
15948
|
|
|
15935
15949
|
|
|
15950
|
+
export type UserAvgAggregateInputType = {
|
|
15951
|
+
tokenVersion?: true
|
|
15952
|
+
}
|
|
15953
|
+
|
|
15954
|
+
export type UserSumAggregateInputType = {
|
|
15955
|
+
tokenVersion?: true
|
|
15956
|
+
}
|
|
15957
|
+
|
|
15936
15958
|
export type UserMinAggregateInputType = {
|
|
15937
15959
|
id?: true
|
|
15938
15960
|
firstName?: true
|
|
@@ -15945,6 +15967,7 @@ export namespace Prisma {
|
|
|
15945
15967
|
status?: true
|
|
15946
15968
|
createdAt?: true
|
|
15947
15969
|
scrubbed?: true
|
|
15970
|
+
tokenVersion?: true
|
|
15948
15971
|
}
|
|
15949
15972
|
|
|
15950
15973
|
export type UserMaxAggregateInputType = {
|
|
@@ -15959,6 +15982,7 @@ export namespace Prisma {
|
|
|
15959
15982
|
status?: true
|
|
15960
15983
|
createdAt?: true
|
|
15961
15984
|
scrubbed?: true
|
|
15985
|
+
tokenVersion?: true
|
|
15962
15986
|
}
|
|
15963
15987
|
|
|
15964
15988
|
export type UserCountAggregateInputType = {
|
|
@@ -15974,6 +15998,7 @@ export namespace Prisma {
|
|
|
15974
15998
|
createdAt?: true
|
|
15975
15999
|
titles?: true
|
|
15976
16000
|
scrubbed?: true
|
|
16001
|
+
tokenVersion?: true
|
|
15977
16002
|
_all?: true
|
|
15978
16003
|
}
|
|
15979
16004
|
|
|
@@ -16012,6 +16037,18 @@ export namespace Prisma {
|
|
|
16012
16037
|
* Count returned Users
|
|
16013
16038
|
**/
|
|
16014
16039
|
_count?: true | UserCountAggregateInputType
|
|
16040
|
+
/**
|
|
16041
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
16042
|
+
*
|
|
16043
|
+
* Select which fields to average
|
|
16044
|
+
**/
|
|
16045
|
+
_avg?: UserAvgAggregateInputType
|
|
16046
|
+
/**
|
|
16047
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
16048
|
+
*
|
|
16049
|
+
* Select which fields to sum
|
|
16050
|
+
**/
|
|
16051
|
+
_sum?: UserSumAggregateInputType
|
|
16015
16052
|
/**
|
|
16016
16053
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
16017
16054
|
*
|
|
@@ -16045,6 +16082,8 @@ export namespace Prisma {
|
|
|
16045
16082
|
take?: number
|
|
16046
16083
|
skip?: number
|
|
16047
16084
|
_count?: UserCountAggregateInputType | true
|
|
16085
|
+
_avg?: UserAvgAggregateInputType
|
|
16086
|
+
_sum?: UserSumAggregateInputType
|
|
16048
16087
|
_min?: UserMinAggregateInputType
|
|
16049
16088
|
_max?: UserMaxAggregateInputType
|
|
16050
16089
|
}
|
|
@@ -16062,7 +16101,10 @@ export namespace Prisma {
|
|
|
16062
16101
|
createdAt: Date
|
|
16063
16102
|
titles: string[]
|
|
16064
16103
|
scrubbed: string | null
|
|
16104
|
+
tokenVersion: number
|
|
16065
16105
|
_count: UserCountAggregateOutputType | null
|
|
16106
|
+
_avg: UserAvgAggregateOutputType | null
|
|
16107
|
+
_sum: UserSumAggregateOutputType | null
|
|
16066
16108
|
_min: UserMinAggregateOutputType | null
|
|
16067
16109
|
_max: UserMaxAggregateOutputType | null
|
|
16068
16110
|
}
|
|
@@ -16094,6 +16136,7 @@ export namespace Prisma {
|
|
|
16094
16136
|
createdAt?: boolean
|
|
16095
16137
|
titles?: boolean
|
|
16096
16138
|
scrubbed?: boolean
|
|
16139
|
+
tokenVersion?: boolean
|
|
16097
16140
|
clientRegistration?: boolean | ClientRegistrationDefaultArgs<ExtArgs>
|
|
16098
16141
|
createdMissionsModels?: boolean | User$createdMissionsModelsArgs<ExtArgs>
|
|
16099
16142
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
@@ -16117,6 +16160,7 @@ export namespace Prisma {
|
|
|
16117
16160
|
createdAt?: boolean
|
|
16118
16161
|
titles?: boolean
|
|
16119
16162
|
scrubbed?: boolean
|
|
16163
|
+
tokenVersion?: boolean
|
|
16120
16164
|
}
|
|
16121
16165
|
|
|
16122
16166
|
export type UserInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -16150,6 +16194,7 @@ export namespace Prisma {
|
|
|
16150
16194
|
createdAt: Date
|
|
16151
16195
|
titles: string[]
|
|
16152
16196
|
scrubbed: string | null
|
|
16197
|
+
tokenVersion: number
|
|
16153
16198
|
}, ExtArgs["result"]["user"]>
|
|
16154
16199
|
composites: {
|
|
16155
16200
|
clientRegistration: Prisma.$ClientRegistrationPayload | null
|
|
@@ -16561,6 +16606,7 @@ export namespace Prisma {
|
|
|
16561
16606
|
readonly createdAt: FieldRef<"User", 'DateTime'>
|
|
16562
16607
|
readonly titles: FieldRef<"User", 'String[]'>
|
|
16563
16608
|
readonly scrubbed: FieldRef<"User", 'String'>
|
|
16609
|
+
readonly tokenVersion: FieldRef<"User", 'Int'>
|
|
16564
16610
|
}
|
|
16565
16611
|
|
|
16566
16612
|
|
|
@@ -17214,7 +17260,8 @@ export namespace Prisma {
|
|
|
17214
17260
|
status: 'status',
|
|
17215
17261
|
createdAt: 'createdAt',
|
|
17216
17262
|
titles: 'titles',
|
|
17217
|
-
scrubbed: 'scrubbed'
|
|
17263
|
+
scrubbed: 'scrubbed',
|
|
17264
|
+
tokenVersion: 'tokenVersion'
|
|
17218
17265
|
};
|
|
17219
17266
|
|
|
17220
17267
|
export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum]
|
|
@@ -18540,6 +18587,7 @@ export namespace Prisma {
|
|
|
18540
18587
|
createdAt?: DateTimeFilter<"User"> | Date | string
|
|
18541
18588
|
titles?: StringNullableListFilter<"User">
|
|
18542
18589
|
scrubbed?: StringNullableFilter<"User"> | string | null
|
|
18590
|
+
tokenVersion?: IntFilter<"User"> | number
|
|
18543
18591
|
clientRegistration?: XOR<ClientRegistrationNullableCompositeFilter, ClientRegistrationObjectEqualityInput> | null
|
|
18544
18592
|
createdMissionsModels?: MissionListRelationFilter
|
|
18545
18593
|
ownedMissionsModels?: MissionListRelationFilter
|
|
@@ -18561,6 +18609,7 @@ export namespace Prisma {
|
|
|
18561
18609
|
createdAt?: SortOrder
|
|
18562
18610
|
titles?: SortOrder
|
|
18563
18611
|
scrubbed?: SortOrder
|
|
18612
|
+
tokenVersion?: SortOrder
|
|
18564
18613
|
clientRegistration?: ClientRegistrationOrderByInput
|
|
18565
18614
|
createdMissionsModels?: MissionOrderByRelationAggregateInput
|
|
18566
18615
|
ownedMissionsModels?: MissionOrderByRelationAggregateInput
|
|
@@ -18585,6 +18634,7 @@ export namespace Prisma {
|
|
|
18585
18634
|
createdAt?: DateTimeFilter<"User"> | Date | string
|
|
18586
18635
|
titles?: StringNullableListFilter<"User">
|
|
18587
18636
|
scrubbed?: StringNullableFilter<"User"> | string | null
|
|
18637
|
+
tokenVersion?: IntFilter<"User"> | number
|
|
18588
18638
|
clientRegistration?: XOR<ClientRegistrationNullableCompositeFilter, ClientRegistrationObjectEqualityInput> | null
|
|
18589
18639
|
createdMissionsModels?: MissionListRelationFilter
|
|
18590
18640
|
ownedMissionsModels?: MissionListRelationFilter
|
|
@@ -18606,9 +18656,12 @@ export namespace Prisma {
|
|
|
18606
18656
|
createdAt?: SortOrder
|
|
18607
18657
|
titles?: SortOrder
|
|
18608
18658
|
scrubbed?: SortOrder
|
|
18659
|
+
tokenVersion?: SortOrder
|
|
18609
18660
|
_count?: UserCountOrderByAggregateInput
|
|
18661
|
+
_avg?: UserAvgOrderByAggregateInput
|
|
18610
18662
|
_max?: UserMaxOrderByAggregateInput
|
|
18611
18663
|
_min?: UserMinOrderByAggregateInput
|
|
18664
|
+
_sum?: UserSumOrderByAggregateInput
|
|
18612
18665
|
}
|
|
18613
18666
|
|
|
18614
18667
|
export type UserScalarWhereWithAggregatesInput = {
|
|
@@ -18627,6 +18680,7 @@ export namespace Prisma {
|
|
|
18627
18680
|
createdAt?: DateTimeWithAggregatesFilter<"User"> | Date | string
|
|
18628
18681
|
titles?: StringNullableListFilter<"User">
|
|
18629
18682
|
scrubbed?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
18683
|
+
tokenVersion?: IntWithAggregatesFilter<"User"> | number
|
|
18630
18684
|
}
|
|
18631
18685
|
|
|
18632
18686
|
export type AccountCreateInput = {
|
|
@@ -19884,6 +19938,7 @@ export namespace Prisma {
|
|
|
19884
19938
|
createdAt?: Date | string
|
|
19885
19939
|
titles?: UserCreatetitlesInput | string[]
|
|
19886
19940
|
scrubbed?: string | null
|
|
19941
|
+
tokenVersion: number
|
|
19887
19942
|
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
19888
19943
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
19889
19944
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
@@ -19905,6 +19960,7 @@ export namespace Prisma {
|
|
|
19905
19960
|
createdAt?: Date | string
|
|
19906
19961
|
titles?: UserCreatetitlesInput | string[]
|
|
19907
19962
|
scrubbed?: string | null
|
|
19963
|
+
tokenVersion: number
|
|
19908
19964
|
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
19909
19965
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
19910
19966
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
@@ -19925,6 +19981,7 @@ export namespace Prisma {
|
|
|
19925
19981
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
19926
19982
|
titles?: UserUpdatetitlesInput | string[]
|
|
19927
19983
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
19984
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
19928
19985
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
19929
19986
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
19930
19987
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
@@ -19945,6 +20002,7 @@ export namespace Prisma {
|
|
|
19945
20002
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
19946
20003
|
titles?: UserUpdatetitlesInput | string[]
|
|
19947
20004
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20005
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
19948
20006
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
19949
20007
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
19950
20008
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
@@ -19966,6 +20024,7 @@ export namespace Prisma {
|
|
|
19966
20024
|
createdAt?: Date | string
|
|
19967
20025
|
titles?: UserCreatetitlesInput | string[]
|
|
19968
20026
|
scrubbed?: string | null
|
|
20027
|
+
tokenVersion: number
|
|
19969
20028
|
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
19970
20029
|
}
|
|
19971
20030
|
|
|
@@ -19981,6 +20040,7 @@ export namespace Prisma {
|
|
|
19981
20040
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
19982
20041
|
titles?: UserUpdatetitlesInput | string[]
|
|
19983
20042
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20043
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
19984
20044
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
19985
20045
|
}
|
|
19986
20046
|
|
|
@@ -19996,6 +20056,7 @@ export namespace Prisma {
|
|
|
19996
20056
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
19997
20057
|
titles?: UserUpdatetitlesInput | string[]
|
|
19998
20058
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20059
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
19999
20060
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
20000
20061
|
}
|
|
20001
20062
|
|
|
@@ -21374,6 +21435,11 @@ export namespace Prisma {
|
|
|
21374
21435
|
createdAt?: SortOrder
|
|
21375
21436
|
titles?: SortOrder
|
|
21376
21437
|
scrubbed?: SortOrder
|
|
21438
|
+
tokenVersion?: SortOrder
|
|
21439
|
+
}
|
|
21440
|
+
|
|
21441
|
+
export type UserAvgOrderByAggregateInput = {
|
|
21442
|
+
tokenVersion?: SortOrder
|
|
21377
21443
|
}
|
|
21378
21444
|
|
|
21379
21445
|
export type UserMaxOrderByAggregateInput = {
|
|
@@ -21388,6 +21454,7 @@ export namespace Prisma {
|
|
|
21388
21454
|
status?: SortOrder
|
|
21389
21455
|
createdAt?: SortOrder
|
|
21390
21456
|
scrubbed?: SortOrder
|
|
21457
|
+
tokenVersion?: SortOrder
|
|
21391
21458
|
}
|
|
21392
21459
|
|
|
21393
21460
|
export type UserMinOrderByAggregateInput = {
|
|
@@ -21402,6 +21469,11 @@ export namespace Prisma {
|
|
|
21402
21469
|
status?: SortOrder
|
|
21403
21470
|
createdAt?: SortOrder
|
|
21404
21471
|
scrubbed?: SortOrder
|
|
21472
|
+
tokenVersion?: SortOrder
|
|
21473
|
+
}
|
|
21474
|
+
|
|
21475
|
+
export type UserSumOrderByAggregateInput = {
|
|
21476
|
+
tokenVersion?: SortOrder
|
|
21405
21477
|
}
|
|
21406
21478
|
|
|
21407
21479
|
export type BoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -24492,6 +24564,7 @@ export namespace Prisma {
|
|
|
24492
24564
|
createdAt?: Date | string
|
|
24493
24565
|
titles?: UserCreatetitlesInput | string[]
|
|
24494
24566
|
scrubbed?: string | null
|
|
24567
|
+
tokenVersion: number
|
|
24495
24568
|
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
24496
24569
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
24497
24570
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -24512,6 +24585,7 @@ export namespace Prisma {
|
|
|
24512
24585
|
createdAt?: Date | string
|
|
24513
24586
|
titles?: UserCreatetitlesInput | string[]
|
|
24514
24587
|
scrubbed?: string | null
|
|
24588
|
+
tokenVersion: number
|
|
24515
24589
|
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
24516
24590
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
24517
24591
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -24600,6 +24674,7 @@ export namespace Prisma {
|
|
|
24600
24674
|
createdAt?: Date | string
|
|
24601
24675
|
titles?: UserCreatetitlesInput | string[]
|
|
24602
24676
|
scrubbed?: string | null
|
|
24677
|
+
tokenVersion: number
|
|
24603
24678
|
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
24604
24679
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
24605
24680
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -24620,6 +24695,7 @@ export namespace Prisma {
|
|
|
24620
24695
|
createdAt?: Date | string
|
|
24621
24696
|
titles?: UserCreatetitlesInput | string[]
|
|
24622
24697
|
scrubbed?: string | null
|
|
24698
|
+
tokenVersion: number
|
|
24623
24699
|
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
24624
24700
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
24625
24701
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -24777,6 +24853,7 @@ export namespace Prisma {
|
|
|
24777
24853
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24778
24854
|
titles?: UserUpdatetitlesInput | string[]
|
|
24779
24855
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24856
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
24780
24857
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
24781
24858
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
24782
24859
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -24796,6 +24873,7 @@ export namespace Prisma {
|
|
|
24796
24873
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24797
24874
|
titles?: UserUpdatetitlesInput | string[]
|
|
24798
24875
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24876
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
24799
24877
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
24800
24878
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
24801
24879
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -24893,6 +24971,7 @@ export namespace Prisma {
|
|
|
24893
24971
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24894
24972
|
titles?: UserUpdatetitlesInput | string[]
|
|
24895
24973
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24974
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
24896
24975
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
24897
24976
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
24898
24977
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -24912,6 +24991,7 @@ export namespace Prisma {
|
|
|
24912
24991
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24913
24992
|
titles?: UserUpdatetitlesInput | string[]
|
|
24914
24993
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24994
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
24915
24995
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
24916
24996
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
24917
24997
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -24948,6 +25028,7 @@ export namespace Prisma {
|
|
|
24948
25028
|
createdAt?: Date | string
|
|
24949
25029
|
titles?: UserCreatetitlesInput | string[]
|
|
24950
25030
|
scrubbed?: string | null
|
|
25031
|
+
tokenVersion: number
|
|
24951
25032
|
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
24952
25033
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
24953
25034
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
@@ -24968,6 +25049,7 @@ export namespace Prisma {
|
|
|
24968
25049
|
createdAt?: Date | string
|
|
24969
25050
|
titles?: UserCreatetitlesInput | string[]
|
|
24970
25051
|
scrubbed?: string | null
|
|
25052
|
+
tokenVersion: number
|
|
24971
25053
|
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
24972
25054
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
24973
25055
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
@@ -25003,6 +25085,7 @@ export namespace Prisma {
|
|
|
25003
25085
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25004
25086
|
titles?: UserUpdatetitlesInput | string[]
|
|
25005
25087
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25088
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
25006
25089
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
25007
25090
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
25008
25091
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
@@ -25022,6 +25105,7 @@ export namespace Prisma {
|
|
|
25022
25105
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25023
25106
|
titles?: UserUpdatetitlesInput | string[]
|
|
25024
25107
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25108
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
25025
25109
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
25026
25110
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
25027
25111
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
@@ -25107,6 +25191,7 @@ export namespace Prisma {
|
|
|
25107
25191
|
createdAt?: Date | string
|
|
25108
25192
|
titles?: UserCreatetitlesInput | string[]
|
|
25109
25193
|
scrubbed?: string | null
|
|
25194
|
+
tokenVersion: number
|
|
25110
25195
|
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
25111
25196
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
25112
25197
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
@@ -25127,6 +25212,7 @@ export namespace Prisma {
|
|
|
25127
25212
|
createdAt?: Date | string
|
|
25128
25213
|
titles?: UserCreatetitlesInput | string[]
|
|
25129
25214
|
scrubbed?: string | null
|
|
25215
|
+
tokenVersion: number
|
|
25130
25216
|
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
25131
25217
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
25132
25218
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
@@ -25185,6 +25271,7 @@ export namespace Prisma {
|
|
|
25185
25271
|
createdAt?: Date | string
|
|
25186
25272
|
titles?: UserCreatetitlesInput | string[]
|
|
25187
25273
|
scrubbed?: string | null
|
|
25274
|
+
tokenVersion: number
|
|
25188
25275
|
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
25189
25276
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
25190
25277
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
@@ -25205,6 +25292,7 @@ export namespace Prisma {
|
|
|
25205
25292
|
createdAt?: Date | string
|
|
25206
25293
|
titles?: UserCreatetitlesInput | string[]
|
|
25207
25294
|
scrubbed?: string | null
|
|
25295
|
+
tokenVersion: number
|
|
25208
25296
|
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
25209
25297
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
25210
25298
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
@@ -25415,6 +25503,7 @@ export namespace Prisma {
|
|
|
25415
25503
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25416
25504
|
titles?: UserUpdatetitlesInput | string[]
|
|
25417
25505
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25506
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
25418
25507
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
25419
25508
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
25420
25509
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
@@ -25434,6 +25523,7 @@ export namespace Prisma {
|
|
|
25434
25523
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25435
25524
|
titles?: UserUpdatetitlesInput | string[]
|
|
25436
25525
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25526
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
25437
25527
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
25438
25528
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
25439
25529
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
@@ -25501,6 +25591,7 @@ export namespace Prisma {
|
|
|
25501
25591
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25502
25592
|
titles?: UserUpdatetitlesInput | string[]
|
|
25503
25593
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25594
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
25504
25595
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
25505
25596
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
25506
25597
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
@@ -25520,6 +25611,7 @@ export namespace Prisma {
|
|
|
25520
25611
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25521
25612
|
titles?: UserUpdatetitlesInput | string[]
|
|
25522
25613
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25614
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
25523
25615
|
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
25524
25616
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
25525
25617
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|