@a_team/prisma 2.1.13 → 2.1.14
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 +5 -5
- package/dist/client/index-browser.js +2 -2
- package/dist/client/index.d.ts +522 -522
- package/dist/client/index.js +5 -5
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +3 -3
- package/dist/client/wasm.js +2 -2
- package/package.json +1 -1
package/dist/client/index.d.ts
CHANGED
|
@@ -174,10 +174,10 @@ 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
182
|
* Model MissionSpec
|
|
183
183
|
*
|
|
@@ -450,14 +450,14 @@ 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
463
|
* `prisma.missionSpec`: Exposes CRUD operations for the **MissionSpec** model.
|
|
@@ -990,7 +990,7 @@ export namespace Prisma {
|
|
|
990
990
|
Company: 'Company',
|
|
991
991
|
Contract: 'Contract',
|
|
992
992
|
Mission: 'Mission',
|
|
993
|
-
|
|
993
|
+
MissionPrefill: 'MissionPrefill',
|
|
994
994
|
MissionSpec: 'MissionSpec',
|
|
995
995
|
RoleCategory: 'RoleCategory',
|
|
996
996
|
TalentCategory: 'TalentCategory',
|
|
@@ -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,77 +1385,77 @@ 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
|
}
|
|
@@ -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,16 +9601,16 @@ export namespace Prisma {
|
|
|
9601
9601
|
|
|
9602
9602
|
|
|
9603
9603
|
/**
|
|
9604
|
-
* Model
|
|
9604
|
+
* Model MissionPrefill
|
|
9605
9605
|
*/
|
|
9606
9606
|
|
|
9607
|
-
export type
|
|
9608
|
-
_count:
|
|
9609
|
-
_min:
|
|
9610
|
-
_max:
|
|
9607
|
+
export type AggregateMissionPrefill = {
|
|
9608
|
+
_count: MissionPrefillCountAggregateOutputType | null
|
|
9609
|
+
_min: MissionPrefillMinAggregateOutputType | null
|
|
9610
|
+
_max: MissionPrefillMaxAggregateOutputType | null
|
|
9611
9611
|
}
|
|
9612
9612
|
|
|
9613
|
-
export type
|
|
9613
|
+
export type MissionPrefillMinAggregateOutputType = {
|
|
9614
9614
|
id: string | null
|
|
9615
9615
|
userId: string | null
|
|
9616
9616
|
missionName: string | null
|
|
@@ -9623,7 +9623,7 @@ export namespace Prisma {
|
|
|
9623
9623
|
updatedAt: Date | null
|
|
9624
9624
|
}
|
|
9625
9625
|
|
|
9626
|
-
export type
|
|
9626
|
+
export type MissionPrefillMaxAggregateOutputType = {
|
|
9627
9627
|
id: string | null
|
|
9628
9628
|
userId: string | null
|
|
9629
9629
|
missionName: string | null
|
|
@@ -9636,7 +9636,7 @@ export namespace Prisma {
|
|
|
9636
9636
|
updatedAt: Date | null
|
|
9637
9637
|
}
|
|
9638
9638
|
|
|
9639
|
-
export type
|
|
9639
|
+
export type MissionPrefillCountAggregateOutputType = {
|
|
9640
9640
|
id: number
|
|
9641
9641
|
userId: number
|
|
9642
9642
|
missionName: number
|
|
@@ -9652,7 +9652,7 @@ export namespace Prisma {
|
|
|
9652
9652
|
}
|
|
9653
9653
|
|
|
9654
9654
|
|
|
9655
|
-
export type
|
|
9655
|
+
export type MissionPrefillMinAggregateInputType = {
|
|
9656
9656
|
id?: true
|
|
9657
9657
|
userId?: true
|
|
9658
9658
|
missionName?: true
|
|
@@ -9665,7 +9665,7 @@ export namespace Prisma {
|
|
|
9665
9665
|
updatedAt?: true
|
|
9666
9666
|
}
|
|
9667
9667
|
|
|
9668
|
-
export type
|
|
9668
|
+
export type MissionPrefillMaxAggregateInputType = {
|
|
9669
9669
|
id?: true
|
|
9670
9670
|
userId?: true
|
|
9671
9671
|
missionName?: true
|
|
@@ -9678,7 +9678,7 @@ export namespace Prisma {
|
|
|
9678
9678
|
updatedAt?: true
|
|
9679
9679
|
}
|
|
9680
9680
|
|
|
9681
|
-
export type
|
|
9681
|
+
export type MissionPrefillCountAggregateInputType = {
|
|
9682
9682
|
id?: true
|
|
9683
9683
|
userId?: true
|
|
9684
9684
|
missionName?: true
|
|
@@ -9693,79 +9693,79 @@ export namespace Prisma {
|
|
|
9693
9693
|
_all?: true
|
|
9694
9694
|
}
|
|
9695
9695
|
|
|
9696
|
-
export type
|
|
9696
|
+
export type MissionPrefillAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9697
9697
|
/**
|
|
9698
|
-
* Filter which
|
|
9698
|
+
* Filter which MissionPrefill to aggregate.
|
|
9699
9699
|
*/
|
|
9700
|
-
where?:
|
|
9700
|
+
where?: MissionPrefillWhereInput
|
|
9701
9701
|
/**
|
|
9702
9702
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
9703
9703
|
*
|
|
9704
|
-
* Determine the order of
|
|
9704
|
+
* Determine the order of MissionPrefills to fetch.
|
|
9705
9705
|
*/
|
|
9706
|
-
orderBy?:
|
|
9706
|
+
orderBy?: MissionPrefillOrderByWithRelationInput | MissionPrefillOrderByWithRelationInput[]
|
|
9707
9707
|
/**
|
|
9708
9708
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
9709
9709
|
*
|
|
9710
9710
|
* Sets the start position
|
|
9711
9711
|
*/
|
|
9712
|
-
cursor?:
|
|
9712
|
+
cursor?: MissionPrefillWhereUniqueInput
|
|
9713
9713
|
/**
|
|
9714
9714
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
9715
9715
|
*
|
|
9716
|
-
* Take `±n`
|
|
9716
|
+
* Take `±n` MissionPrefills from the position of the cursor.
|
|
9717
9717
|
*/
|
|
9718
9718
|
take?: number
|
|
9719
9719
|
/**
|
|
9720
9720
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
9721
9721
|
*
|
|
9722
|
-
* Skip the first `n`
|
|
9722
|
+
* Skip the first `n` MissionPrefills.
|
|
9723
9723
|
*/
|
|
9724
9724
|
skip?: number
|
|
9725
9725
|
/**
|
|
9726
9726
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
9727
9727
|
*
|
|
9728
|
-
* Count returned
|
|
9728
|
+
* Count returned MissionPrefills
|
|
9729
9729
|
**/
|
|
9730
|
-
_count?: true |
|
|
9730
|
+
_count?: true | MissionPrefillCountAggregateInputType
|
|
9731
9731
|
/**
|
|
9732
9732
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
9733
9733
|
*
|
|
9734
9734
|
* Select which fields to find the minimum value
|
|
9735
9735
|
**/
|
|
9736
|
-
_min?:
|
|
9736
|
+
_min?: MissionPrefillMinAggregateInputType
|
|
9737
9737
|
/**
|
|
9738
9738
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
9739
9739
|
*
|
|
9740
9740
|
* Select which fields to find the maximum value
|
|
9741
9741
|
**/
|
|
9742
|
-
_max?:
|
|
9742
|
+
_max?: MissionPrefillMaxAggregateInputType
|
|
9743
9743
|
}
|
|
9744
9744
|
|
|
9745
|
-
export type
|
|
9746
|
-
[P in keyof T & keyof
|
|
9745
|
+
export type GetMissionPrefillAggregateType<T extends MissionPrefillAggregateArgs> = {
|
|
9746
|
+
[P in keyof T & keyof AggregateMissionPrefill]: P extends '_count' | 'count'
|
|
9747
9747
|
? T[P] extends true
|
|
9748
9748
|
? number
|
|
9749
|
-
: GetScalarType<T[P],
|
|
9750
|
-
: GetScalarType<T[P],
|
|
9749
|
+
: GetScalarType<T[P], AggregateMissionPrefill[P]>
|
|
9750
|
+
: GetScalarType<T[P], AggregateMissionPrefill[P]>
|
|
9751
9751
|
}
|
|
9752
9752
|
|
|
9753
9753
|
|
|
9754
9754
|
|
|
9755
9755
|
|
|
9756
|
-
export type
|
|
9757
|
-
where?:
|
|
9758
|
-
orderBy?:
|
|
9759
|
-
by:
|
|
9760
|
-
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
|
|
9761
9761
|
take?: number
|
|
9762
9762
|
skip?: number
|
|
9763
|
-
_count?:
|
|
9764
|
-
_min?:
|
|
9765
|
-
_max?:
|
|
9763
|
+
_count?: MissionPrefillCountAggregateInputType | true
|
|
9764
|
+
_min?: MissionPrefillMinAggregateInputType
|
|
9765
|
+
_max?: MissionPrefillMaxAggregateInputType
|
|
9766
9766
|
}
|
|
9767
9767
|
|
|
9768
|
-
export type
|
|
9768
|
+
export type MissionPrefillGroupByOutputType = {
|
|
9769
9769
|
id: string
|
|
9770
9770
|
userId: string
|
|
9771
9771
|
missionName: string | null
|
|
@@ -9777,26 +9777,26 @@ export namespace Prisma {
|
|
|
9777
9777
|
status: string
|
|
9778
9778
|
createdAt: Date
|
|
9779
9779
|
updatedAt: Date
|
|
9780
|
-
_count:
|
|
9781
|
-
_min:
|
|
9782
|
-
_max:
|
|
9780
|
+
_count: MissionPrefillCountAggregateOutputType | null
|
|
9781
|
+
_min: MissionPrefillMinAggregateOutputType | null
|
|
9782
|
+
_max: MissionPrefillMaxAggregateOutputType | null
|
|
9783
9783
|
}
|
|
9784
9784
|
|
|
9785
|
-
type
|
|
9785
|
+
type GetMissionPrefillGroupByPayload<T extends MissionPrefillGroupByArgs> = Prisma.PrismaPromise<
|
|
9786
9786
|
Array<
|
|
9787
|
-
PickEnumerable<
|
|
9787
|
+
PickEnumerable<MissionPrefillGroupByOutputType, T['by']> &
|
|
9788
9788
|
{
|
|
9789
|
-
[P in ((keyof T) & (keyof
|
|
9789
|
+
[P in ((keyof T) & (keyof MissionPrefillGroupByOutputType))]: P extends '_count'
|
|
9790
9790
|
? T[P] extends boolean
|
|
9791
9791
|
? number
|
|
9792
|
-
: GetScalarType<T[P],
|
|
9793
|
-
: GetScalarType<T[P],
|
|
9792
|
+
: GetScalarType<T[P], MissionPrefillGroupByOutputType[P]>
|
|
9793
|
+
: GetScalarType<T[P], MissionPrefillGroupByOutputType[P]>
|
|
9794
9794
|
}
|
|
9795
9795
|
>
|
|
9796
9796
|
>
|
|
9797
9797
|
|
|
9798
9798
|
|
|
9799
|
-
export type
|
|
9799
|
+
export type MissionPrefillSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9800
9800
|
id?: boolean
|
|
9801
9801
|
userId?: boolean
|
|
9802
9802
|
missionName?: boolean
|
|
@@ -9809,10 +9809,10 @@ export namespace Prisma {
|
|
|
9809
9809
|
createdAt?: boolean
|
|
9810
9810
|
updatedAt?: boolean
|
|
9811
9811
|
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
9812
|
-
}, ExtArgs["result"]["
|
|
9812
|
+
}, ExtArgs["result"]["missionPrefill"]>
|
|
9813
9813
|
|
|
9814
9814
|
|
|
9815
|
-
export type
|
|
9815
|
+
export type MissionPrefillSelectScalar = {
|
|
9816
9816
|
id?: boolean
|
|
9817
9817
|
userId?: boolean
|
|
9818
9818
|
missionName?: boolean
|
|
@@ -9826,12 +9826,12 @@ export namespace Prisma {
|
|
|
9826
9826
|
updatedAt?: boolean
|
|
9827
9827
|
}
|
|
9828
9828
|
|
|
9829
|
-
export type
|
|
9829
|
+
export type MissionPrefillInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9830
9830
|
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
9831
9831
|
}
|
|
9832
9832
|
|
|
9833
|
-
export type $
|
|
9834
|
-
name: "
|
|
9833
|
+
export type $MissionPrefillPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9834
|
+
name: "MissionPrefill"
|
|
9835
9835
|
objects: {
|
|
9836
9836
|
user: Prisma.$UserPayload<ExtArgs>
|
|
9837
9837
|
}
|
|
@@ -9847,143 +9847,143 @@ export namespace Prisma {
|
|
|
9847
9847
|
status: string
|
|
9848
9848
|
createdAt: Date
|
|
9849
9849
|
updatedAt: Date
|
|
9850
|
-
}, ExtArgs["result"]["
|
|
9850
|
+
}, ExtArgs["result"]["missionPrefill"]>
|
|
9851
9851
|
composites: {}
|
|
9852
9852
|
}
|
|
9853
9853
|
|
|
9854
|
-
type
|
|
9854
|
+
type MissionPrefillGetPayload<S extends boolean | null | undefined | MissionPrefillDefaultArgs> = $Result.GetResult<Prisma.$MissionPrefillPayload, S>
|
|
9855
9855
|
|
|
9856
|
-
type
|
|
9857
|
-
Omit<
|
|
9858
|
-
select?:
|
|
9856
|
+
type MissionPrefillCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
9857
|
+
Omit<MissionPrefillFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
9858
|
+
select?: MissionPrefillCountAggregateInputType | true
|
|
9859
9859
|
}
|
|
9860
9860
|
|
|
9861
|
-
export interface
|
|
9862
|
-
[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' } }
|
|
9863
9863
|
/**
|
|
9864
|
-
* Find zero or one
|
|
9865
|
-
* @param {
|
|
9864
|
+
* Find zero or one MissionPrefill that matches the filter.
|
|
9865
|
+
* @param {MissionPrefillFindUniqueArgs} args - Arguments to find a MissionPrefill
|
|
9866
9866
|
* @example
|
|
9867
|
-
* // Get one
|
|
9868
|
-
* const
|
|
9867
|
+
* // Get one MissionPrefill
|
|
9868
|
+
* const missionPrefill = await prisma.missionPrefill.findUnique({
|
|
9869
9869
|
* where: {
|
|
9870
9870
|
* // ... provide filter here
|
|
9871
9871
|
* }
|
|
9872
9872
|
* })
|
|
9873
9873
|
*/
|
|
9874
|
-
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>
|
|
9875
9875
|
|
|
9876
9876
|
/**
|
|
9877
|
-
* Find one
|
|
9877
|
+
* Find one MissionPrefill that matches the filter or throw an error with `error.code='P2025'`
|
|
9878
9878
|
* if no matches were found.
|
|
9879
|
-
* @param {
|
|
9879
|
+
* @param {MissionPrefillFindUniqueOrThrowArgs} args - Arguments to find a MissionPrefill
|
|
9880
9880
|
* @example
|
|
9881
|
-
* // Get one
|
|
9882
|
-
* const
|
|
9881
|
+
* // Get one MissionPrefill
|
|
9882
|
+
* const missionPrefill = await prisma.missionPrefill.findUniqueOrThrow({
|
|
9883
9883
|
* where: {
|
|
9884
9884
|
* // ... provide filter here
|
|
9885
9885
|
* }
|
|
9886
9886
|
* })
|
|
9887
9887
|
*/
|
|
9888
|
-
findUniqueOrThrow<T extends
|
|
9888
|
+
findUniqueOrThrow<T extends MissionPrefillFindUniqueOrThrowArgs>(args: SelectSubset<T, MissionPrefillFindUniqueOrThrowArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
9889
9889
|
|
|
9890
9890
|
/**
|
|
9891
|
-
* Find the first
|
|
9891
|
+
* Find the first MissionPrefill that matches the filter.
|
|
9892
9892
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
9893
9893
|
* Read more here: https://pris.ly/d/null-undefined
|
|
9894
|
-
* @param {
|
|
9894
|
+
* @param {MissionPrefillFindFirstArgs} args - Arguments to find a MissionPrefill
|
|
9895
9895
|
* @example
|
|
9896
|
-
* // Get one
|
|
9897
|
-
* const
|
|
9896
|
+
* // Get one MissionPrefill
|
|
9897
|
+
* const missionPrefill = await prisma.missionPrefill.findFirst({
|
|
9898
9898
|
* where: {
|
|
9899
9899
|
* // ... provide filter here
|
|
9900
9900
|
* }
|
|
9901
9901
|
* })
|
|
9902
9902
|
*/
|
|
9903
|
-
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>
|
|
9904
9904
|
|
|
9905
9905
|
/**
|
|
9906
|
-
* Find the first
|
|
9906
|
+
* Find the first MissionPrefill that matches the filter or
|
|
9907
9907
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
9908
9908
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
9909
9909
|
* Read more here: https://pris.ly/d/null-undefined
|
|
9910
|
-
* @param {
|
|
9910
|
+
* @param {MissionPrefillFindFirstOrThrowArgs} args - Arguments to find a MissionPrefill
|
|
9911
9911
|
* @example
|
|
9912
|
-
* // Get one
|
|
9913
|
-
* const
|
|
9912
|
+
* // Get one MissionPrefill
|
|
9913
|
+
* const missionPrefill = await prisma.missionPrefill.findFirstOrThrow({
|
|
9914
9914
|
* where: {
|
|
9915
9915
|
* // ... provide filter here
|
|
9916
9916
|
* }
|
|
9917
9917
|
* })
|
|
9918
9918
|
*/
|
|
9919
|
-
findFirstOrThrow<T extends
|
|
9919
|
+
findFirstOrThrow<T extends MissionPrefillFindFirstOrThrowArgs>(args?: SelectSubset<T, MissionPrefillFindFirstOrThrowArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
9920
9920
|
|
|
9921
9921
|
/**
|
|
9922
|
-
* Find zero or more
|
|
9922
|
+
* Find zero or more MissionPrefills that matches the filter.
|
|
9923
9923
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
9924
9924
|
* Read more here: https://pris.ly/d/null-undefined
|
|
9925
|
-
* @param {
|
|
9925
|
+
* @param {MissionPrefillFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
9926
9926
|
* @example
|
|
9927
|
-
* // Get all
|
|
9928
|
-
* const
|
|
9927
|
+
* // Get all MissionPrefills
|
|
9928
|
+
* const missionPrefills = await prisma.missionPrefill.findMany()
|
|
9929
9929
|
*
|
|
9930
|
-
* // Get first 10
|
|
9931
|
-
* const
|
|
9930
|
+
* // Get first 10 MissionPrefills
|
|
9931
|
+
* const missionPrefills = await prisma.missionPrefill.findMany({ take: 10 })
|
|
9932
9932
|
*
|
|
9933
9933
|
* // Only select the `id`
|
|
9934
|
-
* const
|
|
9934
|
+
* const missionPrefillWithIdOnly = await prisma.missionPrefill.findMany({ select: { id: true } })
|
|
9935
9935
|
*
|
|
9936
9936
|
*/
|
|
9937
|
-
findMany<T extends
|
|
9937
|
+
findMany<T extends MissionPrefillFindManyArgs>(args?: SelectSubset<T, MissionPrefillFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "findMany">>
|
|
9938
9938
|
|
|
9939
9939
|
/**
|
|
9940
|
-
* Create a
|
|
9941
|
-
* @param {
|
|
9940
|
+
* Create a MissionPrefill.
|
|
9941
|
+
* @param {MissionPrefillCreateArgs} args - Arguments to create a MissionPrefill.
|
|
9942
9942
|
* @example
|
|
9943
|
-
* // Create one
|
|
9944
|
-
* const
|
|
9943
|
+
* // Create one MissionPrefill
|
|
9944
|
+
* const MissionPrefill = await prisma.missionPrefill.create({
|
|
9945
9945
|
* data: {
|
|
9946
|
-
* // ... data to create a
|
|
9946
|
+
* // ... data to create a MissionPrefill
|
|
9947
9947
|
* }
|
|
9948
9948
|
* })
|
|
9949
9949
|
*
|
|
9950
9950
|
*/
|
|
9951
|
-
create<T extends
|
|
9951
|
+
create<T extends MissionPrefillCreateArgs>(args: SelectSubset<T, MissionPrefillCreateArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
9952
9952
|
|
|
9953
9953
|
/**
|
|
9954
|
-
* Create many
|
|
9955
|
-
* @param {
|
|
9954
|
+
* Create many MissionPrefills.
|
|
9955
|
+
* @param {MissionPrefillCreateManyArgs} args - Arguments to create many MissionPrefills.
|
|
9956
9956
|
* @example
|
|
9957
|
-
* // Create many
|
|
9958
|
-
* const
|
|
9957
|
+
* // Create many MissionPrefills
|
|
9958
|
+
* const missionPrefill = await prisma.missionPrefill.createMany({
|
|
9959
9959
|
* data: [
|
|
9960
9960
|
* // ... provide data here
|
|
9961
9961
|
* ]
|
|
9962
9962
|
* })
|
|
9963
9963
|
*
|
|
9964
9964
|
*/
|
|
9965
|
-
createMany<T extends
|
|
9965
|
+
createMany<T extends MissionPrefillCreateManyArgs>(args?: SelectSubset<T, MissionPrefillCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
9966
9966
|
|
|
9967
9967
|
/**
|
|
9968
|
-
* Delete a
|
|
9969
|
-
* @param {
|
|
9968
|
+
* Delete a MissionPrefill.
|
|
9969
|
+
* @param {MissionPrefillDeleteArgs} args - Arguments to delete one MissionPrefill.
|
|
9970
9970
|
* @example
|
|
9971
|
-
* // Delete one
|
|
9972
|
-
* const
|
|
9971
|
+
* // Delete one MissionPrefill
|
|
9972
|
+
* const MissionPrefill = await prisma.missionPrefill.delete({
|
|
9973
9973
|
* where: {
|
|
9974
|
-
* // ... filter to delete one
|
|
9974
|
+
* // ... filter to delete one MissionPrefill
|
|
9975
9975
|
* }
|
|
9976
9976
|
* })
|
|
9977
9977
|
*
|
|
9978
9978
|
*/
|
|
9979
|
-
delete<T extends
|
|
9979
|
+
delete<T extends MissionPrefillDeleteArgs>(args: SelectSubset<T, MissionPrefillDeleteArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
9980
9980
|
|
|
9981
9981
|
/**
|
|
9982
|
-
* Update one
|
|
9983
|
-
* @param {
|
|
9982
|
+
* Update one MissionPrefill.
|
|
9983
|
+
* @param {MissionPrefillUpdateArgs} args - Arguments to update one MissionPrefill.
|
|
9984
9984
|
* @example
|
|
9985
|
-
* // Update one
|
|
9986
|
-
* const
|
|
9985
|
+
* // Update one MissionPrefill
|
|
9986
|
+
* const missionPrefill = await prisma.missionPrefill.update({
|
|
9987
9987
|
* where: {
|
|
9988
9988
|
* // ... provide filter here
|
|
9989
9989
|
* },
|
|
@@ -9993,30 +9993,30 @@ export namespace Prisma {
|
|
|
9993
9993
|
* })
|
|
9994
9994
|
*
|
|
9995
9995
|
*/
|
|
9996
|
-
update<T extends
|
|
9996
|
+
update<T extends MissionPrefillUpdateArgs>(args: SelectSubset<T, MissionPrefillUpdateArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
9997
9997
|
|
|
9998
9998
|
/**
|
|
9999
|
-
* Delete zero or more
|
|
10000
|
-
* @param {
|
|
9999
|
+
* Delete zero or more MissionPrefills.
|
|
10000
|
+
* @param {MissionPrefillDeleteManyArgs} args - Arguments to filter MissionPrefills to delete.
|
|
10001
10001
|
* @example
|
|
10002
|
-
* // Delete a few
|
|
10003
|
-
* const { count } = await prisma.
|
|
10002
|
+
* // Delete a few MissionPrefills
|
|
10003
|
+
* const { count } = await prisma.missionPrefill.deleteMany({
|
|
10004
10004
|
* where: {
|
|
10005
10005
|
* // ... provide filter here
|
|
10006
10006
|
* }
|
|
10007
10007
|
* })
|
|
10008
10008
|
*
|
|
10009
10009
|
*/
|
|
10010
|
-
deleteMany<T extends
|
|
10010
|
+
deleteMany<T extends MissionPrefillDeleteManyArgs>(args?: SelectSubset<T, MissionPrefillDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
10011
10011
|
|
|
10012
10012
|
/**
|
|
10013
|
-
* Update zero or more
|
|
10013
|
+
* Update zero or more MissionPrefills.
|
|
10014
10014
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10015
10015
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10016
|
-
* @param {
|
|
10016
|
+
* @param {MissionPrefillUpdateManyArgs} args - Arguments to update one or more rows.
|
|
10017
10017
|
* @example
|
|
10018
|
-
* // Update many
|
|
10019
|
-
* const
|
|
10018
|
+
* // Update many MissionPrefills
|
|
10019
|
+
* const missionPrefill = await prisma.missionPrefill.updateMany({
|
|
10020
10020
|
* where: {
|
|
10021
10021
|
* // ... provide filter here
|
|
10022
10022
|
* },
|
|
@@ -10026,79 +10026,79 @@ export namespace Prisma {
|
|
|
10026
10026
|
* })
|
|
10027
10027
|
*
|
|
10028
10028
|
*/
|
|
10029
|
-
updateMany<T extends
|
|
10029
|
+
updateMany<T extends MissionPrefillUpdateManyArgs>(args: SelectSubset<T, MissionPrefillUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
10030
10030
|
|
|
10031
10031
|
/**
|
|
10032
|
-
* Create or update one
|
|
10033
|
-
* @param {
|
|
10032
|
+
* Create or update one MissionPrefill.
|
|
10033
|
+
* @param {MissionPrefillUpsertArgs} args - Arguments to update or create a MissionPrefill.
|
|
10034
10034
|
* @example
|
|
10035
|
-
* // Update or create a
|
|
10036
|
-
* const
|
|
10035
|
+
* // Update or create a MissionPrefill
|
|
10036
|
+
* const missionPrefill = await prisma.missionPrefill.upsert({
|
|
10037
10037
|
* create: {
|
|
10038
|
-
* // ... data to create a
|
|
10038
|
+
* // ... data to create a MissionPrefill
|
|
10039
10039
|
* },
|
|
10040
10040
|
* update: {
|
|
10041
10041
|
* // ... in case it already exists, update
|
|
10042
10042
|
* },
|
|
10043
10043
|
* where: {
|
|
10044
|
-
* // ... the filter for the
|
|
10044
|
+
* // ... the filter for the MissionPrefill we want to update
|
|
10045
10045
|
* }
|
|
10046
10046
|
* })
|
|
10047
10047
|
*/
|
|
10048
|
-
upsert<T extends
|
|
10048
|
+
upsert<T extends MissionPrefillUpsertArgs>(args: SelectSubset<T, MissionPrefillUpsertArgs<ExtArgs>>): Prisma__MissionPrefillClient<$Result.GetResult<Prisma.$MissionPrefillPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
10049
10049
|
|
|
10050
10050
|
/**
|
|
10051
|
-
* Find zero or more
|
|
10052
|
-
* @param {
|
|
10051
|
+
* Find zero or more MissionPrefills that matches the filter.
|
|
10052
|
+
* @param {MissionPrefillFindRawArgs} args - Select which filters you would like to apply.
|
|
10053
10053
|
* @example
|
|
10054
|
-
* const
|
|
10054
|
+
* const missionPrefill = await prisma.missionPrefill.findRaw({
|
|
10055
10055
|
* filter: { age: { $gt: 25 } }
|
|
10056
10056
|
* })
|
|
10057
10057
|
*/
|
|
10058
|
-
findRaw(args?:
|
|
10058
|
+
findRaw(args?: MissionPrefillFindRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
10059
10059
|
|
|
10060
10060
|
/**
|
|
10061
|
-
* Perform aggregation operations on a
|
|
10062
|
-
* @param {
|
|
10061
|
+
* Perform aggregation operations on a MissionPrefill.
|
|
10062
|
+
* @param {MissionPrefillAggregateRawArgs} args - Select which aggregations you would like to apply.
|
|
10063
10063
|
* @example
|
|
10064
|
-
* const
|
|
10064
|
+
* const missionPrefill = await prisma.missionPrefill.aggregateRaw({
|
|
10065
10065
|
* pipeline: [
|
|
10066
10066
|
* { $match: { status: "registered" } },
|
|
10067
10067
|
* { $group: { _id: "$country", total: { $sum: 1 } } }
|
|
10068
10068
|
* ]
|
|
10069
10069
|
* })
|
|
10070
10070
|
*/
|
|
10071
|
-
aggregateRaw(args?:
|
|
10071
|
+
aggregateRaw(args?: MissionPrefillAggregateRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
10072
10072
|
|
|
10073
10073
|
|
|
10074
10074
|
/**
|
|
10075
|
-
* Count the number of
|
|
10075
|
+
* Count the number of MissionPrefills.
|
|
10076
10076
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10077
10077
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10078
|
-
* @param {
|
|
10078
|
+
* @param {MissionPrefillCountArgs} args - Arguments to filter MissionPrefills to count.
|
|
10079
10079
|
* @example
|
|
10080
|
-
* // Count the number of
|
|
10081
|
-
* const count = await prisma.
|
|
10080
|
+
* // Count the number of MissionPrefills
|
|
10081
|
+
* const count = await prisma.missionPrefill.count({
|
|
10082
10082
|
* where: {
|
|
10083
|
-
* // ... the filter for the
|
|
10083
|
+
* // ... the filter for the MissionPrefills we want to count
|
|
10084
10084
|
* }
|
|
10085
10085
|
* })
|
|
10086
10086
|
**/
|
|
10087
|
-
count<T extends
|
|
10088
|
-
args?: Subset<T,
|
|
10087
|
+
count<T extends MissionPrefillCountArgs>(
|
|
10088
|
+
args?: Subset<T, MissionPrefillCountArgs>,
|
|
10089
10089
|
): Prisma.PrismaPromise<
|
|
10090
10090
|
T extends $Utils.Record<'select', any>
|
|
10091
10091
|
? T['select'] extends true
|
|
10092
10092
|
? number
|
|
10093
|
-
: GetScalarType<T['select'],
|
|
10093
|
+
: GetScalarType<T['select'], MissionPrefillCountAggregateOutputType>
|
|
10094
10094
|
: number
|
|
10095
10095
|
>
|
|
10096
10096
|
|
|
10097
10097
|
/**
|
|
10098
|
-
* Allows you to perform aggregations operations on a
|
|
10098
|
+
* Allows you to perform aggregations operations on a MissionPrefill.
|
|
10099
10099
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10100
10100
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10101
|
-
* @param {
|
|
10101
|
+
* @param {MissionPrefillAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
10102
10102
|
* @example
|
|
10103
10103
|
* // Ordered by age ascending
|
|
10104
10104
|
* // Where email contains prisma.io
|
|
@@ -10118,13 +10118,13 @@ export namespace Prisma {
|
|
|
10118
10118
|
* take: 10,
|
|
10119
10119
|
* })
|
|
10120
10120
|
**/
|
|
10121
|
-
aggregate<T extends
|
|
10121
|
+
aggregate<T extends MissionPrefillAggregateArgs>(args: Subset<T, MissionPrefillAggregateArgs>): Prisma.PrismaPromise<GetMissionPrefillAggregateType<T>>
|
|
10122
10122
|
|
|
10123
10123
|
/**
|
|
10124
|
-
* Group by
|
|
10124
|
+
* Group by MissionPrefill.
|
|
10125
10125
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10126
10126
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10127
|
-
* @param {
|
|
10127
|
+
* @param {MissionPrefillGroupByArgs} args - Group by arguments.
|
|
10128
10128
|
* @example
|
|
10129
10129
|
* // Group by city, order by createdAt, get count
|
|
10130
10130
|
* const result = await prisma.user.groupBy({
|
|
@@ -10139,14 +10139,14 @@ export namespace Prisma {
|
|
|
10139
10139
|
*
|
|
10140
10140
|
**/
|
|
10141
10141
|
groupBy<
|
|
10142
|
-
T extends
|
|
10142
|
+
T extends MissionPrefillGroupByArgs,
|
|
10143
10143
|
HasSelectOrTake extends Or<
|
|
10144
10144
|
Extends<'skip', Keys<T>>,
|
|
10145
10145
|
Extends<'take', Keys<T>>
|
|
10146
10146
|
>,
|
|
10147
10147
|
OrderByArg extends True extends HasSelectOrTake
|
|
10148
|
-
? { orderBy:
|
|
10149
|
-
: { orderBy?:
|
|
10148
|
+
? { orderBy: MissionPrefillGroupByArgs['orderBy'] }
|
|
10149
|
+
: { orderBy?: MissionPrefillGroupByArgs['orderBy'] },
|
|
10150
10150
|
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
10151
10151
|
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
10152
10152
|
ByValid extends Has<ByFields, OrderFields>,
|
|
@@ -10195,20 +10195,20 @@ export namespace Prisma {
|
|
|
10195
10195
|
? never
|
|
10196
10196
|
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
10197
10197
|
}[OrderFields]
|
|
10198
|
-
>(args: SubsetIntersection<T,
|
|
10198
|
+
>(args: SubsetIntersection<T, MissionPrefillGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetMissionPrefillGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
10199
10199
|
/**
|
|
10200
|
-
* Fields of the
|
|
10200
|
+
* Fields of the MissionPrefill model
|
|
10201
10201
|
*/
|
|
10202
|
-
readonly fields:
|
|
10202
|
+
readonly fields: MissionPrefillFieldRefs;
|
|
10203
10203
|
}
|
|
10204
10204
|
|
|
10205
10205
|
/**
|
|
10206
|
-
* The delegate class that acts as a "Promise-like" for
|
|
10206
|
+
* The delegate class that acts as a "Promise-like" for MissionPrefill.
|
|
10207
10207
|
* Why is this prefixed with `Prisma__`?
|
|
10208
10208
|
* Because we want to prevent naming conflicts as mentioned in
|
|
10209
10209
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
10210
10210
|
*/
|
|
10211
|
-
export interface
|
|
10211
|
+
export interface Prisma__MissionPrefillClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
10212
10212
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
10213
10213
|
user<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
10214
10214
|
/**
|
|
@@ -10237,321 +10237,321 @@ export namespace Prisma {
|
|
|
10237
10237
|
|
|
10238
10238
|
|
|
10239
10239
|
/**
|
|
10240
|
-
* Fields of the
|
|
10240
|
+
* Fields of the MissionPrefill model
|
|
10241
10241
|
*/
|
|
10242
|
-
interface
|
|
10243
|
-
readonly id: FieldRef<"
|
|
10244
|
-
readonly userId: FieldRef<"
|
|
10245
|
-
readonly missionName: FieldRef<"
|
|
10246
|
-
readonly plannedStart: FieldRef<"
|
|
10247
|
-
readonly companyDescription: FieldRef<"
|
|
10248
|
-
readonly missionDescription: FieldRef<"
|
|
10249
|
-
readonly timezone: FieldRef<"
|
|
10250
|
-
readonly openRoles: FieldRef<"
|
|
10251
|
-
readonly status: FieldRef<"
|
|
10252
|
-
readonly createdAt: FieldRef<"
|
|
10253
|
-
readonly updatedAt: FieldRef<"
|
|
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'>
|
|
10254
10254
|
}
|
|
10255
10255
|
|
|
10256
10256
|
|
|
10257
10257
|
// Custom InputTypes
|
|
10258
10258
|
/**
|
|
10259
|
-
*
|
|
10259
|
+
* MissionPrefill findUnique
|
|
10260
10260
|
*/
|
|
10261
|
-
export type
|
|
10261
|
+
export type MissionPrefillFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10262
10262
|
/**
|
|
10263
|
-
* Select specific fields to fetch from the
|
|
10263
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10264
10264
|
*/
|
|
10265
|
-
select?:
|
|
10265
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10266
10266
|
/**
|
|
10267
10267
|
* Choose, which related nodes to fetch as well
|
|
10268
10268
|
*/
|
|
10269
|
-
include?:
|
|
10269
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10270
10270
|
/**
|
|
10271
|
-
* Filter, which
|
|
10271
|
+
* Filter, which MissionPrefill to fetch.
|
|
10272
10272
|
*/
|
|
10273
|
-
where:
|
|
10273
|
+
where: MissionPrefillWhereUniqueInput
|
|
10274
10274
|
}
|
|
10275
10275
|
|
|
10276
10276
|
/**
|
|
10277
|
-
*
|
|
10277
|
+
* MissionPrefill findUniqueOrThrow
|
|
10278
10278
|
*/
|
|
10279
|
-
export type
|
|
10279
|
+
export type MissionPrefillFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10280
10280
|
/**
|
|
10281
|
-
* Select specific fields to fetch from the
|
|
10281
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10282
10282
|
*/
|
|
10283
|
-
select?:
|
|
10283
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10284
10284
|
/**
|
|
10285
10285
|
* Choose, which related nodes to fetch as well
|
|
10286
10286
|
*/
|
|
10287
|
-
include?:
|
|
10287
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10288
10288
|
/**
|
|
10289
|
-
* Filter, which
|
|
10289
|
+
* Filter, which MissionPrefill to fetch.
|
|
10290
10290
|
*/
|
|
10291
|
-
where:
|
|
10291
|
+
where: MissionPrefillWhereUniqueInput
|
|
10292
10292
|
}
|
|
10293
10293
|
|
|
10294
10294
|
/**
|
|
10295
|
-
*
|
|
10295
|
+
* MissionPrefill findFirst
|
|
10296
10296
|
*/
|
|
10297
|
-
export type
|
|
10297
|
+
export type MissionPrefillFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10298
10298
|
/**
|
|
10299
|
-
* Select specific fields to fetch from the
|
|
10299
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10300
10300
|
*/
|
|
10301
|
-
select?:
|
|
10301
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10302
10302
|
/**
|
|
10303
10303
|
* Choose, which related nodes to fetch as well
|
|
10304
10304
|
*/
|
|
10305
|
-
include?:
|
|
10305
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10306
10306
|
/**
|
|
10307
|
-
* Filter, which
|
|
10307
|
+
* Filter, which MissionPrefill to fetch.
|
|
10308
10308
|
*/
|
|
10309
|
-
where?:
|
|
10309
|
+
where?: MissionPrefillWhereInput
|
|
10310
10310
|
/**
|
|
10311
10311
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
10312
10312
|
*
|
|
10313
|
-
* Determine the order of
|
|
10313
|
+
* Determine the order of MissionPrefills to fetch.
|
|
10314
10314
|
*/
|
|
10315
|
-
orderBy?:
|
|
10315
|
+
orderBy?: MissionPrefillOrderByWithRelationInput | MissionPrefillOrderByWithRelationInput[]
|
|
10316
10316
|
/**
|
|
10317
10317
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
10318
10318
|
*
|
|
10319
|
-
* Sets the position for searching for
|
|
10319
|
+
* Sets the position for searching for MissionPrefills.
|
|
10320
10320
|
*/
|
|
10321
|
-
cursor?:
|
|
10321
|
+
cursor?: MissionPrefillWhereUniqueInput
|
|
10322
10322
|
/**
|
|
10323
10323
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10324
10324
|
*
|
|
10325
|
-
* Take `±n`
|
|
10325
|
+
* Take `±n` MissionPrefills from the position of the cursor.
|
|
10326
10326
|
*/
|
|
10327
10327
|
take?: number
|
|
10328
10328
|
/**
|
|
10329
10329
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10330
10330
|
*
|
|
10331
|
-
* Skip the first `n`
|
|
10331
|
+
* Skip the first `n` MissionPrefills.
|
|
10332
10332
|
*/
|
|
10333
10333
|
skip?: number
|
|
10334
10334
|
/**
|
|
10335
10335
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
10336
10336
|
*
|
|
10337
|
-
* Filter by unique combinations of
|
|
10337
|
+
* Filter by unique combinations of MissionPrefills.
|
|
10338
10338
|
*/
|
|
10339
|
-
distinct?:
|
|
10339
|
+
distinct?: MissionPrefillScalarFieldEnum | MissionPrefillScalarFieldEnum[]
|
|
10340
10340
|
}
|
|
10341
10341
|
|
|
10342
10342
|
/**
|
|
10343
|
-
*
|
|
10343
|
+
* MissionPrefill findFirstOrThrow
|
|
10344
10344
|
*/
|
|
10345
|
-
export type
|
|
10345
|
+
export type MissionPrefillFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10346
10346
|
/**
|
|
10347
|
-
* Select specific fields to fetch from the
|
|
10347
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10348
10348
|
*/
|
|
10349
|
-
select?:
|
|
10349
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10350
10350
|
/**
|
|
10351
10351
|
* Choose, which related nodes to fetch as well
|
|
10352
10352
|
*/
|
|
10353
|
-
include?:
|
|
10353
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10354
10354
|
/**
|
|
10355
|
-
* Filter, which
|
|
10355
|
+
* Filter, which MissionPrefill to fetch.
|
|
10356
10356
|
*/
|
|
10357
|
-
where?:
|
|
10357
|
+
where?: MissionPrefillWhereInput
|
|
10358
10358
|
/**
|
|
10359
10359
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
10360
10360
|
*
|
|
10361
|
-
* Determine the order of
|
|
10361
|
+
* Determine the order of MissionPrefills to fetch.
|
|
10362
10362
|
*/
|
|
10363
|
-
orderBy?:
|
|
10363
|
+
orderBy?: MissionPrefillOrderByWithRelationInput | MissionPrefillOrderByWithRelationInput[]
|
|
10364
10364
|
/**
|
|
10365
10365
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
10366
10366
|
*
|
|
10367
|
-
* Sets the position for searching for
|
|
10367
|
+
* Sets the position for searching for MissionPrefills.
|
|
10368
10368
|
*/
|
|
10369
|
-
cursor?:
|
|
10369
|
+
cursor?: MissionPrefillWhereUniqueInput
|
|
10370
10370
|
/**
|
|
10371
10371
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10372
10372
|
*
|
|
10373
|
-
* Take `±n`
|
|
10373
|
+
* Take `±n` MissionPrefills from the position of the cursor.
|
|
10374
10374
|
*/
|
|
10375
10375
|
take?: number
|
|
10376
10376
|
/**
|
|
10377
10377
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10378
10378
|
*
|
|
10379
|
-
* Skip the first `n`
|
|
10379
|
+
* Skip the first `n` MissionPrefills.
|
|
10380
10380
|
*/
|
|
10381
10381
|
skip?: number
|
|
10382
10382
|
/**
|
|
10383
10383
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
10384
10384
|
*
|
|
10385
|
-
* Filter by unique combinations of
|
|
10385
|
+
* Filter by unique combinations of MissionPrefills.
|
|
10386
10386
|
*/
|
|
10387
|
-
distinct?:
|
|
10387
|
+
distinct?: MissionPrefillScalarFieldEnum | MissionPrefillScalarFieldEnum[]
|
|
10388
10388
|
}
|
|
10389
10389
|
|
|
10390
10390
|
/**
|
|
10391
|
-
*
|
|
10391
|
+
* MissionPrefill findMany
|
|
10392
10392
|
*/
|
|
10393
|
-
export type
|
|
10393
|
+
export type MissionPrefillFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10394
10394
|
/**
|
|
10395
|
-
* Select specific fields to fetch from the
|
|
10395
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10396
10396
|
*/
|
|
10397
|
-
select?:
|
|
10397
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10398
10398
|
/**
|
|
10399
10399
|
* Choose, which related nodes to fetch as well
|
|
10400
10400
|
*/
|
|
10401
|
-
include?:
|
|
10401
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10402
10402
|
/**
|
|
10403
|
-
* Filter, which
|
|
10403
|
+
* Filter, which MissionPrefills to fetch.
|
|
10404
10404
|
*/
|
|
10405
|
-
where?:
|
|
10405
|
+
where?: MissionPrefillWhereInput
|
|
10406
10406
|
/**
|
|
10407
10407
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
10408
10408
|
*
|
|
10409
|
-
* Determine the order of
|
|
10409
|
+
* Determine the order of MissionPrefills to fetch.
|
|
10410
10410
|
*/
|
|
10411
|
-
orderBy?:
|
|
10411
|
+
orderBy?: MissionPrefillOrderByWithRelationInput | MissionPrefillOrderByWithRelationInput[]
|
|
10412
10412
|
/**
|
|
10413
10413
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
10414
10414
|
*
|
|
10415
|
-
* Sets the position for listing
|
|
10415
|
+
* Sets the position for listing MissionPrefills.
|
|
10416
10416
|
*/
|
|
10417
|
-
cursor?:
|
|
10417
|
+
cursor?: MissionPrefillWhereUniqueInput
|
|
10418
10418
|
/**
|
|
10419
10419
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10420
10420
|
*
|
|
10421
|
-
* Take `±n`
|
|
10421
|
+
* Take `±n` MissionPrefills from the position of the cursor.
|
|
10422
10422
|
*/
|
|
10423
10423
|
take?: number
|
|
10424
10424
|
/**
|
|
10425
10425
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10426
10426
|
*
|
|
10427
|
-
* Skip the first `n`
|
|
10427
|
+
* Skip the first `n` MissionPrefills.
|
|
10428
10428
|
*/
|
|
10429
10429
|
skip?: number
|
|
10430
|
-
distinct?:
|
|
10430
|
+
distinct?: MissionPrefillScalarFieldEnum | MissionPrefillScalarFieldEnum[]
|
|
10431
10431
|
}
|
|
10432
10432
|
|
|
10433
10433
|
/**
|
|
10434
|
-
*
|
|
10434
|
+
* MissionPrefill create
|
|
10435
10435
|
*/
|
|
10436
|
-
export type
|
|
10436
|
+
export type MissionPrefillCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10437
10437
|
/**
|
|
10438
|
-
* Select specific fields to fetch from the
|
|
10438
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10439
10439
|
*/
|
|
10440
|
-
select?:
|
|
10440
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10441
10441
|
/**
|
|
10442
10442
|
* Choose, which related nodes to fetch as well
|
|
10443
10443
|
*/
|
|
10444
|
-
include?:
|
|
10444
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10445
10445
|
/**
|
|
10446
|
-
* The data needed to create a
|
|
10446
|
+
* The data needed to create a MissionPrefill.
|
|
10447
10447
|
*/
|
|
10448
|
-
data: XOR<
|
|
10448
|
+
data: XOR<MissionPrefillCreateInput, MissionPrefillUncheckedCreateInput>
|
|
10449
10449
|
}
|
|
10450
10450
|
|
|
10451
10451
|
/**
|
|
10452
|
-
*
|
|
10452
|
+
* MissionPrefill createMany
|
|
10453
10453
|
*/
|
|
10454
|
-
export type
|
|
10454
|
+
export type MissionPrefillCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10455
10455
|
/**
|
|
10456
|
-
* The data used to create many
|
|
10456
|
+
* The data used to create many MissionPrefills.
|
|
10457
10457
|
*/
|
|
10458
|
-
data:
|
|
10458
|
+
data: MissionPrefillCreateManyInput | MissionPrefillCreateManyInput[]
|
|
10459
10459
|
}
|
|
10460
10460
|
|
|
10461
10461
|
/**
|
|
10462
|
-
*
|
|
10462
|
+
* MissionPrefill update
|
|
10463
10463
|
*/
|
|
10464
|
-
export type
|
|
10464
|
+
export type MissionPrefillUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10465
10465
|
/**
|
|
10466
|
-
* Select specific fields to fetch from the
|
|
10466
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10467
10467
|
*/
|
|
10468
|
-
select?:
|
|
10468
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10469
10469
|
/**
|
|
10470
10470
|
* Choose, which related nodes to fetch as well
|
|
10471
10471
|
*/
|
|
10472
|
-
include?:
|
|
10472
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10473
10473
|
/**
|
|
10474
|
-
* The data needed to update a
|
|
10474
|
+
* The data needed to update a MissionPrefill.
|
|
10475
10475
|
*/
|
|
10476
|
-
data: XOR<
|
|
10476
|
+
data: XOR<MissionPrefillUpdateInput, MissionPrefillUncheckedUpdateInput>
|
|
10477
10477
|
/**
|
|
10478
|
-
* Choose, which
|
|
10478
|
+
* Choose, which MissionPrefill to update.
|
|
10479
10479
|
*/
|
|
10480
|
-
where:
|
|
10480
|
+
where: MissionPrefillWhereUniqueInput
|
|
10481
10481
|
}
|
|
10482
10482
|
|
|
10483
10483
|
/**
|
|
10484
|
-
*
|
|
10484
|
+
* MissionPrefill updateMany
|
|
10485
10485
|
*/
|
|
10486
|
-
export type
|
|
10486
|
+
export type MissionPrefillUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10487
10487
|
/**
|
|
10488
|
-
* The data used to update
|
|
10488
|
+
* The data used to update MissionPrefills.
|
|
10489
10489
|
*/
|
|
10490
|
-
data: XOR<
|
|
10490
|
+
data: XOR<MissionPrefillUpdateManyMutationInput, MissionPrefillUncheckedUpdateManyInput>
|
|
10491
10491
|
/**
|
|
10492
|
-
* Filter which
|
|
10492
|
+
* Filter which MissionPrefills to update
|
|
10493
10493
|
*/
|
|
10494
|
-
where?:
|
|
10494
|
+
where?: MissionPrefillWhereInput
|
|
10495
10495
|
}
|
|
10496
10496
|
|
|
10497
10497
|
/**
|
|
10498
|
-
*
|
|
10498
|
+
* MissionPrefill upsert
|
|
10499
10499
|
*/
|
|
10500
|
-
export type
|
|
10500
|
+
export type MissionPrefillUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10501
10501
|
/**
|
|
10502
|
-
* Select specific fields to fetch from the
|
|
10502
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10503
10503
|
*/
|
|
10504
|
-
select?:
|
|
10504
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10505
10505
|
/**
|
|
10506
10506
|
* Choose, which related nodes to fetch as well
|
|
10507
10507
|
*/
|
|
10508
|
-
include?:
|
|
10508
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10509
10509
|
/**
|
|
10510
|
-
* The filter to search for the
|
|
10510
|
+
* The filter to search for the MissionPrefill to update in case it exists.
|
|
10511
10511
|
*/
|
|
10512
|
-
where:
|
|
10512
|
+
where: MissionPrefillWhereUniqueInput
|
|
10513
10513
|
/**
|
|
10514
|
-
* In case the
|
|
10514
|
+
* In case the MissionPrefill found by the `where` argument doesn't exist, create a new MissionPrefill with this data.
|
|
10515
10515
|
*/
|
|
10516
|
-
create: XOR<
|
|
10516
|
+
create: XOR<MissionPrefillCreateInput, MissionPrefillUncheckedCreateInput>
|
|
10517
10517
|
/**
|
|
10518
|
-
* In case the
|
|
10518
|
+
* In case the MissionPrefill was found with the provided `where` argument, update it with this data.
|
|
10519
10519
|
*/
|
|
10520
|
-
update: XOR<
|
|
10520
|
+
update: XOR<MissionPrefillUpdateInput, MissionPrefillUncheckedUpdateInput>
|
|
10521
10521
|
}
|
|
10522
10522
|
|
|
10523
10523
|
/**
|
|
10524
|
-
*
|
|
10524
|
+
* MissionPrefill delete
|
|
10525
10525
|
*/
|
|
10526
|
-
export type
|
|
10526
|
+
export type MissionPrefillDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10527
10527
|
/**
|
|
10528
|
-
* Select specific fields to fetch from the
|
|
10528
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10529
10529
|
*/
|
|
10530
|
-
select?:
|
|
10530
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10531
10531
|
/**
|
|
10532
10532
|
* Choose, which related nodes to fetch as well
|
|
10533
10533
|
*/
|
|
10534
|
-
include?:
|
|
10534
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10535
10535
|
/**
|
|
10536
|
-
* Filter which
|
|
10536
|
+
* Filter which MissionPrefill to delete.
|
|
10537
10537
|
*/
|
|
10538
|
-
where:
|
|
10538
|
+
where: MissionPrefillWhereUniqueInput
|
|
10539
10539
|
}
|
|
10540
10540
|
|
|
10541
10541
|
/**
|
|
10542
|
-
*
|
|
10542
|
+
* MissionPrefill deleteMany
|
|
10543
10543
|
*/
|
|
10544
|
-
export type
|
|
10544
|
+
export type MissionPrefillDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10545
10545
|
/**
|
|
10546
|
-
* Filter which
|
|
10546
|
+
* Filter which MissionPrefills to delete
|
|
10547
10547
|
*/
|
|
10548
|
-
where?:
|
|
10548
|
+
where?: MissionPrefillWhereInput
|
|
10549
10549
|
}
|
|
10550
10550
|
|
|
10551
10551
|
/**
|
|
10552
|
-
*
|
|
10552
|
+
* MissionPrefill findRaw
|
|
10553
10553
|
*/
|
|
10554
|
-
export type
|
|
10554
|
+
export type MissionPrefillFindRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10555
10555
|
/**
|
|
10556
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}.
|
|
10557
10557
|
*/
|
|
@@ -10563,9 +10563,9 @@ export namespace Prisma {
|
|
|
10563
10563
|
}
|
|
10564
10564
|
|
|
10565
10565
|
/**
|
|
10566
|
-
*
|
|
10566
|
+
* MissionPrefill aggregateRaw
|
|
10567
10567
|
*/
|
|
10568
|
-
export type
|
|
10568
|
+
export type MissionPrefillAggregateRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10569
10569
|
/**
|
|
10570
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}.
|
|
10571
10571
|
*/
|
|
@@ -10577,17 +10577,17 @@ export namespace Prisma {
|
|
|
10577
10577
|
}
|
|
10578
10578
|
|
|
10579
10579
|
/**
|
|
10580
|
-
*
|
|
10580
|
+
* MissionPrefill without action
|
|
10581
10581
|
*/
|
|
10582
|
-
export type
|
|
10582
|
+
export type MissionPrefillDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10583
10583
|
/**
|
|
10584
|
-
* Select specific fields to fetch from the
|
|
10584
|
+
* Select specific fields to fetch from the MissionPrefill
|
|
10585
10585
|
*/
|
|
10586
|
-
select?:
|
|
10586
|
+
select?: MissionPrefillSelect<ExtArgs> | null
|
|
10587
10587
|
/**
|
|
10588
10588
|
* Choose, which related nodes to fetch as well
|
|
10589
10589
|
*/
|
|
10590
|
-
include?:
|
|
10590
|
+
include?: MissionPrefillInclude<ExtArgs> | null
|
|
10591
10591
|
}
|
|
10592
10592
|
|
|
10593
10593
|
|
|
@@ -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,7 +15736,7 @@ export namespace Prisma {
|
|
|
15736
15736
|
export type MissionScalarFieldEnum = (typeof MissionScalarFieldEnum)[keyof typeof MissionScalarFieldEnum]
|
|
15737
15737
|
|
|
15738
15738
|
|
|
15739
|
-
export const
|
|
15739
|
+
export const MissionPrefillScalarFieldEnum: {
|
|
15740
15740
|
id: 'id',
|
|
15741
15741
|
userId: 'userId',
|
|
15742
15742
|
missionName: 'missionName',
|
|
@@ -15750,7 +15750,7 @@ export namespace Prisma {
|
|
|
15750
15750
|
updatedAt: 'updatedAt'
|
|
15751
15751
|
};
|
|
15752
15752
|
|
|
15753
|
-
export type
|
|
15753
|
+
export type MissionPrefillScalarFieldEnum = (typeof MissionPrefillScalarFieldEnum)[keyof typeof MissionPrefillScalarFieldEnum]
|
|
15754
15754
|
|
|
15755
15755
|
|
|
15756
15756
|
export const MissionSpecScalarFieldEnum: {
|
|
@@ -16616,25 +16616,25 @@ export namespace Prisma {
|
|
|
16616
16616
|
timezone?: StringNullableWithAggregatesFilter<"Mission"> | string | null
|
|
16617
16617
|
}
|
|
16618
16618
|
|
|
16619
|
-
export type
|
|
16620
|
-
AND?:
|
|
16621
|
-
OR?:
|
|
16622
|
-
NOT?:
|
|
16623
|
-
id?: StringFilter<"
|
|
16624
|
-
userId?: StringFilter<"
|
|
16625
|
-
missionName?: StringNullableFilter<"
|
|
16626
|
-
plannedStart?: StringNullableFilter<"
|
|
16627
|
-
companyDescription?: StringNullableFilter<"
|
|
16628
|
-
missionDescription?: StringNullableFilter<"
|
|
16629
|
-
timezone?: StringNullableFilter<"
|
|
16630
|
-
openRoles?: JsonNullableFilter<"
|
|
16631
|
-
status?: StringFilter<"
|
|
16632
|
-
createdAt?: DateTimeFilter<"
|
|
16633
|
-
updatedAt?: DateTimeFilter<"
|
|
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
16634
|
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
16635
16635
|
}
|
|
16636
16636
|
|
|
16637
|
-
export type
|
|
16637
|
+
export type MissionPrefillOrderByWithRelationInput = {
|
|
16638
16638
|
id?: SortOrder
|
|
16639
16639
|
userId?: SortOrder
|
|
16640
16640
|
missionName?: SortOrder
|
|
@@ -16649,25 +16649,25 @@ export namespace Prisma {
|
|
|
16649
16649
|
user?: UserOrderByWithRelationInput
|
|
16650
16650
|
}
|
|
16651
16651
|
|
|
16652
|
-
export type
|
|
16652
|
+
export type MissionPrefillWhereUniqueInput = Prisma.AtLeast<{
|
|
16653
16653
|
id?: string
|
|
16654
|
-
AND?:
|
|
16655
|
-
OR?:
|
|
16656
|
-
NOT?:
|
|
16657
|
-
userId?: StringFilter<"
|
|
16658
|
-
missionName?: StringNullableFilter<"
|
|
16659
|
-
plannedStart?: StringNullableFilter<"
|
|
16660
|
-
companyDescription?: StringNullableFilter<"
|
|
16661
|
-
missionDescription?: StringNullableFilter<"
|
|
16662
|
-
timezone?: StringNullableFilter<"
|
|
16663
|
-
openRoles?: JsonNullableFilter<"
|
|
16664
|
-
status?: StringFilter<"
|
|
16665
|
-
createdAt?: DateTimeFilter<"
|
|
16666
|
-
updatedAt?: DateTimeFilter<"
|
|
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
16667
|
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
16668
16668
|
}, "id">
|
|
16669
16669
|
|
|
16670
|
-
export type
|
|
16670
|
+
export type MissionPrefillOrderByWithAggregationInput = {
|
|
16671
16671
|
id?: SortOrder
|
|
16672
16672
|
userId?: SortOrder
|
|
16673
16673
|
missionName?: SortOrder
|
|
@@ -16679,26 +16679,26 @@ export namespace Prisma {
|
|
|
16679
16679
|
status?: SortOrder
|
|
16680
16680
|
createdAt?: SortOrder
|
|
16681
16681
|
updatedAt?: SortOrder
|
|
16682
|
-
_count?:
|
|
16683
|
-
_max?:
|
|
16684
|
-
_min?:
|
|
16685
|
-
}
|
|
16686
|
-
|
|
16687
|
-
export type
|
|
16688
|
-
AND?:
|
|
16689
|
-
OR?:
|
|
16690
|
-
NOT?:
|
|
16691
|
-
id?: StringWithAggregatesFilter<"
|
|
16692
|
-
userId?: StringWithAggregatesFilter<"
|
|
16693
|
-
missionName?: StringNullableWithAggregatesFilter<"
|
|
16694
|
-
plannedStart?: StringNullableWithAggregatesFilter<"
|
|
16695
|
-
companyDescription?: StringNullableWithAggregatesFilter<"
|
|
16696
|
-
missionDescription?: StringNullableWithAggregatesFilter<"
|
|
16697
|
-
timezone?: StringNullableWithAggregatesFilter<"
|
|
16698
|
-
openRoles?: JsonNullableWithAggregatesFilter<"
|
|
16699
|
-
status?: StringWithAggregatesFilter<"
|
|
16700
|
-
createdAt?: DateTimeWithAggregatesFilter<"
|
|
16701
|
-
updatedAt?: DateTimeWithAggregatesFilter<"
|
|
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
16702
|
}
|
|
16703
16703
|
|
|
16704
16704
|
export type MissionSpecWhereInput = {
|
|
@@ -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 = {
|
|
@@ -17854,7 +17854,7 @@ export namespace Prisma {
|
|
|
17854
17854
|
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17855
17855
|
}
|
|
17856
17856
|
|
|
17857
|
-
export type
|
|
17857
|
+
export type MissionPrefillCreateInput = {
|
|
17858
17858
|
id?: string
|
|
17859
17859
|
missionName?: string | null
|
|
17860
17860
|
plannedStart?: string | null
|
|
@@ -17865,10 +17865,10 @@ export namespace Prisma {
|
|
|
17865
17865
|
status?: string
|
|
17866
17866
|
createdAt?: Date | string
|
|
17867
17867
|
updatedAt?: Date | string
|
|
17868
|
-
user:
|
|
17868
|
+
user: UserCreateNestedOneWithoutMissionPrefillsInput
|
|
17869
17869
|
}
|
|
17870
17870
|
|
|
17871
|
-
export type
|
|
17871
|
+
export type MissionPrefillUncheckedCreateInput = {
|
|
17872
17872
|
id?: string
|
|
17873
17873
|
userId: string
|
|
17874
17874
|
missionName?: string | null
|
|
@@ -17882,7 +17882,7 @@ export namespace Prisma {
|
|
|
17882
17882
|
updatedAt?: Date | string
|
|
17883
17883
|
}
|
|
17884
17884
|
|
|
17885
|
-
export type
|
|
17885
|
+
export type MissionPrefillUpdateInput = {
|
|
17886
17886
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17887
17887
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17888
17888
|
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -17892,10 +17892,10 @@ export namespace Prisma {
|
|
|
17892
17892
|
status?: StringFieldUpdateOperationsInput | string
|
|
17893
17893
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17894
17894
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17895
|
-
user?:
|
|
17895
|
+
user?: UserUpdateOneRequiredWithoutMissionPrefillsNestedInput
|
|
17896
17896
|
}
|
|
17897
17897
|
|
|
17898
|
-
export type
|
|
17898
|
+
export type MissionPrefillUncheckedUpdateInput = {
|
|
17899
17899
|
userId?: StringFieldUpdateOperationsInput | string
|
|
17900
17900
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17901
17901
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -17908,7 +17908,7 @@ export namespace Prisma {
|
|
|
17908
17908
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17909
17909
|
}
|
|
17910
17910
|
|
|
17911
|
-
export type
|
|
17911
|
+
export type MissionPrefillCreateManyInput = {
|
|
17912
17912
|
id?: string
|
|
17913
17913
|
userId: string
|
|
17914
17914
|
missionName?: string | null
|
|
@@ -17922,7 +17922,7 @@ export namespace Prisma {
|
|
|
17922
17922
|
updatedAt?: Date | string
|
|
17923
17923
|
}
|
|
17924
17924
|
|
|
17925
|
-
export type
|
|
17925
|
+
export type MissionPrefillUpdateManyMutationInput = {
|
|
17926
17926
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17927
17927
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17928
17928
|
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -17934,7 +17934,7 @@ export namespace Prisma {
|
|
|
17934
17934
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17935
17935
|
}
|
|
17936
17936
|
|
|
17937
|
-
export type
|
|
17937
|
+
export type MissionPrefillUncheckedUpdateManyInput = {
|
|
17938
17938
|
userId?: StringFieldUpdateOperationsInput | string
|
|
17939
17939
|
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17940
17940
|
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -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 = {
|
|
@@ -19329,7 +19329,7 @@ export namespace Prisma {
|
|
|
19329
19329
|
isNot?: UserWhereInput
|
|
19330
19330
|
}
|
|
19331
19331
|
|
|
19332
|
-
export type
|
|
19332
|
+
export type MissionPrefillCountOrderByAggregateInput = {
|
|
19333
19333
|
id?: SortOrder
|
|
19334
19334
|
userId?: SortOrder
|
|
19335
19335
|
missionName?: SortOrder
|
|
@@ -19343,7 +19343,7 @@ export namespace Prisma {
|
|
|
19343
19343
|
updatedAt?: SortOrder
|
|
19344
19344
|
}
|
|
19345
19345
|
|
|
19346
|
-
export type
|
|
19346
|
+
export type MissionPrefillMaxOrderByAggregateInput = {
|
|
19347
19347
|
id?: SortOrder
|
|
19348
19348
|
userId?: SortOrder
|
|
19349
19349
|
missionName?: SortOrder
|
|
@@ -19356,7 +19356,7 @@ export namespace Prisma {
|
|
|
19356
19356
|
updatedAt?: SortOrder
|
|
19357
19357
|
}
|
|
19358
19358
|
|
|
19359
|
-
export type
|
|
19359
|
+
export type MissionPrefillMinOrderByAggregateInput = {
|
|
19360
19360
|
id?: SortOrder
|
|
19361
19361
|
userId?: SortOrder
|
|
19362
19362
|
missionName?: SortOrder
|
|
@@ -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,18 +20453,18 @@ export namespace Prisma {
|
|
|
20453
20453
|
deleteMany?: ContractScalarWhereInput | ContractScalarWhereInput[]
|
|
20454
20454
|
}
|
|
20455
20455
|
|
|
20456
|
-
export type
|
|
20457
|
-
create?: XOR<
|
|
20458
|
-
connectOrCreate?:
|
|
20456
|
+
export type UserCreateNestedOneWithoutMissionPrefillsInput = {
|
|
20457
|
+
create?: XOR<UserCreateWithoutMissionPrefillsInput, UserUncheckedCreateWithoutMissionPrefillsInput>
|
|
20458
|
+
connectOrCreate?: UserCreateOrConnectWithoutMissionPrefillsInput
|
|
20459
20459
|
connect?: UserWhereUniqueInput
|
|
20460
20460
|
}
|
|
20461
20461
|
|
|
20462
|
-
export type
|
|
20463
|
-
create?: XOR<
|
|
20464
|
-
connectOrCreate?:
|
|
20465
|
-
upsert?:
|
|
20462
|
+
export type UserUpdateOneRequiredWithoutMissionPrefillsNestedInput = {
|
|
20463
|
+
create?: XOR<UserCreateWithoutMissionPrefillsInput, UserUncheckedCreateWithoutMissionPrefillsInput>
|
|
20464
|
+
connectOrCreate?: UserCreateOrConnectWithoutMissionPrefillsInput
|
|
20465
|
+
upsert?: UserUpsertWithoutMissionPrefillsInput
|
|
20466
20466
|
connect?: UserWhereUniqueInput
|
|
20467
|
-
update?: XOR<XOR<
|
|
20467
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutMissionPrefillsInput, UserUpdateWithoutMissionPrefillsInput>, UserUncheckedUpdateWithoutMissionPrefillsInput>
|
|
20468
20468
|
}
|
|
20469
20469
|
|
|
20470
20470
|
export type AttachedLinkListCreateEnvelopeInput = {
|
|
@@ -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> = {
|
|
@@ -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,7 +22979,7 @@ export namespace Prisma {
|
|
|
22979
22979
|
documentTitle?: StringNullableFilter<"Contract"> | string | null
|
|
22980
22980
|
}
|
|
22981
22981
|
|
|
22982
|
-
export type
|
|
22982
|
+
export type UserCreateWithoutMissionPrefillsInput = {
|
|
22983
22983
|
id?: string
|
|
22984
22984
|
firstName?: string | null
|
|
22985
22985
|
lastName?: string | null
|
|
@@ -22998,7 +22998,7 @@ export namespace Prisma {
|
|
|
22998
22998
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
22999
22999
|
}
|
|
23000
23000
|
|
|
23001
|
-
export type
|
|
23001
|
+
export type UserUncheckedCreateWithoutMissionPrefillsInput = {
|
|
23002
23002
|
id?: string
|
|
23003
23003
|
firstName?: string | null
|
|
23004
23004
|
lastName?: string | null
|
|
@@ -23017,23 +23017,23 @@ export namespace Prisma {
|
|
|
23017
23017
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
23018
23018
|
}
|
|
23019
23019
|
|
|
23020
|
-
export type
|
|
23020
|
+
export type UserCreateOrConnectWithoutMissionPrefillsInput = {
|
|
23021
23021
|
where: UserWhereUniqueInput
|
|
23022
|
-
create: XOR<
|
|
23022
|
+
create: XOR<UserCreateWithoutMissionPrefillsInput, UserUncheckedCreateWithoutMissionPrefillsInput>
|
|
23023
23023
|
}
|
|
23024
23024
|
|
|
23025
|
-
export type
|
|
23026
|
-
update: XOR<
|
|
23027
|
-
create: XOR<
|
|
23025
|
+
export type UserUpsertWithoutMissionPrefillsInput = {
|
|
23026
|
+
update: XOR<UserUpdateWithoutMissionPrefillsInput, UserUncheckedUpdateWithoutMissionPrefillsInput>
|
|
23027
|
+
create: XOR<UserCreateWithoutMissionPrefillsInput, UserUncheckedCreateWithoutMissionPrefillsInput>
|
|
23028
23028
|
where?: UserWhereInput
|
|
23029
23029
|
}
|
|
23030
23030
|
|
|
23031
|
-
export type
|
|
23031
|
+
export type UserUpdateToOneWithWhereWithoutMissionPrefillsInput = {
|
|
23032
23032
|
where?: UserWhereInput
|
|
23033
|
-
data: XOR<
|
|
23033
|
+
data: XOR<UserUpdateWithoutMissionPrefillsInput, UserUncheckedUpdateWithoutMissionPrefillsInput>
|
|
23034
23034
|
}
|
|
23035
23035
|
|
|
23036
|
-
export type
|
|
23036
|
+
export type UserUpdateWithoutMissionPrefillsInput = {
|
|
23037
23037
|
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23038
23038
|
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23039
23039
|
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -23051,7 +23051,7 @@ export namespace Prisma {
|
|
|
23051
23051
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
23052
23052
|
}
|
|
23053
23053
|
|
|
23054
|
-
export type
|
|
23054
|
+
export type UserUncheckedUpdateWithoutMissionPrefillsInput = {
|
|
23055
23055
|
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23056
23056
|
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23057
23057
|
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -23148,7 +23148,7 @@ export namespace Prisma {
|
|
|
23148
23148
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
23149
23149
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
23150
23150
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
23151
|
-
|
|
23151
|
+
missionPrefills?: MissionPrefillCreateNestedManyWithoutUserInput
|
|
23152
23152
|
}
|
|
23153
23153
|
|
|
23154
23154
|
export type UserUncheckedCreateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -23167,7 +23167,7 @@ export namespace Prisma {
|
|
|
23167
23167
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
23168
23168
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
23169
23169
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
23170
|
-
|
|
23170
|
+
missionPrefills?: MissionPrefillUncheckedCreateNestedManyWithoutUserInput
|
|
23171
23171
|
}
|
|
23172
23172
|
|
|
23173
23173
|
export type UserCreateOrConnectWithoutAuthoredMissionSpecsInput = {
|
|
@@ -23224,7 +23224,7 @@ export namespace Prisma {
|
|
|
23224
23224
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
23225
23225
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
23226
23226
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
23227
|
-
|
|
23227
|
+
missionPrefills?: MissionPrefillCreateNestedManyWithoutUserInput
|
|
23228
23228
|
}
|
|
23229
23229
|
|
|
23230
23230
|
export type UserUncheckedCreateWithoutModifiedMissionSpecsInput = {
|
|
@@ -23243,7 +23243,7 @@ export namespace Prisma {
|
|
|
23243
23243
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
23244
23244
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
23245
23245
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
23246
|
-
|
|
23246
|
+
missionPrefills?: MissionPrefillUncheckedCreateNestedManyWithoutUserInput
|
|
23247
23247
|
}
|
|
23248
23248
|
|
|
23249
23249
|
export type UserCreateOrConnectWithoutModifiedMissionSpecsInput = {
|
|
@@ -23450,7 +23450,7 @@ export namespace Prisma {
|
|
|
23450
23450
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23451
23451
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23452
23452
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
23453
|
-
|
|
23453
|
+
missionPrefills?: MissionPrefillUpdateManyWithoutUserNestedInput
|
|
23454
23454
|
}
|
|
23455
23455
|
|
|
23456
23456
|
export type UserUncheckedUpdateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -23468,7 +23468,7 @@ export namespace Prisma {
|
|
|
23468
23468
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23469
23469
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23470
23470
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
23471
|
-
|
|
23471
|
+
missionPrefills?: MissionPrefillUncheckedUpdateManyWithoutUserNestedInput
|
|
23472
23472
|
}
|
|
23473
23473
|
|
|
23474
23474
|
export type ClientCompanyUpsertWithoutMissionSpecsInput = {
|
|
@@ -23534,7 +23534,7 @@ export namespace Prisma {
|
|
|
23534
23534
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23535
23535
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23536
23536
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
23537
|
-
|
|
23537
|
+
missionPrefills?: MissionPrefillUpdateManyWithoutUserNestedInput
|
|
23538
23538
|
}
|
|
23539
23539
|
|
|
23540
23540
|
export type UserUncheckedUpdateWithoutModifiedMissionSpecsInput = {
|
|
@@ -23552,7 +23552,7 @@ export namespace Prisma {
|
|
|
23552
23552
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23553
23553
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23554
23554
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
23555
|
-
|
|
23555
|
+
missionPrefills?: MissionPrefillUncheckedUpdateManyWithoutUserNestedInput
|
|
23556
23556
|
}
|
|
23557
23557
|
|
|
23558
23558
|
export type MissionUpsertWithoutMissionSpecInput = {
|
|
@@ -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,9 +26181,9 @@ 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
26188
|
* @deprecated Use MissionSpecDefaultArgs instead
|
|
26189
26189
|
*/
|