@a_team/prisma 2.1.5 → 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 +20 -5
- package/dist/client/index-browser.js +15 -0
- package/dist/client/index.d.ts +1849 -149
- package/dist/client/index.js +20 -5
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +26 -9
- package/dist/client/wasm.js +15 -0
- 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
|
|
@@ -10694,328 +10793,1319 @@ export namespace Prisma {
|
|
|
10694
10793
|
|
|
10695
10794
|
|
|
10696
10795
|
/**
|
|
10697
|
-
* Model
|
|
10796
|
+
* Model MissionSpecPreFill
|
|
10698
10797
|
*/
|
|
10699
10798
|
|
|
10700
|
-
export type
|
|
10701
|
-
_count:
|
|
10702
|
-
_min:
|
|
10703
|
-
_max:
|
|
10799
|
+
export type AggregateMissionSpecPreFill = {
|
|
10800
|
+
_count: MissionSpecPreFillCountAggregateOutputType | null
|
|
10801
|
+
_min: MissionSpecPreFillMinAggregateOutputType | null
|
|
10802
|
+
_max: MissionSpecPreFillMaxAggregateOutputType | null
|
|
10704
10803
|
}
|
|
10705
10804
|
|
|
10706
|
-
export type
|
|
10805
|
+
export type MissionSpecPreFillMinAggregateOutputType = {
|
|
10707
10806
|
id: string | null
|
|
10708
|
-
|
|
10709
|
-
|
|
10710
|
-
|
|
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
|
|
10711
10816
|
}
|
|
10712
10817
|
|
|
10713
|
-
export type
|
|
10818
|
+
export type MissionSpecPreFillMaxAggregateOutputType = {
|
|
10714
10819
|
id: string | null
|
|
10715
|
-
|
|
10716
|
-
|
|
10717
|
-
|
|
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
|
|
10718
10829
|
}
|
|
10719
10830
|
|
|
10720
|
-
export type
|
|
10831
|
+
export type MissionSpecPreFillCountAggregateOutputType = {
|
|
10721
10832
|
id: number
|
|
10722
|
-
|
|
10723
|
-
|
|
10724
|
-
|
|
10725
|
-
|
|
10726
|
-
|
|
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
|
|
10727
10843
|
_all: number
|
|
10728
10844
|
}
|
|
10729
10845
|
|
|
10730
10846
|
|
|
10731
|
-
export type
|
|
10847
|
+
export type MissionSpecPreFillMinAggregateInputType = {
|
|
10732
10848
|
id?: true
|
|
10733
|
-
|
|
10734
|
-
|
|
10735
|
-
|
|
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
|
|
10736
10858
|
}
|
|
10737
10859
|
|
|
10738
|
-
export type
|
|
10860
|
+
export type MissionSpecPreFillMaxAggregateInputType = {
|
|
10739
10861
|
id?: true
|
|
10740
|
-
|
|
10741
|
-
|
|
10742
|
-
|
|
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
|
|
10743
10871
|
}
|
|
10744
10872
|
|
|
10745
|
-
export type
|
|
10873
|
+
export type MissionSpecPreFillCountAggregateInputType = {
|
|
10746
10874
|
id?: true
|
|
10747
|
-
|
|
10748
|
-
|
|
10749
|
-
|
|
10750
|
-
|
|
10751
|
-
|
|
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
|
|
10752
10885
|
_all?: true
|
|
10753
10886
|
}
|
|
10754
10887
|
|
|
10755
|
-
export type
|
|
10888
|
+
export type MissionSpecPreFillAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10756
10889
|
/**
|
|
10757
|
-
* Filter which
|
|
10890
|
+
* Filter which MissionSpecPreFill to aggregate.
|
|
10758
10891
|
*/
|
|
10759
|
-
where?:
|
|
10892
|
+
where?: MissionSpecPreFillWhereInput
|
|
10760
10893
|
/**
|
|
10761
10894
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
10762
10895
|
*
|
|
10763
|
-
* Determine the order of
|
|
10896
|
+
* Determine the order of MissionSpecPreFills to fetch.
|
|
10764
10897
|
*/
|
|
10765
|
-
orderBy?:
|
|
10898
|
+
orderBy?: MissionSpecPreFillOrderByWithRelationInput | MissionSpecPreFillOrderByWithRelationInput[]
|
|
10766
10899
|
/**
|
|
10767
10900
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
10768
10901
|
*
|
|
10769
10902
|
* Sets the start position
|
|
10770
10903
|
*/
|
|
10771
|
-
cursor?:
|
|
10904
|
+
cursor?: MissionSpecPreFillWhereUniqueInput
|
|
10772
10905
|
/**
|
|
10773
10906
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10774
10907
|
*
|
|
10775
|
-
* Take `±n`
|
|
10908
|
+
* Take `±n` MissionSpecPreFills from the position of the cursor.
|
|
10776
10909
|
*/
|
|
10777
10910
|
take?: number
|
|
10778
10911
|
/**
|
|
10779
10912
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
10780
10913
|
*
|
|
10781
|
-
* Skip the first `n`
|
|
10914
|
+
* Skip the first `n` MissionSpecPreFills.
|
|
10782
10915
|
*/
|
|
10783
10916
|
skip?: number
|
|
10784
10917
|
/**
|
|
10785
10918
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
10786
10919
|
*
|
|
10787
|
-
* Count returned
|
|
10920
|
+
* Count returned MissionSpecPreFills
|
|
10788
10921
|
**/
|
|
10789
|
-
_count?: true |
|
|
10922
|
+
_count?: true | MissionSpecPreFillCountAggregateInputType
|
|
10790
10923
|
/**
|
|
10791
10924
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
10792
10925
|
*
|
|
10793
10926
|
* Select which fields to find the minimum value
|
|
10794
10927
|
**/
|
|
10795
|
-
_min?:
|
|
10928
|
+
_min?: MissionSpecPreFillMinAggregateInputType
|
|
10796
10929
|
/**
|
|
10797
10930
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
10798
10931
|
*
|
|
10799
10932
|
* Select which fields to find the maximum value
|
|
10800
10933
|
**/
|
|
10801
|
-
_max?:
|
|
10934
|
+
_max?: MissionSpecPreFillMaxAggregateInputType
|
|
10802
10935
|
}
|
|
10803
10936
|
|
|
10804
|
-
export type
|
|
10805
|
-
[P in keyof T & keyof
|
|
10937
|
+
export type GetMissionSpecPreFillAggregateType<T extends MissionSpecPreFillAggregateArgs> = {
|
|
10938
|
+
[P in keyof T & keyof AggregateMissionSpecPreFill]: P extends '_count' | 'count'
|
|
10806
10939
|
? T[P] extends true
|
|
10807
10940
|
? number
|
|
10808
|
-
: GetScalarType<T[P],
|
|
10809
|
-
: GetScalarType<T[P],
|
|
10941
|
+
: GetScalarType<T[P], AggregateMissionSpecPreFill[P]>
|
|
10942
|
+
: GetScalarType<T[P], AggregateMissionSpecPreFill[P]>
|
|
10810
10943
|
}
|
|
10811
10944
|
|
|
10812
10945
|
|
|
10813
10946
|
|
|
10814
10947
|
|
|
10815
|
-
export type
|
|
10816
|
-
where?:
|
|
10817
|
-
orderBy?:
|
|
10818
|
-
by:
|
|
10819
|
-
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
|
|
10820
10953
|
take?: number
|
|
10821
10954
|
skip?: number
|
|
10822
|
-
_count?:
|
|
10823
|
-
_min?:
|
|
10824
|
-
_max?:
|
|
10955
|
+
_count?: MissionSpecPreFillCountAggregateInputType | true
|
|
10956
|
+
_min?: MissionSpecPreFillMinAggregateInputType
|
|
10957
|
+
_max?: MissionSpecPreFillMaxAggregateInputType
|
|
10825
10958
|
}
|
|
10826
10959
|
|
|
10827
|
-
export type
|
|
10960
|
+
export type MissionSpecPreFillGroupByOutputType = {
|
|
10828
10961
|
id: string
|
|
10829
|
-
|
|
10830
|
-
|
|
10831
|
-
|
|
10832
|
-
|
|
10833
|
-
|
|
10834
|
-
|
|
10835
|
-
|
|
10836
|
-
|
|
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
|
|
10837
10975
|
}
|
|
10838
10976
|
|
|
10839
|
-
type
|
|
10977
|
+
type GetMissionSpecPreFillGroupByPayload<T extends MissionSpecPreFillGroupByArgs> = Prisma.PrismaPromise<
|
|
10840
10978
|
Array<
|
|
10841
|
-
PickEnumerable<
|
|
10979
|
+
PickEnumerable<MissionSpecPreFillGroupByOutputType, T['by']> &
|
|
10842
10980
|
{
|
|
10843
|
-
[P in ((keyof T) & (keyof
|
|
10981
|
+
[P in ((keyof T) & (keyof MissionSpecPreFillGroupByOutputType))]: P extends '_count'
|
|
10844
10982
|
? T[P] extends boolean
|
|
10845
10983
|
? number
|
|
10846
|
-
: GetScalarType<T[P],
|
|
10847
|
-
: GetScalarType<T[P],
|
|
10984
|
+
: GetScalarType<T[P], MissionSpecPreFillGroupByOutputType[P]>
|
|
10985
|
+
: GetScalarType<T[P], MissionSpecPreFillGroupByOutputType[P]>
|
|
10848
10986
|
}
|
|
10849
10987
|
>
|
|
10850
10988
|
>
|
|
10851
10989
|
|
|
10852
10990
|
|
|
10853
|
-
export type
|
|
10991
|
+
export type MissionSpecPreFillSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
10854
10992
|
id?: boolean
|
|
10855
|
-
|
|
10856
|
-
|
|
10857
|
-
|
|
10858
|
-
|
|
10859
|
-
|
|
10860
|
-
|
|
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"]>
|
|
10861
11005
|
|
|
10862
11006
|
|
|
10863
|
-
export type
|
|
11007
|
+
export type MissionSpecPreFillSelectScalar = {
|
|
10864
11008
|
id?: boolean
|
|
10865
|
-
|
|
10866
|
-
|
|
10867
|
-
|
|
10868
|
-
|
|
10869
|
-
|
|
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
|
|
10870
11019
|
}
|
|
10871
11020
|
|
|
11021
|
+
export type MissionSpecPreFillInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11022
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
11023
|
+
}
|
|
10872
11024
|
|
|
10873
|
-
export type $
|
|
10874
|
-
name: "
|
|
10875
|
-
objects: {
|
|
11025
|
+
export type $MissionSpecPreFillPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11026
|
+
name: "MissionSpecPreFill"
|
|
11027
|
+
objects: {
|
|
11028
|
+
user: Prisma.$UserPayload<ExtArgs>
|
|
11029
|
+
}
|
|
10876
11030
|
scalars: $Extensions.GetPayloadResult<{
|
|
10877
11031
|
id: string
|
|
10878
|
-
|
|
10879
|
-
|
|
10880
|
-
|
|
10881
|
-
|
|
10882
|
-
|
|
10883
|
-
|
|
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"]>
|
|
10884
11043
|
composites: {}
|
|
10885
11044
|
}
|
|
10886
11045
|
|
|
10887
|
-
type
|
|
11046
|
+
type MissionSpecPreFillGetPayload<S extends boolean | null | undefined | MissionSpecPreFillDefaultArgs> = $Result.GetResult<Prisma.$MissionSpecPreFillPayload, S>
|
|
10888
11047
|
|
|
10889
|
-
type
|
|
10890
|
-
Omit<
|
|
10891
|
-
select?:
|
|
11048
|
+
type MissionSpecPreFillCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
11049
|
+
Omit<MissionSpecPreFillFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
11050
|
+
select?: MissionSpecPreFillCountAggregateInputType | true
|
|
10892
11051
|
}
|
|
10893
11052
|
|
|
10894
|
-
export interface
|
|
10895
|
-
[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' } }
|
|
10896
11055
|
/**
|
|
10897
|
-
* Find zero or one
|
|
10898
|
-
* @param {
|
|
11056
|
+
* Find zero or one MissionSpecPreFill that matches the filter.
|
|
11057
|
+
* @param {MissionSpecPreFillFindUniqueArgs} args - Arguments to find a MissionSpecPreFill
|
|
10899
11058
|
* @example
|
|
10900
|
-
* // Get one
|
|
10901
|
-
* const
|
|
11059
|
+
* // Get one MissionSpecPreFill
|
|
11060
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.findUnique({
|
|
10902
11061
|
* where: {
|
|
10903
11062
|
* // ... provide filter here
|
|
10904
11063
|
* }
|
|
10905
11064
|
* })
|
|
10906
11065
|
*/
|
|
10907
|
-
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>
|
|
10908
11067
|
|
|
10909
11068
|
/**
|
|
10910
|
-
* Find one
|
|
11069
|
+
* Find one MissionSpecPreFill that matches the filter or throw an error with `error.code='P2025'`
|
|
10911
11070
|
* if no matches were found.
|
|
10912
|
-
* @param {
|
|
11071
|
+
* @param {MissionSpecPreFillFindUniqueOrThrowArgs} args - Arguments to find a MissionSpecPreFill
|
|
10913
11072
|
* @example
|
|
10914
|
-
* // Get one
|
|
10915
|
-
* const
|
|
11073
|
+
* // Get one MissionSpecPreFill
|
|
11074
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.findUniqueOrThrow({
|
|
10916
11075
|
* where: {
|
|
10917
11076
|
* // ... provide filter here
|
|
10918
11077
|
* }
|
|
10919
11078
|
* })
|
|
10920
11079
|
*/
|
|
10921
|
-
findUniqueOrThrow<T extends
|
|
11080
|
+
findUniqueOrThrow<T extends MissionSpecPreFillFindUniqueOrThrowArgs>(args: SelectSubset<T, MissionSpecPreFillFindUniqueOrThrowArgs<ExtArgs>>): Prisma__MissionSpecPreFillClient<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
10922
11081
|
|
|
10923
11082
|
/**
|
|
10924
|
-
* Find the first
|
|
11083
|
+
* Find the first MissionSpecPreFill that matches the filter.
|
|
10925
11084
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10926
11085
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10927
|
-
* @param {
|
|
11086
|
+
* @param {MissionSpecPreFillFindFirstArgs} args - Arguments to find a MissionSpecPreFill
|
|
10928
11087
|
* @example
|
|
10929
|
-
* // Get one
|
|
10930
|
-
* const
|
|
11088
|
+
* // Get one MissionSpecPreFill
|
|
11089
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.findFirst({
|
|
10931
11090
|
* where: {
|
|
10932
11091
|
* // ... provide filter here
|
|
10933
11092
|
* }
|
|
10934
11093
|
* })
|
|
10935
11094
|
*/
|
|
10936
|
-
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>
|
|
10937
11096
|
|
|
10938
11097
|
/**
|
|
10939
|
-
* Find the first
|
|
11098
|
+
* Find the first MissionSpecPreFill that matches the filter or
|
|
10940
11099
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
10941
11100
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10942
11101
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10943
|
-
* @param {
|
|
11102
|
+
* @param {MissionSpecPreFillFindFirstOrThrowArgs} args - Arguments to find a MissionSpecPreFill
|
|
10944
11103
|
* @example
|
|
10945
|
-
* // Get one
|
|
10946
|
-
* const
|
|
11104
|
+
* // Get one MissionSpecPreFill
|
|
11105
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.findFirstOrThrow({
|
|
10947
11106
|
* where: {
|
|
10948
11107
|
* // ... provide filter here
|
|
10949
11108
|
* }
|
|
10950
11109
|
* })
|
|
10951
11110
|
*/
|
|
10952
|
-
findFirstOrThrow<T extends
|
|
11111
|
+
findFirstOrThrow<T extends MissionSpecPreFillFindFirstOrThrowArgs>(args?: SelectSubset<T, MissionSpecPreFillFindFirstOrThrowArgs<ExtArgs>>): Prisma__MissionSpecPreFillClient<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
10953
11112
|
|
|
10954
11113
|
/**
|
|
10955
|
-
* Find zero or more
|
|
11114
|
+
* Find zero or more MissionSpecPreFills that matches the filter.
|
|
10956
11115
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
10957
11116
|
* Read more here: https://pris.ly/d/null-undefined
|
|
10958
|
-
* @param {
|
|
11117
|
+
* @param {MissionSpecPreFillFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
10959
11118
|
* @example
|
|
10960
|
-
* // Get all
|
|
10961
|
-
* const
|
|
11119
|
+
* // Get all MissionSpecPreFills
|
|
11120
|
+
* const missionSpecPreFills = await prisma.missionSpecPreFill.findMany()
|
|
10962
11121
|
*
|
|
10963
|
-
* // Get first 10
|
|
10964
|
-
* const
|
|
11122
|
+
* // Get first 10 MissionSpecPreFills
|
|
11123
|
+
* const missionSpecPreFills = await prisma.missionSpecPreFill.findMany({ take: 10 })
|
|
10965
11124
|
*
|
|
10966
11125
|
* // Only select the `id`
|
|
10967
|
-
* const
|
|
11126
|
+
* const missionSpecPreFillWithIdOnly = await prisma.missionSpecPreFill.findMany({ select: { id: true } })
|
|
10968
11127
|
*
|
|
10969
11128
|
*/
|
|
10970
|
-
findMany<T extends
|
|
11129
|
+
findMany<T extends MissionSpecPreFillFindManyArgs>(args?: SelectSubset<T, MissionSpecPreFillFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "findMany">>
|
|
10971
11130
|
|
|
10972
11131
|
/**
|
|
10973
|
-
* Create a
|
|
10974
|
-
* @param {
|
|
11132
|
+
* Create a MissionSpecPreFill.
|
|
11133
|
+
* @param {MissionSpecPreFillCreateArgs} args - Arguments to create a MissionSpecPreFill.
|
|
10975
11134
|
* @example
|
|
10976
|
-
* // Create one
|
|
10977
|
-
* const
|
|
11135
|
+
* // Create one MissionSpecPreFill
|
|
11136
|
+
* const MissionSpecPreFill = await prisma.missionSpecPreFill.create({
|
|
10978
11137
|
* data: {
|
|
10979
|
-
* // ... data to create a
|
|
11138
|
+
* // ... data to create a MissionSpecPreFill
|
|
10980
11139
|
* }
|
|
10981
11140
|
* })
|
|
10982
11141
|
*
|
|
10983
11142
|
*/
|
|
10984
|
-
create<T extends
|
|
11143
|
+
create<T extends MissionSpecPreFillCreateArgs>(args: SelectSubset<T, MissionSpecPreFillCreateArgs<ExtArgs>>): Prisma__MissionSpecPreFillClient<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
10985
11144
|
|
|
10986
11145
|
/**
|
|
10987
|
-
* Create many
|
|
10988
|
-
* @param {
|
|
11146
|
+
* Create many MissionSpecPreFills.
|
|
11147
|
+
* @param {MissionSpecPreFillCreateManyArgs} args - Arguments to create many MissionSpecPreFills.
|
|
10989
11148
|
* @example
|
|
10990
|
-
* // Create many
|
|
10991
|
-
* const
|
|
11149
|
+
* // Create many MissionSpecPreFills
|
|
11150
|
+
* const missionSpecPreFill = await prisma.missionSpecPreFill.createMany({
|
|
10992
11151
|
* data: [
|
|
10993
11152
|
* // ... provide data here
|
|
10994
11153
|
* ]
|
|
10995
11154
|
* })
|
|
10996
11155
|
*
|
|
10997
11156
|
*/
|
|
10998
|
-
createMany<T extends
|
|
11157
|
+
createMany<T extends MissionSpecPreFillCreateManyArgs>(args?: SelectSubset<T, MissionSpecPreFillCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
10999
11158
|
|
|
11000
11159
|
/**
|
|
11001
|
-
* Delete a
|
|
11002
|
-
* @param {
|
|
11160
|
+
* Delete a MissionSpecPreFill.
|
|
11161
|
+
* @param {MissionSpecPreFillDeleteArgs} args - Arguments to delete one MissionSpecPreFill.
|
|
11003
11162
|
* @example
|
|
11004
|
-
* // Delete one
|
|
11005
|
-
* const
|
|
11163
|
+
* // Delete one MissionSpecPreFill
|
|
11164
|
+
* const MissionSpecPreFill = await prisma.missionSpecPreFill.delete({
|
|
11006
11165
|
* where: {
|
|
11007
|
-
* // ... filter to delete one
|
|
11166
|
+
* // ... filter to delete one MissionSpecPreFill
|
|
11008
11167
|
* }
|
|
11009
11168
|
* })
|
|
11010
11169
|
*
|
|
11011
11170
|
*/
|
|
11012
|
-
delete<T extends
|
|
11171
|
+
delete<T extends MissionSpecPreFillDeleteArgs>(args: SelectSubset<T, MissionSpecPreFillDeleteArgs<ExtArgs>>): Prisma__MissionSpecPreFillClient<$Result.GetResult<Prisma.$MissionSpecPreFillPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
11013
11172
|
|
|
11014
11173
|
/**
|
|
11015
|
-
* Update one
|
|
11016
|
-
* @param {
|
|
11174
|
+
* Update one MissionSpecPreFill.
|
|
11175
|
+
* @param {MissionSpecPreFillUpdateArgs} args - Arguments to update one MissionSpecPreFill.
|
|
11017
11176
|
* @example
|
|
11018
|
-
* // Update one
|
|
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
|
|
12095
|
+
* const RoleCategory = await prisma.roleCategory.delete({
|
|
12096
|
+
* where: {
|
|
12097
|
+
* // ... filter to delete one RoleCategory
|
|
12098
|
+
* }
|
|
12099
|
+
* })
|
|
12100
|
+
*
|
|
12101
|
+
*/
|
|
12102
|
+
delete<T extends RoleCategoryDeleteArgs>(args: SelectSubset<T, RoleCategoryDeleteArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
12103
|
+
|
|
12104
|
+
/**
|
|
12105
|
+
* Update one RoleCategory.
|
|
12106
|
+
* @param {RoleCategoryUpdateArgs} args - Arguments to update one RoleCategory.
|
|
12107
|
+
* @example
|
|
12108
|
+
* // Update one RoleCategory
|
|
11019
12109
|
* const roleCategory = await prisma.roleCategory.update({
|
|
11020
12110
|
* where: {
|
|
11021
12111
|
* // ... provide filter here
|
|
@@ -13587,6 +14677,7 @@ export namespace Prisma {
|
|
|
13587
14677
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
13588
14678
|
authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
|
|
13589
14679
|
modifiedMissionSpecs?: boolean | User$modifiedMissionSpecsArgs<ExtArgs>
|
|
14680
|
+
missionSpecPreFills?: boolean | User$missionSpecPreFillsArgs<ExtArgs>
|
|
13590
14681
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
13591
14682
|
}, ExtArgs["result"]["user"]>
|
|
13592
14683
|
|
|
@@ -13611,6 +14702,7 @@ export namespace Prisma {
|
|
|
13611
14702
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
13612
14703
|
authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
|
|
13613
14704
|
modifiedMissionSpecs?: boolean | User$modifiedMissionSpecsArgs<ExtArgs>
|
|
14705
|
+
missionSpecPreFills?: boolean | User$missionSpecPreFillsArgs<ExtArgs>
|
|
13614
14706
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
13615
14707
|
}
|
|
13616
14708
|
|
|
@@ -13621,6 +14713,7 @@ export namespace Prisma {
|
|
|
13621
14713
|
ownedMissionsModels: Prisma.$MissionPayload<ExtArgs>[]
|
|
13622
14714
|
authoredMissionSpecs: Prisma.$MissionSpecPayload<ExtArgs>[]
|
|
13623
14715
|
modifiedMissionSpecs: Prisma.$MissionSpecPayload<ExtArgs>[]
|
|
14716
|
+
missionSpecPreFills: Prisma.$MissionSpecPreFillPayload<ExtArgs>[]
|
|
13624
14717
|
}
|
|
13625
14718
|
scalars: $Extensions.GetPayloadResult<{
|
|
13626
14719
|
id: string
|
|
@@ -14002,6 +15095,7 @@ export namespace Prisma {
|
|
|
14002
15095
|
ownedMissionsModels<T extends User$ownedMissionsModelsArgs<ExtArgs> = {}>(args?: Subset<T, User$ownedMissionsModelsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionPayload<ExtArgs>, T, "findMany"> | Null>
|
|
14003
15096
|
authoredMissionSpecs<T extends User$authoredMissionSpecsArgs<ExtArgs> = {}>(args?: Subset<T, User$authoredMissionSpecsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findMany"> | Null>
|
|
14004
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>
|
|
14005
15099
|
/**
|
|
14006
15100
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
14007
15101
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -14448,6 +15542,26 @@ export namespace Prisma {
|
|
|
14448
15542
|
distinct?: MissionSpecScalarFieldEnum | MissionSpecScalarFieldEnum[]
|
|
14449
15543
|
}
|
|
14450
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
|
+
|
|
14451
15565
|
/**
|
|
14452
15566
|
* User without action
|
|
14453
15567
|
*/
|
|
@@ -14600,6 +15714,23 @@ export namespace Prisma {
|
|
|
14600
15714
|
export type MissionSpecScalarFieldEnum = (typeof MissionSpecScalarFieldEnum)[keyof typeof MissionSpecScalarFieldEnum]
|
|
14601
15715
|
|
|
14602
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
|
+
|
|
14603
15734
|
export const RoleCategoryScalarFieldEnum: {
|
|
14604
15735
|
id: 'id',
|
|
14605
15736
|
anchors: 'anchors',
|
|
@@ -14791,7 +15922,14 @@ export namespace Prisma {
|
|
|
14791
15922
|
/**
|
|
14792
15923
|
* Reference to a field of type 'MissionSpecStatus[]'
|
|
14793
15924
|
*/
|
|
14794
|
-
export type ListEnumMissionSpecStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'MissionSpecStatus[]'>
|
|
15925
|
+
export type ListEnumMissionSpecStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'MissionSpecStatus[]'>
|
|
15926
|
+
|
|
15927
|
+
|
|
15928
|
+
|
|
15929
|
+
/**
|
|
15930
|
+
* Reference to a field of type 'Json'
|
|
15931
|
+
*/
|
|
15932
|
+
export type JsonFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Json'>
|
|
14795
15933
|
|
|
14796
15934
|
|
|
14797
15935
|
|
|
@@ -15565,6 +16703,91 @@ export namespace Prisma {
|
|
|
15565
16703
|
workingHoursNumberOfMinutesOverlap?: IntNullableWithAggregatesFilter<"MissionSpec"> | number | null
|
|
15566
16704
|
}
|
|
15567
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
|
+
|
|
15568
16791
|
export type RoleCategoryWhereInput = {
|
|
15569
16792
|
AND?: RoleCategoryWhereInput | RoleCategoryWhereInput[]
|
|
15570
16793
|
OR?: RoleCategoryWhereInput[]
|
|
@@ -15761,6 +16984,7 @@ export namespace Prisma {
|
|
|
15761
16984
|
ownedMissionsModels?: MissionListRelationFilter
|
|
15762
16985
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
15763
16986
|
modifiedMissionSpecs?: MissionSpecListRelationFilter
|
|
16987
|
+
missionSpecPreFills?: MissionSpecPreFillListRelationFilter
|
|
15764
16988
|
}
|
|
15765
16989
|
|
|
15766
16990
|
export type UserOrderByWithRelationInput = {
|
|
@@ -15780,6 +17004,7 @@ export namespace Prisma {
|
|
|
15780
17004
|
ownedMissionsModels?: MissionOrderByRelationAggregateInput
|
|
15781
17005
|
authoredMissionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
15782
17006
|
modifiedMissionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
17007
|
+
missionSpecPreFills?: MissionSpecPreFillOrderByRelationAggregateInput
|
|
15783
17008
|
}
|
|
15784
17009
|
|
|
15785
17010
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -15802,6 +17027,7 @@ export namespace Prisma {
|
|
|
15802
17027
|
ownedMissionsModels?: MissionListRelationFilter
|
|
15803
17028
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
15804
17029
|
modifiedMissionSpecs?: MissionSpecListRelationFilter
|
|
17030
|
+
missionSpecPreFills?: MissionSpecPreFillListRelationFilter
|
|
15805
17031
|
}, "id" | "username" | "email">
|
|
15806
17032
|
|
|
15807
17033
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -16750,6 +17976,99 @@ export namespace Prisma {
|
|
|
16750
17976
|
workingHoursNumberOfMinutesOverlap?: NullableIntFieldUpdateOperationsInput | number | null
|
|
16751
17977
|
}
|
|
16752
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
|
+
|
|
16753
18072
|
export type RoleCategoryCreateInput = {
|
|
16754
18073
|
id?: string
|
|
16755
18074
|
anchors?: RoleCategoryCreateanchorsInput | string[]
|
|
@@ -16951,6 +18270,7 @@ export namespace Prisma {
|
|
|
16951
18270
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
16952
18271
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
16953
18272
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
18273
|
+
missionSpecPreFills?: MissionSpecPreFillCreateNestedManyWithoutUserInput
|
|
16954
18274
|
}
|
|
16955
18275
|
|
|
16956
18276
|
export type UserUncheckedCreateInput = {
|
|
@@ -16970,6 +18290,7 @@ export namespace Prisma {
|
|
|
16970
18290
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
16971
18291
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
16972
18292
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
18293
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
16973
18294
|
}
|
|
16974
18295
|
|
|
16975
18296
|
export type UserUpdateInput = {
|
|
@@ -16988,6 +18309,7 @@ export namespace Prisma {
|
|
|
16988
18309
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
16989
18310
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
16990
18311
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
18312
|
+
missionSpecPreFills?: MissionSpecPreFillUpdateManyWithoutUserNestedInput
|
|
16991
18313
|
}
|
|
16992
18314
|
|
|
16993
18315
|
export type UserUncheckedUpdateInput = {
|
|
@@ -17006,6 +18328,7 @@ export namespace Prisma {
|
|
|
17006
18328
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
17007
18329
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
17008
18330
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
18331
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
17009
18332
|
}
|
|
17010
18333
|
|
|
17011
18334
|
export type UserCreateManyInput = {
|
|
@@ -18142,6 +19465,78 @@ export namespace Prisma {
|
|
|
18142
19465
|
_min?: NestedIntFilter<$PrismaModel>
|
|
18143
19466
|
_max?: NestedIntFilter<$PrismaModel>
|
|
18144
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
|
+
}
|
|
18145
19540
|
|
|
18146
19541
|
export type RoleCategoryCountOrderByAggregateInput = {
|
|
18147
19542
|
id?: SortOrder
|
|
@@ -18224,6 +19619,16 @@ export namespace Prisma {
|
|
|
18224
19619
|
not?: NestedBoolFilter<$PrismaModel> | boolean
|
|
18225
19620
|
}
|
|
18226
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
|
+
|
|
18227
19632
|
export type UserCountOrderByAggregateInput = {
|
|
18228
19633
|
id?: SortOrder
|
|
18229
19634
|
firstName?: SortOrder
|
|
@@ -19168,6 +20573,20 @@ export namespace Prisma {
|
|
|
19168
20573
|
update?: XOR<XOR<MissionUpdateToOneWithWhereWithoutMissionSpecInput, MissionUpdateWithoutMissionSpecInput>, MissionUncheckedUpdateWithoutMissionSpecInput>
|
|
19169
20574
|
}
|
|
19170
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
|
+
|
|
19171
20590
|
export type RoleCategoryCreateanchorsInput = {
|
|
19172
20591
|
set: string[]
|
|
19173
20592
|
}
|
|
@@ -19236,6 +20655,13 @@ export namespace Prisma {
|
|
|
19236
20655
|
connect?: MissionSpecWhereUniqueInput | MissionSpecWhereUniqueInput[]
|
|
19237
20656
|
}
|
|
19238
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
|
+
|
|
19239
20665
|
export type MissionUncheckedCreateNestedManyWithoutCreatorModelInput = {
|
|
19240
20666
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
19241
20667
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -19264,6 +20690,13 @@ export namespace Prisma {
|
|
|
19264
20690
|
connect?: MissionSpecWhereUniqueInput | MissionSpecWhereUniqueInput[]
|
|
19265
20691
|
}
|
|
19266
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
|
+
|
|
19267
20700
|
export type BoolFieldUpdateOperationsInput = {
|
|
19268
20701
|
set?: boolean
|
|
19269
20702
|
}
|
|
@@ -19329,6 +20762,20 @@ export namespace Prisma {
|
|
|
19329
20762
|
deleteMany?: MissionSpecScalarWhereInput | MissionSpecScalarWhereInput[]
|
|
19330
20763
|
}
|
|
19331
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
|
+
|
|
19332
20779
|
export type MissionUncheckedUpdateManyWithoutCreatorModelNestedInput = {
|
|
19333
20780
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
19334
20781
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -19385,6 +20832,20 @@ export namespace Prisma {
|
|
|
19385
20832
|
deleteMany?: MissionSpecScalarWhereInput | MissionSpecScalarWhereInput[]
|
|
19386
20833
|
}
|
|
19387
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
|
+
|
|
19388
20849
|
export type NestedStringFilter<$PrismaModel = never> = {
|
|
19389
20850
|
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
19390
20851
|
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
@@ -19968,6 +21429,18 @@ export namespace Prisma {
|
|
|
19968
21429
|
gte?: number | FloatFieldRefInput<$PrismaModel>
|
|
19969
21430
|
not?: NestedFloatFilter<$PrismaModel> | number
|
|
19970
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
|
+
}
|
|
19971
21444
|
|
|
19972
21445
|
export type NestedBoolFilter<$PrismaModel = never> = {
|
|
19973
21446
|
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
@@ -20944,6 +22417,7 @@ export namespace Prisma {
|
|
|
20944
22417
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
20945
22418
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
20946
22419
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
22420
|
+
missionSpecPreFills?: MissionSpecPreFillCreateNestedManyWithoutUserInput
|
|
20947
22421
|
}
|
|
20948
22422
|
|
|
20949
22423
|
export type UserUncheckedCreateWithoutCreatedMissionsModelsInput = {
|
|
@@ -20962,6 +22436,7 @@ export namespace Prisma {
|
|
|
20962
22436
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
20963
22437
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
20964
22438
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
22439
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
20965
22440
|
}
|
|
20966
22441
|
|
|
20967
22442
|
export type UserCreateOrConnectWithoutCreatedMissionsModelsInput = {
|
|
@@ -21048,6 +22523,7 @@ export namespace Prisma {
|
|
|
21048
22523
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
21049
22524
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
21050
22525
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
22526
|
+
missionSpecPreFills?: MissionSpecPreFillCreateNestedManyWithoutUserInput
|
|
21051
22527
|
}
|
|
21052
22528
|
|
|
21053
22529
|
export type UserUncheckedCreateWithoutOwnedMissionsModelsInput = {
|
|
@@ -21066,6 +22542,7 @@ export namespace Prisma {
|
|
|
21066
22542
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
21067
22543
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
21068
22544
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
22545
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
21069
22546
|
}
|
|
21070
22547
|
|
|
21071
22548
|
export type UserCreateOrConnectWithoutOwnedMissionsModelsInput = {
|
|
@@ -21217,6 +22694,7 @@ export namespace Prisma {
|
|
|
21217
22694
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
21218
22695
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
21219
22696
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
22697
|
+
missionSpecPreFills?: MissionSpecPreFillUpdateManyWithoutUserNestedInput
|
|
21220
22698
|
}
|
|
21221
22699
|
|
|
21222
22700
|
export type UserUncheckedUpdateWithoutCreatedMissionsModelsInput = {
|
|
@@ -21234,6 +22712,7 @@ export namespace Prisma {
|
|
|
21234
22712
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
21235
22713
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
21236
22714
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
22715
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
21237
22716
|
}
|
|
21238
22717
|
|
|
21239
22718
|
export type MissionSpecUpsertWithoutMissionInput = {
|
|
@@ -21329,6 +22808,7 @@ export namespace Prisma {
|
|
|
21329
22808
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
21330
22809
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
21331
22810
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
22811
|
+
missionSpecPreFills?: MissionSpecPreFillUpdateManyWithoutUserNestedInput
|
|
21332
22812
|
}
|
|
21333
22813
|
|
|
21334
22814
|
export type UserUncheckedUpdateWithoutOwnedMissionsModelsInput = {
|
|
@@ -21346,6 +22826,7 @@ export namespace Prisma {
|
|
|
21346
22826
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
21347
22827
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
21348
22828
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
22829
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
21349
22830
|
}
|
|
21350
22831
|
|
|
21351
22832
|
export type ContractUpsertWithWhereUniqueWithoutMissionInput = {
|
|
@@ -21460,6 +22941,7 @@ export namespace Prisma {
|
|
|
21460
22941
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
21461
22942
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
21462
22943
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
22944
|
+
missionSpecPreFills?: MissionSpecPreFillCreateNestedManyWithoutUserInput
|
|
21463
22945
|
}
|
|
21464
22946
|
|
|
21465
22947
|
export type UserUncheckedCreateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -21478,6 +22960,7 @@ export namespace Prisma {
|
|
|
21478
22960
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
21479
22961
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
21480
22962
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
22963
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
21481
22964
|
}
|
|
21482
22965
|
|
|
21483
22966
|
export type UserCreateOrConnectWithoutAuthoredMissionSpecsInput = {
|
|
@@ -21534,6 +23017,7 @@ export namespace Prisma {
|
|
|
21534
23017
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
21535
23018
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
21536
23019
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
23020
|
+
missionSpecPreFills?: MissionSpecPreFillCreateNestedManyWithoutUserInput
|
|
21537
23021
|
}
|
|
21538
23022
|
|
|
21539
23023
|
export type UserUncheckedCreateWithoutModifiedMissionSpecsInput = {
|
|
@@ -21552,6 +23036,7 @@ export namespace Prisma {
|
|
|
21552
23036
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
21553
23037
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
21554
23038
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
23039
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedCreateNestedManyWithoutUserInput
|
|
21555
23040
|
}
|
|
21556
23041
|
|
|
21557
23042
|
export type UserCreateOrConnectWithoutModifiedMissionSpecsInput = {
|
|
@@ -21758,6 +23243,7 @@ export namespace Prisma {
|
|
|
21758
23243
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
21759
23244
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
21760
23245
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
23246
|
+
missionSpecPreFills?: MissionSpecPreFillUpdateManyWithoutUserNestedInput
|
|
21761
23247
|
}
|
|
21762
23248
|
|
|
21763
23249
|
export type UserUncheckedUpdateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -21775,6 +23261,7 @@ export namespace Prisma {
|
|
|
21775
23261
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
21776
23262
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
21777
23263
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
23264
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
21778
23265
|
}
|
|
21779
23266
|
|
|
21780
23267
|
export type ClientCompanyUpsertWithoutMissionSpecsInput = {
|
|
@@ -21840,6 +23327,7 @@ export namespace Prisma {
|
|
|
21840
23327
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
21841
23328
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
21842
23329
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
23330
|
+
missionSpecPreFills?: MissionSpecPreFillUpdateManyWithoutUserNestedInput
|
|
21843
23331
|
}
|
|
21844
23332
|
|
|
21845
23333
|
export type UserUncheckedUpdateWithoutModifiedMissionSpecsInput = {
|
|
@@ -21857,6 +23345,7 @@ export namespace Prisma {
|
|
|
21857
23345
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
21858
23346
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
21859
23347
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
23348
|
+
missionSpecPreFills?: MissionSpecPreFillUncheckedUpdateManyWithoutUserNestedInput
|
|
21860
23349
|
}
|
|
21861
23350
|
|
|
21862
23351
|
export type MissionUpsertWithoutMissionSpecInput = {
|
|
@@ -21966,6 +23455,96 @@ export namespace Prisma {
|
|
|
21966
23455
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
21967
23456
|
}
|
|
21968
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
|
+
|
|
21969
23548
|
export type MissionCreateWithoutCreatorModelInput = {
|
|
21970
23549
|
mid?: string
|
|
21971
23550
|
applyStatus?: string | null
|
|
@@ -22314,6 +23893,41 @@ export namespace Prisma {
|
|
|
22314
23893
|
data: MissionSpecCreateManyLastModifierInput | MissionSpecCreateManyLastModifierInput[]
|
|
22315
23894
|
}
|
|
22316
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
|
+
|
|
22317
23931
|
export type MissionUpsertWithWhereUniqueWithoutCreatorModelInput = {
|
|
22318
23932
|
where: MissionWhereUniqueInput
|
|
22319
23933
|
update: XOR<MissionUpdateWithoutCreatorModelInput, MissionUncheckedUpdateWithoutCreatorModelInput>
|
|
@@ -22378,6 +23992,39 @@ export namespace Prisma {
|
|
|
22378
23992
|
data: XOR<MissionSpecUpdateManyMutationInput, MissionSpecUncheckedUpdateManyWithoutLastModifierInput>
|
|
22379
23993
|
}
|
|
22380
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
|
+
|
|
22381
24028
|
export type StructuredEnrichmentNullableCompositeFilter = {
|
|
22382
24029
|
equals?: StructuredEnrichmentObjectEqualityInput | null
|
|
22383
24030
|
is?: StructuredEnrichmentWhereInput | null
|
|
@@ -23352,6 +24999,19 @@ export namespace Prisma {
|
|
|
23352
24999
|
workingHoursNumberOfMinutesOverlap?: number | null
|
|
23353
25000
|
}
|
|
23354
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
|
+
|
|
23355
25015
|
export type MissionUpdateWithoutCreatorModelInput = {
|
|
23356
25016
|
applyStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23357
25017
|
attachedLinks?: XOR<MissionsAttachedLinkListUpdateEnvelopeInput, MissionsAttachedLinkCreateInput> | MissionsAttachedLinkCreateInput[]
|
|
@@ -23804,6 +25464,42 @@ export namespace Prisma {
|
|
|
23804
25464
|
workingHoursNumberOfMinutesOverlap?: NullableIntFieldUpdateOperationsInput | number | null
|
|
23805
25465
|
}
|
|
23806
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
|
+
|
|
23807
25503
|
export type StructuredEnrichmentWhereInput = {
|
|
23808
25504
|
AND?: StructuredEnrichmentWhereInput | StructuredEnrichmentWhereInput[]
|
|
23809
25505
|
OR?: StructuredEnrichmentWhereInput[]
|
|
@@ -24353,6 +26049,10 @@ export namespace Prisma {
|
|
|
24353
26049
|
* @deprecated Use MissionSpecDefaultArgs instead
|
|
24354
26050
|
*/
|
|
24355
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>
|
|
24356
26056
|
/**
|
|
24357
26057
|
* @deprecated Use RoleCategoryDefaultArgs instead
|
|
24358
26058
|
*/
|