@a_team/prisma 2.1.13 → 2.1.15
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 +17 -5
- package/dist/client/index-browser.js +14 -2
- package/dist/client/index.d.ts +840 -523
- package/dist/client/index.js +17 -5
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +37 -12
- package/dist/client/wasm.js +14 -2
- package/package.json +1 -1
package/dist/client/index.d.ts
CHANGED
|
@@ -148,6 +148,11 @@ export type WorkingHours = $Result.DefaultSelection<Prisma.$WorkingHoursPayload>
|
|
|
148
148
|
*
|
|
149
149
|
*/
|
|
150
150
|
export type ClientRoleQuestion = $Result.DefaultSelection<Prisma.$ClientRoleQuestionPayload>
|
|
151
|
+
/**
|
|
152
|
+
* Model ClientRegistration
|
|
153
|
+
*
|
|
154
|
+
*/
|
|
155
|
+
export type ClientRegistration = $Result.DefaultSelection<Prisma.$ClientRegistrationPayload>
|
|
151
156
|
/**
|
|
152
157
|
* Model Account
|
|
153
158
|
*
|
|
@@ -174,10 +179,10 @@ export type Contract = $Result.DefaultSelection<Prisma.$ContractPayload>
|
|
|
174
179
|
*/
|
|
175
180
|
export type Mission = $Result.DefaultSelection<Prisma.$MissionPayload>
|
|
176
181
|
/**
|
|
177
|
-
* Model
|
|
182
|
+
* Model MissionPrefill
|
|
178
183
|
*
|
|
179
184
|
*/
|
|
180
|
-
export type
|
|
185
|
+
export type MissionPrefill = $Result.DefaultSelection<Prisma.$MissionPrefillPayload>
|
|
181
186
|
/**
|
|
182
187
|
* Model MissionSpec
|
|
183
188
|
*
|
|
@@ -279,6 +284,24 @@ export const MissionRoleStatus: {
|
|
|
279
284
|
|
|
280
285
|
export type MissionRoleStatus = (typeof MissionRoleStatus)[keyof typeof MissionRoleStatus]
|
|
281
286
|
|
|
287
|
+
|
|
288
|
+
export const RegisterRequestType: {
|
|
289
|
+
SUPERCHARGE: 'SUPERCHARGE',
|
|
290
|
+
BUILD_PRODUCT: 'BUILD_PRODUCT'
|
|
291
|
+
};
|
|
292
|
+
|
|
293
|
+
export type RegisterRequestType = (typeof RegisterRequestType)[keyof typeof RegisterRequestType]
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
export const HiringTimeline: {
|
|
297
|
+
immediate: 'immediate',
|
|
298
|
+
next_month: 'next_month',
|
|
299
|
+
within_3_months: 'within_3_months',
|
|
300
|
+
exploring: 'exploring'
|
|
301
|
+
};
|
|
302
|
+
|
|
303
|
+
export type HiringTimeline = (typeof HiringTimeline)[keyof typeof HiringTimeline]
|
|
304
|
+
|
|
282
305
|
}
|
|
283
306
|
|
|
284
307
|
export type ContractStatus = $Enums.ContractStatus
|
|
@@ -309,6 +332,14 @@ export type MissionRoleStatus = $Enums.MissionRoleStatus
|
|
|
309
332
|
|
|
310
333
|
export const MissionRoleStatus: typeof $Enums.MissionRoleStatus
|
|
311
334
|
|
|
335
|
+
export type RegisterRequestType = $Enums.RegisterRequestType
|
|
336
|
+
|
|
337
|
+
export const RegisterRequestType: typeof $Enums.RegisterRequestType
|
|
338
|
+
|
|
339
|
+
export type HiringTimeline = $Enums.HiringTimeline
|
|
340
|
+
|
|
341
|
+
export const HiringTimeline: typeof $Enums.HiringTimeline
|
|
342
|
+
|
|
312
343
|
/**
|
|
313
344
|
* ## Prisma Client ʲˢ
|
|
314
345
|
*
|
|
@@ -450,14 +481,14 @@ export class PrismaClient<
|
|
|
450
481
|
get mission(): Prisma.MissionDelegate<ExtArgs>;
|
|
451
482
|
|
|
452
483
|
/**
|
|
453
|
-
* `prisma.
|
|
484
|
+
* `prisma.missionPrefill`: Exposes CRUD operations for the **MissionPrefill** model.
|
|
454
485
|
* Example usage:
|
|
455
486
|
* ```ts
|
|
456
|
-
* // Fetch zero or more
|
|
457
|
-
* const
|
|
487
|
+
* // Fetch zero or more MissionPrefills
|
|
488
|
+
* const missionPrefills = await prisma.missionPrefill.findMany()
|
|
458
489
|
* ```
|
|
459
490
|
*/
|
|
460
|
-
get
|
|
491
|
+
get missionPrefill(): Prisma.MissionPrefillDelegate<ExtArgs>;
|
|
461
492
|
|
|
462
493
|
/**
|
|
463
494
|
* `prisma.missionSpec`: Exposes CRUD operations for the **MissionSpec** model.
|
|
@@ -990,7 +1021,7 @@ export namespace Prisma {
|
|
|
990
1021
|
Company: 'Company',
|
|
991
1022
|
Contract: 'Contract',
|
|
992
1023
|
Mission: 'Mission',
|
|
993
|
-
|
|
1024
|
+
MissionPrefill: 'MissionPrefill',
|
|
994
1025
|
MissionSpec: 'MissionSpec',
|
|
995
1026
|
RoleCategory: 'RoleCategory',
|
|
996
1027
|
TalentCategory: 'TalentCategory',
|
|
@@ -1011,7 +1042,7 @@ export namespace Prisma {
|
|
|
1011
1042
|
|
|
1012
1043
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
|
1013
1044
|
meta: {
|
|
1014
|
-
modelProps: "account" | "clientCompany" | "company" | "contract" | "mission" | "
|
|
1045
|
+
modelProps: "account" | "clientCompany" | "company" | "contract" | "mission" | "missionPrefill" | "missionSpec" | "roleCategory" | "talentCategory" | "talentIndustry" | "user"
|
|
1015
1046
|
txIsolationLevel: never
|
|
1016
1047
|
}
|
|
1017
1048
|
model: {
|
|
@@ -1385,77 +1416,77 @@ export namespace Prisma {
|
|
|
1385
1416
|
}
|
|
1386
1417
|
}
|
|
1387
1418
|
}
|
|
1388
|
-
|
|
1389
|
-
payload: Prisma.$
|
|
1390
|
-
fields: Prisma.
|
|
1419
|
+
MissionPrefill: {
|
|
1420
|
+
payload: Prisma.$MissionPrefillPayload<ExtArgs>
|
|
1421
|
+
fields: Prisma.MissionPrefillFieldRefs
|
|
1391
1422
|
operations: {
|
|
1392
1423
|
findUnique: {
|
|
1393
|
-
args: Prisma.
|
|
1394
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1424
|
+
args: Prisma.MissionPrefillFindUniqueArgs<ExtArgs>
|
|
1425
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPrefillPayload> | null
|
|
1395
1426
|
}
|
|
1396
1427
|
findUniqueOrThrow: {
|
|
1397
|
-
args: Prisma.
|
|
1398
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1428
|
+
args: Prisma.MissionPrefillFindUniqueOrThrowArgs<ExtArgs>
|
|
1429
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPrefillPayload>
|
|
1399
1430
|
}
|
|
1400
1431
|
findFirst: {
|
|
1401
|
-
args: Prisma.
|
|
1402
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1432
|
+
args: Prisma.MissionPrefillFindFirstArgs<ExtArgs>
|
|
1433
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPrefillPayload> | null
|
|
1403
1434
|
}
|
|
1404
1435
|
findFirstOrThrow: {
|
|
1405
|
-
args: Prisma.
|
|
1406
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1436
|
+
args: Prisma.MissionPrefillFindFirstOrThrowArgs<ExtArgs>
|
|
1437
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPrefillPayload>
|
|
1407
1438
|
}
|
|
1408
1439
|
findMany: {
|
|
1409
|
-
args: Prisma.
|
|
1410
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1440
|
+
args: Prisma.MissionPrefillFindManyArgs<ExtArgs>
|
|
1441
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPrefillPayload>[]
|
|
1411
1442
|
}
|
|
1412
1443
|
create: {
|
|
1413
|
-
args: Prisma.
|
|
1414
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1444
|
+
args: Prisma.MissionPrefillCreateArgs<ExtArgs>
|
|
1445
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPrefillPayload>
|
|
1415
1446
|
}
|
|
1416
1447
|
createMany: {
|
|
1417
|
-
args: Prisma.
|
|
1448
|
+
args: Prisma.MissionPrefillCreateManyArgs<ExtArgs>
|
|
1418
1449
|
result: BatchPayload
|
|
1419
1450
|
}
|
|
1420
1451
|
delete: {
|
|
1421
|
-
args: Prisma.
|
|
1422
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1452
|
+
args: Prisma.MissionPrefillDeleteArgs<ExtArgs>
|
|
1453
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPrefillPayload>
|
|
1423
1454
|
}
|
|
1424
1455
|
update: {
|
|
1425
|
-
args: Prisma.
|
|
1426
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1456
|
+
args: Prisma.MissionPrefillUpdateArgs<ExtArgs>
|
|
1457
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPrefillPayload>
|
|
1427
1458
|
}
|
|
1428
1459
|
deleteMany: {
|
|
1429
|
-
args: Prisma.
|
|
1460
|
+
args: Prisma.MissionPrefillDeleteManyArgs<ExtArgs>
|
|
1430
1461
|
result: BatchPayload
|
|
1431
1462
|
}
|
|
1432
1463
|
updateMany: {
|
|
1433
|
-
args: Prisma.
|
|
1464
|
+
args: Prisma.MissionPrefillUpdateManyArgs<ExtArgs>
|
|
1434
1465
|
result: BatchPayload
|
|
1435
1466
|
}
|
|
1436
1467
|
upsert: {
|
|
1437
|
-
args: Prisma.
|
|
1438
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1468
|
+
args: Prisma.MissionPrefillUpsertArgs<ExtArgs>
|
|
1469
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPrefillPayload>
|
|
1439
1470
|
}
|
|
1440
1471
|
aggregate: {
|
|
1441
|
-
args: Prisma.
|
|
1442
|
-
result: $Utils.Optional<
|
|
1472
|
+
args: Prisma.MissionPrefillAggregateArgs<ExtArgs>
|
|
1473
|
+
result: $Utils.Optional<AggregateMissionPrefill>
|
|
1443
1474
|
}
|
|
1444
1475
|
groupBy: {
|
|
1445
|
-
args: Prisma.
|
|
1446
|
-
result: $Utils.Optional<
|
|
1476
|
+
args: Prisma.MissionPrefillGroupByArgs<ExtArgs>
|
|
1477
|
+
result: $Utils.Optional<MissionPrefillGroupByOutputType>[]
|
|
1447
1478
|
}
|
|
1448
1479
|
findRaw: {
|
|
1449
|
-
args: Prisma.
|
|
1480
|
+
args: Prisma.MissionPrefillFindRawArgs<ExtArgs>
|
|
1450
1481
|
result: JsonObject
|
|
1451
1482
|
}
|
|
1452
1483
|
aggregateRaw: {
|
|
1453
|
-
args: Prisma.
|
|
1484
|
+
args: Prisma.MissionPrefillAggregateRawArgs<ExtArgs>
|
|
1454
1485
|
result: JsonObject
|
|
1455
1486
|
}
|
|
1456
1487
|
count: {
|
|
1457
|
-
args: Prisma.
|
|
1458
|
-
result: $Utils.Optional<
|
|
1488
|
+
args: Prisma.MissionPrefillCountArgs<ExtArgs>
|
|
1489
|
+
result: $Utils.Optional<MissionPrefillCountAggregateOutputType> | number
|
|
1459
1490
|
}
|
|
1460
1491
|
}
|
|
1461
1492
|
}
|
|
@@ -2123,7 +2154,7 @@ export namespace Prisma {
|
|
|
2123
2154
|
ownedMissionsModels: number
|
|
2124
2155
|
authoredMissionSpecs: number
|
|
2125
2156
|
modifiedMissionSpecs: number
|
|
2126
|
-
|
|
2157
|
+
missionPrefills: number
|
|
2127
2158
|
}
|
|
2128
2159
|
|
|
2129
2160
|
export type UserCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -2131,7 +2162,7 @@ export namespace Prisma {
|
|
|
2131
2162
|
ownedMissionsModels?: boolean | UserCountOutputTypeCountOwnedMissionsModelsArgs
|
|
2132
2163
|
authoredMissionSpecs?: boolean | UserCountOutputTypeCountAuthoredMissionSpecsArgs
|
|
2133
2164
|
modifiedMissionSpecs?: boolean | UserCountOutputTypeCountModifiedMissionSpecsArgs
|
|
2134
|
-
|
|
2165
|
+
missionPrefills?: boolean | UserCountOutputTypeCountMissionPrefillsArgs
|
|
2135
2166
|
}
|
|
2136
2167
|
|
|
2137
2168
|
// Custom InputTypes
|
|
@@ -2176,8 +2207,8 @@ export namespace Prisma {
|
|
|
2176
2207
|
/**
|
|
2177
2208
|
* UserCountOutputType without action
|
|
2178
2209
|
*/
|
|
2179
|
-
export type
|
|
2180
|
-
where?:
|
|
2210
|
+
export type UserCountOutputTypeCountMissionPrefillsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2211
|
+
where?: MissionPrefillWhereInput
|
|
2181
2212
|
}
|
|
2182
2213
|
|
|
2183
2214
|
|
|
@@ -4092,6 +4123,91 @@ export namespace Prisma {
|
|
|
4092
4123
|
}
|
|
4093
4124
|
|
|
4094
4125
|
|
|
4126
|
+
/**
|
|
4127
|
+
* Model ClientRegistration
|
|
4128
|
+
*/
|
|
4129
|
+
|
|
4130
|
+
|
|
4131
|
+
|
|
4132
|
+
|
|
4133
|
+
|
|
4134
|
+
export type ClientRegistrationSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
4135
|
+
emailVerified?: boolean
|
|
4136
|
+
signupCompany?: boolean
|
|
4137
|
+
companyQualified?: boolean
|
|
4138
|
+
requestType?: boolean
|
|
4139
|
+
requestSolution?: boolean
|
|
4140
|
+
requestRoles?: boolean
|
|
4141
|
+
requestHelp?: boolean
|
|
4142
|
+
howDidYouHear?: boolean
|
|
4143
|
+
hiringTimeline?: boolean
|
|
4144
|
+
}, ExtArgs["result"]["clientRegistration"]>
|
|
4145
|
+
|
|
4146
|
+
|
|
4147
|
+
export type ClientRegistrationSelectScalar = {
|
|
4148
|
+
emailVerified?: boolean
|
|
4149
|
+
signupCompany?: boolean
|
|
4150
|
+
companyQualified?: boolean
|
|
4151
|
+
requestType?: boolean
|
|
4152
|
+
requestSolution?: boolean
|
|
4153
|
+
requestRoles?: boolean
|
|
4154
|
+
requestHelp?: boolean
|
|
4155
|
+
howDidYouHear?: boolean
|
|
4156
|
+
hiringTimeline?: boolean
|
|
4157
|
+
}
|
|
4158
|
+
|
|
4159
|
+
|
|
4160
|
+
export type $ClientRegistrationPayload = {
|
|
4161
|
+
name: "ClientRegistration"
|
|
4162
|
+
objects: {}
|
|
4163
|
+
scalars: {
|
|
4164
|
+
emailVerified: boolean | null
|
|
4165
|
+
signupCompany: string | null
|
|
4166
|
+
companyQualified: boolean | null
|
|
4167
|
+
requestType: $Enums.RegisterRequestType | null
|
|
4168
|
+
requestSolution: string | null
|
|
4169
|
+
requestRoles: string[]
|
|
4170
|
+
requestHelp: string | null
|
|
4171
|
+
howDidYouHear: string | null
|
|
4172
|
+
hiringTimeline: $Enums.HiringTimeline | null
|
|
4173
|
+
}
|
|
4174
|
+
composites: {}
|
|
4175
|
+
}
|
|
4176
|
+
|
|
4177
|
+
type ClientRegistrationGetPayload<S extends boolean | null | undefined | ClientRegistrationDefaultArgs> = $Result.GetResult<Prisma.$ClientRegistrationPayload, S>
|
|
4178
|
+
|
|
4179
|
+
|
|
4180
|
+
|
|
4181
|
+
|
|
4182
|
+
|
|
4183
|
+
/**
|
|
4184
|
+
* Fields of the ClientRegistration model
|
|
4185
|
+
*/
|
|
4186
|
+
interface ClientRegistrationFieldRefs {
|
|
4187
|
+
readonly emailVerified: FieldRef<"ClientRegistration", 'Boolean'>
|
|
4188
|
+
readonly signupCompany: FieldRef<"ClientRegistration", 'String'>
|
|
4189
|
+
readonly companyQualified: FieldRef<"ClientRegistration", 'Boolean'>
|
|
4190
|
+
readonly requestType: FieldRef<"ClientRegistration", 'RegisterRequestType'>
|
|
4191
|
+
readonly requestSolution: FieldRef<"ClientRegistration", 'String'>
|
|
4192
|
+
readonly requestRoles: FieldRef<"ClientRegistration", 'String[]'>
|
|
4193
|
+
readonly requestHelp: FieldRef<"ClientRegistration", 'String'>
|
|
4194
|
+
readonly howDidYouHear: FieldRef<"ClientRegistration", 'String'>
|
|
4195
|
+
readonly hiringTimeline: FieldRef<"ClientRegistration", 'HiringTimeline'>
|
|
4196
|
+
}
|
|
4197
|
+
|
|
4198
|
+
|
|
4199
|
+
// Custom InputTypes
|
|
4200
|
+
/**
|
|
4201
|
+
* ClientRegistration without action
|
|
4202
|
+
*/
|
|
4203
|
+
export type ClientRegistrationDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4204
|
+
/**
|
|
4205
|
+
* Select specific fields to fetch from the ClientRegistration
|
|
4206
|
+
*/
|
|
4207
|
+
select?: ClientRegistrationSelect<ExtArgs> | null
|
|
4208
|
+
}
|
|
4209
|
+
|
|
4210
|
+
|
|
4095
4211
|
/**
|
|
4096
4212
|
* Model Account
|
|
4097
4213
|
*/
|
|
@@ -9601,16 +9717,16 @@ export namespace Prisma {
|
|
|
9601
9717
|
|
|
9602
9718
|
|
|
9603
9719
|
/**
|
|
9604
|
-
* Model
|
|
9720
|
+
* Model MissionPrefill
|
|
9605
9721
|
*/
|
|
9606
9722
|
|
|
9607
|
-
export type
|
|
9608
|
-
_count:
|
|
9609
|
-
_min:
|
|
9610
|
-
_max:
|
|
9723
|
+
export type AggregateMissionPrefill = {
|
|
9724
|
+
_count: MissionPrefillCountAggregateOutputType | null
|
|
9725
|
+
_min: MissionPrefillMinAggregateOutputType | null
|
|
9726
|
+
_max: MissionPrefillMaxAggregateOutputType | null
|
|
9611
9727
|
}
|
|
9612
9728
|
|
|
9613
|
-
export type
|
|
9729
|
+
export type MissionPrefillMinAggregateOutputType = {
|
|
9614
9730
|
id: string | null
|
|
9615
9731
|
userId: string | null
|
|
9616
9732
|
missionName: string | null
|
|
@@ -9623,7 +9739,7 @@ export namespace Prisma {
|
|
|
9623
9739
|
updatedAt: Date | null
|
|
9624
9740
|
}
|
|
9625
9741
|
|
|
9626
|
-
export type
|
|
9742
|
+
export type MissionPrefillMaxAggregateOutputType = {
|
|
9627
9743
|
id: string | null
|
|
9628
9744
|
userId: string | null
|
|
9629
9745
|
missionName: string | null
|
|
@@ -9636,7 +9752,7 @@ export namespace Prisma {
|
|
|
9636
9752
|
updatedAt: Date | null
|
|
9637
9753
|
}
|
|
9638
9754
|
|
|
9639
|
-
export type
|
|
9755
|
+
export type MissionPrefillCountAggregateOutputType = {
|
|
9640
9756
|
id: number
|
|
9641
9757
|
userId: number
|
|
9642
9758
|
missionName: number
|
|
@@ -9652,7 +9768,7 @@ export namespace Prisma {
|
|
|
9652
9768
|
}
|
|
9653
9769
|
|
|
9654
9770
|
|
|
9655
|
-
export type
|
|
9771
|
+
export type MissionPrefillMinAggregateInputType = {
|
|
9656
9772
|
id?: true
|
|
9657
9773
|
userId?: true
|
|
9658
9774
|
missionName?: true
|
|
@@ -9665,7 +9781,7 @@ export namespace Prisma {
|
|
|
9665
9781
|
updatedAt?: true
|
|
9666
9782
|
}
|
|
9667
9783
|
|
|
9668
|
-
export type
|
|
9784
|
+
export type MissionPrefillMaxAggregateInputType = {
|
|
9669
9785
|
id?: true
|
|
9670
9786
|
userId?: true
|
|
9671
9787
|
missionName?: true
|
|
@@ -9678,7 +9794,7 @@ export namespace Prisma {
|
|
|
9678
9794
|
updatedAt?: true
|
|
9679
9795
|
}
|
|
9680
9796
|
|
|
9681
|
-
export type
|
|
9797
|
+
export type MissionPrefillCountAggregateInputType = {
|
|
9682
9798
|
id?: true
|
|
9683
9799
|
userId?: true
|
|
9684
9800
|
missionName?: true
|
|
@@ -9693,79 +9809,79 @@ export namespace Prisma {
|
|
|
9693
9809
|
_all?: true
|
|
9694
9810
|
}
|
|
9695
9811
|
|
|
9696
|
-
export type
|
|
9812
|
+
export type MissionPrefillAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9697
9813
|
/**
|
|
9698
|
-
* Filter which
|
|
9814
|
+
* Filter which MissionPrefill to aggregate.
|
|
9699
9815
|
*/
|
|
9700
|
-
where?:
|
|
9816
|
+
where?: MissionPrefillWhereInput
|
|
9701
9817
|
/**
|
|
9702
9818
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
9703
9819
|
*
|
|
9704
|
-
* Determine the order of
|
|
9820
|
+
* Determine the order of MissionPrefills to fetch.
|
|
9705
9821
|
*/
|
|
9706
|
-
orderBy?:
|
|
9822
|
+
orderBy?: MissionPrefillOrderByWithRelationInput | MissionPrefillOrderByWithRelationInput[]
|
|
9707
9823
|
/**
|
|
9708
9824
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
9709
9825
|
*
|
|
9710
9826
|
* Sets the start position
|
|
9711
9827
|
*/
|
|
9712
|
-
cursor?:
|
|
9828
|
+
cursor?: MissionPrefillWhereUniqueInput
|
|
9713
9829
|
/**
|
|
9714
9830
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
9715
9831
|
*
|
|
9716
|
-
* Take `±n`
|
|
9832
|
+
* Take `±n` MissionPrefills from the position of the cursor.
|
|
9717
9833
|
*/
|
|
9718
9834
|
take?: number
|
|
9719
9835
|
/**
|
|
9720
9836
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
9721
9837
|
*
|
|
9722
|
-
* Skip the first `n`
|
|
9838
|
+
* Skip the first `n` MissionPrefills.
|
|
9723
9839
|
*/
|
|
9724
9840
|
skip?: number
|
|
9725
9841
|
/**
|
|
9726
9842
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
9727
9843
|
*
|
|
9728
|
-
* Count returned
|
|
9844
|
+
* Count returned MissionPrefills
|
|
9729
9845
|
**/
|
|
9730
|
-
_count?: true |
|
|
9846
|
+
_count?: true | MissionPrefillCountAggregateInputType
|
|
9731
9847
|
/**
|
|
9732
9848
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
9733
9849
|
*
|
|
9734
9850
|
* Select which fields to find the minimum value
|
|
9735
9851
|
**/
|
|
9736
|
-
_min?:
|
|
9852
|
+
_min?: MissionPrefillMinAggregateInputType
|
|
9737
9853
|
/**
|
|
9738
9854
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
9739
9855
|
*
|
|
9740
9856
|
* Select which fields to find the maximum value
|
|
9741
9857
|
**/
|
|
9742
|
-
_max?:
|
|
9858
|
+
_max?: MissionPrefillMaxAggregateInputType
|
|
9743
9859
|
}
|
|
9744
9860
|
|
|
9745
|
-
export type
|
|
9746
|
-
[P in keyof T & keyof
|
|
9861
|
+
export type GetMissionPrefillAggregateType<T extends MissionPrefillAggregateArgs> = {
|
|
9862
|
+
[P in keyof T & keyof AggregateMissionPrefill]: P extends '_count' | 'count'
|
|
9747
9863
|
? T[P] extends true
|
|
9748
9864
|
? number
|
|
9749
|
-
: GetScalarType<T[P],
|
|
9750
|
-
: GetScalarType<T[P],
|
|
9865
|
+
: GetScalarType<T[P], AggregateMissionPrefill[P]>
|
|
9866
|
+
: GetScalarType<T[P], AggregateMissionPrefill[P]>
|
|
9751
9867
|
}
|
|
9752
9868
|
|
|
9753
9869
|
|
|
9754
9870
|
|
|
9755
9871
|
|
|
9756
|
-
export type
|
|
9757
|
-
where?:
|
|
9758
|
-
orderBy?:
|
|
9759
|
-
by:
|
|
9760
|
-
having?:
|
|
9872
|
+
export type MissionPrefillGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9873
|
+
where?: MissionPrefillWhereInput
|
|
9874
|
+
orderBy?: MissionPrefillOrderByWithAggregationInput | MissionPrefillOrderByWithAggregationInput[]
|
|
9875
|
+
by: MissionPrefillScalarFieldEnum[] | MissionPrefillScalarFieldEnum
|
|
9876
|
+
having?: MissionPrefillScalarWhereWithAggregatesInput
|
|
9761
9877
|
take?: number
|
|
9762
9878
|
skip?: number
|
|
9763
|
-
_count?:
|
|
9764
|
-
_min?:
|
|
9765
|
-
_max?:
|
|
9879
|
+
_count?: MissionPrefillCountAggregateInputType | true
|
|
9880
|
+
_min?: MissionPrefillMinAggregateInputType
|
|
9881
|
+
_max?: MissionPrefillMaxAggregateInputType
|
|
9766
9882
|
}
|
|
9767
9883
|
|
|
9768
|
-
export type
|
|
9884
|
+
export type MissionPrefillGroupByOutputType = {
|
|
9769
9885
|
id: string
|
|
9770
9886
|
userId: string
|
|
9771
9887
|
missionName: string | null
|
|
@@ -9777,26 +9893,26 @@ export namespace Prisma {
|
|
|
9777
9893
|
status: string
|
|
9778
9894
|
createdAt: Date
|
|
9779
9895
|
updatedAt: Date
|
|
9780
|
-
_count:
|
|
9781
|
-
_min:
|
|
9782
|
-
_max:
|
|
9896
|
+
_count: MissionPrefillCountAggregateOutputType | null
|
|
9897
|
+
_min: MissionPrefillMinAggregateOutputType | null
|
|
9898
|
+
_max: MissionPrefillMaxAggregateOutputType | null
|
|
9783
9899
|
}
|
|
9784
9900
|
|
|
9785
|
-
type
|
|
9901
|
+
type GetMissionPrefillGroupByPayload<T extends MissionPrefillGroupByArgs> = Prisma.PrismaPromise<
|
|
9786
9902
|
Array<
|
|
9787
|
-
PickEnumerable<
|
|
9903
|
+
PickEnumerable<MissionPrefillGroupByOutputType, T['by']> &
|
|
9788
9904
|
{
|
|
9789
|
-
[P in ((keyof T) & (keyof
|
|
9905
|
+
[P in ((keyof T) & (keyof MissionPrefillGroupByOutputType))]: P extends '_count'
|
|
9790
9906
|
? T[P] extends boolean
|
|
9791
9907
|
? number
|
|
9792
|
-
: GetScalarType<T[P],
|
|
9793
|
-
: GetScalarType<T[P],
|
|
9908
|
+
: GetScalarType<T[P], MissionPrefillGroupByOutputType[P]>
|
|
9909
|
+
: GetScalarType<T[P], MissionPrefillGroupByOutputType[P]>
|
|
9794
9910
|
}
|
|
9795
9911
|
>
|
|
9796
9912
|
>
|
|
9797
9913
|
|
|
9798
9914
|
|
|
9799
|
-
export type
|
|
9915
|
+
export type MissionPrefillSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9800
9916
|
id?: boolean
|
|
9801
9917
|
userId?: boolean
|
|
9802
9918
|
missionName?: boolean
|
|
@@ -9809,10 +9925,10 @@ export namespace Prisma {
|
|
|
9809
9925
|
createdAt?: boolean
|
|
9810
9926
|
updatedAt?: boolean
|
|
9811
9927
|
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
9812
|
-
}, ExtArgs["result"]["
|
|
9928
|
+
}, ExtArgs["result"]["missionPrefill"]>
|
|
9813
9929
|
|
|
9814
9930
|
|
|
9815
|
-
export type
|
|
9931
|
+
export type MissionPrefillSelectScalar = {
|
|
9816
9932
|
id?: boolean
|
|
9817
9933
|
userId?: boolean
|
|
9818
9934
|
missionName?: boolean
|
|
@@ -9826,12 +9942,12 @@ export namespace Prisma {
|
|
|
9826
9942
|
updatedAt?: boolean
|
|
9827
9943
|
}
|
|
9828
9944
|
|
|
9829
|
-
export type
|
|
9945
|
+
export type MissionPrefillInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9830
9946
|
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
9831
9947
|
}
|
|
9832
9948
|
|
|
9833
|
-
export type $
|
|
9834
|
-
name: "
|
|
9949
|
+
export type $MissionPrefillPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9950
|
+
name: "MissionPrefill"
|
|
9835
9951
|
objects: {
|
|
9836
9952
|
user: Prisma.$UserPayload<ExtArgs>
|
|
9837
9953
|
}
|
|
@@ -9847,143 +9963,143 @@ export namespace Prisma {
|
|
|
9847
9963
|
status: string
|
|
9848
9964
|
createdAt: Date
|
|
9849
9965
|
updatedAt: Date
|
|
9850
|
-
}, ExtArgs["result"]["
|
|
9966
|
+
}, ExtArgs["result"]["missionPrefill"]>
|
|
9851
9967
|
composites: {}
|
|
9852
9968
|
}
|
|
9853
9969
|
|
|
9854
|
-
type
|
|
9970
|
+
type MissionPrefillGetPayload<S extends boolean | null | undefined | MissionPrefillDefaultArgs> = $Result.GetResult<Prisma.$MissionPrefillPayload, S>
|
|
9855
9971
|
|
|
9856
|
-
type
|
|
9857
|
-
Omit<
|
|
9858
|
-
select?:
|
|
9972
|
+
type MissionPrefillCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
9973
|
+
Omit<MissionPrefillFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
9974
|
+
select?: MissionPrefillCountAggregateInputType | true
|
|
9859
9975
|
}
|
|
9860
9976
|
|
|
9861
|
-
export interface
|
|
9862
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['
|
|
9977
|
+
export interface MissionPrefillDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
9978
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['MissionPrefill'], meta: { name: 'MissionPrefill' } }
|
|
9863
9979
|
/**
|
|
9864
|
-
* Find zero or one
|
|
9865
|
-
* @param {
|
|
9980
|
+
* Find zero or one MissionPrefill that matches the filter.
|
|
9981
|
+
* @param {MissionPrefillFindUniqueArgs} args - Arguments to find a MissionPrefill
|
|
9866
9982
|
* @example
|
|
9867
|
-
* // Get one
|
|
9868
|
-
* const
|
|
9983
|
+
* // Get one MissionPrefill
|
|
9984
|
+
* const missionPrefill = await prisma.missionPrefill.findUnique({
|
|
9869
9985
|
* where: {
|
|
9870
9986
|
* // ... provide filter here
|
|
9871
9987
|
* }
|
|
9872
9988
|
* })
|
|
9873
9989
|
*/
|
|
9874
|
-
findUnique<T extends
|
|
9990
|
+
findUnique<T extends MissionPrefillFindUniqueArgs>(args: SelectSubset<T, MissionPrefillFindUniqueArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
9875
9991
|
|
|
9876
9992
|
/**
|
|
9877
|
-
* Find one
|
|
9993
|
+
* Find one MissionPrefill that matches the filter or throw an error with `error.code='P2025'`
|
|
9878
9994
|
* if no matches were found.
|
|
9879
|
-
* @param {
|
|
9995
|
+
* @param {MissionPrefillFindUniqueOrThrowArgs} args - Arguments to find a MissionPrefill
|
|
9880
9996
|
* @example
|
|
9881
|
-
* // Get one
|
|
9882
|
-
* const
|
|
9997
|
+
* // Get one MissionPrefill
|
|
9998
|
+
* const missionPrefill = await prisma.missionPrefill.findUniqueOrThrow({
|
|
9883
9999
|
* where: {
|
|
9884
10000
|
* // ... provide filter here
|
|
9885
10001
|
* }
|
|
9886
10002
|
* })
|
|
9887
10003
|
*/
|
|
9888
|
-
findUniqueOrThrow<T extends
|
|
10004
|
+
findUniqueOrThrow<T extends MissionPrefillFindUniqueOrThrowArgs>(args: SelectSubset<T, MissionPrefillFindUniqueOrThrowArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
9889
10005
|
|
|
9890
10006
|
/**
|
|
9891
|
-
* Find the first
|
|
10007
|
+
* Find the first MissionPrefill that matches the filter.
|
|
9892
10008
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
9893
10009
|
* Read more here: https://pris.ly/d/null-undefined
|
|
9894
|
-
* @param {
|
|
10010
|
+
* @param {MissionPrefillFindFirstArgs} args - Arguments to find a MissionPrefill
|
|
9895
10011
|
* @example
|
|
9896
|
-
* // Get one
|
|
9897
|
-
* const
|
|
10012
|
+
* // Get one MissionPrefill
|
|
10013
|
+
* const missionPrefill = await prisma.missionPrefill.findFirst({
|
|
9898
10014
|
* where: {
|
|
9899
10015
|
* // ... provide filter here
|
|
9900
10016
|
* }
|
|
9901
10017
|
* })
|
|
9902
10018
|
*/
|
|
9903
|
-
findFirst<T extends
|
|
10019
|
+
findFirst<T extends MissionPrefillFindFirstArgs>(args?: SelectSubset<T, MissionPrefillFindFirstArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
9904
10020
|
|
|
9905
10021
|
/**
|
|
9906
|
-
* Find the first
|
|
10022
|
+
* Find the first MissionPrefill that matches the filter or
|
|
9907
10023
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
9908
10024
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
9909
10025
|
* Read more here: https://pris.ly/d/null-undefined
|
|
9910
|
-
* @param {
|
|
10026
|
+
* @param {MissionPrefillFindFirstOrThrowArgs} args - Arguments to find a MissionPrefill
|
|
9911
10027
|
* @example
|
|
9912
|
-
* // Get one
|
|
9913
|
-
* const
|
|
10028
|
+
* // Get one MissionPrefill
|
|
10029
|
+
* const missionPrefill = await prisma.missionPrefill.findFirstOrThrow({
|
|
9914
10030
|
* where: {
|
|
9915
10031
|
* // ... provide filter here
|
|
9916
10032
|
* }
|
|
9917
10033
|
* })
|
|
9918
10034
|
*/
|
|
9919
|
-
findFirstOrThrow<T extends
|
|
10035
|
+
findFirstOrThrow<T extends MissionPrefillFindFirstOrThrowArgs>(args?: SelectSubset<T, MissionPrefillFindFirstOrThrowArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
9920
10036
|
|
|
9921
10037
|
/**
|
|
9922
|
-
* Find zero or more
|
|
10038
|
+
* Find zero or more MissionPrefills that matches the filter.
|
|
9923
10039
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
9924
10040
|
* Read more here: https://pris.ly/d/null-undefined
|
|
9925
|
-
* @param {
|
|
10041
|
+
* @param {MissionPrefillFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
9926
10042
|
* @example
|
|
9927
|
-
* // Get all
|
|
9928
|
-
* const
|
|
10043
|
+
* // Get all MissionPrefills
|
|
10044
|
+
* const missionPrefills = await prisma.missionPrefill.findMany()
|
|
9929
10045
|
*
|
|
9930
|
-
* // Get first 10
|
|
9931
|
-
* const
|
|
10046
|
+
* // Get first 10 MissionPrefills
|
|
10047
|
+
* const missionPrefills = await prisma.missionPrefill.findMany({ take: 10 })
|
|
9932
10048
|
*
|
|
9933
10049
|
* // Only select the `id`
|
|
9934
|
-
* const
|
|
10050
|
+
* const missionPrefillWithIdOnly = await prisma.missionPrefill.findMany({ select: { id: true } })
|
|
9935
10051
|
*
|
|
9936
10052
|
*/
|
|
9937
|
-
findMany<T extends
|
|
10053
|
+
findMany<T extends MissionPrefillFindManyArgs>(args?: SelectSubset<T, MissionPrefillFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "findMany">>
|
|
9938
10054
|
|
|
9939
10055
|
/**
|
|
9940
|
-
* Create a
|
|
9941
|
-
* @param {
|
|
10056
|
+
* Create a MissionPrefill.
|
|
10057
|
+
* @param {MissionPrefillCreateArgs} args - Arguments to create a MissionPrefill.
|
|
9942
10058
|
* @example
|
|
9943
|
-
* // Create one
|
|
9944
|
-
* const
|
|
10059
|
+
* // Create one MissionPrefill
|
|
10060
|
+
* const MissionPrefill = await prisma.missionPrefill.create({
|
|
9945
10061
|
* data: {
|
|
9946
|
-
* // ... data to create a
|
|
10062
|
+
* // ... data to create a MissionPrefill
|
|
9947
10063
|
* }
|
|
9948
10064
|
* })
|
|
9949
10065
|
*
|
|
9950
10066
|
*/
|
|
9951
|
-
create<T extends
|
|
10067
|
+
create<T extends MissionPrefillCreateArgs>(args: SelectSubset<T, MissionPrefillCreateArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
9952
10068
|
|
|
9953
10069
|
/**
|
|
9954
|
-
* Create many
|
|
9955
|
-
* @param {
|
|
10070
|
+
* Create many MissionPrefills.
|
|
10071
|
+
* @param {MissionPrefillCreateManyArgs} args - Arguments to create many MissionPrefills.
|
|
9956
10072
|
* @example
|
|
9957
|
-
* // Create many
|
|
9958
|
-
* const
|
|
10073
|
+
* // Create many MissionPrefills
|
|
10074
|
+
* const missionPrefill = await prisma.missionPrefill.createMany({
|
|
9959
10075
|
* data: [
|
|
9960
10076
|
* // ... provide data here
|
|
9961
10077
|
* ]
|
|
9962
10078
|
* })
|
|
9963
10079
|
*
|
|
9964
10080
|
*/
|
|
9965
|
-
createMany<T extends
|
|
10081
|
+
createMany<T extends MissionPrefillCreateManyArgs>(args?: SelectSubset<T, MissionPrefillCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
9966
10082
|
|
|
9967
10083
|
/**
|
|
9968
|
-
* Delete a
|
|
9969
|
-
* @param {
|
|
10084
|
+
* Delete a MissionPrefill.
|
|
10085
|
+
* @param {MissionPrefillDeleteArgs} args - Arguments to delete one MissionPrefill.
|
|
9970
10086
|
* @example
|
|
9971
|
-
* // Delete one
|
|
9972
|
-
* const
|
|
10087
|
+
* // Delete one MissionPrefill
|
|
10088
|
+
* const MissionPrefill = await prisma.missionPrefill.delete({
|
|
9973
10089
|
* where: {
|
|
9974
|
-
* // ... filter to delete one
|
|
10090
|
+
* // ... filter to delete one MissionPrefill
|
|
9975
10091
|
* }
|
|
9976
10092
|
* })
|
|
9977
10093
|
*
|
|
9978
10094
|
*/
|
|
9979
|
-
delete<T extends
|
|
10095
|
+
delete<T extends MissionPrefillDeleteArgs>(args: SelectSubset<T, MissionPrefillDeleteArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
9980
10096
|
|
|
9981
10097
|
/**
|
|
9982
|
-
* Update one
|
|
9983
|
-
* @param {
|
|
10098
|
+
* Update one MissionPrefill.
|
|
10099
|
+
* @param {MissionPrefillUpdateArgs} args - Arguments to update one MissionPrefill.
|
|
9984
10100
|
* @example
|
|
9985
|
-
* // Update one
|
|
9986
|
-
* const
|
|
10101
|
+
* // Update one MissionPrefill
|
|
10102
|
+
* const missionPrefill = await prisma.missionPrefill.update({
|
|
9987
10103
|
* where: {
|
|
9988
10104
|
* // ... provide filter here
|
|
9989
10105
|
* },
|
|
@@ -9993,30 +10109,30 @@ export namespace Prisma {
|
|
|
9993
10109
|
* })
|
|
9994
10110
|
*
|
|
9995
10111
|
*/
|
|
9996
|
-
update<T extends
|
|
10112
|
+
update<T extends MissionPrefillUpdateArgs>(args: SelectSubset<T, MissionPrefillUpdateArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
9997
10113
|
|
|
9998
10114
|
/**
|
|
9999
|
-
* Delete zero or more
|
|
10000
|
-
* @param {
|
|
10115
|
+
* Delete zero or more MissionPrefills.
|
|
10116
|
+
* @param {MissionPrefillDeleteManyArgs} args - Arguments to filter MissionPrefills to delete.
|
|
10001
10117
|
* @example
|
|
10002
|
-
* // Delete a few
|
|
10003
|
-
* const { count } = await prisma.
|
|
10118
|
+
* // Delete a few MissionPrefills
|
|
10119
|
+
* const { count } = await prisma.missionPrefill.deleteMany({
|
|
10004
10120
|
* where: {
|
|
10005
10121
|
* // ... provide filter here
|
|
10006
10122
|
* }
|
|
10007
10123
|
* })
|
|
10008
10124
|
*
|
|
10009
10125
|
*/
|
|
10010
|
-
deleteMany<T extends
|
|
10126
|
+
deleteMany<T extends MissionPrefillDeleteManyArgs>(args?: SelectSubset<T, MissionPrefillDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
10011
10127
|
|
|
10012
10128
|
/**
|
|
10013
|
-
* Update zero or more
|
|
10129
|
+
* Update zero or more MissionPrefills.
|
|
10014
10130
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10015
10131
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10016
|
-
* @param {
|
|
10132
|
+
* @param {MissionPrefillUpdateManyArgs} args - Arguments to update one or more rows.
|
|
10017
10133
|
* @example
|
|
10018
|
-
* // Update many
|
|
10019
|
-
* const
|
|
10134
|
+
* // Update many MissionPrefills
|
|
10135
|
+
* const missionPrefill = await prisma.missionPrefill.updateMany({
|
|
10020
10136
|
* where: {
|
|
10021
10137
|
* // ... provide filter here
|
|
10022
10138
|
* },
|
|
@@ -10026,79 +10142,79 @@ export namespace Prisma {
|
|
|
10026
10142
|
* })
|
|
10027
10143
|
*
|
|
10028
10144
|
*/
|
|
10029
|
-
updateMany<T extends
|
|
10145
|
+
updateMany<T extends MissionPrefillUpdateManyArgs>(args: SelectSubset<T, MissionPrefillUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
10030
10146
|
|
|
10031
10147
|
/**
|
|
10032
|
-
* Create or update one
|
|
10033
|
-
* @param {
|
|
10148
|
+
* Create or update one MissionPrefill.
|
|
10149
|
+
* @param {MissionPrefillUpsertArgs} args - Arguments to update or create a MissionPrefill.
|
|
10034
10150
|
* @example
|
|
10035
|
-
* // Update or create a
|
|
10036
|
-
* const
|
|
10151
|
+
* // Update or create a MissionPrefill
|
|
10152
|
+
* const missionPrefill = await prisma.missionPrefill.upsert({
|
|
10037
10153
|
* create: {
|
|
10038
|
-
* // ... data to create a
|
|
10154
|
+
* // ... data to create a MissionPrefill
|
|
10039
10155
|
* },
|
|
10040
10156
|
* update: {
|
|
10041
10157
|
* // ... in case it already exists, update
|
|
10042
10158
|
* },
|
|
10043
10159
|
* where: {
|
|
10044
|
-
* // ... the filter for the
|
|
10160
|
+
* // ... the filter for the MissionPrefill we want to update
|
|
10045
10161
|
* }
|
|
10046
10162
|
* })
|
|
10047
10163
|
*/
|
|
10048
|
-
upsert<T extends
|
|
10164
|
+
upsert<T extends MissionPrefillUpsertArgs>(args: SelectSubset<T, MissionPrefillUpsertArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
10049
10165
|
|
|
10050
10166
|
/**
|
|
10051
|
-
* Find zero or more
|
|
10052
|
-
* @param {
|
|
10167
|
+
* Find zero or more MissionPrefills that matches the filter.
|
|
10168
|
+
* @param {MissionPrefillFindRawArgs} args - Select which filters you would like to apply.
|
|
10053
10169
|
* @example
|
|
10054
|
-
* const
|
|
10170
|
+
* const missionPrefill = await prisma.missionPrefill.findRaw({
|
|
10055
10171
|
* filter: { age: { $gt: 25 } }
|
|
10056
10172
|
* })
|
|
10057
10173
|
*/
|
|
10058
|
-
findRaw(args?:
|
|
10174
|
+
findRaw(args?: MissionPrefillFindRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
10059
10175
|
|
|
10060
10176
|
/**
|
|
10061
|
-
* Perform aggregation operations on a
|
|
10062
|
-
* @param {
|
|
10177
|
+
* Perform aggregation operations on a MissionPrefill.
|
|
10178
|
+
* @param {MissionPrefillAggregateRawArgs} args - Select which aggregations you would like to apply.
|
|
10063
10179
|
* @example
|
|
10064
|
-
* const
|
|
10180
|
+
* const missionPrefill = await prisma.missionPrefill.aggregateRaw({
|
|
10065
10181
|
* pipeline: [
|
|
10066
10182
|
* { $match: { status: "registered" } },
|
|
10067
10183
|
* { $group: { _id: "$country", total: { $sum: 1 } } }
|
|
10068
10184
|
* ]
|
|
10069
10185
|
* })
|
|
10070
10186
|
*/
|
|
10071
|
-
aggregateRaw(args?:
|
|
10187
|
+
aggregateRaw(args?: MissionPrefillAggregateRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
10072
10188
|
|
|
10073
10189
|
|
|
10074
10190
|
/**
|
|
10075
|
-
* Count the number of
|
|
10191
|
+
* Count the number of MissionPrefills.
|
|
10076
10192
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10077
10193
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10078
|
-
* @param {
|
|
10194
|
+
* @param {MissionPrefillCountArgs} args - Arguments to filter MissionPrefills to count.
|
|
10079
10195
|
* @example
|
|
10080
|
-
* // Count the number of
|
|
10081
|
-
* const count = await prisma.
|
|
10196
|
+
* // Count the number of MissionPrefills
|
|
10197
|
+
* const count = await prisma.missionPrefill.count({
|
|
10082
10198
|
* where: {
|
|
10083
|
-
* // ... the filter for the
|
|
10199
|
+
* // ... the filter for the MissionPrefills we want to count
|
|
10084
10200
|
* }
|
|
10085
10201
|
* })
|
|
10086
10202
|
**/
|
|
10087
|
-
count<T extends
|
|
10088
|
-
args?: Subset<T,
|
|
10203
|
+
count<T extends MissionPrefillCountArgs>(
|
|
10204
|
+
args?: Subset<T, MissionPrefillCountArgs>,
|
|
10089
10205
|
): Prisma.PrismaPromise<
|
|
10090
10206
|
T extends $Utils.Record<'select', any>
|
|
10091
10207
|
? T['select'] extends true
|
|
10092
10208
|
? number
|
|
10093
|
-
: GetScalarType<T['select'],
|
|
10209
|
+
: GetScalarType<T['select'], MissionPrefillCountAggregateOutputType>
|
|
10094
10210
|
: number
|
|
10095
10211
|
>
|
|
10096
10212
|
|
|
10097
10213
|
/**
|
|
10098
|
-
* Allows you to perform aggregations operations on a
|
|
10214
|
+
* Allows you to perform aggregations operations on a MissionPrefill.
|
|
10099
10215
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10100
10216
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10101
|
-
* @param {
|
|
10217
|
+
* @param {MissionPrefillAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
10102
10218
|
* @example
|
|
10103
10219
|
* // Ordered by age ascending
|
|
10104
10220
|
* // Where email contains prisma.io
|
|
@@ -10118,13 +10234,13 @@ export namespace Prisma {
|
|
|
10118
10234
|
* take: 10,
|
|
10119
10235
|
* })
|
|
10120
10236
|
**/
|
|
10121
|
-
aggregate<T extends
|
|
10237
|
+
aggregate<T extends MissionPrefillAggregateArgs>(args: Subset<T, MissionPrefillAggregateArgs>): Prisma.PrismaPromise<GetMissionPrefillAggregateType<T>>
|
|
10122
10238
|
|
|
10123
10239
|
/**
|
|
10124
|
-
* Group by
|
|
10240
|
+
* Group by MissionPrefill.
|
|
10125
10241
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10126
10242
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10127
|
-
* @param {
|
|
10243
|
+
* @param {MissionPrefillGroupByArgs} args - Group by arguments.
|
|
10128
10244
|
* @example
|
|
10129
10245
|
* // Group by city, order by createdAt, get count
|
|
10130
10246
|
* const result = await prisma.user.groupBy({
|
|
@@ -10139,14 +10255,14 @@ export namespace Prisma {
|
|
|
10139
10255
|
*
|
|
10140
10256
|
**/
|
|
10141
10257
|
groupBy<
|
|
10142
|
-
T extends
|
|
10258
|
+
T extends MissionPrefillGroupByArgs,
|
|
10143
10259
|
HasSelectOrTake extends Or<
|
|
10144
10260
|
Extends<'skip', Keys<T>>,
|
|
10145
10261
|
Extends<'take', Keys<T>>
|
|
10146
10262
|
>,
|
|
10147
10263
|
OrderByArg extends True extends HasSelectOrTake
|
|
10148
|
-
? { orderBy:
|
|
10149
|
-
: { orderBy?:
|
|
10264
|
+
? { orderBy: MissionPrefillGroupByArgs['orderBy'] }
|
|
10265
|
+
: { orderBy?: MissionPrefillGroupByArgs['orderBy'] },
|
|
10150
10266
|
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
10151
10267
|
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
10152
10268
|
ByValid extends Has<ByFields, OrderFields>,
|
|
@@ -10195,20 +10311,20 @@ export namespace Prisma {
|
|
|
10195
10311
|
? never
|
|
10196
10312
|
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
10197
10313
|
}[OrderFields]
|
|
10198
|
-
>(args: SubsetIntersection<T,
|
|
10314
|
+
>(args: SubsetIntersection<T, MissionPrefillGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetMissionPrefillGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
10199
10315
|
/**
|
|
10200
|
-
* Fields of the
|
|
10316
|
+
* Fields of the MissionPrefill model
|
|
10201
10317
|
*/
|
|
10202
|
-
readonly fields:
|
|
10318
|
+
readonly fields: MissionPrefillFieldRefs;
|
|
10203
10319
|
}
|
|
10204
10320
|
|
|
10205
10321
|
/**
|
|
10206
|
-
* The delegate class that acts as a "Promise-like" for
|
|
10322
|
+
* The delegate class that acts as a "Promise-like" for MissionPrefill.
|
|
10207
10323
|
* Why is this prefixed with `Prisma__`?
|
|
10208
10324
|
* Because we want to prevent naming conflicts as mentioned in
|
|
10209
10325
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
10210
10326
|
*/
|
|
10211
|
-
export interface
|
|
10327
|
+
export interface Prisma__MissionPrefillClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
10212
10328
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
10213
10329
|
user<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
10214
10330
|
/**
|
|
@@ -10237,321 +10353,321 @@ export namespace Prisma {
|
|
|
10237
10353
|
|
|
10238
10354
|
|
|
10239
10355
|
/**
|
|
10240
|
-
* Fields of the
|
|
10356
|
+
* Fields of the MissionPrefill model
|
|
10241
10357
|
*/
|
|
10242
|
-
interface
|
|
10243
|
-
readonly id: FieldRef<"
|
|
10244
|
-
readonly userId: FieldRef<"
|
|
10245
|
-
readonly missionName: FieldRef<"
|
|
10246
|
-
readonly plannedStart: FieldRef<"
|
|
10247
|
-
readonly companyDescription: FieldRef<"
|
|
10248
|
-
readonly missionDescription: FieldRef<"
|
|
10249
|
-
readonly timezone: FieldRef<"
|
|
10250
|
-
readonly openRoles: FieldRef<"
|
|
10251
|
-
readonly status: FieldRef<"
|
|
10252
|
-
readonly createdAt: FieldRef<"
|
|
10253
|
-
readonly updatedAt: FieldRef<"
|
|
10358
|
+
interface MissionPrefillFieldRefs {
|
|
10359
|
+
readonly id: FieldRef<"MissionPrefill", 'String'>
|
|
10360
|
+
readonly userId: FieldRef<"MissionPrefill", 'String'>
|
|
10361
|
+
readonly missionName: FieldRef<"MissionPrefill", 'String'>
|
|
10362
|
+
readonly plannedStart: FieldRef<"MissionPrefill", 'String'>
|
|
10363
|
+
readonly companyDescription: FieldRef<"MissionPrefill", 'String'>
|
|
10364
|
+
readonly missionDescription: FieldRef<"MissionPrefill", 'String'>
|
|
10365
|
+
readonly timezone: FieldRef<"MissionPrefill", 'String'>
|
|
10366
|
+
readonly openRoles: FieldRef<"MissionPrefill", 'Json'>
|
|
10367
|
+
readonly status: FieldRef<"MissionPrefill", 'String'>
|
|
10368
|
+
readonly createdAt: FieldRef<"MissionPrefill", 'DateTime'>
|
|
10369
|
+
readonly updatedAt: FieldRef<"MissionPrefill", 'DateTime'>
|
|
10254
10370
|
}
|
|
10255
10371
|
|
|
10256
10372
|
|
|
10257
10373
|
// Custom InputTypes
|
|
10258
10374
|
/**
|
|
10259
|
-
*
|
|
10375
|
+
* MissionPrefill findUnique
|
|
10260
10376
|
*/
|
|
10261
|
-
export type
|
|
10377
|
+
export type MissionPrefillFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10262
10378
|
/**
|
|
10263
|
-
* Select specific fields to fetch from the
|
|
10379
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10264
10380
|
*/
|
|
10265
|
-
select?:
|
|
10381
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10266
10382
|
/**
|
|
10267
10383
|
* Choose, which related nodes to fetch as well
|
|
10268
10384
|
*/
|
|
10269
|
-
include?:
|
|
10385
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10270
10386
|
/**
|
|
10271
|
-
* Filter, which
|
|
10387
|
+
* Filter, which MissionPrefill to fetch.
|
|
10272
10388
|
*/
|
|
10273
|
-
where:
|
|
10389
|
+
where: MissionPrefillWhereUniqueInput
|
|
10274
10390
|
}
|
|
10275
10391
|
|
|
10276
10392
|
/**
|
|
10277
|
-
*
|
|
10393
|
+
* MissionPrefill findUniqueOrThrow
|
|
10278
10394
|
*/
|
|
10279
|
-
export type
|
|
10395
|
+
export type MissionPrefillFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10280
10396
|
/**
|
|
10281
|
-
* Select specific fields to fetch from the
|
|
10397
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10282
10398
|
*/
|
|
10283
|
-
select?:
|
|
10399
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10284
10400
|
/**
|
|
10285
10401
|
* Choose, which related nodes to fetch as well
|
|
10286
10402
|
*/
|
|
10287
|
-
include?:
|
|
10403
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10288
10404
|
/**
|
|
10289
|
-
* Filter, which
|
|
10405
|
+
* Filter, which MissionPrefill to fetch.
|
|
10290
10406
|
*/
|
|
10291
|
-
where:
|
|
10407
|
+
where: MissionPrefillWhereUniqueInput
|
|
10292
10408
|
}
|
|
10293
10409
|
|
|
10294
10410
|
/**
|
|
10295
|
-
*
|
|
10411
|
+
* MissionPrefill findFirst
|
|
10296
10412
|
*/
|
|
10297
|
-
export type
|
|
10413
|
+
export type MissionPrefillFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10298
10414
|
/**
|
|
10299
|
-
* Select specific fields to fetch from the
|
|
10415
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10300
10416
|
*/
|
|
10301
|
-
select?:
|
|
10417
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10302
10418
|
/**
|
|
10303
10419
|
* Choose, which related nodes to fetch as well
|
|
10304
10420
|
*/
|
|
10305
|
-
include?:
|
|
10421
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10306
10422
|
/**
|
|
10307
|
-
* Filter, which
|
|
10423
|
+
* Filter, which MissionPrefill to fetch.
|
|
10308
10424
|
*/
|
|
10309
|
-
where?:
|
|
10425
|
+
where?: MissionPrefillWhereInput
|
|
10310
10426
|
/**
|
|
10311
10427
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
10312
10428
|
*
|
|
10313
|
-
* Determine the order of
|
|
10429
|
+
* Determine the order of MissionPrefills to fetch.
|
|
10314
10430
|
*/
|
|
10315
|
-
orderBy?:
|
|
10431
|
+
orderBy?: MissionPrefillOrderByWithRelationInput | MissionPrefillOrderByWithRelationInput[]
|
|
10316
10432
|
/**
|
|
10317
10433
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
10318
10434
|
*
|
|
10319
|
-
* Sets the position for searching for
|
|
10435
|
+
* Sets the position for searching for MissionPrefills.
|
|
10320
10436
|
*/
|
|
10321
|
-
cursor?:
|
|
10437
|
+
cursor?: MissionPrefillWhereUniqueInput
|
|
10322
10438
|
/**
|
|
10323
10439
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10324
10440
|
*
|
|
10325
|
-
* Take `±n`
|
|
10441
|
+
* Take `±n` MissionPrefills from the position of the cursor.
|
|
10326
10442
|
*/
|
|
10327
10443
|
take?: number
|
|
10328
10444
|
/**
|
|
10329
10445
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10330
10446
|
*
|
|
10331
|
-
* Skip the first `n`
|
|
10447
|
+
* Skip the first `n` MissionPrefills.
|
|
10332
10448
|
*/
|
|
10333
10449
|
skip?: number
|
|
10334
10450
|
/**
|
|
10335
10451
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
10336
10452
|
*
|
|
10337
|
-
* Filter by unique combinations of
|
|
10453
|
+
* Filter by unique combinations of MissionPrefills.
|
|
10338
10454
|
*/
|
|
10339
|
-
distinct?:
|
|
10455
|
+
distinct?: MissionPrefillScalarFieldEnum | MissionPrefillScalarFieldEnum[]
|
|
10340
10456
|
}
|
|
10341
10457
|
|
|
10342
10458
|
/**
|
|
10343
|
-
*
|
|
10459
|
+
* MissionPrefill findFirstOrThrow
|
|
10344
10460
|
*/
|
|
10345
|
-
export type
|
|
10461
|
+
export type MissionPrefillFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10346
10462
|
/**
|
|
10347
|
-
* Select specific fields to fetch from the
|
|
10463
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10348
10464
|
*/
|
|
10349
|
-
select?:
|
|
10465
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10350
10466
|
/**
|
|
10351
10467
|
* Choose, which related nodes to fetch as well
|
|
10352
10468
|
*/
|
|
10353
|
-
include?:
|
|
10469
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10354
10470
|
/**
|
|
10355
|
-
* Filter, which
|
|
10471
|
+
* Filter, which MissionPrefill to fetch.
|
|
10356
10472
|
*/
|
|
10357
|
-
where?:
|
|
10473
|
+
where?: MissionPrefillWhereInput
|
|
10358
10474
|
/**
|
|
10359
10475
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
10360
10476
|
*
|
|
10361
|
-
* Determine the order of
|
|
10477
|
+
* Determine the order of MissionPrefills to fetch.
|
|
10362
10478
|
*/
|
|
10363
|
-
orderBy?:
|
|
10479
|
+
orderBy?: MissionPrefillOrderByWithRelationInput | MissionPrefillOrderByWithRelationInput[]
|
|
10364
10480
|
/**
|
|
10365
10481
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
10366
10482
|
*
|
|
10367
|
-
* Sets the position for searching for
|
|
10483
|
+
* Sets the position for searching for MissionPrefills.
|
|
10368
10484
|
*/
|
|
10369
|
-
cursor?:
|
|
10485
|
+
cursor?: MissionPrefillWhereUniqueInput
|
|
10370
10486
|
/**
|
|
10371
10487
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10372
10488
|
*
|
|
10373
|
-
* Take `±n`
|
|
10489
|
+
* Take `±n` MissionPrefills from the position of the cursor.
|
|
10374
10490
|
*/
|
|
10375
10491
|
take?: number
|
|
10376
10492
|
/**
|
|
10377
10493
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10378
10494
|
*
|
|
10379
|
-
* Skip the first `n`
|
|
10495
|
+
* Skip the first `n` MissionPrefills.
|
|
10380
10496
|
*/
|
|
10381
10497
|
skip?: number
|
|
10382
10498
|
/**
|
|
10383
10499
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
10384
10500
|
*
|
|
10385
|
-
* Filter by unique combinations of
|
|
10501
|
+
* Filter by unique combinations of MissionPrefills.
|
|
10386
10502
|
*/
|
|
10387
|
-
distinct?:
|
|
10503
|
+
distinct?: MissionPrefillScalarFieldEnum | MissionPrefillScalarFieldEnum[]
|
|
10388
10504
|
}
|
|
10389
10505
|
|
|
10390
10506
|
/**
|
|
10391
|
-
*
|
|
10507
|
+
* MissionPrefill findMany
|
|
10392
10508
|
*/
|
|
10393
|
-
export type
|
|
10509
|
+
export type MissionPrefillFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10394
10510
|
/**
|
|
10395
|
-
* Select specific fields to fetch from the
|
|
10511
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10396
10512
|
*/
|
|
10397
|
-
select?:
|
|
10513
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10398
10514
|
/**
|
|
10399
10515
|
* Choose, which related nodes to fetch as well
|
|
10400
10516
|
*/
|
|
10401
|
-
include?:
|
|
10517
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10402
10518
|
/**
|
|
10403
|
-
* Filter, which
|
|
10519
|
+
* Filter, which MissionPrefills to fetch.
|
|
10404
10520
|
*/
|
|
10405
|
-
where?:
|
|
10521
|
+
where?: MissionPrefillWhereInput
|
|
10406
10522
|
/**
|
|
10407
10523
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
10408
10524
|
*
|
|
10409
|
-
* Determine the order of
|
|
10525
|
+
* Determine the order of MissionPrefills to fetch.
|
|
10410
10526
|
*/
|
|
10411
|
-
orderBy?:
|
|
10527
|
+
orderBy?: MissionPrefillOrderByWithRelationInput | MissionPrefillOrderByWithRelationInput[]
|
|
10412
10528
|
/**
|
|
10413
10529
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
10414
10530
|
*
|
|
10415
|
-
* Sets the position for listing
|
|
10531
|
+
* Sets the position for listing MissionPrefills.
|
|
10416
10532
|
*/
|
|
10417
|
-
cursor?:
|
|
10533
|
+
cursor?: MissionPrefillWhereUniqueInput
|
|
10418
10534
|
/**
|
|
10419
10535
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10420
10536
|
*
|
|
10421
|
-
* Take `±n`
|
|
10537
|
+
* Take `±n` MissionPrefills from the position of the cursor.
|
|
10422
10538
|
*/
|
|
10423
10539
|
take?: number
|
|
10424
10540
|
/**
|
|
10425
10541
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10426
10542
|
*
|
|
10427
|
-
* Skip the first `n`
|
|
10543
|
+
* Skip the first `n` MissionPrefills.
|
|
10428
10544
|
*/
|
|
10429
10545
|
skip?: number
|
|
10430
|
-
distinct?:
|
|
10546
|
+
distinct?: MissionPrefillScalarFieldEnum | MissionPrefillScalarFieldEnum[]
|
|
10431
10547
|
}
|
|
10432
10548
|
|
|
10433
10549
|
/**
|
|
10434
|
-
*
|
|
10550
|
+
* MissionPrefill create
|
|
10435
10551
|
*/
|
|
10436
|
-
export type
|
|
10552
|
+
export type MissionPrefillCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10437
10553
|
/**
|
|
10438
|
-
* Select specific fields to fetch from the
|
|
10554
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10439
10555
|
*/
|
|
10440
|
-
select?:
|
|
10556
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10441
10557
|
/**
|
|
10442
10558
|
* Choose, which related nodes to fetch as well
|
|
10443
10559
|
*/
|
|
10444
|
-
include?:
|
|
10560
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10445
10561
|
/**
|
|
10446
|
-
* The data needed to create a
|
|
10562
|
+
* The data needed to create a MissionPrefill.
|
|
10447
10563
|
*/
|
|
10448
|
-
data: XOR<
|
|
10564
|
+
data: XOR<MissionPrefillCreateInput, MissionPrefillUncheckedCreateInput>
|
|
10449
10565
|
}
|
|
10450
10566
|
|
|
10451
10567
|
/**
|
|
10452
|
-
*
|
|
10568
|
+
* MissionPrefill createMany
|
|
10453
10569
|
*/
|
|
10454
|
-
export type
|
|
10570
|
+
export type MissionPrefillCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10455
10571
|
/**
|
|
10456
|
-
* The data used to create many
|
|
10572
|
+
* The data used to create many MissionPrefills.
|
|
10457
10573
|
*/
|
|
10458
|
-
data:
|
|
10574
|
+
data: MissionPrefillCreateManyInput | MissionPrefillCreateManyInput[]
|
|
10459
10575
|
}
|
|
10460
10576
|
|
|
10461
10577
|
/**
|
|
10462
|
-
*
|
|
10578
|
+
* MissionPrefill update
|
|
10463
10579
|
*/
|
|
10464
|
-
export type
|
|
10580
|
+
export type MissionPrefillUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10465
10581
|
/**
|
|
10466
|
-
* Select specific fields to fetch from the
|
|
10582
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10467
10583
|
*/
|
|
10468
|
-
select?:
|
|
10584
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10469
10585
|
/**
|
|
10470
10586
|
* Choose, which related nodes to fetch as well
|
|
10471
10587
|
*/
|
|
10472
|
-
include?:
|
|
10588
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10473
10589
|
/**
|
|
10474
|
-
* The data needed to update a
|
|
10590
|
+
* The data needed to update a MissionPrefill.
|
|
10475
10591
|
*/
|
|
10476
|
-
data: XOR<
|
|
10592
|
+
data: XOR<MissionPrefillUpdateInput, MissionPrefillUncheckedUpdateInput>
|
|
10477
10593
|
/**
|
|
10478
|
-
* Choose, which
|
|
10594
|
+
* Choose, which MissionPrefill to update.
|
|
10479
10595
|
*/
|
|
10480
|
-
where:
|
|
10596
|
+
where: MissionPrefillWhereUniqueInput
|
|
10481
10597
|
}
|
|
10482
10598
|
|
|
10483
10599
|
/**
|
|
10484
|
-
*
|
|
10600
|
+
* MissionPrefill updateMany
|
|
10485
10601
|
*/
|
|
10486
|
-
export type
|
|
10602
|
+
export type MissionPrefillUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10487
10603
|
/**
|
|
10488
|
-
* The data used to update
|
|
10604
|
+
* The data used to update MissionPrefills.
|
|
10489
10605
|
*/
|
|
10490
|
-
data: XOR<
|
|
10606
|
+
data: XOR<MissionPrefillUpdateManyMutationInput, MissionPrefillUncheckedUpdateManyInput>
|
|
10491
10607
|
/**
|
|
10492
|
-
* Filter which
|
|
10608
|
+
* Filter which MissionPrefills to update
|
|
10493
10609
|
*/
|
|
10494
|
-
where?:
|
|
10610
|
+
where?: MissionPrefillWhereInput
|
|
10495
10611
|
}
|
|
10496
10612
|
|
|
10497
10613
|
/**
|
|
10498
|
-
*
|
|
10614
|
+
* MissionPrefill upsert
|
|
10499
10615
|
*/
|
|
10500
|
-
export type
|
|
10616
|
+
export type MissionPrefillUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10501
10617
|
/**
|
|
10502
|
-
* Select specific fields to fetch from the
|
|
10618
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10503
10619
|
*/
|
|
10504
|
-
select?:
|
|
10620
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10505
10621
|
/**
|
|
10506
10622
|
* Choose, which related nodes to fetch as well
|
|
10507
10623
|
*/
|
|
10508
|
-
include?:
|
|
10624
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10509
10625
|
/**
|
|
10510
|
-
* The filter to search for the
|
|
10626
|
+
* The filter to search for the MissionPrefill to update in case it exists.
|
|
10511
10627
|
*/
|
|
10512
|
-
where:
|
|
10628
|
+
where: MissionPrefillWhereUniqueInput
|
|
10513
10629
|
/**
|
|
10514
|
-
* In case the
|
|
10630
|
+
* In case the MissionPrefill found by the `where` argument doesn't exist, create a new MissionPrefill with this data.
|
|
10515
10631
|
*/
|
|
10516
|
-
create: XOR<
|
|
10632
|
+
create: XOR<MissionPrefillCreateInput, MissionPrefillUncheckedCreateInput>
|
|
10517
10633
|
/**
|
|
10518
|
-
* In case the
|
|
10634
|
+
* In case the MissionPrefill was found with the provided `where` argument, update it with this data.
|
|
10519
10635
|
*/
|
|
10520
|
-
update: XOR<
|
|
10636
|
+
update: XOR<MissionPrefillUpdateInput, MissionPrefillUncheckedUpdateInput>
|
|
10521
10637
|
}
|
|
10522
10638
|
|
|
10523
10639
|
/**
|
|
10524
|
-
*
|
|
10640
|
+
* MissionPrefill delete
|
|
10525
10641
|
*/
|
|
10526
|
-
export type
|
|
10642
|
+
export type MissionPrefillDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10527
10643
|
/**
|
|
10528
|
-
* Select specific fields to fetch from the
|
|
10644
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10529
10645
|
*/
|
|
10530
|
-
select?:
|
|
10646
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10531
10647
|
/**
|
|
10532
10648
|
* Choose, which related nodes to fetch as well
|
|
10533
10649
|
*/
|
|
10534
|
-
include?:
|
|
10650
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10535
10651
|
/**
|
|
10536
|
-
* Filter which
|
|
10652
|
+
* Filter which MissionPrefill to delete.
|
|
10537
10653
|
*/
|
|
10538
|
-
where:
|
|
10654
|
+
where: MissionPrefillWhereUniqueInput
|
|
10539
10655
|
}
|
|
10540
10656
|
|
|
10541
10657
|
/**
|
|
10542
|
-
*
|
|
10658
|
+
* MissionPrefill deleteMany
|
|
10543
10659
|
*/
|
|
10544
|
-
export type
|
|
10660
|
+
export type MissionPrefillDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10545
10661
|
/**
|
|
10546
|
-
* Filter which
|
|
10662
|
+
* Filter which MissionPrefills to delete
|
|
10547
10663
|
*/
|
|
10548
|
-
where?:
|
|
10664
|
+
where?: MissionPrefillWhereInput
|
|
10549
10665
|
}
|
|
10550
10666
|
|
|
10551
10667
|
/**
|
|
10552
|
-
*
|
|
10668
|
+
* MissionPrefill findRaw
|
|
10553
10669
|
*/
|
|
10554
|
-
export type
|
|
10670
|
+
export type MissionPrefillFindRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10555
10671
|
/**
|
|
10556
10672
|
* The query predicate filter. If unspecified, then all documents in the collection will match the predicate. ${@link https://docs.mongodb.com/manual/reference/operator/query MongoDB Docs}.
|
|
10557
10673
|
*/
|
|
@@ -10563,9 +10679,9 @@ export namespace Prisma {
|
|
|
10563
10679
|
}
|
|
10564
10680
|
|
|
10565
10681
|
/**
|
|
10566
|
-
*
|
|
10682
|
+
* MissionPrefill aggregateRaw
|
|
10567
10683
|
*/
|
|
10568
|
-
export type
|
|
10684
|
+
export type MissionPrefillAggregateRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10569
10685
|
/**
|
|
10570
10686
|
* An array of aggregation stages to process and transform the document stream via the aggregation pipeline. ${@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline MongoDB Docs}.
|
|
10571
10687
|
*/
|
|
@@ -10577,17 +10693,17 @@ export namespace Prisma {
|
|
|
10577
10693
|
}
|
|
10578
10694
|
|
|
10579
10695
|
/**
|
|
10580
|
-
*
|
|
10696
|
+
* MissionPrefill without action
|
|
10581
10697
|
*/
|
|
10582
|
-
export type
|
|
10698
|
+
export type MissionPrefillDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10583
10699
|
/**
|
|
10584
|
-
* Select specific fields to fetch from the
|
|
10700
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10585
10701
|
*/
|
|
10586
|
-
select?:
|
|
10702
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10587
10703
|
/**
|
|
10588
10704
|
* Choose, which related nodes to fetch as well
|
|
10589
10705
|
*/
|
|
10590
|
-
include?:
|
|
10706
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10591
10707
|
}
|
|
10592
10708
|
|
|
10593
10709
|
|
|
@@ -14722,11 +14838,12 @@ export namespace Prisma {
|
|
|
14722
14838
|
createdAt?: boolean
|
|
14723
14839
|
titles?: boolean
|
|
14724
14840
|
scrubbed?: boolean
|
|
14841
|
+
clientRegistration?: boolean | ClientRegistrationDefaultArgs<ExtArgs>
|
|
14725
14842
|
createdMissionsModels?: boolean | User$createdMissionsModelsArgs<ExtArgs>
|
|
14726
14843
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
14727
14844
|
authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
|
|
14728
14845
|
modifiedMissionSpecs?: boolean | User$modifiedMissionSpecsArgs<ExtArgs>
|
|
14729
|
-
|
|
14846
|
+
missionPrefills?: boolean | User$missionPrefillsArgs<ExtArgs>
|
|
14730
14847
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
14731
14848
|
}, ExtArgs["result"]["user"]>
|
|
14732
14849
|
|
|
@@ -14751,7 +14868,7 @@ export namespace Prisma {
|
|
|
14751
14868
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
14752
14869
|
authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
|
|
14753
14870
|
modifiedMissionSpecs?: boolean | User$modifiedMissionSpecsArgs<ExtArgs>
|
|
14754
|
-
|
|
14871
|
+
missionPrefills?: boolean | User$missionPrefillsArgs<ExtArgs>
|
|
14755
14872
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
14756
14873
|
}
|
|
14757
14874
|
|
|
@@ -14762,7 +14879,7 @@ export namespace Prisma {
|
|
|
14762
14879
|
ownedMissionsModels: Prisma.$MissionPayload<ExtArgs>[]
|
|
14763
14880
|
authoredMissionSpecs: Prisma.$MissionSpecPayload<ExtArgs>[]
|
|
14764
14881
|
modifiedMissionSpecs: Prisma.$MissionSpecPayload<ExtArgs>[]
|
|
14765
|
-
|
|
14882
|
+
missionPrefills: Prisma.$MissionPrefillPayload<ExtArgs>[]
|
|
14766
14883
|
}
|
|
14767
14884
|
scalars: $Extensions.GetPayloadResult<{
|
|
14768
14885
|
id: string
|
|
@@ -14778,7 +14895,9 @@ export namespace Prisma {
|
|
|
14778
14895
|
titles: string[]
|
|
14779
14896
|
scrubbed: string | null
|
|
14780
14897
|
}, ExtArgs["result"]["user"]>
|
|
14781
|
-
composites: {
|
|
14898
|
+
composites: {
|
|
14899
|
+
clientRegistration: Prisma.$ClientRegistrationPayload | null
|
|
14900
|
+
}
|
|
14782
14901
|
}
|
|
14783
14902
|
|
|
14784
14903
|
type UserGetPayload<S extends boolean | null | undefined | UserDefaultArgs> = $Result.GetResult<Prisma.$UserPayload, S>
|
|
@@ -15144,7 +15263,7 @@ export namespace Prisma {
|
|
|
15144
15263
|
ownedMissionsModels<T extends User$ownedMissionsModelsArgs<ExtArgs> = {}>(args?: Subset<T, User$ownedMissionsModelsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionPayload<ExtArgs>, T, "findMany"> | Null>
|
|
15145
15264
|
authoredMissionSpecs<T extends User$authoredMissionSpecsArgs<ExtArgs> = {}>(args?: Subset<T, User$authoredMissionSpecsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findMany"> | Null>
|
|
15146
15265
|
modifiedMissionSpecs<T extends User$modifiedMissionSpecsArgs<ExtArgs> = {}>(args?: Subset<T, User$modifiedMissionSpecsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findMany"> | Null>
|
|
15147
|
-
|
|
15266
|
+
missionPrefills<T extends User$missionPrefillsArgs<ExtArgs> = {}>(args?: Subset<T, User$missionPrefillsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "findMany"> | Null>
|
|
15148
15267
|
/**
|
|
15149
15268
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
15150
15269
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -15592,23 +15711,23 @@ export namespace Prisma {
|
|
|
15592
15711
|
}
|
|
15593
15712
|
|
|
15594
15713
|
/**
|
|
15595
|
-
* User.
|
|
15714
|
+
* User.missionPrefills
|
|
15596
15715
|
*/
|
|
15597
|
-
export type User$
|
|
15716
|
+
export type User$missionPrefillsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
15598
15717
|
/**
|
|
15599
|
-
* Select specific fields to fetch from the
|
|
15718
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
15600
15719
|
*/
|
|
15601
|
-
select?:
|
|
15720
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
15602
15721
|
/**
|
|
15603
15722
|
* Choose, which related nodes to fetch as well
|
|
15604
15723
|
*/
|
|
15605
|
-
include?:
|
|
15606
|
-
where?:
|
|
15607
|
-
orderBy?:
|
|
15608
|
-
cursor?:
|
|
15724
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
15725
|
+
where?: MissionPrefillWhereInput
|
|
15726
|
+
orderBy?: MissionPrefillOrderByWithRelationInput | MissionPrefillOrderByWithRelationInput[]
|
|
15727
|
+
cursor?: MissionPrefillWhereUniqueInput
|
|
15609
15728
|
take?: number
|
|
15610
15729
|
skip?: number
|
|
15611
|
-
distinct?:
|
|
15730
|
+
distinct?: MissionPrefillScalarFieldEnum | MissionPrefillScalarFieldEnum[]
|
|
15612
15731
|
}
|
|
15613
15732
|
|
|
15614
15733
|
/**
|
|
@@ -15736,7 +15855,7 @@ export namespace Prisma {
|
|
|
15736
15855
|
export type MissionScalarFieldEnum = (typeof MissionScalarFieldEnum)[keyof typeof MissionScalarFieldEnum]
|
|
15737
15856
|
|
|
15738
15857
|
|
|
15739
|
-
export const
|
|
15858
|
+
export const MissionPrefillScalarFieldEnum: {
|
|
15740
15859
|
id: 'id',
|
|
15741
15860
|
userId: 'userId',
|
|
15742
15861
|
missionName: 'missionName',
|
|
@@ -15750,7 +15869,7 @@ export namespace Prisma {
|
|
|
15750
15869
|
updatedAt: 'updatedAt'
|
|
15751
15870
|
};
|
|
15752
15871
|
|
|
15753
|
-
export type
|
|
15872
|
+
export type MissionPrefillScalarFieldEnum = (typeof MissionPrefillScalarFieldEnum)[keyof typeof MissionPrefillScalarFieldEnum]
|
|
15754
15873
|
|
|
15755
15874
|
|
|
15756
15875
|
export const MissionSpecScalarFieldEnum: {
|
|
@@ -16022,6 +16141,34 @@ export namespace Prisma {
|
|
|
16022
16141
|
*/
|
|
16023
16142
|
export type ListEnumMissionRoleStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'MissionRoleStatus[]'>
|
|
16024
16143
|
|
|
16144
|
+
|
|
16145
|
+
|
|
16146
|
+
/**
|
|
16147
|
+
* Reference to a field of type 'RegisterRequestType'
|
|
16148
|
+
*/
|
|
16149
|
+
export type EnumRegisterRequestTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'RegisterRequestType'>
|
|
16150
|
+
|
|
16151
|
+
|
|
16152
|
+
|
|
16153
|
+
/**
|
|
16154
|
+
* Reference to a field of type 'RegisterRequestType[]'
|
|
16155
|
+
*/
|
|
16156
|
+
export type ListEnumRegisterRequestTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'RegisterRequestType[]'>
|
|
16157
|
+
|
|
16158
|
+
|
|
16159
|
+
|
|
16160
|
+
/**
|
|
16161
|
+
* Reference to a field of type 'HiringTimeline'
|
|
16162
|
+
*/
|
|
16163
|
+
export type EnumHiringTimelineFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'HiringTimeline'>
|
|
16164
|
+
|
|
16165
|
+
|
|
16166
|
+
|
|
16167
|
+
/**
|
|
16168
|
+
* Reference to a field of type 'HiringTimeline[]'
|
|
16169
|
+
*/
|
|
16170
|
+
export type ListEnumHiringTimelineFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'HiringTimeline[]'>
|
|
16171
|
+
|
|
16025
16172
|
/**
|
|
16026
16173
|
* Deep Input Types
|
|
16027
16174
|
*/
|
|
@@ -16616,25 +16763,25 @@ export namespace Prisma {
|
|
|
16616
16763
|
timezone?: StringNullableWithAggregatesFilter<"Mission"> | string | null
|
|
16617
16764
|
}
|
|
16618
16765
|
|
|
16619
|
-
export type
|
|
16620
|
-
AND?:
|
|
16621
|
-
OR?:
|
|
16622
|
-
NOT?:
|
|
16623
|
-
id?: StringFilter<"
|
|
16624
|
-
userId?: StringFilter<"
|
|
16625
|
-
missionName?: StringNullableFilter<"
|
|
16626
|
-
plannedStart?: StringNullableFilter<"
|
|
16627
|
-
companyDescription?: StringNullableFilter<"
|
|
16628
|
-
missionDescription?: StringNullableFilter<"
|
|
16629
|
-
timezone?: StringNullableFilter<"
|
|
16630
|
-
openRoles?: JsonNullableFilter<"
|
|
16631
|
-
status?: StringFilter<"
|
|
16632
|
-
createdAt?: DateTimeFilter<"
|
|
16633
|
-
updatedAt?: DateTimeFilter<"
|
|
16766
|
+
export type MissionPrefillWhereInput = {
|
|
16767
|
+
AND?: MissionPrefillWhereInput | MissionPrefillWhereInput[]
|
|
16768
|
+
OR?: MissionPrefillWhereInput[]
|
|
16769
|
+
NOT?: MissionPrefillWhereInput | MissionPrefillWhereInput[]
|
|
16770
|
+
id?: StringFilter<"MissionPrefill"> | string
|
|
16771
|
+
userId?: StringFilter<"MissionPrefill"> | string
|
|
16772
|
+
missionName?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
16773
|
+
plannedStart?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
16774
|
+
companyDescription?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
16775
|
+
missionDescription?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
16776
|
+
timezone?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
16777
|
+
openRoles?: JsonNullableFilter<"MissionPrefill">
|
|
16778
|
+
status?: StringFilter<"MissionPrefill"> | string
|
|
16779
|
+
createdAt?: DateTimeFilter<"MissionPrefill"> | Date | string
|
|
16780
|
+
updatedAt?: DateTimeFilter<"MissionPrefill"> | Date | string
|
|
16634
16781
|
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
16635
16782
|
}
|
|
16636
16783
|
|
|
16637
|
-
export type
|
|
16784
|
+
export type MissionPrefillOrderByWithRelationInput = {
|
|
16638
16785
|
id?: SortOrder
|
|
16639
16786
|
userId?: SortOrder
|
|
16640
16787
|
missionName?: SortOrder
|
|
@@ -16649,25 +16796,25 @@ export namespace Prisma {
|
|
|
16649
16796
|
user?: UserOrderByWithRelationInput
|
|
16650
16797
|
}
|
|
16651
16798
|
|
|
16652
|
-
export type
|
|
16799
|
+
export type MissionPrefillWhereUniqueInput = Prisma.AtLeast<{
|
|
16653
16800
|
id?: string
|
|
16654
|
-
AND?:
|
|
16655
|
-
OR?:
|
|
16656
|
-
NOT?:
|
|
16657
|
-
userId?: StringFilter<"
|
|
16658
|
-
missionName?: StringNullableFilter<"
|
|
16659
|
-
plannedStart?: StringNullableFilter<"
|
|
16660
|
-
companyDescription?: StringNullableFilter<"
|
|
16661
|
-
missionDescription?: StringNullableFilter<"
|
|
16662
|
-
timezone?: StringNullableFilter<"
|
|
16663
|
-
openRoles?: JsonNullableFilter<"
|
|
16664
|
-
status?: StringFilter<"
|
|
16665
|
-
createdAt?: DateTimeFilter<"
|
|
16666
|
-
updatedAt?: DateTimeFilter<"
|
|
16801
|
+
AND?: MissionPrefillWhereInput | MissionPrefillWhereInput[]
|
|
16802
|
+
OR?: MissionPrefillWhereInput[]
|
|
16803
|
+
NOT?: MissionPrefillWhereInput | MissionPrefillWhereInput[]
|
|
16804
|
+
userId?: StringFilter<"MissionPrefill"> | string
|
|
16805
|
+
missionName?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
16806
|
+
plannedStart?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
16807
|
+
companyDescription?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
16808
|
+
missionDescription?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
16809
|
+
timezone?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
16810
|
+
openRoles?: JsonNullableFilter<"MissionPrefill">
|
|
16811
|
+
status?: StringFilter<"MissionPrefill"> | string
|
|
16812
|
+
createdAt?: DateTimeFilter<"MissionPrefill"> | Date | string
|
|
16813
|
+
updatedAt?: DateTimeFilter<"MissionPrefill"> | Date | string
|
|
16667
16814
|
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
16668
16815
|
}, "id">
|
|
16669
16816
|
|
|
16670
|
-
export type
|
|
16817
|
+
export type MissionPrefillOrderByWithAggregationInput = {
|
|
16671
16818
|
id?: SortOrder
|
|
16672
16819
|
userId?: SortOrder
|
|
16673
16820
|
missionName?: SortOrder
|
|
@@ -16679,26 +16826,26 @@ export namespace Prisma {
|
|
|
16679
16826
|
status?: SortOrder
|
|
16680
16827
|
createdAt?: SortOrder
|
|
16681
16828
|
updatedAt?: SortOrder
|
|
16682
|
-
_count?:
|
|
16683
|
-
_max?:
|
|
16684
|
-
_min?:
|
|
16685
|
-
}
|
|
16686
|
-
|
|
16687
|
-
export type
|
|
16688
|
-
AND?:
|
|
16689
|
-
OR?:
|
|
16690
|
-
NOT?:
|
|
16691
|
-
id?: StringWithAggregatesFilter<"
|
|
16692
|
-
userId?: StringWithAggregatesFilter<"
|
|
16693
|
-
missionName?: StringNullableWithAggregatesFilter<"
|
|
16694
|
-
plannedStart?: StringNullableWithAggregatesFilter<"
|
|
16695
|
-
companyDescription?: StringNullableWithAggregatesFilter<"
|
|
16696
|
-
missionDescription?: StringNullableWithAggregatesFilter<"
|
|
16697
|
-
timezone?: StringNullableWithAggregatesFilter<"
|
|
16698
|
-
openRoles?: JsonNullableWithAggregatesFilter<"
|
|
16699
|
-
status?: StringWithAggregatesFilter<"
|
|
16700
|
-
createdAt?: DateTimeWithAggregatesFilter<"
|
|
16701
|
-
updatedAt?: DateTimeWithAggregatesFilter<"
|
|
16829
|
+
_count?: MissionPrefillCountOrderByAggregateInput
|
|
16830
|
+
_max?: MissionPrefillMaxOrderByAggregateInput
|
|
16831
|
+
_min?: MissionPrefillMinOrderByAggregateInput
|
|
16832
|
+
}
|
|
16833
|
+
|
|
16834
|
+
export type MissionPrefillScalarWhereWithAggregatesInput = {
|
|
16835
|
+
AND?: MissionPrefillScalarWhereWithAggregatesInput | MissionPrefillScalarWhereWithAggregatesInput[]
|
|
16836
|
+
OR?: MissionPrefillScalarWhereWithAggregatesInput[]
|
|
16837
|
+
NOT?: MissionPrefillScalarWhereWithAggregatesInput | MissionPrefillScalarWhereWithAggregatesInput[]
|
|
16838
|
+
id?: StringWithAggregatesFilter<"MissionPrefill"> | string
|
|
16839
|
+
userId?: StringWithAggregatesFilter<"MissionPrefill"> | string
|
|
16840
|
+
missionName?: StringNullableWithAggregatesFilter<"MissionPrefill"> | string | null
|
|
16841
|
+
plannedStart?: StringNullableWithAggregatesFilter<"MissionPrefill"> | string | null
|
|
16842
|
+
companyDescription?: StringNullableWithAggregatesFilter<"MissionPrefill"> | string | null
|
|
16843
|
+
missionDescription?: StringNullableWithAggregatesFilter<"MissionPrefill"> | string | null
|
|
16844
|
+
timezone?: StringNullableWithAggregatesFilter<"MissionPrefill"> | string | null
|
|
16845
|
+
openRoles?: JsonNullableWithAggregatesFilter<"MissionPrefill">
|
|
16846
|
+
status?: StringWithAggregatesFilter<"MissionPrefill"> | string
|
|
16847
|
+
createdAt?: DateTimeWithAggregatesFilter<"MissionPrefill"> | Date | string
|
|
16848
|
+
updatedAt?: DateTimeWithAggregatesFilter<"MissionPrefill"> | Date | string
|
|
16702
16849
|
}
|
|
16703
16850
|
|
|
16704
16851
|
export type MissionSpecWhereInput = {
|
|
@@ -17057,11 +17204,12 @@ export namespace Prisma {
|
|
|
17057
17204
|
createdAt?: DateTimeFilter<"User"> | Date | string
|
|
17058
17205
|
titles?: StringNullableListFilter<"User">
|
|
17059
17206
|
scrubbed?: StringNullableFilter<"User"> | string | null
|
|
17207
|
+
clientRegistration?: XOR<ClientRegistrationNullableCompositeFilter, ClientRegistrationObjectEqualityInput> | null
|
|
17060
17208
|
createdMissionsModels?: MissionListRelationFilter
|
|
17061
17209
|
ownedMissionsModels?: MissionListRelationFilter
|
|
17062
17210
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
17063
17211
|
modifiedMissionSpecs?: MissionSpecListRelationFilter
|
|
17064
|
-
|
|
17212
|
+
missionPrefills?: MissionPrefillListRelationFilter
|
|
17065
17213
|
}
|
|
17066
17214
|
|
|
17067
17215
|
export type UserOrderByWithRelationInput = {
|
|
@@ -17077,11 +17225,12 @@ export namespace Prisma {
|
|
|
17077
17225
|
createdAt?: SortOrder
|
|
17078
17226
|
titles?: SortOrder
|
|
17079
17227
|
scrubbed?: SortOrder
|
|
17228
|
+
clientRegistration?: ClientRegistrationOrderByInput
|
|
17080
17229
|
createdMissionsModels?: MissionOrderByRelationAggregateInput
|
|
17081
17230
|
ownedMissionsModels?: MissionOrderByRelationAggregateInput
|
|
17082
17231
|
authoredMissionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
17083
17232
|
modifiedMissionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
17084
|
-
|
|
17233
|
+
missionPrefills?: MissionPrefillOrderByRelationAggregateInput
|
|
17085
17234
|
}
|
|
17086
17235
|
|
|
17087
17236
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -17100,11 +17249,12 @@ export namespace Prisma {
|
|
|
17100
17249
|
createdAt?: DateTimeFilter<"User"> | Date | string
|
|
17101
17250
|
titles?: StringNullableListFilter<"User">
|
|
17102
17251
|
scrubbed?: StringNullableFilter<"User"> | string | null
|
|
17252
|
+
clientRegistration?: XOR<ClientRegistrationNullableCompositeFilter, ClientRegistrationObjectEqualityInput> | null
|
|
17103
17253
|
createdMissionsModels?: MissionListRelationFilter
|
|
17104
17254
|
ownedMissionsModels?: MissionListRelationFilter
|
|
17105
17255
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
17106
17256
|
modifiedMissionSpecs?: MissionSpecListRelationFilter
|
|
17107
|
-
|
|
17257
|
+
missionPrefills?: MissionPrefillListRelationFilter
|
|
17108
17258
|
}, "id" | "username" | "email">
|
|
17109
17259
|
|
|
17110
17260
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -17854,7 +18004,7 @@ export namespace Prisma {
|
|
|
17854
18004
|
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17855
18005
|
}
|
|
17856
18006
|
|
|
17857
|
-
export type
|
|
18007
|
+
export type MissionPrefillCreateInput = {
|
|
17858
18008
|
id?: string
|
|
17859
18009
|
missionName?: string | null
|
|
17860
18010
|
plannedStart?: string | null
|
|
@@ -17865,10 +18015,10 @@ export namespace Prisma {
|
|
|
17865
18015
|
status?: string
|
|
17866
18016
|
createdAt?: Date | string
|
|
17867
18017
|
updatedAt?: Date | string
|
|
17868
|
-
user:
|
|
18018
|
+
user: UserCreateNestedOneWithoutMissionPrefillsInput
|
|
17869
18019
|
}
|
|
17870
18020
|
|
|
17871
|
-
export type
|
|
18021
|
+
export type MissionPrefillUncheckedCreateInput = {
|
|
17872
18022
|
id?: string
|
|
17873
18023
|
userId: string
|
|
17874
18024
|
missionName?: string | null
|
|
@@ -17882,7 +18032,7 @@ export namespace Prisma {
|
|
|
17882
18032
|
updatedAt?: Date | string
|
|
17883
18033
|
}
|
|
17884
18034
|
|
|
17885
|
-
export type
|
|
18035
|
+
export type MissionPrefillUpdateInput = {
|
|
17886
18036
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17887
18037
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17888
18038
|
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -17892,10 +18042,10 @@ export namespace Prisma {
|
|
|
17892
18042
|
status?: StringFieldUpdateOperationsInput | string
|
|
17893
18043
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17894
18044
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17895
|
-
user?:
|
|
18045
|
+
user?: UserUpdateOneRequiredWithoutMissionPrefillsNestedInput
|
|
17896
18046
|
}
|
|
17897
18047
|
|
|
17898
|
-
export type
|
|
18048
|
+
export type MissionPrefillUncheckedUpdateInput = {
|
|
17899
18049
|
userId?: StringFieldUpdateOperationsInput | string
|
|
17900
18050
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17901
18051
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -17908,7 +18058,7 @@ export namespace Prisma {
|
|
|
17908
18058
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17909
18059
|
}
|
|
17910
18060
|
|
|
17911
|
-
export type
|
|
18061
|
+
export type MissionPrefillCreateManyInput = {
|
|
17912
18062
|
id?: string
|
|
17913
18063
|
userId: string
|
|
17914
18064
|
missionName?: string | null
|
|
@@ -17922,7 +18072,7 @@ export namespace Prisma {
|
|
|
17922
18072
|
updatedAt?: Date | string
|
|
17923
18073
|
}
|
|
17924
18074
|
|
|
17925
|
-
export type
|
|
18075
|
+
export type MissionPrefillUpdateManyMutationInput = {
|
|
17926
18076
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17927
18077
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17928
18078
|
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -17934,7 +18084,7 @@ export namespace Prisma {
|
|
|
17934
18084
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17935
18085
|
}
|
|
17936
18086
|
|
|
17937
|
-
export type
|
|
18087
|
+
export type MissionPrefillUncheckedUpdateManyInput = {
|
|
17938
18088
|
userId?: StringFieldUpdateOperationsInput | string
|
|
17939
18089
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17940
18090
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -18343,11 +18493,12 @@ export namespace Prisma {
|
|
|
18343
18493
|
createdAt: Date | string
|
|
18344
18494
|
titles?: UserCreatetitlesInput | string[]
|
|
18345
18495
|
scrubbed?: string | null
|
|
18496
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18346
18497
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
18347
18498
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
18348
18499
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
18349
18500
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
18350
|
-
|
|
18501
|
+
missionPrefills?: MissionPrefillCreateNestedManyWithoutUserInput
|
|
18351
18502
|
}
|
|
18352
18503
|
|
|
18353
18504
|
export type UserUncheckedCreateInput = {
|
|
@@ -18363,11 +18514,12 @@ export namespace Prisma {
|
|
|
18363
18514
|
createdAt: Date | string
|
|
18364
18515
|
titles?: UserCreatetitlesInput | string[]
|
|
18365
18516
|
scrubbed?: string | null
|
|
18517
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18366
18518
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
18367
18519
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
18368
18520
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
18369
18521
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
18370
|
-
|
|
18522
|
+
missionPrefills?: MissionPrefillUncheckedCreateNestedManyWithoutUserInput
|
|
18371
18523
|
}
|
|
18372
18524
|
|
|
18373
18525
|
export type UserUpdateInput = {
|
|
@@ -18382,11 +18534,12 @@ export namespace Prisma {
|
|
|
18382
18534
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18383
18535
|
titles?: UserUpdatetitlesInput | string[]
|
|
18384
18536
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18537
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18385
18538
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
18386
18539
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
18387
18540
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
18388
18541
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
18389
|
-
|
|
18542
|
+
missionPrefills?: MissionPrefillUpdateManyWithoutUserNestedInput
|
|
18390
18543
|
}
|
|
18391
18544
|
|
|
18392
18545
|
export type UserUncheckedUpdateInput = {
|
|
@@ -18401,11 +18554,12 @@ export namespace Prisma {
|
|
|
18401
18554
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18402
18555
|
titles?: UserUpdatetitlesInput | string[]
|
|
18403
18556
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18557
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18404
18558
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
18405
18559
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
18406
18560
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
18407
18561
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
18408
|
-
|
|
18562
|
+
missionPrefills?: MissionPrefillUncheckedUpdateManyWithoutUserNestedInput
|
|
18409
18563
|
}
|
|
18410
18564
|
|
|
18411
18565
|
export type UserCreateManyInput = {
|
|
@@ -18421,6 +18575,7 @@ export namespace Prisma {
|
|
|
18421
18575
|
createdAt: Date | string
|
|
18422
18576
|
titles?: UserCreatetitlesInput | string[]
|
|
18423
18577
|
scrubbed?: string | null
|
|
18578
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18424
18579
|
}
|
|
18425
18580
|
|
|
18426
18581
|
export type UserUpdateManyMutationInput = {
|
|
@@ -18435,6 +18590,7 @@ export namespace Prisma {
|
|
|
18435
18590
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18436
18591
|
titles?: UserUpdatetitlesInput | string[]
|
|
18437
18592
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18593
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18438
18594
|
}
|
|
18439
18595
|
|
|
18440
18596
|
export type UserUncheckedUpdateManyInput = {
|
|
@@ -18449,6 +18605,7 @@ export namespace Prisma {
|
|
|
18449
18605
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18450
18606
|
titles?: UserUpdatetitlesInput | string[]
|
|
18451
18607
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18608
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18452
18609
|
}
|
|
18453
18610
|
|
|
18454
18611
|
export type StringFilter<$PrismaModel = never> = {
|
|
@@ -19329,7 +19486,7 @@ export namespace Prisma {
|
|
|
19329
19486
|
isNot?: UserWhereInput
|
|
19330
19487
|
}
|
|
19331
19488
|
|
|
19332
|
-
export type
|
|
19489
|
+
export type MissionPrefillCountOrderByAggregateInput = {
|
|
19333
19490
|
id?: SortOrder
|
|
19334
19491
|
userId?: SortOrder
|
|
19335
19492
|
missionName?: SortOrder
|
|
@@ -19343,7 +19500,7 @@ export namespace Prisma {
|
|
|
19343
19500
|
updatedAt?: SortOrder
|
|
19344
19501
|
}
|
|
19345
19502
|
|
|
19346
|
-
export type
|
|
19503
|
+
export type MissionPrefillMaxOrderByAggregateInput = {
|
|
19347
19504
|
id?: SortOrder
|
|
19348
19505
|
userId?: SortOrder
|
|
19349
19506
|
missionName?: SortOrder
|
|
@@ -19356,7 +19513,7 @@ export namespace Prisma {
|
|
|
19356
19513
|
updatedAt?: SortOrder
|
|
19357
19514
|
}
|
|
19358
19515
|
|
|
19359
|
-
export type
|
|
19516
|
+
export type MissionPrefillMinOrderByAggregateInput = {
|
|
19360
19517
|
id?: SortOrder
|
|
19361
19518
|
userId?: SortOrder
|
|
19362
19519
|
missionName?: SortOrder
|
|
@@ -19713,13 +19870,44 @@ export namespace Prisma {
|
|
|
19713
19870
|
not?: NestedBoolFilter<$PrismaModel> | boolean
|
|
19714
19871
|
}
|
|
19715
19872
|
|
|
19716
|
-
export type
|
|
19717
|
-
|
|
19718
|
-
|
|
19719
|
-
|
|
19873
|
+
export type ClientRegistrationNullableCompositeFilter = {
|
|
19874
|
+
equals?: ClientRegistrationObjectEqualityInput | null
|
|
19875
|
+
is?: ClientRegistrationWhereInput | null
|
|
19876
|
+
isNot?: ClientRegistrationWhereInput | null
|
|
19877
|
+
isSet?: boolean
|
|
19878
|
+
}
|
|
19879
|
+
|
|
19880
|
+
export type ClientRegistrationObjectEqualityInput = {
|
|
19881
|
+
emailVerified?: boolean | null
|
|
19882
|
+
signupCompany?: string | null
|
|
19883
|
+
companyQualified?: boolean | null
|
|
19884
|
+
requestType?: $Enums.RegisterRequestType | null
|
|
19885
|
+
requestSolution?: string | null
|
|
19886
|
+
requestRoles?: string[]
|
|
19887
|
+
requestHelp?: string | null
|
|
19888
|
+
howDidYouHear?: string | null
|
|
19889
|
+
hiringTimeline?: $Enums.HiringTimeline | null
|
|
19890
|
+
}
|
|
19891
|
+
|
|
19892
|
+
export type MissionPrefillListRelationFilter = {
|
|
19893
|
+
every?: MissionPrefillWhereInput
|
|
19894
|
+
some?: MissionPrefillWhereInput
|
|
19895
|
+
none?: MissionPrefillWhereInput
|
|
19896
|
+
}
|
|
19897
|
+
|
|
19898
|
+
export type ClientRegistrationOrderByInput = {
|
|
19899
|
+
emailVerified?: SortOrder
|
|
19900
|
+
signupCompany?: SortOrder
|
|
19901
|
+
companyQualified?: SortOrder
|
|
19902
|
+
requestType?: SortOrder
|
|
19903
|
+
requestSolution?: SortOrder
|
|
19904
|
+
requestRoles?: SortOrder
|
|
19905
|
+
requestHelp?: SortOrder
|
|
19906
|
+
howDidYouHear?: SortOrder
|
|
19907
|
+
hiringTimeline?: SortOrder
|
|
19720
19908
|
}
|
|
19721
19909
|
|
|
19722
|
-
export type
|
|
19910
|
+
export type MissionPrefillOrderByRelationAggregateInput = {
|
|
19723
19911
|
_count?: SortOrder
|
|
19724
19912
|
}
|
|
19725
19913
|
|
|
@@ -20453,18 +20641,18 @@ export namespace Prisma {
|
|
|
20453
20641
|
deleteMany?: ContractScalarWhereInput | ContractScalarWhereInput[]
|
|
20454
20642
|
}
|
|
20455
20643
|
|
|
20456
|
-
export type
|
|
20457
|
-
create?: XOR<
|
|
20458
|
-
connectOrCreate?:
|
|
20644
|
+
export type UserCreateNestedOneWithoutMissionPrefillsInput = {
|
|
20645
|
+
create?: XOR<UserCreateWithoutMissionPrefillsInput, UserUncheckedCreateWithoutMissionPrefillsInput>
|
|
20646
|
+
connectOrCreate?: UserCreateOrConnectWithoutMissionPrefillsInput
|
|
20459
20647
|
connect?: UserWhereUniqueInput
|
|
20460
20648
|
}
|
|
20461
20649
|
|
|
20462
|
-
export type
|
|
20463
|
-
create?: XOR<
|
|
20464
|
-
connectOrCreate?:
|
|
20465
|
-
upsert?:
|
|
20650
|
+
export type UserUpdateOneRequiredWithoutMissionPrefillsNestedInput = {
|
|
20651
|
+
create?: XOR<UserCreateWithoutMissionPrefillsInput, UserUncheckedCreateWithoutMissionPrefillsInput>
|
|
20652
|
+
connectOrCreate?: UserCreateOrConnectWithoutMissionPrefillsInput
|
|
20653
|
+
upsert?: UserUpsertWithoutMissionPrefillsInput
|
|
20466
20654
|
connect?: UserWhereUniqueInput
|
|
20467
|
-
update?: XOR<XOR<
|
|
20655
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutMissionPrefillsInput, UserUpdateWithoutMissionPrefillsInput>, UserUncheckedUpdateWithoutMissionPrefillsInput>
|
|
20468
20656
|
}
|
|
20469
20657
|
|
|
20470
20658
|
export type AttachedLinkListCreateEnvelopeInput = {
|
|
@@ -20727,6 +20915,22 @@ export namespace Prisma {
|
|
|
20727
20915
|
set: string[]
|
|
20728
20916
|
}
|
|
20729
20917
|
|
|
20918
|
+
export type ClientRegistrationNullableCreateEnvelopeInput = {
|
|
20919
|
+
set?: ClientRegistrationCreateInput | null
|
|
20920
|
+
}
|
|
20921
|
+
|
|
20922
|
+
export type ClientRegistrationCreateInput = {
|
|
20923
|
+
emailVerified?: boolean | null
|
|
20924
|
+
signupCompany?: string | null
|
|
20925
|
+
companyQualified?: boolean | null
|
|
20926
|
+
requestType?: $Enums.RegisterRequestType | null
|
|
20927
|
+
requestSolution?: string | null
|
|
20928
|
+
requestRoles?: ClientRegistrationCreaterequestRolesInput | string[]
|
|
20929
|
+
requestHelp?: string | null
|
|
20930
|
+
howDidYouHear?: string | null
|
|
20931
|
+
hiringTimeline?: $Enums.HiringTimeline | null
|
|
20932
|
+
}
|
|
20933
|
+
|
|
20730
20934
|
export type MissionCreateNestedManyWithoutCreatorModelInput = {
|
|
20731
20935
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
20732
20936
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -20755,11 +20959,11 @@ export namespace Prisma {
|
|
|
20755
20959
|
connect?: MissionSpecWhereUniqueInput | MissionSpecWhereUniqueInput[]
|
|
20756
20960
|
}
|
|
20757
20961
|
|
|
20758
|
-
export type
|
|
20759
|
-
create?: XOR<
|
|
20760
|
-
connectOrCreate?:
|
|
20761
|
-
createMany?:
|
|
20762
|
-
connect?:
|
|
20962
|
+
export type MissionPrefillCreateNestedManyWithoutUserInput = {
|
|
20963
|
+
create?: XOR<MissionPrefillCreateWithoutUserInput, MissionPrefillUncheckedCreateWithoutUserInput> | MissionPrefillCreateWithoutUserInput[] | MissionPrefillUncheckedCreateWithoutUserInput[]
|
|
20964
|
+
connectOrCreate?: MissionPrefillCreateOrConnectWithoutUserInput | MissionPrefillCreateOrConnectWithoutUserInput[]
|
|
20965
|
+
createMany?: MissionPrefillCreateManyUserInputEnvelope
|
|
20966
|
+
connect?: MissionPrefillWhereUniqueInput | MissionPrefillWhereUniqueInput[]
|
|
20763
20967
|
}
|
|
20764
20968
|
|
|
20765
20969
|
export type MissionUncheckedCreateNestedManyWithoutCreatorModelInput = {
|
|
@@ -20790,11 +20994,11 @@ export namespace Prisma {
|
|
|
20790
20994
|
connect?: MissionSpecWhereUniqueInput | MissionSpecWhereUniqueInput[]
|
|
20791
20995
|
}
|
|
20792
20996
|
|
|
20793
|
-
export type
|
|
20794
|
-
create?: XOR<
|
|
20795
|
-
connectOrCreate?:
|
|
20796
|
-
createMany?:
|
|
20797
|
-
connect?:
|
|
20997
|
+
export type MissionPrefillUncheckedCreateNestedManyWithoutUserInput = {
|
|
20998
|
+
create?: XOR<MissionPrefillCreateWithoutUserInput, MissionPrefillUncheckedCreateWithoutUserInput> | MissionPrefillCreateWithoutUserInput[] | MissionPrefillUncheckedCreateWithoutUserInput[]
|
|
20999
|
+
connectOrCreate?: MissionPrefillCreateOrConnectWithoutUserInput | MissionPrefillCreateOrConnectWithoutUserInput[]
|
|
21000
|
+
createMany?: MissionPrefillCreateManyUserInputEnvelope
|
|
21001
|
+
connect?: MissionPrefillWhereUniqueInput | MissionPrefillWhereUniqueInput[]
|
|
20798
21002
|
}
|
|
20799
21003
|
|
|
20800
21004
|
export type BoolFieldUpdateOperationsInput = {
|
|
@@ -20806,6 +21010,12 @@ export namespace Prisma {
|
|
|
20806
21010
|
push?: string | string[]
|
|
20807
21011
|
}
|
|
20808
21012
|
|
|
21013
|
+
export type ClientRegistrationNullableUpdateEnvelopeInput = {
|
|
21014
|
+
set?: ClientRegistrationCreateInput | null
|
|
21015
|
+
upsert?: ClientRegistrationUpsertInput
|
|
21016
|
+
unset?: boolean
|
|
21017
|
+
}
|
|
21018
|
+
|
|
20809
21019
|
export type MissionUpdateManyWithoutCreatorModelNestedInput = {
|
|
20810
21020
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
20811
21021
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -20862,18 +21072,18 @@ export namespace Prisma {
|
|
|
20862
21072
|
deleteMany?: MissionSpecScalarWhereInput | MissionSpecScalarWhereInput[]
|
|
20863
21073
|
}
|
|
20864
21074
|
|
|
20865
|
-
export type
|
|
20866
|
-
create?: XOR<
|
|
20867
|
-
connectOrCreate?:
|
|
20868
|
-
upsert?:
|
|
20869
|
-
createMany?:
|
|
20870
|
-
set?:
|
|
20871
|
-
disconnect?:
|
|
20872
|
-
delete?:
|
|
20873
|
-
connect?:
|
|
20874
|
-
update?:
|
|
20875
|
-
updateMany?:
|
|
20876
|
-
deleteMany?:
|
|
21075
|
+
export type MissionPrefillUpdateManyWithoutUserNestedInput = {
|
|
21076
|
+
create?: XOR<MissionPrefillCreateWithoutUserInput, MissionPrefillUncheckedCreateWithoutUserInput> | MissionPrefillCreateWithoutUserInput[] | MissionPrefillUncheckedCreateWithoutUserInput[]
|
|
21077
|
+
connectOrCreate?: MissionPrefillCreateOrConnectWithoutUserInput | MissionPrefillCreateOrConnectWithoutUserInput[]
|
|
21078
|
+
upsert?: MissionPrefillUpsertWithWhereUniqueWithoutUserInput | MissionPrefillUpsertWithWhereUniqueWithoutUserInput[]
|
|
21079
|
+
createMany?: MissionPrefillCreateManyUserInputEnvelope
|
|
21080
|
+
set?: MissionPrefillWhereUniqueInput | MissionPrefillWhereUniqueInput[]
|
|
21081
|
+
disconnect?: MissionPrefillWhereUniqueInput | MissionPrefillWhereUniqueInput[]
|
|
21082
|
+
delete?: MissionPrefillWhereUniqueInput | MissionPrefillWhereUniqueInput[]
|
|
21083
|
+
connect?: MissionPrefillWhereUniqueInput | MissionPrefillWhereUniqueInput[]
|
|
21084
|
+
update?: MissionPrefillUpdateWithWhereUniqueWithoutUserInput | MissionPrefillUpdateWithWhereUniqueWithoutUserInput[]
|
|
21085
|
+
updateMany?: MissionPrefillUpdateManyWithWhereWithoutUserInput | MissionPrefillUpdateManyWithWhereWithoutUserInput[]
|
|
21086
|
+
deleteMany?: MissionPrefillScalarWhereInput | MissionPrefillScalarWhereInput[]
|
|
20877
21087
|
}
|
|
20878
21088
|
|
|
20879
21089
|
export type MissionUncheckedUpdateManyWithoutCreatorModelNestedInput = {
|
|
@@ -20932,18 +21142,18 @@ export namespace Prisma {
|
|
|
20932
21142
|
deleteMany?: MissionSpecScalarWhereInput | MissionSpecScalarWhereInput[]
|
|
20933
21143
|
}
|
|
20934
21144
|
|
|
20935
|
-
export type
|
|
20936
|
-
create?: XOR<
|
|
20937
|
-
connectOrCreate?:
|
|
20938
|
-
upsert?:
|
|
20939
|
-
createMany?:
|
|
20940
|
-
set?:
|
|
20941
|
-
disconnect?:
|
|
20942
|
-
delete?:
|
|
20943
|
-
connect?:
|
|
20944
|
-
update?:
|
|
20945
|
-
updateMany?:
|
|
20946
|
-
deleteMany?:
|
|
21145
|
+
export type MissionPrefillUncheckedUpdateManyWithoutUserNestedInput = {
|
|
21146
|
+
create?: XOR<MissionPrefillCreateWithoutUserInput, MissionPrefillUncheckedCreateWithoutUserInput> | MissionPrefillCreateWithoutUserInput[] | MissionPrefillUncheckedCreateWithoutUserInput[]
|
|
21147
|
+
connectOrCreate?: MissionPrefillCreateOrConnectWithoutUserInput | MissionPrefillCreateOrConnectWithoutUserInput[]
|
|
21148
|
+
upsert?: MissionPrefillUpsertWithWhereUniqueWithoutUserInput | MissionPrefillUpsertWithWhereUniqueWithoutUserInput[]
|
|
21149
|
+
createMany?: MissionPrefillCreateManyUserInputEnvelope
|
|
21150
|
+
set?: MissionPrefillWhereUniqueInput | MissionPrefillWhereUniqueInput[]
|
|
21151
|
+
disconnect?: MissionPrefillWhereUniqueInput | MissionPrefillWhereUniqueInput[]
|
|
21152
|
+
delete?: MissionPrefillWhereUniqueInput | MissionPrefillWhereUniqueInput[]
|
|
21153
|
+
connect?: MissionPrefillWhereUniqueInput | MissionPrefillWhereUniqueInput[]
|
|
21154
|
+
update?: MissionPrefillUpdateWithWhereUniqueWithoutUserInput | MissionPrefillUpdateWithWhereUniqueWithoutUserInput[]
|
|
21155
|
+
updateMany?: MissionPrefillUpdateManyWithWhereWithoutUserInput | MissionPrefillUpdateManyWithWhereWithoutUserInput[]
|
|
21156
|
+
deleteMany?: MissionPrefillScalarWhereInput | MissionPrefillScalarWhereInput[]
|
|
20947
21157
|
}
|
|
20948
21158
|
|
|
20949
21159
|
export type NestedStringFilter<$PrismaModel = never> = {
|
|
@@ -21564,6 +21774,21 @@ export namespace Prisma {
|
|
|
21564
21774
|
not?: NestedBoolFilter<$PrismaModel> | boolean
|
|
21565
21775
|
}
|
|
21566
21776
|
|
|
21777
|
+
export type ClientRegistrationWhereInput = {
|
|
21778
|
+
AND?: ClientRegistrationWhereInput | ClientRegistrationWhereInput[]
|
|
21779
|
+
OR?: ClientRegistrationWhereInput[]
|
|
21780
|
+
NOT?: ClientRegistrationWhereInput | ClientRegistrationWhereInput[]
|
|
21781
|
+
emailVerified?: BoolNullableFilter<"ClientRegistration"> | boolean | null
|
|
21782
|
+
signupCompany?: StringNullableFilter<"ClientRegistration"> | string | null
|
|
21783
|
+
companyQualified?: BoolNullableFilter<"ClientRegistration"> | boolean | null
|
|
21784
|
+
requestType?: EnumRegisterRequestTypeNullableFilter<"ClientRegistration"> | $Enums.RegisterRequestType | null
|
|
21785
|
+
requestSolution?: StringNullableFilter<"ClientRegistration"> | string | null
|
|
21786
|
+
requestRoles?: StringNullableListFilter<"ClientRegistration">
|
|
21787
|
+
requestHelp?: StringNullableFilter<"ClientRegistration"> | string | null
|
|
21788
|
+
howDidYouHear?: StringNullableFilter<"ClientRegistration"> | string | null
|
|
21789
|
+
hiringTimeline?: EnumHiringTimelineNullableFilter<"ClientRegistration"> | $Enums.HiringTimeline | null
|
|
21790
|
+
}
|
|
21791
|
+
|
|
21567
21792
|
export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
21568
21793
|
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
21569
21794
|
not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
|
|
@@ -22531,10 +22756,11 @@ export namespace Prisma {
|
|
|
22531
22756
|
createdAt: Date | string
|
|
22532
22757
|
titles?: UserCreatetitlesInput | string[]
|
|
22533
22758
|
scrubbed?: string | null
|
|
22759
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
22534
22760
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
22535
22761
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
22536
22762
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
22537
|
-
|
|
22763
|
+
missionPrefills?: MissionPrefillCreateNestedManyWithoutUserInput
|
|
22538
22764
|
}
|
|
22539
22765
|
|
|
22540
22766
|
export type UserUncheckedCreateWithoutCreatedMissionsModelsInput = {
|
|
@@ -22550,10 +22776,11 @@ export namespace Prisma {
|
|
|
22550
22776
|
createdAt: Date | string
|
|
22551
22777
|
titles?: UserCreatetitlesInput | string[]
|
|
22552
22778
|
scrubbed?: string | null
|
|
22779
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
22553
22780
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
22554
22781
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
22555
22782
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
22556
|
-
|
|
22783
|
+
missionPrefills?: MissionPrefillUncheckedCreateNestedManyWithoutUserInput
|
|
22557
22784
|
}
|
|
22558
22785
|
|
|
22559
22786
|
export type UserCreateOrConnectWithoutCreatedMissionsModelsInput = {
|
|
@@ -22637,10 +22864,11 @@ export namespace Prisma {
|
|
|
22637
22864
|
createdAt: Date | string
|
|
22638
22865
|
titles?: UserCreatetitlesInput | string[]
|
|
22639
22866
|
scrubbed?: string | null
|
|
22867
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
22640
22868
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
22641
22869
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
22642
22870
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
22643
|
-
|
|
22871
|
+
missionPrefills?: MissionPrefillCreateNestedManyWithoutUserInput
|
|
22644
22872
|
}
|
|
22645
22873
|
|
|
22646
22874
|
export type UserUncheckedCreateWithoutOwnedMissionsModelsInput = {
|
|
@@ -22656,10 +22884,11 @@ export namespace Prisma {
|
|
|
22656
22884
|
createdAt: Date | string
|
|
22657
22885
|
titles?: UserCreatetitlesInput | string[]
|
|
22658
22886
|
scrubbed?: string | null
|
|
22887
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
22659
22888
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
22660
22889
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
22661
22890
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
22662
|
-
|
|
22891
|
+
missionPrefills?: MissionPrefillUncheckedCreateNestedManyWithoutUserInput
|
|
22663
22892
|
}
|
|
22664
22893
|
|
|
22665
22894
|
export type UserCreateOrConnectWithoutOwnedMissionsModelsInput = {
|
|
@@ -22808,10 +23037,11 @@ export namespace Prisma {
|
|
|
22808
23037
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22809
23038
|
titles?: UserUpdatetitlesInput | string[]
|
|
22810
23039
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23040
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
22811
23041
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
22812
23042
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
22813
23043
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
22814
|
-
|
|
23044
|
+
missionPrefills?: MissionPrefillUpdateManyWithoutUserNestedInput
|
|
22815
23045
|
}
|
|
22816
23046
|
|
|
22817
23047
|
export type UserUncheckedUpdateWithoutCreatedMissionsModelsInput = {
|
|
@@ -22826,10 +23056,11 @@ export namespace Prisma {
|
|
|
22826
23056
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22827
23057
|
titles?: UserUpdatetitlesInput | string[]
|
|
22828
23058
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23059
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
22829
23060
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
22830
23061
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
22831
23062
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
22832
|
-
|
|
23063
|
+
missionPrefills?: MissionPrefillUncheckedUpdateManyWithoutUserNestedInput
|
|
22833
23064
|
}
|
|
22834
23065
|
|
|
22835
23066
|
export type MissionSpecUpsertWithoutMissionInput = {
|
|
@@ -22922,10 +23153,11 @@ export namespace Prisma {
|
|
|
22922
23153
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22923
23154
|
titles?: UserUpdatetitlesInput | string[]
|
|
22924
23155
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23156
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
22925
23157
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
22926
23158
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
22927
23159
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
22928
|
-
|
|
23160
|
+
missionPrefills?: MissionPrefillUpdateManyWithoutUserNestedInput
|
|
22929
23161
|
}
|
|
22930
23162
|
|
|
22931
23163
|
export type UserUncheckedUpdateWithoutOwnedMissionsModelsInput = {
|
|
@@ -22940,10 +23172,11 @@ export namespace Prisma {
|
|
|
22940
23172
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22941
23173
|
titles?: UserUpdatetitlesInput | string[]
|
|
22942
23174
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23175
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
22943
23176
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
22944
23177
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
22945
23178
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
22946
|
-
|
|
23179
|
+
missionPrefills?: MissionPrefillUncheckedUpdateManyWithoutUserNestedInput
|
|
22947
23180
|
}
|
|
22948
23181
|
|
|
22949
23182
|
export type ContractUpsertWithWhereUniqueWithoutMissionInput = {
|
|
@@ -22979,7 +23212,7 @@ export namespace Prisma {
|
|
|
22979
23212
|
documentTitle?: StringNullableFilter<"Contract"> | string | null
|
|
22980
23213
|
}
|
|
22981
23214
|
|
|
22982
|
-
export type
|
|
23215
|
+
export type UserCreateWithoutMissionPrefillsInput = {
|
|
22983
23216
|
id?: string
|
|
22984
23217
|
firstName?: string | null
|
|
22985
23218
|
lastName?: string | null
|
|
@@ -22992,13 +23225,14 @@ export namespace Prisma {
|
|
|
22992
23225
|
createdAt: Date | string
|
|
22993
23226
|
titles?: UserCreatetitlesInput | string[]
|
|
22994
23227
|
scrubbed?: string | null
|
|
23228
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
22995
23229
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
22996
23230
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
22997
23231
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
22998
23232
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
22999
23233
|
}
|
|
23000
23234
|
|
|
23001
|
-
export type
|
|
23235
|
+
export type UserUncheckedCreateWithoutMissionPrefillsInput = {
|
|
23002
23236
|
id?: string
|
|
23003
23237
|
firstName?: string | null
|
|
23004
23238
|
lastName?: string | null
|
|
@@ -23011,29 +23245,30 @@ export namespace Prisma {
|
|
|
23011
23245
|
createdAt: Date | string
|
|
23012
23246
|
titles?: UserCreatetitlesInput | string[]
|
|
23013
23247
|
scrubbed?: string | null
|
|
23248
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23014
23249
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
23015
23250
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
23016
23251
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
23017
23252
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
23018
23253
|
}
|
|
23019
23254
|
|
|
23020
|
-
export type
|
|
23255
|
+
export type UserCreateOrConnectWithoutMissionPrefillsInput = {
|
|
23021
23256
|
where: UserWhereUniqueInput
|
|
23022
|
-
create: XOR<
|
|
23257
|
+
create: XOR<UserCreateWithoutMissionPrefillsInput, UserUncheckedCreateWithoutMissionPrefillsInput>
|
|
23023
23258
|
}
|
|
23024
23259
|
|
|
23025
|
-
export type
|
|
23026
|
-
update: XOR<
|
|
23027
|
-
create: XOR<
|
|
23260
|
+
export type UserUpsertWithoutMissionPrefillsInput = {
|
|
23261
|
+
update: XOR<UserUpdateWithoutMissionPrefillsInput, UserUncheckedUpdateWithoutMissionPrefillsInput>
|
|
23262
|
+
create: XOR<UserCreateWithoutMissionPrefillsInput, UserUncheckedCreateWithoutMissionPrefillsInput>
|
|
23028
23263
|
where?: UserWhereInput
|
|
23029
23264
|
}
|
|
23030
23265
|
|
|
23031
|
-
export type
|
|
23266
|
+
export type UserUpdateToOneWithWhereWithoutMissionPrefillsInput = {
|
|
23032
23267
|
where?: UserWhereInput
|
|
23033
|
-
data: XOR<
|
|
23268
|
+
data: XOR<UserUpdateWithoutMissionPrefillsInput, UserUncheckedUpdateWithoutMissionPrefillsInput>
|
|
23034
23269
|
}
|
|
23035
23270
|
|
|
23036
|
-
export type
|
|
23271
|
+
export type UserUpdateWithoutMissionPrefillsInput = {
|
|
23037
23272
|
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23038
23273
|
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23039
23274
|
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -23045,13 +23280,14 @@ export namespace Prisma {
|
|
|
23045
23280
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23046
23281
|
titles?: UserUpdatetitlesInput | string[]
|
|
23047
23282
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23283
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23048
23284
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23049
23285
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23050
23286
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
23051
23287
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
23052
23288
|
}
|
|
23053
23289
|
|
|
23054
|
-
export type
|
|
23290
|
+
export type UserUncheckedUpdateWithoutMissionPrefillsInput = {
|
|
23055
23291
|
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23056
23292
|
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23057
23293
|
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -23063,6 +23299,7 @@ export namespace Prisma {
|
|
|
23063
23299
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23064
23300
|
titles?: UserUpdatetitlesInput | string[]
|
|
23065
23301
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23302
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23066
23303
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23067
23304
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23068
23305
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -23145,10 +23382,11 @@ export namespace Prisma {
|
|
|
23145
23382
|
createdAt: Date | string
|
|
23146
23383
|
titles?: UserCreatetitlesInput | string[]
|
|
23147
23384
|
scrubbed?: string | null
|
|
23385
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23148
23386
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
23149
23387
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
23150
23388
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
23151
|
-
|
|
23389
|
+
missionPrefills?: MissionPrefillCreateNestedManyWithoutUserInput
|
|
23152
23390
|
}
|
|
23153
23391
|
|
|
23154
23392
|
export type UserUncheckedCreateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -23164,10 +23402,11 @@ export namespace Prisma {
|
|
|
23164
23402
|
createdAt: Date | string
|
|
23165
23403
|
titles?: UserCreatetitlesInput | string[]
|
|
23166
23404
|
scrubbed?: string | null
|
|
23405
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23167
23406
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
23168
23407
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
23169
23408
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
23170
|
-
|
|
23409
|
+
missionPrefills?: MissionPrefillUncheckedCreateNestedManyWithoutUserInput
|
|
23171
23410
|
}
|
|
23172
23411
|
|
|
23173
23412
|
export type UserCreateOrConnectWithoutAuthoredMissionSpecsInput = {
|
|
@@ -23221,10 +23460,11 @@ export namespace Prisma {
|
|
|
23221
23460
|
createdAt: Date | string
|
|
23222
23461
|
titles?: UserCreatetitlesInput | string[]
|
|
23223
23462
|
scrubbed?: string | null
|
|
23463
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23224
23464
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
23225
23465
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
23226
23466
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
23227
|
-
|
|
23467
|
+
missionPrefills?: MissionPrefillCreateNestedManyWithoutUserInput
|
|
23228
23468
|
}
|
|
23229
23469
|
|
|
23230
23470
|
export type UserUncheckedCreateWithoutModifiedMissionSpecsInput = {
|
|
@@ -23240,10 +23480,11 @@ export namespace Prisma {
|
|
|
23240
23480
|
createdAt: Date | string
|
|
23241
23481
|
titles?: UserCreatetitlesInput | string[]
|
|
23242
23482
|
scrubbed?: string | null
|
|
23483
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23243
23484
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
23244
23485
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
23245
23486
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
23246
|
-
|
|
23487
|
+
missionPrefills?: MissionPrefillUncheckedCreateNestedManyWithoutUserInput
|
|
23247
23488
|
}
|
|
23248
23489
|
|
|
23249
23490
|
export type UserCreateOrConnectWithoutModifiedMissionSpecsInput = {
|
|
@@ -23447,10 +23688,11 @@ export namespace Prisma {
|
|
|
23447
23688
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23448
23689
|
titles?: UserUpdatetitlesInput | string[]
|
|
23449
23690
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23691
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23450
23692
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23451
23693
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23452
23694
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
23453
|
-
|
|
23695
|
+
missionPrefills?: MissionPrefillUpdateManyWithoutUserNestedInput
|
|
23454
23696
|
}
|
|
23455
23697
|
|
|
23456
23698
|
export type UserUncheckedUpdateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -23465,10 +23707,11 @@ export namespace Prisma {
|
|
|
23465
23707
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23466
23708
|
titles?: UserUpdatetitlesInput | string[]
|
|
23467
23709
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23710
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23468
23711
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23469
23712
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23470
23713
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
23471
|
-
|
|
23714
|
+
missionPrefills?: MissionPrefillUncheckedUpdateManyWithoutUserNestedInput
|
|
23472
23715
|
}
|
|
23473
23716
|
|
|
23474
23717
|
export type ClientCompanyUpsertWithoutMissionSpecsInput = {
|
|
@@ -23531,10 +23774,11 @@ export namespace Prisma {
|
|
|
23531
23774
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23532
23775
|
titles?: UserUpdatetitlesInput | string[]
|
|
23533
23776
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23777
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23534
23778
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23535
23779
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23536
23780
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
23537
|
-
|
|
23781
|
+
missionPrefills?: MissionPrefillUpdateManyWithoutUserNestedInput
|
|
23538
23782
|
}
|
|
23539
23783
|
|
|
23540
23784
|
export type UserUncheckedUpdateWithoutModifiedMissionSpecsInput = {
|
|
@@ -23549,10 +23793,11 @@ export namespace Prisma {
|
|
|
23549
23793
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23550
23794
|
titles?: UserUpdatetitlesInput | string[]
|
|
23551
23795
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23796
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23552
23797
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23553
23798
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23554
23799
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
23555
|
-
|
|
23800
|
+
missionPrefills?: MissionPrefillUncheckedUpdateManyWithoutUserNestedInput
|
|
23556
23801
|
}
|
|
23557
23802
|
|
|
23558
23803
|
export type MissionUpsertWithoutMissionSpecInput = {
|
|
@@ -23662,6 +23907,10 @@ export namespace Prisma {
|
|
|
23662
23907
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
23663
23908
|
}
|
|
23664
23909
|
|
|
23910
|
+
export type ClientRegistrationCreaterequestRolesInput = {
|
|
23911
|
+
set: string[]
|
|
23912
|
+
}
|
|
23913
|
+
|
|
23665
23914
|
export type MissionCreateWithoutCreatorModelInput = {
|
|
23666
23915
|
mid?: string
|
|
23667
23916
|
applyStatus?: string | null
|
|
@@ -24010,7 +24259,7 @@ export namespace Prisma {
|
|
|
24010
24259
|
data: MissionSpecCreateManyLastModifierInput | MissionSpecCreateManyLastModifierInput[]
|
|
24011
24260
|
}
|
|
24012
24261
|
|
|
24013
|
-
export type
|
|
24262
|
+
export type MissionPrefillCreateWithoutUserInput = {
|
|
24014
24263
|
id?: string
|
|
24015
24264
|
missionName?: string | null
|
|
24016
24265
|
plannedStart?: string | null
|
|
@@ -24023,7 +24272,7 @@ export namespace Prisma {
|
|
|
24023
24272
|
updatedAt?: Date | string
|
|
24024
24273
|
}
|
|
24025
24274
|
|
|
24026
|
-
export type
|
|
24275
|
+
export type MissionPrefillUncheckedCreateWithoutUserInput = {
|
|
24027
24276
|
id?: string
|
|
24028
24277
|
missionName?: string | null
|
|
24029
24278
|
plannedStart?: string | null
|
|
@@ -24036,13 +24285,18 @@ export namespace Prisma {
|
|
|
24036
24285
|
updatedAt?: Date | string
|
|
24037
24286
|
}
|
|
24038
24287
|
|
|
24039
|
-
export type
|
|
24040
|
-
where:
|
|
24041
|
-
create: XOR<
|
|
24288
|
+
export type MissionPrefillCreateOrConnectWithoutUserInput = {
|
|
24289
|
+
where: MissionPrefillWhereUniqueInput
|
|
24290
|
+
create: XOR<MissionPrefillCreateWithoutUserInput, MissionPrefillUncheckedCreateWithoutUserInput>
|
|
24291
|
+
}
|
|
24292
|
+
|
|
24293
|
+
export type MissionPrefillCreateManyUserInputEnvelope = {
|
|
24294
|
+
data: MissionPrefillCreateManyUserInput | MissionPrefillCreateManyUserInput[]
|
|
24042
24295
|
}
|
|
24043
24296
|
|
|
24044
|
-
export type
|
|
24045
|
-
|
|
24297
|
+
export type ClientRegistrationUpsertInput = {
|
|
24298
|
+
set: ClientRegistrationCreateInput | null
|
|
24299
|
+
update: ClientRegistrationUpdateInput
|
|
24046
24300
|
}
|
|
24047
24301
|
|
|
24048
24302
|
export type MissionUpsertWithWhereUniqueWithoutCreatorModelInput = {
|
|
@@ -24109,37 +24363,37 @@ export namespace Prisma {
|
|
|
24109
24363
|
data: XOR<MissionSpecUpdateManyMutationInput, MissionSpecUncheckedUpdateManyWithoutLastModifierInput>
|
|
24110
24364
|
}
|
|
24111
24365
|
|
|
24112
|
-
export type
|
|
24113
|
-
where:
|
|
24114
|
-
update: XOR<
|
|
24115
|
-
create: XOR<
|
|
24366
|
+
export type MissionPrefillUpsertWithWhereUniqueWithoutUserInput = {
|
|
24367
|
+
where: MissionPrefillWhereUniqueInput
|
|
24368
|
+
update: XOR<MissionPrefillUpdateWithoutUserInput, MissionPrefillUncheckedUpdateWithoutUserInput>
|
|
24369
|
+
create: XOR<MissionPrefillCreateWithoutUserInput, MissionPrefillUncheckedCreateWithoutUserInput>
|
|
24116
24370
|
}
|
|
24117
24371
|
|
|
24118
|
-
export type
|
|
24119
|
-
where:
|
|
24120
|
-
data: XOR<
|
|
24372
|
+
export type MissionPrefillUpdateWithWhereUniqueWithoutUserInput = {
|
|
24373
|
+
where: MissionPrefillWhereUniqueInput
|
|
24374
|
+
data: XOR<MissionPrefillUpdateWithoutUserInput, MissionPrefillUncheckedUpdateWithoutUserInput>
|
|
24121
24375
|
}
|
|
24122
24376
|
|
|
24123
|
-
export type
|
|
24124
|
-
where:
|
|
24125
|
-
data: XOR<
|
|
24377
|
+
export type MissionPrefillUpdateManyWithWhereWithoutUserInput = {
|
|
24378
|
+
where: MissionPrefillScalarWhereInput
|
|
24379
|
+
data: XOR<MissionPrefillUpdateManyMutationInput, MissionPrefillUncheckedUpdateManyWithoutUserInput>
|
|
24126
24380
|
}
|
|
24127
24381
|
|
|
24128
|
-
export type
|
|
24129
|
-
AND?:
|
|
24130
|
-
OR?:
|
|
24131
|
-
NOT?:
|
|
24132
|
-
id?: StringFilter<"
|
|
24133
|
-
userId?: StringFilter<"
|
|
24134
|
-
missionName?: StringNullableFilter<"
|
|
24135
|
-
plannedStart?: StringNullableFilter<"
|
|
24136
|
-
companyDescription?: StringNullableFilter<"
|
|
24137
|
-
missionDescription?: StringNullableFilter<"
|
|
24138
|
-
timezone?: StringNullableFilter<"
|
|
24139
|
-
openRoles?: JsonNullableFilter<"
|
|
24140
|
-
status?: StringFilter<"
|
|
24141
|
-
createdAt?: DateTimeFilter<"
|
|
24142
|
-
updatedAt?: DateTimeFilter<"
|
|
24382
|
+
export type MissionPrefillScalarWhereInput = {
|
|
24383
|
+
AND?: MissionPrefillScalarWhereInput | MissionPrefillScalarWhereInput[]
|
|
24384
|
+
OR?: MissionPrefillScalarWhereInput[]
|
|
24385
|
+
NOT?: MissionPrefillScalarWhereInput | MissionPrefillScalarWhereInput[]
|
|
24386
|
+
id?: StringFilter<"MissionPrefill"> | string
|
|
24387
|
+
userId?: StringFilter<"MissionPrefill"> | string
|
|
24388
|
+
missionName?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
24389
|
+
plannedStart?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
24390
|
+
companyDescription?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
24391
|
+
missionDescription?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
24392
|
+
timezone?: StringNullableFilter<"MissionPrefill"> | string | null
|
|
24393
|
+
openRoles?: JsonNullableFilter<"MissionPrefill">
|
|
24394
|
+
status?: StringFilter<"MissionPrefill"> | string
|
|
24395
|
+
createdAt?: DateTimeFilter<"MissionPrefill"> | Date | string
|
|
24396
|
+
updatedAt?: DateTimeFilter<"MissionPrefill"> | Date | string
|
|
24143
24397
|
}
|
|
24144
24398
|
|
|
24145
24399
|
export type StructuredEnrichmentNullableCompositeFilter = {
|
|
@@ -24241,6 +24495,22 @@ export namespace Prisma {
|
|
|
24241
24495
|
isSet?: boolean
|
|
24242
24496
|
}
|
|
24243
24497
|
|
|
24498
|
+
export type EnumRegisterRequestTypeNullableFilter<$PrismaModel = never> = {
|
|
24499
|
+
equals?: $Enums.RegisterRequestType | EnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
24500
|
+
in?: $Enums.RegisterRequestType[] | ListEnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
24501
|
+
notIn?: $Enums.RegisterRequestType[] | ListEnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
24502
|
+
not?: NestedEnumRegisterRequestTypeNullableFilter<$PrismaModel> | $Enums.RegisterRequestType | null
|
|
24503
|
+
isSet?: boolean
|
|
24504
|
+
}
|
|
24505
|
+
|
|
24506
|
+
export type EnumHiringTimelineNullableFilter<$PrismaModel = never> = {
|
|
24507
|
+
equals?: $Enums.HiringTimeline | EnumHiringTimelineFieldRefInput<$PrismaModel> | null
|
|
24508
|
+
in?: $Enums.HiringTimeline[] | ListEnumHiringTimelineFieldRefInput<$PrismaModel> | null
|
|
24509
|
+
notIn?: $Enums.HiringTimeline[] | ListEnumHiringTimelineFieldRefInput<$PrismaModel> | null
|
|
24510
|
+
not?: NestedEnumHiringTimelineNullableFilter<$PrismaModel> | $Enums.HiringTimeline | null
|
|
24511
|
+
isSet?: boolean
|
|
24512
|
+
}
|
|
24513
|
+
|
|
24244
24514
|
export type MissionCreateManyAccountModelInput = {
|
|
24245
24515
|
mid?: string
|
|
24246
24516
|
applyStatus?: string | null
|
|
@@ -25123,7 +25393,7 @@ export namespace Prisma {
|
|
|
25123
25393
|
workingHoursNumberOfMinutesOverlap?: number | null
|
|
25124
25394
|
}
|
|
25125
25395
|
|
|
25126
|
-
export type
|
|
25396
|
+
export type MissionPrefillCreateManyUserInput = {
|
|
25127
25397
|
id?: string
|
|
25128
25398
|
missionName?: string | null
|
|
25129
25399
|
plannedStart?: string | null
|
|
@@ -25136,6 +25406,18 @@ export namespace Prisma {
|
|
|
25136
25406
|
updatedAt?: Date | string
|
|
25137
25407
|
}
|
|
25138
25408
|
|
|
25409
|
+
export type ClientRegistrationUpdateInput = {
|
|
25410
|
+
emailVerified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
25411
|
+
signupCompany?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25412
|
+
companyQualified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
25413
|
+
requestType?: NullableEnumRegisterRequestTypeFieldUpdateOperationsInput | $Enums.RegisterRequestType | null
|
|
25414
|
+
requestSolution?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25415
|
+
requestRoles?: ClientRegistrationUpdaterequestRolesInput | string[]
|
|
25416
|
+
requestHelp?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25417
|
+
howDidYouHear?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25418
|
+
hiringTimeline?: NullableEnumHiringTimelineFieldUpdateOperationsInput | $Enums.HiringTimeline | null
|
|
25419
|
+
}
|
|
25420
|
+
|
|
25139
25421
|
export type MissionUpdateWithoutCreatorModelInput = {
|
|
25140
25422
|
applyStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25141
25423
|
attachedLinks?: XOR<MissionsAttachedLinkListUpdateEnvelopeInput, MissionsAttachedLinkCreateInput> | MissionsAttachedLinkCreateInput[]
|
|
@@ -25588,7 +25870,7 @@ export namespace Prisma {
|
|
|
25588
25870
|
workingHoursNumberOfMinutesOverlap?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25589
25871
|
}
|
|
25590
25872
|
|
|
25591
|
-
export type
|
|
25873
|
+
export type MissionPrefillUpdateWithoutUserInput = {
|
|
25592
25874
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25593
25875
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25594
25876
|
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -25600,7 +25882,7 @@ export namespace Prisma {
|
|
|
25600
25882
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25601
25883
|
}
|
|
25602
25884
|
|
|
25603
|
-
export type
|
|
25885
|
+
export type MissionPrefillUncheckedUpdateWithoutUserInput = {
|
|
25604
25886
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25605
25887
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25606
25888
|
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -25612,7 +25894,7 @@ export namespace Prisma {
|
|
|
25612
25894
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25613
25895
|
}
|
|
25614
25896
|
|
|
25615
|
-
export type
|
|
25897
|
+
export type MissionPrefillUncheckedUpdateManyWithoutUserInput = {
|
|
25616
25898
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25617
25899
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25618
25900
|
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -25739,6 +26021,22 @@ export namespace Prisma {
|
|
|
25739
26021
|
startTime?: IntNullableFilter<"LocalHourRange"> | number | null
|
|
25740
26022
|
}
|
|
25741
26023
|
|
|
26024
|
+
export type NestedEnumRegisterRequestTypeNullableFilter<$PrismaModel = never> = {
|
|
26025
|
+
equals?: $Enums.RegisterRequestType | EnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
26026
|
+
in?: $Enums.RegisterRequestType[] | ListEnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
26027
|
+
notIn?: $Enums.RegisterRequestType[] | ListEnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
26028
|
+
not?: NestedEnumRegisterRequestTypeNullableFilter<$PrismaModel> | $Enums.RegisterRequestType | null
|
|
26029
|
+
isSet?: boolean
|
|
26030
|
+
}
|
|
26031
|
+
|
|
26032
|
+
export type NestedEnumHiringTimelineNullableFilter<$PrismaModel = never> = {
|
|
26033
|
+
equals?: $Enums.HiringTimeline | EnumHiringTimelineFieldRefInput<$PrismaModel> | null
|
|
26034
|
+
in?: $Enums.HiringTimeline[] | ListEnumHiringTimelineFieldRefInput<$PrismaModel> | null
|
|
26035
|
+
notIn?: $Enums.HiringTimeline[] | ListEnumHiringTimelineFieldRefInput<$PrismaModel> | null
|
|
26036
|
+
not?: NestedEnumHiringTimelineNullableFilter<$PrismaModel> | $Enums.HiringTimeline | null
|
|
26037
|
+
isSet?: boolean
|
|
26038
|
+
}
|
|
26039
|
+
|
|
25742
26040
|
export type StructuredEnrichmentUpsertInput = {
|
|
25743
26041
|
set: StructuredEnrichmentCreateInput | null
|
|
25744
26042
|
update: StructuredEnrichmentUpdateInput
|
|
@@ -25836,6 +26134,21 @@ export namespace Prisma {
|
|
|
25836
26134
|
deleteMany?: LocalHourRangeDeleteManyInput
|
|
25837
26135
|
}
|
|
25838
26136
|
|
|
26137
|
+
export type NullableEnumRegisterRequestTypeFieldUpdateOperationsInput = {
|
|
26138
|
+
set?: $Enums.RegisterRequestType | null
|
|
26139
|
+
unset?: boolean
|
|
26140
|
+
}
|
|
26141
|
+
|
|
26142
|
+
export type ClientRegistrationUpdaterequestRolesInput = {
|
|
26143
|
+
set?: string[]
|
|
26144
|
+
push?: string | string[]
|
|
26145
|
+
}
|
|
26146
|
+
|
|
26147
|
+
export type NullableEnumHiringTimelineFieldUpdateOperationsInput = {
|
|
26148
|
+
set?: $Enums.HiringTimeline | null
|
|
26149
|
+
unset?: boolean
|
|
26150
|
+
}
|
|
26151
|
+
|
|
25839
26152
|
export type FloatFilter<$PrismaModel = never> = {
|
|
25840
26153
|
equals?: number | FloatFieldRefInput<$PrismaModel>
|
|
25841
26154
|
in?: number[] | ListFloatFieldRefInput<$PrismaModel>
|
|
@@ -26160,6 +26473,10 @@ export namespace Prisma {
|
|
|
26160
26473
|
* @deprecated Use ClientRoleQuestionDefaultArgs instead
|
|
26161
26474
|
*/
|
|
26162
26475
|
export type ClientRoleQuestionArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ClientRoleQuestionDefaultArgs<ExtArgs>
|
|
26476
|
+
/**
|
|
26477
|
+
* @deprecated Use ClientRegistrationDefaultArgs instead
|
|
26478
|
+
*/
|
|
26479
|
+
export type ClientRegistrationArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ClientRegistrationDefaultArgs<ExtArgs>
|
|
26163
26480
|
/**
|
|
26164
26481
|
* @deprecated Use AccountDefaultArgs instead
|
|
26165
26482
|
*/
|
|
@@ -26181,9 +26498,9 @@ export namespace Prisma {
|
|
|
26181
26498
|
*/
|
|
26182
26499
|
export type MissionArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MissionDefaultArgs<ExtArgs>
|
|
26183
26500
|
/**
|
|
26184
|
-
* @deprecated Use
|
|
26501
|
+
* @deprecated Use MissionPrefillDefaultArgs instead
|
|
26185
26502
|
*/
|
|
26186
|
-
export type
|
|
26503
|
+
export type MissionPrefillArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MissionPrefillDefaultArgs<ExtArgs>
|
|
26187
26504
|
/**
|
|
26188
26505
|
* @deprecated Use MissionSpecDefaultArgs instead
|
|
26189
26506
|
*/
|