@a_team/prisma 2.1.4 → 2.1.6
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 +24 -6
- package/dist/client/index-browser.js +19 -1
- package/dist/client/index.d.ts +2011 -143
- package/dist/client/index.js +24 -6
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +29 -9
- package/dist/client/wasm.js +19 -1
- package/package.json +1 -1
package/dist/client/index.d.ts
CHANGED
|
@@ -178,6 +178,11 @@ export type Mission = $Result.DefaultSelection<Prisma.$MissionPayload>
|
|
|
178
178
|
*
|
|
179
179
|
*/
|
|
180
180
|
export type MissionSpec = $Result.DefaultSelection<Prisma.$MissionSpecPayload>
|
|
181
|
+
/**
|
|
182
|
+
* Model MissionSpecPreFill
|
|
183
|
+
*
|
|
184
|
+
*/
|
|
185
|
+
export type MissionSpecPreFill = $Result.DefaultSelection<Prisma.$MissionSpecPreFillPayload>
|
|
181
186
|
/**
|
|
182
187
|
* Model RoleCategory
|
|
183
188
|
*
|
|
@@ -420,6 +425,16 @@ export class PrismaClient<
|
|
|
420
425
|
*/
|
|
421
426
|
get missionSpec(): Prisma.MissionSpecDelegate<ExtArgs>;
|
|
422
427
|
|
|
428
|
+
/**
|
|
429
|
+
* `prisma.missionSpecPreFill`: Exposes CRUD operations for the **MissionSpecPreFill** model.
|
|
430
|
+
* Example usage:
|
|
431
|
+
* ```ts
|
|
432
|
+
* // Fetch zero or more MissionSpecPreFills
|
|
433
|
+
* const missionSpecPreFills = await prisma.missionSpecPreFill.findMany()
|
|
434
|
+
* ```
|
|
435
|
+
*/
|
|
436
|
+
get missionSpecPreFill(): Prisma.MissionSpecPreFillDelegate<ExtArgs>;
|
|
437
|
+
|
|
423
438
|
/**
|
|
424
439
|
* `prisma.roleCategory`: Exposes CRUD operations for the **RoleCategory** model.
|
|
425
440
|
* Example usage:
|
|
@@ -942,6 +957,7 @@ export namespace Prisma {
|
|
|
942
957
|
Contract: 'Contract',
|
|
943
958
|
Mission: 'Mission',
|
|
944
959
|
MissionSpec: 'MissionSpec',
|
|
960
|
+
MissionSpecPreFill: 'MissionSpecPreFill',
|
|
945
961
|
RoleCategory: 'RoleCategory',
|
|
946
962
|
TalentCategory: 'TalentCategory',
|
|
947
963
|
TalentIndustry: 'TalentIndustry',
|
|
@@ -961,7 +977,7 @@ export namespace Prisma {
|
|
|
961
977
|
|
|
962
978
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
|
963
979
|
meta: {
|
|
964
|
-
modelProps: "account" | "clientCompany" | "company" | "contract" | "mission" | "missionSpec" | "roleCategory" | "talentCategory" | "talentIndustry" | "user"
|
|
980
|
+
modelProps: "account" | "clientCompany" | "company" | "contract" | "mission" | "missionSpec" | "missionSpecPreFill" | "roleCategory" | "talentCategory" | "talentIndustry" | "user"
|
|
965
981
|
txIsolationLevel: never
|
|
966
982
|
}
|
|
967
983
|
model: {
|
|
@@ -1409,6 +1425,80 @@ export namespace Prisma {
|
|
|
1409
1425
|
}
|
|
1410
1426
|
}
|
|
1411
1427
|
}
|
|
1428
|
+
MissionSpecPreFill: {
|
|
1429
|
+
payload: Prisma.$MissionSpecPreFillPayload<ExtArgs>
|
|
1430
|
+
fields: Prisma.MissionSpecPreFillFieldRefs
|
|
1431
|
+
operations: {
|
|
1432
|
+
findUnique: {
|
|
1433
|
+
args: Prisma.MissionSpecPreFillFindUniqueArgs<ExtArgs>
|
|
1434
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPreFillPayload> | null
|
|
1435
|
+
}
|
|
1436
|
+
findUniqueOrThrow: {
|
|
1437
|
+
args: Prisma.MissionSpecPreFillFindUniqueOrThrowArgs<ExtArgs>
|
|
1438
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPreFillPayload>
|
|
1439
|
+
}
|
|
1440
|
+
findFirst: {
|
|
1441
|
+
args: Prisma.MissionSpecPreFillFindFirstArgs<ExtArgs>
|
|
1442
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPreFillPayload> | null
|
|
1443
|
+
}
|
|
1444
|
+
findFirstOrThrow: {
|
|
1445
|
+
args: Prisma.MissionSpecPreFillFindFirstOrThrowArgs<ExtArgs>
|
|
1446
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPreFillPayload>
|
|
1447
|
+
}
|
|
1448
|
+
findMany: {
|
|
1449
|
+
args: Prisma.MissionSpecPreFillFindManyArgs<ExtArgs>
|
|
1450
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPreFillPayload>[]
|
|
1451
|
+
}
|
|
1452
|
+
create: {
|
|
1453
|
+
args: Prisma.MissionSpecPreFillCreateArgs<ExtArgs>
|
|
1454
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPreFillPayload>
|
|
1455
|
+
}
|
|
1456
|
+
createMany: {
|
|
1457
|
+
args: Prisma.MissionSpecPreFillCreateManyArgs<ExtArgs>
|
|
1458
|
+
result: BatchPayload
|
|
1459
|
+
}
|
|
1460
|
+
delete: {
|
|
1461
|
+
args: Prisma.MissionSpecPreFillDeleteArgs<ExtArgs>
|
|
1462
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPreFillPayload>
|
|
1463
|
+
}
|
|
1464
|
+
update: {
|
|
1465
|
+
args: Prisma.MissionSpecPreFillUpdateArgs<ExtArgs>
|
|
1466
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPreFillPayload>
|
|
1467
|
+
}
|
|
1468
|
+
deleteMany: {
|
|
1469
|
+
args: Prisma.MissionSpecPreFillDeleteManyArgs<ExtArgs>
|
|
1470
|
+
result: BatchPayload
|
|
1471
|
+
}
|
|
1472
|
+
updateMany: {
|
|
1473
|
+
args: Prisma.MissionSpecPreFillUpdateManyArgs<ExtArgs>
|
|
1474
|
+
result: BatchPayload
|
|
1475
|
+
}
|
|
1476
|
+
upsert: {
|
|
1477
|
+
args: Prisma.MissionSpecPreFillUpsertArgs<ExtArgs>
|
|
1478
|
+
result: $Utils.PayloadToResult<Prisma.$MissionSpecPreFillPayload>
|
|
1479
|
+
}
|
|
1480
|
+
aggregate: {
|
|
1481
|
+
args: Prisma.MissionSpecPreFillAggregateArgs<ExtArgs>
|
|
1482
|
+
result: $Utils.Optional<AggregateMissionSpecPreFill>
|
|
1483
|
+
}
|
|
1484
|
+
groupBy: {
|
|
1485
|
+
args: Prisma.MissionSpecPreFillGroupByArgs<ExtArgs>
|
|
1486
|
+
result: $Utils.Optional<MissionSpecPreFillGroupByOutputType>[]
|
|
1487
|
+
}
|
|
1488
|
+
findRaw: {
|
|
1489
|
+
args: Prisma.MissionSpecPreFillFindRawArgs<ExtArgs>
|
|
1490
|
+
result: JsonObject
|
|
1491
|
+
}
|
|
1492
|
+
aggregateRaw: {
|
|
1493
|
+
args: Prisma.MissionSpecPreFillAggregateRawArgs<ExtArgs>
|
|
1494
|
+
result: JsonObject
|
|
1495
|
+
}
|
|
1496
|
+
count: {
|
|
1497
|
+
args: Prisma.MissionSpecPreFillCountArgs<ExtArgs>
|
|
1498
|
+
result: $Utils.Optional<MissionSpecPreFillCountAggregateOutputType> | number
|
|
1499
|
+
}
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1412
1502
|
RoleCategory: {
|
|
1413
1503
|
payload: Prisma.$RoleCategoryPayload<ExtArgs>
|
|
1414
1504
|
fields: Prisma.RoleCategoryFieldRefs
|
|
@@ -1999,6 +2089,7 @@ export namespace Prisma {
|
|
|
1999
2089
|
ownedMissionsModels: number
|
|
2000
2090
|
authoredMissionSpecs: number
|
|
2001
2091
|
modifiedMissionSpecs: number
|
|
2092
|
+
missionSpecPreFills: number
|
|
2002
2093
|
}
|
|
2003
2094
|
|
|
2004
2095
|
export type UserCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -2006,6 +2097,7 @@ export namespace Prisma {
|
|
|
2006
2097
|
ownedMissionsModels?: boolean | UserCountOutputTypeCountOwnedMissionsModelsArgs
|
|
2007
2098
|
authoredMissionSpecs?: boolean | UserCountOutputTypeCountAuthoredMissionSpecsArgs
|
|
2008
2099
|
modifiedMissionSpecs?: boolean | UserCountOutputTypeCountModifiedMissionSpecsArgs
|
|
2100
|
+
missionSpecPreFills?: boolean | UserCountOutputTypeCountMissionSpecPreFillsArgs
|
|
2009
2101
|
}
|
|
2010
2102
|
|
|
2011
2103
|
// Custom InputTypes
|
|
@@ -2047,6 +2139,13 @@ export namespace Prisma {
|
|
|
2047
2139
|
where?: MissionSpecWhereInput
|
|
2048
2140
|
}
|
|
2049
2141
|
|
|
2142
|
+
/**
|
|
2143
|
+
* UserCountOutputType without action
|
|
2144
|
+
*/
|
|
2145
|
+
export type UserCountOutputTypeCountMissionSpecPreFillsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2146
|
+
where?: MissionSpecPreFillWhereInput
|
|
2147
|
+
}
|
|
2148
|
+
|
|
2050
2149
|
|
|
2051
2150
|
/**
|
|
2052
2151
|
* Models
|
|
@@ -8028,12 +8127,14 @@ export namespace Prisma {
|
|
|
8028
8127
|
clientMargin: number | null
|
|
8029
8128
|
expectedDurationMonths: number | null
|
|
8030
8129
|
rolesMargin: number | null
|
|
8130
|
+
overlapMinutes: number | null
|
|
8031
8131
|
}
|
|
8032
8132
|
|
|
8033
8133
|
export type MissionSumAggregateOutputType = {
|
|
8034
8134
|
clientMargin: number | null
|
|
8035
8135
|
expectedDurationMonths: number | null
|
|
8036
8136
|
rolesMargin: number | null
|
|
8137
|
+
overlapMinutes: number | null
|
|
8037
8138
|
}
|
|
8038
8139
|
|
|
8039
8140
|
export type MissionMinAggregateOutputType = {
|
|
@@ -8070,6 +8171,9 @@ export namespace Prisma {
|
|
|
8070
8171
|
updatedAt: Date | null
|
|
8071
8172
|
videoURL: string | null
|
|
8072
8173
|
website: string | null
|
|
8174
|
+
startDate: Date | null
|
|
8175
|
+
overlapMinutes: number | null
|
|
8176
|
+
timezone: string | null
|
|
8073
8177
|
}
|
|
8074
8178
|
|
|
8075
8179
|
export type MissionMaxAggregateOutputType = {
|
|
@@ -8106,6 +8210,9 @@ export namespace Prisma {
|
|
|
8106
8210
|
updatedAt: Date | null
|
|
8107
8211
|
videoURL: string | null
|
|
8108
8212
|
website: string | null
|
|
8213
|
+
startDate: Date | null
|
|
8214
|
+
overlapMinutes: number | null
|
|
8215
|
+
timezone: string | null
|
|
8109
8216
|
}
|
|
8110
8217
|
|
|
8111
8218
|
export type MissionCountAggregateOutputType = {
|
|
@@ -8146,6 +8253,9 @@ export namespace Prisma {
|
|
|
8146
8253
|
updatedAt: number
|
|
8147
8254
|
videoURL: number
|
|
8148
8255
|
website: number
|
|
8256
|
+
startDate: number
|
|
8257
|
+
overlapMinutes: number
|
|
8258
|
+
timezone: number
|
|
8149
8259
|
_all: number
|
|
8150
8260
|
}
|
|
8151
8261
|
|
|
@@ -8154,12 +8264,14 @@ export namespace Prisma {
|
|
|
8154
8264
|
clientMargin?: true
|
|
8155
8265
|
expectedDurationMonths?: true
|
|
8156
8266
|
rolesMargin?: true
|
|
8267
|
+
overlapMinutes?: true
|
|
8157
8268
|
}
|
|
8158
8269
|
|
|
8159
8270
|
export type MissionSumAggregateInputType = {
|
|
8160
8271
|
clientMargin?: true
|
|
8161
8272
|
expectedDurationMonths?: true
|
|
8162
8273
|
rolesMargin?: true
|
|
8274
|
+
overlapMinutes?: true
|
|
8163
8275
|
}
|
|
8164
8276
|
|
|
8165
8277
|
export type MissionMinAggregateInputType = {
|
|
@@ -8196,6 +8308,9 @@ export namespace Prisma {
|
|
|
8196
8308
|
updatedAt?: true
|
|
8197
8309
|
videoURL?: true
|
|
8198
8310
|
website?: true
|
|
8311
|
+
startDate?: true
|
|
8312
|
+
overlapMinutes?: true
|
|
8313
|
+
timezone?: true
|
|
8199
8314
|
}
|
|
8200
8315
|
|
|
8201
8316
|
export type MissionMaxAggregateInputType = {
|
|
@@ -8232,6 +8347,9 @@ export namespace Prisma {
|
|
|
8232
8347
|
updatedAt?: true
|
|
8233
8348
|
videoURL?: true
|
|
8234
8349
|
website?: true
|
|
8350
|
+
startDate?: true
|
|
8351
|
+
overlapMinutes?: true
|
|
8352
|
+
timezone?: true
|
|
8235
8353
|
}
|
|
8236
8354
|
|
|
8237
8355
|
export type MissionCountAggregateInputType = {
|
|
@@ -8272,6 +8390,9 @@ export namespace Prisma {
|
|
|
8272
8390
|
updatedAt?: true
|
|
8273
8391
|
videoURL?: true
|
|
8274
8392
|
website?: true
|
|
8393
|
+
startDate?: true
|
|
8394
|
+
overlapMinutes?: true
|
|
8395
|
+
timezone?: true
|
|
8275
8396
|
_all?: true
|
|
8276
8397
|
}
|
|
8277
8398
|
|
|
@@ -8399,6 +8520,9 @@ export namespace Prisma {
|
|
|
8399
8520
|
updatedAt: Date | null
|
|
8400
8521
|
videoURL: string | null
|
|
8401
8522
|
website: string | null
|
|
8523
|
+
startDate: Date | null
|
|
8524
|
+
overlapMinutes: number | null
|
|
8525
|
+
timezone: string | null
|
|
8402
8526
|
_count: MissionCountAggregateOutputType | null
|
|
8403
8527
|
_avg: MissionAvgAggregateOutputType | null
|
|
8404
8528
|
_sum: MissionSumAggregateOutputType | null
|
|
@@ -8464,6 +8588,9 @@ export namespace Prisma {
|
|
|
8464
8588
|
updatedAt?: boolean
|
|
8465
8589
|
videoURL?: boolean
|
|
8466
8590
|
website?: boolean
|
|
8591
|
+
startDate?: boolean
|
|
8592
|
+
overlapMinutes?: boolean
|
|
8593
|
+
timezone?: boolean
|
|
8467
8594
|
accountModel?: boolean | Mission$accountModelArgs<ExtArgs>
|
|
8468
8595
|
creatorModel?: boolean | Mission$creatorModelArgs<ExtArgs>
|
|
8469
8596
|
missionSpec?: boolean | MissionSpecDefaultArgs<ExtArgs>
|
|
@@ -8511,6 +8638,9 @@ export namespace Prisma {
|
|
|
8511
8638
|
updatedAt?: boolean
|
|
8512
8639
|
videoURL?: boolean
|
|
8513
8640
|
website?: boolean
|
|
8641
|
+
startDate?: boolean
|
|
8642
|
+
overlapMinutes?: boolean
|
|
8643
|
+
timezone?: boolean
|
|
8514
8644
|
}
|
|
8515
8645
|
|
|
8516
8646
|
export type MissionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -8569,6 +8699,9 @@ export namespace Prisma {
|
|
|
8569
8699
|
updatedAt: Date | null
|
|
8570
8700
|
videoURL: string | null
|
|
8571
8701
|
website: string | null
|
|
8702
|
+
startDate: Date | null
|
|
8703
|
+
overlapMinutes: number | null
|
|
8704
|
+
timezone: string | null
|
|
8572
8705
|
}, ExtArgs["result"]["mission"]>
|
|
8573
8706
|
composites: {
|
|
8574
8707
|
attachedLinks: Prisma.$MissionsAttachedLinkPayload[]
|
|
@@ -9010,6 +9143,9 @@ export namespace Prisma {
|
|
|
9010
9143
|
readonly updatedAt: FieldRef<"Mission", 'DateTime'>
|
|
9011
9144
|
readonly videoURL: FieldRef<"Mission", 'String'>
|
|
9012
9145
|
readonly website: FieldRef<"Mission", 'String'>
|
|
9146
|
+
readonly startDate: FieldRef<"Mission", 'DateTime'>
|
|
9147
|
+
readonly overlapMinutes: FieldRef<"Mission", 'Int'>
|
|
9148
|
+
readonly timezone: FieldRef<"Mission", 'String'>
|
|
9013
9149
|
}
|
|
9014
9150
|
|
|
9015
9151
|
|
|
@@ -10657,314 +10793,1305 @@ export namespace Prisma {
|
|
|
10657
10793
|
|
|
10658
10794
|
|
|
10659
10795
|
/**
|
|
10660
|
-
* Model
|
|
10796
|
+
* Model MissionSpecPreFill
|
|
10661
10797
|
*/
|
|
10662
10798
|
|
|
10663
|
-
export type
|
|
10664
|
-
_count:
|
|
10665
|
-
_min:
|
|
10666
|
-
_max:
|
|
10799
|
+
export type AggregateMissionSpecPreFill = {
|
|
10800
|
+
_count: MissionSpecPreFillCountAggregateOutputType | null
|
|
10801
|
+
_min: MissionSpecPreFillMinAggregateOutputType | null
|
|
10802
|
+
_max: MissionSpecPreFillMaxAggregateOutputType | null
|
|
10667
10803
|
}
|
|
10668
10804
|
|
|
10669
|
-
export type
|
|
10805
|
+
export type MissionSpecPreFillMinAggregateOutputType = {
|
|
10670
10806
|
id: string | null
|
|
10671
|
-
|
|
10672
|
-
|
|
10673
|
-
|
|
10807
|
+
userId: string | null
|
|
10808
|
+
missionName: string | null
|
|
10809
|
+
plannedStart: string | null
|
|
10810
|
+
companyDescription: string | null
|
|
10811
|
+
missionDescription: string | null
|
|
10812
|
+
timezone: string | null
|
|
10813
|
+
status: string | null
|
|
10814
|
+
createdAt: Date | null
|
|
10815
|
+
updatedAt: Date | null
|
|
10674
10816
|
}
|
|
10675
10817
|
|
|
10676
|
-
export type
|
|
10818
|
+
export type MissionSpecPreFillMaxAggregateOutputType = {
|
|
10677
10819
|
id: string | null
|
|
10678
|
-
|
|
10679
|
-
|
|
10680
|
-
|
|
10820
|
+
userId: string | null
|
|
10821
|
+
missionName: string | null
|
|
10822
|
+
plannedStart: string | null
|
|
10823
|
+
companyDescription: string | null
|
|
10824
|
+
missionDescription: string | null
|
|
10825
|
+
timezone: string | null
|
|
10826
|
+
status: string | null
|
|
10827
|
+
createdAt: Date | null
|
|
10828
|
+
updatedAt: Date | null
|
|
10681
10829
|
}
|
|
10682
10830
|
|
|
10683
|
-
export type
|
|
10831
|
+
export type MissionSpecPreFillCountAggregateOutputType = {
|
|
10684
10832
|
id: number
|
|
10685
|
-
|
|
10686
|
-
|
|
10687
|
-
|
|
10688
|
-
|
|
10689
|
-
|
|
10833
|
+
userId: number
|
|
10834
|
+
missionName: number
|
|
10835
|
+
plannedStart: number
|
|
10836
|
+
companyDescription: number
|
|
10837
|
+
missionDescription: number
|
|
10838
|
+
timezone: number
|
|
10839
|
+
openRoles: number
|
|
10840
|
+
status: number
|
|
10841
|
+
createdAt: number
|
|
10842
|
+
updatedAt: number
|
|
10690
10843
|
_all: number
|
|
10691
10844
|
}
|
|
10692
10845
|
|
|
10693
10846
|
|
|
10694
|
-
export type
|
|
10847
|
+
export type MissionSpecPreFillMinAggregateInputType = {
|
|
10695
10848
|
id?: true
|
|
10696
|
-
|
|
10697
|
-
|
|
10698
|
-
|
|
10849
|
+
userId?: true
|
|
10850
|
+
missionName?: true
|
|
10851
|
+
plannedStart?: true
|
|
10852
|
+
companyDescription?: true
|
|
10853
|
+
missionDescription?: true
|
|
10854
|
+
timezone?: true
|
|
10855
|
+
status?: true
|
|
10856
|
+
createdAt?: true
|
|
10857
|
+
updatedAt?: true
|
|
10699
10858
|
}
|
|
10700
10859
|
|
|
10701
|
-
export type
|
|
10860
|
+
export type MissionSpecPreFillMaxAggregateInputType = {
|
|
10702
10861
|
id?: true
|
|
10703
|
-
|
|
10704
|
-
|
|
10705
|
-
|
|
10862
|
+
userId?: true
|
|
10863
|
+
missionName?: true
|
|
10864
|
+
plannedStart?: true
|
|
10865
|
+
companyDescription?: true
|
|
10866
|
+
missionDescription?: true
|
|
10867
|
+
timezone?: true
|
|
10868
|
+
status?: true
|
|
10869
|
+
createdAt?: true
|
|
10870
|
+
updatedAt?: true
|
|
10706
10871
|
}
|
|
10707
10872
|
|
|
10708
|
-
export type
|
|
10873
|
+
export type MissionSpecPreFillCountAggregateInputType = {
|
|
10709
10874
|
id?: true
|
|
10710
|
-
|
|
10711
|
-
|
|
10712
|
-
|
|
10713
|
-
|
|
10714
|
-
|
|
10875
|
+
userId?: true
|
|
10876
|
+
missionName?: true
|
|
10877
|
+
plannedStart?: true
|
|
10878
|
+
companyDescription?: true
|
|
10879
|
+
missionDescription?: true
|
|
10880
|
+
timezone?: true
|
|
10881
|
+
openRoles?: true
|
|
10882
|
+
status?: true
|
|
10883
|
+
createdAt?: true
|
|
10884
|
+
updatedAt?: true
|
|
10715
10885
|
_all?: true
|
|
10716
10886
|
}
|
|
10717
10887
|
|
|
10718
|
-
export type
|
|
10888
|
+
export type MissionSpecPreFillAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10719
10889
|
/**
|
|
10720
|
-
* Filter which
|
|
10890
|
+
* Filter which MissionSpecPreFill to aggregate.
|
|
10721
10891
|
*/
|
|
10722
|
-
where?:
|
|
10892
|
+
where?: MissionSpecPreFillWhereInput
|
|
10723
10893
|
/**
|
|
10724
10894
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
10725
10895
|
*
|
|
10726
|
-
* Determine the order of
|
|
10896
|
+
* Determine the order of MissionSpecPreFills to fetch.
|
|
10727
10897
|
*/
|
|
10728
|
-
orderBy?:
|
|
10898
|
+
orderBy?: MissionSpecPreFillOrderByWithRelationInput | MissionSpecPreFillOrderByWithRelationInput[]
|
|
10729
10899
|
/**
|
|
10730
10900
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
10731
10901
|
*
|
|
10732
10902
|
* Sets the start position
|
|
10733
10903
|
*/
|
|
10734
|
-
cursor?:
|
|
10904
|
+
cursor?: MissionSpecPreFillWhereUniqueInput
|
|
10735
10905
|
/**
|
|
10736
10906
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10737
10907
|
*
|
|
10738
|
-
* Take `±n`
|
|
10908
|
+
* Take `±n` MissionSpecPreFills from the position of the cursor.
|
|
10739
10909
|
*/
|
|
10740
10910
|
take?: number
|
|
10741
10911
|
/**
|
|
10742
10912
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10743
10913
|
*
|
|
10744
|
-
* Skip the first `n`
|
|
10914
|
+
* Skip the first `n` MissionSpecPreFills.
|
|
10745
10915
|
*/
|
|
10746
10916
|
skip?: number
|
|
10747
10917
|
/**
|
|
10748
10918
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
10749
10919
|
*
|
|
10750
|
-
* Count returned
|
|
10920
|
+
* Count returned MissionSpecPreFills
|
|
10751
10921
|
**/
|
|
10752
|
-
_count?: true |
|
|
10922
|
+
_count?: true | MissionSpecPreFillCountAggregateInputType
|
|
10753
10923
|
/**
|
|
10754
10924
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
10755
10925
|
*
|
|
10756
10926
|
* Select which fields to find the minimum value
|
|
10757
10927
|
**/
|
|
10758
|
-
_min?:
|
|
10928
|
+
_min?: MissionSpecPreFillMinAggregateInputType
|
|
10759
10929
|
/**
|
|
10760
10930
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
10761
10931
|
*
|
|
10762
10932
|
* Select which fields to find the maximum value
|
|
10763
10933
|
**/
|
|
10764
|
-
_max?:
|
|
10934
|
+
_max?: MissionSpecPreFillMaxAggregateInputType
|
|
10765
10935
|
}
|
|
10766
10936
|
|
|
10767
|
-
export type
|
|
10768
|
-
[P in keyof T & keyof
|
|
10937
|
+
export type GetMissionSpecPreFillAggregateType<T extends MissionSpecPreFillAggregateArgs> = {
|
|
10938
|
+
[P in keyof T & keyof AggregateMissionSpecPreFill]: P extends '_count' | 'count'
|
|
10769
10939
|
? T[P] extends true
|
|
10770
10940
|
? number
|
|
10771
|
-
: GetScalarType<T[P],
|
|
10772
|
-
: GetScalarType<T[P],
|
|
10941
|
+
: GetScalarType<T[P], AggregateMissionSpecPreFill[P]>
|
|
10942
|
+
: GetScalarType<T[P], AggregateMissionSpecPreFill[P]>
|
|
10773
10943
|
}
|
|
10774
10944
|
|
|
10775
10945
|
|
|
10776
10946
|
|
|
10777
10947
|
|
|
10778
|
-
export type
|
|
10779
|
-
where?:
|
|
10780
|
-
orderBy?:
|
|
10781
|
-
by:
|
|
10782
|
-
having?:
|
|
10948
|
+
export type MissionSpecPreFillGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10949
|
+
where?: MissionSpecPreFillWhereInput
|
|
10950
|
+
orderBy?: MissionSpecPreFillOrderByWithAggregationInput | MissionSpecPreFillOrderByWithAggregationInput[]
|
|
10951
|
+
by: MissionSpecPreFillScalarFieldEnum[] | MissionSpecPreFillScalarFieldEnum
|
|
10952
|
+
having?: MissionSpecPreFillScalarWhereWithAggregatesInput
|
|
10783
10953
|
take?: number
|
|
10784
10954
|
skip?: number
|
|
10785
|
-
_count?:
|
|
10786
|
-
_min?:
|
|
10787
|
-
_max?:
|
|
10955
|
+
_count?: MissionSpecPreFillCountAggregateInputType | true
|
|
10956
|
+
_min?: MissionSpecPreFillMinAggregateInputType
|
|
10957
|
+
_max?: MissionSpecPreFillMaxAggregateInputType
|
|
10788
10958
|
}
|
|
10789
10959
|
|
|
10790
|
-
export type
|
|
10960
|
+
export type MissionSpecPreFillGroupByOutputType = {
|
|
10791
10961
|
id: string
|
|
10792
|
-
|
|
10793
|
-
|
|
10794
|
-
|
|
10795
|
-
|
|
10796
|
-
|
|
10797
|
-
|
|
10798
|
-
|
|
10799
|
-
|
|
10962
|
+
userId: string
|
|
10963
|
+
missionName: string | null
|
|
10964
|
+
plannedStart: string | null
|
|
10965
|
+
companyDescription: string | null
|
|
10966
|
+
missionDescription: string | null
|
|
10967
|
+
timezone: string | null
|
|
10968
|
+
openRoles: JsonValue | null
|
|
10969
|
+
status: string
|
|
10970
|
+
createdAt: Date
|
|
10971
|
+
updatedAt: Date
|
|
10972
|
+
_count: MissionSpecPreFillCountAggregateOutputType | null
|
|
10973
|
+
_min: MissionSpecPreFillMinAggregateOutputType | null
|
|
10974
|
+
_max: MissionSpecPreFillMaxAggregateOutputType | null
|
|
10800
10975
|
}
|
|
10801
10976
|
|
|
10802
|
-
type
|
|
10977
|
+
type GetMissionSpecPreFillGroupByPayload<T extends MissionSpecPreFillGroupByArgs> = Prisma.PrismaPromise<
|
|
10803
10978
|
Array<
|
|
10804
|
-
PickEnumerable<
|
|
10979
|
+
PickEnumerable<MissionSpecPreFillGroupByOutputType, T['by']> &
|
|
10805
10980
|
{
|
|
10806
|
-
[P in ((keyof T) & (keyof
|
|
10981
|
+
[P in ((keyof T) & (keyof MissionSpecPreFillGroupByOutputType))]: P extends '_count'
|
|
10807
10982
|
? T[P] extends boolean
|
|
10808
10983
|
? number
|
|
10809
|
-
: GetScalarType<T[P],
|
|
10810
|
-
: GetScalarType<T[P],
|
|
10984
|
+
: GetScalarType<T[P], MissionSpecPreFillGroupByOutputType[P]>
|
|
10985
|
+
: GetScalarType<T[P], MissionSpecPreFillGroupByOutputType[P]>
|
|
10811
10986
|
}
|
|
10812
10987
|
>
|
|
10813
10988
|
>
|
|
10814
10989
|
|
|
10815
10990
|
|
|
10816
|
-
export type
|
|
10991
|
+
export type MissionSpecPreFillSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
10817
10992
|
id?: boolean
|
|
10818
|
-
|
|
10819
|
-
|
|
10820
|
-
|
|
10821
|
-
|
|
10822
|
-
|
|
10823
|
-
|
|
10993
|
+
userId?: boolean
|
|
10994
|
+
missionName?: boolean
|
|
10995
|
+
plannedStart?: boolean
|
|
10996
|
+
companyDescription?: boolean
|
|
10997
|
+
missionDescription?: boolean
|
|
10998
|
+
timezone?: boolean
|
|
10999
|
+
openRoles?: boolean
|
|
11000
|
+
status?: boolean
|
|
11001
|
+
createdAt?: boolean
|
|
11002
|
+
updatedAt?: boolean
|
|
11003
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
11004
|
+
}, ExtArgs["result"]["missionSpecPreFill"]>
|
|
10824
11005
|
|
|
10825
11006
|
|
|
10826
|
-
export type
|
|
11007
|
+
export type MissionSpecPreFillSelectScalar = {
|
|
10827
11008
|
id?: boolean
|
|
10828
|
-
|
|
10829
|
-
|
|
10830
|
-
|
|
10831
|
-
|
|
10832
|
-
|
|
11009
|
+
userId?: boolean
|
|
11010
|
+
missionName?: boolean
|
|
11011
|
+
plannedStart?: boolean
|
|
11012
|
+
companyDescription?: boolean
|
|
11013
|
+
missionDescription?: boolean
|
|
11014
|
+
timezone?: boolean
|
|
11015
|
+
openRoles?: boolean
|
|
11016
|
+
status?: boolean
|
|
11017
|
+
createdAt?: boolean
|
|
11018
|
+
updatedAt?: boolean
|
|
10833
11019
|
}
|
|
10834
11020
|
|
|
11021
|
+
export type MissionSpecPreFillInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11022
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
11023
|
+
}
|
|
10835
11024
|
|
|
10836
|
-
export type $
|
|
10837
|
-
name: "
|
|
10838
|
-
objects: {
|
|
11025
|
+
export type $MissionSpecPreFillPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11026
|
+
name: "MissionSpecPreFill"
|
|
11027
|
+
objects: {
|
|
11028
|
+
user: Prisma.$UserPayload<ExtArgs>
|
|
11029
|
+
}
|
|
10839
11030
|
scalars: $Extensions.GetPayloadResult<{
|
|
10840
11031
|
id: string
|
|
10841
|
-
|
|
10842
|
-
|
|
10843
|
-
|
|
10844
|
-
|
|
10845
|
-
|
|
10846
|
-
|
|
11032
|
+
userId: string
|
|
11033
|
+
missionName: string | null
|
|
11034
|
+
plannedStart: string | null
|
|
11035
|
+
companyDescription: string | null
|
|
11036
|
+
missionDescription: string | null
|
|
11037
|
+
timezone: string | null
|
|
11038
|
+
openRoles: Prisma.JsonValue | null
|
|
11039
|
+
status: string
|
|
11040
|
+
createdAt: Date
|
|
11041
|
+
updatedAt: Date
|
|
11042
|
+
}, ExtArgs["result"]["missionSpecPreFill"]>
|
|
10847
11043
|
composites: {}
|
|
10848
11044
|
}
|
|
10849
11045
|
|
|
10850
|
-
type
|
|
11046
|
+
type MissionSpecPreFillGetPayload<S extends boolean | null | undefined | MissionSpecPreFillDefaultArgs> = $Result.GetResult<Prisma.$MissionSpecPreFillPayload, S>
|
|
10851
11047
|
|
|
10852
|
-
type
|
|
10853
|
-
Omit<
|
|
10854
|
-
select?:
|
|
11048
|
+
type MissionSpecPreFillCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
11049
|
+
Omit<MissionSpecPreFillFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
11050
|
+
select?: MissionSpecPreFillCountAggregateInputType | true
|
|
10855
11051
|
}
|
|
10856
11052
|
|
|
10857
|
-
export interface
|
|
10858
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['
|
|
11053
|
+
export interface MissionSpecPreFillDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
11054
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['MissionSpecPreFill'], meta: { name: 'MissionSpecPreFill' } }
|
|
10859
11055
|
/**
|
|
10860
|
-
* Find zero or one
|
|
10861
|
-
* @param {
|
|
11056
|
+
* Find zero or one MissionSpecPreFill that matches the filter.
|
|
11057
|
+
* @param {MissionSpecPreFillFindUniqueArgs} args - Arguments to find a MissionSpecPreFill
|
|
10862
11058
|
* @example
|
|
10863
|
-
* // Get one
|
|
10864
|
-
* const
|
|
11059
|
+
* // Get one MissionSpecPreFill
|
|
11060
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.findUnique({
|
|
10865
11061
|
* where: {
|
|
10866
11062
|
* // ... provide filter here
|
|
10867
11063
|
* }
|
|
10868
11064
|
* })
|
|
10869
11065
|
*/
|
|
10870
|
-
findUnique<T extends
|
|
11066
|
+
findUnique<T extends MissionSpecPreFillFindUniqueArgs>(args: SelectSubset<T, MissionSpecPreFillFindUniqueArgs<ExtArgs>>): Prisma__MissionSpecPreFillClient<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
10871
11067
|
|
|
10872
11068
|
/**
|
|
10873
|
-
* Find one
|
|
11069
|
+
* Find one MissionSpecPreFill that matches the filter or throw an error with `error.code='P2025'`
|
|
10874
11070
|
* if no matches were found.
|
|
10875
|
-
* @param {
|
|
11071
|
+
* @param {MissionSpecPreFillFindUniqueOrThrowArgs} args - Arguments to find a MissionSpecPreFill
|
|
10876
11072
|
* @example
|
|
10877
|
-
* // Get one
|
|
10878
|
-
* const
|
|
11073
|
+
* // Get one MissionSpecPreFill
|
|
11074
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.findUniqueOrThrow({
|
|
10879
11075
|
* where: {
|
|
10880
11076
|
* // ... provide filter here
|
|
10881
11077
|
* }
|
|
10882
11078
|
* })
|
|
10883
11079
|
*/
|
|
10884
|
-
findUniqueOrThrow<T extends
|
|
11080
|
+
findUniqueOrThrow<T extends MissionSpecPreFillFindUniqueOrThrowArgs>(args: SelectSubset<T, MissionSpecPreFillFindUniqueOrThrowArgs<ExtArgs>>): Prisma__MissionSpecPreFillClient<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
10885
11081
|
|
|
10886
11082
|
/**
|
|
10887
|
-
* Find the first
|
|
11083
|
+
* Find the first MissionSpecPreFill that matches the filter.
|
|
10888
11084
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10889
11085
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10890
|
-
* @param {
|
|
11086
|
+
* @param {MissionSpecPreFillFindFirstArgs} args - Arguments to find a MissionSpecPreFill
|
|
10891
11087
|
* @example
|
|
10892
|
-
* // Get one
|
|
10893
|
-
* const
|
|
11088
|
+
* // Get one MissionSpecPreFill
|
|
11089
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.findFirst({
|
|
10894
11090
|
* where: {
|
|
10895
11091
|
* // ... provide filter here
|
|
10896
11092
|
* }
|
|
10897
11093
|
* })
|
|
10898
11094
|
*/
|
|
10899
|
-
findFirst<T extends
|
|
11095
|
+
findFirst<T extends MissionSpecPreFillFindFirstArgs>(args?: SelectSubset<T, MissionSpecPreFillFindFirstArgs<ExtArgs>>): Prisma__MissionSpecPreFillClient<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
10900
11096
|
|
|
10901
11097
|
/**
|
|
10902
|
-
* Find the first
|
|
11098
|
+
* Find the first MissionSpecPreFill that matches the filter or
|
|
10903
11099
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
10904
11100
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10905
11101
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10906
|
-
* @param {
|
|
11102
|
+
* @param {MissionSpecPreFillFindFirstOrThrowArgs} args - Arguments to find a MissionSpecPreFill
|
|
10907
11103
|
* @example
|
|
10908
|
-
* // Get one
|
|
10909
|
-
* const
|
|
11104
|
+
* // Get one MissionSpecPreFill
|
|
11105
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.findFirstOrThrow({
|
|
10910
11106
|
* where: {
|
|
10911
11107
|
* // ... provide filter here
|
|
10912
11108
|
* }
|
|
10913
11109
|
* })
|
|
10914
11110
|
*/
|
|
10915
|
-
findFirstOrThrow<T extends
|
|
11111
|
+
findFirstOrThrow<T extends MissionSpecPreFillFindFirstOrThrowArgs>(args?: SelectSubset<T, MissionSpecPreFillFindFirstOrThrowArgs<ExtArgs>>): Prisma__MissionSpecPreFillClient<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
10916
11112
|
|
|
10917
11113
|
/**
|
|
10918
|
-
* Find zero or more
|
|
11114
|
+
* Find zero or more MissionSpecPreFills that matches the filter.
|
|
10919
11115
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10920
11116
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10921
|
-
* @param {
|
|
11117
|
+
* @param {MissionSpecPreFillFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
10922
11118
|
* @example
|
|
10923
|
-
* // Get all
|
|
10924
|
-
* const
|
|
11119
|
+
* // Get all MissionSpecPreFills
|
|
11120
|
+
* const missionSpecPreFills = await prisma.missionSpecPreFill.findMany()
|
|
10925
11121
|
*
|
|
10926
|
-
* // Get first 10
|
|
10927
|
-
* const
|
|
11122
|
+
* // Get first 10 MissionSpecPreFills
|
|
11123
|
+
* const missionSpecPreFills = await prisma.missionSpecPreFill.findMany({ take: 10 })
|
|
10928
11124
|
*
|
|
10929
11125
|
* // Only select the `id`
|
|
10930
|
-
* const
|
|
11126
|
+
* const missionSpecPreFillWithIdOnly = await prisma.missionSpecPreFill.findMany({ select: { id: true } })
|
|
10931
11127
|
*
|
|
10932
11128
|
*/
|
|
10933
|
-
findMany<T extends
|
|
11129
|
+
findMany<T extends MissionSpecPreFillFindManyArgs>(args?: SelectSubset<T, MissionSpecPreFillFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "findMany">>
|
|
10934
11130
|
|
|
10935
11131
|
/**
|
|
10936
|
-
* Create a
|
|
10937
|
-
* @param {
|
|
11132
|
+
* Create a MissionSpecPreFill.
|
|
11133
|
+
* @param {MissionSpecPreFillCreateArgs} args - Arguments to create a MissionSpecPreFill.
|
|
10938
11134
|
* @example
|
|
10939
|
-
* // Create one
|
|
10940
|
-
* const
|
|
11135
|
+
* // Create one MissionSpecPreFill
|
|
11136
|
+
* const MissionSpecPreFill = await prisma.missionSpecPreFill.create({
|
|
10941
11137
|
* data: {
|
|
10942
|
-
* // ... data to create a
|
|
11138
|
+
* // ... data to create a MissionSpecPreFill
|
|
10943
11139
|
* }
|
|
10944
11140
|
* })
|
|
10945
11141
|
*
|
|
10946
11142
|
*/
|
|
10947
|
-
create<T extends
|
|
11143
|
+
create<T extends MissionSpecPreFillCreateArgs>(args: SelectSubset<T, MissionSpecPreFillCreateArgs<ExtArgs>>): Prisma__MissionSpecPreFillClient<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
10948
11144
|
|
|
10949
11145
|
/**
|
|
10950
|
-
* Create many
|
|
10951
|
-
* @param {
|
|
11146
|
+
* Create many MissionSpecPreFills.
|
|
11147
|
+
* @param {MissionSpecPreFillCreateManyArgs} args - Arguments to create many MissionSpecPreFills.
|
|
10952
11148
|
* @example
|
|
10953
|
-
* // Create many
|
|
10954
|
-
* const
|
|
11149
|
+
* // Create many MissionSpecPreFills
|
|
11150
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.createMany({
|
|
10955
11151
|
* data: [
|
|
10956
11152
|
* // ... provide data here
|
|
10957
11153
|
* ]
|
|
10958
11154
|
* })
|
|
10959
11155
|
*
|
|
10960
11156
|
*/
|
|
10961
|
-
createMany<T extends
|
|
11157
|
+
createMany<T extends MissionSpecPreFillCreateManyArgs>(args?: SelectSubset<T, MissionSpecPreFillCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
10962
11158
|
|
|
10963
11159
|
/**
|
|
10964
|
-
* Delete a
|
|
10965
|
-
* @param {
|
|
11160
|
+
* Delete a MissionSpecPreFill.
|
|
11161
|
+
* @param {MissionSpecPreFillDeleteArgs} args - Arguments to delete one MissionSpecPreFill.
|
|
10966
11162
|
* @example
|
|
10967
|
-
* // Delete one
|
|
11163
|
+
* // Delete one MissionSpecPreFill
|
|
11164
|
+
* const MissionSpecPreFill = await prisma.missionSpecPreFill.delete({
|
|
11165
|
+
* where: {
|
|
11166
|
+
* // ... filter to delete one MissionSpecPreFill
|
|
11167
|
+
* }
|
|
11168
|
+
* })
|
|
11169
|
+
*
|
|
11170
|
+
*/
|
|
11171
|
+
delete<T extends MissionSpecPreFillDeleteArgs>(args: SelectSubset<T, MissionSpecPreFillDeleteArgs<ExtArgs>>): Prisma__MissionSpecPreFillClient<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
11172
|
+
|
|
11173
|
+
/**
|
|
11174
|
+
* Update one MissionSpecPreFill.
|
|
11175
|
+
* @param {MissionSpecPreFillUpdateArgs} args - Arguments to update one MissionSpecPreFill.
|
|
11176
|
+
* @example
|
|
11177
|
+
* // Update one MissionSpecPreFill
|
|
11178
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.update({
|
|
11179
|
+
* where: {
|
|
11180
|
+
* // ... provide filter here
|
|
11181
|
+
* },
|
|
11182
|
+
* data: {
|
|
11183
|
+
* // ... provide data here
|
|
11184
|
+
* }
|
|
11185
|
+
* })
|
|
11186
|
+
*
|
|
11187
|
+
*/
|
|
11188
|
+
update<T extends MissionSpecPreFillUpdateArgs>(args: SelectSubset<T, MissionSpecPreFillUpdateArgs<ExtArgs>>): Prisma__MissionSpecPreFillClient<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
11189
|
+
|
|
11190
|
+
/**
|
|
11191
|
+
* Delete zero or more MissionSpecPreFills.
|
|
11192
|
+
* @param {MissionSpecPreFillDeleteManyArgs} args - Arguments to filter MissionSpecPreFills to delete.
|
|
11193
|
+
* @example
|
|
11194
|
+
* // Delete a few MissionSpecPreFills
|
|
11195
|
+
* const { count } = await prisma.missionSpecPreFill.deleteMany({
|
|
11196
|
+
* where: {
|
|
11197
|
+
* // ... provide filter here
|
|
11198
|
+
* }
|
|
11199
|
+
* })
|
|
11200
|
+
*
|
|
11201
|
+
*/
|
|
11202
|
+
deleteMany<T extends MissionSpecPreFillDeleteManyArgs>(args?: SelectSubset<T, MissionSpecPreFillDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
11203
|
+
|
|
11204
|
+
/**
|
|
11205
|
+
* Update zero or more MissionSpecPreFills.
|
|
11206
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
11207
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
11208
|
+
* @param {MissionSpecPreFillUpdateManyArgs} args - Arguments to update one or more rows.
|
|
11209
|
+
* @example
|
|
11210
|
+
* // Update many MissionSpecPreFills
|
|
11211
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.updateMany({
|
|
11212
|
+
* where: {
|
|
11213
|
+
* // ... provide filter here
|
|
11214
|
+
* },
|
|
11215
|
+
* data: {
|
|
11216
|
+
* // ... provide data here
|
|
11217
|
+
* }
|
|
11218
|
+
* })
|
|
11219
|
+
*
|
|
11220
|
+
*/
|
|
11221
|
+
updateMany<T extends MissionSpecPreFillUpdateManyArgs>(args: SelectSubset<T, MissionSpecPreFillUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
11222
|
+
|
|
11223
|
+
/**
|
|
11224
|
+
* Create or update one MissionSpecPreFill.
|
|
11225
|
+
* @param {MissionSpecPreFillUpsertArgs} args - Arguments to update or create a MissionSpecPreFill.
|
|
11226
|
+
* @example
|
|
11227
|
+
* // Update or create a MissionSpecPreFill
|
|
11228
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.upsert({
|
|
11229
|
+
* create: {
|
|
11230
|
+
* // ... data to create a MissionSpecPreFill
|
|
11231
|
+
* },
|
|
11232
|
+
* update: {
|
|
11233
|
+
* // ... in case it already exists, update
|
|
11234
|
+
* },
|
|
11235
|
+
* where: {
|
|
11236
|
+
* // ... the filter for the MissionSpecPreFill we want to update
|
|
11237
|
+
* }
|
|
11238
|
+
* })
|
|
11239
|
+
*/
|
|
11240
|
+
upsert<T extends MissionSpecPreFillUpsertArgs>(args: SelectSubset<T, MissionSpecPreFillUpsertArgs<ExtArgs>>): Prisma__MissionSpecPreFillClient<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
11241
|
+
|
|
11242
|
+
/**
|
|
11243
|
+
* Find zero or more MissionSpecPreFills that matches the filter.
|
|
11244
|
+
* @param {MissionSpecPreFillFindRawArgs} args - Select which filters you would like to apply.
|
|
11245
|
+
* @example
|
|
11246
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.findRaw({
|
|
11247
|
+
* filter: { age: { $gt: 25 } }
|
|
11248
|
+
* })
|
|
11249
|
+
*/
|
|
11250
|
+
findRaw(args?: MissionSpecPreFillFindRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
11251
|
+
|
|
11252
|
+
/**
|
|
11253
|
+
* Perform aggregation operations on a MissionSpecPreFill.
|
|
11254
|
+
* @param {MissionSpecPreFillAggregateRawArgs} args - Select which aggregations you would like to apply.
|
|
11255
|
+
* @example
|
|
11256
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.aggregateRaw({
|
|
11257
|
+
* pipeline: [
|
|
11258
|
+
* { $match: { status: "registered" } },
|
|
11259
|
+
* { $group: { _id: "$country", total: { $sum: 1 } } }
|
|
11260
|
+
* ]
|
|
11261
|
+
* })
|
|
11262
|
+
*/
|
|
11263
|
+
aggregateRaw(args?: MissionSpecPreFillAggregateRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
11264
|
+
|
|
11265
|
+
|
|
11266
|
+
/**
|
|
11267
|
+
* Count the number of MissionSpecPreFills.
|
|
11268
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
11269
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
11270
|
+
* @param {MissionSpecPreFillCountArgs} args - Arguments to filter MissionSpecPreFills to count.
|
|
11271
|
+
* @example
|
|
11272
|
+
* // Count the number of MissionSpecPreFills
|
|
11273
|
+
* const count = await prisma.missionSpecPreFill.count({
|
|
11274
|
+
* where: {
|
|
11275
|
+
* // ... the filter for the MissionSpecPreFills we want to count
|
|
11276
|
+
* }
|
|
11277
|
+
* })
|
|
11278
|
+
**/
|
|
11279
|
+
count<T extends MissionSpecPreFillCountArgs>(
|
|
11280
|
+
args?: Subset<T, MissionSpecPreFillCountArgs>,
|
|
11281
|
+
): Prisma.PrismaPromise<
|
|
11282
|
+
T extends $Utils.Record<'select', any>
|
|
11283
|
+
? T['select'] extends true
|
|
11284
|
+
? number
|
|
11285
|
+
: GetScalarType<T['select'], MissionSpecPreFillCountAggregateOutputType>
|
|
11286
|
+
: number
|
|
11287
|
+
>
|
|
11288
|
+
|
|
11289
|
+
/**
|
|
11290
|
+
* Allows you to perform aggregations operations on a MissionSpecPreFill.
|
|
11291
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
11292
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
11293
|
+
* @param {MissionSpecPreFillAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
11294
|
+
* @example
|
|
11295
|
+
* // Ordered by age ascending
|
|
11296
|
+
* // Where email contains prisma.io
|
|
11297
|
+
* // Limited to the 10 users
|
|
11298
|
+
* const aggregations = await prisma.user.aggregate({
|
|
11299
|
+
* _avg: {
|
|
11300
|
+
* age: true,
|
|
11301
|
+
* },
|
|
11302
|
+
* where: {
|
|
11303
|
+
* email: {
|
|
11304
|
+
* contains: "prisma.io",
|
|
11305
|
+
* },
|
|
11306
|
+
* },
|
|
11307
|
+
* orderBy: {
|
|
11308
|
+
* age: "asc",
|
|
11309
|
+
* },
|
|
11310
|
+
* take: 10,
|
|
11311
|
+
* })
|
|
11312
|
+
**/
|
|
11313
|
+
aggregate<T extends MissionSpecPreFillAggregateArgs>(args: Subset<T, MissionSpecPreFillAggregateArgs>): Prisma.PrismaPromise<GetMissionSpecPreFillAggregateType<T>>
|
|
11314
|
+
|
|
11315
|
+
/**
|
|
11316
|
+
* Group by MissionSpecPreFill.
|
|
11317
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
11318
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
11319
|
+
* @param {MissionSpecPreFillGroupByArgs} args - Group by arguments.
|
|
11320
|
+
* @example
|
|
11321
|
+
* // Group by city, order by createdAt, get count
|
|
11322
|
+
* const result = await prisma.user.groupBy({
|
|
11323
|
+
* by: ['city', 'createdAt'],
|
|
11324
|
+
* orderBy: {
|
|
11325
|
+
* createdAt: true
|
|
11326
|
+
* },
|
|
11327
|
+
* _count: {
|
|
11328
|
+
* _all: true
|
|
11329
|
+
* },
|
|
11330
|
+
* })
|
|
11331
|
+
*
|
|
11332
|
+
**/
|
|
11333
|
+
groupBy<
|
|
11334
|
+
T extends MissionSpecPreFillGroupByArgs,
|
|
11335
|
+
HasSelectOrTake extends Or<
|
|
11336
|
+
Extends<'skip', Keys<T>>,
|
|
11337
|
+
Extends<'take', Keys<T>>
|
|
11338
|
+
>,
|
|
11339
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
11340
|
+
? { orderBy: MissionSpecPreFillGroupByArgs['orderBy'] }
|
|
11341
|
+
: { orderBy?: MissionSpecPreFillGroupByArgs['orderBy'] },
|
|
11342
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
11343
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
11344
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
11345
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
11346
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
11347
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
11348
|
+
InputErrors extends ByEmpty extends True
|
|
11349
|
+
? `Error: "by" must not be empty.`
|
|
11350
|
+
: HavingValid extends False
|
|
11351
|
+
? {
|
|
11352
|
+
[P in HavingFields]: P extends ByFields
|
|
11353
|
+
? never
|
|
11354
|
+
: P extends string
|
|
11355
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
11356
|
+
: [
|
|
11357
|
+
Error,
|
|
11358
|
+
'Field ',
|
|
11359
|
+
P,
|
|
11360
|
+
` in "having" needs to be provided in "by"`,
|
|
11361
|
+
]
|
|
11362
|
+
}[HavingFields]
|
|
11363
|
+
: 'take' extends Keys<T>
|
|
11364
|
+
? 'orderBy' extends Keys<T>
|
|
11365
|
+
? ByValid extends True
|
|
11366
|
+
? {}
|
|
11367
|
+
: {
|
|
11368
|
+
[P in OrderFields]: P extends ByFields
|
|
11369
|
+
? never
|
|
11370
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
11371
|
+
}[OrderFields]
|
|
11372
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
11373
|
+
: 'skip' extends Keys<T>
|
|
11374
|
+
? 'orderBy' extends Keys<T>
|
|
11375
|
+
? ByValid extends True
|
|
11376
|
+
? {}
|
|
11377
|
+
: {
|
|
11378
|
+
[P in OrderFields]: P extends ByFields
|
|
11379
|
+
? never
|
|
11380
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
11381
|
+
}[OrderFields]
|
|
11382
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
11383
|
+
: ByValid extends True
|
|
11384
|
+
? {}
|
|
11385
|
+
: {
|
|
11386
|
+
[P in OrderFields]: P extends ByFields
|
|
11387
|
+
? never
|
|
11388
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
11389
|
+
}[OrderFields]
|
|
11390
|
+
>(args: SubsetIntersection<T, MissionSpecPreFillGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetMissionSpecPreFillGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
11391
|
+
/**
|
|
11392
|
+
* Fields of the MissionSpecPreFill model
|
|
11393
|
+
*/
|
|
11394
|
+
readonly fields: MissionSpecPreFillFieldRefs;
|
|
11395
|
+
}
|
|
11396
|
+
|
|
11397
|
+
/**
|
|
11398
|
+
* The delegate class that acts as a "Promise-like" for MissionSpecPreFill.
|
|
11399
|
+
* Why is this prefixed with `Prisma__`?
|
|
11400
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
11401
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
11402
|
+
*/
|
|
11403
|
+
export interface Prisma__MissionSpecPreFillClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
11404
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
11405
|
+
user<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
11406
|
+
/**
|
|
11407
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
11408
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
11409
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
11410
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
11411
|
+
*/
|
|
11412
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>
|
|
11413
|
+
/**
|
|
11414
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
11415
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
11416
|
+
* @returns A Promise for the completion of the callback.
|
|
11417
|
+
*/
|
|
11418
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
11419
|
+
/**
|
|
11420
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
11421
|
+
* resolved value cannot be modified from the callback.
|
|
11422
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
11423
|
+
* @returns A Promise for the completion of the callback.
|
|
11424
|
+
*/
|
|
11425
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
11426
|
+
}
|
|
11427
|
+
|
|
11428
|
+
|
|
11429
|
+
|
|
11430
|
+
|
|
11431
|
+
/**
|
|
11432
|
+
* Fields of the MissionSpecPreFill model
|
|
11433
|
+
*/
|
|
11434
|
+
interface MissionSpecPreFillFieldRefs {
|
|
11435
|
+
readonly id: FieldRef<"MissionSpecPreFill", 'String'>
|
|
11436
|
+
readonly userId: FieldRef<"MissionSpecPreFill", 'String'>
|
|
11437
|
+
readonly missionName: FieldRef<"MissionSpecPreFill", 'String'>
|
|
11438
|
+
readonly plannedStart: FieldRef<"MissionSpecPreFill", 'String'>
|
|
11439
|
+
readonly companyDescription: FieldRef<"MissionSpecPreFill", 'String'>
|
|
11440
|
+
readonly missionDescription: FieldRef<"MissionSpecPreFill", 'String'>
|
|
11441
|
+
readonly timezone: FieldRef<"MissionSpecPreFill", 'String'>
|
|
11442
|
+
readonly openRoles: FieldRef<"MissionSpecPreFill", 'Json'>
|
|
11443
|
+
readonly status: FieldRef<"MissionSpecPreFill", 'String'>
|
|
11444
|
+
readonly createdAt: FieldRef<"MissionSpecPreFill", 'DateTime'>
|
|
11445
|
+
readonly updatedAt: FieldRef<"MissionSpecPreFill", 'DateTime'>
|
|
11446
|
+
}
|
|
11447
|
+
|
|
11448
|
+
|
|
11449
|
+
// Custom InputTypes
|
|
11450
|
+
/**
|
|
11451
|
+
* MissionSpecPreFill findUnique
|
|
11452
|
+
*/
|
|
11453
|
+
export type MissionSpecPreFillFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11454
|
+
/**
|
|
11455
|
+
* Select specific fields to fetch from the MissionSpecPreFill
|
|
11456
|
+
*/
|
|
11457
|
+
select?: MissionSpecPreFillSelect<ExtArgs> | null
|
|
11458
|
+
/**
|
|
11459
|
+
* Choose, which related nodes to fetch as well
|
|
11460
|
+
*/
|
|
11461
|
+
include?: MissionSpecPreFillInclude<ExtArgs> | null
|
|
11462
|
+
/**
|
|
11463
|
+
* Filter, which MissionSpecPreFill to fetch.
|
|
11464
|
+
*/
|
|
11465
|
+
where: MissionSpecPreFillWhereUniqueInput
|
|
11466
|
+
}
|
|
11467
|
+
|
|
11468
|
+
/**
|
|
11469
|
+
* MissionSpecPreFill findUniqueOrThrow
|
|
11470
|
+
*/
|
|
11471
|
+
export type MissionSpecPreFillFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11472
|
+
/**
|
|
11473
|
+
* Select specific fields to fetch from the MissionSpecPreFill
|
|
11474
|
+
*/
|
|
11475
|
+
select?: MissionSpecPreFillSelect<ExtArgs> | null
|
|
11476
|
+
/**
|
|
11477
|
+
* Choose, which related nodes to fetch as well
|
|
11478
|
+
*/
|
|
11479
|
+
include?: MissionSpecPreFillInclude<ExtArgs> | null
|
|
11480
|
+
/**
|
|
11481
|
+
* Filter, which MissionSpecPreFill to fetch.
|
|
11482
|
+
*/
|
|
11483
|
+
where: MissionSpecPreFillWhereUniqueInput
|
|
11484
|
+
}
|
|
11485
|
+
|
|
11486
|
+
/**
|
|
11487
|
+
* MissionSpecPreFill findFirst
|
|
11488
|
+
*/
|
|
11489
|
+
export type MissionSpecPreFillFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11490
|
+
/**
|
|
11491
|
+
* Select specific fields to fetch from the MissionSpecPreFill
|
|
11492
|
+
*/
|
|
11493
|
+
select?: MissionSpecPreFillSelect<ExtArgs> | null
|
|
11494
|
+
/**
|
|
11495
|
+
* Choose, which related nodes to fetch as well
|
|
11496
|
+
*/
|
|
11497
|
+
include?: MissionSpecPreFillInclude<ExtArgs> | null
|
|
11498
|
+
/**
|
|
11499
|
+
* Filter, which MissionSpecPreFill to fetch.
|
|
11500
|
+
*/
|
|
11501
|
+
where?: MissionSpecPreFillWhereInput
|
|
11502
|
+
/**
|
|
11503
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
11504
|
+
*
|
|
11505
|
+
* Determine the order of MissionSpecPreFills to fetch.
|
|
11506
|
+
*/
|
|
11507
|
+
orderBy?: MissionSpecPreFillOrderByWithRelationInput | MissionSpecPreFillOrderByWithRelationInput[]
|
|
11508
|
+
/**
|
|
11509
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
11510
|
+
*
|
|
11511
|
+
* Sets the position for searching for MissionSpecPreFills.
|
|
11512
|
+
*/
|
|
11513
|
+
cursor?: MissionSpecPreFillWhereUniqueInput
|
|
11514
|
+
/**
|
|
11515
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11516
|
+
*
|
|
11517
|
+
* Take `±n` MissionSpecPreFills from the position of the cursor.
|
|
11518
|
+
*/
|
|
11519
|
+
take?: number
|
|
11520
|
+
/**
|
|
11521
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11522
|
+
*
|
|
11523
|
+
* Skip the first `n` MissionSpecPreFills.
|
|
11524
|
+
*/
|
|
11525
|
+
skip?: number
|
|
11526
|
+
/**
|
|
11527
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
11528
|
+
*
|
|
11529
|
+
* Filter by unique combinations of MissionSpecPreFills.
|
|
11530
|
+
*/
|
|
11531
|
+
distinct?: MissionSpecPreFillScalarFieldEnum | MissionSpecPreFillScalarFieldEnum[]
|
|
11532
|
+
}
|
|
11533
|
+
|
|
11534
|
+
/**
|
|
11535
|
+
* MissionSpecPreFill findFirstOrThrow
|
|
11536
|
+
*/
|
|
11537
|
+
export type MissionSpecPreFillFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11538
|
+
/**
|
|
11539
|
+
* Select specific fields to fetch from the MissionSpecPreFill
|
|
11540
|
+
*/
|
|
11541
|
+
select?: MissionSpecPreFillSelect<ExtArgs> | null
|
|
11542
|
+
/**
|
|
11543
|
+
* Choose, which related nodes to fetch as well
|
|
11544
|
+
*/
|
|
11545
|
+
include?: MissionSpecPreFillInclude<ExtArgs> | null
|
|
11546
|
+
/**
|
|
11547
|
+
* Filter, which MissionSpecPreFill to fetch.
|
|
11548
|
+
*/
|
|
11549
|
+
where?: MissionSpecPreFillWhereInput
|
|
11550
|
+
/**
|
|
11551
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
11552
|
+
*
|
|
11553
|
+
* Determine the order of MissionSpecPreFills to fetch.
|
|
11554
|
+
*/
|
|
11555
|
+
orderBy?: MissionSpecPreFillOrderByWithRelationInput | MissionSpecPreFillOrderByWithRelationInput[]
|
|
11556
|
+
/**
|
|
11557
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
11558
|
+
*
|
|
11559
|
+
* Sets the position for searching for MissionSpecPreFills.
|
|
11560
|
+
*/
|
|
11561
|
+
cursor?: MissionSpecPreFillWhereUniqueInput
|
|
11562
|
+
/**
|
|
11563
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11564
|
+
*
|
|
11565
|
+
* Take `±n` MissionSpecPreFills from the position of the cursor.
|
|
11566
|
+
*/
|
|
11567
|
+
take?: number
|
|
11568
|
+
/**
|
|
11569
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11570
|
+
*
|
|
11571
|
+
* Skip the first `n` MissionSpecPreFills.
|
|
11572
|
+
*/
|
|
11573
|
+
skip?: number
|
|
11574
|
+
/**
|
|
11575
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
11576
|
+
*
|
|
11577
|
+
* Filter by unique combinations of MissionSpecPreFills.
|
|
11578
|
+
*/
|
|
11579
|
+
distinct?: MissionSpecPreFillScalarFieldEnum | MissionSpecPreFillScalarFieldEnum[]
|
|
11580
|
+
}
|
|
11581
|
+
|
|
11582
|
+
/**
|
|
11583
|
+
* MissionSpecPreFill findMany
|
|
11584
|
+
*/
|
|
11585
|
+
export type MissionSpecPreFillFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11586
|
+
/**
|
|
11587
|
+
* Select specific fields to fetch from the MissionSpecPreFill
|
|
11588
|
+
*/
|
|
11589
|
+
select?: MissionSpecPreFillSelect<ExtArgs> | null
|
|
11590
|
+
/**
|
|
11591
|
+
* Choose, which related nodes to fetch as well
|
|
11592
|
+
*/
|
|
11593
|
+
include?: MissionSpecPreFillInclude<ExtArgs> | null
|
|
11594
|
+
/**
|
|
11595
|
+
* Filter, which MissionSpecPreFills to fetch.
|
|
11596
|
+
*/
|
|
11597
|
+
where?: MissionSpecPreFillWhereInput
|
|
11598
|
+
/**
|
|
11599
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
11600
|
+
*
|
|
11601
|
+
* Determine the order of MissionSpecPreFills to fetch.
|
|
11602
|
+
*/
|
|
11603
|
+
orderBy?: MissionSpecPreFillOrderByWithRelationInput | MissionSpecPreFillOrderByWithRelationInput[]
|
|
11604
|
+
/**
|
|
11605
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
11606
|
+
*
|
|
11607
|
+
* Sets the position for listing MissionSpecPreFills.
|
|
11608
|
+
*/
|
|
11609
|
+
cursor?: MissionSpecPreFillWhereUniqueInput
|
|
11610
|
+
/**
|
|
11611
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11612
|
+
*
|
|
11613
|
+
* Take `±n` MissionSpecPreFills from the position of the cursor.
|
|
11614
|
+
*/
|
|
11615
|
+
take?: number
|
|
11616
|
+
/**
|
|
11617
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11618
|
+
*
|
|
11619
|
+
* Skip the first `n` MissionSpecPreFills.
|
|
11620
|
+
*/
|
|
11621
|
+
skip?: number
|
|
11622
|
+
distinct?: MissionSpecPreFillScalarFieldEnum | MissionSpecPreFillScalarFieldEnum[]
|
|
11623
|
+
}
|
|
11624
|
+
|
|
11625
|
+
/**
|
|
11626
|
+
* MissionSpecPreFill create
|
|
11627
|
+
*/
|
|
11628
|
+
export type MissionSpecPreFillCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11629
|
+
/**
|
|
11630
|
+
* Select specific fields to fetch from the MissionSpecPreFill
|
|
11631
|
+
*/
|
|
11632
|
+
select?: MissionSpecPreFillSelect<ExtArgs> | null
|
|
11633
|
+
/**
|
|
11634
|
+
* Choose, which related nodes to fetch as well
|
|
11635
|
+
*/
|
|
11636
|
+
include?: MissionSpecPreFillInclude<ExtArgs> | null
|
|
11637
|
+
/**
|
|
11638
|
+
* The data needed to create a MissionSpecPreFill.
|
|
11639
|
+
*/
|
|
11640
|
+
data: XOR<MissionSpecPreFillCreateInput, MissionSpecPreFillUncheckedCreateInput>
|
|
11641
|
+
}
|
|
11642
|
+
|
|
11643
|
+
/**
|
|
11644
|
+
* MissionSpecPreFill createMany
|
|
11645
|
+
*/
|
|
11646
|
+
export type MissionSpecPreFillCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11647
|
+
/**
|
|
11648
|
+
* The data used to create many MissionSpecPreFills.
|
|
11649
|
+
*/
|
|
11650
|
+
data: MissionSpecPreFillCreateManyInput | MissionSpecPreFillCreateManyInput[]
|
|
11651
|
+
}
|
|
11652
|
+
|
|
11653
|
+
/**
|
|
11654
|
+
* MissionSpecPreFill update
|
|
11655
|
+
*/
|
|
11656
|
+
export type MissionSpecPreFillUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11657
|
+
/**
|
|
11658
|
+
* Select specific fields to fetch from the MissionSpecPreFill
|
|
11659
|
+
*/
|
|
11660
|
+
select?: MissionSpecPreFillSelect<ExtArgs> | null
|
|
11661
|
+
/**
|
|
11662
|
+
* Choose, which related nodes to fetch as well
|
|
11663
|
+
*/
|
|
11664
|
+
include?: MissionSpecPreFillInclude<ExtArgs> | null
|
|
11665
|
+
/**
|
|
11666
|
+
* The data needed to update a MissionSpecPreFill.
|
|
11667
|
+
*/
|
|
11668
|
+
data: XOR<MissionSpecPreFillUpdateInput, MissionSpecPreFillUncheckedUpdateInput>
|
|
11669
|
+
/**
|
|
11670
|
+
* Choose, which MissionSpecPreFill to update.
|
|
11671
|
+
*/
|
|
11672
|
+
where: MissionSpecPreFillWhereUniqueInput
|
|
11673
|
+
}
|
|
11674
|
+
|
|
11675
|
+
/**
|
|
11676
|
+
* MissionSpecPreFill updateMany
|
|
11677
|
+
*/
|
|
11678
|
+
export type MissionSpecPreFillUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11679
|
+
/**
|
|
11680
|
+
* The data used to update MissionSpecPreFills.
|
|
11681
|
+
*/
|
|
11682
|
+
data: XOR<MissionSpecPreFillUpdateManyMutationInput, MissionSpecPreFillUncheckedUpdateManyInput>
|
|
11683
|
+
/**
|
|
11684
|
+
* Filter which MissionSpecPreFills to update
|
|
11685
|
+
*/
|
|
11686
|
+
where?: MissionSpecPreFillWhereInput
|
|
11687
|
+
}
|
|
11688
|
+
|
|
11689
|
+
/**
|
|
11690
|
+
* MissionSpecPreFill upsert
|
|
11691
|
+
*/
|
|
11692
|
+
export type MissionSpecPreFillUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11693
|
+
/**
|
|
11694
|
+
* Select specific fields to fetch from the MissionSpecPreFill
|
|
11695
|
+
*/
|
|
11696
|
+
select?: MissionSpecPreFillSelect<ExtArgs> | null
|
|
11697
|
+
/**
|
|
11698
|
+
* Choose, which related nodes to fetch as well
|
|
11699
|
+
*/
|
|
11700
|
+
include?: MissionSpecPreFillInclude<ExtArgs> | null
|
|
11701
|
+
/**
|
|
11702
|
+
* The filter to search for the MissionSpecPreFill to update in case it exists.
|
|
11703
|
+
*/
|
|
11704
|
+
where: MissionSpecPreFillWhereUniqueInput
|
|
11705
|
+
/**
|
|
11706
|
+
* In case the MissionSpecPreFill found by the `where` argument doesn't exist, create a new MissionSpecPreFill with this data.
|
|
11707
|
+
*/
|
|
11708
|
+
create: XOR<MissionSpecPreFillCreateInput, MissionSpecPreFillUncheckedCreateInput>
|
|
11709
|
+
/**
|
|
11710
|
+
* In case the MissionSpecPreFill was found with the provided `where` argument, update it with this data.
|
|
11711
|
+
*/
|
|
11712
|
+
update: XOR<MissionSpecPreFillUpdateInput, MissionSpecPreFillUncheckedUpdateInput>
|
|
11713
|
+
}
|
|
11714
|
+
|
|
11715
|
+
/**
|
|
11716
|
+
* MissionSpecPreFill delete
|
|
11717
|
+
*/
|
|
11718
|
+
export type MissionSpecPreFillDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11719
|
+
/**
|
|
11720
|
+
* Select specific fields to fetch from the MissionSpecPreFill
|
|
11721
|
+
*/
|
|
11722
|
+
select?: MissionSpecPreFillSelect<ExtArgs> | null
|
|
11723
|
+
/**
|
|
11724
|
+
* Choose, which related nodes to fetch as well
|
|
11725
|
+
*/
|
|
11726
|
+
include?: MissionSpecPreFillInclude<ExtArgs> | null
|
|
11727
|
+
/**
|
|
11728
|
+
* Filter which MissionSpecPreFill to delete.
|
|
11729
|
+
*/
|
|
11730
|
+
where: MissionSpecPreFillWhereUniqueInput
|
|
11731
|
+
}
|
|
11732
|
+
|
|
11733
|
+
/**
|
|
11734
|
+
* MissionSpecPreFill deleteMany
|
|
11735
|
+
*/
|
|
11736
|
+
export type MissionSpecPreFillDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11737
|
+
/**
|
|
11738
|
+
* Filter which MissionSpecPreFills to delete
|
|
11739
|
+
*/
|
|
11740
|
+
where?: MissionSpecPreFillWhereInput
|
|
11741
|
+
}
|
|
11742
|
+
|
|
11743
|
+
/**
|
|
11744
|
+
* MissionSpecPreFill findRaw
|
|
11745
|
+
*/
|
|
11746
|
+
export type MissionSpecPreFillFindRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11747
|
+
/**
|
|
11748
|
+
* 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}.
|
|
11749
|
+
*/
|
|
11750
|
+
filter?: InputJsonValue
|
|
11751
|
+
/**
|
|
11752
|
+
* Additional options to pass to the `find` command ${@link https://docs.mongodb.com/manual/reference/command/find/#command-fields MongoDB Docs}.
|
|
11753
|
+
*/
|
|
11754
|
+
options?: InputJsonValue
|
|
11755
|
+
}
|
|
11756
|
+
|
|
11757
|
+
/**
|
|
11758
|
+
* MissionSpecPreFill aggregateRaw
|
|
11759
|
+
*/
|
|
11760
|
+
export type MissionSpecPreFillAggregateRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11761
|
+
/**
|
|
11762
|
+
* 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}.
|
|
11763
|
+
*/
|
|
11764
|
+
pipeline?: InputJsonValue[]
|
|
11765
|
+
/**
|
|
11766
|
+
* Additional options to pass to the `aggregate` command ${@link https://docs.mongodb.com/manual/reference/command/aggregate/#command-fields MongoDB Docs}.
|
|
11767
|
+
*/
|
|
11768
|
+
options?: InputJsonValue
|
|
11769
|
+
}
|
|
11770
|
+
|
|
11771
|
+
/**
|
|
11772
|
+
* MissionSpecPreFill without action
|
|
11773
|
+
*/
|
|
11774
|
+
export type MissionSpecPreFillDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11775
|
+
/**
|
|
11776
|
+
* Select specific fields to fetch from the MissionSpecPreFill
|
|
11777
|
+
*/
|
|
11778
|
+
select?: MissionSpecPreFillSelect<ExtArgs> | null
|
|
11779
|
+
/**
|
|
11780
|
+
* Choose, which related nodes to fetch as well
|
|
11781
|
+
*/
|
|
11782
|
+
include?: MissionSpecPreFillInclude<ExtArgs> | null
|
|
11783
|
+
}
|
|
11784
|
+
|
|
11785
|
+
|
|
11786
|
+
/**
|
|
11787
|
+
* Model RoleCategory
|
|
11788
|
+
*/
|
|
11789
|
+
|
|
11790
|
+
export type AggregateRoleCategory = {
|
|
11791
|
+
_count: RoleCategoryCountAggregateOutputType | null
|
|
11792
|
+
_min: RoleCategoryMinAggregateOutputType | null
|
|
11793
|
+
_max: RoleCategoryMaxAggregateOutputType | null
|
|
11794
|
+
}
|
|
11795
|
+
|
|
11796
|
+
export type RoleCategoryMinAggregateOutputType = {
|
|
11797
|
+
id: string | null
|
|
11798
|
+
title: string | null
|
|
11799
|
+
deletedAt: Date | null
|
|
11800
|
+
group: string | null
|
|
11801
|
+
}
|
|
11802
|
+
|
|
11803
|
+
export type RoleCategoryMaxAggregateOutputType = {
|
|
11804
|
+
id: string | null
|
|
11805
|
+
title: string | null
|
|
11806
|
+
deletedAt: Date | null
|
|
11807
|
+
group: string | null
|
|
11808
|
+
}
|
|
11809
|
+
|
|
11810
|
+
export type RoleCategoryCountAggregateOutputType = {
|
|
11811
|
+
id: number
|
|
11812
|
+
anchors: number
|
|
11813
|
+
title: number
|
|
11814
|
+
deletedAt: number
|
|
11815
|
+
group: number
|
|
11816
|
+
talentCategoryIds: number
|
|
11817
|
+
_all: number
|
|
11818
|
+
}
|
|
11819
|
+
|
|
11820
|
+
|
|
11821
|
+
export type RoleCategoryMinAggregateInputType = {
|
|
11822
|
+
id?: true
|
|
11823
|
+
title?: true
|
|
11824
|
+
deletedAt?: true
|
|
11825
|
+
group?: true
|
|
11826
|
+
}
|
|
11827
|
+
|
|
11828
|
+
export type RoleCategoryMaxAggregateInputType = {
|
|
11829
|
+
id?: true
|
|
11830
|
+
title?: true
|
|
11831
|
+
deletedAt?: true
|
|
11832
|
+
group?: true
|
|
11833
|
+
}
|
|
11834
|
+
|
|
11835
|
+
export type RoleCategoryCountAggregateInputType = {
|
|
11836
|
+
id?: true
|
|
11837
|
+
anchors?: true
|
|
11838
|
+
title?: true
|
|
11839
|
+
deletedAt?: true
|
|
11840
|
+
group?: true
|
|
11841
|
+
talentCategoryIds?: true
|
|
11842
|
+
_all?: true
|
|
11843
|
+
}
|
|
11844
|
+
|
|
11845
|
+
export type RoleCategoryAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11846
|
+
/**
|
|
11847
|
+
* Filter which RoleCategory to aggregate.
|
|
11848
|
+
*/
|
|
11849
|
+
where?: RoleCategoryWhereInput
|
|
11850
|
+
/**
|
|
11851
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
11852
|
+
*
|
|
11853
|
+
* Determine the order of RoleCategories to fetch.
|
|
11854
|
+
*/
|
|
11855
|
+
orderBy?: RoleCategoryOrderByWithRelationInput | RoleCategoryOrderByWithRelationInput[]
|
|
11856
|
+
/**
|
|
11857
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
11858
|
+
*
|
|
11859
|
+
* Sets the start position
|
|
11860
|
+
*/
|
|
11861
|
+
cursor?: RoleCategoryWhereUniqueInput
|
|
11862
|
+
/**
|
|
11863
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11864
|
+
*
|
|
11865
|
+
* Take `±n` RoleCategories from the position of the cursor.
|
|
11866
|
+
*/
|
|
11867
|
+
take?: number
|
|
11868
|
+
/**
|
|
11869
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
11870
|
+
*
|
|
11871
|
+
* Skip the first `n` RoleCategories.
|
|
11872
|
+
*/
|
|
11873
|
+
skip?: number
|
|
11874
|
+
/**
|
|
11875
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
11876
|
+
*
|
|
11877
|
+
* Count returned RoleCategories
|
|
11878
|
+
**/
|
|
11879
|
+
_count?: true | RoleCategoryCountAggregateInputType
|
|
11880
|
+
/**
|
|
11881
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
11882
|
+
*
|
|
11883
|
+
* Select which fields to find the minimum value
|
|
11884
|
+
**/
|
|
11885
|
+
_min?: RoleCategoryMinAggregateInputType
|
|
11886
|
+
/**
|
|
11887
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
11888
|
+
*
|
|
11889
|
+
* Select which fields to find the maximum value
|
|
11890
|
+
**/
|
|
11891
|
+
_max?: RoleCategoryMaxAggregateInputType
|
|
11892
|
+
}
|
|
11893
|
+
|
|
11894
|
+
export type GetRoleCategoryAggregateType<T extends RoleCategoryAggregateArgs> = {
|
|
11895
|
+
[P in keyof T & keyof AggregateRoleCategory]: P extends '_count' | 'count'
|
|
11896
|
+
? T[P] extends true
|
|
11897
|
+
? number
|
|
11898
|
+
: GetScalarType<T[P], AggregateRoleCategory[P]>
|
|
11899
|
+
: GetScalarType<T[P], AggregateRoleCategory[P]>
|
|
11900
|
+
}
|
|
11901
|
+
|
|
11902
|
+
|
|
11903
|
+
|
|
11904
|
+
|
|
11905
|
+
export type RoleCategoryGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11906
|
+
where?: RoleCategoryWhereInput
|
|
11907
|
+
orderBy?: RoleCategoryOrderByWithAggregationInput | RoleCategoryOrderByWithAggregationInput[]
|
|
11908
|
+
by: RoleCategoryScalarFieldEnum[] | RoleCategoryScalarFieldEnum
|
|
11909
|
+
having?: RoleCategoryScalarWhereWithAggregatesInput
|
|
11910
|
+
take?: number
|
|
11911
|
+
skip?: number
|
|
11912
|
+
_count?: RoleCategoryCountAggregateInputType | true
|
|
11913
|
+
_min?: RoleCategoryMinAggregateInputType
|
|
11914
|
+
_max?: RoleCategoryMaxAggregateInputType
|
|
11915
|
+
}
|
|
11916
|
+
|
|
11917
|
+
export type RoleCategoryGroupByOutputType = {
|
|
11918
|
+
id: string
|
|
11919
|
+
anchors: string[]
|
|
11920
|
+
title: string
|
|
11921
|
+
deletedAt: Date | null
|
|
11922
|
+
group: string | null
|
|
11923
|
+
talentCategoryIds: string[]
|
|
11924
|
+
_count: RoleCategoryCountAggregateOutputType | null
|
|
11925
|
+
_min: RoleCategoryMinAggregateOutputType | null
|
|
11926
|
+
_max: RoleCategoryMaxAggregateOutputType | null
|
|
11927
|
+
}
|
|
11928
|
+
|
|
11929
|
+
type GetRoleCategoryGroupByPayload<T extends RoleCategoryGroupByArgs> = Prisma.PrismaPromise<
|
|
11930
|
+
Array<
|
|
11931
|
+
PickEnumerable<RoleCategoryGroupByOutputType, T['by']> &
|
|
11932
|
+
{
|
|
11933
|
+
[P in ((keyof T) & (keyof RoleCategoryGroupByOutputType))]: P extends '_count'
|
|
11934
|
+
? T[P] extends boolean
|
|
11935
|
+
? number
|
|
11936
|
+
: GetScalarType<T[P], RoleCategoryGroupByOutputType[P]>
|
|
11937
|
+
: GetScalarType<T[P], RoleCategoryGroupByOutputType[P]>
|
|
11938
|
+
}
|
|
11939
|
+
>
|
|
11940
|
+
>
|
|
11941
|
+
|
|
11942
|
+
|
|
11943
|
+
export type RoleCategorySelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
11944
|
+
id?: boolean
|
|
11945
|
+
anchors?: boolean
|
|
11946
|
+
title?: boolean
|
|
11947
|
+
deletedAt?: boolean
|
|
11948
|
+
group?: boolean
|
|
11949
|
+
talentCategoryIds?: boolean
|
|
11950
|
+
}, ExtArgs["result"]["roleCategory"]>
|
|
11951
|
+
|
|
11952
|
+
|
|
11953
|
+
export type RoleCategorySelectScalar = {
|
|
11954
|
+
id?: boolean
|
|
11955
|
+
anchors?: boolean
|
|
11956
|
+
title?: boolean
|
|
11957
|
+
deletedAt?: boolean
|
|
11958
|
+
group?: boolean
|
|
11959
|
+
talentCategoryIds?: boolean
|
|
11960
|
+
}
|
|
11961
|
+
|
|
11962
|
+
|
|
11963
|
+
export type $RoleCategoryPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11964
|
+
name: "RoleCategory"
|
|
11965
|
+
objects: {}
|
|
11966
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
11967
|
+
id: string
|
|
11968
|
+
anchors: string[]
|
|
11969
|
+
title: string
|
|
11970
|
+
deletedAt: Date | null
|
|
11971
|
+
group: string | null
|
|
11972
|
+
talentCategoryIds: string[]
|
|
11973
|
+
}, ExtArgs["result"]["roleCategory"]>
|
|
11974
|
+
composites: {}
|
|
11975
|
+
}
|
|
11976
|
+
|
|
11977
|
+
type RoleCategoryGetPayload<S extends boolean | null | undefined | RoleCategoryDefaultArgs> = $Result.GetResult<Prisma.$RoleCategoryPayload, S>
|
|
11978
|
+
|
|
11979
|
+
type RoleCategoryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
11980
|
+
Omit<RoleCategoryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
11981
|
+
select?: RoleCategoryCountAggregateInputType | true
|
|
11982
|
+
}
|
|
11983
|
+
|
|
11984
|
+
export interface RoleCategoryDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
11985
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['RoleCategory'], meta: { name: 'RoleCategory' } }
|
|
11986
|
+
/**
|
|
11987
|
+
* Find zero or one RoleCategory that matches the filter.
|
|
11988
|
+
* @param {RoleCategoryFindUniqueArgs} args - Arguments to find a RoleCategory
|
|
11989
|
+
* @example
|
|
11990
|
+
* // Get one RoleCategory
|
|
11991
|
+
* const roleCategory = await prisma.roleCategory.findUnique({
|
|
11992
|
+
* where: {
|
|
11993
|
+
* // ... provide filter here
|
|
11994
|
+
* }
|
|
11995
|
+
* })
|
|
11996
|
+
*/
|
|
11997
|
+
findUnique<T extends RoleCategoryFindUniqueArgs>(args: SelectSubset<T, RoleCategoryFindUniqueArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
11998
|
+
|
|
11999
|
+
/**
|
|
12000
|
+
* Find one RoleCategory that matches the filter or throw an error with `error.code='P2025'`
|
|
12001
|
+
* if no matches were found.
|
|
12002
|
+
* @param {RoleCategoryFindUniqueOrThrowArgs} args - Arguments to find a RoleCategory
|
|
12003
|
+
* @example
|
|
12004
|
+
* // Get one RoleCategory
|
|
12005
|
+
* const roleCategory = await prisma.roleCategory.findUniqueOrThrow({
|
|
12006
|
+
* where: {
|
|
12007
|
+
* // ... provide filter here
|
|
12008
|
+
* }
|
|
12009
|
+
* })
|
|
12010
|
+
*/
|
|
12011
|
+
findUniqueOrThrow<T extends RoleCategoryFindUniqueOrThrowArgs>(args: SelectSubset<T, RoleCategoryFindUniqueOrThrowArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
12012
|
+
|
|
12013
|
+
/**
|
|
12014
|
+
* Find the first RoleCategory that matches the filter.
|
|
12015
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
12016
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
12017
|
+
* @param {RoleCategoryFindFirstArgs} args - Arguments to find a RoleCategory
|
|
12018
|
+
* @example
|
|
12019
|
+
* // Get one RoleCategory
|
|
12020
|
+
* const roleCategory = await prisma.roleCategory.findFirst({
|
|
12021
|
+
* where: {
|
|
12022
|
+
* // ... provide filter here
|
|
12023
|
+
* }
|
|
12024
|
+
* })
|
|
12025
|
+
*/
|
|
12026
|
+
findFirst<T extends RoleCategoryFindFirstArgs>(args?: SelectSubset<T, RoleCategoryFindFirstArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
12027
|
+
|
|
12028
|
+
/**
|
|
12029
|
+
* Find the first RoleCategory that matches the filter or
|
|
12030
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
12031
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
12032
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
12033
|
+
* @param {RoleCategoryFindFirstOrThrowArgs} args - Arguments to find a RoleCategory
|
|
12034
|
+
* @example
|
|
12035
|
+
* // Get one RoleCategory
|
|
12036
|
+
* const roleCategory = await prisma.roleCategory.findFirstOrThrow({
|
|
12037
|
+
* where: {
|
|
12038
|
+
* // ... provide filter here
|
|
12039
|
+
* }
|
|
12040
|
+
* })
|
|
12041
|
+
*/
|
|
12042
|
+
findFirstOrThrow<T extends RoleCategoryFindFirstOrThrowArgs>(args?: SelectSubset<T, RoleCategoryFindFirstOrThrowArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
12043
|
+
|
|
12044
|
+
/**
|
|
12045
|
+
* Find zero or more RoleCategories that matches the filter.
|
|
12046
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
12047
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
12048
|
+
* @param {RoleCategoryFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
12049
|
+
* @example
|
|
12050
|
+
* // Get all RoleCategories
|
|
12051
|
+
* const roleCategories = await prisma.roleCategory.findMany()
|
|
12052
|
+
*
|
|
12053
|
+
* // Get first 10 RoleCategories
|
|
12054
|
+
* const roleCategories = await prisma.roleCategory.findMany({ take: 10 })
|
|
12055
|
+
*
|
|
12056
|
+
* // Only select the `id`
|
|
12057
|
+
* const roleCategoryWithIdOnly = await prisma.roleCategory.findMany({ select: { id: true } })
|
|
12058
|
+
*
|
|
12059
|
+
*/
|
|
12060
|
+
findMany<T extends RoleCategoryFindManyArgs>(args?: SelectSubset<T, RoleCategoryFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "findMany">>
|
|
12061
|
+
|
|
12062
|
+
/**
|
|
12063
|
+
* Create a RoleCategory.
|
|
12064
|
+
* @param {RoleCategoryCreateArgs} args - Arguments to create a RoleCategory.
|
|
12065
|
+
* @example
|
|
12066
|
+
* // Create one RoleCategory
|
|
12067
|
+
* const RoleCategory = await prisma.roleCategory.create({
|
|
12068
|
+
* data: {
|
|
12069
|
+
* // ... data to create a RoleCategory
|
|
12070
|
+
* }
|
|
12071
|
+
* })
|
|
12072
|
+
*
|
|
12073
|
+
*/
|
|
12074
|
+
create<T extends RoleCategoryCreateArgs>(args: SelectSubset<T, RoleCategoryCreateArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
12075
|
+
|
|
12076
|
+
/**
|
|
12077
|
+
* Create many RoleCategories.
|
|
12078
|
+
* @param {RoleCategoryCreateManyArgs} args - Arguments to create many RoleCategories.
|
|
12079
|
+
* @example
|
|
12080
|
+
* // Create many RoleCategories
|
|
12081
|
+
* const roleCategory = await prisma.roleCategory.createMany({
|
|
12082
|
+
* data: [
|
|
12083
|
+
* // ... provide data here
|
|
12084
|
+
* ]
|
|
12085
|
+
* })
|
|
12086
|
+
*
|
|
12087
|
+
*/
|
|
12088
|
+
createMany<T extends RoleCategoryCreateManyArgs>(args?: SelectSubset<T, RoleCategoryCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
12089
|
+
|
|
12090
|
+
/**
|
|
12091
|
+
* Delete a RoleCategory.
|
|
12092
|
+
* @param {RoleCategoryDeleteArgs} args - Arguments to delete one RoleCategory.
|
|
12093
|
+
* @example
|
|
12094
|
+
* // Delete one RoleCategory
|
|
10968
12095
|
* const RoleCategory = await prisma.roleCategory.delete({
|
|
10969
12096
|
* where: {
|
|
10970
12097
|
* // ... filter to delete one RoleCategory
|
|
@@ -13550,6 +14677,7 @@ export namespace Prisma {
|
|
|
13550
14677
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
13551
14678
|
authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
|
|
13552
14679
|
modifiedMissionSpecs?: boolean | User$modifiedMissionSpecsArgs<ExtArgs>
|
|
14680
|
+
missionSpecPreFills?: boolean | User$missionSpecPreFillsArgs<ExtArgs>
|
|
13553
14681
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
13554
14682
|
}, ExtArgs["result"]["user"]>
|
|
13555
14683
|
|
|
@@ -13574,6 +14702,7 @@ export namespace Prisma {
|
|
|
13574
14702
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
13575
14703
|
authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
|
|
13576
14704
|
modifiedMissionSpecs?: boolean | User$modifiedMissionSpecsArgs<ExtArgs>
|
|
14705
|
+
missionSpecPreFills?: boolean | User$missionSpecPreFillsArgs<ExtArgs>
|
|
13577
14706
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
13578
14707
|
}
|
|
13579
14708
|
|
|
@@ -13584,6 +14713,7 @@ export namespace Prisma {
|
|
|
13584
14713
|
ownedMissionsModels: Prisma.$MissionPayload<ExtArgs>[]
|
|
13585
14714
|
authoredMissionSpecs: Prisma.$MissionSpecPayload<ExtArgs>[]
|
|
13586
14715
|
modifiedMissionSpecs: Prisma.$MissionSpecPayload<ExtArgs>[]
|
|
14716
|
+
missionSpecPreFills: Prisma.$MissionSpecPreFillPayload<ExtArgs>[]
|
|
13587
14717
|
}
|
|
13588
14718
|
scalars: $Extensions.GetPayloadResult<{
|
|
13589
14719
|
id: string
|
|
@@ -13965,6 +15095,7 @@ export namespace Prisma {
|
|
|
13965
15095
|
ownedMissionsModels<T extends User$ownedMissionsModelsArgs<ExtArgs> = {}>(args?: Subset<T, User$ownedMissionsModelsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionPayload<ExtArgs>, T, "findMany"> | Null>
|
|
13966
15096
|
authoredMissionSpecs<T extends User$authoredMissionSpecsArgs<ExtArgs> = {}>(args?: Subset<T, User$authoredMissionSpecsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findMany"> | Null>
|
|
13967
15097
|
modifiedMissionSpecs<T extends User$modifiedMissionSpecsArgs<ExtArgs> = {}>(args?: Subset<T, User$modifiedMissionSpecsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findMany"> | Null>
|
|
15098
|
+
missionSpecPreFills<T extends User$missionSpecPreFillsArgs<ExtArgs> = {}>(args?: Subset<T, User$missionSpecPreFillsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "findMany"> | Null>
|
|
13968
15099
|
/**
|
|
13969
15100
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
13970
15101
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -14411,6 +15542,26 @@ export namespace Prisma {
|
|
|
14411
15542
|
distinct?: MissionSpecScalarFieldEnum | MissionSpecScalarFieldEnum[]
|
|
14412
15543
|
}
|
|
14413
15544
|
|
|
15545
|
+
/**
|
|
15546
|
+
* User.missionSpecPreFills
|
|
15547
|
+
*/
|
|
15548
|
+
export type User$missionSpecPreFillsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
15549
|
+
/**
|
|
15550
|
+
* Select specific fields to fetch from the MissionSpecPreFill
|
|
15551
|
+
*/
|
|
15552
|
+
select?: MissionSpecPreFillSelect<ExtArgs> | null
|
|
15553
|
+
/**
|
|
15554
|
+
* Choose, which related nodes to fetch as well
|
|
15555
|
+
*/
|
|
15556
|
+
include?: MissionSpecPreFillInclude<ExtArgs> | null
|
|
15557
|
+
where?: MissionSpecPreFillWhereInput
|
|
15558
|
+
orderBy?: MissionSpecPreFillOrderByWithRelationInput | MissionSpecPreFillOrderByWithRelationInput[]
|
|
15559
|
+
cursor?: MissionSpecPreFillWhereUniqueInput
|
|
15560
|
+
take?: number
|
|
15561
|
+
skip?: number
|
|
15562
|
+
distinct?: MissionSpecPreFillScalarFieldEnum | MissionSpecPreFillScalarFieldEnum[]
|
|
15563
|
+
}
|
|
15564
|
+
|
|
14414
15565
|
/**
|
|
14415
15566
|
* User without action
|
|
14416
15567
|
*/
|
|
@@ -14527,7 +15678,10 @@ export namespace Prisma {
|
|
|
14527
15678
|
title: 'title',
|
|
14528
15679
|
updatedAt: 'updatedAt',
|
|
14529
15680
|
videoURL: 'videoURL',
|
|
14530
|
-
website: 'website'
|
|
15681
|
+
website: 'website',
|
|
15682
|
+
startDate: 'startDate',
|
|
15683
|
+
overlapMinutes: 'overlapMinutes',
|
|
15684
|
+
timezone: 'timezone'
|
|
14531
15685
|
};
|
|
14532
15686
|
|
|
14533
15687
|
export type MissionScalarFieldEnum = (typeof MissionScalarFieldEnum)[keyof typeof MissionScalarFieldEnum]
|
|
@@ -14560,6 +15714,23 @@ export namespace Prisma {
|
|
|
14560
15714
|
export type MissionSpecScalarFieldEnum = (typeof MissionSpecScalarFieldEnum)[keyof typeof MissionSpecScalarFieldEnum]
|
|
14561
15715
|
|
|
14562
15716
|
|
|
15717
|
+
export const MissionSpecPreFillScalarFieldEnum: {
|
|
15718
|
+
id: 'id',
|
|
15719
|
+
userId: 'userId',
|
|
15720
|
+
missionName: 'missionName',
|
|
15721
|
+
plannedStart: 'plannedStart',
|
|
15722
|
+
companyDescription: 'companyDescription',
|
|
15723
|
+
missionDescription: 'missionDescription',
|
|
15724
|
+
timezone: 'timezone',
|
|
15725
|
+
openRoles: 'openRoles',
|
|
15726
|
+
status: 'status',
|
|
15727
|
+
createdAt: 'createdAt',
|
|
15728
|
+
updatedAt: 'updatedAt'
|
|
15729
|
+
};
|
|
15730
|
+
|
|
15731
|
+
export type MissionSpecPreFillScalarFieldEnum = (typeof MissionSpecPreFillScalarFieldEnum)[keyof typeof MissionSpecPreFillScalarFieldEnum]
|
|
15732
|
+
|
|
15733
|
+
|
|
14563
15734
|
export const RoleCategoryScalarFieldEnum: {
|
|
14564
15735
|
id: 'id',
|
|
14565
15736
|
anchors: 'anchors',
|
|
@@ -14755,6 +15926,13 @@ export namespace Prisma {
|
|
|
14755
15926
|
|
|
14756
15927
|
|
|
14757
15928
|
|
|
15929
|
+
/**
|
|
15930
|
+
* Reference to a field of type 'Json'
|
|
15931
|
+
*/
|
|
15932
|
+
export type JsonFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Json'>
|
|
15933
|
+
|
|
15934
|
+
|
|
15935
|
+
|
|
14758
15936
|
/**
|
|
14759
15937
|
* Reference to a field of type 'ContractPartyType'
|
|
14760
15938
|
*/
|
|
@@ -15146,6 +16324,9 @@ export namespace Prisma {
|
|
|
15146
16324
|
updatedAt?: DateTimeNullableFilter<"Mission"> | Date | string | null
|
|
15147
16325
|
videoURL?: StringNullableFilter<"Mission"> | string | null
|
|
15148
16326
|
website?: StringNullableFilter<"Mission"> | string | null
|
|
16327
|
+
startDate?: DateTimeNullableFilter<"Mission"> | Date | string | null
|
|
16328
|
+
overlapMinutes?: IntNullableFilter<"Mission"> | number | null
|
|
16329
|
+
timezone?: StringNullableFilter<"Mission"> | string | null
|
|
15149
16330
|
accountModel?: XOR<AccountNullableRelationFilter, AccountWhereInput> | null
|
|
15150
16331
|
creatorModel?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
15151
16332
|
missionSpec?: XOR<MissionSpecRelationFilter, MissionSpecWhereInput>
|
|
@@ -15197,6 +16378,9 @@ export namespace Prisma {
|
|
|
15197
16378
|
updatedAt?: SortOrder
|
|
15198
16379
|
videoURL?: SortOrder
|
|
15199
16380
|
website?: SortOrder
|
|
16381
|
+
startDate?: SortOrder
|
|
16382
|
+
overlapMinutes?: SortOrder
|
|
16383
|
+
timezone?: SortOrder
|
|
15200
16384
|
accountModel?: AccountOrderByWithRelationInput
|
|
15201
16385
|
creatorModel?: UserOrderByWithRelationInput
|
|
15202
16386
|
missionSpec?: MissionSpecOrderByWithRelationInput
|
|
@@ -15251,6 +16435,9 @@ export namespace Prisma {
|
|
|
15251
16435
|
updatedAt?: DateTimeNullableFilter<"Mission"> | Date | string | null
|
|
15252
16436
|
videoURL?: StringNullableFilter<"Mission"> | string | null
|
|
15253
16437
|
website?: StringNullableFilter<"Mission"> | string | null
|
|
16438
|
+
startDate?: DateTimeNullableFilter<"Mission"> | Date | string | null
|
|
16439
|
+
overlapMinutes?: IntNullableFilter<"Mission"> | number | null
|
|
16440
|
+
timezone?: StringNullableFilter<"Mission"> | string | null
|
|
15254
16441
|
accountModel?: XOR<AccountNullableRelationFilter, AccountWhereInput> | null
|
|
15255
16442
|
creatorModel?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
15256
16443
|
missionSpec?: XOR<MissionSpecRelationFilter, MissionSpecWhereInput>
|
|
@@ -15296,6 +16483,9 @@ export namespace Prisma {
|
|
|
15296
16483
|
updatedAt?: SortOrder
|
|
15297
16484
|
videoURL?: SortOrder
|
|
15298
16485
|
website?: SortOrder
|
|
16486
|
+
startDate?: SortOrder
|
|
16487
|
+
overlapMinutes?: SortOrder
|
|
16488
|
+
timezone?: SortOrder
|
|
15299
16489
|
_count?: MissionCountOrderByAggregateInput
|
|
15300
16490
|
_avg?: MissionAvgOrderByAggregateInput
|
|
15301
16491
|
_max?: MissionMaxOrderByAggregateInput
|
|
@@ -15344,6 +16534,9 @@ export namespace Prisma {
|
|
|
15344
16534
|
updatedAt?: DateTimeNullableWithAggregatesFilter<"Mission"> | Date | string | null
|
|
15345
16535
|
videoURL?: StringNullableWithAggregatesFilter<"Mission"> | string | null
|
|
15346
16536
|
website?: StringNullableWithAggregatesFilter<"Mission"> | string | null
|
|
16537
|
+
startDate?: DateTimeNullableWithAggregatesFilter<"Mission"> | Date | string | null
|
|
16538
|
+
overlapMinutes?: IntNullableWithAggregatesFilter<"Mission"> | number | null
|
|
16539
|
+
timezone?: StringNullableWithAggregatesFilter<"Mission"> | string | null
|
|
15347
16540
|
}
|
|
15348
16541
|
|
|
15349
16542
|
export type MissionSpecWhereInput = {
|
|
@@ -15510,6 +16703,91 @@ export namespace Prisma {
|
|
|
15510
16703
|
workingHoursNumberOfMinutesOverlap?: IntNullableWithAggregatesFilter<"MissionSpec"> | number | null
|
|
15511
16704
|
}
|
|
15512
16705
|
|
|
16706
|
+
export type MissionSpecPreFillWhereInput = {
|
|
16707
|
+
AND?: MissionSpecPreFillWhereInput | MissionSpecPreFillWhereInput[]
|
|
16708
|
+
OR?: MissionSpecPreFillWhereInput[]
|
|
16709
|
+
NOT?: MissionSpecPreFillWhereInput | MissionSpecPreFillWhereInput[]
|
|
16710
|
+
id?: StringFilter<"MissionSpecPreFill"> | string
|
|
16711
|
+
userId?: StringFilter<"MissionSpecPreFill"> | string
|
|
16712
|
+
missionName?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16713
|
+
plannedStart?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16714
|
+
companyDescription?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16715
|
+
missionDescription?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16716
|
+
timezone?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16717
|
+
openRoles?: JsonNullableFilter<"MissionSpecPreFill">
|
|
16718
|
+
status?: StringFilter<"MissionSpecPreFill"> | string
|
|
16719
|
+
createdAt?: DateTimeFilter<"MissionSpecPreFill"> | Date | string
|
|
16720
|
+
updatedAt?: DateTimeFilter<"MissionSpecPreFill"> | Date | string
|
|
16721
|
+
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
16722
|
+
}
|
|
16723
|
+
|
|
16724
|
+
export type MissionSpecPreFillOrderByWithRelationInput = {
|
|
16725
|
+
id?: SortOrder
|
|
16726
|
+
userId?: SortOrder
|
|
16727
|
+
missionName?: SortOrder
|
|
16728
|
+
plannedStart?: SortOrder
|
|
16729
|
+
companyDescription?: SortOrder
|
|
16730
|
+
missionDescription?: SortOrder
|
|
16731
|
+
timezone?: SortOrder
|
|
16732
|
+
openRoles?: SortOrder
|
|
16733
|
+
status?: SortOrder
|
|
16734
|
+
createdAt?: SortOrder
|
|
16735
|
+
updatedAt?: SortOrder
|
|
16736
|
+
user?: UserOrderByWithRelationInput
|
|
16737
|
+
}
|
|
16738
|
+
|
|
16739
|
+
export type MissionSpecPreFillWhereUniqueInput = Prisma.AtLeast<{
|
|
16740
|
+
id?: string
|
|
16741
|
+
AND?: MissionSpecPreFillWhereInput | MissionSpecPreFillWhereInput[]
|
|
16742
|
+
OR?: MissionSpecPreFillWhereInput[]
|
|
16743
|
+
NOT?: MissionSpecPreFillWhereInput | MissionSpecPreFillWhereInput[]
|
|
16744
|
+
userId?: StringFilter<"MissionSpecPreFill"> | string
|
|
16745
|
+
missionName?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16746
|
+
plannedStart?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16747
|
+
companyDescription?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16748
|
+
missionDescription?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16749
|
+
timezone?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
16750
|
+
openRoles?: JsonNullableFilter<"MissionSpecPreFill">
|
|
16751
|
+
status?: StringFilter<"MissionSpecPreFill"> | string
|
|
16752
|
+
createdAt?: DateTimeFilter<"MissionSpecPreFill"> | Date | string
|
|
16753
|
+
updatedAt?: DateTimeFilter<"MissionSpecPreFill"> | Date | string
|
|
16754
|
+
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
16755
|
+
}, "id">
|
|
16756
|
+
|
|
16757
|
+
export type MissionSpecPreFillOrderByWithAggregationInput = {
|
|
16758
|
+
id?: SortOrder
|
|
16759
|
+
userId?: SortOrder
|
|
16760
|
+
missionName?: SortOrder
|
|
16761
|
+
plannedStart?: SortOrder
|
|
16762
|
+
companyDescription?: SortOrder
|
|
16763
|
+
missionDescription?: SortOrder
|
|
16764
|
+
timezone?: SortOrder
|
|
16765
|
+
openRoles?: SortOrder
|
|
16766
|
+
status?: SortOrder
|
|
16767
|
+
createdAt?: SortOrder
|
|
16768
|
+
updatedAt?: SortOrder
|
|
16769
|
+
_count?: MissionSpecPreFillCountOrderByAggregateInput
|
|
16770
|
+
_max?: MissionSpecPreFillMaxOrderByAggregateInput
|
|
16771
|
+
_min?: MissionSpecPreFillMinOrderByAggregateInput
|
|
16772
|
+
}
|
|
16773
|
+
|
|
16774
|
+
export type MissionSpecPreFillScalarWhereWithAggregatesInput = {
|
|
16775
|
+
AND?: MissionSpecPreFillScalarWhereWithAggregatesInput | MissionSpecPreFillScalarWhereWithAggregatesInput[]
|
|
16776
|
+
OR?: MissionSpecPreFillScalarWhereWithAggregatesInput[]
|
|
16777
|
+
NOT?: MissionSpecPreFillScalarWhereWithAggregatesInput | MissionSpecPreFillScalarWhereWithAggregatesInput[]
|
|
16778
|
+
id?: StringWithAggregatesFilter<"MissionSpecPreFill"> | string
|
|
16779
|
+
userId?: StringWithAggregatesFilter<"MissionSpecPreFill"> | string
|
|
16780
|
+
missionName?: StringNullableWithAggregatesFilter<"MissionSpecPreFill"> | string | null
|
|
16781
|
+
plannedStart?: StringNullableWithAggregatesFilter<"MissionSpecPreFill"> | string | null
|
|
16782
|
+
companyDescription?: StringNullableWithAggregatesFilter<"MissionSpecPreFill"> | string | null
|
|
16783
|
+
missionDescription?: StringNullableWithAggregatesFilter<"MissionSpecPreFill"> | string | null
|
|
16784
|
+
timezone?: StringNullableWithAggregatesFilter<"MissionSpecPreFill"> | string | null
|
|
16785
|
+
openRoles?: JsonNullableWithAggregatesFilter<"MissionSpecPreFill">
|
|
16786
|
+
status?: StringWithAggregatesFilter<"MissionSpecPreFill"> | string
|
|
16787
|
+
createdAt?: DateTimeWithAggregatesFilter<"MissionSpecPreFill"> | Date | string
|
|
16788
|
+
updatedAt?: DateTimeWithAggregatesFilter<"MissionSpecPreFill"> | Date | string
|
|
16789
|
+
}
|
|
16790
|
+
|
|
15513
16791
|
export type RoleCategoryWhereInput = {
|
|
15514
16792
|
AND?: RoleCategoryWhereInput | RoleCategoryWhereInput[]
|
|
15515
16793
|
OR?: RoleCategoryWhereInput[]
|
|
@@ -15706,6 +16984,7 @@ export namespace Prisma {
|
|
|
15706
16984
|
ownedMissionsModels?: MissionListRelationFilter
|
|
15707
16985
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
15708
16986
|
modifiedMissionSpecs?: MissionSpecListRelationFilter
|
|
16987
|
+
missionSpecPreFills?: MissionSpecPreFillListRelationFilter
|
|
15709
16988
|
}
|
|
15710
16989
|
|
|
15711
16990
|
export type UserOrderByWithRelationInput = {
|
|
@@ -15725,6 +17004,7 @@ export namespace Prisma {
|
|
|
15725
17004
|
ownedMissionsModels?: MissionOrderByRelationAggregateInput
|
|
15726
17005
|
authoredMissionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
15727
17006
|
modifiedMissionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
17007
|
+
missionSpecPreFills?: MissionSpecPreFillOrderByRelationAggregateInput
|
|
15728
17008
|
}
|
|
15729
17009
|
|
|
15730
17010
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -15747,6 +17027,7 @@ export namespace Prisma {
|
|
|
15747
17027
|
ownedMissionsModels?: MissionListRelationFilter
|
|
15748
17028
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
15749
17029
|
modifiedMissionSpecs?: MissionSpecListRelationFilter
|
|
17030
|
+
missionSpecPreFills?: MissionSpecPreFillListRelationFilter
|
|
15750
17031
|
}, "id" | "username" | "email">
|
|
15751
17032
|
|
|
15752
17033
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -16197,6 +17478,9 @@ export namespace Prisma {
|
|
|
16197
17478
|
updatedAt?: Date | string | null
|
|
16198
17479
|
videoURL?: string | null
|
|
16199
17480
|
website?: string | null
|
|
17481
|
+
startDate?: Date | string | null
|
|
17482
|
+
overlapMinutes?: number | null
|
|
17483
|
+
timezone?: string | null
|
|
16200
17484
|
accountModel?: AccountCreateNestedOneWithoutMissionsInput
|
|
16201
17485
|
creatorModel?: UserCreateNestedOneWithoutCreatedMissionsModelsInput
|
|
16202
17486
|
missionSpec: MissionSpecCreateNestedOneWithoutMissionInput
|
|
@@ -16248,6 +17532,9 @@ export namespace Prisma {
|
|
|
16248
17532
|
updatedAt?: Date | string | null
|
|
16249
17533
|
videoURL?: string | null
|
|
16250
17534
|
website?: string | null
|
|
17535
|
+
startDate?: Date | string | null
|
|
17536
|
+
overlapMinutes?: number | null
|
|
17537
|
+
timezone?: string | null
|
|
16251
17538
|
contracts?: ContractUncheckedCreateNestedManyWithoutMissionInput
|
|
16252
17539
|
}
|
|
16253
17540
|
|
|
@@ -16290,6 +17577,9 @@ export namespace Prisma {
|
|
|
16290
17577
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
16291
17578
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16292
17579
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17580
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
17581
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
17582
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16293
17583
|
accountModel?: AccountUpdateOneWithoutMissionsNestedInput
|
|
16294
17584
|
creatorModel?: UserUpdateOneWithoutCreatedMissionsModelsNestedInput
|
|
16295
17585
|
missionSpec?: MissionSpecUpdateOneRequiredWithoutMissionNestedInput
|
|
@@ -16340,6 +17630,9 @@ export namespace Prisma {
|
|
|
16340
17630
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
16341
17631
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16342
17632
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17633
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
17634
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
17635
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16343
17636
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
16344
17637
|
}
|
|
16345
17638
|
|
|
@@ -16387,6 +17680,9 @@ export namespace Prisma {
|
|
|
16387
17680
|
updatedAt?: Date | string | null
|
|
16388
17681
|
videoURL?: string | null
|
|
16389
17682
|
website?: string | null
|
|
17683
|
+
startDate?: Date | string | null
|
|
17684
|
+
overlapMinutes?: number | null
|
|
17685
|
+
timezone?: string | null
|
|
16390
17686
|
}
|
|
16391
17687
|
|
|
16392
17688
|
export type MissionUpdateManyMutationInput = {
|
|
@@ -16428,6 +17724,9 @@ export namespace Prisma {
|
|
|
16428
17724
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
16429
17725
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16430
17726
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17727
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
17728
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
17729
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16431
17730
|
}
|
|
16432
17731
|
|
|
16433
17732
|
export type MissionUncheckedUpdateManyInput = {
|
|
@@ -16473,6 +17772,9 @@ export namespace Prisma {
|
|
|
16473
17772
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
16474
17773
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16475
17774
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17775
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
17776
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
17777
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16476
17778
|
}
|
|
16477
17779
|
|
|
16478
17780
|
export type MissionSpecCreateInput = {
|
|
@@ -16674,6 +17976,99 @@ export namespace Prisma {
|
|
|
16674
17976
|
workingHoursNumberOfMinutesOverlap?: NullableIntFieldUpdateOperationsInput | number | null
|
|
16675
17977
|
}
|
|
16676
17978
|
|
|
17979
|
+
export type MissionSpecPreFillCreateInput = {
|
|
17980
|
+
id?: string
|
|
17981
|
+
missionName?: string | null
|
|
17982
|
+
plannedStart?: string | null
|
|
17983
|
+
companyDescription?: string | null
|
|
17984
|
+
missionDescription?: string | null
|
|
17985
|
+
timezone?: string | null
|
|
17986
|
+
openRoles?: InputJsonValue | null
|
|
17987
|
+
status?: string
|
|
17988
|
+
createdAt?: Date | string
|
|
17989
|
+
updatedAt?: Date | string
|
|
17990
|
+
user: UserCreateNestedOneWithoutMissionSpecPreFillsInput
|
|
17991
|
+
}
|
|
17992
|
+
|
|
17993
|
+
export type MissionSpecPreFillUncheckedCreateInput = {
|
|
17994
|
+
id?: string
|
|
17995
|
+
userId: string
|
|
17996
|
+
missionName?: string | null
|
|
17997
|
+
plannedStart?: string | null
|
|
17998
|
+
companyDescription?: string | null
|
|
17999
|
+
missionDescription?: string | null
|
|
18000
|
+
timezone?: string | null
|
|
18001
|
+
openRoles?: InputJsonValue | null
|
|
18002
|
+
status?: string
|
|
18003
|
+
createdAt?: Date | string
|
|
18004
|
+
updatedAt?: Date | string
|
|
18005
|
+
}
|
|
18006
|
+
|
|
18007
|
+
export type MissionSpecPreFillUpdateInput = {
|
|
18008
|
+
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18009
|
+
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18010
|
+
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18011
|
+
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18012
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18013
|
+
openRoles?: InputJsonValue | InputJsonValue | null
|
|
18014
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
18015
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18016
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18017
|
+
user?: UserUpdateOneRequiredWithoutMissionSpecPreFillsNestedInput
|
|
18018
|
+
}
|
|
18019
|
+
|
|
18020
|
+
export type MissionSpecPreFillUncheckedUpdateInput = {
|
|
18021
|
+
userId?: StringFieldUpdateOperationsInput | string
|
|
18022
|
+
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18023
|
+
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18024
|
+
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18025
|
+
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18026
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18027
|
+
openRoles?: InputJsonValue | InputJsonValue | null
|
|
18028
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
18029
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18030
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18031
|
+
}
|
|
18032
|
+
|
|
18033
|
+
export type MissionSpecPreFillCreateManyInput = {
|
|
18034
|
+
id?: string
|
|
18035
|
+
userId: string
|
|
18036
|
+
missionName?: string | null
|
|
18037
|
+
plannedStart?: string | null
|
|
18038
|
+
companyDescription?: string | null
|
|
18039
|
+
missionDescription?: string | null
|
|
18040
|
+
timezone?: string | null
|
|
18041
|
+
openRoles?: InputJsonValue | null
|
|
18042
|
+
status?: string
|
|
18043
|
+
createdAt?: Date | string
|
|
18044
|
+
updatedAt?: Date | string
|
|
18045
|
+
}
|
|
18046
|
+
|
|
18047
|
+
export type MissionSpecPreFillUpdateManyMutationInput = {
|
|
18048
|
+
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18049
|
+
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18050
|
+
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18051
|
+
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18052
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18053
|
+
openRoles?: InputJsonValue | InputJsonValue | null
|
|
18054
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
18055
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18056
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18057
|
+
}
|
|
18058
|
+
|
|
18059
|
+
export type MissionSpecPreFillUncheckedUpdateManyInput = {
|
|
18060
|
+
userId?: StringFieldUpdateOperationsInput | string
|
|
18061
|
+
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18062
|
+
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18063
|
+
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18064
|
+
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18065
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18066
|
+
openRoles?: InputJsonValue | InputJsonValue | null
|
|
18067
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
18068
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18069
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18070
|
+
}
|
|
18071
|
+
|
|
16677
18072
|
export type RoleCategoryCreateInput = {
|
|
16678
18073
|
id?: string
|
|
16679
18074
|
anchors?: RoleCategoryCreateanchorsInput | string[]
|
|
@@ -16875,6 +18270,7 @@ export namespace Prisma {
|
|
|
16875
18270
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
16876
18271
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
16877
18272
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
18273
|
+
missionSpecPreFills?: MissionSpecPreFillCreateNestedManyWithoutUserInput
|
|
16878
18274
|
}
|
|
16879
18275
|
|
|
16880
18276
|
export type UserUncheckedCreateInput = {
|
|
@@ -16894,6 +18290,7 @@ export namespace Prisma {
|
|
|
16894
18290
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
16895
18291
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
16896
18292
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
18293
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
16897
18294
|
}
|
|
16898
18295
|
|
|
16899
18296
|
export type UserUpdateInput = {
|
|
@@ -16912,6 +18309,7 @@ export namespace Prisma {
|
|
|
16912
18309
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
16913
18310
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
16914
18311
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
18312
|
+
missionSpecPreFills?: MissionSpecPreFillUpdateManyWithoutUserNestedInput
|
|
16915
18313
|
}
|
|
16916
18314
|
|
|
16917
18315
|
export type UserUncheckedUpdateInput = {
|
|
@@ -16930,6 +18328,7 @@ export namespace Prisma {
|
|
|
16930
18328
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
16931
18329
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
16932
18330
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
18331
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
16933
18332
|
}
|
|
16934
18333
|
|
|
16935
18334
|
export type UserCreateManyInput = {
|
|
@@ -17688,12 +19087,16 @@ export namespace Prisma {
|
|
|
17688
19087
|
updatedAt?: SortOrder
|
|
17689
19088
|
videoURL?: SortOrder
|
|
17690
19089
|
website?: SortOrder
|
|
19090
|
+
startDate?: SortOrder
|
|
19091
|
+
overlapMinutes?: SortOrder
|
|
19092
|
+
timezone?: SortOrder
|
|
17691
19093
|
}
|
|
17692
19094
|
|
|
17693
19095
|
export type MissionAvgOrderByAggregateInput = {
|
|
17694
19096
|
clientMargin?: SortOrder
|
|
17695
19097
|
expectedDurationMonths?: SortOrder
|
|
17696
19098
|
rolesMargin?: SortOrder
|
|
19099
|
+
overlapMinutes?: SortOrder
|
|
17697
19100
|
}
|
|
17698
19101
|
|
|
17699
19102
|
export type MissionMaxOrderByAggregateInput = {
|
|
@@ -17730,6 +19133,9 @@ export namespace Prisma {
|
|
|
17730
19133
|
updatedAt?: SortOrder
|
|
17731
19134
|
videoURL?: SortOrder
|
|
17732
19135
|
website?: SortOrder
|
|
19136
|
+
startDate?: SortOrder
|
|
19137
|
+
overlapMinutes?: SortOrder
|
|
19138
|
+
timezone?: SortOrder
|
|
17733
19139
|
}
|
|
17734
19140
|
|
|
17735
19141
|
export type MissionMinOrderByAggregateInput = {
|
|
@@ -17766,12 +19172,16 @@ export namespace Prisma {
|
|
|
17766
19172
|
updatedAt?: SortOrder
|
|
17767
19173
|
videoURL?: SortOrder
|
|
17768
19174
|
website?: SortOrder
|
|
19175
|
+
startDate?: SortOrder
|
|
19176
|
+
overlapMinutes?: SortOrder
|
|
19177
|
+
timezone?: SortOrder
|
|
17769
19178
|
}
|
|
17770
19179
|
|
|
17771
19180
|
export type MissionSumOrderByAggregateInput = {
|
|
17772
19181
|
clientMargin?: SortOrder
|
|
17773
19182
|
expectedDurationMonths?: SortOrder
|
|
17774
19183
|
rolesMargin?: SortOrder
|
|
19184
|
+
overlapMinutes?: SortOrder
|
|
17775
19185
|
}
|
|
17776
19186
|
|
|
17777
19187
|
export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -18055,6 +19465,78 @@ export namespace Prisma {
|
|
|
18055
19465
|
_min?: NestedIntFilter<$PrismaModel>
|
|
18056
19466
|
_max?: NestedIntFilter<$PrismaModel>
|
|
18057
19467
|
}
|
|
19468
|
+
export type JsonNullableFilter<$PrismaModel = never> =
|
|
19469
|
+
| PatchUndefined<
|
|
19470
|
+
Either<Required<JsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>,
|
|
19471
|
+
Required<JsonNullableFilterBase<$PrismaModel>>
|
|
19472
|
+
>
|
|
19473
|
+
| OptionalFlat<Omit<Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>
|
|
19474
|
+
|
|
19475
|
+
export type JsonNullableFilterBase<$PrismaModel = never> = {
|
|
19476
|
+
equals?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
19477
|
+
not?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
19478
|
+
isSet?: boolean
|
|
19479
|
+
}
|
|
19480
|
+
|
|
19481
|
+
export type UserRelationFilter = {
|
|
19482
|
+
is?: UserWhereInput
|
|
19483
|
+
isNot?: UserWhereInput
|
|
19484
|
+
}
|
|
19485
|
+
|
|
19486
|
+
export type MissionSpecPreFillCountOrderByAggregateInput = {
|
|
19487
|
+
id?: SortOrder
|
|
19488
|
+
userId?: SortOrder
|
|
19489
|
+
missionName?: SortOrder
|
|
19490
|
+
plannedStart?: SortOrder
|
|
19491
|
+
companyDescription?: SortOrder
|
|
19492
|
+
missionDescription?: SortOrder
|
|
19493
|
+
timezone?: SortOrder
|
|
19494
|
+
openRoles?: SortOrder
|
|
19495
|
+
status?: SortOrder
|
|
19496
|
+
createdAt?: SortOrder
|
|
19497
|
+
updatedAt?: SortOrder
|
|
19498
|
+
}
|
|
19499
|
+
|
|
19500
|
+
export type MissionSpecPreFillMaxOrderByAggregateInput = {
|
|
19501
|
+
id?: SortOrder
|
|
19502
|
+
userId?: SortOrder
|
|
19503
|
+
missionName?: SortOrder
|
|
19504
|
+
plannedStart?: SortOrder
|
|
19505
|
+
companyDescription?: SortOrder
|
|
19506
|
+
missionDescription?: SortOrder
|
|
19507
|
+
timezone?: SortOrder
|
|
19508
|
+
status?: SortOrder
|
|
19509
|
+
createdAt?: SortOrder
|
|
19510
|
+
updatedAt?: SortOrder
|
|
19511
|
+
}
|
|
19512
|
+
|
|
19513
|
+
export type MissionSpecPreFillMinOrderByAggregateInput = {
|
|
19514
|
+
id?: SortOrder
|
|
19515
|
+
userId?: SortOrder
|
|
19516
|
+
missionName?: SortOrder
|
|
19517
|
+
plannedStart?: SortOrder
|
|
19518
|
+
companyDescription?: SortOrder
|
|
19519
|
+
missionDescription?: SortOrder
|
|
19520
|
+
timezone?: SortOrder
|
|
19521
|
+
status?: SortOrder
|
|
19522
|
+
createdAt?: SortOrder
|
|
19523
|
+
updatedAt?: SortOrder
|
|
19524
|
+
}
|
|
19525
|
+
export type JsonNullableWithAggregatesFilter<$PrismaModel = never> =
|
|
19526
|
+
| PatchUndefined<
|
|
19527
|
+
Either<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>,
|
|
19528
|
+
Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>
|
|
19529
|
+
>
|
|
19530
|
+
| OptionalFlat<Omit<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>
|
|
19531
|
+
|
|
19532
|
+
export type JsonNullableWithAggregatesFilterBase<$PrismaModel = never> = {
|
|
19533
|
+
equals?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
19534
|
+
not?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
19535
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
19536
|
+
_min?: NestedJsonNullableFilter<$PrismaModel>
|
|
19537
|
+
_max?: NestedJsonNullableFilter<$PrismaModel>
|
|
19538
|
+
isSet?: boolean
|
|
19539
|
+
}
|
|
18058
19540
|
|
|
18059
19541
|
export type RoleCategoryCountOrderByAggregateInput = {
|
|
18060
19542
|
id?: SortOrder
|
|
@@ -18137,6 +19619,16 @@ export namespace Prisma {
|
|
|
18137
19619
|
not?: NestedBoolFilter<$PrismaModel> | boolean
|
|
18138
19620
|
}
|
|
18139
19621
|
|
|
19622
|
+
export type MissionSpecPreFillListRelationFilter = {
|
|
19623
|
+
every?: MissionSpecPreFillWhereInput
|
|
19624
|
+
some?: MissionSpecPreFillWhereInput
|
|
19625
|
+
none?: MissionSpecPreFillWhereInput
|
|
19626
|
+
}
|
|
19627
|
+
|
|
19628
|
+
export type MissionSpecPreFillOrderByRelationAggregateInput = {
|
|
19629
|
+
_count?: SortOrder
|
|
19630
|
+
}
|
|
19631
|
+
|
|
18140
19632
|
export type UserCountOrderByAggregateInput = {
|
|
18141
19633
|
id?: SortOrder
|
|
18142
19634
|
firstName?: SortOrder
|
|
@@ -19081,6 +20573,20 @@ export namespace Prisma {
|
|
|
19081
20573
|
update?: XOR<XOR<MissionUpdateToOneWithWhereWithoutMissionSpecInput, MissionUpdateWithoutMissionSpecInput>, MissionUncheckedUpdateWithoutMissionSpecInput>
|
|
19082
20574
|
}
|
|
19083
20575
|
|
|
20576
|
+
export type UserCreateNestedOneWithoutMissionSpecPreFillsInput = {
|
|
20577
|
+
create?: XOR<UserCreateWithoutMissionSpecPreFillsInput, UserUncheckedCreateWithoutMissionSpecPreFillsInput>
|
|
20578
|
+
connectOrCreate?: UserCreateOrConnectWithoutMissionSpecPreFillsInput
|
|
20579
|
+
connect?: UserWhereUniqueInput
|
|
20580
|
+
}
|
|
20581
|
+
|
|
20582
|
+
export type UserUpdateOneRequiredWithoutMissionSpecPreFillsNestedInput = {
|
|
20583
|
+
create?: XOR<UserCreateWithoutMissionSpecPreFillsInput, UserUncheckedCreateWithoutMissionSpecPreFillsInput>
|
|
20584
|
+
connectOrCreate?: UserCreateOrConnectWithoutMissionSpecPreFillsInput
|
|
20585
|
+
upsert?: UserUpsertWithoutMissionSpecPreFillsInput
|
|
20586
|
+
connect?: UserWhereUniqueInput
|
|
20587
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutMissionSpecPreFillsInput, UserUpdateWithoutMissionSpecPreFillsInput>, UserUncheckedUpdateWithoutMissionSpecPreFillsInput>
|
|
20588
|
+
}
|
|
20589
|
+
|
|
19084
20590
|
export type RoleCategoryCreateanchorsInput = {
|
|
19085
20591
|
set: string[]
|
|
19086
20592
|
}
|
|
@@ -19149,6 +20655,13 @@ export namespace Prisma {
|
|
|
19149
20655
|
connect?: MissionSpecWhereUniqueInput | MissionSpecWhereUniqueInput[]
|
|
19150
20656
|
}
|
|
19151
20657
|
|
|
20658
|
+
export type MissionSpecPreFillCreateNestedManyWithoutUserInput = {
|
|
20659
|
+
create?: XOR<MissionSpecPreFillCreateWithoutUserInput, MissionSpecPreFillUncheckedCreateWithoutUserInput> | MissionSpecPreFillCreateWithoutUserInput[] | MissionSpecPreFillUncheckedCreateWithoutUserInput[]
|
|
20660
|
+
connectOrCreate?: MissionSpecPreFillCreateOrConnectWithoutUserInput | MissionSpecPreFillCreateOrConnectWithoutUserInput[]
|
|
20661
|
+
createMany?: MissionSpecPreFillCreateManyUserInputEnvelope
|
|
20662
|
+
connect?: MissionSpecPreFillWhereUniqueInput | MissionSpecPreFillWhereUniqueInput[]
|
|
20663
|
+
}
|
|
20664
|
+
|
|
19152
20665
|
export type MissionUncheckedCreateNestedManyWithoutCreatorModelInput = {
|
|
19153
20666
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
19154
20667
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -19177,6 +20690,13 @@ export namespace Prisma {
|
|
|
19177
20690
|
connect?: MissionSpecWhereUniqueInput | MissionSpecWhereUniqueInput[]
|
|
19178
20691
|
}
|
|
19179
20692
|
|
|
20693
|
+
export type MissionSpecPreFillUncheckedCreateNestedManyWithoutUserInput = {
|
|
20694
|
+
create?: XOR<MissionSpecPreFillCreateWithoutUserInput, MissionSpecPreFillUncheckedCreateWithoutUserInput> | MissionSpecPreFillCreateWithoutUserInput[] | MissionSpecPreFillUncheckedCreateWithoutUserInput[]
|
|
20695
|
+
connectOrCreate?: MissionSpecPreFillCreateOrConnectWithoutUserInput | MissionSpecPreFillCreateOrConnectWithoutUserInput[]
|
|
20696
|
+
createMany?: MissionSpecPreFillCreateManyUserInputEnvelope
|
|
20697
|
+
connect?: MissionSpecPreFillWhereUniqueInput | MissionSpecPreFillWhereUniqueInput[]
|
|
20698
|
+
}
|
|
20699
|
+
|
|
19180
20700
|
export type BoolFieldUpdateOperationsInput = {
|
|
19181
20701
|
set?: boolean
|
|
19182
20702
|
}
|
|
@@ -19242,6 +20762,20 @@ export namespace Prisma {
|
|
|
19242
20762
|
deleteMany?: MissionSpecScalarWhereInput | MissionSpecScalarWhereInput[]
|
|
19243
20763
|
}
|
|
19244
20764
|
|
|
20765
|
+
export type MissionSpecPreFillUpdateManyWithoutUserNestedInput = {
|
|
20766
|
+
create?: XOR<MissionSpecPreFillCreateWithoutUserInput, MissionSpecPreFillUncheckedCreateWithoutUserInput> | MissionSpecPreFillCreateWithoutUserInput[] | MissionSpecPreFillUncheckedCreateWithoutUserInput[]
|
|
20767
|
+
connectOrCreate?: MissionSpecPreFillCreateOrConnectWithoutUserInput | MissionSpecPreFillCreateOrConnectWithoutUserInput[]
|
|
20768
|
+
upsert?: MissionSpecPreFillUpsertWithWhereUniqueWithoutUserInput | MissionSpecPreFillUpsertWithWhereUniqueWithoutUserInput[]
|
|
20769
|
+
createMany?: MissionSpecPreFillCreateManyUserInputEnvelope
|
|
20770
|
+
set?: MissionSpecPreFillWhereUniqueInput | MissionSpecPreFillWhereUniqueInput[]
|
|
20771
|
+
disconnect?: MissionSpecPreFillWhereUniqueInput | MissionSpecPreFillWhereUniqueInput[]
|
|
20772
|
+
delete?: MissionSpecPreFillWhereUniqueInput | MissionSpecPreFillWhereUniqueInput[]
|
|
20773
|
+
connect?: MissionSpecPreFillWhereUniqueInput | MissionSpecPreFillWhereUniqueInput[]
|
|
20774
|
+
update?: MissionSpecPreFillUpdateWithWhereUniqueWithoutUserInput | MissionSpecPreFillUpdateWithWhereUniqueWithoutUserInput[]
|
|
20775
|
+
updateMany?: MissionSpecPreFillUpdateManyWithWhereWithoutUserInput | MissionSpecPreFillUpdateManyWithWhereWithoutUserInput[]
|
|
20776
|
+
deleteMany?: MissionSpecPreFillScalarWhereInput | MissionSpecPreFillScalarWhereInput[]
|
|
20777
|
+
}
|
|
20778
|
+
|
|
19245
20779
|
export type MissionUncheckedUpdateManyWithoutCreatorModelNestedInput = {
|
|
19246
20780
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
19247
20781
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -19298,6 +20832,20 @@ export namespace Prisma {
|
|
|
19298
20832
|
deleteMany?: MissionSpecScalarWhereInput | MissionSpecScalarWhereInput[]
|
|
19299
20833
|
}
|
|
19300
20834
|
|
|
20835
|
+
export type MissionSpecPreFillUncheckedUpdateManyWithoutUserNestedInput = {
|
|
20836
|
+
create?: XOR<MissionSpecPreFillCreateWithoutUserInput, MissionSpecPreFillUncheckedCreateWithoutUserInput> | MissionSpecPreFillCreateWithoutUserInput[] | MissionSpecPreFillUncheckedCreateWithoutUserInput[]
|
|
20837
|
+
connectOrCreate?: MissionSpecPreFillCreateOrConnectWithoutUserInput | MissionSpecPreFillCreateOrConnectWithoutUserInput[]
|
|
20838
|
+
upsert?: MissionSpecPreFillUpsertWithWhereUniqueWithoutUserInput | MissionSpecPreFillUpsertWithWhereUniqueWithoutUserInput[]
|
|
20839
|
+
createMany?: MissionSpecPreFillCreateManyUserInputEnvelope
|
|
20840
|
+
set?: MissionSpecPreFillWhereUniqueInput | MissionSpecPreFillWhereUniqueInput[]
|
|
20841
|
+
disconnect?: MissionSpecPreFillWhereUniqueInput | MissionSpecPreFillWhereUniqueInput[]
|
|
20842
|
+
delete?: MissionSpecPreFillWhereUniqueInput | MissionSpecPreFillWhereUniqueInput[]
|
|
20843
|
+
connect?: MissionSpecPreFillWhereUniqueInput | MissionSpecPreFillWhereUniqueInput[]
|
|
20844
|
+
update?: MissionSpecPreFillUpdateWithWhereUniqueWithoutUserInput | MissionSpecPreFillUpdateWithWhereUniqueWithoutUserInput[]
|
|
20845
|
+
updateMany?: MissionSpecPreFillUpdateManyWithWhereWithoutUserInput | MissionSpecPreFillUpdateManyWithWhereWithoutUserInput[]
|
|
20846
|
+
deleteMany?: MissionSpecPreFillScalarWhereInput | MissionSpecPreFillScalarWhereInput[]
|
|
20847
|
+
}
|
|
20848
|
+
|
|
19301
20849
|
export type NestedStringFilter<$PrismaModel = never> = {
|
|
19302
20850
|
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
19303
20851
|
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
@@ -19881,6 +21429,18 @@ export namespace Prisma {
|
|
|
19881
21429
|
gte?: number | FloatFieldRefInput<$PrismaModel>
|
|
19882
21430
|
not?: NestedFloatFilter<$PrismaModel> | number
|
|
19883
21431
|
}
|
|
21432
|
+
export type NestedJsonNullableFilter<$PrismaModel = never> =
|
|
21433
|
+
| PatchUndefined<
|
|
21434
|
+
Either<Required<NestedJsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>,
|
|
21435
|
+
Required<NestedJsonNullableFilterBase<$PrismaModel>>
|
|
21436
|
+
>
|
|
21437
|
+
| OptionalFlat<Omit<Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>
|
|
21438
|
+
|
|
21439
|
+
export type NestedJsonNullableFilterBase<$PrismaModel = never> = {
|
|
21440
|
+
equals?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
21441
|
+
not?: InputJsonValue | JsonFieldRefInput<$PrismaModel> | null
|
|
21442
|
+
isSet?: boolean
|
|
21443
|
+
}
|
|
19884
21444
|
|
|
19885
21445
|
export type NestedBoolFilter<$PrismaModel = never> = {
|
|
19886
21446
|
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
@@ -19995,6 +21555,9 @@ export namespace Prisma {
|
|
|
19995
21555
|
updatedAt?: Date | string | null
|
|
19996
21556
|
videoURL?: string | null
|
|
19997
21557
|
website?: string | null
|
|
21558
|
+
startDate?: Date | string | null
|
|
21559
|
+
overlapMinutes?: number | null
|
|
21560
|
+
timezone?: string | null
|
|
19998
21561
|
creatorModel?: UserCreateNestedOneWithoutCreatedMissionsModelsInput
|
|
19999
21562
|
missionSpec: MissionSpecCreateNestedOneWithoutMissionInput
|
|
20000
21563
|
ownerModel?: UserCreateNestedOneWithoutOwnedMissionsModelsInput
|
|
@@ -20044,6 +21607,9 @@ export namespace Prisma {
|
|
|
20044
21607
|
updatedAt?: Date | string | null
|
|
20045
21608
|
videoURL?: string | null
|
|
20046
21609
|
website?: string | null
|
|
21610
|
+
startDate?: Date | string | null
|
|
21611
|
+
overlapMinutes?: number | null
|
|
21612
|
+
timezone?: string | null
|
|
20047
21613
|
contracts?: ContractUncheckedCreateNestedManyWithoutMissionInput
|
|
20048
21614
|
}
|
|
20049
21615
|
|
|
@@ -20262,6 +21828,9 @@ export namespace Prisma {
|
|
|
20262
21828
|
updatedAt?: DateTimeNullableFilter<"Mission"> | Date | string | null
|
|
20263
21829
|
videoURL?: StringNullableFilter<"Mission"> | string | null
|
|
20264
21830
|
website?: StringNullableFilter<"Mission"> | string | null
|
|
21831
|
+
startDate?: DateTimeNullableFilter<"Mission"> | Date | string | null
|
|
21832
|
+
overlapMinutes?: IntNullableFilter<"Mission"> | number | null
|
|
21833
|
+
timezone?: StringNullableFilter<"Mission"> | string | null
|
|
20265
21834
|
}
|
|
20266
21835
|
|
|
20267
21836
|
export type MissionSpecUpsertWithWhereUniqueWithoutAccountInput = {
|
|
@@ -20567,6 +22136,9 @@ export namespace Prisma {
|
|
|
20567
22136
|
updatedAt?: Date | string | null
|
|
20568
22137
|
videoURL?: string | null
|
|
20569
22138
|
website?: string | null
|
|
22139
|
+
startDate?: Date | string | null
|
|
22140
|
+
overlapMinutes?: number | null
|
|
22141
|
+
timezone?: string | null
|
|
20570
22142
|
accountModel?: AccountCreateNestedOneWithoutMissionsInput
|
|
20571
22143
|
creatorModel?: UserCreateNestedOneWithoutCreatedMissionsModelsInput
|
|
20572
22144
|
missionSpec: MissionSpecCreateNestedOneWithoutMissionInput
|
|
@@ -20617,6 +22189,9 @@ export namespace Prisma {
|
|
|
20617
22189
|
updatedAt?: Date | string | null
|
|
20618
22190
|
videoURL?: string | null
|
|
20619
22191
|
website?: string | null
|
|
22192
|
+
startDate?: Date | string | null
|
|
22193
|
+
overlapMinutes?: number | null
|
|
22194
|
+
timezone?: string | null
|
|
20620
22195
|
}
|
|
20621
22196
|
|
|
20622
22197
|
export type MissionCreateOrConnectWithoutContractsInput = {
|
|
@@ -20688,6 +22263,9 @@ export namespace Prisma {
|
|
|
20688
22263
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
20689
22264
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20690
22265
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22266
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
22267
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
22268
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20691
22269
|
accountModel?: AccountUpdateOneWithoutMissionsNestedInput
|
|
20692
22270
|
creatorModel?: UserUpdateOneWithoutCreatedMissionsModelsNestedInput
|
|
20693
22271
|
missionSpec?: MissionSpecUpdateOneRequiredWithoutMissionNestedInput
|
|
@@ -20737,6 +22315,9 @@ export namespace Prisma {
|
|
|
20737
22315
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
20738
22316
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20739
22317
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22318
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
22319
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
22320
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20740
22321
|
}
|
|
20741
22322
|
|
|
20742
22323
|
export type MissionRoleAvailabilityCreateInput = {
|
|
@@ -20836,6 +22417,7 @@ export namespace Prisma {
|
|
|
20836
22417
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
20837
22418
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
20838
22419
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
22420
|
+
missionSpecPreFills?: MissionSpecPreFillCreateNestedManyWithoutUserInput
|
|
20839
22421
|
}
|
|
20840
22422
|
|
|
20841
22423
|
export type UserUncheckedCreateWithoutCreatedMissionsModelsInput = {
|
|
@@ -20854,6 +22436,7 @@ export namespace Prisma {
|
|
|
20854
22436
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
20855
22437
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
20856
22438
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
22439
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
20857
22440
|
}
|
|
20858
22441
|
|
|
20859
22442
|
export type UserCreateOrConnectWithoutCreatedMissionsModelsInput = {
|
|
@@ -20940,6 +22523,7 @@ export namespace Prisma {
|
|
|
20940
22523
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
20941
22524
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
20942
22525
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
22526
|
+
missionSpecPreFills?: MissionSpecPreFillCreateNestedManyWithoutUserInput
|
|
20943
22527
|
}
|
|
20944
22528
|
|
|
20945
22529
|
export type UserUncheckedCreateWithoutOwnedMissionsModelsInput = {
|
|
@@ -20958,6 +22542,7 @@ export namespace Prisma {
|
|
|
20958
22542
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
20959
22543
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
20960
22544
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
22545
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
20961
22546
|
}
|
|
20962
22547
|
|
|
20963
22548
|
export type UserCreateOrConnectWithoutOwnedMissionsModelsInput = {
|
|
@@ -21109,6 +22694,7 @@ export namespace Prisma {
|
|
|
21109
22694
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
21110
22695
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
21111
22696
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
22697
|
+
missionSpecPreFills?: MissionSpecPreFillUpdateManyWithoutUserNestedInput
|
|
21112
22698
|
}
|
|
21113
22699
|
|
|
21114
22700
|
export type UserUncheckedUpdateWithoutCreatedMissionsModelsInput = {
|
|
@@ -21126,6 +22712,7 @@ export namespace Prisma {
|
|
|
21126
22712
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
21127
22713
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
21128
22714
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
22715
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
21129
22716
|
}
|
|
21130
22717
|
|
|
21131
22718
|
export type MissionSpecUpsertWithoutMissionInput = {
|
|
@@ -21221,6 +22808,7 @@ export namespace Prisma {
|
|
|
21221
22808
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
21222
22809
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
21223
22810
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
22811
|
+
missionSpecPreFills?: MissionSpecPreFillUpdateManyWithoutUserNestedInput
|
|
21224
22812
|
}
|
|
21225
22813
|
|
|
21226
22814
|
export type UserUncheckedUpdateWithoutOwnedMissionsModelsInput = {
|
|
@@ -21238,6 +22826,7 @@ export namespace Prisma {
|
|
|
21238
22826
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
21239
22827
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
21240
22828
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
22829
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
21241
22830
|
}
|
|
21242
22831
|
|
|
21243
22832
|
export type ContractUpsertWithWhereUniqueWithoutMissionInput = {
|
|
@@ -21352,6 +22941,7 @@ export namespace Prisma {
|
|
|
21352
22941
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
21353
22942
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
21354
22943
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
22944
|
+
missionSpecPreFills?: MissionSpecPreFillCreateNestedManyWithoutUserInput
|
|
21355
22945
|
}
|
|
21356
22946
|
|
|
21357
22947
|
export type UserUncheckedCreateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -21370,6 +22960,7 @@ export namespace Prisma {
|
|
|
21370
22960
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
21371
22961
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
21372
22962
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
22963
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
21373
22964
|
}
|
|
21374
22965
|
|
|
21375
22966
|
export type UserCreateOrConnectWithoutAuthoredMissionSpecsInput = {
|
|
@@ -21426,6 +23017,7 @@ export namespace Prisma {
|
|
|
21426
23017
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
21427
23018
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
21428
23019
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
23020
|
+
missionSpecPreFills?: MissionSpecPreFillCreateNestedManyWithoutUserInput
|
|
21429
23021
|
}
|
|
21430
23022
|
|
|
21431
23023
|
export type UserUncheckedCreateWithoutModifiedMissionSpecsInput = {
|
|
@@ -21444,6 +23036,7 @@ export namespace Prisma {
|
|
|
21444
23036
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
21445
23037
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
21446
23038
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
23039
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
21447
23040
|
}
|
|
21448
23041
|
|
|
21449
23042
|
export type UserCreateOrConnectWithoutModifiedMissionSpecsInput = {
|
|
@@ -21491,6 +23084,9 @@ export namespace Prisma {
|
|
|
21491
23084
|
updatedAt?: Date | string | null
|
|
21492
23085
|
videoURL?: string | null
|
|
21493
23086
|
website?: string | null
|
|
23087
|
+
startDate?: Date | string | null
|
|
23088
|
+
overlapMinutes?: number | null
|
|
23089
|
+
timezone?: string | null
|
|
21494
23090
|
accountModel?: AccountCreateNestedOneWithoutMissionsInput
|
|
21495
23091
|
creatorModel?: UserCreateNestedOneWithoutCreatedMissionsModelsInput
|
|
21496
23092
|
ownerModel?: UserCreateNestedOneWithoutOwnedMissionsModelsInput
|
|
@@ -21540,6 +23136,9 @@ export namespace Prisma {
|
|
|
21540
23136
|
updatedAt?: Date | string | null
|
|
21541
23137
|
videoURL?: string | null
|
|
21542
23138
|
website?: string | null
|
|
23139
|
+
startDate?: Date | string | null
|
|
23140
|
+
overlapMinutes?: number | null
|
|
23141
|
+
timezone?: string | null
|
|
21543
23142
|
contracts?: ContractUncheckedCreateNestedManyWithoutMissionInput
|
|
21544
23143
|
}
|
|
21545
23144
|
|
|
@@ -21644,6 +23243,7 @@ export namespace Prisma {
|
|
|
21644
23243
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
21645
23244
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
21646
23245
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
23246
|
+
missionSpecPreFills?: MissionSpecPreFillUpdateManyWithoutUserNestedInput
|
|
21647
23247
|
}
|
|
21648
23248
|
|
|
21649
23249
|
export type UserUncheckedUpdateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -21661,6 +23261,7 @@ export namespace Prisma {
|
|
|
21661
23261
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
21662
23262
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
21663
23263
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
23264
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
21664
23265
|
}
|
|
21665
23266
|
|
|
21666
23267
|
export type ClientCompanyUpsertWithoutMissionSpecsInput = {
|
|
@@ -21726,6 +23327,7 @@ export namespace Prisma {
|
|
|
21726
23327
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
21727
23328
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
21728
23329
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
23330
|
+
missionSpecPreFills?: MissionSpecPreFillUpdateManyWithoutUserNestedInput
|
|
21729
23331
|
}
|
|
21730
23332
|
|
|
21731
23333
|
export type UserUncheckedUpdateWithoutModifiedMissionSpecsInput = {
|
|
@@ -21743,6 +23345,7 @@ export namespace Prisma {
|
|
|
21743
23345
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
21744
23346
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
21745
23347
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
23348
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
21746
23349
|
}
|
|
21747
23350
|
|
|
21748
23351
|
export type MissionUpsertWithoutMissionSpecInput = {
|
|
@@ -21795,6 +23398,9 @@ export namespace Prisma {
|
|
|
21795
23398
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
21796
23399
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21797
23400
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23401
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
23402
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
23403
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21798
23404
|
accountModel?: AccountUpdateOneWithoutMissionsNestedInput
|
|
21799
23405
|
creatorModel?: UserUpdateOneWithoutCreatedMissionsModelsNestedInput
|
|
21800
23406
|
ownerModel?: UserUpdateOneWithoutOwnedMissionsModelsNestedInput
|
|
@@ -21843,9 +23449,102 @@ export namespace Prisma {
|
|
|
21843
23449
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
21844
23450
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21845
23451
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23452
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
23453
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
23454
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21846
23455
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
21847
23456
|
}
|
|
21848
23457
|
|
|
23458
|
+
export type UserCreateWithoutMissionSpecPreFillsInput = {
|
|
23459
|
+
id?: string
|
|
23460
|
+
firstName?: string | null
|
|
23461
|
+
lastName?: string | null
|
|
23462
|
+
username?: string | null
|
|
23463
|
+
email?: string | null
|
|
23464
|
+
isAdmin?: boolean
|
|
23465
|
+
type: string
|
|
23466
|
+
pictureURL?: string | null
|
|
23467
|
+
status: string
|
|
23468
|
+
createdAt: Date | string
|
|
23469
|
+
titles?: UserCreatetitlesInput | string[]
|
|
23470
|
+
scrubbed?: string | null
|
|
23471
|
+
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
23472
|
+
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
23473
|
+
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
23474
|
+
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
23475
|
+
}
|
|
23476
|
+
|
|
23477
|
+
export type UserUncheckedCreateWithoutMissionSpecPreFillsInput = {
|
|
23478
|
+
id?: string
|
|
23479
|
+
firstName?: string | null
|
|
23480
|
+
lastName?: string | null
|
|
23481
|
+
username?: string | null
|
|
23482
|
+
email?: string | null
|
|
23483
|
+
isAdmin?: boolean
|
|
23484
|
+
type: string
|
|
23485
|
+
pictureURL?: string | null
|
|
23486
|
+
status: string
|
|
23487
|
+
createdAt: Date | string
|
|
23488
|
+
titles?: UserCreatetitlesInput | string[]
|
|
23489
|
+
scrubbed?: string | null
|
|
23490
|
+
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
23491
|
+
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
23492
|
+
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
23493
|
+
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
23494
|
+
}
|
|
23495
|
+
|
|
23496
|
+
export type UserCreateOrConnectWithoutMissionSpecPreFillsInput = {
|
|
23497
|
+
where: UserWhereUniqueInput
|
|
23498
|
+
create: XOR<UserCreateWithoutMissionSpecPreFillsInput, UserUncheckedCreateWithoutMissionSpecPreFillsInput>
|
|
23499
|
+
}
|
|
23500
|
+
|
|
23501
|
+
export type UserUpsertWithoutMissionSpecPreFillsInput = {
|
|
23502
|
+
update: XOR<UserUpdateWithoutMissionSpecPreFillsInput, UserUncheckedUpdateWithoutMissionSpecPreFillsInput>
|
|
23503
|
+
create: XOR<UserCreateWithoutMissionSpecPreFillsInput, UserUncheckedCreateWithoutMissionSpecPreFillsInput>
|
|
23504
|
+
where?: UserWhereInput
|
|
23505
|
+
}
|
|
23506
|
+
|
|
23507
|
+
export type UserUpdateToOneWithWhereWithoutMissionSpecPreFillsInput = {
|
|
23508
|
+
where?: UserWhereInput
|
|
23509
|
+
data: XOR<UserUpdateWithoutMissionSpecPreFillsInput, UserUncheckedUpdateWithoutMissionSpecPreFillsInput>
|
|
23510
|
+
}
|
|
23511
|
+
|
|
23512
|
+
export type UserUpdateWithoutMissionSpecPreFillsInput = {
|
|
23513
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23514
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23515
|
+
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23516
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23517
|
+
isAdmin?: BoolFieldUpdateOperationsInput | boolean
|
|
23518
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
23519
|
+
pictureURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23520
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
23521
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23522
|
+
titles?: UserUpdatetitlesInput | string[]
|
|
23523
|
+
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23524
|
+
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23525
|
+
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23526
|
+
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
23527
|
+
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
23528
|
+
}
|
|
23529
|
+
|
|
23530
|
+
export type UserUncheckedUpdateWithoutMissionSpecPreFillsInput = {
|
|
23531
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23532
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23533
|
+
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23534
|
+
email?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23535
|
+
isAdmin?: BoolFieldUpdateOperationsInput | boolean
|
|
23536
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
23537
|
+
pictureURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23538
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
23539
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23540
|
+
titles?: UserUpdatetitlesInput | string[]
|
|
23541
|
+
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23542
|
+
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23543
|
+
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23544
|
+
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
23545
|
+
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
23546
|
+
}
|
|
23547
|
+
|
|
21849
23548
|
export type MissionCreateWithoutCreatorModelInput = {
|
|
21850
23549
|
mid?: string
|
|
21851
23550
|
applyStatus?: string | null
|
|
@@ -21886,6 +23585,9 @@ export namespace Prisma {
|
|
|
21886
23585
|
updatedAt?: Date | string | null
|
|
21887
23586
|
videoURL?: string | null
|
|
21888
23587
|
website?: string | null
|
|
23588
|
+
startDate?: Date | string | null
|
|
23589
|
+
overlapMinutes?: number | null
|
|
23590
|
+
timezone?: string | null
|
|
21889
23591
|
accountModel?: AccountCreateNestedOneWithoutMissionsInput
|
|
21890
23592
|
missionSpec: MissionSpecCreateNestedOneWithoutMissionInput
|
|
21891
23593
|
ownerModel?: UserCreateNestedOneWithoutOwnedMissionsModelsInput
|
|
@@ -21935,6 +23637,9 @@ export namespace Prisma {
|
|
|
21935
23637
|
updatedAt?: Date | string | null
|
|
21936
23638
|
videoURL?: string | null
|
|
21937
23639
|
website?: string | null
|
|
23640
|
+
startDate?: Date | string | null
|
|
23641
|
+
overlapMinutes?: number | null
|
|
23642
|
+
timezone?: string | null
|
|
21938
23643
|
contracts?: ContractUncheckedCreateNestedManyWithoutMissionInput
|
|
21939
23644
|
}
|
|
21940
23645
|
|
|
@@ -21987,6 +23692,9 @@ export namespace Prisma {
|
|
|
21987
23692
|
updatedAt?: Date | string | null
|
|
21988
23693
|
videoURL?: string | null
|
|
21989
23694
|
website?: string | null
|
|
23695
|
+
startDate?: Date | string | null
|
|
23696
|
+
overlapMinutes?: number | null
|
|
23697
|
+
timezone?: string | null
|
|
21990
23698
|
accountModel?: AccountCreateNestedOneWithoutMissionsInput
|
|
21991
23699
|
creatorModel?: UserCreateNestedOneWithoutCreatedMissionsModelsInput
|
|
21992
23700
|
missionSpec: MissionSpecCreateNestedOneWithoutMissionInput
|
|
@@ -22036,6 +23744,9 @@ export namespace Prisma {
|
|
|
22036
23744
|
updatedAt?: Date | string | null
|
|
22037
23745
|
videoURL?: string | null
|
|
22038
23746
|
website?: string | null
|
|
23747
|
+
startDate?: Date | string | null
|
|
23748
|
+
overlapMinutes?: number | null
|
|
23749
|
+
timezone?: string | null
|
|
22039
23750
|
contracts?: ContractUncheckedCreateNestedManyWithoutMissionInput
|
|
22040
23751
|
}
|
|
22041
23752
|
|
|
@@ -22182,6 +23893,41 @@ export namespace Prisma {
|
|
|
22182
23893
|
data: MissionSpecCreateManyLastModifierInput | MissionSpecCreateManyLastModifierInput[]
|
|
22183
23894
|
}
|
|
22184
23895
|
|
|
23896
|
+
export type MissionSpecPreFillCreateWithoutUserInput = {
|
|
23897
|
+
id?: string
|
|
23898
|
+
missionName?: string | null
|
|
23899
|
+
plannedStart?: string | null
|
|
23900
|
+
companyDescription?: string | null
|
|
23901
|
+
missionDescription?: string | null
|
|
23902
|
+
timezone?: string | null
|
|
23903
|
+
openRoles?: InputJsonValue | null
|
|
23904
|
+
status?: string
|
|
23905
|
+
createdAt?: Date | string
|
|
23906
|
+
updatedAt?: Date | string
|
|
23907
|
+
}
|
|
23908
|
+
|
|
23909
|
+
export type MissionSpecPreFillUncheckedCreateWithoutUserInput = {
|
|
23910
|
+
id?: string
|
|
23911
|
+
missionName?: string | null
|
|
23912
|
+
plannedStart?: string | null
|
|
23913
|
+
companyDescription?: string | null
|
|
23914
|
+
missionDescription?: string | null
|
|
23915
|
+
timezone?: string | null
|
|
23916
|
+
openRoles?: InputJsonValue | null
|
|
23917
|
+
status?: string
|
|
23918
|
+
createdAt?: Date | string
|
|
23919
|
+
updatedAt?: Date | string
|
|
23920
|
+
}
|
|
23921
|
+
|
|
23922
|
+
export type MissionSpecPreFillCreateOrConnectWithoutUserInput = {
|
|
23923
|
+
where: MissionSpecPreFillWhereUniqueInput
|
|
23924
|
+
create: XOR<MissionSpecPreFillCreateWithoutUserInput, MissionSpecPreFillUncheckedCreateWithoutUserInput>
|
|
23925
|
+
}
|
|
23926
|
+
|
|
23927
|
+
export type MissionSpecPreFillCreateManyUserInputEnvelope = {
|
|
23928
|
+
data: MissionSpecPreFillCreateManyUserInput | MissionSpecPreFillCreateManyUserInput[]
|
|
23929
|
+
}
|
|
23930
|
+
|
|
22185
23931
|
export type MissionUpsertWithWhereUniqueWithoutCreatorModelInput = {
|
|
22186
23932
|
where: MissionWhereUniqueInput
|
|
22187
23933
|
update: XOR<MissionUpdateWithoutCreatorModelInput, MissionUncheckedUpdateWithoutCreatorModelInput>
|
|
@@ -22246,6 +23992,39 @@ export namespace Prisma {
|
|
|
22246
23992
|
data: XOR<MissionSpecUpdateManyMutationInput, MissionSpecUncheckedUpdateManyWithoutLastModifierInput>
|
|
22247
23993
|
}
|
|
22248
23994
|
|
|
23995
|
+
export type MissionSpecPreFillUpsertWithWhereUniqueWithoutUserInput = {
|
|
23996
|
+
where: MissionSpecPreFillWhereUniqueInput
|
|
23997
|
+
update: XOR<MissionSpecPreFillUpdateWithoutUserInput, MissionSpecPreFillUncheckedUpdateWithoutUserInput>
|
|
23998
|
+
create: XOR<MissionSpecPreFillCreateWithoutUserInput, MissionSpecPreFillUncheckedCreateWithoutUserInput>
|
|
23999
|
+
}
|
|
24000
|
+
|
|
24001
|
+
export type MissionSpecPreFillUpdateWithWhereUniqueWithoutUserInput = {
|
|
24002
|
+
where: MissionSpecPreFillWhereUniqueInput
|
|
24003
|
+
data: XOR<MissionSpecPreFillUpdateWithoutUserInput, MissionSpecPreFillUncheckedUpdateWithoutUserInput>
|
|
24004
|
+
}
|
|
24005
|
+
|
|
24006
|
+
export type MissionSpecPreFillUpdateManyWithWhereWithoutUserInput = {
|
|
24007
|
+
where: MissionSpecPreFillScalarWhereInput
|
|
24008
|
+
data: XOR<MissionSpecPreFillUpdateManyMutationInput, MissionSpecPreFillUncheckedUpdateManyWithoutUserInput>
|
|
24009
|
+
}
|
|
24010
|
+
|
|
24011
|
+
export type MissionSpecPreFillScalarWhereInput = {
|
|
24012
|
+
AND?: MissionSpecPreFillScalarWhereInput | MissionSpecPreFillScalarWhereInput[]
|
|
24013
|
+
OR?: MissionSpecPreFillScalarWhereInput[]
|
|
24014
|
+
NOT?: MissionSpecPreFillScalarWhereInput | MissionSpecPreFillScalarWhereInput[]
|
|
24015
|
+
id?: StringFilter<"MissionSpecPreFill"> | string
|
|
24016
|
+
userId?: StringFilter<"MissionSpecPreFill"> | string
|
|
24017
|
+
missionName?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
24018
|
+
plannedStart?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
24019
|
+
companyDescription?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
24020
|
+
missionDescription?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
24021
|
+
timezone?: StringNullableFilter<"MissionSpecPreFill"> | string | null
|
|
24022
|
+
openRoles?: JsonNullableFilter<"MissionSpecPreFill">
|
|
24023
|
+
status?: StringFilter<"MissionSpecPreFill"> | string
|
|
24024
|
+
createdAt?: DateTimeFilter<"MissionSpecPreFill"> | Date | string
|
|
24025
|
+
updatedAt?: DateTimeFilter<"MissionSpecPreFill"> | Date | string
|
|
24026
|
+
}
|
|
24027
|
+
|
|
22249
24028
|
export type StructuredEnrichmentNullableCompositeFilter = {
|
|
22250
24029
|
equals?: StructuredEnrichmentObjectEqualityInput | null
|
|
22251
24030
|
is?: StructuredEnrichmentWhereInput | null
|
|
@@ -22381,6 +24160,9 @@ export namespace Prisma {
|
|
|
22381
24160
|
updatedAt?: Date | string | null
|
|
22382
24161
|
videoURL?: string | null
|
|
22383
24162
|
website?: string | null
|
|
24163
|
+
startDate?: Date | string | null
|
|
24164
|
+
overlapMinutes?: number | null
|
|
24165
|
+
timezone?: string | null
|
|
22384
24166
|
}
|
|
22385
24167
|
|
|
22386
24168
|
export type MissionSpecCreateManyAccountInput = {
|
|
@@ -22463,6 +24245,9 @@ export namespace Prisma {
|
|
|
22463
24245
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
22464
24246
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22465
24247
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24248
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
24249
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24250
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22466
24251
|
creatorModel?: UserUpdateOneWithoutCreatedMissionsModelsNestedInput
|
|
22467
24252
|
missionSpec?: MissionSpecUpdateOneRequiredWithoutMissionNestedInput
|
|
22468
24253
|
ownerModel?: UserUpdateOneWithoutOwnedMissionsModelsNestedInput
|
|
@@ -22511,6 +24296,9 @@ export namespace Prisma {
|
|
|
22511
24296
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
22512
24297
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22513
24298
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24299
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
24300
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24301
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22514
24302
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
22515
24303
|
}
|
|
22516
24304
|
|
|
@@ -22556,6 +24344,9 @@ export namespace Prisma {
|
|
|
22556
24344
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
22557
24345
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22558
24346
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24347
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
24348
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24349
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22559
24350
|
}
|
|
22560
24351
|
|
|
22561
24352
|
export type MissionSpecUpdateWithoutAccountInput = {
|
|
@@ -23099,6 +24890,9 @@ export namespace Prisma {
|
|
|
23099
24890
|
updatedAt?: Date | string | null
|
|
23100
24891
|
videoURL?: string | null
|
|
23101
24892
|
website?: string | null
|
|
24893
|
+
startDate?: Date | string | null
|
|
24894
|
+
overlapMinutes?: number | null
|
|
24895
|
+
timezone?: string | null
|
|
23102
24896
|
}
|
|
23103
24897
|
|
|
23104
24898
|
export type MissionCreateManyOwnerModelInput = {
|
|
@@ -23144,6 +24938,9 @@ export namespace Prisma {
|
|
|
23144
24938
|
updatedAt?: Date | string | null
|
|
23145
24939
|
videoURL?: string | null
|
|
23146
24940
|
website?: string | null
|
|
24941
|
+
startDate?: Date | string | null
|
|
24942
|
+
overlapMinutes?: number | null
|
|
24943
|
+
timezone?: string | null
|
|
23147
24944
|
}
|
|
23148
24945
|
|
|
23149
24946
|
export type MissionSpecCreateManyAuthorInput = {
|
|
@@ -23202,6 +24999,19 @@ export namespace Prisma {
|
|
|
23202
24999
|
workingHoursNumberOfMinutesOverlap?: number | null
|
|
23203
25000
|
}
|
|
23204
25001
|
|
|
25002
|
+
export type MissionSpecPreFillCreateManyUserInput = {
|
|
25003
|
+
id?: string
|
|
25004
|
+
missionName?: string | null
|
|
25005
|
+
plannedStart?: string | null
|
|
25006
|
+
companyDescription?: string | null
|
|
25007
|
+
missionDescription?: string | null
|
|
25008
|
+
timezone?: string | null
|
|
25009
|
+
openRoles?: InputJsonValue | null
|
|
25010
|
+
status?: string
|
|
25011
|
+
createdAt?: Date | string
|
|
25012
|
+
updatedAt?: Date | string
|
|
25013
|
+
}
|
|
25014
|
+
|
|
23205
25015
|
export type MissionUpdateWithoutCreatorModelInput = {
|
|
23206
25016
|
applyStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23207
25017
|
attachedLinks?: XOR<MissionsAttachedLinkListUpdateEnvelopeInput, MissionsAttachedLinkCreateInput> | MissionsAttachedLinkCreateInput[]
|
|
@@ -23241,6 +25051,9 @@ export namespace Prisma {
|
|
|
23241
25051
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
23242
25052
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23243
25053
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25054
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25055
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25056
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23244
25057
|
accountModel?: AccountUpdateOneWithoutMissionsNestedInput
|
|
23245
25058
|
missionSpec?: MissionSpecUpdateOneRequiredWithoutMissionNestedInput
|
|
23246
25059
|
ownerModel?: UserUpdateOneWithoutOwnedMissionsModelsNestedInput
|
|
@@ -23289,6 +25102,9 @@ export namespace Prisma {
|
|
|
23289
25102
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
23290
25103
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23291
25104
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25105
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25106
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25107
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23292
25108
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
23293
25109
|
}
|
|
23294
25110
|
|
|
@@ -23334,6 +25150,9 @@ export namespace Prisma {
|
|
|
23334
25150
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
23335
25151
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23336
25152
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25153
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25154
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25155
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23337
25156
|
}
|
|
23338
25157
|
|
|
23339
25158
|
export type MissionUpdateWithoutOwnerModelInput = {
|
|
@@ -23375,6 +25194,9 @@ export namespace Prisma {
|
|
|
23375
25194
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
23376
25195
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23377
25196
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25197
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25198
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25199
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23378
25200
|
accountModel?: AccountUpdateOneWithoutMissionsNestedInput
|
|
23379
25201
|
creatorModel?: UserUpdateOneWithoutCreatedMissionsModelsNestedInput
|
|
23380
25202
|
missionSpec?: MissionSpecUpdateOneRequiredWithoutMissionNestedInput
|
|
@@ -23423,6 +25245,9 @@ export namespace Prisma {
|
|
|
23423
25245
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
23424
25246
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23425
25247
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25248
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25249
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25250
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23426
25251
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
23427
25252
|
}
|
|
23428
25253
|
|
|
@@ -23468,6 +25293,9 @@ export namespace Prisma {
|
|
|
23468
25293
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
23469
25294
|
videoURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23470
25295
|
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25296
|
+
startDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
25297
|
+
overlapMinutes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25298
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23471
25299
|
}
|
|
23472
25300
|
|
|
23473
25301
|
export type MissionSpecUpdateWithoutAuthorInput = {
|
|
@@ -23636,6 +25464,42 @@ export namespace Prisma {
|
|
|
23636
25464
|
workingHoursNumberOfMinutesOverlap?: NullableIntFieldUpdateOperationsInput | number | null
|
|
23637
25465
|
}
|
|
23638
25466
|
|
|
25467
|
+
export type MissionSpecPreFillUpdateWithoutUserInput = {
|
|
25468
|
+
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25469
|
+
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25470
|
+
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25471
|
+
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25472
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25473
|
+
openRoles?: InputJsonValue | InputJsonValue | null
|
|
25474
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
25475
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25476
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25477
|
+
}
|
|
25478
|
+
|
|
25479
|
+
export type MissionSpecPreFillUncheckedUpdateWithoutUserInput = {
|
|
25480
|
+
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25481
|
+
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25482
|
+
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25483
|
+
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25484
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25485
|
+
openRoles?: InputJsonValue | InputJsonValue | null
|
|
25486
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
25487
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25488
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25489
|
+
}
|
|
25490
|
+
|
|
25491
|
+
export type MissionSpecPreFillUncheckedUpdateManyWithoutUserInput = {
|
|
25492
|
+
missionName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25493
|
+
plannedStart?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25494
|
+
companyDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25495
|
+
missionDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25496
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25497
|
+
openRoles?: InputJsonValue | InputJsonValue | null
|
|
25498
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
25499
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25500
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25501
|
+
}
|
|
25502
|
+
|
|
23639
25503
|
export type StructuredEnrichmentWhereInput = {
|
|
23640
25504
|
AND?: StructuredEnrichmentWhereInput | StructuredEnrichmentWhereInput[]
|
|
23641
25505
|
OR?: StructuredEnrichmentWhereInput[]
|
|
@@ -24185,6 +26049,10 @@ export namespace Prisma {
|
|
|
24185
26049
|
* @deprecated Use MissionSpecDefaultArgs instead
|
|
24186
26050
|
*/
|
|
24187
26051
|
export type MissionSpecArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MissionSpecDefaultArgs<ExtArgs>
|
|
26052
|
+
/**
|
|
26053
|
+
* @deprecated Use MissionSpecPreFillDefaultArgs instead
|
|
26054
|
+
*/
|
|
26055
|
+
export type MissionSpecPreFillArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MissionSpecPreFillDefaultArgs<ExtArgs>
|
|
24188
26056
|
/**
|
|
24189
26057
|
* @deprecated Use RoleCategoryDefaultArgs instead
|
|
24190
26058
|
*/
|