@a_team/prisma 2.1.12 → 2.1.13
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 +20 -20
- package/dist/client/index-browser.js +15 -15
- package/dist/client/index.d.ts +1600 -1600
- package/dist/client/index.js +20 -20
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +28 -28
- package/dist/client/wasm.js +15 -15
- package/package.json +1 -1
package/dist/client/index.d.ts
CHANGED
|
@@ -174,15 +174,15 @@ export type Contract = $Result.DefaultSelection<Prisma.$ContractPayload>
|
|
|
174
174
|
*/
|
|
175
175
|
export type Mission = $Result.DefaultSelection<Prisma.$MissionPayload>
|
|
176
176
|
/**
|
|
177
|
-
* Model
|
|
177
|
+
* Model MissionPreFill
|
|
178
178
|
*
|
|
179
179
|
*/
|
|
180
|
-
export type
|
|
180
|
+
export type MissionPreFill = $Result.DefaultSelection<Prisma.$MissionPreFillPayload>
|
|
181
181
|
/**
|
|
182
|
-
* Model
|
|
182
|
+
* Model MissionSpec
|
|
183
183
|
*
|
|
184
184
|
*/
|
|
185
|
-
export type
|
|
185
|
+
export type MissionSpec = $Result.DefaultSelection<Prisma.$MissionSpecPayload>
|
|
186
186
|
/**
|
|
187
187
|
* Model RoleCategory
|
|
188
188
|
*
|
|
@@ -450,24 +450,24 @@ export class PrismaClient<
|
|
|
450
450
|
get mission(): Prisma.MissionDelegate<ExtArgs>;
|
|
451
451
|
|
|
452
452
|
/**
|
|
453
|
-
* `prisma.
|
|
453
|
+
* `prisma.missionPreFill`: Exposes CRUD operations for the **MissionPreFill** model.
|
|
454
454
|
* Example usage:
|
|
455
455
|
* ```ts
|
|
456
|
-
* // Fetch zero or more
|
|
457
|
-
* const
|
|
456
|
+
* // Fetch zero or more MissionPreFills
|
|
457
|
+
* const missionPreFills = await prisma.missionPreFill.findMany()
|
|
458
458
|
* ```
|
|
459
459
|
*/
|
|
460
|
-
get
|
|
460
|
+
get missionPreFill(): Prisma.MissionPreFillDelegate<ExtArgs>;
|
|
461
461
|
|
|
462
462
|
/**
|
|
463
|
-
* `prisma.
|
|
463
|
+
* `prisma.missionSpec`: Exposes CRUD operations for the **MissionSpec** model.
|
|
464
464
|
* Example usage:
|
|
465
465
|
* ```ts
|
|
466
|
-
* // Fetch zero or more
|
|
467
|
-
* const
|
|
466
|
+
* // Fetch zero or more MissionSpecs
|
|
467
|
+
* const missionSpecs = await prisma.missionSpec.findMany()
|
|
468
468
|
* ```
|
|
469
469
|
*/
|
|
470
|
-
get
|
|
470
|
+
get missionSpec(): Prisma.MissionSpecDelegate<ExtArgs>;
|
|
471
471
|
|
|
472
472
|
/**
|
|
473
473
|
* `prisma.roleCategory`: Exposes CRUD operations for the **RoleCategory** model.
|
|
@@ -990,8 +990,8 @@ export namespace Prisma {
|
|
|
990
990
|
Company: 'Company',
|
|
991
991
|
Contract: 'Contract',
|
|
992
992
|
Mission: 'Mission',
|
|
993
|
+
MissionPreFill: 'MissionPreFill',
|
|
993
994
|
MissionSpec: 'MissionSpec',
|
|
994
|
-
MissionSpecPreFill: 'MissionSpecPreFill',
|
|
995
995
|
RoleCategory: 'RoleCategory',
|
|
996
996
|
TalentCategory: 'TalentCategory',
|
|
997
997
|
TalentIndustry: 'TalentIndustry',
|
|
@@ -1011,7 +1011,7 @@ export namespace Prisma {
|
|
|
1011
1011
|
|
|
1012
1012
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
|
1013
1013
|
meta: {
|
|
1014
|
-
modelProps: "account" | "clientCompany" | "company" | "contract" | "mission" | "
|
|
1014
|
+
modelProps: "account" | "clientCompany" | "company" | "contract" | "mission" | "missionPreFill" | "missionSpec" | "roleCategory" | "talentCategory" | "talentIndustry" | "user"
|
|
1015
1015
|
txIsolationLevel: never
|
|
1016
1016
|
}
|
|
1017
1017
|
model: {
|
|
@@ -1385,151 +1385,151 @@ export namespace Prisma {
|
|
|
1385
1385
|
}
|
|
1386
1386
|
}
|
|
1387
1387
|
}
|
|
1388
|
-
|
|
1389
|
-
payload: Prisma.$
|
|
1390
|
-
fields: Prisma.
|
|
1388
|
+
MissionPreFill: {
|
|
1389
|
+
payload: Prisma.$MissionPreFillPayload<ExtArgs>
|
|
1390
|
+
fields: Prisma.MissionPreFillFieldRefs
|
|
1391
1391
|
operations: {
|
|
1392
1392
|
findUnique: {
|
|
1393
|
-
args: Prisma.
|
|
1394
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1393
|
+
args: Prisma.MissionPreFillFindUniqueArgs<ExtArgs>
|
|
1394
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPreFillPayload> | null
|
|
1395
1395
|
}
|
|
1396
1396
|
findUniqueOrThrow: {
|
|
1397
|
-
args: Prisma.
|
|
1398
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1397
|
+
args: Prisma.MissionPreFillFindUniqueOrThrowArgs<ExtArgs>
|
|
1398
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPreFillPayload>
|
|
1399
1399
|
}
|
|
1400
1400
|
findFirst: {
|
|
1401
|
-
args: Prisma.
|
|
1402
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1401
|
+
args: Prisma.MissionPreFillFindFirstArgs<ExtArgs>
|
|
1402
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPreFillPayload> | null
|
|
1403
1403
|
}
|
|
1404
1404
|
findFirstOrThrow: {
|
|
1405
|
-
args: Prisma.
|
|
1406
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1405
|
+
args: Prisma.MissionPreFillFindFirstOrThrowArgs<ExtArgs>
|
|
1406
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPreFillPayload>
|
|
1407
1407
|
}
|
|
1408
1408
|
findMany: {
|
|
1409
|
-
args: Prisma.
|
|
1410
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1409
|
+
args: Prisma.MissionPreFillFindManyArgs<ExtArgs>
|
|
1410
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPreFillPayload>[]
|
|
1411
1411
|
}
|
|
1412
1412
|
create: {
|
|
1413
|
-
args: Prisma.
|
|
1414
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1413
|
+
args: Prisma.MissionPreFillCreateArgs<ExtArgs>
|
|
1414
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPreFillPayload>
|
|
1415
1415
|
}
|
|
1416
1416
|
createMany: {
|
|
1417
|
-
args: Prisma.
|
|
1417
|
+
args: Prisma.MissionPreFillCreateManyArgs<ExtArgs>
|
|
1418
1418
|
result: BatchPayload
|
|
1419
1419
|
}
|
|
1420
1420
|
delete: {
|
|
1421
|
-
args: Prisma.
|
|
1422
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1421
|
+
args: Prisma.MissionPreFillDeleteArgs<ExtArgs>
|
|
1422
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPreFillPayload>
|
|
1423
1423
|
}
|
|
1424
1424
|
update: {
|
|
1425
|
-
args: Prisma.
|
|
1426
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1425
|
+
args: Prisma.MissionPreFillUpdateArgs<ExtArgs>
|
|
1426
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPreFillPayload>
|
|
1427
1427
|
}
|
|
1428
1428
|
deleteMany: {
|
|
1429
|
-
args: Prisma.
|
|
1429
|
+
args: Prisma.MissionPreFillDeleteManyArgs<ExtArgs>
|
|
1430
1430
|
result: BatchPayload
|
|
1431
1431
|
}
|
|
1432
1432
|
updateMany: {
|
|
1433
|
-
args: Prisma.
|
|
1433
|
+
args: Prisma.MissionPreFillUpdateManyArgs<ExtArgs>
|
|
1434
1434
|
result: BatchPayload
|
|
1435
1435
|
}
|
|
1436
1436
|
upsert: {
|
|
1437
|
-
args: Prisma.
|
|
1438
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1437
|
+
args: Prisma.MissionPreFillUpsertArgs<ExtArgs>
|
|
1438
|
+
result: $Utils.PayloadToResult<Prisma.$MissionPreFillPayload>
|
|
1439
1439
|
}
|
|
1440
1440
|
aggregate: {
|
|
1441
|
-
args: Prisma.
|
|
1442
|
-
result: $Utils.Optional<
|
|
1441
|
+
args: Prisma.MissionPreFillAggregateArgs<ExtArgs>
|
|
1442
|
+
result: $Utils.Optional<AggregateMissionPreFill>
|
|
1443
1443
|
}
|
|
1444
1444
|
groupBy: {
|
|
1445
|
-
args: Prisma.
|
|
1446
|
-
result: $Utils.Optional<
|
|
1445
|
+
args: Prisma.MissionPreFillGroupByArgs<ExtArgs>
|
|
1446
|
+
result: $Utils.Optional<MissionPreFillGroupByOutputType>[]
|
|
1447
1447
|
}
|
|
1448
1448
|
findRaw: {
|
|
1449
|
-
args: Prisma.
|
|
1449
|
+
args: Prisma.MissionPreFillFindRawArgs<ExtArgs>
|
|
1450
1450
|
result: JsonObject
|
|
1451
1451
|
}
|
|
1452
1452
|
aggregateRaw: {
|
|
1453
|
-
args: Prisma.
|
|
1453
|
+
args: Prisma.MissionPreFillAggregateRawArgs<ExtArgs>
|
|
1454
1454
|
result: JsonObject
|
|
1455
1455
|
}
|
|
1456
1456
|
count: {
|
|
1457
|
-
args: Prisma.
|
|
1458
|
-
result: $Utils.Optional<
|
|
1457
|
+
args: Prisma.MissionPreFillCountArgs<ExtArgs>
|
|
1458
|
+
result: $Utils.Optional<MissionPreFillCountAggregateOutputType> | number
|
|
1459
1459
|
}
|
|
1460
1460
|
}
|
|
1461
1461
|
}
|
|
1462
|
-
|
|
1463
|
-
payload: Prisma.$
|
|
1464
|
-
fields: Prisma.
|
|
1462
|
+
MissionSpec: {
|
|
1463
|
+
payload: Prisma.$MissionSpecPayload<ExtArgs>
|
|
1464
|
+
fields: Prisma.MissionSpecFieldRefs
|
|
1465
1465
|
operations: {
|
|
1466
1466
|
findUnique: {
|
|
1467
|
-
args: Prisma.
|
|
1468
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1467
|
+
args: Prisma.MissionSpecFindUniqueArgs<ExtArgs>
|
|
1468
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPayload> | null
|
|
1469
1469
|
}
|
|
1470
1470
|
findUniqueOrThrow: {
|
|
1471
|
-
args: Prisma.
|
|
1472
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1471
|
+
args: Prisma.MissionSpecFindUniqueOrThrowArgs<ExtArgs>
|
|
1472
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPayload>
|
|
1473
1473
|
}
|
|
1474
1474
|
findFirst: {
|
|
1475
|
-
args: Prisma.
|
|
1476
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1475
|
+
args: Prisma.MissionSpecFindFirstArgs<ExtArgs>
|
|
1476
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPayload> | null
|
|
1477
1477
|
}
|
|
1478
1478
|
findFirstOrThrow: {
|
|
1479
|
-
args: Prisma.
|
|
1480
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1479
|
+
args: Prisma.MissionSpecFindFirstOrThrowArgs<ExtArgs>
|
|
1480
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPayload>
|
|
1481
1481
|
}
|
|
1482
1482
|
findMany: {
|
|
1483
|
-
args: Prisma.
|
|
1484
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1483
|
+
args: Prisma.MissionSpecFindManyArgs<ExtArgs>
|
|
1484
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPayload>[]
|
|
1485
1485
|
}
|
|
1486
1486
|
create: {
|
|
1487
|
-
args: Prisma.
|
|
1488
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1487
|
+
args: Prisma.MissionSpecCreateArgs<ExtArgs>
|
|
1488
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPayload>
|
|
1489
1489
|
}
|
|
1490
1490
|
createMany: {
|
|
1491
|
-
args: Prisma.
|
|
1491
|
+
args: Prisma.MissionSpecCreateManyArgs<ExtArgs>
|
|
1492
1492
|
result: BatchPayload
|
|
1493
1493
|
}
|
|
1494
1494
|
delete: {
|
|
1495
|
-
args: Prisma.
|
|
1496
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1495
|
+
args: Prisma.MissionSpecDeleteArgs<ExtArgs>
|
|
1496
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPayload>
|
|
1497
1497
|
}
|
|
1498
1498
|
update: {
|
|
1499
|
-
args: Prisma.
|
|
1500
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1499
|
+
args: Prisma.MissionSpecUpdateArgs<ExtArgs>
|
|
1500
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPayload>
|
|
1501
1501
|
}
|
|
1502
1502
|
deleteMany: {
|
|
1503
|
-
args: Prisma.
|
|
1503
|
+
args: Prisma.MissionSpecDeleteManyArgs<ExtArgs>
|
|
1504
1504
|
result: BatchPayload
|
|
1505
1505
|
}
|
|
1506
1506
|
updateMany: {
|
|
1507
|
-
args: Prisma.
|
|
1507
|
+
args: Prisma.MissionSpecUpdateManyArgs<ExtArgs>
|
|
1508
1508
|
result: BatchPayload
|
|
1509
1509
|
}
|
|
1510
1510
|
upsert: {
|
|
1511
|
-
args: Prisma.
|
|
1512
|
-
result: $Utils.PayloadToResult<Prisma.$
|
|
1511
|
+
args: Prisma.MissionSpecUpsertArgs<ExtArgs>
|
|
1512
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPayload>
|
|
1513
1513
|
}
|
|
1514
1514
|
aggregate: {
|
|
1515
|
-
args: Prisma.
|
|
1516
|
-
result: $Utils.Optional<
|
|
1515
|
+
args: Prisma.MissionSpecAggregateArgs<ExtArgs>
|
|
1516
|
+
result: $Utils.Optional<AggregateMissionSpec>
|
|
1517
1517
|
}
|
|
1518
1518
|
groupBy: {
|
|
1519
|
-
args: Prisma.
|
|
1520
|
-
result: $Utils.Optional<
|
|
1519
|
+
args: Prisma.MissionSpecGroupByArgs<ExtArgs>
|
|
1520
|
+
result: $Utils.Optional<MissionSpecGroupByOutputType>[]
|
|
1521
1521
|
}
|
|
1522
1522
|
findRaw: {
|
|
1523
|
-
args: Prisma.
|
|
1523
|
+
args: Prisma.MissionSpecFindRawArgs<ExtArgs>
|
|
1524
1524
|
result: JsonObject
|
|
1525
1525
|
}
|
|
1526
1526
|
aggregateRaw: {
|
|
1527
|
-
args: Prisma.
|
|
1527
|
+
args: Prisma.MissionSpecAggregateRawArgs<ExtArgs>
|
|
1528
1528
|
result: JsonObject
|
|
1529
1529
|
}
|
|
1530
1530
|
count: {
|
|
1531
|
-
args: Prisma.
|
|
1532
|
-
result: $Utils.Optional<
|
|
1531
|
+
args: Prisma.MissionSpecCountArgs<ExtArgs>
|
|
1532
|
+
result: $Utils.Optional<MissionSpecCountAggregateOutputType> | number
|
|
1533
1533
|
}
|
|
1534
1534
|
}
|
|
1535
1535
|
}
|
|
@@ -2123,7 +2123,7 @@ export namespace Prisma {
|
|
|
2123
2123
|
ownedMissionsModels: number
|
|
2124
2124
|
authoredMissionSpecs: number
|
|
2125
2125
|
modifiedMissionSpecs: number
|
|
2126
|
-
|
|
2126
|
+
missionPreFills: number
|
|
2127
2127
|
}
|
|
2128
2128
|
|
|
2129
2129
|
export type UserCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -2131,7 +2131,7 @@ export namespace Prisma {
|
|
|
2131
2131
|
ownedMissionsModels?: boolean | UserCountOutputTypeCountOwnedMissionsModelsArgs
|
|
2132
2132
|
authoredMissionSpecs?: boolean | UserCountOutputTypeCountAuthoredMissionSpecsArgs
|
|
2133
2133
|
modifiedMissionSpecs?: boolean | UserCountOutputTypeCountModifiedMissionSpecsArgs
|
|
2134
|
-
|
|
2134
|
+
missionPreFills?: boolean | UserCountOutputTypeCountMissionPreFillsArgs
|
|
2135
2135
|
}
|
|
2136
2136
|
|
|
2137
2137
|
// Custom InputTypes
|
|
@@ -2176,8 +2176,8 @@ export namespace Prisma {
|
|
|
2176
2176
|
/**
|
|
2177
2177
|
* UserCountOutputType without action
|
|
2178
2178
|
*/
|
|
2179
|
-
export type
|
|
2180
|
-
where?:
|
|
2179
|
+
export type UserCountOutputTypeCountMissionPreFillsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2180
|
+
where?: MissionPreFillWhereInput
|
|
2181
2181
|
}
|
|
2182
2182
|
|
|
2183
2183
|
|
|
@@ -9601,550 +9601,389 @@ export namespace Prisma {
|
|
|
9601
9601
|
|
|
9602
9602
|
|
|
9603
9603
|
/**
|
|
9604
|
-
* Model
|
|
9604
|
+
* Model MissionPreFill
|
|
9605
9605
|
*/
|
|
9606
9606
|
|
|
9607
|
-
export type
|
|
9608
|
-
_count:
|
|
9609
|
-
|
|
9610
|
-
|
|
9611
|
-
_min: MissionSpecMinAggregateOutputType | null
|
|
9612
|
-
_max: MissionSpecMaxAggregateOutputType | null
|
|
9613
|
-
}
|
|
9614
|
-
|
|
9615
|
-
export type MissionSpecAvgAggregateOutputType = {
|
|
9616
|
-
v: number | null
|
|
9617
|
-
workingHoursNumberOfMinutesOverlap: number | null
|
|
9618
|
-
}
|
|
9619
|
-
|
|
9620
|
-
export type MissionSpecSumAggregateOutputType = {
|
|
9621
|
-
v: number | null
|
|
9622
|
-
workingHoursNumberOfMinutesOverlap: number | null
|
|
9607
|
+
export type AggregateMissionPreFill = {
|
|
9608
|
+
_count: MissionPreFillCountAggregateOutputType | null
|
|
9609
|
+
_min: MissionPreFillMinAggregateOutputType | null
|
|
9610
|
+
_max: MissionPreFillMaxAggregateOutputType | null
|
|
9623
9611
|
}
|
|
9624
9612
|
|
|
9625
|
-
export type
|
|
9613
|
+
export type MissionPreFillMinAggregateOutputType = {
|
|
9626
9614
|
id: string | null
|
|
9627
|
-
|
|
9628
|
-
|
|
9629
|
-
|
|
9630
|
-
clientConfirmed: boolean | null
|
|
9615
|
+
userId: string | null
|
|
9616
|
+
missionName: string | null
|
|
9617
|
+
plannedStart: string | null
|
|
9631
9618
|
companyDescription: string | null
|
|
9619
|
+
missionDescription: string | null
|
|
9620
|
+
timezone: string | null
|
|
9621
|
+
status: string | null
|
|
9632
9622
|
createdAt: Date | null
|
|
9633
|
-
deletedAt: Date | null
|
|
9634
|
-
description: string | null
|
|
9635
|
-
icon: string | null
|
|
9636
|
-
lastModifierId: string | null
|
|
9637
|
-
logo: string | null
|
|
9638
|
-
platformId: string | null
|
|
9639
|
-
startDate: Date | null
|
|
9640
|
-
status: $Enums.MissionSpecStatus | null
|
|
9641
|
-
title: string | null
|
|
9642
9623
|
updatedAt: Date | null
|
|
9643
|
-
v: number | null
|
|
9644
|
-
videoURL: string | null
|
|
9645
|
-
workingHoursNumberOfMinutesOverlap: number | null
|
|
9646
9624
|
}
|
|
9647
9625
|
|
|
9648
|
-
export type
|
|
9626
|
+
export type MissionPreFillMaxAggregateOutputType = {
|
|
9649
9627
|
id: string | null
|
|
9650
|
-
|
|
9651
|
-
|
|
9652
|
-
|
|
9653
|
-
clientConfirmed: boolean | null
|
|
9628
|
+
userId: string | null
|
|
9629
|
+
missionName: string | null
|
|
9630
|
+
plannedStart: string | null
|
|
9654
9631
|
companyDescription: string | null
|
|
9632
|
+
missionDescription: string | null
|
|
9633
|
+
timezone: string | null
|
|
9634
|
+
status: string | null
|
|
9655
9635
|
createdAt: Date | null
|
|
9656
|
-
deletedAt: Date | null
|
|
9657
|
-
description: string | null
|
|
9658
|
-
icon: string | null
|
|
9659
|
-
lastModifierId: string | null
|
|
9660
|
-
logo: string | null
|
|
9661
|
-
platformId: string | null
|
|
9662
|
-
startDate: Date | null
|
|
9663
|
-
status: $Enums.MissionSpecStatus | null
|
|
9664
|
-
title: string | null
|
|
9665
9636
|
updatedAt: Date | null
|
|
9666
|
-
v: number | null
|
|
9667
|
-
videoURL: string | null
|
|
9668
|
-
workingHoursNumberOfMinutesOverlap: number | null
|
|
9669
9637
|
}
|
|
9670
9638
|
|
|
9671
|
-
export type
|
|
9639
|
+
export type MissionPreFillCountAggregateOutputType = {
|
|
9672
9640
|
id: number
|
|
9673
|
-
|
|
9674
|
-
|
|
9675
|
-
|
|
9676
|
-
clientConfirmed: number
|
|
9677
|
-
collaborators: number
|
|
9641
|
+
userId: number
|
|
9642
|
+
missionName: number
|
|
9643
|
+
plannedStart: number
|
|
9678
9644
|
companyDescription: number
|
|
9679
|
-
|
|
9680
|
-
|
|
9681
|
-
|
|
9682
|
-
icon: number
|
|
9683
|
-
lastModifierId: number
|
|
9684
|
-
logo: number
|
|
9685
|
-
platformId: number
|
|
9686
|
-
startDate: number
|
|
9645
|
+
missionDescription: number
|
|
9646
|
+
timezone: number
|
|
9647
|
+
openRoles: number
|
|
9687
9648
|
status: number
|
|
9688
|
-
|
|
9649
|
+
createdAt: number
|
|
9689
9650
|
updatedAt: number
|
|
9690
|
-
v: number
|
|
9691
|
-
videoURL: number
|
|
9692
|
-
workingHoursNumberOfMinutesOverlap: number
|
|
9693
9651
|
_all: number
|
|
9694
9652
|
}
|
|
9695
9653
|
|
|
9696
9654
|
|
|
9697
|
-
export type
|
|
9698
|
-
v?: true
|
|
9699
|
-
workingHoursNumberOfMinutesOverlap?: true
|
|
9700
|
-
}
|
|
9701
|
-
|
|
9702
|
-
export type MissionSpecSumAggregateInputType = {
|
|
9703
|
-
v?: true
|
|
9704
|
-
workingHoursNumberOfMinutesOverlap?: true
|
|
9705
|
-
}
|
|
9706
|
-
|
|
9707
|
-
export type MissionSpecMinAggregateInputType = {
|
|
9655
|
+
export type MissionPreFillMinAggregateInputType = {
|
|
9708
9656
|
id?: true
|
|
9709
|
-
|
|
9710
|
-
|
|
9711
|
-
|
|
9712
|
-
clientConfirmed?: true
|
|
9657
|
+
userId?: true
|
|
9658
|
+
missionName?: true
|
|
9659
|
+
plannedStart?: true
|
|
9713
9660
|
companyDescription?: true
|
|
9714
|
-
|
|
9715
|
-
|
|
9716
|
-
description?: true
|
|
9717
|
-
icon?: true
|
|
9718
|
-
lastModifierId?: true
|
|
9719
|
-
logo?: true
|
|
9720
|
-
platformId?: true
|
|
9721
|
-
startDate?: true
|
|
9661
|
+
missionDescription?: true
|
|
9662
|
+
timezone?: true
|
|
9722
9663
|
status?: true
|
|
9723
|
-
|
|
9664
|
+
createdAt?: true
|
|
9724
9665
|
updatedAt?: true
|
|
9725
|
-
v?: true
|
|
9726
|
-
videoURL?: true
|
|
9727
|
-
workingHoursNumberOfMinutesOverlap?: true
|
|
9728
9666
|
}
|
|
9729
9667
|
|
|
9730
|
-
export type
|
|
9668
|
+
export type MissionPreFillMaxAggregateInputType = {
|
|
9731
9669
|
id?: true
|
|
9732
|
-
|
|
9733
|
-
|
|
9734
|
-
|
|
9735
|
-
clientConfirmed?: true
|
|
9670
|
+
userId?: true
|
|
9671
|
+
missionName?: true
|
|
9672
|
+
plannedStart?: true
|
|
9736
9673
|
companyDescription?: true
|
|
9737
|
-
|
|
9738
|
-
|
|
9739
|
-
description?: true
|
|
9740
|
-
icon?: true
|
|
9741
|
-
lastModifierId?: true
|
|
9742
|
-
logo?: true
|
|
9743
|
-
platformId?: true
|
|
9744
|
-
startDate?: true
|
|
9674
|
+
missionDescription?: true
|
|
9675
|
+
timezone?: true
|
|
9745
9676
|
status?: true
|
|
9746
|
-
|
|
9677
|
+
createdAt?: true
|
|
9747
9678
|
updatedAt?: true
|
|
9748
|
-
v?: true
|
|
9749
|
-
videoURL?: true
|
|
9750
|
-
workingHoursNumberOfMinutesOverlap?: true
|
|
9751
9679
|
}
|
|
9752
9680
|
|
|
9753
|
-
export type
|
|
9681
|
+
export type MissionPreFillCountAggregateInputType = {
|
|
9754
9682
|
id?: true
|
|
9755
|
-
|
|
9756
|
-
|
|
9757
|
-
|
|
9758
|
-
clientConfirmed?: true
|
|
9759
|
-
collaborators?: true
|
|
9683
|
+
userId?: true
|
|
9684
|
+
missionName?: true
|
|
9685
|
+
plannedStart?: true
|
|
9760
9686
|
companyDescription?: true
|
|
9761
|
-
|
|
9762
|
-
|
|
9763
|
-
|
|
9764
|
-
icon?: true
|
|
9765
|
-
lastModifierId?: true
|
|
9766
|
-
logo?: true
|
|
9767
|
-
platformId?: true
|
|
9768
|
-
startDate?: true
|
|
9687
|
+
missionDescription?: true
|
|
9688
|
+
timezone?: true
|
|
9689
|
+
openRoles?: true
|
|
9769
9690
|
status?: true
|
|
9770
|
-
|
|
9691
|
+
createdAt?: true
|
|
9771
9692
|
updatedAt?: true
|
|
9772
|
-
v?: true
|
|
9773
|
-
videoURL?: true
|
|
9774
|
-
workingHoursNumberOfMinutesOverlap?: true
|
|
9775
9693
|
_all?: true
|
|
9776
9694
|
}
|
|
9777
9695
|
|
|
9778
|
-
export type
|
|
9696
|
+
export type MissionPreFillAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9779
9697
|
/**
|
|
9780
|
-
* Filter which
|
|
9698
|
+
* Filter which MissionPreFill to aggregate.
|
|
9781
9699
|
*/
|
|
9782
|
-
where?:
|
|
9700
|
+
where?: MissionPreFillWhereInput
|
|
9783
9701
|
/**
|
|
9784
9702
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
9785
9703
|
*
|
|
9786
|
-
* Determine the order of
|
|
9704
|
+
* Determine the order of MissionPreFills to fetch.
|
|
9787
9705
|
*/
|
|
9788
|
-
orderBy?:
|
|
9706
|
+
orderBy?: MissionPreFillOrderByWithRelationInput | MissionPreFillOrderByWithRelationInput[]
|
|
9789
9707
|
/**
|
|
9790
9708
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
9791
9709
|
*
|
|
9792
9710
|
* Sets the start position
|
|
9793
9711
|
*/
|
|
9794
|
-
cursor?:
|
|
9712
|
+
cursor?: MissionPreFillWhereUniqueInput
|
|
9795
9713
|
/**
|
|
9796
9714
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
9797
9715
|
*
|
|
9798
|
-
* Take `±n`
|
|
9716
|
+
* Take `±n` MissionPreFills from the position of the cursor.
|
|
9799
9717
|
*/
|
|
9800
9718
|
take?: number
|
|
9801
9719
|
/**
|
|
9802
9720
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
9803
9721
|
*
|
|
9804
|
-
* Skip the first `n`
|
|
9722
|
+
* Skip the first `n` MissionPreFills.
|
|
9805
9723
|
*/
|
|
9806
9724
|
skip?: number
|
|
9807
9725
|
/**
|
|
9808
9726
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
9809
9727
|
*
|
|
9810
|
-
* Count returned
|
|
9728
|
+
* Count returned MissionPreFills
|
|
9811
9729
|
**/
|
|
9812
|
-
_count?: true |
|
|
9813
|
-
/**
|
|
9814
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
9815
|
-
*
|
|
9816
|
-
* Select which fields to average
|
|
9817
|
-
**/
|
|
9818
|
-
_avg?: MissionSpecAvgAggregateInputType
|
|
9819
|
-
/**
|
|
9820
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
9821
|
-
*
|
|
9822
|
-
* Select which fields to sum
|
|
9823
|
-
**/
|
|
9824
|
-
_sum?: MissionSpecSumAggregateInputType
|
|
9730
|
+
_count?: true | MissionPreFillCountAggregateInputType
|
|
9825
9731
|
/**
|
|
9826
9732
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
9827
9733
|
*
|
|
9828
9734
|
* Select which fields to find the minimum value
|
|
9829
9735
|
**/
|
|
9830
|
-
_min?:
|
|
9736
|
+
_min?: MissionPreFillMinAggregateInputType
|
|
9831
9737
|
/**
|
|
9832
9738
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
9833
9739
|
*
|
|
9834
9740
|
* Select which fields to find the maximum value
|
|
9835
9741
|
**/
|
|
9836
|
-
_max?:
|
|
9742
|
+
_max?: MissionPreFillMaxAggregateInputType
|
|
9837
9743
|
}
|
|
9838
9744
|
|
|
9839
|
-
export type
|
|
9840
|
-
[P in keyof T & keyof
|
|
9745
|
+
export type GetMissionPreFillAggregateType<T extends MissionPreFillAggregateArgs> = {
|
|
9746
|
+
[P in keyof T & keyof AggregateMissionPreFill]: P extends '_count' | 'count'
|
|
9841
9747
|
? T[P] extends true
|
|
9842
9748
|
? number
|
|
9843
|
-
: GetScalarType<T[P],
|
|
9844
|
-
: GetScalarType<T[P],
|
|
9749
|
+
: GetScalarType<T[P], AggregateMissionPreFill[P]>
|
|
9750
|
+
: GetScalarType<T[P], AggregateMissionPreFill[P]>
|
|
9845
9751
|
}
|
|
9846
9752
|
|
|
9847
9753
|
|
|
9848
9754
|
|
|
9849
9755
|
|
|
9850
|
-
export type
|
|
9851
|
-
where?:
|
|
9852
|
-
orderBy?:
|
|
9853
|
-
by:
|
|
9854
|
-
having?:
|
|
9756
|
+
export type MissionPreFillGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9757
|
+
where?: MissionPreFillWhereInput
|
|
9758
|
+
orderBy?: MissionPreFillOrderByWithAggregationInput | MissionPreFillOrderByWithAggregationInput[]
|
|
9759
|
+
by: MissionPreFillScalarFieldEnum[] | MissionPreFillScalarFieldEnum
|
|
9760
|
+
having?: MissionPreFillScalarWhereWithAggregatesInput
|
|
9855
9761
|
take?: number
|
|
9856
9762
|
skip?: number
|
|
9857
|
-
_count?:
|
|
9858
|
-
|
|
9859
|
-
|
|
9860
|
-
_min?: MissionSpecMinAggregateInputType
|
|
9861
|
-
_max?: MissionSpecMaxAggregateInputType
|
|
9763
|
+
_count?: MissionPreFillCountAggregateInputType | true
|
|
9764
|
+
_min?: MissionPreFillMinAggregateInputType
|
|
9765
|
+
_max?: MissionPreFillMaxAggregateInputType
|
|
9862
9766
|
}
|
|
9863
9767
|
|
|
9864
|
-
export type
|
|
9768
|
+
export type MissionPreFillGroupByOutputType = {
|
|
9865
9769
|
id: string
|
|
9866
|
-
|
|
9867
|
-
|
|
9868
|
-
|
|
9869
|
-
clientConfirmed: boolean | null
|
|
9870
|
-
collaborators: string[]
|
|
9770
|
+
userId: string
|
|
9771
|
+
missionName: string | null
|
|
9772
|
+
plannedStart: string | null
|
|
9871
9773
|
companyDescription: string | null
|
|
9872
|
-
|
|
9873
|
-
|
|
9874
|
-
|
|
9875
|
-
|
|
9876
|
-
|
|
9877
|
-
|
|
9878
|
-
|
|
9879
|
-
|
|
9880
|
-
|
|
9881
|
-
title: string
|
|
9882
|
-
updatedAt: Date | null
|
|
9883
|
-
v: number
|
|
9884
|
-
videoURL: string | null
|
|
9885
|
-
workingHoursNumberOfMinutesOverlap: number | null
|
|
9886
|
-
_count: MissionSpecCountAggregateOutputType | null
|
|
9887
|
-
_avg: MissionSpecAvgAggregateOutputType | null
|
|
9888
|
-
_sum: MissionSpecSumAggregateOutputType | null
|
|
9889
|
-
_min: MissionSpecMinAggregateOutputType | null
|
|
9890
|
-
_max: MissionSpecMaxAggregateOutputType | null
|
|
9774
|
+
missionDescription: string | null
|
|
9775
|
+
timezone: string | null
|
|
9776
|
+
openRoles: JsonValue | null
|
|
9777
|
+
status: string
|
|
9778
|
+
createdAt: Date
|
|
9779
|
+
updatedAt: Date
|
|
9780
|
+
_count: MissionPreFillCountAggregateOutputType | null
|
|
9781
|
+
_min: MissionPreFillMinAggregateOutputType | null
|
|
9782
|
+
_max: MissionPreFillMaxAggregateOutputType | null
|
|
9891
9783
|
}
|
|
9892
9784
|
|
|
9893
|
-
type
|
|
9785
|
+
type GetMissionPreFillGroupByPayload<T extends MissionPreFillGroupByArgs> = Prisma.PrismaPromise<
|
|
9894
9786
|
Array<
|
|
9895
|
-
PickEnumerable<
|
|
9787
|
+
PickEnumerable<MissionPreFillGroupByOutputType, T['by']> &
|
|
9896
9788
|
{
|
|
9897
|
-
[P in ((keyof T) & (keyof
|
|
9789
|
+
[P in ((keyof T) & (keyof MissionPreFillGroupByOutputType))]: P extends '_count'
|
|
9898
9790
|
? T[P] extends boolean
|
|
9899
9791
|
? number
|
|
9900
|
-
: GetScalarType<T[P],
|
|
9901
|
-
: GetScalarType<T[P],
|
|
9792
|
+
: GetScalarType<T[P], MissionPreFillGroupByOutputType[P]>
|
|
9793
|
+
: GetScalarType<T[P], MissionPreFillGroupByOutputType[P]>
|
|
9902
9794
|
}
|
|
9903
9795
|
>
|
|
9904
9796
|
>
|
|
9905
9797
|
|
|
9906
9798
|
|
|
9907
|
-
export type
|
|
9799
|
+
export type MissionPreFillSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9908
9800
|
id?: boolean
|
|
9909
|
-
|
|
9910
|
-
|
|
9911
|
-
|
|
9912
|
-
clientCompanyId?: boolean
|
|
9913
|
-
clientConfirmed?: boolean
|
|
9914
|
-
collaborators?: boolean
|
|
9801
|
+
userId?: boolean
|
|
9802
|
+
missionName?: boolean
|
|
9803
|
+
plannedStart?: boolean
|
|
9915
9804
|
companyDescription?: boolean
|
|
9916
|
-
|
|
9917
|
-
|
|
9918
|
-
|
|
9919
|
-
icon?: boolean
|
|
9920
|
-
lastModifierId?: boolean
|
|
9921
|
-
logo?: boolean
|
|
9922
|
-
metadata?: boolean | MetadataDefaultArgs<ExtArgs>
|
|
9923
|
-
platformId?: boolean
|
|
9924
|
-
roles?: boolean | MissionSpecRoleDefaultArgs<ExtArgs>
|
|
9925
|
-
startDate?: boolean
|
|
9805
|
+
missionDescription?: boolean
|
|
9806
|
+
timezone?: boolean
|
|
9807
|
+
openRoles?: boolean
|
|
9926
9808
|
status?: boolean
|
|
9927
|
-
|
|
9928
|
-
title?: boolean
|
|
9809
|
+
createdAt?: boolean
|
|
9929
9810
|
updatedAt?: boolean
|
|
9930
|
-
|
|
9931
|
-
|
|
9932
|
-
workingHours?: boolean | WorkingHoursDefaultArgs<ExtArgs>
|
|
9933
|
-
workingHoursNumberOfMinutesOverlap?: boolean
|
|
9934
|
-
account?: boolean | MissionSpec$accountArgs<ExtArgs>
|
|
9935
|
-
author?: boolean | MissionSpec$authorArgs<ExtArgs>
|
|
9936
|
-
clientCompany?: boolean | MissionSpec$clientCompanyArgs<ExtArgs>
|
|
9937
|
-
lastModifier?: boolean | MissionSpec$lastModifierArgs<ExtArgs>
|
|
9938
|
-
mission?: boolean | MissionSpec$missionArgs<ExtArgs>
|
|
9939
|
-
}, ExtArgs["result"]["missionSpec"]>
|
|
9811
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
9812
|
+
}, ExtArgs["result"]["missionPreFill"]>
|
|
9940
9813
|
|
|
9941
9814
|
|
|
9942
|
-
export type
|
|
9815
|
+
export type MissionPreFillSelectScalar = {
|
|
9943
9816
|
id?: boolean
|
|
9944
|
-
|
|
9945
|
-
|
|
9946
|
-
|
|
9947
|
-
clientConfirmed?: boolean
|
|
9948
|
-
collaborators?: boolean
|
|
9817
|
+
userId?: boolean
|
|
9818
|
+
missionName?: boolean
|
|
9819
|
+
plannedStart?: boolean
|
|
9949
9820
|
companyDescription?: boolean
|
|
9950
|
-
|
|
9951
|
-
|
|
9952
|
-
|
|
9953
|
-
icon?: boolean
|
|
9954
|
-
lastModifierId?: boolean
|
|
9955
|
-
logo?: boolean
|
|
9956
|
-
platformId?: boolean
|
|
9957
|
-
startDate?: boolean
|
|
9821
|
+
missionDescription?: boolean
|
|
9822
|
+
timezone?: boolean
|
|
9823
|
+
openRoles?: boolean
|
|
9958
9824
|
status?: boolean
|
|
9959
|
-
|
|
9825
|
+
createdAt?: boolean
|
|
9960
9826
|
updatedAt?: boolean
|
|
9961
|
-
v?: boolean
|
|
9962
|
-
videoURL?: boolean
|
|
9963
|
-
workingHoursNumberOfMinutesOverlap?: boolean
|
|
9964
9827
|
}
|
|
9965
9828
|
|
|
9966
|
-
export type
|
|
9967
|
-
|
|
9968
|
-
author?: boolean | MissionSpec$authorArgs<ExtArgs>
|
|
9969
|
-
clientCompany?: boolean | MissionSpec$clientCompanyArgs<ExtArgs>
|
|
9970
|
-
lastModifier?: boolean | MissionSpec$lastModifierArgs<ExtArgs>
|
|
9971
|
-
mission?: boolean | MissionSpec$missionArgs<ExtArgs>
|
|
9829
|
+
export type MissionPreFillInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9830
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
9972
9831
|
}
|
|
9973
9832
|
|
|
9974
|
-
export type $
|
|
9975
|
-
name: "
|
|
9833
|
+
export type $MissionPreFillPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9834
|
+
name: "MissionPreFill"
|
|
9976
9835
|
objects: {
|
|
9977
|
-
|
|
9978
|
-
author: Prisma.$UserPayload<ExtArgs> | null
|
|
9979
|
-
clientCompany: Prisma.$ClientCompanyPayload<ExtArgs> | null
|
|
9980
|
-
lastModifier: Prisma.$UserPayload<ExtArgs> | null
|
|
9981
|
-
mission: Prisma.$MissionPayload<ExtArgs> | null
|
|
9836
|
+
user: Prisma.$UserPayload<ExtArgs>
|
|
9982
9837
|
}
|
|
9983
9838
|
scalars: $Extensions.GetPayloadResult<{
|
|
9984
9839
|
id: string
|
|
9985
|
-
|
|
9986
|
-
|
|
9987
|
-
|
|
9988
|
-
clientConfirmed: boolean | null
|
|
9989
|
-
collaborators: string[]
|
|
9840
|
+
userId: string
|
|
9841
|
+
missionName: string | null
|
|
9842
|
+
plannedStart: string | null
|
|
9990
9843
|
companyDescription: string | null
|
|
9991
|
-
|
|
9992
|
-
|
|
9993
|
-
|
|
9994
|
-
|
|
9995
|
-
|
|
9996
|
-
|
|
9997
|
-
|
|
9998
|
-
|
|
9999
|
-
status: $Enums.MissionSpecStatus
|
|
10000
|
-
title: string
|
|
10001
|
-
updatedAt: Date | null
|
|
10002
|
-
v: number
|
|
10003
|
-
videoURL: string | null
|
|
10004
|
-
workingHoursNumberOfMinutesOverlap: number | null
|
|
10005
|
-
}, ExtArgs["result"]["missionSpec"]>
|
|
10006
|
-
composites: {
|
|
10007
|
-
attachedLinks: Prisma.$AttachedLinkPayload[]
|
|
10008
|
-
metadata: Prisma.$MetadataPayload | null
|
|
10009
|
-
roles: Prisma.$MissionSpecRolePayload[]
|
|
10010
|
-
statusChangedAt: Prisma.$StatusTimePayload | null
|
|
10011
|
-
workingHours: Prisma.$WorkingHoursPayload | null
|
|
10012
|
-
}
|
|
9844
|
+
missionDescription: string | null
|
|
9845
|
+
timezone: string | null
|
|
9846
|
+
openRoles: Prisma.JsonValue | null
|
|
9847
|
+
status: string
|
|
9848
|
+
createdAt: Date
|
|
9849
|
+
updatedAt: Date
|
|
9850
|
+
}, ExtArgs["result"]["missionPreFill"]>
|
|
9851
|
+
composites: {}
|
|
10013
9852
|
}
|
|
10014
9853
|
|
|
10015
|
-
type
|
|
9854
|
+
type MissionPreFillGetPayload<S extends boolean | null | undefined | MissionPreFillDefaultArgs> = $Result.GetResult<Prisma.$MissionPreFillPayload, S>
|
|
10016
9855
|
|
|
10017
|
-
type
|
|
10018
|
-
Omit<
|
|
10019
|
-
select?:
|
|
9856
|
+
type MissionPreFillCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
9857
|
+
Omit<MissionPreFillFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
9858
|
+
select?: MissionPreFillCountAggregateInputType | true
|
|
10020
9859
|
}
|
|
10021
9860
|
|
|
10022
|
-
export interface
|
|
10023
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['
|
|
9861
|
+
export interface MissionPreFillDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
9862
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['MissionPreFill'], meta: { name: 'MissionPreFill' } }
|
|
10024
9863
|
/**
|
|
10025
|
-
* Find zero or one
|
|
10026
|
-
* @param {
|
|
9864
|
+
* Find zero or one MissionPreFill that matches the filter.
|
|
9865
|
+
* @param {MissionPreFillFindUniqueArgs} args - Arguments to find a MissionPreFill
|
|
10027
9866
|
* @example
|
|
10028
|
-
* // Get one
|
|
10029
|
-
* const
|
|
9867
|
+
* // Get one MissionPreFill
|
|
9868
|
+
* const missionPreFill = await prisma.missionPreFill.findUnique({
|
|
10030
9869
|
* where: {
|
|
10031
9870
|
* // ... provide filter here
|
|
10032
9871
|
* }
|
|
10033
9872
|
* })
|
|
10034
9873
|
*/
|
|
10035
|
-
findUnique<T extends
|
|
9874
|
+
findUnique<T extends MissionPreFillFindUniqueArgs>(args: SelectSubset<T, MissionPreFillFindUniqueArgs<ExtArgs>>): Prisma__MissionPreFillClient<$Result.GetResult<Prisma.$MissionPreFillPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
10036
9875
|
|
|
10037
9876
|
/**
|
|
10038
|
-
* Find one
|
|
9877
|
+
* Find one MissionPreFill that matches the filter or throw an error with `error.code='P2025'`
|
|
10039
9878
|
* if no matches were found.
|
|
10040
|
-
* @param {
|
|
9879
|
+
* @param {MissionPreFillFindUniqueOrThrowArgs} args - Arguments to find a MissionPreFill
|
|
10041
9880
|
* @example
|
|
10042
|
-
* // Get one
|
|
10043
|
-
* const
|
|
9881
|
+
* // Get one MissionPreFill
|
|
9882
|
+
* const missionPreFill = await prisma.missionPreFill.findUniqueOrThrow({
|
|
10044
9883
|
* where: {
|
|
10045
9884
|
* // ... provide filter here
|
|
10046
9885
|
* }
|
|
10047
9886
|
* })
|
|
10048
9887
|
*/
|
|
10049
|
-
findUniqueOrThrow<T extends
|
|
9888
|
+
findUniqueOrThrow<T extends MissionPreFillFindUniqueOrThrowArgs>(args: SelectSubset<T, MissionPreFillFindUniqueOrThrowArgs<ExtArgs>>): Prisma__MissionPreFillClient<$Result.GetResult<Prisma.$MissionPreFillPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
10050
9889
|
|
|
10051
9890
|
/**
|
|
10052
|
-
* Find the first
|
|
9891
|
+
* Find the first MissionPreFill that matches the filter.
|
|
10053
9892
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10054
9893
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10055
|
-
* @param {
|
|
9894
|
+
* @param {MissionPreFillFindFirstArgs} args - Arguments to find a MissionPreFill
|
|
10056
9895
|
* @example
|
|
10057
|
-
* // Get one
|
|
10058
|
-
* const
|
|
9896
|
+
* // Get one MissionPreFill
|
|
9897
|
+
* const missionPreFill = await prisma.missionPreFill.findFirst({
|
|
10059
9898
|
* where: {
|
|
10060
9899
|
* // ... provide filter here
|
|
10061
9900
|
* }
|
|
10062
9901
|
* })
|
|
10063
9902
|
*/
|
|
10064
|
-
findFirst<T extends
|
|
9903
|
+
findFirst<T extends MissionPreFillFindFirstArgs>(args?: SelectSubset<T, MissionPreFillFindFirstArgs<ExtArgs>>): Prisma__MissionPreFillClient<$Result.GetResult<Prisma.$MissionPreFillPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
10065
9904
|
|
|
10066
9905
|
/**
|
|
10067
|
-
* Find the first
|
|
9906
|
+
* Find the first MissionPreFill that matches the filter or
|
|
10068
9907
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
10069
9908
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10070
9909
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10071
|
-
* @param {
|
|
9910
|
+
* @param {MissionPreFillFindFirstOrThrowArgs} args - Arguments to find a MissionPreFill
|
|
10072
9911
|
* @example
|
|
10073
|
-
* // Get one
|
|
10074
|
-
* const
|
|
9912
|
+
* // Get one MissionPreFill
|
|
9913
|
+
* const missionPreFill = await prisma.missionPreFill.findFirstOrThrow({
|
|
10075
9914
|
* where: {
|
|
10076
9915
|
* // ... provide filter here
|
|
10077
9916
|
* }
|
|
10078
9917
|
* })
|
|
10079
9918
|
*/
|
|
10080
|
-
findFirstOrThrow<T extends
|
|
9919
|
+
findFirstOrThrow<T extends MissionPreFillFindFirstOrThrowArgs>(args?: SelectSubset<T, MissionPreFillFindFirstOrThrowArgs<ExtArgs>>): Prisma__MissionPreFillClient<$Result.GetResult<Prisma.$MissionPreFillPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
10081
9920
|
|
|
10082
9921
|
/**
|
|
10083
|
-
* Find zero or more
|
|
9922
|
+
* Find zero or more MissionPreFills that matches the filter.
|
|
10084
9923
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10085
9924
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10086
|
-
* @param {
|
|
9925
|
+
* @param {MissionPreFillFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
10087
9926
|
* @example
|
|
10088
|
-
* // Get all
|
|
10089
|
-
* const
|
|
9927
|
+
* // Get all MissionPreFills
|
|
9928
|
+
* const missionPreFills = await prisma.missionPreFill.findMany()
|
|
10090
9929
|
*
|
|
10091
|
-
* // Get first 10
|
|
10092
|
-
* const
|
|
9930
|
+
* // Get first 10 MissionPreFills
|
|
9931
|
+
* const missionPreFills = await prisma.missionPreFill.findMany({ take: 10 })
|
|
10093
9932
|
*
|
|
10094
9933
|
* // Only select the `id`
|
|
10095
|
-
* const
|
|
9934
|
+
* const missionPreFillWithIdOnly = await prisma.missionPreFill.findMany({ select: { id: true } })
|
|
10096
9935
|
*
|
|
10097
9936
|
*/
|
|
10098
|
-
findMany<T extends
|
|
9937
|
+
findMany<T extends MissionPreFillFindManyArgs>(args?: SelectSubset<T, MissionPreFillFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionPreFillPayload<ExtArgs>, T, "findMany">>
|
|
10099
9938
|
|
|
10100
9939
|
/**
|
|
10101
|
-
* Create a
|
|
10102
|
-
* @param {
|
|
9940
|
+
* Create a MissionPreFill.
|
|
9941
|
+
* @param {MissionPreFillCreateArgs} args - Arguments to create a MissionPreFill.
|
|
10103
9942
|
* @example
|
|
10104
|
-
* // Create one
|
|
10105
|
-
* const
|
|
9943
|
+
* // Create one MissionPreFill
|
|
9944
|
+
* const MissionPreFill = await prisma.missionPreFill.create({
|
|
10106
9945
|
* data: {
|
|
10107
|
-
* // ... data to create a
|
|
9946
|
+
* // ... data to create a MissionPreFill
|
|
10108
9947
|
* }
|
|
10109
9948
|
* })
|
|
10110
9949
|
*
|
|
10111
9950
|
*/
|
|
10112
|
-
create<T extends
|
|
9951
|
+
create<T extends MissionPreFillCreateArgs>(args: SelectSubset<T, MissionPreFillCreateArgs<ExtArgs>>): Prisma__MissionPreFillClient<$Result.GetResult<Prisma.$MissionPreFillPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
10113
9952
|
|
|
10114
9953
|
/**
|
|
10115
|
-
* Create many
|
|
10116
|
-
* @param {
|
|
9954
|
+
* Create many MissionPreFills.
|
|
9955
|
+
* @param {MissionPreFillCreateManyArgs} args - Arguments to create many MissionPreFills.
|
|
10117
9956
|
* @example
|
|
10118
|
-
* // Create many
|
|
10119
|
-
* const
|
|
9957
|
+
* // Create many MissionPreFills
|
|
9958
|
+
* const missionPreFill = await prisma.missionPreFill.createMany({
|
|
10120
9959
|
* data: [
|
|
10121
9960
|
* // ... provide data here
|
|
10122
9961
|
* ]
|
|
10123
9962
|
* })
|
|
10124
9963
|
*
|
|
10125
9964
|
*/
|
|
10126
|
-
createMany<T extends
|
|
9965
|
+
createMany<T extends MissionPreFillCreateManyArgs>(args?: SelectSubset<T, MissionPreFillCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
10127
9966
|
|
|
10128
9967
|
/**
|
|
10129
|
-
* Delete a
|
|
10130
|
-
* @param {
|
|
9968
|
+
* Delete a MissionPreFill.
|
|
9969
|
+
* @param {MissionPreFillDeleteArgs} args - Arguments to delete one MissionPreFill.
|
|
10131
9970
|
* @example
|
|
10132
|
-
* // Delete one
|
|
10133
|
-
* const
|
|
9971
|
+
* // Delete one MissionPreFill
|
|
9972
|
+
* const MissionPreFill = await prisma.missionPreFill.delete({
|
|
10134
9973
|
* where: {
|
|
10135
|
-
* // ... filter to delete one
|
|
9974
|
+
* // ... filter to delete one MissionPreFill
|
|
10136
9975
|
* }
|
|
10137
9976
|
* })
|
|
10138
9977
|
*
|
|
10139
9978
|
*/
|
|
10140
|
-
delete<T extends
|
|
9979
|
+
delete<T extends MissionPreFillDeleteArgs>(args: SelectSubset<T, MissionPreFillDeleteArgs<ExtArgs>>): Prisma__MissionPreFillClient<$Result.GetResult<Prisma.$MissionPreFillPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
10141
9980
|
|
|
10142
9981
|
/**
|
|
10143
|
-
* Update one
|
|
10144
|
-
* @param {
|
|
9982
|
+
* Update one MissionPreFill.
|
|
9983
|
+
* @param {MissionPreFillUpdateArgs} args - Arguments to update one MissionPreFill.
|
|
10145
9984
|
* @example
|
|
10146
|
-
* // Update one
|
|
10147
|
-
* const
|
|
9985
|
+
* // Update one MissionPreFill
|
|
9986
|
+
* const missionPreFill = await prisma.missionPreFill.update({
|
|
10148
9987
|
* where: {
|
|
10149
9988
|
* // ... provide filter here
|
|
10150
9989
|
* },
|
|
@@ -10154,30 +9993,30 @@ export namespace Prisma {
|
|
|
10154
9993
|
* })
|
|
10155
9994
|
*
|
|
10156
9995
|
*/
|
|
10157
|
-
update<T extends
|
|
9996
|
+
update<T extends MissionPreFillUpdateArgs>(args: SelectSubset<T, MissionPreFillUpdateArgs<ExtArgs>>): Prisma__MissionPreFillClient<$Result.GetResult<Prisma.$MissionPreFillPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
10158
9997
|
|
|
10159
9998
|
/**
|
|
10160
|
-
* Delete zero or more
|
|
10161
|
-
* @param {
|
|
9999
|
+
* Delete zero or more MissionPreFills.
|
|
10000
|
+
* @param {MissionPreFillDeleteManyArgs} args - Arguments to filter MissionPreFills to delete.
|
|
10162
10001
|
* @example
|
|
10163
|
-
* // Delete a few
|
|
10164
|
-
* const { count } = await prisma.
|
|
10002
|
+
* // Delete a few MissionPreFills
|
|
10003
|
+
* const { count } = await prisma.missionPreFill.deleteMany({
|
|
10165
10004
|
* where: {
|
|
10166
10005
|
* // ... provide filter here
|
|
10167
10006
|
* }
|
|
10168
10007
|
* })
|
|
10169
10008
|
*
|
|
10170
10009
|
*/
|
|
10171
|
-
deleteMany<T extends
|
|
10010
|
+
deleteMany<T extends MissionPreFillDeleteManyArgs>(args?: SelectSubset<T, MissionPreFillDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
10172
10011
|
|
|
10173
10012
|
/**
|
|
10174
|
-
* Update zero or more
|
|
10013
|
+
* Update zero or more MissionPreFills.
|
|
10175
10014
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10176
10015
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10177
|
-
* @param {
|
|
10016
|
+
* @param {MissionPreFillUpdateManyArgs} args - Arguments to update one or more rows.
|
|
10178
10017
|
* @example
|
|
10179
|
-
* // Update many
|
|
10180
|
-
* const
|
|
10018
|
+
* // Update many MissionPreFills
|
|
10019
|
+
* const missionPreFill = await prisma.missionPreFill.updateMany({
|
|
10181
10020
|
* where: {
|
|
10182
10021
|
* // ... provide filter here
|
|
10183
10022
|
* },
|
|
@@ -10187,79 +10026,79 @@ export namespace Prisma {
|
|
|
10187
10026
|
* })
|
|
10188
10027
|
*
|
|
10189
10028
|
*/
|
|
10190
|
-
updateMany<T extends
|
|
10029
|
+
updateMany<T extends MissionPreFillUpdateManyArgs>(args: SelectSubset<T, MissionPreFillUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
10191
10030
|
|
|
10192
10031
|
/**
|
|
10193
|
-
* Create or update one
|
|
10194
|
-
* @param {
|
|
10032
|
+
* Create or update one MissionPreFill.
|
|
10033
|
+
* @param {MissionPreFillUpsertArgs} args - Arguments to update or create a MissionPreFill.
|
|
10195
10034
|
* @example
|
|
10196
|
-
* // Update or create a
|
|
10197
|
-
* const
|
|
10035
|
+
* // Update or create a MissionPreFill
|
|
10036
|
+
* const missionPreFill = await prisma.missionPreFill.upsert({
|
|
10198
10037
|
* create: {
|
|
10199
|
-
* // ... data to create a
|
|
10038
|
+
* // ... data to create a MissionPreFill
|
|
10200
10039
|
* },
|
|
10201
10040
|
* update: {
|
|
10202
10041
|
* // ... in case it already exists, update
|
|
10203
10042
|
* },
|
|
10204
10043
|
* where: {
|
|
10205
|
-
* // ... the filter for the
|
|
10044
|
+
* // ... the filter for the MissionPreFill we want to update
|
|
10206
10045
|
* }
|
|
10207
10046
|
* })
|
|
10208
10047
|
*/
|
|
10209
|
-
upsert<T extends
|
|
10048
|
+
upsert<T extends MissionPreFillUpsertArgs>(args: SelectSubset<T, MissionPreFillUpsertArgs<ExtArgs>>): Prisma__MissionPreFillClient<$Result.GetResult<Prisma.$MissionPreFillPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
10210
10049
|
|
|
10211
10050
|
/**
|
|
10212
|
-
* Find zero or more
|
|
10213
|
-
* @param {
|
|
10051
|
+
* Find zero or more MissionPreFills that matches the filter.
|
|
10052
|
+
* @param {MissionPreFillFindRawArgs} args - Select which filters you would like to apply.
|
|
10214
10053
|
* @example
|
|
10215
|
-
* const
|
|
10054
|
+
* const missionPreFill = await prisma.missionPreFill.findRaw({
|
|
10216
10055
|
* filter: { age: { $gt: 25 } }
|
|
10217
10056
|
* })
|
|
10218
10057
|
*/
|
|
10219
|
-
findRaw(args?:
|
|
10058
|
+
findRaw(args?: MissionPreFillFindRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
10220
10059
|
|
|
10221
10060
|
/**
|
|
10222
|
-
* Perform aggregation operations on a
|
|
10223
|
-
* @param {
|
|
10061
|
+
* Perform aggregation operations on a MissionPreFill.
|
|
10062
|
+
* @param {MissionPreFillAggregateRawArgs} args - Select which aggregations you would like to apply.
|
|
10224
10063
|
* @example
|
|
10225
|
-
* const
|
|
10064
|
+
* const missionPreFill = await prisma.missionPreFill.aggregateRaw({
|
|
10226
10065
|
* pipeline: [
|
|
10227
10066
|
* { $match: { status: "registered" } },
|
|
10228
10067
|
* { $group: { _id: "$country", total: { $sum: 1 } } }
|
|
10229
10068
|
* ]
|
|
10230
10069
|
* })
|
|
10231
10070
|
*/
|
|
10232
|
-
aggregateRaw(args?:
|
|
10071
|
+
aggregateRaw(args?: MissionPreFillAggregateRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
10233
10072
|
|
|
10234
10073
|
|
|
10235
10074
|
/**
|
|
10236
|
-
* Count the number of
|
|
10075
|
+
* Count the number of MissionPreFills.
|
|
10237
10076
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10238
10077
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10239
|
-
* @param {
|
|
10078
|
+
* @param {MissionPreFillCountArgs} args - Arguments to filter MissionPreFills to count.
|
|
10240
10079
|
* @example
|
|
10241
|
-
* // Count the number of
|
|
10242
|
-
* const count = await prisma.
|
|
10080
|
+
* // Count the number of MissionPreFills
|
|
10081
|
+
* const count = await prisma.missionPreFill.count({
|
|
10243
10082
|
* where: {
|
|
10244
|
-
* // ... the filter for the
|
|
10083
|
+
* // ... the filter for the MissionPreFills we want to count
|
|
10245
10084
|
* }
|
|
10246
10085
|
* })
|
|
10247
10086
|
**/
|
|
10248
|
-
count<T extends
|
|
10249
|
-
args?: Subset<T,
|
|
10087
|
+
count<T extends MissionPreFillCountArgs>(
|
|
10088
|
+
args?: Subset<T, MissionPreFillCountArgs>,
|
|
10250
10089
|
): Prisma.PrismaPromise<
|
|
10251
10090
|
T extends $Utils.Record<'select', any>
|
|
10252
10091
|
? T['select'] extends true
|
|
10253
10092
|
? number
|
|
10254
|
-
: GetScalarType<T['select'],
|
|
10093
|
+
: GetScalarType<T['select'], MissionPreFillCountAggregateOutputType>
|
|
10255
10094
|
: number
|
|
10256
10095
|
>
|
|
10257
10096
|
|
|
10258
10097
|
/**
|
|
10259
|
-
* Allows you to perform aggregations operations on a
|
|
10098
|
+
* Allows you to perform aggregations operations on a MissionPreFill.
|
|
10260
10099
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10261
10100
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10262
|
-
* @param {
|
|
10101
|
+
* @param {MissionPreFillAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
10263
10102
|
* @example
|
|
10264
10103
|
* // Ordered by age ascending
|
|
10265
10104
|
* // Where email contains prisma.io
|
|
@@ -10279,13 +10118,13 @@ export namespace Prisma {
|
|
|
10279
10118
|
* take: 10,
|
|
10280
10119
|
* })
|
|
10281
10120
|
**/
|
|
10282
|
-
aggregate<T extends
|
|
10121
|
+
aggregate<T extends MissionPreFillAggregateArgs>(args: Subset<T, MissionPreFillAggregateArgs>): Prisma.PrismaPromise<GetMissionPreFillAggregateType<T>>
|
|
10283
10122
|
|
|
10284
10123
|
/**
|
|
10285
|
-
* Group by
|
|
10124
|
+
* Group by MissionPreFill.
|
|
10286
10125
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10287
10126
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10288
|
-
* @param {
|
|
10127
|
+
* @param {MissionPreFillGroupByArgs} args - Group by arguments.
|
|
10289
10128
|
* @example
|
|
10290
10129
|
* // Group by city, order by createdAt, get count
|
|
10291
10130
|
* const result = await prisma.user.groupBy({
|
|
@@ -10300,14 +10139,14 @@ export namespace Prisma {
|
|
|
10300
10139
|
*
|
|
10301
10140
|
**/
|
|
10302
10141
|
groupBy<
|
|
10303
|
-
T extends
|
|
10142
|
+
T extends MissionPreFillGroupByArgs,
|
|
10304
10143
|
HasSelectOrTake extends Or<
|
|
10305
10144
|
Extends<'skip', Keys<T>>,
|
|
10306
10145
|
Extends<'take', Keys<T>>
|
|
10307
10146
|
>,
|
|
10308
10147
|
OrderByArg extends True extends HasSelectOrTake
|
|
10309
|
-
? { orderBy:
|
|
10310
|
-
: { orderBy?:
|
|
10148
|
+
? { orderBy: MissionPreFillGroupByArgs['orderBy'] }
|
|
10149
|
+
: { orderBy?: MissionPreFillGroupByArgs['orderBy'] },
|
|
10311
10150
|
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
10312
10151
|
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
10313
10152
|
ByValid extends Has<ByFields, OrderFields>,
|
|
@@ -10356,26 +10195,22 @@ export namespace Prisma {
|
|
|
10356
10195
|
? never
|
|
10357
10196
|
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
10358
10197
|
}[OrderFields]
|
|
10359
|
-
>(args: SubsetIntersection<T,
|
|
10198
|
+
>(args: SubsetIntersection<T, MissionPreFillGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetMissionPreFillGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
10360
10199
|
/**
|
|
10361
|
-
* Fields of the
|
|
10200
|
+
* Fields of the MissionPreFill model
|
|
10362
10201
|
*/
|
|
10363
|
-
readonly fields:
|
|
10202
|
+
readonly fields: MissionPreFillFieldRefs;
|
|
10364
10203
|
}
|
|
10365
10204
|
|
|
10366
10205
|
/**
|
|
10367
|
-
* The delegate class that acts as a "Promise-like" for
|
|
10206
|
+
* The delegate class that acts as a "Promise-like" for MissionPreFill.
|
|
10368
10207
|
* Why is this prefixed with `Prisma__`?
|
|
10369
10208
|
* Because we want to prevent naming conflicts as mentioned in
|
|
10370
10209
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
10371
10210
|
*/
|
|
10372
|
-
export interface
|
|
10211
|
+
export interface Prisma__MissionPreFillClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
10373
10212
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
10374
|
-
|
|
10375
|
-
author<T extends MissionSpec$authorArgs<ExtArgs> = {}>(args?: Subset<T, MissionSpec$authorArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
10376
|
-
clientCompany<T extends MissionSpec$clientCompanyArgs<ExtArgs> = {}>(args?: Subset<T, MissionSpec$clientCompanyArgs<ExtArgs>>): Prisma__ClientCompanyClient<$Result.GetResult<Prisma.$ClientCompanyPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
10377
|
-
lastModifier<T extends MissionSpec$lastModifierArgs<ExtArgs> = {}>(args?: Subset<T, MissionSpec$lastModifierArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
10378
|
-
mission<T extends MissionSpec$missionArgs<ExtArgs> = {}>(args?: Subset<T, MissionSpec$missionArgs<ExtArgs>>): Prisma__MissionClient<$Result.GetResult<Prisma.$MissionPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
10213
|
+
user<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
10379
10214
|
/**
|
|
10380
10215
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
10381
10216
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -10402,331 +10237,321 @@ export namespace Prisma {
|
|
|
10402
10237
|
|
|
10403
10238
|
|
|
10404
10239
|
/**
|
|
10405
|
-
* Fields of the
|
|
10240
|
+
* Fields of the MissionPreFill model
|
|
10406
10241
|
*/
|
|
10407
|
-
interface
|
|
10408
|
-
readonly id: FieldRef<"
|
|
10409
|
-
readonly
|
|
10410
|
-
readonly
|
|
10411
|
-
readonly
|
|
10412
|
-
readonly
|
|
10413
|
-
readonly
|
|
10414
|
-
readonly
|
|
10415
|
-
readonly
|
|
10416
|
-
readonly
|
|
10417
|
-
readonly
|
|
10418
|
-
readonly
|
|
10419
|
-
readonly lastModifierId: FieldRef<"MissionSpec", 'String'>
|
|
10420
|
-
readonly logo: FieldRef<"MissionSpec", 'String'>
|
|
10421
|
-
readonly platformId: FieldRef<"MissionSpec", 'String'>
|
|
10422
|
-
readonly startDate: FieldRef<"MissionSpec", 'DateTime'>
|
|
10423
|
-
readonly status: FieldRef<"MissionSpec", 'MissionSpecStatus'>
|
|
10424
|
-
readonly title: FieldRef<"MissionSpec", 'String'>
|
|
10425
|
-
readonly updatedAt: FieldRef<"MissionSpec", 'DateTime'>
|
|
10426
|
-
readonly v: FieldRef<"MissionSpec", 'Int'>
|
|
10427
|
-
readonly videoURL: FieldRef<"MissionSpec", 'String'>
|
|
10428
|
-
readonly workingHoursNumberOfMinutesOverlap: FieldRef<"MissionSpec", 'Int'>
|
|
10242
|
+
interface MissionPreFillFieldRefs {
|
|
10243
|
+
readonly id: FieldRef<"MissionPreFill", 'String'>
|
|
10244
|
+
readonly userId: FieldRef<"MissionPreFill", 'String'>
|
|
10245
|
+
readonly missionName: FieldRef<"MissionPreFill", 'String'>
|
|
10246
|
+
readonly plannedStart: FieldRef<"MissionPreFill", 'String'>
|
|
10247
|
+
readonly companyDescription: FieldRef<"MissionPreFill", 'String'>
|
|
10248
|
+
readonly missionDescription: FieldRef<"MissionPreFill", 'String'>
|
|
10249
|
+
readonly timezone: FieldRef<"MissionPreFill", 'String'>
|
|
10250
|
+
readonly openRoles: FieldRef<"MissionPreFill", 'Json'>
|
|
10251
|
+
readonly status: FieldRef<"MissionPreFill", 'String'>
|
|
10252
|
+
readonly createdAt: FieldRef<"MissionPreFill", 'DateTime'>
|
|
10253
|
+
readonly updatedAt: FieldRef<"MissionPreFill", 'DateTime'>
|
|
10429
10254
|
}
|
|
10430
10255
|
|
|
10431
10256
|
|
|
10432
10257
|
// Custom InputTypes
|
|
10433
10258
|
/**
|
|
10434
|
-
*
|
|
10259
|
+
* MissionPreFill findUnique
|
|
10435
10260
|
*/
|
|
10436
|
-
export type
|
|
10261
|
+
export type MissionPreFillFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10437
10262
|
/**
|
|
10438
|
-
* Select specific fields to fetch from the
|
|
10263
|
+
* Select specific fields to fetch from the MissionPreFill
|
|
10439
10264
|
*/
|
|
10440
|
-
select?:
|
|
10265
|
+
select?: MissionPreFillSelect<ExtArgs> | null
|
|
10441
10266
|
/**
|
|
10442
10267
|
* Choose, which related nodes to fetch as well
|
|
10443
10268
|
*/
|
|
10444
|
-
include?:
|
|
10269
|
+
include?: MissionPreFillInclude<ExtArgs> | null
|
|
10445
10270
|
/**
|
|
10446
|
-
* Filter, which
|
|
10271
|
+
* Filter, which MissionPreFill to fetch.
|
|
10447
10272
|
*/
|
|
10448
|
-
where:
|
|
10273
|
+
where: MissionPreFillWhereUniqueInput
|
|
10449
10274
|
}
|
|
10450
10275
|
|
|
10451
10276
|
/**
|
|
10452
|
-
*
|
|
10277
|
+
* MissionPreFill findUniqueOrThrow
|
|
10453
10278
|
*/
|
|
10454
|
-
export type
|
|
10279
|
+
export type MissionPreFillFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10455
10280
|
/**
|
|
10456
|
-
* Select specific fields to fetch from the
|
|
10281
|
+
* Select specific fields to fetch from the MissionPreFill
|
|
10457
10282
|
*/
|
|
10458
|
-
select?:
|
|
10283
|
+
select?: MissionPreFillSelect<ExtArgs> | null
|
|
10459
10284
|
/**
|
|
10460
10285
|
* Choose, which related nodes to fetch as well
|
|
10461
10286
|
*/
|
|
10462
|
-
include?:
|
|
10287
|
+
include?: MissionPreFillInclude<ExtArgs> | null
|
|
10463
10288
|
/**
|
|
10464
|
-
* Filter, which
|
|
10289
|
+
* Filter, which MissionPreFill to fetch.
|
|
10465
10290
|
*/
|
|
10466
|
-
where:
|
|
10291
|
+
where: MissionPreFillWhereUniqueInput
|
|
10467
10292
|
}
|
|
10468
10293
|
|
|
10469
10294
|
/**
|
|
10470
|
-
*
|
|
10295
|
+
* MissionPreFill findFirst
|
|
10471
10296
|
*/
|
|
10472
|
-
export type
|
|
10297
|
+
export type MissionPreFillFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10473
10298
|
/**
|
|
10474
|
-
* Select specific fields to fetch from the
|
|
10299
|
+
* Select specific fields to fetch from the MissionPreFill
|
|
10475
10300
|
*/
|
|
10476
|
-
select?:
|
|
10301
|
+
select?: MissionPreFillSelect<ExtArgs> | null
|
|
10477
10302
|
/**
|
|
10478
10303
|
* Choose, which related nodes to fetch as well
|
|
10479
10304
|
*/
|
|
10480
|
-
include?:
|
|
10305
|
+
include?: MissionPreFillInclude<ExtArgs> | null
|
|
10481
10306
|
/**
|
|
10482
|
-
* Filter, which
|
|
10307
|
+
* Filter, which MissionPreFill to fetch.
|
|
10483
10308
|
*/
|
|
10484
|
-
where?:
|
|
10309
|
+
where?: MissionPreFillWhereInput
|
|
10485
10310
|
/**
|
|
10486
10311
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
10487
10312
|
*
|
|
10488
|
-
* Determine the order of
|
|
10313
|
+
* Determine the order of MissionPreFills to fetch.
|
|
10489
10314
|
*/
|
|
10490
|
-
orderBy?:
|
|
10315
|
+
orderBy?: MissionPreFillOrderByWithRelationInput | MissionPreFillOrderByWithRelationInput[]
|
|
10491
10316
|
/**
|
|
10492
10317
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
10493
10318
|
*
|
|
10494
|
-
* Sets the position for searching for
|
|
10319
|
+
* Sets the position for searching for MissionPreFills.
|
|
10495
10320
|
*/
|
|
10496
|
-
cursor?:
|
|
10321
|
+
cursor?: MissionPreFillWhereUniqueInput
|
|
10497
10322
|
/**
|
|
10498
10323
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10499
10324
|
*
|
|
10500
|
-
* Take `±n`
|
|
10325
|
+
* Take `±n` MissionPreFills from the position of the cursor.
|
|
10501
10326
|
*/
|
|
10502
10327
|
take?: number
|
|
10503
10328
|
/**
|
|
10504
10329
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10505
10330
|
*
|
|
10506
|
-
* Skip the first `n`
|
|
10331
|
+
* Skip the first `n` MissionPreFills.
|
|
10507
10332
|
*/
|
|
10508
10333
|
skip?: number
|
|
10509
10334
|
/**
|
|
10510
10335
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
10511
10336
|
*
|
|
10512
|
-
* Filter by unique combinations of
|
|
10337
|
+
* Filter by unique combinations of MissionPreFills.
|
|
10513
10338
|
*/
|
|
10514
|
-
distinct?:
|
|
10339
|
+
distinct?: MissionPreFillScalarFieldEnum | MissionPreFillScalarFieldEnum[]
|
|
10515
10340
|
}
|
|
10516
10341
|
|
|
10517
10342
|
/**
|
|
10518
|
-
*
|
|
10343
|
+
* MissionPreFill findFirstOrThrow
|
|
10519
10344
|
*/
|
|
10520
|
-
export type
|
|
10345
|
+
export type MissionPreFillFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10521
10346
|
/**
|
|
10522
|
-
* Select specific fields to fetch from the
|
|
10347
|
+
* Select specific fields to fetch from the MissionPreFill
|
|
10523
10348
|
*/
|
|
10524
|
-
select?:
|
|
10349
|
+
select?: MissionPreFillSelect<ExtArgs> | null
|
|
10525
10350
|
/**
|
|
10526
10351
|
* Choose, which related nodes to fetch as well
|
|
10527
10352
|
*/
|
|
10528
|
-
include?:
|
|
10353
|
+
include?: MissionPreFillInclude<ExtArgs> | null
|
|
10529
10354
|
/**
|
|
10530
|
-
* Filter, which
|
|
10355
|
+
* Filter, which MissionPreFill to fetch.
|
|
10531
10356
|
*/
|
|
10532
|
-
where?:
|
|
10357
|
+
where?: MissionPreFillWhereInput
|
|
10533
10358
|
/**
|
|
10534
10359
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
10535
10360
|
*
|
|
10536
|
-
* Determine the order of
|
|
10361
|
+
* Determine the order of MissionPreFills to fetch.
|
|
10537
10362
|
*/
|
|
10538
|
-
orderBy?:
|
|
10363
|
+
orderBy?: MissionPreFillOrderByWithRelationInput | MissionPreFillOrderByWithRelationInput[]
|
|
10539
10364
|
/**
|
|
10540
10365
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
10541
10366
|
*
|
|
10542
|
-
* Sets the position for searching for
|
|
10367
|
+
* Sets the position for searching for MissionPreFills.
|
|
10543
10368
|
*/
|
|
10544
|
-
cursor?:
|
|
10369
|
+
cursor?: MissionPreFillWhereUniqueInput
|
|
10545
10370
|
/**
|
|
10546
10371
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10547
10372
|
*
|
|
10548
|
-
* Take `±n`
|
|
10373
|
+
* Take `±n` MissionPreFills from the position of the cursor.
|
|
10549
10374
|
*/
|
|
10550
10375
|
take?: number
|
|
10551
10376
|
/**
|
|
10552
10377
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10553
10378
|
*
|
|
10554
|
-
* Skip the first `n`
|
|
10379
|
+
* Skip the first `n` MissionPreFills.
|
|
10555
10380
|
*/
|
|
10556
10381
|
skip?: number
|
|
10557
10382
|
/**
|
|
10558
10383
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
10559
10384
|
*
|
|
10560
|
-
* Filter by unique combinations of
|
|
10385
|
+
* Filter by unique combinations of MissionPreFills.
|
|
10561
10386
|
*/
|
|
10562
|
-
distinct?:
|
|
10387
|
+
distinct?: MissionPreFillScalarFieldEnum | MissionPreFillScalarFieldEnum[]
|
|
10563
10388
|
}
|
|
10564
10389
|
|
|
10565
10390
|
/**
|
|
10566
|
-
*
|
|
10391
|
+
* MissionPreFill findMany
|
|
10567
10392
|
*/
|
|
10568
|
-
export type
|
|
10393
|
+
export type MissionPreFillFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10569
10394
|
/**
|
|
10570
|
-
* Select specific fields to fetch from the
|
|
10395
|
+
* Select specific fields to fetch from the MissionPreFill
|
|
10571
10396
|
*/
|
|
10572
|
-
select?:
|
|
10397
|
+
select?: MissionPreFillSelect<ExtArgs> | null
|
|
10573
10398
|
/**
|
|
10574
10399
|
* Choose, which related nodes to fetch as well
|
|
10575
10400
|
*/
|
|
10576
|
-
include?:
|
|
10401
|
+
include?: MissionPreFillInclude<ExtArgs> | null
|
|
10577
10402
|
/**
|
|
10578
|
-
* Filter, which
|
|
10403
|
+
* Filter, which MissionPreFills to fetch.
|
|
10579
10404
|
*/
|
|
10580
|
-
where?:
|
|
10405
|
+
where?: MissionPreFillWhereInput
|
|
10581
10406
|
/**
|
|
10582
10407
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
10583
10408
|
*
|
|
10584
|
-
* Determine the order of
|
|
10409
|
+
* Determine the order of MissionPreFills to fetch.
|
|
10585
10410
|
*/
|
|
10586
|
-
orderBy?:
|
|
10411
|
+
orderBy?: MissionPreFillOrderByWithRelationInput | MissionPreFillOrderByWithRelationInput[]
|
|
10587
10412
|
/**
|
|
10588
10413
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
10589
10414
|
*
|
|
10590
|
-
* Sets the position for listing
|
|
10415
|
+
* Sets the position for listing MissionPreFills.
|
|
10591
10416
|
*/
|
|
10592
|
-
cursor?:
|
|
10417
|
+
cursor?: MissionPreFillWhereUniqueInput
|
|
10593
10418
|
/**
|
|
10594
10419
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10595
10420
|
*
|
|
10596
|
-
* Take `±n`
|
|
10421
|
+
* Take `±n` MissionPreFills from the position of the cursor.
|
|
10597
10422
|
*/
|
|
10598
10423
|
take?: number
|
|
10599
10424
|
/**
|
|
10600
10425
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10601
10426
|
*
|
|
10602
|
-
* Skip the first `n`
|
|
10427
|
+
* Skip the first `n` MissionPreFills.
|
|
10603
10428
|
*/
|
|
10604
10429
|
skip?: number
|
|
10605
|
-
distinct?:
|
|
10430
|
+
distinct?: MissionPreFillScalarFieldEnum | MissionPreFillScalarFieldEnum[]
|
|
10606
10431
|
}
|
|
10607
10432
|
|
|
10608
10433
|
/**
|
|
10609
|
-
*
|
|
10434
|
+
* MissionPreFill create
|
|
10610
10435
|
*/
|
|
10611
|
-
export type
|
|
10436
|
+
export type MissionPreFillCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10612
10437
|
/**
|
|
10613
|
-
* Select specific fields to fetch from the
|
|
10438
|
+
* Select specific fields to fetch from the MissionPreFill
|
|
10614
10439
|
*/
|
|
10615
|
-
select?:
|
|
10440
|
+
select?: MissionPreFillSelect<ExtArgs> | null
|
|
10616
10441
|
/**
|
|
10617
10442
|
* Choose, which related nodes to fetch as well
|
|
10618
10443
|
*/
|
|
10619
|
-
include?:
|
|
10444
|
+
include?: MissionPreFillInclude<ExtArgs> | null
|
|
10620
10445
|
/**
|
|
10621
|
-
* The data needed to create a
|
|
10446
|
+
* The data needed to create a MissionPreFill.
|
|
10622
10447
|
*/
|
|
10623
|
-
data: XOR<
|
|
10448
|
+
data: XOR<MissionPreFillCreateInput, MissionPreFillUncheckedCreateInput>
|
|
10624
10449
|
}
|
|
10625
10450
|
|
|
10626
10451
|
/**
|
|
10627
|
-
*
|
|
10452
|
+
* MissionPreFill createMany
|
|
10628
10453
|
*/
|
|
10629
|
-
export type
|
|
10454
|
+
export type MissionPreFillCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10630
10455
|
/**
|
|
10631
|
-
* The data used to create many
|
|
10456
|
+
* The data used to create many MissionPreFills.
|
|
10632
10457
|
*/
|
|
10633
|
-
data:
|
|
10458
|
+
data: MissionPreFillCreateManyInput | MissionPreFillCreateManyInput[]
|
|
10634
10459
|
}
|
|
10635
10460
|
|
|
10636
10461
|
/**
|
|
10637
|
-
*
|
|
10462
|
+
* MissionPreFill update
|
|
10638
10463
|
*/
|
|
10639
|
-
export type
|
|
10464
|
+
export type MissionPreFillUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10640
10465
|
/**
|
|
10641
|
-
* Select specific fields to fetch from the
|
|
10466
|
+
* Select specific fields to fetch from the MissionPreFill
|
|
10642
10467
|
*/
|
|
10643
|
-
select?:
|
|
10468
|
+
select?: MissionPreFillSelect<ExtArgs> | null
|
|
10644
10469
|
/**
|
|
10645
10470
|
* Choose, which related nodes to fetch as well
|
|
10646
10471
|
*/
|
|
10647
|
-
include?:
|
|
10472
|
+
include?: MissionPreFillInclude<ExtArgs> | null
|
|
10648
10473
|
/**
|
|
10649
|
-
* The data needed to update a
|
|
10474
|
+
* The data needed to update a MissionPreFill.
|
|
10650
10475
|
*/
|
|
10651
|
-
data: XOR<
|
|
10476
|
+
data: XOR<MissionPreFillUpdateInput, MissionPreFillUncheckedUpdateInput>
|
|
10652
10477
|
/**
|
|
10653
|
-
* Choose, which
|
|
10478
|
+
* Choose, which MissionPreFill to update.
|
|
10654
10479
|
*/
|
|
10655
|
-
where:
|
|
10480
|
+
where: MissionPreFillWhereUniqueInput
|
|
10656
10481
|
}
|
|
10657
10482
|
|
|
10658
10483
|
/**
|
|
10659
|
-
*
|
|
10484
|
+
* MissionPreFill updateMany
|
|
10660
10485
|
*/
|
|
10661
|
-
export type
|
|
10486
|
+
export type MissionPreFillUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10662
10487
|
/**
|
|
10663
|
-
* The data used to update
|
|
10488
|
+
* The data used to update MissionPreFills.
|
|
10664
10489
|
*/
|
|
10665
|
-
data: XOR<
|
|
10490
|
+
data: XOR<MissionPreFillUpdateManyMutationInput, MissionPreFillUncheckedUpdateManyInput>
|
|
10666
10491
|
/**
|
|
10667
|
-
* Filter which
|
|
10492
|
+
* Filter which MissionPreFills to update
|
|
10668
10493
|
*/
|
|
10669
|
-
where?:
|
|
10494
|
+
where?: MissionPreFillWhereInput
|
|
10670
10495
|
}
|
|
10671
10496
|
|
|
10672
10497
|
/**
|
|
10673
|
-
*
|
|
10498
|
+
* MissionPreFill upsert
|
|
10674
10499
|
*/
|
|
10675
|
-
export type
|
|
10500
|
+
export type MissionPreFillUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10676
10501
|
/**
|
|
10677
|
-
* Select specific fields to fetch from the
|
|
10502
|
+
* Select specific fields to fetch from the MissionPreFill
|
|
10678
10503
|
*/
|
|
10679
|
-
select?:
|
|
10504
|
+
select?: MissionPreFillSelect<ExtArgs> | null
|
|
10680
10505
|
/**
|
|
10681
10506
|
* Choose, which related nodes to fetch as well
|
|
10682
10507
|
*/
|
|
10683
|
-
include?:
|
|
10508
|
+
include?: MissionPreFillInclude<ExtArgs> | null
|
|
10684
10509
|
/**
|
|
10685
|
-
* The filter to search for the
|
|
10510
|
+
* The filter to search for the MissionPreFill to update in case it exists.
|
|
10686
10511
|
*/
|
|
10687
|
-
where:
|
|
10512
|
+
where: MissionPreFillWhereUniqueInput
|
|
10688
10513
|
/**
|
|
10689
|
-
* In case the
|
|
10514
|
+
* In case the MissionPreFill found by the `where` argument doesn't exist, create a new MissionPreFill with this data.
|
|
10690
10515
|
*/
|
|
10691
|
-
create: XOR<
|
|
10516
|
+
create: XOR<MissionPreFillCreateInput, MissionPreFillUncheckedCreateInput>
|
|
10692
10517
|
/**
|
|
10693
|
-
* In case the
|
|
10518
|
+
* In case the MissionPreFill was found with the provided `where` argument, update it with this data.
|
|
10694
10519
|
*/
|
|
10695
|
-
update: XOR<
|
|
10520
|
+
update: XOR<MissionPreFillUpdateInput, MissionPreFillUncheckedUpdateInput>
|
|
10696
10521
|
}
|
|
10697
10522
|
|
|
10698
10523
|
/**
|
|
10699
|
-
*
|
|
10524
|
+
* MissionPreFill delete
|
|
10700
10525
|
*/
|
|
10701
|
-
export type
|
|
10526
|
+
export type MissionPreFillDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10702
10527
|
/**
|
|
10703
|
-
* Select specific fields to fetch from the
|
|
10528
|
+
* Select specific fields to fetch from the MissionPreFill
|
|
10704
10529
|
*/
|
|
10705
|
-
select?:
|
|
10530
|
+
select?: MissionPreFillSelect<ExtArgs> | null
|
|
10706
10531
|
/**
|
|
10707
10532
|
* Choose, which related nodes to fetch as well
|
|
10708
10533
|
*/
|
|
10709
|
-
include?:
|
|
10534
|
+
include?: MissionPreFillInclude<ExtArgs> | null
|
|
10710
10535
|
/**
|
|
10711
|
-
* Filter which
|
|
10536
|
+
* Filter which MissionPreFill to delete.
|
|
10712
10537
|
*/
|
|
10713
|
-
where:
|
|
10538
|
+
where: MissionPreFillWhereUniqueInput
|
|
10714
10539
|
}
|
|
10715
10540
|
|
|
10716
10541
|
/**
|
|
10717
|
-
*
|
|
10542
|
+
* MissionPreFill deleteMany
|
|
10718
10543
|
*/
|
|
10719
|
-
export type
|
|
10544
|
+
export type MissionPreFillDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10720
10545
|
/**
|
|
10721
|
-
* Filter which
|
|
10546
|
+
* Filter which MissionPreFills to delete
|
|
10722
10547
|
*/
|
|
10723
|
-
where?:
|
|
10548
|
+
where?: MissionPreFillWhereInput
|
|
10724
10549
|
}
|
|
10725
10550
|
|
|
10726
10551
|
/**
|
|
10727
|
-
*
|
|
10552
|
+
* MissionPreFill findRaw
|
|
10728
10553
|
*/
|
|
10729
|
-
export type
|
|
10554
|
+
export type MissionPreFillFindRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10730
10555
|
/**
|
|
10731
10556
|
* 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}.
|
|
10732
10557
|
*/
|
|
@@ -10738,9 +10563,9 @@ export namespace Prisma {
|
|
|
10738
10563
|
}
|
|
10739
10564
|
|
|
10740
10565
|
/**
|
|
10741
|
-
*
|
|
10566
|
+
* MissionPreFill aggregateRaw
|
|
10742
10567
|
*/
|
|
10743
|
-
export type
|
|
10568
|
+
export type MissionPreFillAggregateRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10744
10569
|
/**
|
|
10745
10570
|
* 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}.
|
|
10746
10571
|
*/
|
|
@@ -10752,479 +10577,565 @@ export namespace Prisma {
|
|
|
10752
10577
|
}
|
|
10753
10578
|
|
|
10754
10579
|
/**
|
|
10755
|
-
*
|
|
10756
|
-
*/
|
|
10757
|
-
export type MissionSpec$accountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10758
|
-
/**
|
|
10759
|
-
* Select specific fields to fetch from the Account
|
|
10760
|
-
*/
|
|
10761
|
-
select?: AccountSelect<ExtArgs> | null
|
|
10762
|
-
/**
|
|
10763
|
-
* Choose, which related nodes to fetch as well
|
|
10764
|
-
*/
|
|
10765
|
-
include?: AccountInclude<ExtArgs> | null
|
|
10766
|
-
where?: AccountWhereInput
|
|
10767
|
-
}
|
|
10768
|
-
|
|
10769
|
-
/**
|
|
10770
|
-
* MissionSpec.author
|
|
10580
|
+
* MissionPreFill without action
|
|
10771
10581
|
*/
|
|
10772
|
-
export type
|
|
10582
|
+
export type MissionPreFillDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10773
10583
|
/**
|
|
10774
|
-
* Select specific fields to fetch from the
|
|
10584
|
+
* Select specific fields to fetch from the MissionPreFill
|
|
10775
10585
|
*/
|
|
10776
|
-
select?:
|
|
10586
|
+
select?: MissionPreFillSelect<ExtArgs> | null
|
|
10777
10587
|
/**
|
|
10778
10588
|
* Choose, which related nodes to fetch as well
|
|
10779
10589
|
*/
|
|
10780
|
-
include?:
|
|
10781
|
-
where?: UserWhereInput
|
|
10590
|
+
include?: MissionPreFillInclude<ExtArgs> | null
|
|
10782
10591
|
}
|
|
10783
10592
|
|
|
10784
|
-
/**
|
|
10785
|
-
* MissionSpec.clientCompany
|
|
10786
|
-
*/
|
|
10787
|
-
export type MissionSpec$clientCompanyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10788
|
-
/**
|
|
10789
|
-
* Select specific fields to fetch from the ClientCompany
|
|
10790
|
-
*/
|
|
10791
|
-
select?: ClientCompanySelect<ExtArgs> | null
|
|
10792
|
-
/**
|
|
10793
|
-
* Choose, which related nodes to fetch as well
|
|
10794
|
-
*/
|
|
10795
|
-
include?: ClientCompanyInclude<ExtArgs> | null
|
|
10796
|
-
where?: ClientCompanyWhereInput
|
|
10797
|
-
}
|
|
10798
10593
|
|
|
10799
10594
|
/**
|
|
10800
|
-
* MissionSpec
|
|
10595
|
+
* Model MissionSpec
|
|
10801
10596
|
*/
|
|
10802
|
-
export type MissionSpec$lastModifierArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10803
|
-
/**
|
|
10804
|
-
* Select specific fields to fetch from the User
|
|
10805
|
-
*/
|
|
10806
|
-
select?: UserSelect<ExtArgs> | null
|
|
10807
|
-
/**
|
|
10808
|
-
* Choose, which related nodes to fetch as well
|
|
10809
|
-
*/
|
|
10810
|
-
include?: UserInclude<ExtArgs> | null
|
|
10811
|
-
where?: UserWhereInput
|
|
10812
|
-
}
|
|
10813
10597
|
|
|
10814
|
-
|
|
10815
|
-
|
|
10816
|
-
|
|
10817
|
-
|
|
10818
|
-
|
|
10819
|
-
|
|
10820
|
-
*/
|
|
10821
|
-
select?: MissionSelect<ExtArgs> | null
|
|
10822
|
-
/**
|
|
10823
|
-
* Choose, which related nodes to fetch as well
|
|
10824
|
-
*/
|
|
10825
|
-
include?: MissionInclude<ExtArgs> | null
|
|
10826
|
-
where?: MissionWhereInput
|
|
10598
|
+
export type AggregateMissionSpec = {
|
|
10599
|
+
_count: MissionSpecCountAggregateOutputType | null
|
|
10600
|
+
_avg: MissionSpecAvgAggregateOutputType | null
|
|
10601
|
+
_sum: MissionSpecSumAggregateOutputType | null
|
|
10602
|
+
_min: MissionSpecMinAggregateOutputType | null
|
|
10603
|
+
_max: MissionSpecMaxAggregateOutputType | null
|
|
10827
10604
|
}
|
|
10828
10605
|
|
|
10829
|
-
|
|
10830
|
-
|
|
10831
|
-
|
|
10832
|
-
export type MissionSpecDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10833
|
-
/**
|
|
10834
|
-
* Select specific fields to fetch from the MissionSpec
|
|
10835
|
-
*/
|
|
10836
|
-
select?: MissionSpecSelect<ExtArgs> | null
|
|
10837
|
-
/**
|
|
10838
|
-
* Choose, which related nodes to fetch as well
|
|
10839
|
-
*/
|
|
10840
|
-
include?: MissionSpecInclude<ExtArgs> | null
|
|
10606
|
+
export type MissionSpecAvgAggregateOutputType = {
|
|
10607
|
+
v: number | null
|
|
10608
|
+
workingHoursNumberOfMinutesOverlap: number | null
|
|
10841
10609
|
}
|
|
10842
10610
|
|
|
10843
|
-
|
|
10844
|
-
|
|
10845
|
-
|
|
10846
|
-
*/
|
|
10847
|
-
|
|
10848
|
-
export type AggregateMissionSpecPreFill = {
|
|
10849
|
-
_count: MissionSpecPreFillCountAggregateOutputType | null
|
|
10850
|
-
_min: MissionSpecPreFillMinAggregateOutputType | null
|
|
10851
|
-
_max: MissionSpecPreFillMaxAggregateOutputType | null
|
|
10611
|
+
export type MissionSpecSumAggregateOutputType = {
|
|
10612
|
+
v: number | null
|
|
10613
|
+
workingHoursNumberOfMinutesOverlap: number | null
|
|
10852
10614
|
}
|
|
10853
10615
|
|
|
10854
|
-
export type
|
|
10616
|
+
export type MissionSpecMinAggregateOutputType = {
|
|
10855
10617
|
id: string | null
|
|
10856
|
-
|
|
10857
|
-
|
|
10858
|
-
|
|
10618
|
+
accountId: string | null
|
|
10619
|
+
authorId: string | null
|
|
10620
|
+
clientCompanyId: string | null
|
|
10621
|
+
clientConfirmed: boolean | null
|
|
10859
10622
|
companyDescription: string | null
|
|
10860
|
-
missionDescription: string | null
|
|
10861
|
-
timezone: string | null
|
|
10862
|
-
status: string | null
|
|
10863
10623
|
createdAt: Date | null
|
|
10624
|
+
deletedAt: Date | null
|
|
10625
|
+
description: string | null
|
|
10626
|
+
icon: string | null
|
|
10627
|
+
lastModifierId: string | null
|
|
10628
|
+
logo: string | null
|
|
10629
|
+
platformId: string | null
|
|
10630
|
+
startDate: Date | null
|
|
10631
|
+
status: $Enums.MissionSpecStatus | null
|
|
10632
|
+
title: string | null
|
|
10864
10633
|
updatedAt: Date | null
|
|
10634
|
+
v: number | null
|
|
10635
|
+
videoURL: string | null
|
|
10636
|
+
workingHoursNumberOfMinutesOverlap: number | null
|
|
10865
10637
|
}
|
|
10866
10638
|
|
|
10867
|
-
export type
|
|
10639
|
+
export type MissionSpecMaxAggregateOutputType = {
|
|
10868
10640
|
id: string | null
|
|
10869
|
-
|
|
10870
|
-
|
|
10871
|
-
|
|
10641
|
+
accountId: string | null
|
|
10642
|
+
authorId: string | null
|
|
10643
|
+
clientCompanyId: string | null
|
|
10644
|
+
clientConfirmed: boolean | null
|
|
10872
10645
|
companyDescription: string | null
|
|
10873
|
-
missionDescription: string | null
|
|
10874
|
-
timezone: string | null
|
|
10875
|
-
status: string | null
|
|
10876
10646
|
createdAt: Date | null
|
|
10647
|
+
deletedAt: Date | null
|
|
10648
|
+
description: string | null
|
|
10649
|
+
icon: string | null
|
|
10650
|
+
lastModifierId: string | null
|
|
10651
|
+
logo: string | null
|
|
10652
|
+
platformId: string | null
|
|
10653
|
+
startDate: Date | null
|
|
10654
|
+
status: $Enums.MissionSpecStatus | null
|
|
10655
|
+
title: string | null
|
|
10877
10656
|
updatedAt: Date | null
|
|
10657
|
+
v: number | null
|
|
10658
|
+
videoURL: string | null
|
|
10659
|
+
workingHoursNumberOfMinutesOverlap: number | null
|
|
10878
10660
|
}
|
|
10879
10661
|
|
|
10880
|
-
export type
|
|
10662
|
+
export type MissionSpecCountAggregateOutputType = {
|
|
10881
10663
|
id: number
|
|
10882
|
-
|
|
10883
|
-
|
|
10884
|
-
|
|
10664
|
+
accountId: number
|
|
10665
|
+
authorId: number
|
|
10666
|
+
clientCompanyId: number
|
|
10667
|
+
clientConfirmed: number
|
|
10668
|
+
collaborators: number
|
|
10885
10669
|
companyDescription: number
|
|
10886
|
-
missionDescription: number
|
|
10887
|
-
timezone: number
|
|
10888
|
-
openRoles: number
|
|
10889
|
-
status: number
|
|
10890
10670
|
createdAt: number
|
|
10671
|
+
deletedAt: number
|
|
10672
|
+
description: number
|
|
10673
|
+
icon: number
|
|
10674
|
+
lastModifierId: number
|
|
10675
|
+
logo: number
|
|
10676
|
+
platformId: number
|
|
10677
|
+
startDate: number
|
|
10678
|
+
status: number
|
|
10679
|
+
title: number
|
|
10891
10680
|
updatedAt: number
|
|
10681
|
+
v: number
|
|
10682
|
+
videoURL: number
|
|
10683
|
+
workingHoursNumberOfMinutesOverlap: number
|
|
10892
10684
|
_all: number
|
|
10893
10685
|
}
|
|
10894
10686
|
|
|
10895
10687
|
|
|
10896
|
-
export type
|
|
10688
|
+
export type MissionSpecAvgAggregateInputType = {
|
|
10689
|
+
v?: true
|
|
10690
|
+
workingHoursNumberOfMinutesOverlap?: true
|
|
10691
|
+
}
|
|
10692
|
+
|
|
10693
|
+
export type MissionSpecSumAggregateInputType = {
|
|
10694
|
+
v?: true
|
|
10695
|
+
workingHoursNumberOfMinutesOverlap?: true
|
|
10696
|
+
}
|
|
10697
|
+
|
|
10698
|
+
export type MissionSpecMinAggregateInputType = {
|
|
10897
10699
|
id?: true
|
|
10898
|
-
|
|
10899
|
-
|
|
10900
|
-
|
|
10700
|
+
accountId?: true
|
|
10701
|
+
authorId?: true
|
|
10702
|
+
clientCompanyId?: true
|
|
10703
|
+
clientConfirmed?: true
|
|
10901
10704
|
companyDescription?: true
|
|
10902
|
-
missionDescription?: true
|
|
10903
|
-
timezone?: true
|
|
10904
|
-
status?: true
|
|
10905
10705
|
createdAt?: true
|
|
10706
|
+
deletedAt?: true
|
|
10707
|
+
description?: true
|
|
10708
|
+
icon?: true
|
|
10709
|
+
lastModifierId?: true
|
|
10710
|
+
logo?: true
|
|
10711
|
+
platformId?: true
|
|
10712
|
+
startDate?: true
|
|
10713
|
+
status?: true
|
|
10714
|
+
title?: true
|
|
10906
10715
|
updatedAt?: true
|
|
10716
|
+
v?: true
|
|
10717
|
+
videoURL?: true
|
|
10718
|
+
workingHoursNumberOfMinutesOverlap?: true
|
|
10907
10719
|
}
|
|
10908
10720
|
|
|
10909
|
-
export type
|
|
10721
|
+
export type MissionSpecMaxAggregateInputType = {
|
|
10910
10722
|
id?: true
|
|
10911
|
-
|
|
10912
|
-
|
|
10913
|
-
|
|
10723
|
+
accountId?: true
|
|
10724
|
+
authorId?: true
|
|
10725
|
+
clientCompanyId?: true
|
|
10726
|
+
clientConfirmed?: true
|
|
10914
10727
|
companyDescription?: true
|
|
10915
|
-
missionDescription?: true
|
|
10916
|
-
timezone?: true
|
|
10917
|
-
status?: true
|
|
10918
10728
|
createdAt?: true
|
|
10729
|
+
deletedAt?: true
|
|
10730
|
+
description?: true
|
|
10731
|
+
icon?: true
|
|
10732
|
+
lastModifierId?: true
|
|
10733
|
+
logo?: true
|
|
10734
|
+
platformId?: true
|
|
10735
|
+
startDate?: true
|
|
10736
|
+
status?: true
|
|
10737
|
+
title?: true
|
|
10919
10738
|
updatedAt?: true
|
|
10739
|
+
v?: true
|
|
10740
|
+
videoURL?: true
|
|
10741
|
+
workingHoursNumberOfMinutesOverlap?: true
|
|
10920
10742
|
}
|
|
10921
10743
|
|
|
10922
|
-
export type
|
|
10744
|
+
export type MissionSpecCountAggregateInputType = {
|
|
10923
10745
|
id?: true
|
|
10924
|
-
|
|
10925
|
-
|
|
10926
|
-
|
|
10746
|
+
accountId?: true
|
|
10747
|
+
authorId?: true
|
|
10748
|
+
clientCompanyId?: true
|
|
10749
|
+
clientConfirmed?: true
|
|
10750
|
+
collaborators?: true
|
|
10927
10751
|
companyDescription?: true
|
|
10928
|
-
missionDescription?: true
|
|
10929
|
-
timezone?: true
|
|
10930
|
-
openRoles?: true
|
|
10931
|
-
status?: true
|
|
10932
10752
|
createdAt?: true
|
|
10753
|
+
deletedAt?: true
|
|
10754
|
+
description?: true
|
|
10755
|
+
icon?: true
|
|
10756
|
+
lastModifierId?: true
|
|
10757
|
+
logo?: true
|
|
10758
|
+
platformId?: true
|
|
10759
|
+
startDate?: true
|
|
10760
|
+
status?: true
|
|
10761
|
+
title?: true
|
|
10933
10762
|
updatedAt?: true
|
|
10763
|
+
v?: true
|
|
10764
|
+
videoURL?: true
|
|
10765
|
+
workingHoursNumberOfMinutesOverlap?: true
|
|
10934
10766
|
_all?: true
|
|
10935
10767
|
}
|
|
10936
10768
|
|
|
10937
|
-
export type
|
|
10769
|
+
export type MissionSpecAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10938
10770
|
/**
|
|
10939
|
-
* Filter which
|
|
10771
|
+
* Filter which MissionSpec to aggregate.
|
|
10940
10772
|
*/
|
|
10941
|
-
where?:
|
|
10773
|
+
where?: MissionSpecWhereInput
|
|
10942
10774
|
/**
|
|
10943
10775
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
10944
10776
|
*
|
|
10945
|
-
* Determine the order of
|
|
10777
|
+
* Determine the order of MissionSpecs to fetch.
|
|
10946
10778
|
*/
|
|
10947
|
-
orderBy?:
|
|
10779
|
+
orderBy?: MissionSpecOrderByWithRelationInput | MissionSpecOrderByWithRelationInput[]
|
|
10948
10780
|
/**
|
|
10949
10781
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
10950
10782
|
*
|
|
10951
10783
|
* Sets the start position
|
|
10952
10784
|
*/
|
|
10953
|
-
cursor?:
|
|
10785
|
+
cursor?: MissionSpecWhereUniqueInput
|
|
10954
10786
|
/**
|
|
10955
10787
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10956
10788
|
*
|
|
10957
|
-
* Take `±n`
|
|
10789
|
+
* Take `±n` MissionSpecs from the position of the cursor.
|
|
10958
10790
|
*/
|
|
10959
10791
|
take?: number
|
|
10960
10792
|
/**
|
|
10961
10793
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10962
10794
|
*
|
|
10963
|
-
* Skip the first `n`
|
|
10795
|
+
* Skip the first `n` MissionSpecs.
|
|
10964
10796
|
*/
|
|
10965
10797
|
skip?: number
|
|
10966
10798
|
/**
|
|
10967
10799
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
10968
10800
|
*
|
|
10969
|
-
* Count returned
|
|
10801
|
+
* Count returned MissionSpecs
|
|
10970
10802
|
**/
|
|
10971
|
-
_count?: true |
|
|
10803
|
+
_count?: true | MissionSpecCountAggregateInputType
|
|
10804
|
+
/**
|
|
10805
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
10806
|
+
*
|
|
10807
|
+
* Select which fields to average
|
|
10808
|
+
**/
|
|
10809
|
+
_avg?: MissionSpecAvgAggregateInputType
|
|
10810
|
+
/**
|
|
10811
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
10812
|
+
*
|
|
10813
|
+
* Select which fields to sum
|
|
10814
|
+
**/
|
|
10815
|
+
_sum?: MissionSpecSumAggregateInputType
|
|
10972
10816
|
/**
|
|
10973
10817
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
10974
10818
|
*
|
|
10975
10819
|
* Select which fields to find the minimum value
|
|
10976
10820
|
**/
|
|
10977
|
-
_min?:
|
|
10821
|
+
_min?: MissionSpecMinAggregateInputType
|
|
10978
10822
|
/**
|
|
10979
10823
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
10980
10824
|
*
|
|
10981
10825
|
* Select which fields to find the maximum value
|
|
10982
10826
|
**/
|
|
10983
|
-
_max?:
|
|
10827
|
+
_max?: MissionSpecMaxAggregateInputType
|
|
10984
10828
|
}
|
|
10985
10829
|
|
|
10986
|
-
export type
|
|
10987
|
-
[P in keyof T & keyof
|
|
10830
|
+
export type GetMissionSpecAggregateType<T extends MissionSpecAggregateArgs> = {
|
|
10831
|
+
[P in keyof T & keyof AggregateMissionSpec]: P extends '_count' | 'count'
|
|
10988
10832
|
? T[P] extends true
|
|
10989
10833
|
? number
|
|
10990
|
-
: GetScalarType<T[P],
|
|
10991
|
-
: GetScalarType<T[P],
|
|
10834
|
+
: GetScalarType<T[P], AggregateMissionSpec[P]>
|
|
10835
|
+
: GetScalarType<T[P], AggregateMissionSpec[P]>
|
|
10992
10836
|
}
|
|
10993
10837
|
|
|
10994
10838
|
|
|
10995
10839
|
|
|
10996
10840
|
|
|
10997
|
-
export type
|
|
10998
|
-
where?:
|
|
10999
|
-
orderBy?:
|
|
11000
|
-
by:
|
|
11001
|
-
having?:
|
|
10841
|
+
export type MissionSpecGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10842
|
+
where?: MissionSpecWhereInput
|
|
10843
|
+
orderBy?: MissionSpecOrderByWithAggregationInput | MissionSpecOrderByWithAggregationInput[]
|
|
10844
|
+
by: MissionSpecScalarFieldEnum[] | MissionSpecScalarFieldEnum
|
|
10845
|
+
having?: MissionSpecScalarWhereWithAggregatesInput
|
|
11002
10846
|
take?: number
|
|
11003
10847
|
skip?: number
|
|
11004
|
-
_count?:
|
|
11005
|
-
|
|
11006
|
-
|
|
10848
|
+
_count?: MissionSpecCountAggregateInputType | true
|
|
10849
|
+
_avg?: MissionSpecAvgAggregateInputType
|
|
10850
|
+
_sum?: MissionSpecSumAggregateInputType
|
|
10851
|
+
_min?: MissionSpecMinAggregateInputType
|
|
10852
|
+
_max?: MissionSpecMaxAggregateInputType
|
|
11007
10853
|
}
|
|
11008
10854
|
|
|
11009
|
-
export type
|
|
10855
|
+
export type MissionSpecGroupByOutputType = {
|
|
11010
10856
|
id: string
|
|
11011
|
-
|
|
11012
|
-
|
|
11013
|
-
|
|
10857
|
+
accountId: string | null
|
|
10858
|
+
authorId: string | null
|
|
10859
|
+
clientCompanyId: string | null
|
|
10860
|
+
clientConfirmed: boolean | null
|
|
10861
|
+
collaborators: string[]
|
|
11014
10862
|
companyDescription: string | null
|
|
11015
|
-
|
|
11016
|
-
|
|
11017
|
-
|
|
11018
|
-
|
|
11019
|
-
|
|
11020
|
-
|
|
11021
|
-
|
|
11022
|
-
|
|
11023
|
-
|
|
10863
|
+
createdAt: Date | null
|
|
10864
|
+
deletedAt: Date | null
|
|
10865
|
+
description: string | null
|
|
10866
|
+
icon: string | null
|
|
10867
|
+
lastModifierId: string | null
|
|
10868
|
+
logo: string | null
|
|
10869
|
+
platformId: string | null
|
|
10870
|
+
startDate: Date | null
|
|
10871
|
+
status: $Enums.MissionSpecStatus
|
|
10872
|
+
title: string
|
|
10873
|
+
updatedAt: Date | null
|
|
10874
|
+
v: number
|
|
10875
|
+
videoURL: string | null
|
|
10876
|
+
workingHoursNumberOfMinutesOverlap: number | null
|
|
10877
|
+
_count: MissionSpecCountAggregateOutputType | null
|
|
10878
|
+
_avg: MissionSpecAvgAggregateOutputType | null
|
|
10879
|
+
_sum: MissionSpecSumAggregateOutputType | null
|
|
10880
|
+
_min: MissionSpecMinAggregateOutputType | null
|
|
10881
|
+
_max: MissionSpecMaxAggregateOutputType | null
|
|
11024
10882
|
}
|
|
11025
10883
|
|
|
11026
|
-
type
|
|
10884
|
+
type GetMissionSpecGroupByPayload<T extends MissionSpecGroupByArgs> = Prisma.PrismaPromise<
|
|
11027
10885
|
Array<
|
|
11028
|
-
PickEnumerable<
|
|
10886
|
+
PickEnumerable<MissionSpecGroupByOutputType, T['by']> &
|
|
11029
10887
|
{
|
|
11030
|
-
[P in ((keyof T) & (keyof
|
|
10888
|
+
[P in ((keyof T) & (keyof MissionSpecGroupByOutputType))]: P extends '_count'
|
|
11031
10889
|
? T[P] extends boolean
|
|
11032
10890
|
? number
|
|
11033
|
-
: GetScalarType<T[P],
|
|
11034
|
-
: GetScalarType<T[P],
|
|
10891
|
+
: GetScalarType<T[P], MissionSpecGroupByOutputType[P]>
|
|
10892
|
+
: GetScalarType<T[P], MissionSpecGroupByOutputType[P]>
|
|
11035
10893
|
}
|
|
11036
10894
|
>
|
|
11037
10895
|
>
|
|
11038
10896
|
|
|
11039
10897
|
|
|
11040
|
-
export type
|
|
10898
|
+
export type MissionSpecSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
11041
10899
|
id?: boolean
|
|
11042
|
-
|
|
11043
|
-
|
|
11044
|
-
|
|
10900
|
+
accountId?: boolean
|
|
10901
|
+
attachedLinks?: boolean | AttachedLinkDefaultArgs<ExtArgs>
|
|
10902
|
+
authorId?: boolean
|
|
10903
|
+
clientCompanyId?: boolean
|
|
10904
|
+
clientConfirmed?: boolean
|
|
10905
|
+
collaborators?: boolean
|
|
11045
10906
|
companyDescription?: boolean
|
|
11046
|
-
missionDescription?: boolean
|
|
11047
|
-
timezone?: boolean
|
|
11048
|
-
openRoles?: boolean
|
|
11049
|
-
status?: boolean
|
|
11050
10907
|
createdAt?: boolean
|
|
10908
|
+
deletedAt?: boolean
|
|
10909
|
+
description?: boolean
|
|
10910
|
+
icon?: boolean
|
|
10911
|
+
lastModifierId?: boolean
|
|
10912
|
+
logo?: boolean
|
|
10913
|
+
metadata?: boolean | MetadataDefaultArgs<ExtArgs>
|
|
10914
|
+
platformId?: boolean
|
|
10915
|
+
roles?: boolean | MissionSpecRoleDefaultArgs<ExtArgs>
|
|
10916
|
+
startDate?: boolean
|
|
10917
|
+
status?: boolean
|
|
10918
|
+
statusChangedAt?: boolean | StatusTimeDefaultArgs<ExtArgs>
|
|
10919
|
+
title?: boolean
|
|
11051
10920
|
updatedAt?: boolean
|
|
11052
|
-
|
|
11053
|
-
|
|
10921
|
+
v?: boolean
|
|
10922
|
+
videoURL?: boolean
|
|
10923
|
+
workingHours?: boolean | WorkingHoursDefaultArgs<ExtArgs>
|
|
10924
|
+
workingHoursNumberOfMinutesOverlap?: boolean
|
|
10925
|
+
account?: boolean | MissionSpec$accountArgs<ExtArgs>
|
|
10926
|
+
author?: boolean | MissionSpec$authorArgs<ExtArgs>
|
|
10927
|
+
clientCompany?: boolean | MissionSpec$clientCompanyArgs<ExtArgs>
|
|
10928
|
+
lastModifier?: boolean | MissionSpec$lastModifierArgs<ExtArgs>
|
|
10929
|
+
mission?: boolean | MissionSpec$missionArgs<ExtArgs>
|
|
10930
|
+
}, ExtArgs["result"]["missionSpec"]>
|
|
11054
10931
|
|
|
11055
10932
|
|
|
11056
|
-
export type
|
|
10933
|
+
export type MissionSpecSelectScalar = {
|
|
11057
10934
|
id?: boolean
|
|
11058
|
-
|
|
11059
|
-
|
|
11060
|
-
|
|
10935
|
+
accountId?: boolean
|
|
10936
|
+
authorId?: boolean
|
|
10937
|
+
clientCompanyId?: boolean
|
|
10938
|
+
clientConfirmed?: boolean
|
|
10939
|
+
collaborators?: boolean
|
|
11061
10940
|
companyDescription?: boolean
|
|
11062
|
-
missionDescription?: boolean
|
|
11063
|
-
timezone?: boolean
|
|
11064
|
-
openRoles?: boolean
|
|
11065
|
-
status?: boolean
|
|
11066
10941
|
createdAt?: boolean
|
|
10942
|
+
deletedAt?: boolean
|
|
10943
|
+
description?: boolean
|
|
10944
|
+
icon?: boolean
|
|
10945
|
+
lastModifierId?: boolean
|
|
10946
|
+
logo?: boolean
|
|
10947
|
+
platformId?: boolean
|
|
10948
|
+
startDate?: boolean
|
|
10949
|
+
status?: boolean
|
|
10950
|
+
title?: boolean
|
|
11067
10951
|
updatedAt?: boolean
|
|
10952
|
+
v?: boolean
|
|
10953
|
+
videoURL?: boolean
|
|
10954
|
+
workingHoursNumberOfMinutesOverlap?: boolean
|
|
11068
10955
|
}
|
|
11069
10956
|
|
|
11070
|
-
export type
|
|
11071
|
-
|
|
10957
|
+
export type MissionSpecInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10958
|
+
account?: boolean | MissionSpec$accountArgs<ExtArgs>
|
|
10959
|
+
author?: boolean | MissionSpec$authorArgs<ExtArgs>
|
|
10960
|
+
clientCompany?: boolean | MissionSpec$clientCompanyArgs<ExtArgs>
|
|
10961
|
+
lastModifier?: boolean | MissionSpec$lastModifierArgs<ExtArgs>
|
|
10962
|
+
mission?: boolean | MissionSpec$missionArgs<ExtArgs>
|
|
11072
10963
|
}
|
|
11073
10964
|
|
|
11074
|
-
export type $
|
|
11075
|
-
name: "
|
|
10965
|
+
export type $MissionSpecPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10966
|
+
name: "MissionSpec"
|
|
11076
10967
|
objects: {
|
|
11077
|
-
|
|
10968
|
+
account: Prisma.$AccountPayload<ExtArgs> | null
|
|
10969
|
+
author: Prisma.$UserPayload<ExtArgs> | null
|
|
10970
|
+
clientCompany: Prisma.$ClientCompanyPayload<ExtArgs> | null
|
|
10971
|
+
lastModifier: Prisma.$UserPayload<ExtArgs> | null
|
|
10972
|
+
mission: Prisma.$MissionPayload<ExtArgs> | null
|
|
11078
10973
|
}
|
|
11079
10974
|
scalars: $Extensions.GetPayloadResult<{
|
|
11080
10975
|
id: string
|
|
11081
|
-
|
|
11082
|
-
|
|
11083
|
-
|
|
10976
|
+
accountId: string | null
|
|
10977
|
+
authorId: string | null
|
|
10978
|
+
clientCompanyId: string | null
|
|
10979
|
+
clientConfirmed: boolean | null
|
|
10980
|
+
collaborators: string[]
|
|
11084
10981
|
companyDescription: string | null
|
|
11085
|
-
|
|
11086
|
-
|
|
11087
|
-
|
|
11088
|
-
|
|
11089
|
-
|
|
11090
|
-
|
|
11091
|
-
|
|
11092
|
-
|
|
10982
|
+
createdAt: Date | null
|
|
10983
|
+
deletedAt: Date | null
|
|
10984
|
+
description: string | null
|
|
10985
|
+
icon: string | null
|
|
10986
|
+
lastModifierId: string | null
|
|
10987
|
+
logo: string | null
|
|
10988
|
+
platformId: string | null
|
|
10989
|
+
startDate: Date | null
|
|
10990
|
+
status: $Enums.MissionSpecStatus
|
|
10991
|
+
title: string
|
|
10992
|
+
updatedAt: Date | null
|
|
10993
|
+
v: number
|
|
10994
|
+
videoURL: string | null
|
|
10995
|
+
workingHoursNumberOfMinutesOverlap: number | null
|
|
10996
|
+
}, ExtArgs["result"]["missionSpec"]>
|
|
10997
|
+
composites: {
|
|
10998
|
+
attachedLinks: Prisma.$AttachedLinkPayload[]
|
|
10999
|
+
metadata: Prisma.$MetadataPayload | null
|
|
11000
|
+
roles: Prisma.$MissionSpecRolePayload[]
|
|
11001
|
+
statusChangedAt: Prisma.$StatusTimePayload | null
|
|
11002
|
+
workingHours: Prisma.$WorkingHoursPayload | null
|
|
11003
|
+
}
|
|
11093
11004
|
}
|
|
11094
11005
|
|
|
11095
|
-
type
|
|
11006
|
+
type MissionSpecGetPayload<S extends boolean | null | undefined | MissionSpecDefaultArgs> = $Result.GetResult<Prisma.$MissionSpecPayload, S>
|
|
11096
11007
|
|
|
11097
|
-
type
|
|
11098
|
-
Omit<
|
|
11099
|
-
select?:
|
|
11008
|
+
type MissionSpecCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
11009
|
+
Omit<MissionSpecFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
11010
|
+
select?: MissionSpecCountAggregateInputType | true
|
|
11100
11011
|
}
|
|
11101
11012
|
|
|
11102
|
-
export interface
|
|
11103
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['
|
|
11013
|
+
export interface MissionSpecDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
11014
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['MissionSpec'], meta: { name: 'MissionSpec' } }
|
|
11104
11015
|
/**
|
|
11105
|
-
* Find zero or one
|
|
11106
|
-
* @param {
|
|
11016
|
+
* Find zero or one MissionSpec that matches the filter.
|
|
11017
|
+
* @param {MissionSpecFindUniqueArgs} args - Arguments to find a MissionSpec
|
|
11107
11018
|
* @example
|
|
11108
|
-
* // Get one
|
|
11109
|
-
* const
|
|
11019
|
+
* // Get one MissionSpec
|
|
11020
|
+
* const missionSpec = await prisma.missionSpec.findUnique({
|
|
11110
11021
|
* where: {
|
|
11111
11022
|
* // ... provide filter here
|
|
11112
11023
|
* }
|
|
11113
11024
|
* })
|
|
11114
11025
|
*/
|
|
11115
|
-
findUnique<T extends
|
|
11026
|
+
findUnique<T extends MissionSpecFindUniqueArgs>(args: SelectSubset<T, MissionSpecFindUniqueArgs<ExtArgs>>): Prisma__MissionSpecClient<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
11116
11027
|
|
|
11117
11028
|
/**
|
|
11118
|
-
* Find one
|
|
11029
|
+
* Find one MissionSpec that matches the filter or throw an error with `error.code='P2025'`
|
|
11119
11030
|
* if no matches were found.
|
|
11120
|
-
* @param {
|
|
11031
|
+
* @param {MissionSpecFindUniqueOrThrowArgs} args - Arguments to find a MissionSpec
|
|
11121
11032
|
* @example
|
|
11122
|
-
* // Get one
|
|
11123
|
-
* const
|
|
11033
|
+
* // Get one MissionSpec
|
|
11034
|
+
* const missionSpec = await prisma.missionSpec.findUniqueOrThrow({
|
|
11124
11035
|
* where: {
|
|
11125
11036
|
* // ... provide filter here
|
|
11126
11037
|
* }
|
|
11127
11038
|
* })
|
|
11128
11039
|
*/
|
|
11129
|
-
findUniqueOrThrow<T extends
|
|
11040
|
+
findUniqueOrThrow<T extends MissionSpecFindUniqueOrThrowArgs>(args: SelectSubset<T, MissionSpecFindUniqueOrThrowArgs<ExtArgs>>): Prisma__MissionSpecClient<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
11130
11041
|
|
|
11131
11042
|
/**
|
|
11132
|
-
* Find the first
|
|
11043
|
+
* Find the first MissionSpec that matches the filter.
|
|
11133
11044
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
11134
11045
|
* Read more here: https://pris.ly/d/null-undefined
|
|
11135
|
-
* @param {
|
|
11046
|
+
* @param {MissionSpecFindFirstArgs} args - Arguments to find a MissionSpec
|
|
11136
11047
|
* @example
|
|
11137
|
-
* // Get one
|
|
11138
|
-
* const
|
|
11048
|
+
* // Get one MissionSpec
|
|
11049
|
+
* const missionSpec = await prisma.missionSpec.findFirst({
|
|
11139
11050
|
* where: {
|
|
11140
11051
|
* // ... provide filter here
|
|
11141
11052
|
* }
|
|
11142
11053
|
* })
|
|
11143
11054
|
*/
|
|
11144
|
-
findFirst<T extends
|
|
11055
|
+
findFirst<T extends MissionSpecFindFirstArgs>(args?: SelectSubset<T, MissionSpecFindFirstArgs<ExtArgs>>): Prisma__MissionSpecClient<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
11145
11056
|
|
|
11146
11057
|
/**
|
|
11147
|
-
* Find the first
|
|
11058
|
+
* Find the first MissionSpec that matches the filter or
|
|
11148
11059
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
11149
11060
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
11150
11061
|
* Read more here: https://pris.ly/d/null-undefined
|
|
11151
|
-
* @param {
|
|
11062
|
+
* @param {MissionSpecFindFirstOrThrowArgs} args - Arguments to find a MissionSpec
|
|
11152
11063
|
* @example
|
|
11153
|
-
* // Get one
|
|
11154
|
-
* const
|
|
11064
|
+
* // Get one MissionSpec
|
|
11065
|
+
* const missionSpec = await prisma.missionSpec.findFirstOrThrow({
|
|
11155
11066
|
* where: {
|
|
11156
11067
|
* // ... provide filter here
|
|
11157
11068
|
* }
|
|
11158
11069
|
* })
|
|
11159
11070
|
*/
|
|
11160
|
-
findFirstOrThrow<T extends
|
|
11071
|
+
findFirstOrThrow<T extends MissionSpecFindFirstOrThrowArgs>(args?: SelectSubset<T, MissionSpecFindFirstOrThrowArgs<ExtArgs>>): Prisma__MissionSpecClient<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
11161
11072
|
|
|
11162
11073
|
/**
|
|
11163
|
-
* Find zero or more
|
|
11074
|
+
* Find zero or more MissionSpecs that matches the filter.
|
|
11164
11075
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
11165
11076
|
* Read more here: https://pris.ly/d/null-undefined
|
|
11166
|
-
* @param {
|
|
11077
|
+
* @param {MissionSpecFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
11167
11078
|
* @example
|
|
11168
|
-
* // Get all
|
|
11169
|
-
* const
|
|
11079
|
+
* // Get all MissionSpecs
|
|
11080
|
+
* const missionSpecs = await prisma.missionSpec.findMany()
|
|
11170
11081
|
*
|
|
11171
|
-
* // Get first 10
|
|
11172
|
-
* const
|
|
11082
|
+
* // Get first 10 MissionSpecs
|
|
11083
|
+
* const missionSpecs = await prisma.missionSpec.findMany({ take: 10 })
|
|
11173
11084
|
*
|
|
11174
11085
|
* // Only select the `id`
|
|
11175
|
-
* const
|
|
11086
|
+
* const missionSpecWithIdOnly = await prisma.missionSpec.findMany({ select: { id: true } })
|
|
11176
11087
|
*
|
|
11177
11088
|
*/
|
|
11178
|
-
findMany<T extends
|
|
11089
|
+
findMany<T extends MissionSpecFindManyArgs>(args?: SelectSubset<T, MissionSpecFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findMany">>
|
|
11179
11090
|
|
|
11180
11091
|
/**
|
|
11181
|
-
* Create a
|
|
11182
|
-
* @param {
|
|
11092
|
+
* Create a MissionSpec.
|
|
11093
|
+
* @param {MissionSpecCreateArgs} args - Arguments to create a MissionSpec.
|
|
11183
11094
|
* @example
|
|
11184
|
-
* // Create one
|
|
11185
|
-
* const
|
|
11095
|
+
* // Create one MissionSpec
|
|
11096
|
+
* const MissionSpec = await prisma.missionSpec.create({
|
|
11186
11097
|
* data: {
|
|
11187
|
-
* // ... data to create a
|
|
11098
|
+
* // ... data to create a MissionSpec
|
|
11188
11099
|
* }
|
|
11189
11100
|
* })
|
|
11190
11101
|
*
|
|
11191
11102
|
*/
|
|
11192
|
-
create<T extends
|
|
11103
|
+
create<T extends MissionSpecCreateArgs>(args: SelectSubset<T, MissionSpecCreateArgs<ExtArgs>>): Prisma__MissionSpecClient<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
11193
11104
|
|
|
11194
11105
|
/**
|
|
11195
|
-
* Create many
|
|
11196
|
-
* @param {
|
|
11106
|
+
* Create many MissionSpecs.
|
|
11107
|
+
* @param {MissionSpecCreateManyArgs} args - Arguments to create many MissionSpecs.
|
|
11197
11108
|
* @example
|
|
11198
|
-
* // Create many
|
|
11199
|
-
* const
|
|
11109
|
+
* // Create many MissionSpecs
|
|
11110
|
+
* const missionSpec = await prisma.missionSpec.createMany({
|
|
11200
11111
|
* data: [
|
|
11201
11112
|
* // ... provide data here
|
|
11202
11113
|
* ]
|
|
11203
11114
|
* })
|
|
11204
11115
|
*
|
|
11205
11116
|
*/
|
|
11206
|
-
createMany<T extends
|
|
11117
|
+
createMany<T extends MissionSpecCreateManyArgs>(args?: SelectSubset<T, MissionSpecCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
11207
11118
|
|
|
11208
11119
|
/**
|
|
11209
|
-
* Delete a
|
|
11210
|
-
* @param {
|
|
11120
|
+
* Delete a MissionSpec.
|
|
11121
|
+
* @param {MissionSpecDeleteArgs} args - Arguments to delete one MissionSpec.
|
|
11211
11122
|
* @example
|
|
11212
|
-
* // Delete one
|
|
11213
|
-
* const
|
|
11123
|
+
* // Delete one MissionSpec
|
|
11124
|
+
* const MissionSpec = await prisma.missionSpec.delete({
|
|
11214
11125
|
* where: {
|
|
11215
|
-
* // ... filter to delete one
|
|
11126
|
+
* // ... filter to delete one MissionSpec
|
|
11216
11127
|
* }
|
|
11217
11128
|
* })
|
|
11218
11129
|
*
|
|
11219
11130
|
*/
|
|
11220
|
-
delete<T extends
|
|
11131
|
+
delete<T extends MissionSpecDeleteArgs>(args: SelectSubset<T, MissionSpecDeleteArgs<ExtArgs>>): Prisma__MissionSpecClient<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
11221
11132
|
|
|
11222
11133
|
/**
|
|
11223
|
-
* Update one
|
|
11224
|
-
* @param {
|
|
11134
|
+
* Update one MissionSpec.
|
|
11135
|
+
* @param {MissionSpecUpdateArgs} args - Arguments to update one MissionSpec.
|
|
11225
11136
|
* @example
|
|
11226
|
-
* // Update one
|
|
11227
|
-
* const
|
|
11137
|
+
* // Update one MissionSpec
|
|
11138
|
+
* const missionSpec = await prisma.missionSpec.update({
|
|
11228
11139
|
* where: {
|
|
11229
11140
|
* // ... provide filter here
|
|
11230
11141
|
* },
|
|
@@ -11234,30 +11145,30 @@ export namespace Prisma {
|
|
|
11234
11145
|
* })
|
|
11235
11146
|
*
|
|
11236
11147
|
*/
|
|
11237
|
-
update<T extends
|
|
11148
|
+
update<T extends MissionSpecUpdateArgs>(args: SelectSubset<T, MissionSpecUpdateArgs<ExtArgs>>): Prisma__MissionSpecClient<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
11238
11149
|
|
|
11239
11150
|
/**
|
|
11240
|
-
* Delete zero or more
|
|
11241
|
-
* @param {
|
|
11151
|
+
* Delete zero or more MissionSpecs.
|
|
11152
|
+
* @param {MissionSpecDeleteManyArgs} args - Arguments to filter MissionSpecs to delete.
|
|
11242
11153
|
* @example
|
|
11243
|
-
* // Delete a few
|
|
11244
|
-
* const { count } = await prisma.
|
|
11154
|
+
* // Delete a few MissionSpecs
|
|
11155
|
+
* const { count } = await prisma.missionSpec.deleteMany({
|
|
11245
11156
|
* where: {
|
|
11246
11157
|
* // ... provide filter here
|
|
11247
11158
|
* }
|
|
11248
11159
|
* })
|
|
11249
11160
|
*
|
|
11250
11161
|
*/
|
|
11251
|
-
deleteMany<T extends
|
|
11162
|
+
deleteMany<T extends MissionSpecDeleteManyArgs>(args?: SelectSubset<T, MissionSpecDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
11252
11163
|
|
|
11253
11164
|
/**
|
|
11254
|
-
* Update zero or more
|
|
11165
|
+
* Update zero or more MissionSpecs.
|
|
11255
11166
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
11256
11167
|
* Read more here: https://pris.ly/d/null-undefined
|
|
11257
|
-
* @param {
|
|
11168
|
+
* @param {MissionSpecUpdateManyArgs} args - Arguments to update one or more rows.
|
|
11258
11169
|
* @example
|
|
11259
|
-
* // Update many
|
|
11260
|
-
* const
|
|
11170
|
+
* // Update many MissionSpecs
|
|
11171
|
+
* const missionSpec = await prisma.missionSpec.updateMany({
|
|
11261
11172
|
* where: {
|
|
11262
11173
|
* // ... provide filter here
|
|
11263
11174
|
* },
|
|
@@ -11267,79 +11178,79 @@ export namespace Prisma {
|
|
|
11267
11178
|
* })
|
|
11268
11179
|
*
|
|
11269
11180
|
*/
|
|
11270
|
-
updateMany<T extends
|
|
11181
|
+
updateMany<T extends MissionSpecUpdateManyArgs>(args: SelectSubset<T, MissionSpecUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
11271
11182
|
|
|
11272
11183
|
/**
|
|
11273
|
-
* Create or update one
|
|
11274
|
-
* @param {
|
|
11184
|
+
* Create or update one MissionSpec.
|
|
11185
|
+
* @param {MissionSpecUpsertArgs} args - Arguments to update or create a MissionSpec.
|
|
11275
11186
|
* @example
|
|
11276
|
-
* // Update or create a
|
|
11277
|
-
* const
|
|
11187
|
+
* // Update or create a MissionSpec
|
|
11188
|
+
* const missionSpec = await prisma.missionSpec.upsert({
|
|
11278
11189
|
* create: {
|
|
11279
|
-
* // ... data to create a
|
|
11190
|
+
* // ... data to create a MissionSpec
|
|
11280
11191
|
* },
|
|
11281
11192
|
* update: {
|
|
11282
11193
|
* // ... in case it already exists, update
|
|
11283
11194
|
* },
|
|
11284
11195
|
* where: {
|
|
11285
|
-
* // ... the filter for the
|
|
11196
|
+
* // ... the filter for the MissionSpec we want to update
|
|
11286
11197
|
* }
|
|
11287
11198
|
* })
|
|
11288
11199
|
*/
|
|
11289
|
-
upsert<T extends
|
|
11200
|
+
upsert<T extends MissionSpecUpsertArgs>(args: SelectSubset<T, MissionSpecUpsertArgs<ExtArgs>>): Prisma__MissionSpecClient<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
11290
11201
|
|
|
11291
11202
|
/**
|
|
11292
|
-
* Find zero or more
|
|
11293
|
-
* @param {
|
|
11203
|
+
* Find zero or more MissionSpecs that matches the filter.
|
|
11204
|
+
* @param {MissionSpecFindRawArgs} args - Select which filters you would like to apply.
|
|
11294
11205
|
* @example
|
|
11295
|
-
* const
|
|
11206
|
+
* const missionSpec = await prisma.missionSpec.findRaw({
|
|
11296
11207
|
* filter: { age: { $gt: 25 } }
|
|
11297
11208
|
* })
|
|
11298
11209
|
*/
|
|
11299
|
-
findRaw(args?:
|
|
11210
|
+
findRaw(args?: MissionSpecFindRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
11300
11211
|
|
|
11301
11212
|
/**
|
|
11302
|
-
* Perform aggregation operations on a
|
|
11303
|
-
* @param {
|
|
11213
|
+
* Perform aggregation operations on a MissionSpec.
|
|
11214
|
+
* @param {MissionSpecAggregateRawArgs} args - Select which aggregations you would like to apply.
|
|
11304
11215
|
* @example
|
|
11305
|
-
* const
|
|
11216
|
+
* const missionSpec = await prisma.missionSpec.aggregateRaw({
|
|
11306
11217
|
* pipeline: [
|
|
11307
11218
|
* { $match: { status: "registered" } },
|
|
11308
11219
|
* { $group: { _id: "$country", total: { $sum: 1 } } }
|
|
11309
11220
|
* ]
|
|
11310
11221
|
* })
|
|
11311
11222
|
*/
|
|
11312
|
-
aggregateRaw(args?:
|
|
11223
|
+
aggregateRaw(args?: MissionSpecAggregateRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
11313
11224
|
|
|
11314
11225
|
|
|
11315
11226
|
/**
|
|
11316
|
-
* Count the number of
|
|
11227
|
+
* Count the number of MissionSpecs.
|
|
11317
11228
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
11318
11229
|
* Read more here: https://pris.ly/d/null-undefined
|
|
11319
|
-
* @param {
|
|
11230
|
+
* @param {MissionSpecCountArgs} args - Arguments to filter MissionSpecs to count.
|
|
11320
11231
|
* @example
|
|
11321
|
-
* // Count the number of
|
|
11322
|
-
* const count = await prisma.
|
|
11232
|
+
* // Count the number of MissionSpecs
|
|
11233
|
+
* const count = await prisma.missionSpec.count({
|
|
11323
11234
|
* where: {
|
|
11324
|
-
* // ... the filter for the
|
|
11235
|
+
* // ... the filter for the MissionSpecs we want to count
|
|
11325
11236
|
* }
|
|
11326
11237
|
* })
|
|
11327
11238
|
**/
|
|
11328
|
-
count<T extends
|
|
11329
|
-
args?: Subset<T,
|
|
11239
|
+
count<T extends MissionSpecCountArgs>(
|
|
11240
|
+
args?: Subset<T, MissionSpecCountArgs>,
|
|
11330
11241
|
): Prisma.PrismaPromise<
|
|
11331
11242
|
T extends $Utils.Record<'select', any>
|
|
11332
11243
|
? T['select'] extends true
|
|
11333
11244
|
? number
|
|
11334
|
-
: GetScalarType<T['select'],
|
|
11245
|
+
: GetScalarType<T['select'], MissionSpecCountAggregateOutputType>
|
|
11335
11246
|
: number
|
|
11336
11247
|
>
|
|
11337
11248
|
|
|
11338
11249
|
/**
|
|
11339
|
-
* Allows you to perform aggregations operations on a
|
|
11250
|
+
* Allows you to perform aggregations operations on a MissionSpec.
|
|
11340
11251
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
11341
11252
|
* Read more here: https://pris.ly/d/null-undefined
|
|
11342
|
-
* @param {
|
|
11253
|
+
* @param {MissionSpecAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
11343
11254
|
* @example
|
|
11344
11255
|
* // Ordered by age ascending
|
|
11345
11256
|
* // Where email contains prisma.io
|
|
@@ -11359,13 +11270,13 @@ export namespace Prisma {
|
|
|
11359
11270
|
* take: 10,
|
|
11360
11271
|
* })
|
|
11361
11272
|
**/
|
|
11362
|
-
aggregate<T extends
|
|
11273
|
+
aggregate<T extends MissionSpecAggregateArgs>(args: Subset<T, MissionSpecAggregateArgs>): Prisma.PrismaPromise<GetMissionSpecAggregateType<T>>
|
|
11363
11274
|
|
|
11364
11275
|
/**
|
|
11365
|
-
* Group by
|
|
11276
|
+
* Group by MissionSpec.
|
|
11366
11277
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
11367
11278
|
* Read more here: https://pris.ly/d/null-undefined
|
|
11368
|
-
* @param {
|
|
11279
|
+
* @param {MissionSpecGroupByArgs} args - Group by arguments.
|
|
11369
11280
|
* @example
|
|
11370
11281
|
* // Group by city, order by createdAt, get count
|
|
11371
11282
|
* const result = await prisma.user.groupBy({
|
|
@@ -11380,14 +11291,14 @@ export namespace Prisma {
|
|
|
11380
11291
|
*
|
|
11381
11292
|
**/
|
|
11382
11293
|
groupBy<
|
|
11383
|
-
T extends
|
|
11294
|
+
T extends MissionSpecGroupByArgs,
|
|
11384
11295
|
HasSelectOrTake extends Or<
|
|
11385
11296
|
Extends<'skip', Keys<T>>,
|
|
11386
11297
|
Extends<'take', Keys<T>>
|
|
11387
11298
|
>,
|
|
11388
11299
|
OrderByArg extends True extends HasSelectOrTake
|
|
11389
|
-
? { orderBy:
|
|
11390
|
-
: { orderBy?:
|
|
11300
|
+
? { orderBy: MissionSpecGroupByArgs['orderBy'] }
|
|
11301
|
+
: { orderBy?: MissionSpecGroupByArgs['orderBy'] },
|
|
11391
11302
|
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
11392
11303
|
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
11393
11304
|
ByValid extends Has<ByFields, OrderFields>,
|
|
@@ -11436,22 +11347,26 @@ export namespace Prisma {
|
|
|
11436
11347
|
? never
|
|
11437
11348
|
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
11438
11349
|
}[OrderFields]
|
|
11439
|
-
>(args: SubsetIntersection<T,
|
|
11350
|
+
>(args: SubsetIntersection<T, MissionSpecGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetMissionSpecGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
11440
11351
|
/**
|
|
11441
|
-
* Fields of the
|
|
11352
|
+
* Fields of the MissionSpec model
|
|
11442
11353
|
*/
|
|
11443
|
-
readonly fields:
|
|
11354
|
+
readonly fields: MissionSpecFieldRefs;
|
|
11444
11355
|
}
|
|
11445
11356
|
|
|
11446
11357
|
/**
|
|
11447
|
-
* The delegate class that acts as a "Promise-like" for
|
|
11358
|
+
* The delegate class that acts as a "Promise-like" for MissionSpec.
|
|
11448
11359
|
* Why is this prefixed with `Prisma__`?
|
|
11449
11360
|
* Because we want to prevent naming conflicts as mentioned in
|
|
11450
11361
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
11451
11362
|
*/
|
|
11452
|
-
export interface
|
|
11363
|
+
export interface Prisma__MissionSpecClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
11453
11364
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
11454
|
-
|
|
11365
|
+
account<T extends MissionSpec$accountArgs<ExtArgs> = {}>(args?: Subset<T, MissionSpec$accountArgs<ExtArgs>>): Prisma__AccountClient<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
11366
|
+
author<T extends MissionSpec$authorArgs<ExtArgs> = {}>(args?: Subset<T, MissionSpec$authorArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
11367
|
+
clientCompany<T extends MissionSpec$clientCompanyArgs<ExtArgs> = {}>(args?: Subset<T, MissionSpec$clientCompanyArgs<ExtArgs>>): Prisma__ClientCompanyClient<$Result.GetResult<Prisma.$ClientCompanyPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
11368
|
+
lastModifier<T extends MissionSpec$lastModifierArgs<ExtArgs> = {}>(args?: Subset<T, MissionSpec$lastModifierArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
11369
|
+
mission<T extends MissionSpec$missionArgs<ExtArgs> = {}>(args?: Subset<T, MissionSpec$missionArgs<ExtArgs>>): Prisma__MissionClient<$Result.GetResult<Prisma.$MissionPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
11455
11370
|
/**
|
|
11456
11371
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
11457
11372
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -11478,357 +11393,442 @@ export namespace Prisma {
|
|
|
11478
11393
|
|
|
11479
11394
|
|
|
11480
11395
|
/**
|
|
11481
|
-
* Fields of the
|
|
11396
|
+
* Fields of the MissionSpec model
|
|
11482
11397
|
*/
|
|
11483
|
-
interface
|
|
11484
|
-
readonly id: FieldRef<"
|
|
11485
|
-
readonly
|
|
11486
|
-
readonly
|
|
11487
|
-
readonly
|
|
11488
|
-
readonly
|
|
11489
|
-
readonly
|
|
11490
|
-
readonly
|
|
11491
|
-
readonly
|
|
11492
|
-
readonly
|
|
11493
|
-
readonly
|
|
11494
|
-
readonly
|
|
11398
|
+
interface MissionSpecFieldRefs {
|
|
11399
|
+
readonly id: FieldRef<"MissionSpec", 'String'>
|
|
11400
|
+
readonly accountId: FieldRef<"MissionSpec", 'String'>
|
|
11401
|
+
readonly authorId: FieldRef<"MissionSpec", 'String'>
|
|
11402
|
+
readonly clientCompanyId: FieldRef<"MissionSpec", 'String'>
|
|
11403
|
+
readonly clientConfirmed: FieldRef<"MissionSpec", 'Boolean'>
|
|
11404
|
+
readonly collaborators: FieldRef<"MissionSpec", 'String[]'>
|
|
11405
|
+
readonly companyDescription: FieldRef<"MissionSpec", 'String'>
|
|
11406
|
+
readonly createdAt: FieldRef<"MissionSpec", 'DateTime'>
|
|
11407
|
+
readonly deletedAt: FieldRef<"MissionSpec", 'DateTime'>
|
|
11408
|
+
readonly description: FieldRef<"MissionSpec", 'String'>
|
|
11409
|
+
readonly icon: FieldRef<"MissionSpec", 'String'>
|
|
11410
|
+
readonly lastModifierId: FieldRef<"MissionSpec", 'String'>
|
|
11411
|
+
readonly logo: FieldRef<"MissionSpec", 'String'>
|
|
11412
|
+
readonly platformId: FieldRef<"MissionSpec", 'String'>
|
|
11413
|
+
readonly startDate: FieldRef<"MissionSpec", 'DateTime'>
|
|
11414
|
+
readonly status: FieldRef<"MissionSpec", 'MissionSpecStatus'>
|
|
11415
|
+
readonly title: FieldRef<"MissionSpec", 'String'>
|
|
11416
|
+
readonly updatedAt: FieldRef<"MissionSpec", 'DateTime'>
|
|
11417
|
+
readonly v: FieldRef<"MissionSpec", 'Int'>
|
|
11418
|
+
readonly videoURL: FieldRef<"MissionSpec", 'String'>
|
|
11419
|
+
readonly workingHoursNumberOfMinutesOverlap: FieldRef<"MissionSpec", 'Int'>
|
|
11495
11420
|
}
|
|
11496
11421
|
|
|
11497
11422
|
|
|
11498
11423
|
// Custom InputTypes
|
|
11499
11424
|
/**
|
|
11500
|
-
*
|
|
11425
|
+
* MissionSpec findUnique
|
|
11501
11426
|
*/
|
|
11502
|
-
export type
|
|
11427
|
+
export type MissionSpecFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11503
11428
|
/**
|
|
11504
|
-
* Select specific fields to fetch from the
|
|
11429
|
+
* Select specific fields to fetch from the MissionSpec
|
|
11505
11430
|
*/
|
|
11506
|
-
select?:
|
|
11431
|
+
select?: MissionSpecSelect<ExtArgs> | null
|
|
11507
11432
|
/**
|
|
11508
11433
|
* Choose, which related nodes to fetch as well
|
|
11509
11434
|
*/
|
|
11510
|
-
include?:
|
|
11435
|
+
include?: MissionSpecInclude<ExtArgs> | null
|
|
11511
11436
|
/**
|
|
11512
|
-
* Filter, which
|
|
11437
|
+
* Filter, which MissionSpec to fetch.
|
|
11513
11438
|
*/
|
|
11514
|
-
where:
|
|
11439
|
+
where: MissionSpecWhereUniqueInput
|
|
11515
11440
|
}
|
|
11516
11441
|
|
|
11517
11442
|
/**
|
|
11518
|
-
*
|
|
11443
|
+
* MissionSpec findUniqueOrThrow
|
|
11519
11444
|
*/
|
|
11520
|
-
export type
|
|
11445
|
+
export type MissionSpecFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11521
11446
|
/**
|
|
11522
|
-
* Select specific fields to fetch from the
|
|
11447
|
+
* Select specific fields to fetch from the MissionSpec
|
|
11523
11448
|
*/
|
|
11524
|
-
select?:
|
|
11449
|
+
select?: MissionSpecSelect<ExtArgs> | null
|
|
11525
11450
|
/**
|
|
11526
11451
|
* Choose, which related nodes to fetch as well
|
|
11527
11452
|
*/
|
|
11528
|
-
include?:
|
|
11453
|
+
include?: MissionSpecInclude<ExtArgs> | null
|
|
11529
11454
|
/**
|
|
11530
|
-
* Filter, which
|
|
11455
|
+
* Filter, which MissionSpec to fetch.
|
|
11531
11456
|
*/
|
|
11532
|
-
where:
|
|
11457
|
+
where: MissionSpecWhereUniqueInput
|
|
11533
11458
|
}
|
|
11534
11459
|
|
|
11535
11460
|
/**
|
|
11536
|
-
*
|
|
11461
|
+
* MissionSpec findFirst
|
|
11537
11462
|
*/
|
|
11538
|
-
export type
|
|
11463
|
+
export type MissionSpecFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11539
11464
|
/**
|
|
11540
|
-
* Select specific fields to fetch from the
|
|
11465
|
+
* Select specific fields to fetch from the MissionSpec
|
|
11541
11466
|
*/
|
|
11542
|
-
select?:
|
|
11467
|
+
select?: MissionSpecSelect<ExtArgs> | null
|
|
11543
11468
|
/**
|
|
11544
11469
|
* Choose, which related nodes to fetch as well
|
|
11545
11470
|
*/
|
|
11546
|
-
include?:
|
|
11471
|
+
include?: MissionSpecInclude<ExtArgs> | null
|
|
11547
11472
|
/**
|
|
11548
|
-
* Filter, which
|
|
11473
|
+
* Filter, which MissionSpec to fetch.
|
|
11549
11474
|
*/
|
|
11550
|
-
where?:
|
|
11475
|
+
where?: MissionSpecWhereInput
|
|
11551
11476
|
/**
|
|
11552
11477
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
11553
11478
|
*
|
|
11554
|
-
* Determine the order of
|
|
11479
|
+
* Determine the order of MissionSpecs to fetch.
|
|
11555
11480
|
*/
|
|
11556
|
-
orderBy?:
|
|
11481
|
+
orderBy?: MissionSpecOrderByWithRelationInput | MissionSpecOrderByWithRelationInput[]
|
|
11557
11482
|
/**
|
|
11558
11483
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
11559
11484
|
*
|
|
11560
|
-
* Sets the position for searching for
|
|
11485
|
+
* Sets the position for searching for MissionSpecs.
|
|
11561
11486
|
*/
|
|
11562
|
-
cursor?:
|
|
11487
|
+
cursor?: MissionSpecWhereUniqueInput
|
|
11563
11488
|
/**
|
|
11564
11489
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11565
11490
|
*
|
|
11566
|
-
* Take `±n`
|
|
11491
|
+
* Take `±n` MissionSpecs from the position of the cursor.
|
|
11567
11492
|
*/
|
|
11568
11493
|
take?: number
|
|
11569
11494
|
/**
|
|
11570
11495
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11571
11496
|
*
|
|
11572
|
-
* Skip the first `n`
|
|
11497
|
+
* Skip the first `n` MissionSpecs.
|
|
11573
11498
|
*/
|
|
11574
11499
|
skip?: number
|
|
11575
11500
|
/**
|
|
11576
11501
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
11577
11502
|
*
|
|
11578
|
-
* Filter by unique combinations of
|
|
11503
|
+
* Filter by unique combinations of MissionSpecs.
|
|
11579
11504
|
*/
|
|
11580
|
-
distinct?:
|
|
11505
|
+
distinct?: MissionSpecScalarFieldEnum | MissionSpecScalarFieldEnum[]
|
|
11581
11506
|
}
|
|
11582
11507
|
|
|
11583
11508
|
/**
|
|
11584
|
-
*
|
|
11509
|
+
* MissionSpec findFirstOrThrow
|
|
11585
11510
|
*/
|
|
11586
|
-
export type
|
|
11511
|
+
export type MissionSpecFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11587
11512
|
/**
|
|
11588
|
-
* Select specific fields to fetch from the
|
|
11513
|
+
* Select specific fields to fetch from the MissionSpec
|
|
11589
11514
|
*/
|
|
11590
|
-
select?:
|
|
11515
|
+
select?: MissionSpecSelect<ExtArgs> | null
|
|
11591
11516
|
/**
|
|
11592
11517
|
* Choose, which related nodes to fetch as well
|
|
11593
11518
|
*/
|
|
11594
|
-
include?:
|
|
11519
|
+
include?: MissionSpecInclude<ExtArgs> | null
|
|
11595
11520
|
/**
|
|
11596
|
-
* Filter, which
|
|
11521
|
+
* Filter, which MissionSpec to fetch.
|
|
11597
11522
|
*/
|
|
11598
|
-
where?:
|
|
11523
|
+
where?: MissionSpecWhereInput
|
|
11599
11524
|
/**
|
|
11600
11525
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
11601
11526
|
*
|
|
11602
|
-
* Determine the order of
|
|
11527
|
+
* Determine the order of MissionSpecs to fetch.
|
|
11603
11528
|
*/
|
|
11604
|
-
orderBy?:
|
|
11529
|
+
orderBy?: MissionSpecOrderByWithRelationInput | MissionSpecOrderByWithRelationInput[]
|
|
11605
11530
|
/**
|
|
11606
11531
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
11607
11532
|
*
|
|
11608
|
-
* Sets the position for searching for
|
|
11533
|
+
* Sets the position for searching for MissionSpecs.
|
|
11609
11534
|
*/
|
|
11610
|
-
cursor?:
|
|
11535
|
+
cursor?: MissionSpecWhereUniqueInput
|
|
11611
11536
|
/**
|
|
11612
11537
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11613
11538
|
*
|
|
11614
|
-
* Take `±n`
|
|
11539
|
+
* Take `±n` MissionSpecs from the position of the cursor.
|
|
11615
11540
|
*/
|
|
11616
11541
|
take?: number
|
|
11617
11542
|
/**
|
|
11618
11543
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11619
11544
|
*
|
|
11620
|
-
* Skip the first `n`
|
|
11545
|
+
* Skip the first `n` MissionSpecs.
|
|
11621
11546
|
*/
|
|
11622
11547
|
skip?: number
|
|
11623
11548
|
/**
|
|
11624
11549
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
11625
11550
|
*
|
|
11626
|
-
* Filter by unique combinations of
|
|
11551
|
+
* Filter by unique combinations of MissionSpecs.
|
|
11627
11552
|
*/
|
|
11628
|
-
distinct?:
|
|
11553
|
+
distinct?: MissionSpecScalarFieldEnum | MissionSpecScalarFieldEnum[]
|
|
11629
11554
|
}
|
|
11630
11555
|
|
|
11631
11556
|
/**
|
|
11632
|
-
*
|
|
11557
|
+
* MissionSpec findMany
|
|
11633
11558
|
*/
|
|
11634
|
-
export type
|
|
11559
|
+
export type MissionSpecFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11635
11560
|
/**
|
|
11636
|
-
* Select specific fields to fetch from the
|
|
11561
|
+
* Select specific fields to fetch from the MissionSpec
|
|
11637
11562
|
*/
|
|
11638
|
-
select?:
|
|
11563
|
+
select?: MissionSpecSelect<ExtArgs> | null
|
|
11639
11564
|
/**
|
|
11640
11565
|
* Choose, which related nodes to fetch as well
|
|
11641
11566
|
*/
|
|
11642
|
-
include?:
|
|
11567
|
+
include?: MissionSpecInclude<ExtArgs> | null
|
|
11643
11568
|
/**
|
|
11644
|
-
* Filter, which
|
|
11569
|
+
* Filter, which MissionSpecs to fetch.
|
|
11645
11570
|
*/
|
|
11646
|
-
where?:
|
|
11571
|
+
where?: MissionSpecWhereInput
|
|
11647
11572
|
/**
|
|
11648
11573
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
11649
11574
|
*
|
|
11650
|
-
* Determine the order of
|
|
11575
|
+
* Determine the order of MissionSpecs to fetch.
|
|
11651
11576
|
*/
|
|
11652
|
-
orderBy?:
|
|
11577
|
+
orderBy?: MissionSpecOrderByWithRelationInput | MissionSpecOrderByWithRelationInput[]
|
|
11653
11578
|
/**
|
|
11654
11579
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
11655
11580
|
*
|
|
11656
|
-
* Sets the position for listing
|
|
11581
|
+
* Sets the position for listing MissionSpecs.
|
|
11657
11582
|
*/
|
|
11658
|
-
cursor?:
|
|
11583
|
+
cursor?: MissionSpecWhereUniqueInput
|
|
11659
11584
|
/**
|
|
11660
11585
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11661
11586
|
*
|
|
11662
|
-
* Take `±n`
|
|
11587
|
+
* Take `±n` MissionSpecs from the position of the cursor.
|
|
11663
11588
|
*/
|
|
11664
11589
|
take?: number
|
|
11665
11590
|
/**
|
|
11666
11591
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11667
11592
|
*
|
|
11668
|
-
* Skip the first `n`
|
|
11593
|
+
* Skip the first `n` MissionSpecs.
|
|
11669
11594
|
*/
|
|
11670
11595
|
skip?: number
|
|
11671
|
-
distinct?:
|
|
11596
|
+
distinct?: MissionSpecScalarFieldEnum | MissionSpecScalarFieldEnum[]
|
|
11597
|
+
}
|
|
11598
|
+
|
|
11599
|
+
/**
|
|
11600
|
+
* MissionSpec create
|
|
11601
|
+
*/
|
|
11602
|
+
export type MissionSpecCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11603
|
+
/**
|
|
11604
|
+
* Select specific fields to fetch from the MissionSpec
|
|
11605
|
+
*/
|
|
11606
|
+
select?: MissionSpecSelect<ExtArgs> | null
|
|
11607
|
+
/**
|
|
11608
|
+
* Choose, which related nodes to fetch as well
|
|
11609
|
+
*/
|
|
11610
|
+
include?: MissionSpecInclude<ExtArgs> | null
|
|
11611
|
+
/**
|
|
11612
|
+
* The data needed to create a MissionSpec.
|
|
11613
|
+
*/
|
|
11614
|
+
data: XOR<MissionSpecCreateInput, MissionSpecUncheckedCreateInput>
|
|
11615
|
+
}
|
|
11616
|
+
|
|
11617
|
+
/**
|
|
11618
|
+
* MissionSpec createMany
|
|
11619
|
+
*/
|
|
11620
|
+
export type MissionSpecCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11621
|
+
/**
|
|
11622
|
+
* The data used to create many MissionSpecs.
|
|
11623
|
+
*/
|
|
11624
|
+
data: MissionSpecCreateManyInput | MissionSpecCreateManyInput[]
|
|
11625
|
+
}
|
|
11626
|
+
|
|
11627
|
+
/**
|
|
11628
|
+
* MissionSpec update
|
|
11629
|
+
*/
|
|
11630
|
+
export type MissionSpecUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11631
|
+
/**
|
|
11632
|
+
* Select specific fields to fetch from the MissionSpec
|
|
11633
|
+
*/
|
|
11634
|
+
select?: MissionSpecSelect<ExtArgs> | null
|
|
11635
|
+
/**
|
|
11636
|
+
* Choose, which related nodes to fetch as well
|
|
11637
|
+
*/
|
|
11638
|
+
include?: MissionSpecInclude<ExtArgs> | null
|
|
11639
|
+
/**
|
|
11640
|
+
* The data needed to update a MissionSpec.
|
|
11641
|
+
*/
|
|
11642
|
+
data: XOR<MissionSpecUpdateInput, MissionSpecUncheckedUpdateInput>
|
|
11643
|
+
/**
|
|
11644
|
+
* Choose, which MissionSpec to update.
|
|
11645
|
+
*/
|
|
11646
|
+
where: MissionSpecWhereUniqueInput
|
|
11647
|
+
}
|
|
11648
|
+
|
|
11649
|
+
/**
|
|
11650
|
+
* MissionSpec updateMany
|
|
11651
|
+
*/
|
|
11652
|
+
export type MissionSpecUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11653
|
+
/**
|
|
11654
|
+
* The data used to update MissionSpecs.
|
|
11655
|
+
*/
|
|
11656
|
+
data: XOR<MissionSpecUpdateManyMutationInput, MissionSpecUncheckedUpdateManyInput>
|
|
11657
|
+
/**
|
|
11658
|
+
* Filter which MissionSpecs to update
|
|
11659
|
+
*/
|
|
11660
|
+
where?: MissionSpecWhereInput
|
|
11661
|
+
}
|
|
11662
|
+
|
|
11663
|
+
/**
|
|
11664
|
+
* MissionSpec upsert
|
|
11665
|
+
*/
|
|
11666
|
+
export type MissionSpecUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11667
|
+
/**
|
|
11668
|
+
* Select specific fields to fetch from the MissionSpec
|
|
11669
|
+
*/
|
|
11670
|
+
select?: MissionSpecSelect<ExtArgs> | null
|
|
11671
|
+
/**
|
|
11672
|
+
* Choose, which related nodes to fetch as well
|
|
11673
|
+
*/
|
|
11674
|
+
include?: MissionSpecInclude<ExtArgs> | null
|
|
11675
|
+
/**
|
|
11676
|
+
* The filter to search for the MissionSpec to update in case it exists.
|
|
11677
|
+
*/
|
|
11678
|
+
where: MissionSpecWhereUniqueInput
|
|
11679
|
+
/**
|
|
11680
|
+
* In case the MissionSpec found by the `where` argument doesn't exist, create a new MissionSpec with this data.
|
|
11681
|
+
*/
|
|
11682
|
+
create: XOR<MissionSpecCreateInput, MissionSpecUncheckedCreateInput>
|
|
11683
|
+
/**
|
|
11684
|
+
* In case the MissionSpec was found with the provided `where` argument, update it with this data.
|
|
11685
|
+
*/
|
|
11686
|
+
update: XOR<MissionSpecUpdateInput, MissionSpecUncheckedUpdateInput>
|
|
11672
11687
|
}
|
|
11673
11688
|
|
|
11674
11689
|
/**
|
|
11675
|
-
*
|
|
11690
|
+
* MissionSpec delete
|
|
11676
11691
|
*/
|
|
11677
|
-
export type
|
|
11692
|
+
export type MissionSpecDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11678
11693
|
/**
|
|
11679
|
-
* Select specific fields to fetch from the
|
|
11694
|
+
* Select specific fields to fetch from the MissionSpec
|
|
11680
11695
|
*/
|
|
11681
|
-
select?:
|
|
11696
|
+
select?: MissionSpecSelect<ExtArgs> | null
|
|
11682
11697
|
/**
|
|
11683
11698
|
* Choose, which related nodes to fetch as well
|
|
11684
11699
|
*/
|
|
11685
|
-
include?:
|
|
11700
|
+
include?: MissionSpecInclude<ExtArgs> | null
|
|
11686
11701
|
/**
|
|
11687
|
-
*
|
|
11702
|
+
* Filter which MissionSpec to delete.
|
|
11688
11703
|
*/
|
|
11689
|
-
|
|
11704
|
+
where: MissionSpecWhereUniqueInput
|
|
11690
11705
|
}
|
|
11691
11706
|
|
|
11692
11707
|
/**
|
|
11693
|
-
*
|
|
11708
|
+
* MissionSpec deleteMany
|
|
11694
11709
|
*/
|
|
11695
|
-
export type
|
|
11710
|
+
export type MissionSpecDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11696
11711
|
/**
|
|
11697
|
-
*
|
|
11712
|
+
* Filter which MissionSpecs to delete
|
|
11698
11713
|
*/
|
|
11699
|
-
|
|
11714
|
+
where?: MissionSpecWhereInput
|
|
11700
11715
|
}
|
|
11701
11716
|
|
|
11702
11717
|
/**
|
|
11703
|
-
*
|
|
11718
|
+
* MissionSpec findRaw
|
|
11704
11719
|
*/
|
|
11705
|
-
export type
|
|
11706
|
-
/**
|
|
11707
|
-
* Select specific fields to fetch from the MissionSpecPreFill
|
|
11708
|
-
*/
|
|
11709
|
-
select?: MissionSpecPreFillSelect<ExtArgs> | null
|
|
11710
|
-
/**
|
|
11711
|
-
* Choose, which related nodes to fetch as well
|
|
11712
|
-
*/
|
|
11713
|
-
include?: MissionSpecPreFillInclude<ExtArgs> | null
|
|
11720
|
+
export type MissionSpecFindRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11714
11721
|
/**
|
|
11715
|
-
* The
|
|
11722
|
+
* 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}.
|
|
11716
11723
|
*/
|
|
11717
|
-
|
|
11724
|
+
filter?: InputJsonValue
|
|
11718
11725
|
/**
|
|
11719
|
-
*
|
|
11726
|
+
* Additional options to pass to the `find` command ${@link https://docs.mongodb.com/manual/reference/command/find/#command-fields MongoDB Docs}.
|
|
11720
11727
|
*/
|
|
11721
|
-
|
|
11728
|
+
options?: InputJsonValue
|
|
11722
11729
|
}
|
|
11723
11730
|
|
|
11724
11731
|
/**
|
|
11725
|
-
*
|
|
11732
|
+
* MissionSpec aggregateRaw
|
|
11726
11733
|
*/
|
|
11727
|
-
export type
|
|
11734
|
+
export type MissionSpecAggregateRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11728
11735
|
/**
|
|
11729
|
-
*
|
|
11736
|
+
* 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}.
|
|
11730
11737
|
*/
|
|
11731
|
-
|
|
11738
|
+
pipeline?: InputJsonValue[]
|
|
11732
11739
|
/**
|
|
11733
|
-
*
|
|
11740
|
+
* Additional options to pass to the `aggregate` command ${@link https://docs.mongodb.com/manual/reference/command/aggregate/#command-fields MongoDB Docs}.
|
|
11734
11741
|
*/
|
|
11735
|
-
|
|
11742
|
+
options?: InputJsonValue
|
|
11736
11743
|
}
|
|
11737
11744
|
|
|
11738
11745
|
/**
|
|
11739
|
-
*
|
|
11746
|
+
* MissionSpec.account
|
|
11740
11747
|
*/
|
|
11741
|
-
export type
|
|
11748
|
+
export type MissionSpec$accountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11742
11749
|
/**
|
|
11743
|
-
* Select specific fields to fetch from the
|
|
11750
|
+
* Select specific fields to fetch from the Account
|
|
11744
11751
|
*/
|
|
11745
|
-
select?:
|
|
11752
|
+
select?: AccountSelect<ExtArgs> | null
|
|
11746
11753
|
/**
|
|
11747
11754
|
* Choose, which related nodes to fetch as well
|
|
11748
11755
|
*/
|
|
11749
|
-
include?:
|
|
11750
|
-
|
|
11751
|
-
* The filter to search for the MissionSpecPreFill to update in case it exists.
|
|
11752
|
-
*/
|
|
11753
|
-
where: MissionSpecPreFillWhereUniqueInput
|
|
11754
|
-
/**
|
|
11755
|
-
* In case the MissionSpecPreFill found by the `where` argument doesn't exist, create a new MissionSpecPreFill with this data.
|
|
11756
|
-
*/
|
|
11757
|
-
create: XOR<MissionSpecPreFillCreateInput, MissionSpecPreFillUncheckedCreateInput>
|
|
11758
|
-
/**
|
|
11759
|
-
* In case the MissionSpecPreFill was found with the provided `where` argument, update it with this data.
|
|
11760
|
-
*/
|
|
11761
|
-
update: XOR<MissionSpecPreFillUpdateInput, MissionSpecPreFillUncheckedUpdateInput>
|
|
11756
|
+
include?: AccountInclude<ExtArgs> | null
|
|
11757
|
+
where?: AccountWhereInput
|
|
11762
11758
|
}
|
|
11763
11759
|
|
|
11764
11760
|
/**
|
|
11765
|
-
*
|
|
11761
|
+
* MissionSpec.author
|
|
11766
11762
|
*/
|
|
11767
|
-
export type
|
|
11763
|
+
export type MissionSpec$authorArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11768
11764
|
/**
|
|
11769
|
-
* Select specific fields to fetch from the
|
|
11765
|
+
* Select specific fields to fetch from the User
|
|
11770
11766
|
*/
|
|
11771
|
-
select?:
|
|
11767
|
+
select?: UserSelect<ExtArgs> | null
|
|
11772
11768
|
/**
|
|
11773
11769
|
* Choose, which related nodes to fetch as well
|
|
11774
11770
|
*/
|
|
11775
|
-
include?:
|
|
11776
|
-
|
|
11777
|
-
* Filter which MissionSpecPreFill to delete.
|
|
11778
|
-
*/
|
|
11779
|
-
where: MissionSpecPreFillWhereUniqueInput
|
|
11771
|
+
include?: UserInclude<ExtArgs> | null
|
|
11772
|
+
where?: UserWhereInput
|
|
11780
11773
|
}
|
|
11781
11774
|
|
|
11782
11775
|
/**
|
|
11783
|
-
*
|
|
11776
|
+
* MissionSpec.clientCompany
|
|
11784
11777
|
*/
|
|
11785
|
-
export type
|
|
11778
|
+
export type MissionSpec$clientCompanyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11779
|
+
/**
|
|
11780
|
+
* Select specific fields to fetch from the ClientCompany
|
|
11781
|
+
*/
|
|
11782
|
+
select?: ClientCompanySelect<ExtArgs> | null
|
|
11786
11783
|
/**
|
|
11787
|
-
*
|
|
11784
|
+
* Choose, which related nodes to fetch as well
|
|
11788
11785
|
*/
|
|
11789
|
-
|
|
11786
|
+
include?: ClientCompanyInclude<ExtArgs> | null
|
|
11787
|
+
where?: ClientCompanyWhereInput
|
|
11790
11788
|
}
|
|
11791
11789
|
|
|
11792
11790
|
/**
|
|
11793
|
-
*
|
|
11791
|
+
* MissionSpec.lastModifier
|
|
11794
11792
|
*/
|
|
11795
|
-
export type
|
|
11793
|
+
export type MissionSpec$lastModifierArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11796
11794
|
/**
|
|
11797
|
-
*
|
|
11795
|
+
* Select specific fields to fetch from the User
|
|
11798
11796
|
*/
|
|
11799
|
-
|
|
11797
|
+
select?: UserSelect<ExtArgs> | null
|
|
11800
11798
|
/**
|
|
11801
|
-
*
|
|
11799
|
+
* Choose, which related nodes to fetch as well
|
|
11802
11800
|
*/
|
|
11803
|
-
|
|
11801
|
+
include?: UserInclude<ExtArgs> | null
|
|
11802
|
+
where?: UserWhereInput
|
|
11804
11803
|
}
|
|
11805
11804
|
|
|
11806
11805
|
/**
|
|
11807
|
-
*
|
|
11806
|
+
* MissionSpec.mission
|
|
11808
11807
|
*/
|
|
11809
|
-
export type
|
|
11808
|
+
export type MissionSpec$missionArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11810
11809
|
/**
|
|
11811
|
-
*
|
|
11810
|
+
* Select specific fields to fetch from the Mission
|
|
11812
11811
|
*/
|
|
11813
|
-
|
|
11812
|
+
select?: MissionSelect<ExtArgs> | null
|
|
11814
11813
|
/**
|
|
11815
|
-
*
|
|
11814
|
+
* Choose, which related nodes to fetch as well
|
|
11816
11815
|
*/
|
|
11817
|
-
|
|
11816
|
+
include?: MissionInclude<ExtArgs> | null
|
|
11817
|
+
where?: MissionWhereInput
|
|
11818
11818
|
}
|
|
11819
11819
|
|
|
11820
11820
|
/**
|
|
11821
|
-
*
|
|
11821
|
+
* MissionSpec without action
|
|
11822
11822
|
*/
|
|
11823
|
-
export type
|
|
11823
|
+
export type MissionSpecDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11824
11824
|
/**
|
|
11825
|
-
* Select specific fields to fetch from the
|
|
11825
|
+
* Select specific fields to fetch from the MissionSpec
|
|
11826
11826
|
*/
|
|
11827
|
-
select?:
|
|
11827
|
+
select?: MissionSpecSelect<ExtArgs> | null
|
|
11828
11828
|
/**
|
|
11829
11829
|
* Choose, which related nodes to fetch as well
|
|
11830
11830
|
*/
|
|
11831
|
-
include?:
|
|
11831
|
+
include?: MissionSpecInclude<ExtArgs> | null
|
|
11832
11832
|
}
|
|
11833
11833
|
|
|
11834
11834
|
|
|
@@ -14726,7 +14726,7 @@ export namespace Prisma {
|
|
|
14726
14726
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
14727
14727
|
authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
|
|
14728
14728
|
modifiedMissionSpecs?: boolean | User$modifiedMissionSpecsArgs<ExtArgs>
|
|
14729
|
-
|
|
14729
|
+
missionPreFills?: boolean | User$missionPreFillsArgs<ExtArgs>
|
|
14730
14730
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
14731
14731
|
}, ExtArgs["result"]["user"]>
|
|
14732
14732
|
|
|
@@ -14751,7 +14751,7 @@ export namespace Prisma {
|
|
|
14751
14751
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
14752
14752
|
authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
|
|
14753
14753
|
modifiedMissionSpecs?: boolean | User$modifiedMissionSpecsArgs<ExtArgs>
|
|
14754
|
-
|
|
14754
|
+
missionPreFills?: boolean | User$missionPreFillsArgs<ExtArgs>
|
|
14755
14755
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
14756
14756
|
}
|
|
14757
14757
|
|
|
@@ -14762,7 +14762,7 @@ export namespace Prisma {
|
|
|
14762
14762
|
ownedMissionsModels: Prisma.$MissionPayload<ExtArgs>[]
|
|
14763
14763
|
authoredMissionSpecs: Prisma.$MissionSpecPayload<ExtArgs>[]
|
|
14764
14764
|
modifiedMissionSpecs: Prisma.$MissionSpecPayload<ExtArgs>[]
|
|
14765
|
-
|
|
14765
|
+
missionPreFills: Prisma.$MissionPreFillPayload<ExtArgs>[]
|
|
14766
14766
|
}
|
|
14767
14767
|
scalars: $Extensions.GetPayloadResult<{
|
|
14768
14768
|
id: string
|
|
@@ -15144,7 +15144,7 @@ export namespace Prisma {
|
|
|
15144
15144
|
ownedMissionsModels<T extends User$ownedMissionsModelsArgs<ExtArgs> = {}>(args?: Subset<T, User$ownedMissionsModelsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionPayload<ExtArgs>, T, "findMany"> | Null>
|
|
15145
15145
|
authoredMissionSpecs<T extends User$authoredMissionSpecsArgs<ExtArgs> = {}>(args?: Subset<T, User$authoredMissionSpecsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findMany"> | Null>
|
|
15146
15146
|
modifiedMissionSpecs<T extends User$modifiedMissionSpecsArgs<ExtArgs> = {}>(args?: Subset<T, User$modifiedMissionSpecsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findMany"> | Null>
|
|
15147
|
-
|
|
15147
|
+
missionPreFills<T extends User$missionPreFillsArgs<ExtArgs> = {}>(args?: Subset<T, User$missionPreFillsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionPreFillPayload<ExtArgs>, T, "findMany"> | Null>
|
|
15148
15148
|
/**
|
|
15149
15149
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
15150
15150
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -15592,23 +15592,23 @@ export namespace Prisma {
|
|
|
15592
15592
|
}
|
|
15593
15593
|
|
|
15594
15594
|
/**
|
|
15595
|
-
* User.
|
|
15595
|
+
* User.missionPreFills
|
|
15596
15596
|
*/
|
|
15597
|
-
export type User$
|
|
15597
|
+
export type User$missionPreFillsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
15598
15598
|
/**
|
|
15599
|
-
* Select specific fields to fetch from the
|
|
15599
|
+
* Select specific fields to fetch from the MissionPreFill
|
|
15600
15600
|
*/
|
|
15601
|
-
select?:
|
|
15601
|
+
select?: MissionPreFillSelect<ExtArgs> | null
|
|
15602
15602
|
/**
|
|
15603
15603
|
* Choose, which related nodes to fetch as well
|
|
15604
15604
|
*/
|
|
15605
|
-
include?:
|
|
15606
|
-
where?:
|
|
15607
|
-
orderBy?:
|
|
15608
|
-
cursor?:
|
|
15605
|
+
include?: MissionPreFillInclude<ExtArgs> | null
|
|
15606
|
+
where?: MissionPreFillWhereInput
|
|
15607
|
+
orderBy?: MissionPreFillOrderByWithRelationInput | MissionPreFillOrderByWithRelationInput[]
|
|
15608
|
+
cursor?: MissionPreFillWhereUniqueInput
|
|
15609
15609
|
take?: number
|
|
15610
15610
|
skip?: number
|
|
15611
|
-
distinct?:
|
|
15611
|
+
distinct?: MissionPreFillScalarFieldEnum | MissionPreFillScalarFieldEnum[]
|
|
15612
15612
|
}
|
|
15613
15613
|
|
|
15614
15614
|
/**
|
|
@@ -15736,6 +15736,23 @@ export namespace Prisma {
|
|
|
15736
15736
|
export type MissionScalarFieldEnum = (typeof MissionScalarFieldEnum)[keyof typeof MissionScalarFieldEnum]
|
|
15737
15737
|
|
|
15738
15738
|
|
|
15739
|
+
export const MissionPreFillScalarFieldEnum: {
|
|
15740
|
+
id: 'id',
|
|
15741
|
+
userId: 'userId',
|
|
15742
|
+
missionName: 'missionName',
|
|
15743
|
+
plannedStart: 'plannedStart',
|
|
15744
|
+
companyDescription: 'companyDescription',
|
|
15745
|
+
missionDescription: 'missionDescription',
|
|
15746
|
+
timezone: 'timezone',
|
|
15747
|
+
openRoles: 'openRoles',
|
|
15748
|
+
status: 'status',
|
|
15749
|
+
createdAt: 'createdAt',
|
|
15750
|
+
updatedAt: 'updatedAt'
|
|
15751
|
+
};
|
|
15752
|
+
|
|
15753
|
+
export type MissionPreFillScalarFieldEnum = (typeof MissionPreFillScalarFieldEnum)[keyof typeof MissionPreFillScalarFieldEnum]
|
|
15754
|
+
|
|
15755
|
+
|
|
15739
15756
|
export const MissionSpecScalarFieldEnum: {
|
|
15740
15757
|
id: 'id',
|
|
15741
15758
|
accountId: 'accountId',
|
|
@@ -15763,23 +15780,6 @@ export namespace Prisma {
|
|
|
15763
15780
|
export type MissionSpecScalarFieldEnum = (typeof MissionSpecScalarFieldEnum)[keyof typeof MissionSpecScalarFieldEnum]
|
|
15764
15781
|
|
|
15765
15782
|
|
|
15766
|
-
export const MissionSpecPreFillScalarFieldEnum: {
|
|
15767
|
-
id: 'id',
|
|
15768
|
-
userId: 'userId',
|
|
15769
|
-
missionName: 'missionName',
|
|
15770
|
-
plannedStart: 'plannedStart',
|
|
15771
|
-
companyDescription: 'companyDescription',
|
|
15772
|
-
missionDescription: 'missionDescription',
|
|
15773
|
-
timezone: 'timezone',
|
|
15774
|
-
openRoles: 'openRoles',
|
|
15775
|
-
status: 'status',
|
|
15776
|
-
createdAt: 'createdAt',
|
|
15777
|
-
updatedAt: 'updatedAt'
|
|
15778
|
-
};
|
|
15779
|
-
|
|
15780
|
-
export type MissionSpecPreFillScalarFieldEnum = (typeof MissionSpecPreFillScalarFieldEnum)[keyof typeof MissionSpecPreFillScalarFieldEnum]
|
|
15781
|
-
|
|
15782
|
-
|
|
15783
15783
|
export const RoleCategoryScalarFieldEnum: {
|
|
15784
15784
|
id: 'id',
|
|
15785
15785
|
anchors: 'anchors',
|
|
@@ -15976,23 +15976,23 @@ export namespace Prisma {
|
|
|
15976
15976
|
|
|
15977
15977
|
|
|
15978
15978
|
/**
|
|
15979
|
-
* Reference to a field of type '
|
|
15979
|
+
* Reference to a field of type 'Json'
|
|
15980
15980
|
*/
|
|
15981
|
-
export type
|
|
15981
|
+
export type JsonFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Json'>
|
|
15982
15982
|
|
|
15983
15983
|
|
|
15984
15984
|
|
|
15985
15985
|
/**
|
|
15986
|
-
* Reference to a field of type 'MissionSpecStatus
|
|
15986
|
+
* Reference to a field of type 'MissionSpecStatus'
|
|
15987
15987
|
*/
|
|
15988
|
-
export type
|
|
15988
|
+
export type EnumMissionSpecStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'MissionSpecStatus'>
|
|
15989
15989
|
|
|
15990
15990
|
|
|
15991
15991
|
|
|
15992
15992
|
/**
|
|
15993
|
-
* Reference to a field of type '
|
|
15993
|
+
* Reference to a field of type 'MissionSpecStatus[]'
|
|
15994
15994
|
*/
|
|
15995
|
-
export type
|
|
15995
|
+
export type ListEnumMissionSpecStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'MissionSpecStatus[]'>
|
|
15996
15996
|
|
|
15997
15997
|
|
|
15998
15998
|
|
|
@@ -16616,6 +16616,91 @@ export namespace Prisma {
|
|
|
16616
16616
|
timezone?: StringNullableWithAggregatesFilter<"Mission"> | string | null
|
|
16617
16617
|
}
|
|
16618
16618
|
|
|
16619
|
+
export type MissionPreFillWhereInput = {
|
|
16620
|
+
AND?: MissionPreFillWhereInput | MissionPreFillWhereInput[]
|
|
16621
|
+
OR?: MissionPreFillWhereInput[]
|
|
16622
|
+
NOT?: MissionPreFillWhereInput | MissionPreFillWhereInput[]
|
|
16623
|
+
id?: StringFilter<"MissionPreFill"> | string
|
|
16624
|
+
userId?: StringFilter<"MissionPreFill"> | string
|
|
16625
|
+
missionName?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
16626
|
+
plannedStart?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
16627
|
+
companyDescription?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
16628
|
+
missionDescription?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
16629
|
+
timezone?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
16630
|
+
openRoles?: JsonNullableFilter<"MissionPreFill">
|
|
16631
|
+
status?: StringFilter<"MissionPreFill"> | string
|
|
16632
|
+
createdAt?: DateTimeFilter<"MissionPreFill"> | Date | string
|
|
16633
|
+
updatedAt?: DateTimeFilter<"MissionPreFill"> | Date | string
|
|
16634
|
+
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
16635
|
+
}
|
|
16636
|
+
|
|
16637
|
+
export type MissionPreFillOrderByWithRelationInput = {
|
|
16638
|
+
id?: SortOrder
|
|
16639
|
+
userId?: SortOrder
|
|
16640
|
+
missionName?: SortOrder
|
|
16641
|
+
plannedStart?: SortOrder
|
|
16642
|
+
companyDescription?: SortOrder
|
|
16643
|
+
missionDescription?: SortOrder
|
|
16644
|
+
timezone?: SortOrder
|
|
16645
|
+
openRoles?: SortOrder
|
|
16646
|
+
status?: SortOrder
|
|
16647
|
+
createdAt?: SortOrder
|
|
16648
|
+
updatedAt?: SortOrder
|
|
16649
|
+
user?: UserOrderByWithRelationInput
|
|
16650
|
+
}
|
|
16651
|
+
|
|
16652
|
+
export type MissionPreFillWhereUniqueInput = Prisma.AtLeast<{
|
|
16653
|
+
id?: string
|
|
16654
|
+
AND?: MissionPreFillWhereInput | MissionPreFillWhereInput[]
|
|
16655
|
+
OR?: MissionPreFillWhereInput[]
|
|
16656
|
+
NOT?: MissionPreFillWhereInput | MissionPreFillWhereInput[]
|
|
16657
|
+
userId?: StringFilter<"MissionPreFill"> | string
|
|
16658
|
+
missionName?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
16659
|
+
plannedStart?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
16660
|
+
companyDescription?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
16661
|
+
missionDescription?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
16662
|
+
timezone?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
16663
|
+
openRoles?: JsonNullableFilter<"MissionPreFill">
|
|
16664
|
+
status?: StringFilter<"MissionPreFill"> | string
|
|
16665
|
+
createdAt?: DateTimeFilter<"MissionPreFill"> | Date | string
|
|
16666
|
+
updatedAt?: DateTimeFilter<"MissionPreFill"> | Date | string
|
|
16667
|
+
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
16668
|
+
}, "id">
|
|
16669
|
+
|
|
16670
|
+
export type MissionPreFillOrderByWithAggregationInput = {
|
|
16671
|
+
id?: SortOrder
|
|
16672
|
+
userId?: SortOrder
|
|
16673
|
+
missionName?: SortOrder
|
|
16674
|
+
plannedStart?: SortOrder
|
|
16675
|
+
companyDescription?: SortOrder
|
|
16676
|
+
missionDescription?: SortOrder
|
|
16677
|
+
timezone?: SortOrder
|
|
16678
|
+
openRoles?: SortOrder
|
|
16679
|
+
status?: SortOrder
|
|
16680
|
+
createdAt?: SortOrder
|
|
16681
|
+
updatedAt?: SortOrder
|
|
16682
|
+
_count?: MissionPreFillCountOrderByAggregateInput
|
|
16683
|
+
_max?: MissionPreFillMaxOrderByAggregateInput
|
|
16684
|
+
_min?: MissionPreFillMinOrderByAggregateInput
|
|
16685
|
+
}
|
|
16686
|
+
|
|
16687
|
+
export type MissionPreFillScalarWhereWithAggregatesInput = {
|
|
16688
|
+
AND?: MissionPreFillScalarWhereWithAggregatesInput | MissionPreFillScalarWhereWithAggregatesInput[]
|
|
16689
|
+
OR?: MissionPreFillScalarWhereWithAggregatesInput[]
|
|
16690
|
+
NOT?: MissionPreFillScalarWhereWithAggregatesInput | MissionPreFillScalarWhereWithAggregatesInput[]
|
|
16691
|
+
id?: StringWithAggregatesFilter<"MissionPreFill"> | string
|
|
16692
|
+
userId?: StringWithAggregatesFilter<"MissionPreFill"> | string
|
|
16693
|
+
missionName?: StringNullableWithAggregatesFilter<"MissionPreFill"> | string | null
|
|
16694
|
+
plannedStart?: StringNullableWithAggregatesFilter<"MissionPreFill"> | string | null
|
|
16695
|
+
companyDescription?: StringNullableWithAggregatesFilter<"MissionPreFill"> | string | null
|
|
16696
|
+
missionDescription?: StringNullableWithAggregatesFilter<"MissionPreFill"> | string | null
|
|
16697
|
+
timezone?: StringNullableWithAggregatesFilter<"MissionPreFill"> | string | null
|
|
16698
|
+
openRoles?: JsonNullableWithAggregatesFilter<"MissionPreFill">
|
|
16699
|
+
status?: StringWithAggregatesFilter<"MissionPreFill"> | string
|
|
16700
|
+
createdAt?: DateTimeWithAggregatesFilter<"MissionPreFill"> | Date | string
|
|
16701
|
+
updatedAt?: DateTimeWithAggregatesFilter<"MissionPreFill"> | Date | string
|
|
16702
|
+
}
|
|
16703
|
+
|
|
16619
16704
|
export type MissionSpecWhereInput = {
|
|
16620
16705
|
AND?: MissionSpecWhereInput | MissionSpecWhereInput[]
|
|
16621
16706
|
OR?: MissionSpecWhereInput[]
|
|
@@ -16780,91 +16865,6 @@ export namespace Prisma {
|
|
|
16780
16865
|
workingHoursNumberOfMinutesOverlap?: IntNullableWithAggregatesFilter<"MissionSpec"> | number | null
|
|
16781
16866
|
}
|
|
16782
16867
|
|
|
16783
|
-
export type MissionSpecPreFillWhereInput = {
|
|
16784
|
-
AND?: MissionSpecPreFillWhereInput | MissionSpecPreFillWhereInput[]
|
|
16785
|
-
OR?: MissionSpecPreFillWhereInput[]
|
|
16786
|
-
NOT?: MissionSpecPreFillWhereInput | MissionSpecPreFillWhereInput[]
|
|
16787
|
-
id?: StringFilter<"MissionSpecPreFill"> | string
|
|
16788
|
-
userId?: StringFilter<"MissionSpecPreFill"> | string
|
|
16789
|
-
missionName?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16790
|
-
plannedStart?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16791
|
-
companyDescription?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16792
|
-
missionDescription?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16793
|
-
timezone?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16794
|
-
openRoles?: JsonNullableFilter<"MissionSpecPreFill">
|
|
16795
|
-
status?: StringFilter<"MissionSpecPreFill"> | string
|
|
16796
|
-
createdAt?: DateTimeFilter<"MissionSpecPreFill"> | Date | string
|
|
16797
|
-
updatedAt?: DateTimeFilter<"MissionSpecPreFill"> | Date | string
|
|
16798
|
-
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
16799
|
-
}
|
|
16800
|
-
|
|
16801
|
-
export type MissionSpecPreFillOrderByWithRelationInput = {
|
|
16802
|
-
id?: SortOrder
|
|
16803
|
-
userId?: SortOrder
|
|
16804
|
-
missionName?: SortOrder
|
|
16805
|
-
plannedStart?: SortOrder
|
|
16806
|
-
companyDescription?: SortOrder
|
|
16807
|
-
missionDescription?: SortOrder
|
|
16808
|
-
timezone?: SortOrder
|
|
16809
|
-
openRoles?: SortOrder
|
|
16810
|
-
status?: SortOrder
|
|
16811
|
-
createdAt?: SortOrder
|
|
16812
|
-
updatedAt?: SortOrder
|
|
16813
|
-
user?: UserOrderByWithRelationInput
|
|
16814
|
-
}
|
|
16815
|
-
|
|
16816
|
-
export type MissionSpecPreFillWhereUniqueInput = Prisma.AtLeast<{
|
|
16817
|
-
id?: string
|
|
16818
|
-
AND?: MissionSpecPreFillWhereInput | MissionSpecPreFillWhereInput[]
|
|
16819
|
-
OR?: MissionSpecPreFillWhereInput[]
|
|
16820
|
-
NOT?: MissionSpecPreFillWhereInput | MissionSpecPreFillWhereInput[]
|
|
16821
|
-
userId?: StringFilter<"MissionSpecPreFill"> | string
|
|
16822
|
-
missionName?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16823
|
-
plannedStart?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16824
|
-
companyDescription?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16825
|
-
missionDescription?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16826
|
-
timezone?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16827
|
-
openRoles?: JsonNullableFilter<"MissionSpecPreFill">
|
|
16828
|
-
status?: StringFilter<"MissionSpecPreFill"> | string
|
|
16829
|
-
createdAt?: DateTimeFilter<"MissionSpecPreFill"> | Date | string
|
|
16830
|
-
updatedAt?: DateTimeFilter<"MissionSpecPreFill"> | Date | string
|
|
16831
|
-
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
16832
|
-
}, "id">
|
|
16833
|
-
|
|
16834
|
-
export type MissionSpecPreFillOrderByWithAggregationInput = {
|
|
16835
|
-
id?: SortOrder
|
|
16836
|
-
userId?: SortOrder
|
|
16837
|
-
missionName?: SortOrder
|
|
16838
|
-
plannedStart?: SortOrder
|
|
16839
|
-
companyDescription?: SortOrder
|
|
16840
|
-
missionDescription?: SortOrder
|
|
16841
|
-
timezone?: SortOrder
|
|
16842
|
-
openRoles?: SortOrder
|
|
16843
|
-
status?: SortOrder
|
|
16844
|
-
createdAt?: SortOrder
|
|
16845
|
-
updatedAt?: SortOrder
|
|
16846
|
-
_count?: MissionSpecPreFillCountOrderByAggregateInput
|
|
16847
|
-
_max?: MissionSpecPreFillMaxOrderByAggregateInput
|
|
16848
|
-
_min?: MissionSpecPreFillMinOrderByAggregateInput
|
|
16849
|
-
}
|
|
16850
|
-
|
|
16851
|
-
export type MissionSpecPreFillScalarWhereWithAggregatesInput = {
|
|
16852
|
-
AND?: MissionSpecPreFillScalarWhereWithAggregatesInput | MissionSpecPreFillScalarWhereWithAggregatesInput[]
|
|
16853
|
-
OR?: MissionSpecPreFillScalarWhereWithAggregatesInput[]
|
|
16854
|
-
NOT?: MissionSpecPreFillScalarWhereWithAggregatesInput | MissionSpecPreFillScalarWhereWithAggregatesInput[]
|
|
16855
|
-
id?: StringWithAggregatesFilter<"MissionSpecPreFill"> | string
|
|
16856
|
-
userId?: StringWithAggregatesFilter<"MissionSpecPreFill"> | string
|
|
16857
|
-
missionName?: StringNullableWithAggregatesFilter<"MissionSpecPreFill"> | string | null
|
|
16858
|
-
plannedStart?: StringNullableWithAggregatesFilter<"MissionSpecPreFill"> | string | null
|
|
16859
|
-
companyDescription?: StringNullableWithAggregatesFilter<"MissionSpecPreFill"> | string | null
|
|
16860
|
-
missionDescription?: StringNullableWithAggregatesFilter<"MissionSpecPreFill"> | string | null
|
|
16861
|
-
timezone?: StringNullableWithAggregatesFilter<"MissionSpecPreFill"> | string | null
|
|
16862
|
-
openRoles?: JsonNullableWithAggregatesFilter<"MissionSpecPreFill">
|
|
16863
|
-
status?: StringWithAggregatesFilter<"MissionSpecPreFill"> | string
|
|
16864
|
-
createdAt?: DateTimeWithAggregatesFilter<"MissionSpecPreFill"> | Date | string
|
|
16865
|
-
updatedAt?: DateTimeWithAggregatesFilter<"MissionSpecPreFill"> | Date | string
|
|
16866
|
-
}
|
|
16867
|
-
|
|
16868
16868
|
export type RoleCategoryWhereInput = {
|
|
16869
16869
|
AND?: RoleCategoryWhereInput | RoleCategoryWhereInput[]
|
|
16870
16870
|
OR?: RoleCategoryWhereInput[]
|
|
@@ -17061,7 +17061,7 @@ export namespace Prisma {
|
|
|
17061
17061
|
ownedMissionsModels?: MissionListRelationFilter
|
|
17062
17062
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
17063
17063
|
modifiedMissionSpecs?: MissionSpecListRelationFilter
|
|
17064
|
-
|
|
17064
|
+
missionPreFills?: MissionPreFillListRelationFilter
|
|
17065
17065
|
}
|
|
17066
17066
|
|
|
17067
17067
|
export type UserOrderByWithRelationInput = {
|
|
@@ -17081,7 +17081,7 @@ export namespace Prisma {
|
|
|
17081
17081
|
ownedMissionsModels?: MissionOrderByRelationAggregateInput
|
|
17082
17082
|
authoredMissionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
17083
17083
|
modifiedMissionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
17084
|
-
|
|
17084
|
+
missionPreFills?: MissionPreFillOrderByRelationAggregateInput
|
|
17085
17085
|
}
|
|
17086
17086
|
|
|
17087
17087
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -17104,7 +17104,7 @@ export namespace Prisma {
|
|
|
17104
17104
|
ownedMissionsModels?: MissionListRelationFilter
|
|
17105
17105
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
17106
17106
|
modifiedMissionSpecs?: MissionSpecListRelationFilter
|
|
17107
|
-
|
|
17107
|
+
missionPreFills?: MissionPreFillListRelationFilter
|
|
17108
17108
|
}, "id" | "username" | "email">
|
|
17109
17109
|
|
|
17110
17110
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -17850,8 +17850,101 @@ export namespace Prisma {
|
|
|
17850
17850
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17851
17851
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17852
17852
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17853
|
-
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
17853
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
17854
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17855
|
+
}
|
|
17856
|
+
|
|
17857
|
+
export type MissionPreFillCreateInput = {
|
|
17858
|
+
id?: string
|
|
17859
|
+
missionName?: string | null
|
|
17860
|
+
plannedStart?: string | null
|
|
17861
|
+
companyDescription?: string | null
|
|
17862
|
+
missionDescription?: string | null
|
|
17863
|
+
timezone?: string | null
|
|
17864
|
+
openRoles?: InputJsonValue | null
|
|
17865
|
+
status?: string
|
|
17866
|
+
createdAt?: Date | string
|
|
17867
|
+
updatedAt?: Date | string
|
|
17868
|
+
user: UserCreateNestedOneWithoutMissionPreFillsInput
|
|
17869
|
+
}
|
|
17870
|
+
|
|
17871
|
+
export type MissionPreFillUncheckedCreateInput = {
|
|
17872
|
+
id?: string
|
|
17873
|
+
userId: string
|
|
17874
|
+
missionName?: string | null
|
|
17875
|
+
plannedStart?: string | null
|
|
17876
|
+
companyDescription?: string | null
|
|
17877
|
+
missionDescription?: string | null
|
|
17878
|
+
timezone?: string | null
|
|
17879
|
+
openRoles?: InputJsonValue | null
|
|
17880
|
+
status?: string
|
|
17881
|
+
createdAt?: Date | string
|
|
17882
|
+
updatedAt?: Date | string
|
|
17883
|
+
}
|
|
17884
|
+
|
|
17885
|
+
export type MissionPreFillUpdateInput = {
|
|
17886
|
+
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17887
|
+
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17888
|
+
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17889
|
+
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17890
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17891
|
+
openRoles?: InputJsonValue | InputJsonValue | null
|
|
17892
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
17893
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17894
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17895
|
+
user?: UserUpdateOneRequiredWithoutMissionPreFillsNestedInput
|
|
17896
|
+
}
|
|
17897
|
+
|
|
17898
|
+
export type MissionPreFillUncheckedUpdateInput = {
|
|
17899
|
+
userId?: StringFieldUpdateOperationsInput | string
|
|
17900
|
+
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17901
|
+
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17902
|
+
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17903
|
+
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17904
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17905
|
+
openRoles?: InputJsonValue | InputJsonValue | null
|
|
17906
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
17907
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17908
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17909
|
+
}
|
|
17910
|
+
|
|
17911
|
+
export type MissionPreFillCreateManyInput = {
|
|
17912
|
+
id?: string
|
|
17913
|
+
userId: string
|
|
17914
|
+
missionName?: string | null
|
|
17915
|
+
plannedStart?: string | null
|
|
17916
|
+
companyDescription?: string | null
|
|
17917
|
+
missionDescription?: string | null
|
|
17918
|
+
timezone?: string | null
|
|
17919
|
+
openRoles?: InputJsonValue | null
|
|
17920
|
+
status?: string
|
|
17921
|
+
createdAt?: Date | string
|
|
17922
|
+
updatedAt?: Date | string
|
|
17923
|
+
}
|
|
17924
|
+
|
|
17925
|
+
export type MissionPreFillUpdateManyMutationInput = {
|
|
17926
|
+
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17927
|
+
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17928
|
+
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17929
|
+
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17930
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17931
|
+
openRoles?: InputJsonValue | InputJsonValue | null
|
|
17932
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
17933
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17934
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17935
|
+
}
|
|
17936
|
+
|
|
17937
|
+
export type MissionPreFillUncheckedUpdateManyInput = {
|
|
17938
|
+
userId?: StringFieldUpdateOperationsInput | string
|
|
17939
|
+
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17940
|
+
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17941
|
+
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17942
|
+
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17854
17943
|
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17944
|
+
openRoles?: InputJsonValue | InputJsonValue | null
|
|
17945
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
17946
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17947
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17855
17948
|
}
|
|
17856
17949
|
|
|
17857
17950
|
export type MissionSpecCreateInput = {
|
|
@@ -18053,99 +18146,6 @@ export namespace Prisma {
|
|
|
18053
18146
|
workingHoursNumberOfMinutesOverlap?: NullableIntFieldUpdateOperationsInput | number | null
|
|
18054
18147
|
}
|
|
18055
18148
|
|
|
18056
|
-
export type MissionSpecPreFillCreateInput = {
|
|
18057
|
-
id?: string
|
|
18058
|
-
missionName?: string | null
|
|
18059
|
-
plannedStart?: string | null
|
|
18060
|
-
companyDescription?: string | null
|
|
18061
|
-
missionDescription?: string | null
|
|
18062
|
-
timezone?: string | null
|
|
18063
|
-
openRoles?: InputJsonValue | null
|
|
18064
|
-
status?: string
|
|
18065
|
-
createdAt?: Date | string
|
|
18066
|
-
updatedAt?: Date | string
|
|
18067
|
-
user: UserCreateNestedOneWithoutMissionSpecPreFillsInput
|
|
18068
|
-
}
|
|
18069
|
-
|
|
18070
|
-
export type MissionSpecPreFillUncheckedCreateInput = {
|
|
18071
|
-
id?: string
|
|
18072
|
-
userId: string
|
|
18073
|
-
missionName?: string | null
|
|
18074
|
-
plannedStart?: string | null
|
|
18075
|
-
companyDescription?: string | null
|
|
18076
|
-
missionDescription?: string | null
|
|
18077
|
-
timezone?: string | null
|
|
18078
|
-
openRoles?: InputJsonValue | null
|
|
18079
|
-
status?: string
|
|
18080
|
-
createdAt?: Date | string
|
|
18081
|
-
updatedAt?: Date | string
|
|
18082
|
-
}
|
|
18083
|
-
|
|
18084
|
-
export type MissionSpecPreFillUpdateInput = {
|
|
18085
|
-
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18086
|
-
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18087
|
-
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18088
|
-
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18089
|
-
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18090
|
-
openRoles?: InputJsonValue | InputJsonValue | null
|
|
18091
|
-
status?: StringFieldUpdateOperationsInput | string
|
|
18092
|
-
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18093
|
-
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18094
|
-
user?: UserUpdateOneRequiredWithoutMissionSpecPreFillsNestedInput
|
|
18095
|
-
}
|
|
18096
|
-
|
|
18097
|
-
export type MissionSpecPreFillUncheckedUpdateInput = {
|
|
18098
|
-
userId?: StringFieldUpdateOperationsInput | string
|
|
18099
|
-
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18100
|
-
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18101
|
-
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18102
|
-
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18103
|
-
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18104
|
-
openRoles?: InputJsonValue | InputJsonValue | null
|
|
18105
|
-
status?: StringFieldUpdateOperationsInput | string
|
|
18106
|
-
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18107
|
-
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18108
|
-
}
|
|
18109
|
-
|
|
18110
|
-
export type MissionSpecPreFillCreateManyInput = {
|
|
18111
|
-
id?: string
|
|
18112
|
-
userId: string
|
|
18113
|
-
missionName?: string | null
|
|
18114
|
-
plannedStart?: string | null
|
|
18115
|
-
companyDescription?: string | null
|
|
18116
|
-
missionDescription?: string | null
|
|
18117
|
-
timezone?: string | null
|
|
18118
|
-
openRoles?: InputJsonValue | null
|
|
18119
|
-
status?: string
|
|
18120
|
-
createdAt?: Date | string
|
|
18121
|
-
updatedAt?: Date | string
|
|
18122
|
-
}
|
|
18123
|
-
|
|
18124
|
-
export type MissionSpecPreFillUpdateManyMutationInput = {
|
|
18125
|
-
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18126
|
-
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18127
|
-
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18128
|
-
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18129
|
-
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18130
|
-
openRoles?: InputJsonValue | InputJsonValue | null
|
|
18131
|
-
status?: StringFieldUpdateOperationsInput | string
|
|
18132
|
-
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18133
|
-
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18134
|
-
}
|
|
18135
|
-
|
|
18136
|
-
export type MissionSpecPreFillUncheckedUpdateManyInput = {
|
|
18137
|
-
userId?: StringFieldUpdateOperationsInput | string
|
|
18138
|
-
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18139
|
-
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18140
|
-
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18141
|
-
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18142
|
-
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18143
|
-
openRoles?: InputJsonValue | InputJsonValue | null
|
|
18144
|
-
status?: StringFieldUpdateOperationsInput | string
|
|
18145
|
-
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18146
|
-
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18147
|
-
}
|
|
18148
|
-
|
|
18149
18149
|
export type RoleCategoryCreateInput = {
|
|
18150
18150
|
id?: string
|
|
18151
18151
|
anchors?: RoleCategoryCreateanchorsInput | string[]
|
|
@@ -18347,7 +18347,7 @@ export namespace Prisma {
|
|
|
18347
18347
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
18348
18348
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
18349
18349
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
18350
|
-
|
|
18350
|
+
missionPreFills?: MissionPreFillCreateNestedManyWithoutUserInput
|
|
18351
18351
|
}
|
|
18352
18352
|
|
|
18353
18353
|
export type UserUncheckedCreateInput = {
|
|
@@ -18367,7 +18367,7 @@ export namespace Prisma {
|
|
|
18367
18367
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
18368
18368
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
18369
18369
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
18370
|
-
|
|
18370
|
+
missionPreFills?: MissionPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
18371
18371
|
}
|
|
18372
18372
|
|
|
18373
18373
|
export type UserUpdateInput = {
|
|
@@ -18386,7 +18386,7 @@ export namespace Prisma {
|
|
|
18386
18386
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
18387
18387
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
18388
18388
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
18389
|
-
|
|
18389
|
+
missionPreFills?: MissionPreFillUpdateManyWithoutUserNestedInput
|
|
18390
18390
|
}
|
|
18391
18391
|
|
|
18392
18392
|
export type UserUncheckedUpdateInput = {
|
|
@@ -18405,7 +18405,7 @@ export namespace Prisma {
|
|
|
18405
18405
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
18406
18406
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
18407
18407
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
18408
|
-
|
|
18408
|
+
missionPreFills?: MissionPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
18409
18409
|
}
|
|
18410
18410
|
|
|
18411
18411
|
export type UserCreateManyInput = {
|
|
@@ -19311,6 +19311,78 @@ export namespace Prisma {
|
|
|
19311
19311
|
_min?: NestedEnumMissionStatusFilter<$PrismaModel>
|
|
19312
19312
|
_max?: NestedEnumMissionStatusFilter<$PrismaModel>
|
|
19313
19313
|
}
|
|
19314
|
+
export type JsonNullableFilter<$PrismaModel = never> =
|
|
19315
|
+
| PatchUndefined<
|
|
19316
|
+
Either<Required<JsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>,
|
|
19317
|
+
Required<JsonNullableFilterBase<$PrismaModel>>
|
|
19318
|
+
>
|
|
19319
|
+
| OptionalFlat<Omit<Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>
|
|
19320
|
+
|
|
19321
|
+
export type JsonNullableFilterBase<$PrismaModel = never> = {
|
|
19322
|
+
equals?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
19323
|
+
not?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
19324
|
+
isSet?: boolean
|
|
19325
|
+
}
|
|
19326
|
+
|
|
19327
|
+
export type UserRelationFilter = {
|
|
19328
|
+
is?: UserWhereInput
|
|
19329
|
+
isNot?: UserWhereInput
|
|
19330
|
+
}
|
|
19331
|
+
|
|
19332
|
+
export type MissionPreFillCountOrderByAggregateInput = {
|
|
19333
|
+
id?: SortOrder
|
|
19334
|
+
userId?: SortOrder
|
|
19335
|
+
missionName?: SortOrder
|
|
19336
|
+
plannedStart?: SortOrder
|
|
19337
|
+
companyDescription?: SortOrder
|
|
19338
|
+
missionDescription?: SortOrder
|
|
19339
|
+
timezone?: SortOrder
|
|
19340
|
+
openRoles?: SortOrder
|
|
19341
|
+
status?: SortOrder
|
|
19342
|
+
createdAt?: SortOrder
|
|
19343
|
+
updatedAt?: SortOrder
|
|
19344
|
+
}
|
|
19345
|
+
|
|
19346
|
+
export type MissionPreFillMaxOrderByAggregateInput = {
|
|
19347
|
+
id?: SortOrder
|
|
19348
|
+
userId?: SortOrder
|
|
19349
|
+
missionName?: SortOrder
|
|
19350
|
+
plannedStart?: SortOrder
|
|
19351
|
+
companyDescription?: SortOrder
|
|
19352
|
+
missionDescription?: SortOrder
|
|
19353
|
+
timezone?: SortOrder
|
|
19354
|
+
status?: SortOrder
|
|
19355
|
+
createdAt?: SortOrder
|
|
19356
|
+
updatedAt?: SortOrder
|
|
19357
|
+
}
|
|
19358
|
+
|
|
19359
|
+
export type MissionPreFillMinOrderByAggregateInput = {
|
|
19360
|
+
id?: SortOrder
|
|
19361
|
+
userId?: SortOrder
|
|
19362
|
+
missionName?: SortOrder
|
|
19363
|
+
plannedStart?: SortOrder
|
|
19364
|
+
companyDescription?: SortOrder
|
|
19365
|
+
missionDescription?: SortOrder
|
|
19366
|
+
timezone?: SortOrder
|
|
19367
|
+
status?: SortOrder
|
|
19368
|
+
createdAt?: SortOrder
|
|
19369
|
+
updatedAt?: SortOrder
|
|
19370
|
+
}
|
|
19371
|
+
export type JsonNullableWithAggregatesFilter<$PrismaModel = never> =
|
|
19372
|
+
| PatchUndefined<
|
|
19373
|
+
Either<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>,
|
|
19374
|
+
Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>
|
|
19375
|
+
>
|
|
19376
|
+
| OptionalFlat<Omit<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>
|
|
19377
|
+
|
|
19378
|
+
export type JsonNullableWithAggregatesFilterBase<$PrismaModel = never> = {
|
|
19379
|
+
equals?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
19380
|
+
not?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
19381
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
19382
|
+
_min?: NestedJsonNullableFilter<$PrismaModel>
|
|
19383
|
+
_max?: NestedJsonNullableFilter<$PrismaModel>
|
|
19384
|
+
isSet?: boolean
|
|
19385
|
+
}
|
|
19314
19386
|
|
|
19315
19387
|
export type AttachedLinkCompositeListFilter = {
|
|
19316
19388
|
equals?: AttachedLinkObjectEqualityInput[]
|
|
@@ -19518,118 +19590,46 @@ export namespace Prisma {
|
|
|
19518
19590
|
description?: SortOrder
|
|
19519
19591
|
icon?: SortOrder
|
|
19520
19592
|
lastModifierId?: SortOrder
|
|
19521
|
-
logo?: SortOrder
|
|
19522
|
-
platformId?: SortOrder
|
|
19523
|
-
startDate?: SortOrder
|
|
19524
|
-
status?: SortOrder
|
|
19525
|
-
title?: SortOrder
|
|
19526
|
-
updatedAt?: SortOrder
|
|
19527
|
-
v?: SortOrder
|
|
19528
|
-
videoURL?: SortOrder
|
|
19529
|
-
workingHoursNumberOfMinutesOverlap?: SortOrder
|
|
19530
|
-
}
|
|
19531
|
-
|
|
19532
|
-
export type MissionSpecSumOrderByAggregateInput = {
|
|
19533
|
-
v?: SortOrder
|
|
19534
|
-
workingHoursNumberOfMinutesOverlap?: SortOrder
|
|
19535
|
-
}
|
|
19536
|
-
|
|
19537
|
-
export type EnumMissionSpecStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
19538
|
-
equals?: $Enums.MissionSpecStatus | EnumMissionSpecStatusFieldRefInput<$PrismaModel>
|
|
19539
|
-
in?: $Enums.MissionSpecStatus[] | ListEnumMissionSpecStatusFieldRefInput<$PrismaModel>
|
|
19540
|
-
notIn?: $Enums.MissionSpecStatus[] | ListEnumMissionSpecStatusFieldRefInput<$PrismaModel>
|
|
19541
|
-
not?: NestedEnumMissionSpecStatusWithAggregatesFilter<$PrismaModel> | $Enums.MissionSpecStatus
|
|
19542
|
-
_count?: NestedIntFilter<$PrismaModel>
|
|
19543
|
-
_min?: NestedEnumMissionSpecStatusFilter<$PrismaModel>
|
|
19544
|
-
_max?: NestedEnumMissionSpecStatusFilter<$PrismaModel>
|
|
19545
|
-
}
|
|
19546
|
-
|
|
19547
|
-
export type IntWithAggregatesFilter<$PrismaModel = never> = {
|
|
19548
|
-
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
19549
|
-
in?: number[] | ListIntFieldRefInput<$PrismaModel>
|
|
19550
|
-
notIn?: number[] | ListIntFieldRefInput<$PrismaModel>
|
|
19551
|
-
lt?: number | IntFieldRefInput<$PrismaModel>
|
|
19552
|
-
lte?: number | IntFieldRefInput<$PrismaModel>
|
|
19553
|
-
gt?: number | IntFieldRefInput<$PrismaModel>
|
|
19554
|
-
gte?: number | IntFieldRefInput<$PrismaModel>
|
|
19555
|
-
not?: NestedIntWithAggregatesFilter<$PrismaModel> | number
|
|
19556
|
-
_count?: NestedIntFilter<$PrismaModel>
|
|
19557
|
-
_avg?: NestedFloatFilter<$PrismaModel>
|
|
19558
|
-
_sum?: NestedIntFilter<$PrismaModel>
|
|
19559
|
-
_min?: NestedIntFilter<$PrismaModel>
|
|
19560
|
-
_max?: NestedIntFilter<$PrismaModel>
|
|
19561
|
-
}
|
|
19562
|
-
export type JsonNullableFilter<$PrismaModel = never> =
|
|
19563
|
-
| PatchUndefined<
|
|
19564
|
-
Either<Required<JsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>,
|
|
19565
|
-
Required<JsonNullableFilterBase<$PrismaModel>>
|
|
19566
|
-
>
|
|
19567
|
-
| OptionalFlat<Omit<Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>
|
|
19568
|
-
|
|
19569
|
-
export type JsonNullableFilterBase<$PrismaModel = never> = {
|
|
19570
|
-
equals?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
19571
|
-
not?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
19572
|
-
isSet?: boolean
|
|
19573
|
-
}
|
|
19574
|
-
|
|
19575
|
-
export type UserRelationFilter = {
|
|
19576
|
-
is?: UserWhereInput
|
|
19577
|
-
isNot?: UserWhereInput
|
|
19578
|
-
}
|
|
19579
|
-
|
|
19580
|
-
export type MissionSpecPreFillCountOrderByAggregateInput = {
|
|
19581
|
-
id?: SortOrder
|
|
19582
|
-
userId?: SortOrder
|
|
19583
|
-
missionName?: SortOrder
|
|
19584
|
-
plannedStart?: SortOrder
|
|
19585
|
-
companyDescription?: SortOrder
|
|
19586
|
-
missionDescription?: SortOrder
|
|
19587
|
-
timezone?: SortOrder
|
|
19588
|
-
openRoles?: SortOrder
|
|
19589
|
-
status?: SortOrder
|
|
19590
|
-
createdAt?: SortOrder
|
|
19591
|
-
updatedAt?: SortOrder
|
|
19592
|
-
}
|
|
19593
|
-
|
|
19594
|
-
export type MissionSpecPreFillMaxOrderByAggregateInput = {
|
|
19595
|
-
id?: SortOrder
|
|
19596
|
-
userId?: SortOrder
|
|
19597
|
-
missionName?: SortOrder
|
|
19598
|
-
plannedStart?: SortOrder
|
|
19599
|
-
companyDescription?: SortOrder
|
|
19600
|
-
missionDescription?: SortOrder
|
|
19601
|
-
timezone?: SortOrder
|
|
19593
|
+
logo?: SortOrder
|
|
19594
|
+
platformId?: SortOrder
|
|
19595
|
+
startDate?: SortOrder
|
|
19602
19596
|
status?: SortOrder
|
|
19603
|
-
|
|
19597
|
+
title?: SortOrder
|
|
19604
19598
|
updatedAt?: SortOrder
|
|
19599
|
+
v?: SortOrder
|
|
19600
|
+
videoURL?: SortOrder
|
|
19601
|
+
workingHoursNumberOfMinutesOverlap?: SortOrder
|
|
19605
19602
|
}
|
|
19606
19603
|
|
|
19607
|
-
export type
|
|
19608
|
-
|
|
19609
|
-
|
|
19610
|
-
missionName?: SortOrder
|
|
19611
|
-
plannedStart?: SortOrder
|
|
19612
|
-
companyDescription?: SortOrder
|
|
19613
|
-
missionDescription?: SortOrder
|
|
19614
|
-
timezone?: SortOrder
|
|
19615
|
-
status?: SortOrder
|
|
19616
|
-
createdAt?: SortOrder
|
|
19617
|
-
updatedAt?: SortOrder
|
|
19604
|
+
export type MissionSpecSumOrderByAggregateInput = {
|
|
19605
|
+
v?: SortOrder
|
|
19606
|
+
workingHoursNumberOfMinutesOverlap?: SortOrder
|
|
19618
19607
|
}
|
|
19619
|
-
export type JsonNullableWithAggregatesFilter<$PrismaModel = never> =
|
|
19620
|
-
| PatchUndefined<
|
|
19621
|
-
Either<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>,
|
|
19622
|
-
Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>
|
|
19623
|
-
>
|
|
19624
|
-
| OptionalFlat<Omit<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>
|
|
19625
19608
|
|
|
19626
|
-
export type
|
|
19627
|
-
equals?:
|
|
19628
|
-
|
|
19629
|
-
|
|
19630
|
-
|
|
19631
|
-
|
|
19632
|
-
|
|
19609
|
+
export type EnumMissionSpecStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
19610
|
+
equals?: $Enums.MissionSpecStatus | EnumMissionSpecStatusFieldRefInput<$PrismaModel>
|
|
19611
|
+
in?: $Enums.MissionSpecStatus[] | ListEnumMissionSpecStatusFieldRefInput<$PrismaModel>
|
|
19612
|
+
notIn?: $Enums.MissionSpecStatus[] | ListEnumMissionSpecStatusFieldRefInput<$PrismaModel>
|
|
19613
|
+
not?: NestedEnumMissionSpecStatusWithAggregatesFilter<$PrismaModel> | $Enums.MissionSpecStatus
|
|
19614
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
19615
|
+
_min?: NestedEnumMissionSpecStatusFilter<$PrismaModel>
|
|
19616
|
+
_max?: NestedEnumMissionSpecStatusFilter<$PrismaModel>
|
|
19617
|
+
}
|
|
19618
|
+
|
|
19619
|
+
export type IntWithAggregatesFilter<$PrismaModel = never> = {
|
|
19620
|
+
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
19621
|
+
in?: number[] | ListIntFieldRefInput<$PrismaModel>
|
|
19622
|
+
notIn?: number[] | ListIntFieldRefInput<$PrismaModel>
|
|
19623
|
+
lt?: number | IntFieldRefInput<$PrismaModel>
|
|
19624
|
+
lte?: number | IntFieldRefInput<$PrismaModel>
|
|
19625
|
+
gt?: number | IntFieldRefInput<$PrismaModel>
|
|
19626
|
+
gte?: number | IntFieldRefInput<$PrismaModel>
|
|
19627
|
+
not?: NestedIntWithAggregatesFilter<$PrismaModel> | number
|
|
19628
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
19629
|
+
_avg?: NestedFloatFilter<$PrismaModel>
|
|
19630
|
+
_sum?: NestedIntFilter<$PrismaModel>
|
|
19631
|
+
_min?: NestedIntFilter<$PrismaModel>
|
|
19632
|
+
_max?: NestedIntFilter<$PrismaModel>
|
|
19633
19633
|
}
|
|
19634
19634
|
|
|
19635
19635
|
export type RoleCategoryCountOrderByAggregateInput = {
|
|
@@ -19713,13 +19713,13 @@ export namespace Prisma {
|
|
|
19713
19713
|
not?: NestedBoolFilter<$PrismaModel> | boolean
|
|
19714
19714
|
}
|
|
19715
19715
|
|
|
19716
|
-
export type
|
|
19717
|
-
every?:
|
|
19718
|
-
some?:
|
|
19719
|
-
none?:
|
|
19716
|
+
export type MissionPreFillListRelationFilter = {
|
|
19717
|
+
every?: MissionPreFillWhereInput
|
|
19718
|
+
some?: MissionPreFillWhereInput
|
|
19719
|
+
none?: MissionPreFillWhereInput
|
|
19720
19720
|
}
|
|
19721
19721
|
|
|
19722
|
-
export type
|
|
19722
|
+
export type MissionPreFillOrderByRelationAggregateInput = {
|
|
19723
19723
|
_count?: SortOrder
|
|
19724
19724
|
}
|
|
19725
19725
|
|
|
@@ -20453,6 +20453,20 @@ export namespace Prisma {
|
|
|
20453
20453
|
deleteMany?: ContractScalarWhereInput | ContractScalarWhereInput[]
|
|
20454
20454
|
}
|
|
20455
20455
|
|
|
20456
|
+
export type UserCreateNestedOneWithoutMissionPreFillsInput = {
|
|
20457
|
+
create?: XOR<UserCreateWithoutMissionPreFillsInput, UserUncheckedCreateWithoutMissionPreFillsInput>
|
|
20458
|
+
connectOrCreate?: UserCreateOrConnectWithoutMissionPreFillsInput
|
|
20459
|
+
connect?: UserWhereUniqueInput
|
|
20460
|
+
}
|
|
20461
|
+
|
|
20462
|
+
export type UserUpdateOneRequiredWithoutMissionPreFillsNestedInput = {
|
|
20463
|
+
create?: XOR<UserCreateWithoutMissionPreFillsInput, UserUncheckedCreateWithoutMissionPreFillsInput>
|
|
20464
|
+
connectOrCreate?: UserCreateOrConnectWithoutMissionPreFillsInput
|
|
20465
|
+
upsert?: UserUpsertWithoutMissionPreFillsInput
|
|
20466
|
+
connect?: UserWhereUniqueInput
|
|
20467
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutMissionPreFillsInput, UserUpdateWithoutMissionPreFillsInput>, UserUncheckedUpdateWithoutMissionPreFillsInput>
|
|
20468
|
+
}
|
|
20469
|
+
|
|
20456
20470
|
export type AttachedLinkListCreateEnvelopeInput = {
|
|
20457
20471
|
set?: AttachedLinkCreateInput | AttachedLinkCreateInput[]
|
|
20458
20472
|
}
|
|
@@ -20673,20 +20687,6 @@ export namespace Prisma {
|
|
|
20673
20687
|
update?: XOR<XOR<MissionUpdateToOneWithWhereWithoutMissionSpecInput, MissionUpdateWithoutMissionSpecInput>, MissionUncheckedUpdateWithoutMissionSpecInput>
|
|
20674
20688
|
}
|
|
20675
20689
|
|
|
20676
|
-
export type UserCreateNestedOneWithoutMissionSpecPreFillsInput = {
|
|
20677
|
-
create?: XOR<UserCreateWithoutMissionSpecPreFillsInput, UserUncheckedCreateWithoutMissionSpecPreFillsInput>
|
|
20678
|
-
connectOrCreate?: UserCreateOrConnectWithoutMissionSpecPreFillsInput
|
|
20679
|
-
connect?: UserWhereUniqueInput
|
|
20680
|
-
}
|
|
20681
|
-
|
|
20682
|
-
export type UserUpdateOneRequiredWithoutMissionSpecPreFillsNestedInput = {
|
|
20683
|
-
create?: XOR<UserCreateWithoutMissionSpecPreFillsInput, UserUncheckedCreateWithoutMissionSpecPreFillsInput>
|
|
20684
|
-
connectOrCreate?: UserCreateOrConnectWithoutMissionSpecPreFillsInput
|
|
20685
|
-
upsert?: UserUpsertWithoutMissionSpecPreFillsInput
|
|
20686
|
-
connect?: UserWhereUniqueInput
|
|
20687
|
-
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutMissionSpecPreFillsInput, UserUpdateWithoutMissionSpecPreFillsInput>, UserUncheckedUpdateWithoutMissionSpecPreFillsInput>
|
|
20688
|
-
}
|
|
20689
|
-
|
|
20690
20690
|
export type RoleCategoryCreateanchorsInput = {
|
|
20691
20691
|
set: string[]
|
|
20692
20692
|
}
|
|
@@ -20755,11 +20755,11 @@ export namespace Prisma {
|
|
|
20755
20755
|
connect?: MissionSpecWhereUniqueInput | MissionSpecWhereUniqueInput[]
|
|
20756
20756
|
}
|
|
20757
20757
|
|
|
20758
|
-
export type
|
|
20759
|
-
create?: XOR<
|
|
20760
|
-
connectOrCreate?:
|
|
20761
|
-
createMany?:
|
|
20762
|
-
connect?:
|
|
20758
|
+
export type MissionPreFillCreateNestedManyWithoutUserInput = {
|
|
20759
|
+
create?: XOR<MissionPreFillCreateWithoutUserInput, MissionPreFillUncheckedCreateWithoutUserInput> | MissionPreFillCreateWithoutUserInput[] | MissionPreFillUncheckedCreateWithoutUserInput[]
|
|
20760
|
+
connectOrCreate?: MissionPreFillCreateOrConnectWithoutUserInput | MissionPreFillCreateOrConnectWithoutUserInput[]
|
|
20761
|
+
createMany?: MissionPreFillCreateManyUserInputEnvelope
|
|
20762
|
+
connect?: MissionPreFillWhereUniqueInput | MissionPreFillWhereUniqueInput[]
|
|
20763
20763
|
}
|
|
20764
20764
|
|
|
20765
20765
|
export type MissionUncheckedCreateNestedManyWithoutCreatorModelInput = {
|
|
@@ -20790,11 +20790,11 @@ export namespace Prisma {
|
|
|
20790
20790
|
connect?: MissionSpecWhereUniqueInput | MissionSpecWhereUniqueInput[]
|
|
20791
20791
|
}
|
|
20792
20792
|
|
|
20793
|
-
export type
|
|
20794
|
-
create?: XOR<
|
|
20795
|
-
connectOrCreate?:
|
|
20796
|
-
createMany?:
|
|
20797
|
-
connect?:
|
|
20793
|
+
export type MissionPreFillUncheckedCreateNestedManyWithoutUserInput = {
|
|
20794
|
+
create?: XOR<MissionPreFillCreateWithoutUserInput, MissionPreFillUncheckedCreateWithoutUserInput> | MissionPreFillCreateWithoutUserInput[] | MissionPreFillUncheckedCreateWithoutUserInput[]
|
|
20795
|
+
connectOrCreate?: MissionPreFillCreateOrConnectWithoutUserInput | MissionPreFillCreateOrConnectWithoutUserInput[]
|
|
20796
|
+
createMany?: MissionPreFillCreateManyUserInputEnvelope
|
|
20797
|
+
connect?: MissionPreFillWhereUniqueInput | MissionPreFillWhereUniqueInput[]
|
|
20798
20798
|
}
|
|
20799
20799
|
|
|
20800
20800
|
export type BoolFieldUpdateOperationsInput = {
|
|
@@ -20862,18 +20862,18 @@ export namespace Prisma {
|
|
|
20862
20862
|
deleteMany?: MissionSpecScalarWhereInput | MissionSpecScalarWhereInput[]
|
|
20863
20863
|
}
|
|
20864
20864
|
|
|
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?:
|
|
20865
|
+
export type MissionPreFillUpdateManyWithoutUserNestedInput = {
|
|
20866
|
+
create?: XOR<MissionPreFillCreateWithoutUserInput, MissionPreFillUncheckedCreateWithoutUserInput> | MissionPreFillCreateWithoutUserInput[] | MissionPreFillUncheckedCreateWithoutUserInput[]
|
|
20867
|
+
connectOrCreate?: MissionPreFillCreateOrConnectWithoutUserInput | MissionPreFillCreateOrConnectWithoutUserInput[]
|
|
20868
|
+
upsert?: MissionPreFillUpsertWithWhereUniqueWithoutUserInput | MissionPreFillUpsertWithWhereUniqueWithoutUserInput[]
|
|
20869
|
+
createMany?: MissionPreFillCreateManyUserInputEnvelope
|
|
20870
|
+
set?: MissionPreFillWhereUniqueInput | MissionPreFillWhereUniqueInput[]
|
|
20871
|
+
disconnect?: MissionPreFillWhereUniqueInput | MissionPreFillWhereUniqueInput[]
|
|
20872
|
+
delete?: MissionPreFillWhereUniqueInput | MissionPreFillWhereUniqueInput[]
|
|
20873
|
+
connect?: MissionPreFillWhereUniqueInput | MissionPreFillWhereUniqueInput[]
|
|
20874
|
+
update?: MissionPreFillUpdateWithWhereUniqueWithoutUserInput | MissionPreFillUpdateWithWhereUniqueWithoutUserInput[]
|
|
20875
|
+
updateMany?: MissionPreFillUpdateManyWithWhereWithoutUserInput | MissionPreFillUpdateManyWithWhereWithoutUserInput[]
|
|
20876
|
+
deleteMany?: MissionPreFillScalarWhereInput | MissionPreFillScalarWhereInput[]
|
|
20877
20877
|
}
|
|
20878
20878
|
|
|
20879
20879
|
export type MissionUncheckedUpdateManyWithoutCreatorModelNestedInput = {
|
|
@@ -20932,18 +20932,18 @@ export namespace Prisma {
|
|
|
20932
20932
|
deleteMany?: MissionSpecScalarWhereInput | MissionSpecScalarWhereInput[]
|
|
20933
20933
|
}
|
|
20934
20934
|
|
|
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?:
|
|
20935
|
+
export type MissionPreFillUncheckedUpdateManyWithoutUserNestedInput = {
|
|
20936
|
+
create?: XOR<MissionPreFillCreateWithoutUserInput, MissionPreFillUncheckedCreateWithoutUserInput> | MissionPreFillCreateWithoutUserInput[] | MissionPreFillUncheckedCreateWithoutUserInput[]
|
|
20937
|
+
connectOrCreate?: MissionPreFillCreateOrConnectWithoutUserInput | MissionPreFillCreateOrConnectWithoutUserInput[]
|
|
20938
|
+
upsert?: MissionPreFillUpsertWithWhereUniqueWithoutUserInput | MissionPreFillUpsertWithWhereUniqueWithoutUserInput[]
|
|
20939
|
+
createMany?: MissionPreFillCreateManyUserInputEnvelope
|
|
20940
|
+
set?: MissionPreFillWhereUniqueInput | MissionPreFillWhereUniqueInput[]
|
|
20941
|
+
disconnect?: MissionPreFillWhereUniqueInput | MissionPreFillWhereUniqueInput[]
|
|
20942
|
+
delete?: MissionPreFillWhereUniqueInput | MissionPreFillWhereUniqueInput[]
|
|
20943
|
+
connect?: MissionPreFillWhereUniqueInput | MissionPreFillWhereUniqueInput[]
|
|
20944
|
+
update?: MissionPreFillUpdateWithWhereUniqueWithoutUserInput | MissionPreFillUpdateWithWhereUniqueWithoutUserInput[]
|
|
20945
|
+
updateMany?: MissionPreFillUpdateManyWithWhereWithoutUserInput | MissionPreFillUpdateManyWithWhereWithoutUserInput[]
|
|
20946
|
+
deleteMany?: MissionPreFillScalarWhereInput | MissionPreFillScalarWhereInput[]
|
|
20947
20947
|
}
|
|
20948
20948
|
|
|
20949
20949
|
export type NestedStringFilter<$PrismaModel = never> = {
|
|
@@ -21418,6 +21418,18 @@ export namespace Prisma {
|
|
|
21418
21418
|
_min?: NestedEnumMissionStatusFilter<$PrismaModel>
|
|
21419
21419
|
_max?: NestedEnumMissionStatusFilter<$PrismaModel>
|
|
21420
21420
|
}
|
|
21421
|
+
export type NestedJsonNullableFilter<$PrismaModel = never> =
|
|
21422
|
+
| PatchUndefined<
|
|
21423
|
+
Either<Required<NestedJsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>,
|
|
21424
|
+
Required<NestedJsonNullableFilterBase<$PrismaModel>>
|
|
21425
|
+
>
|
|
21426
|
+
| OptionalFlat<Omit<Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>
|
|
21427
|
+
|
|
21428
|
+
export type NestedJsonNullableFilterBase<$PrismaModel = never> = {
|
|
21429
|
+
equals?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
21430
|
+
not?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
21431
|
+
isSet?: boolean
|
|
21432
|
+
}
|
|
21421
21433
|
|
|
21422
21434
|
export type AttachedLinkWhereInput = {
|
|
21423
21435
|
AND?: AttachedLinkWhereInput | AttachedLinkWhereInput[]
|
|
@@ -21546,18 +21558,6 @@ export namespace Prisma {
|
|
|
21546
21558
|
gte?: number | FloatFieldRefInput<$PrismaModel>
|
|
21547
21559
|
not?: NestedFloatFilter<$PrismaModel> | number
|
|
21548
21560
|
}
|
|
21549
|
-
export type NestedJsonNullableFilter<$PrismaModel = never> =
|
|
21550
|
-
| PatchUndefined<
|
|
21551
|
-
Either<Required<NestedJsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>,
|
|
21552
|
-
Required<NestedJsonNullableFilterBase<$PrismaModel>>
|
|
21553
|
-
>
|
|
21554
|
-
| OptionalFlat<Omit<Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>
|
|
21555
|
-
|
|
21556
|
-
export type NestedJsonNullableFilterBase<$PrismaModel = never> = {
|
|
21557
|
-
equals?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
21558
|
-
not?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
21559
|
-
isSet?: boolean
|
|
21560
|
-
}
|
|
21561
21561
|
|
|
21562
21562
|
export type NestedBoolFilter<$PrismaModel = never> = {
|
|
21563
21563
|
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
@@ -22534,7 +22534,7 @@ export namespace Prisma {
|
|
|
22534
22534
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
22535
22535
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
22536
22536
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
22537
|
-
|
|
22537
|
+
missionPreFills?: MissionPreFillCreateNestedManyWithoutUserInput
|
|
22538
22538
|
}
|
|
22539
22539
|
|
|
22540
22540
|
export type UserUncheckedCreateWithoutCreatedMissionsModelsInput = {
|
|
@@ -22553,7 +22553,7 @@ export namespace Prisma {
|
|
|
22553
22553
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
22554
22554
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
22555
22555
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
22556
|
-
|
|
22556
|
+
missionPreFills?: MissionPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
22557
22557
|
}
|
|
22558
22558
|
|
|
22559
22559
|
export type UserCreateOrConnectWithoutCreatedMissionsModelsInput = {
|
|
@@ -22640,7 +22640,7 @@ export namespace Prisma {
|
|
|
22640
22640
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
22641
22641
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
22642
22642
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
22643
|
-
|
|
22643
|
+
missionPreFills?: MissionPreFillCreateNestedManyWithoutUserInput
|
|
22644
22644
|
}
|
|
22645
22645
|
|
|
22646
22646
|
export type UserUncheckedCreateWithoutOwnedMissionsModelsInput = {
|
|
@@ -22659,7 +22659,7 @@ export namespace Prisma {
|
|
|
22659
22659
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
22660
22660
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
22661
22661
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
22662
|
-
|
|
22662
|
+
missionPreFills?: MissionPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
22663
22663
|
}
|
|
22664
22664
|
|
|
22665
22665
|
export type UserCreateOrConnectWithoutOwnedMissionsModelsInput = {
|
|
@@ -22811,7 +22811,7 @@ export namespace Prisma {
|
|
|
22811
22811
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
22812
22812
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
22813
22813
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
22814
|
-
|
|
22814
|
+
missionPreFills?: MissionPreFillUpdateManyWithoutUserNestedInput
|
|
22815
22815
|
}
|
|
22816
22816
|
|
|
22817
22817
|
export type UserUncheckedUpdateWithoutCreatedMissionsModelsInput = {
|
|
@@ -22829,7 +22829,7 @@ export namespace Prisma {
|
|
|
22829
22829
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
22830
22830
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
22831
22831
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
22832
|
-
|
|
22832
|
+
missionPreFills?: MissionPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
22833
22833
|
}
|
|
22834
22834
|
|
|
22835
22835
|
export type MissionSpecUpsertWithoutMissionInput = {
|
|
@@ -22925,7 +22925,7 @@ export namespace Prisma {
|
|
|
22925
22925
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
22926
22926
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
22927
22927
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
22928
|
-
|
|
22928
|
+
missionPreFills?: MissionPreFillUpdateManyWithoutUserNestedInput
|
|
22929
22929
|
}
|
|
22930
22930
|
|
|
22931
22931
|
export type UserUncheckedUpdateWithoutOwnedMissionsModelsInput = {
|
|
@@ -22943,7 +22943,7 @@ export namespace Prisma {
|
|
|
22943
22943
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
22944
22944
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
22945
22945
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
22946
|
-
|
|
22946
|
+
missionPreFills?: MissionPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
22947
22947
|
}
|
|
22948
22948
|
|
|
22949
22949
|
export type ContractUpsertWithWhereUniqueWithoutMissionInput = {
|
|
@@ -22979,6 +22979,96 @@ export namespace Prisma {
|
|
|
22979
22979
|
documentTitle?: StringNullableFilter<"Contract"> | string | null
|
|
22980
22980
|
}
|
|
22981
22981
|
|
|
22982
|
+
export type UserCreateWithoutMissionPreFillsInput = {
|
|
22983
|
+
id?: string
|
|
22984
|
+
firstName?: string | null
|
|
22985
|
+
lastName?: string | null
|
|
22986
|
+
username?: string | null
|
|
22987
|
+
email?: string | null
|
|
22988
|
+
isAdmin?: boolean
|
|
22989
|
+
type: string
|
|
22990
|
+
pictureURL?: string | null
|
|
22991
|
+
status: string
|
|
22992
|
+
createdAt: Date | string
|
|
22993
|
+
titles?: UserCreatetitlesInput | string[]
|
|
22994
|
+
scrubbed?: string | null
|
|
22995
|
+
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
22996
|
+
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
22997
|
+
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
22998
|
+
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
22999
|
+
}
|
|
23000
|
+
|
|
23001
|
+
export type UserUncheckedCreateWithoutMissionPreFillsInput = {
|
|
23002
|
+
id?: string
|
|
23003
|
+
firstName?: string | null
|
|
23004
|
+
lastName?: string | null
|
|
23005
|
+
username?: string | null
|
|
23006
|
+
email?: string | null
|
|
23007
|
+
isAdmin?: boolean
|
|
23008
|
+
type: string
|
|
23009
|
+
pictureURL?: string | null
|
|
23010
|
+
status: string
|
|
23011
|
+
createdAt: Date | string
|
|
23012
|
+
titles?: UserCreatetitlesInput | string[]
|
|
23013
|
+
scrubbed?: string | null
|
|
23014
|
+
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
23015
|
+
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
23016
|
+
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
23017
|
+
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
23018
|
+
}
|
|
23019
|
+
|
|
23020
|
+
export type UserCreateOrConnectWithoutMissionPreFillsInput = {
|
|
23021
|
+
where: UserWhereUniqueInput
|
|
23022
|
+
create: XOR<UserCreateWithoutMissionPreFillsInput, UserUncheckedCreateWithoutMissionPreFillsInput>
|
|
23023
|
+
}
|
|
23024
|
+
|
|
23025
|
+
export type UserUpsertWithoutMissionPreFillsInput = {
|
|
23026
|
+
update: XOR<UserUpdateWithoutMissionPreFillsInput, UserUncheckedUpdateWithoutMissionPreFillsInput>
|
|
23027
|
+
create: XOR<UserCreateWithoutMissionPreFillsInput, UserUncheckedCreateWithoutMissionPreFillsInput>
|
|
23028
|
+
where?: UserWhereInput
|
|
23029
|
+
}
|
|
23030
|
+
|
|
23031
|
+
export type UserUpdateToOneWithWhereWithoutMissionPreFillsInput = {
|
|
23032
|
+
where?: UserWhereInput
|
|
23033
|
+
data: XOR<UserUpdateWithoutMissionPreFillsInput, UserUncheckedUpdateWithoutMissionPreFillsInput>
|
|
23034
|
+
}
|
|
23035
|
+
|
|
23036
|
+
export type UserUpdateWithoutMissionPreFillsInput = {
|
|
23037
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23038
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23039
|
+
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23040
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23041
|
+
isAdmin?: BoolFieldUpdateOperationsInput | boolean
|
|
23042
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
23043
|
+
pictureURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23044
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
23045
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23046
|
+
titles?: UserUpdatetitlesInput | string[]
|
|
23047
|
+
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23048
|
+
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23049
|
+
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23050
|
+
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
23051
|
+
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
23052
|
+
}
|
|
23053
|
+
|
|
23054
|
+
export type UserUncheckedUpdateWithoutMissionPreFillsInput = {
|
|
23055
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23056
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23057
|
+
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23058
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23059
|
+
isAdmin?: BoolFieldUpdateOperationsInput | boolean
|
|
23060
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
23061
|
+
pictureURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23062
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
23063
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23064
|
+
titles?: UserUpdatetitlesInput | string[]
|
|
23065
|
+
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23066
|
+
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23067
|
+
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23068
|
+
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
23069
|
+
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
23070
|
+
}
|
|
23071
|
+
|
|
22982
23072
|
export type ClientRoleQuestionCreateInput = {
|
|
22983
23073
|
id?: string | null
|
|
22984
23074
|
text: string
|
|
@@ -23058,7 +23148,7 @@ export namespace Prisma {
|
|
|
23058
23148
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
23059
23149
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
23060
23150
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
23061
|
-
|
|
23151
|
+
missionPreFills?: MissionPreFillCreateNestedManyWithoutUserInput
|
|
23062
23152
|
}
|
|
23063
23153
|
|
|
23064
23154
|
export type UserUncheckedCreateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -23077,7 +23167,7 @@ export namespace Prisma {
|
|
|
23077
23167
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
23078
23168
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
23079
23169
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
23080
|
-
|
|
23170
|
+
missionPreFills?: MissionPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
23081
23171
|
}
|
|
23082
23172
|
|
|
23083
23173
|
export type UserCreateOrConnectWithoutAuthoredMissionSpecsInput = {
|
|
@@ -23134,7 +23224,7 @@ export namespace Prisma {
|
|
|
23134
23224
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
23135
23225
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
23136
23226
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
23137
|
-
|
|
23227
|
+
missionPreFills?: MissionPreFillCreateNestedManyWithoutUserInput
|
|
23138
23228
|
}
|
|
23139
23229
|
|
|
23140
23230
|
export type UserUncheckedCreateWithoutModifiedMissionSpecsInput = {
|
|
@@ -23153,7 +23243,7 @@ export namespace Prisma {
|
|
|
23153
23243
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
23154
23244
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
23155
23245
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
23156
|
-
|
|
23246
|
+
missionPreFills?: MissionPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
23157
23247
|
}
|
|
23158
23248
|
|
|
23159
23249
|
export type UserCreateOrConnectWithoutModifiedMissionSpecsInput = {
|
|
@@ -23360,7 +23450,7 @@ export namespace Prisma {
|
|
|
23360
23450
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23361
23451
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23362
23452
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
23363
|
-
|
|
23453
|
+
missionPreFills?: MissionPreFillUpdateManyWithoutUserNestedInput
|
|
23364
23454
|
}
|
|
23365
23455
|
|
|
23366
23456
|
export type UserUncheckedUpdateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -23378,7 +23468,7 @@ export namespace Prisma {
|
|
|
23378
23468
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23379
23469
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23380
23470
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
23381
|
-
|
|
23471
|
+
missionPreFills?: MissionPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
23382
23472
|
}
|
|
23383
23473
|
|
|
23384
23474
|
export type ClientCompanyUpsertWithoutMissionSpecsInput = {
|
|
@@ -23444,7 +23534,7 @@ export namespace Prisma {
|
|
|
23444
23534
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23445
23535
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23446
23536
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
23447
|
-
|
|
23537
|
+
missionPreFills?: MissionPreFillUpdateManyWithoutUserNestedInput
|
|
23448
23538
|
}
|
|
23449
23539
|
|
|
23450
23540
|
export type UserUncheckedUpdateWithoutModifiedMissionSpecsInput = {
|
|
@@ -23462,7 +23552,7 @@ export namespace Prisma {
|
|
|
23462
23552
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23463
23553
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23464
23554
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
23465
|
-
|
|
23555
|
+
missionPreFills?: MissionPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
23466
23556
|
}
|
|
23467
23557
|
|
|
23468
23558
|
export type MissionUpsertWithoutMissionSpecInput = {
|
|
@@ -23572,96 +23662,6 @@ export namespace Prisma {
|
|
|
23572
23662
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
23573
23663
|
}
|
|
23574
23664
|
|
|
23575
|
-
export type UserCreateWithoutMissionSpecPreFillsInput = {
|
|
23576
|
-
id?: string
|
|
23577
|
-
firstName?: string | null
|
|
23578
|
-
lastName?: string | null
|
|
23579
|
-
username?: string | null
|
|
23580
|
-
email?: string | null
|
|
23581
|
-
isAdmin?: boolean
|
|
23582
|
-
type: string
|
|
23583
|
-
pictureURL?: string | null
|
|
23584
|
-
status: string
|
|
23585
|
-
createdAt: Date | string
|
|
23586
|
-
titles?: UserCreatetitlesInput | string[]
|
|
23587
|
-
scrubbed?: string | null
|
|
23588
|
-
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
23589
|
-
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
23590
|
-
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
23591
|
-
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
23592
|
-
}
|
|
23593
|
-
|
|
23594
|
-
export type UserUncheckedCreateWithoutMissionSpecPreFillsInput = {
|
|
23595
|
-
id?: string
|
|
23596
|
-
firstName?: string | null
|
|
23597
|
-
lastName?: string | null
|
|
23598
|
-
username?: string | null
|
|
23599
|
-
email?: string | null
|
|
23600
|
-
isAdmin?: boolean
|
|
23601
|
-
type: string
|
|
23602
|
-
pictureURL?: string | null
|
|
23603
|
-
status: string
|
|
23604
|
-
createdAt: Date | string
|
|
23605
|
-
titles?: UserCreatetitlesInput | string[]
|
|
23606
|
-
scrubbed?: string | null
|
|
23607
|
-
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
23608
|
-
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
23609
|
-
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
23610
|
-
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
23611
|
-
}
|
|
23612
|
-
|
|
23613
|
-
export type UserCreateOrConnectWithoutMissionSpecPreFillsInput = {
|
|
23614
|
-
where: UserWhereUniqueInput
|
|
23615
|
-
create: XOR<UserCreateWithoutMissionSpecPreFillsInput, UserUncheckedCreateWithoutMissionSpecPreFillsInput>
|
|
23616
|
-
}
|
|
23617
|
-
|
|
23618
|
-
export type UserUpsertWithoutMissionSpecPreFillsInput = {
|
|
23619
|
-
update: XOR<UserUpdateWithoutMissionSpecPreFillsInput, UserUncheckedUpdateWithoutMissionSpecPreFillsInput>
|
|
23620
|
-
create: XOR<UserCreateWithoutMissionSpecPreFillsInput, UserUncheckedCreateWithoutMissionSpecPreFillsInput>
|
|
23621
|
-
where?: UserWhereInput
|
|
23622
|
-
}
|
|
23623
|
-
|
|
23624
|
-
export type UserUpdateToOneWithWhereWithoutMissionSpecPreFillsInput = {
|
|
23625
|
-
where?: UserWhereInput
|
|
23626
|
-
data: XOR<UserUpdateWithoutMissionSpecPreFillsInput, UserUncheckedUpdateWithoutMissionSpecPreFillsInput>
|
|
23627
|
-
}
|
|
23628
|
-
|
|
23629
|
-
export type UserUpdateWithoutMissionSpecPreFillsInput = {
|
|
23630
|
-
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23631
|
-
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23632
|
-
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23633
|
-
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23634
|
-
isAdmin?: BoolFieldUpdateOperationsInput | boolean
|
|
23635
|
-
type?: StringFieldUpdateOperationsInput | string
|
|
23636
|
-
pictureURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23637
|
-
status?: StringFieldUpdateOperationsInput | string
|
|
23638
|
-
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23639
|
-
titles?: UserUpdatetitlesInput | string[]
|
|
23640
|
-
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23641
|
-
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23642
|
-
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23643
|
-
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
23644
|
-
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
23645
|
-
}
|
|
23646
|
-
|
|
23647
|
-
export type UserUncheckedUpdateWithoutMissionSpecPreFillsInput = {
|
|
23648
|
-
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23649
|
-
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23650
|
-
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23651
|
-
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23652
|
-
isAdmin?: BoolFieldUpdateOperationsInput | boolean
|
|
23653
|
-
type?: StringFieldUpdateOperationsInput | string
|
|
23654
|
-
pictureURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23655
|
-
status?: StringFieldUpdateOperationsInput | string
|
|
23656
|
-
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23657
|
-
titles?: UserUpdatetitlesInput | string[]
|
|
23658
|
-
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23659
|
-
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23660
|
-
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23661
|
-
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
23662
|
-
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
23663
|
-
}
|
|
23664
|
-
|
|
23665
23665
|
export type MissionCreateWithoutCreatorModelInput = {
|
|
23666
23666
|
mid?: string
|
|
23667
23667
|
applyStatus?: string | null
|
|
@@ -24010,7 +24010,7 @@ export namespace Prisma {
|
|
|
24010
24010
|
data: MissionSpecCreateManyLastModifierInput | MissionSpecCreateManyLastModifierInput[]
|
|
24011
24011
|
}
|
|
24012
24012
|
|
|
24013
|
-
export type
|
|
24013
|
+
export type MissionPreFillCreateWithoutUserInput = {
|
|
24014
24014
|
id?: string
|
|
24015
24015
|
missionName?: string | null
|
|
24016
24016
|
plannedStart?: string | null
|
|
@@ -24023,7 +24023,7 @@ export namespace Prisma {
|
|
|
24023
24023
|
updatedAt?: Date | string
|
|
24024
24024
|
}
|
|
24025
24025
|
|
|
24026
|
-
export type
|
|
24026
|
+
export type MissionPreFillUncheckedCreateWithoutUserInput = {
|
|
24027
24027
|
id?: string
|
|
24028
24028
|
missionName?: string | null
|
|
24029
24029
|
plannedStart?: string | null
|
|
@@ -24036,13 +24036,13 @@ export namespace Prisma {
|
|
|
24036
24036
|
updatedAt?: Date | string
|
|
24037
24037
|
}
|
|
24038
24038
|
|
|
24039
|
-
export type
|
|
24040
|
-
where:
|
|
24041
|
-
create: XOR<
|
|
24039
|
+
export type MissionPreFillCreateOrConnectWithoutUserInput = {
|
|
24040
|
+
where: MissionPreFillWhereUniqueInput
|
|
24041
|
+
create: XOR<MissionPreFillCreateWithoutUserInput, MissionPreFillUncheckedCreateWithoutUserInput>
|
|
24042
24042
|
}
|
|
24043
24043
|
|
|
24044
|
-
export type
|
|
24045
|
-
data:
|
|
24044
|
+
export type MissionPreFillCreateManyUserInputEnvelope = {
|
|
24045
|
+
data: MissionPreFillCreateManyUserInput | MissionPreFillCreateManyUserInput[]
|
|
24046
24046
|
}
|
|
24047
24047
|
|
|
24048
24048
|
export type MissionUpsertWithWhereUniqueWithoutCreatorModelInput = {
|
|
@@ -24109,37 +24109,37 @@ export namespace Prisma {
|
|
|
24109
24109
|
data: XOR<MissionSpecUpdateManyMutationInput, MissionSpecUncheckedUpdateManyWithoutLastModifierInput>
|
|
24110
24110
|
}
|
|
24111
24111
|
|
|
24112
|
-
export type
|
|
24113
|
-
where:
|
|
24114
|
-
update: XOR<
|
|
24115
|
-
create: XOR<
|
|
24112
|
+
export type MissionPreFillUpsertWithWhereUniqueWithoutUserInput = {
|
|
24113
|
+
where: MissionPreFillWhereUniqueInput
|
|
24114
|
+
update: XOR<MissionPreFillUpdateWithoutUserInput, MissionPreFillUncheckedUpdateWithoutUserInput>
|
|
24115
|
+
create: XOR<MissionPreFillCreateWithoutUserInput, MissionPreFillUncheckedCreateWithoutUserInput>
|
|
24116
24116
|
}
|
|
24117
24117
|
|
|
24118
|
-
export type
|
|
24119
|
-
where:
|
|
24120
|
-
data: XOR<
|
|
24118
|
+
export type MissionPreFillUpdateWithWhereUniqueWithoutUserInput = {
|
|
24119
|
+
where: MissionPreFillWhereUniqueInput
|
|
24120
|
+
data: XOR<MissionPreFillUpdateWithoutUserInput, MissionPreFillUncheckedUpdateWithoutUserInput>
|
|
24121
24121
|
}
|
|
24122
24122
|
|
|
24123
|
-
export type
|
|
24124
|
-
where:
|
|
24125
|
-
data: XOR<
|
|
24123
|
+
export type MissionPreFillUpdateManyWithWhereWithoutUserInput = {
|
|
24124
|
+
where: MissionPreFillScalarWhereInput
|
|
24125
|
+
data: XOR<MissionPreFillUpdateManyMutationInput, MissionPreFillUncheckedUpdateManyWithoutUserInput>
|
|
24126
24126
|
}
|
|
24127
24127
|
|
|
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<"
|
|
24128
|
+
export type MissionPreFillScalarWhereInput = {
|
|
24129
|
+
AND?: MissionPreFillScalarWhereInput | MissionPreFillScalarWhereInput[]
|
|
24130
|
+
OR?: MissionPreFillScalarWhereInput[]
|
|
24131
|
+
NOT?: MissionPreFillScalarWhereInput | MissionPreFillScalarWhereInput[]
|
|
24132
|
+
id?: StringFilter<"MissionPreFill"> | string
|
|
24133
|
+
userId?: StringFilter<"MissionPreFill"> | string
|
|
24134
|
+
missionName?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
24135
|
+
plannedStart?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
24136
|
+
companyDescription?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
24137
|
+
missionDescription?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
24138
|
+
timezone?: StringNullableFilter<"MissionPreFill"> | string | null
|
|
24139
|
+
openRoles?: JsonNullableFilter<"MissionPreFill">
|
|
24140
|
+
status?: StringFilter<"MissionPreFill"> | string
|
|
24141
|
+
createdAt?: DateTimeFilter<"MissionPreFill"> | Date | string
|
|
24142
|
+
updatedAt?: DateTimeFilter<"MissionPreFill"> | Date | string
|
|
24143
24143
|
}
|
|
24144
24144
|
|
|
24145
24145
|
export type StructuredEnrichmentNullableCompositeFilter = {
|
|
@@ -25123,7 +25123,7 @@ export namespace Prisma {
|
|
|
25123
25123
|
workingHoursNumberOfMinutesOverlap?: number | null
|
|
25124
25124
|
}
|
|
25125
25125
|
|
|
25126
|
-
export type
|
|
25126
|
+
export type MissionPreFillCreateManyUserInput = {
|
|
25127
25127
|
id?: string
|
|
25128
25128
|
missionName?: string | null
|
|
25129
25129
|
plannedStart?: string | null
|
|
@@ -25588,7 +25588,7 @@ export namespace Prisma {
|
|
|
25588
25588
|
workingHoursNumberOfMinutesOverlap?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25589
25589
|
}
|
|
25590
25590
|
|
|
25591
|
-
export type
|
|
25591
|
+
export type MissionPreFillUpdateWithoutUserInput = {
|
|
25592
25592
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25593
25593
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25594
25594
|
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -25600,7 +25600,7 @@ export namespace Prisma {
|
|
|
25600
25600
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25601
25601
|
}
|
|
25602
25602
|
|
|
25603
|
-
export type
|
|
25603
|
+
export type MissionPreFillUncheckedUpdateWithoutUserInput = {
|
|
25604
25604
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25605
25605
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25606
25606
|
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -25612,7 +25612,7 @@ export namespace Prisma {
|
|
|
25612
25612
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25613
25613
|
}
|
|
25614
25614
|
|
|
25615
|
-
export type
|
|
25615
|
+
export type MissionPreFillUncheckedUpdateManyWithoutUserInput = {
|
|
25616
25616
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25617
25617
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25618
25618
|
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -26181,13 +26181,13 @@ export namespace Prisma {
|
|
|
26181
26181
|
*/
|
|
26182
26182
|
export type MissionArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MissionDefaultArgs<ExtArgs>
|
|
26183
26183
|
/**
|
|
26184
|
-
* @deprecated Use
|
|
26184
|
+
* @deprecated Use MissionPreFillDefaultArgs instead
|
|
26185
26185
|
*/
|
|
26186
|
-
export type
|
|
26186
|
+
export type MissionPreFillArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MissionPreFillDefaultArgs<ExtArgs>
|
|
26187
26187
|
/**
|
|
26188
|
-
* @deprecated Use
|
|
26188
|
+
* @deprecated Use MissionSpecDefaultArgs instead
|
|
26189
26189
|
*/
|
|
26190
|
-
export type
|
|
26190
|
+
export type MissionSpecArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MissionSpecDefaultArgs<ExtArgs>
|
|
26191
26191
|
/**
|
|
26192
26192
|
* @deprecated Use RoleCategoryDefaultArgs instead
|
|
26193
26193
|
*/
|