@a_team/prisma 3.1.1-win → 3.2.0-linux
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 +6 -5
- package/dist/client/index-browser.js +2 -1
- package/dist/client/index.d.ts +394 -33
- package/dist/client/index.js +8 -7
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +3 -0
- package/dist/client/wasm.js +2 -1
- package/package.json +2 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -2010,11 +2010,13 @@ export namespace Prisma {
|
|
|
2010
2010
|
export type AccountCountOutputType = {
|
|
2011
2011
|
missions: number
|
|
2012
2012
|
missionSpecs: number
|
|
2013
|
+
contracts: number
|
|
2013
2014
|
}
|
|
2014
2015
|
|
|
2015
2016
|
export type AccountCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2016
2017
|
missions?: boolean | AccountCountOutputTypeCountMissionsArgs
|
|
2017
2018
|
missionSpecs?: boolean | AccountCountOutputTypeCountMissionSpecsArgs
|
|
2019
|
+
contracts?: boolean | AccountCountOutputTypeCountContractsArgs
|
|
2018
2020
|
}
|
|
2019
2021
|
|
|
2020
2022
|
// Custom InputTypes
|
|
@@ -2042,6 +2044,13 @@ export namespace Prisma {
|
|
|
2042
2044
|
where?: MissionSpecWhereInput
|
|
2043
2045
|
}
|
|
2044
2046
|
|
|
2047
|
+
/**
|
|
2048
|
+
* AccountCountOutputType without action
|
|
2049
|
+
*/
|
|
2050
|
+
export type AccountCountOutputTypeCountContractsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2051
|
+
where?: ContractWhereInput
|
|
2052
|
+
}
|
|
2053
|
+
|
|
2045
2054
|
|
|
2046
2055
|
/**
|
|
2047
2056
|
* Count Type ClientCompanyCountOutputType
|
|
@@ -4398,6 +4407,7 @@ export namespace Prisma {
|
|
|
4398
4407
|
company?: boolean | CompanyDefaultArgs<ExtArgs>
|
|
4399
4408
|
missions?: boolean | Account$missionsArgs<ExtArgs>
|
|
4400
4409
|
missionSpecs?: boolean | Account$missionSpecsArgs<ExtArgs>
|
|
4410
|
+
contracts?: boolean | Account$contractsArgs<ExtArgs>
|
|
4401
4411
|
_count?: boolean | AccountCountOutputTypeDefaultArgs<ExtArgs>
|
|
4402
4412
|
}, ExtArgs["result"]["account"]>
|
|
4403
4413
|
|
|
@@ -4418,6 +4428,7 @@ export namespace Prisma {
|
|
|
4418
4428
|
company?: boolean | CompanyDefaultArgs<ExtArgs>
|
|
4419
4429
|
missions?: boolean | Account$missionsArgs<ExtArgs>
|
|
4420
4430
|
missionSpecs?: boolean | Account$missionSpecsArgs<ExtArgs>
|
|
4431
|
+
contracts?: boolean | Account$contractsArgs<ExtArgs>
|
|
4421
4432
|
_count?: boolean | AccountCountOutputTypeDefaultArgs<ExtArgs>
|
|
4422
4433
|
}
|
|
4423
4434
|
|
|
@@ -4428,6 +4439,7 @@ export namespace Prisma {
|
|
|
4428
4439
|
company: Prisma.$CompanyPayload<ExtArgs>
|
|
4429
4440
|
missions: Prisma.$MissionPayload<ExtArgs>[]
|
|
4430
4441
|
missionSpecs: Prisma.$MissionSpecPayload<ExtArgs>[]
|
|
4442
|
+
contracts: Prisma.$ContractPayload<ExtArgs>[]
|
|
4431
4443
|
}
|
|
4432
4444
|
scalars: $Extensions.GetPayloadResult<{
|
|
4433
4445
|
id: string
|
|
@@ -4808,6 +4820,7 @@ export namespace Prisma {
|
|
|
4808
4820
|
company<T extends CompanyDefaultArgs<ExtArgs> = {}>(args?: Subset<T, CompanyDefaultArgs<ExtArgs>>): Prisma__CompanyClient<$Result.GetResult<Prisma.$CompanyPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
4809
4821
|
missions<T extends Account$missionsArgs<ExtArgs> = {}>(args?: Subset<T, Account$missionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionPayload<ExtArgs>, T, "findMany"> | Null>
|
|
4810
4822
|
missionSpecs<T extends Account$missionSpecsArgs<ExtArgs> = {}>(args?: Subset<T, Account$missionSpecsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findMany"> | Null>
|
|
4823
|
+
contracts<T extends Account$contractsArgs<ExtArgs> = {}>(args?: Subset<T, Account$contractsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ContractPayload<ExtArgs>, T, "findMany"> | Null>
|
|
4811
4824
|
/**
|
|
4812
4825
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
4813
4826
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -5225,6 +5238,26 @@ export namespace Prisma {
|
|
|
5225
5238
|
distinct?: MissionSpecScalarFieldEnum | MissionSpecScalarFieldEnum[]
|
|
5226
5239
|
}
|
|
5227
5240
|
|
|
5241
|
+
/**
|
|
5242
|
+
* Account.contracts
|
|
5243
|
+
*/
|
|
5244
|
+
export type Account$contractsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5245
|
+
/**
|
|
5246
|
+
* Select specific fields to fetch from the Contract
|
|
5247
|
+
*/
|
|
5248
|
+
select?: ContractSelect<ExtArgs> | null
|
|
5249
|
+
/**
|
|
5250
|
+
* Choose, which related nodes to fetch as well
|
|
5251
|
+
*/
|
|
5252
|
+
include?: ContractInclude<ExtArgs> | null
|
|
5253
|
+
where?: ContractWhereInput
|
|
5254
|
+
orderBy?: ContractOrderByWithRelationInput | ContractOrderByWithRelationInput[]
|
|
5255
|
+
cursor?: ContractWhereUniqueInput
|
|
5256
|
+
take?: number
|
|
5257
|
+
skip?: number
|
|
5258
|
+
distinct?: ContractScalarFieldEnum | ContractScalarFieldEnum[]
|
|
5259
|
+
}
|
|
5260
|
+
|
|
5228
5261
|
/**
|
|
5229
5262
|
* Account without action
|
|
5230
5263
|
*/
|
|
@@ -7268,6 +7301,7 @@ export namespace Prisma {
|
|
|
7268
7301
|
custom: boolean | null
|
|
7269
7302
|
source: $Enums.ContractSource | null
|
|
7270
7303
|
documentTitle: string | null
|
|
7304
|
+
accountId: string | null
|
|
7271
7305
|
}
|
|
7272
7306
|
|
|
7273
7307
|
export type ContractMaxAggregateOutputType = {
|
|
@@ -7282,6 +7316,7 @@ export namespace Prisma {
|
|
|
7282
7316
|
custom: boolean | null
|
|
7283
7317
|
source: $Enums.ContractSource | null
|
|
7284
7318
|
documentTitle: string | null
|
|
7319
|
+
accountId: string | null
|
|
7285
7320
|
}
|
|
7286
7321
|
|
|
7287
7322
|
export type ContractCountAggregateOutputType = {
|
|
@@ -7296,6 +7331,7 @@ export namespace Prisma {
|
|
|
7296
7331
|
custom: number
|
|
7297
7332
|
source: number
|
|
7298
7333
|
documentTitle: number
|
|
7334
|
+
accountId: number
|
|
7299
7335
|
_all: number
|
|
7300
7336
|
}
|
|
7301
7337
|
|
|
@@ -7312,6 +7348,7 @@ export namespace Prisma {
|
|
|
7312
7348
|
custom?: true
|
|
7313
7349
|
source?: true
|
|
7314
7350
|
documentTitle?: true
|
|
7351
|
+
accountId?: true
|
|
7315
7352
|
}
|
|
7316
7353
|
|
|
7317
7354
|
export type ContractMaxAggregateInputType = {
|
|
@@ -7326,6 +7363,7 @@ export namespace Prisma {
|
|
|
7326
7363
|
custom?: true
|
|
7327
7364
|
source?: true
|
|
7328
7365
|
documentTitle?: true
|
|
7366
|
+
accountId?: true
|
|
7329
7367
|
}
|
|
7330
7368
|
|
|
7331
7369
|
export type ContractCountAggregateInputType = {
|
|
@@ -7340,6 +7378,7 @@ export namespace Prisma {
|
|
|
7340
7378
|
custom?: true
|
|
7341
7379
|
source?: true
|
|
7342
7380
|
documentTitle?: true
|
|
7381
|
+
accountId?: true
|
|
7343
7382
|
_all?: true
|
|
7344
7383
|
}
|
|
7345
7384
|
|
|
@@ -7427,6 +7466,7 @@ export namespace Prisma {
|
|
|
7427
7466
|
custom: boolean | null
|
|
7428
7467
|
source: $Enums.ContractSource | null
|
|
7429
7468
|
documentTitle: string | null
|
|
7469
|
+
accountId: string | null
|
|
7430
7470
|
_count: ContractCountAggregateOutputType | null
|
|
7431
7471
|
_min: ContractMinAggregateOutputType | null
|
|
7432
7472
|
_max: ContractMaxAggregateOutputType | null
|
|
@@ -7460,7 +7500,9 @@ export namespace Prisma {
|
|
|
7460
7500
|
pandadocMetadata?: boolean | PandadocMetadataDefaultArgs<ExtArgs>
|
|
7461
7501
|
source?: boolean
|
|
7462
7502
|
documentTitle?: boolean
|
|
7503
|
+
accountId?: boolean
|
|
7463
7504
|
mission?: boolean | Contract$missionArgs<ExtArgs>
|
|
7505
|
+
account?: boolean | Contract$accountArgs<ExtArgs>
|
|
7464
7506
|
}, ExtArgs["result"]["contract"]>
|
|
7465
7507
|
|
|
7466
7508
|
|
|
@@ -7476,16 +7518,19 @@ export namespace Prisma {
|
|
|
7476
7518
|
custom?: boolean
|
|
7477
7519
|
source?: boolean
|
|
7478
7520
|
documentTitle?: boolean
|
|
7521
|
+
accountId?: boolean
|
|
7479
7522
|
}
|
|
7480
7523
|
|
|
7481
7524
|
export type ContractInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7482
7525
|
mission?: boolean | Contract$missionArgs<ExtArgs>
|
|
7526
|
+
account?: boolean | Contract$accountArgs<ExtArgs>
|
|
7483
7527
|
}
|
|
7484
7528
|
|
|
7485
7529
|
export type $ContractPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7486
7530
|
name: "Contract"
|
|
7487
7531
|
objects: {
|
|
7488
7532
|
mission: Prisma.$MissionPayload<ExtArgs> | null
|
|
7533
|
+
account: Prisma.$AccountPayload<ExtArgs> | null
|
|
7489
7534
|
}
|
|
7490
7535
|
scalars: $Extensions.GetPayloadResult<{
|
|
7491
7536
|
sid: string
|
|
@@ -7499,6 +7544,7 @@ export namespace Prisma {
|
|
|
7499
7544
|
custom: boolean | null
|
|
7500
7545
|
source: $Enums.ContractSource | null
|
|
7501
7546
|
documentTitle: string | null
|
|
7547
|
+
accountId: string | null
|
|
7502
7548
|
}, ExtArgs["result"]["contract"]>
|
|
7503
7549
|
composites: {
|
|
7504
7550
|
parties: Prisma.$ContractPartyPayload[]
|
|
@@ -7866,6 +7912,7 @@ export namespace Prisma {
|
|
|
7866
7912
|
export interface Prisma__ContractClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
7867
7913
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
7868
7914
|
mission<T extends Contract$missionArgs<ExtArgs> = {}>(args?: Subset<T, Contract$missionArgs<ExtArgs>>): Prisma__MissionClient<$Result.GetResult<Prisma.$MissionPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
7915
|
+
account<T extends Contract$accountArgs<ExtArgs> = {}>(args?: Subset<T, Contract$accountArgs<ExtArgs>>): Prisma__AccountClient<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
7869
7916
|
/**
|
|
7870
7917
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
7871
7918
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -7906,6 +7953,7 @@ export namespace Prisma {
|
|
|
7906
7953
|
readonly custom: FieldRef<"Contract", 'Boolean'>
|
|
7907
7954
|
readonly source: FieldRef<"Contract", 'ContractSource'>
|
|
7908
7955
|
readonly documentTitle: FieldRef<"Contract", 'String'>
|
|
7956
|
+
readonly accountId: FieldRef<"Contract", 'String'>
|
|
7909
7957
|
}
|
|
7910
7958
|
|
|
7911
7959
|
|
|
@@ -8246,6 +8294,21 @@ export namespace Prisma {
|
|
|
8246
8294
|
where?: MissionWhereInput
|
|
8247
8295
|
}
|
|
8248
8296
|
|
|
8297
|
+
/**
|
|
8298
|
+
* Contract.account
|
|
8299
|
+
*/
|
|
8300
|
+
export type Contract$accountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
8301
|
+
/**
|
|
8302
|
+
* Select specific fields to fetch from the Account
|
|
8303
|
+
*/
|
|
8304
|
+
select?: AccountSelect<ExtArgs> | null
|
|
8305
|
+
/**
|
|
8306
|
+
* Choose, which related nodes to fetch as well
|
|
8307
|
+
*/
|
|
8308
|
+
include?: AccountInclude<ExtArgs> | null
|
|
8309
|
+
where?: AccountWhereInput
|
|
8310
|
+
}
|
|
8311
|
+
|
|
8249
8312
|
/**
|
|
8250
8313
|
* Contract without action
|
|
8251
8314
|
*/
|
|
@@ -15803,7 +15866,8 @@ export namespace Prisma {
|
|
|
15803
15866
|
role: 'role',
|
|
15804
15867
|
custom: 'custom',
|
|
15805
15868
|
source: 'source',
|
|
15806
|
-
documentTitle: 'documentTitle'
|
|
15869
|
+
documentTitle: 'documentTitle',
|
|
15870
|
+
accountId: 'accountId'
|
|
15807
15871
|
};
|
|
15808
15872
|
|
|
15809
15873
|
export type ContractScalarFieldEnum = (typeof ContractScalarFieldEnum)[keyof typeof ContractScalarFieldEnum]
|
|
@@ -16192,6 +16256,7 @@ export namespace Prisma {
|
|
|
16192
16256
|
company?: XOR<CompanyRelationFilter, CompanyWhereInput>
|
|
16193
16257
|
missions?: MissionListRelationFilter
|
|
16194
16258
|
missionSpecs?: MissionSpecListRelationFilter
|
|
16259
|
+
contracts?: ContractListRelationFilter
|
|
16195
16260
|
}
|
|
16196
16261
|
|
|
16197
16262
|
export type AccountOrderByWithRelationInput = {
|
|
@@ -16209,6 +16274,7 @@ export namespace Prisma {
|
|
|
16209
16274
|
company?: CompanyOrderByWithRelationInput
|
|
16210
16275
|
missions?: MissionOrderByRelationAggregateInput
|
|
16211
16276
|
missionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
16277
|
+
contracts?: ContractOrderByRelationAggregateInput
|
|
16212
16278
|
}
|
|
16213
16279
|
|
|
16214
16280
|
export type AccountWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -16229,6 +16295,7 @@ export namespace Prisma {
|
|
|
16229
16295
|
company?: XOR<CompanyRelationFilter, CompanyWhereInput>
|
|
16230
16296
|
missions?: MissionListRelationFilter
|
|
16231
16297
|
missionSpecs?: MissionSpecListRelationFilter
|
|
16298
|
+
contracts?: ContractListRelationFilter
|
|
16232
16299
|
}, "id">
|
|
16233
16300
|
|
|
16234
16301
|
export type AccountOrderByWithAggregationInput = {
|
|
@@ -16427,7 +16494,9 @@ export namespace Prisma {
|
|
|
16427
16494
|
pandadocMetadata?: XOR<PandadocMetadataNullableCompositeFilter, PandadocMetadataObjectEqualityInput> | null
|
|
16428
16495
|
source?: EnumContractSourceNullableFilter<"Contract"> | $Enums.ContractSource | null
|
|
16429
16496
|
documentTitle?: StringNullableFilter<"Contract"> | string | null
|
|
16497
|
+
accountId?: StringNullableFilter<"Contract"> | string | null
|
|
16430
16498
|
mission?: XOR<MissionNullableRelationFilter, MissionWhereInput> | null
|
|
16499
|
+
account?: XOR<AccountNullableRelationFilter, AccountWhereInput> | null
|
|
16431
16500
|
}
|
|
16432
16501
|
|
|
16433
16502
|
export type ContractOrderByWithRelationInput = {
|
|
@@ -16444,7 +16513,9 @@ export namespace Prisma {
|
|
|
16444
16513
|
pandadocMetadata?: PandadocMetadataOrderByInput
|
|
16445
16514
|
source?: SortOrder
|
|
16446
16515
|
documentTitle?: SortOrder
|
|
16516
|
+
accountId?: SortOrder
|
|
16447
16517
|
mission?: MissionOrderByWithRelationInput
|
|
16518
|
+
account?: AccountOrderByWithRelationInput
|
|
16448
16519
|
}
|
|
16449
16520
|
|
|
16450
16521
|
export type ContractWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -16464,7 +16535,9 @@ export namespace Prisma {
|
|
|
16464
16535
|
pandadocMetadata?: XOR<PandadocMetadataNullableCompositeFilter, PandadocMetadataObjectEqualityInput> | null
|
|
16465
16536
|
source?: EnumContractSourceNullableFilter<"Contract"> | $Enums.ContractSource | null
|
|
16466
16537
|
documentTitle?: StringNullableFilter<"Contract"> | string | null
|
|
16538
|
+
accountId?: StringNullableFilter<"Contract"> | string | null
|
|
16467
16539
|
mission?: XOR<MissionNullableRelationFilter, MissionWhereInput> | null
|
|
16540
|
+
account?: XOR<AccountNullableRelationFilter, AccountWhereInput> | null
|
|
16468
16541
|
}, "sid">
|
|
16469
16542
|
|
|
16470
16543
|
export type ContractOrderByWithAggregationInput = {
|
|
@@ -16479,6 +16552,7 @@ export namespace Prisma {
|
|
|
16479
16552
|
custom?: SortOrder
|
|
16480
16553
|
source?: SortOrder
|
|
16481
16554
|
documentTitle?: SortOrder
|
|
16555
|
+
accountId?: SortOrder
|
|
16482
16556
|
_count?: ContractCountOrderByAggregateInput
|
|
16483
16557
|
_max?: ContractMaxOrderByAggregateInput
|
|
16484
16558
|
_min?: ContractMinOrderByAggregateInput
|
|
@@ -16499,6 +16573,7 @@ export namespace Prisma {
|
|
|
16499
16573
|
custom?: BoolNullableWithAggregatesFilter<"Contract"> | boolean | null
|
|
16500
16574
|
source?: EnumContractSourceNullableWithAggregatesFilter<"Contract"> | $Enums.ContractSource | null
|
|
16501
16575
|
documentTitle?: StringNullableWithAggregatesFilter<"Contract"> | string | null
|
|
16576
|
+
accountId?: StringNullableWithAggregatesFilter<"Contract"> | string | null
|
|
16502
16577
|
}
|
|
16503
16578
|
|
|
16504
16579
|
export type MissionWhereInput = {
|
|
@@ -17306,6 +17381,7 @@ export namespace Prisma {
|
|
|
17306
17381
|
company: CompanyCreateNestedOneWithoutAccountsInput
|
|
17307
17382
|
missions?: MissionCreateNestedManyWithoutAccountModelInput
|
|
17308
17383
|
missionSpecs?: MissionSpecCreateNestedManyWithoutAccountInput
|
|
17384
|
+
contracts?: ContractCreateNestedManyWithoutAccountInput
|
|
17309
17385
|
}
|
|
17310
17386
|
|
|
17311
17387
|
export type AccountUncheckedCreateInput = {
|
|
@@ -17321,6 +17397,7 @@ export namespace Prisma {
|
|
|
17321
17397
|
migrations?: AccountCreatemigrationsInput | string[]
|
|
17322
17398
|
missions?: MissionUncheckedCreateNestedManyWithoutAccountModelInput
|
|
17323
17399
|
missionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAccountInput
|
|
17400
|
+
contracts?: ContractUncheckedCreateNestedManyWithoutAccountInput
|
|
17324
17401
|
}
|
|
17325
17402
|
|
|
17326
17403
|
export type AccountUpdateInput = {
|
|
@@ -17335,6 +17412,7 @@ export namespace Prisma {
|
|
|
17335
17412
|
company?: CompanyUpdateOneRequiredWithoutAccountsNestedInput
|
|
17336
17413
|
missions?: MissionUpdateManyWithoutAccountModelNestedInput
|
|
17337
17414
|
missionSpecs?: MissionSpecUpdateManyWithoutAccountNestedInput
|
|
17415
|
+
contracts?: ContractUpdateManyWithoutAccountNestedInput
|
|
17338
17416
|
}
|
|
17339
17417
|
|
|
17340
17418
|
export type AccountUncheckedUpdateInput = {
|
|
@@ -17349,6 +17427,7 @@ export namespace Prisma {
|
|
|
17349
17427
|
migrations?: AccountUpdatemigrationsInput | string[]
|
|
17350
17428
|
missions?: MissionUncheckedUpdateManyWithoutAccountModelNestedInput
|
|
17351
17429
|
missionSpecs?: MissionSpecUncheckedUpdateManyWithoutAccountNestedInput
|
|
17430
|
+
contracts?: ContractUncheckedUpdateManyWithoutAccountNestedInput
|
|
17352
17431
|
}
|
|
17353
17432
|
|
|
17354
17433
|
export type AccountCreateManyInput = {
|
|
@@ -17572,6 +17651,7 @@ export namespace Prisma {
|
|
|
17572
17651
|
source?: $Enums.ContractSource | null
|
|
17573
17652
|
documentTitle?: string | null
|
|
17574
17653
|
mission?: MissionCreateNestedOneWithoutContractsInput
|
|
17654
|
+
account?: AccountCreateNestedOneWithoutContractsInput
|
|
17575
17655
|
}
|
|
17576
17656
|
|
|
17577
17657
|
export type ContractUncheckedCreateInput = {
|
|
@@ -17588,6 +17668,7 @@ export namespace Prisma {
|
|
|
17588
17668
|
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
17589
17669
|
source?: $Enums.ContractSource | null
|
|
17590
17670
|
documentTitle?: string | null
|
|
17671
|
+
accountId?: string | null
|
|
17591
17672
|
}
|
|
17592
17673
|
|
|
17593
17674
|
export type ContractUpdateInput = {
|
|
@@ -17603,6 +17684,7 @@ export namespace Prisma {
|
|
|
17603
17684
|
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
17604
17685
|
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17605
17686
|
mission?: MissionUpdateOneWithoutContractsNestedInput
|
|
17687
|
+
account?: AccountUpdateOneWithoutContractsNestedInput
|
|
17606
17688
|
}
|
|
17607
17689
|
|
|
17608
17690
|
export type ContractUncheckedUpdateInput = {
|
|
@@ -17618,6 +17700,7 @@ export namespace Prisma {
|
|
|
17618
17700
|
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
17619
17701
|
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
17620
17702
|
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17703
|
+
accountId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17621
17704
|
}
|
|
17622
17705
|
|
|
17623
17706
|
export type ContractCreateManyInput = {
|
|
@@ -17634,6 +17717,7 @@ export namespace Prisma {
|
|
|
17634
17717
|
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
17635
17718
|
source?: $Enums.ContractSource | null
|
|
17636
17719
|
documentTitle?: string | null
|
|
17720
|
+
accountId?: string | null
|
|
17637
17721
|
}
|
|
17638
17722
|
|
|
17639
17723
|
export type ContractUpdateManyMutationInput = {
|
|
@@ -17663,6 +17747,7 @@ export namespace Prisma {
|
|
|
17663
17747
|
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
17664
17748
|
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
17665
17749
|
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17750
|
+
accountId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17666
17751
|
}
|
|
17667
17752
|
|
|
17668
17753
|
export type MissionCreateInput = {
|
|
@@ -18710,6 +18795,12 @@ export namespace Prisma {
|
|
|
18710
18795
|
none?: MissionSpecWhereInput
|
|
18711
18796
|
}
|
|
18712
18797
|
|
|
18798
|
+
export type ContractListRelationFilter = {
|
|
18799
|
+
every?: ContractWhereInput
|
|
18800
|
+
some?: ContractWhereInput
|
|
18801
|
+
none?: ContractWhereInput
|
|
18802
|
+
}
|
|
18803
|
+
|
|
18713
18804
|
export type AccountsMemberOrderByCompositeAggregateInput = {
|
|
18714
18805
|
_count?: SortOrder
|
|
18715
18806
|
}
|
|
@@ -18729,6 +18820,10 @@ export namespace Prisma {
|
|
|
18729
18820
|
_count?: SortOrder
|
|
18730
18821
|
}
|
|
18731
18822
|
|
|
18823
|
+
export type ContractOrderByRelationAggregateInput = {
|
|
18824
|
+
_count?: SortOrder
|
|
18825
|
+
}
|
|
18826
|
+
|
|
18732
18827
|
export type AccountCountOrderByAggregateInput = {
|
|
18733
18828
|
id?: SortOrder
|
|
18734
18829
|
clientCompany?: SortOrder
|
|
@@ -18989,6 +19084,11 @@ export namespace Prisma {
|
|
|
18989
19084
|
isNot?: MissionWhereInput | null
|
|
18990
19085
|
}
|
|
18991
19086
|
|
|
19087
|
+
export type AccountNullableRelationFilter = {
|
|
19088
|
+
is?: AccountWhereInput | null
|
|
19089
|
+
isNot?: AccountWhereInput | null
|
|
19090
|
+
}
|
|
19091
|
+
|
|
18992
19092
|
export type ContractPartyOrderByCompositeAggregateInput = {
|
|
18993
19093
|
_count?: SortOrder
|
|
18994
19094
|
}
|
|
@@ -19011,6 +19111,7 @@ export namespace Prisma {
|
|
|
19011
19111
|
custom?: SortOrder
|
|
19012
19112
|
source?: SortOrder
|
|
19013
19113
|
documentTitle?: SortOrder
|
|
19114
|
+
accountId?: SortOrder
|
|
19014
19115
|
}
|
|
19015
19116
|
|
|
19016
19117
|
export type ContractMaxOrderByAggregateInput = {
|
|
@@ -19025,6 +19126,7 @@ export namespace Prisma {
|
|
|
19025
19126
|
custom?: SortOrder
|
|
19026
19127
|
source?: SortOrder
|
|
19027
19128
|
documentTitle?: SortOrder
|
|
19129
|
+
accountId?: SortOrder
|
|
19028
19130
|
}
|
|
19029
19131
|
|
|
19030
19132
|
export type ContractMinOrderByAggregateInput = {
|
|
@@ -19039,6 +19141,7 @@ export namespace Prisma {
|
|
|
19039
19141
|
custom?: SortOrder
|
|
19040
19142
|
source?: SortOrder
|
|
19041
19143
|
documentTitle?: SortOrder
|
|
19144
|
+
accountId?: SortOrder
|
|
19042
19145
|
}
|
|
19043
19146
|
|
|
19044
19147
|
export type EnumContractStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -19233,11 +19336,6 @@ export namespace Prisma {
|
|
|
19233
19336
|
type: string
|
|
19234
19337
|
}
|
|
19235
19338
|
|
|
19236
|
-
export type AccountNullableRelationFilter = {
|
|
19237
|
-
is?: AccountWhereInput | null
|
|
19238
|
-
isNot?: AccountWhereInput | null
|
|
19239
|
-
}
|
|
19240
|
-
|
|
19241
19339
|
export type UserNullableRelationFilter = {
|
|
19242
19340
|
is?: UserWhereInput | null
|
|
19243
19341
|
isNot?: UserWhereInput | null
|
|
@@ -19248,12 +19346,6 @@ export namespace Prisma {
|
|
|
19248
19346
|
isNot?: MissionSpecWhereInput | null
|
|
19249
19347
|
}
|
|
19250
19348
|
|
|
19251
|
-
export type ContractListRelationFilter = {
|
|
19252
|
-
every?: ContractWhereInput
|
|
19253
|
-
some?: ContractWhereInput
|
|
19254
|
-
none?: ContractWhereInput
|
|
19255
|
-
}
|
|
19256
|
-
|
|
19257
19349
|
export type MissionsAttachedLinkOrderByCompositeAggregateInput = {
|
|
19258
19350
|
_count?: SortOrder
|
|
19259
19351
|
}
|
|
@@ -19286,10 +19378,6 @@ export namespace Prisma {
|
|
|
19286
19378
|
type?: SortOrder
|
|
19287
19379
|
}
|
|
19288
19380
|
|
|
19289
|
-
export type ContractOrderByRelationAggregateInput = {
|
|
19290
|
-
_count?: SortOrder
|
|
19291
|
-
}
|
|
19292
|
-
|
|
19293
19381
|
export type MissionCountOrderByAggregateInput = {
|
|
19294
19382
|
mid?: SortOrder
|
|
19295
19383
|
accountId?: SortOrder
|
|
@@ -20013,6 +20101,13 @@ export namespace Prisma {
|
|
|
20013
20101
|
connect?: MissionSpecWhereUniqueInput | MissionSpecWhereUniqueInput[]
|
|
20014
20102
|
}
|
|
20015
20103
|
|
|
20104
|
+
export type ContractCreateNestedManyWithoutAccountInput = {
|
|
20105
|
+
create?: XOR<ContractCreateWithoutAccountInput, ContractUncheckedCreateWithoutAccountInput> | ContractCreateWithoutAccountInput[] | ContractUncheckedCreateWithoutAccountInput[]
|
|
20106
|
+
connectOrCreate?: ContractCreateOrConnectWithoutAccountInput | ContractCreateOrConnectWithoutAccountInput[]
|
|
20107
|
+
createMany?: ContractCreateManyAccountInputEnvelope
|
|
20108
|
+
connect?: ContractWhereUniqueInput | ContractWhereUniqueInput[]
|
|
20109
|
+
}
|
|
20110
|
+
|
|
20016
20111
|
export type MissionUncheckedCreateNestedManyWithoutAccountModelInput = {
|
|
20017
20112
|
create?: XOR<MissionCreateWithoutAccountModelInput, MissionUncheckedCreateWithoutAccountModelInput> | MissionCreateWithoutAccountModelInput[] | MissionUncheckedCreateWithoutAccountModelInput[]
|
|
20018
20113
|
connectOrCreate?: MissionCreateOrConnectWithoutAccountModelInput | MissionCreateOrConnectWithoutAccountModelInput[]
|
|
@@ -20027,6 +20122,13 @@ export namespace Prisma {
|
|
|
20027
20122
|
connect?: MissionSpecWhereUniqueInput | MissionSpecWhereUniqueInput[]
|
|
20028
20123
|
}
|
|
20029
20124
|
|
|
20125
|
+
export type ContractUncheckedCreateNestedManyWithoutAccountInput = {
|
|
20126
|
+
create?: XOR<ContractCreateWithoutAccountInput, ContractUncheckedCreateWithoutAccountInput> | ContractCreateWithoutAccountInput[] | ContractUncheckedCreateWithoutAccountInput[]
|
|
20127
|
+
connectOrCreate?: ContractCreateOrConnectWithoutAccountInput | ContractCreateOrConnectWithoutAccountInput[]
|
|
20128
|
+
createMany?: ContractCreateManyAccountInputEnvelope
|
|
20129
|
+
connect?: ContractWhereUniqueInput | ContractWhereUniqueInput[]
|
|
20130
|
+
}
|
|
20131
|
+
|
|
20030
20132
|
export type AccountsMemberListUpdateEnvelopeInput = {
|
|
20031
20133
|
set?: AccountsMemberCreateInput | AccountsMemberCreateInput[]
|
|
20032
20134
|
push?: AccountsMemberCreateInput | AccountsMemberCreateInput[]
|
|
@@ -20101,6 +20203,20 @@ export namespace Prisma {
|
|
|
20101
20203
|
deleteMany?: MissionSpecScalarWhereInput | MissionSpecScalarWhereInput[]
|
|
20102
20204
|
}
|
|
20103
20205
|
|
|
20206
|
+
export type ContractUpdateManyWithoutAccountNestedInput = {
|
|
20207
|
+
create?: XOR<ContractCreateWithoutAccountInput, ContractUncheckedCreateWithoutAccountInput> | ContractCreateWithoutAccountInput[] | ContractUncheckedCreateWithoutAccountInput[]
|
|
20208
|
+
connectOrCreate?: ContractCreateOrConnectWithoutAccountInput | ContractCreateOrConnectWithoutAccountInput[]
|
|
20209
|
+
upsert?: ContractUpsertWithWhereUniqueWithoutAccountInput | ContractUpsertWithWhereUniqueWithoutAccountInput[]
|
|
20210
|
+
createMany?: ContractCreateManyAccountInputEnvelope
|
|
20211
|
+
set?: ContractWhereUniqueInput | ContractWhereUniqueInput[]
|
|
20212
|
+
disconnect?: ContractWhereUniqueInput | ContractWhereUniqueInput[]
|
|
20213
|
+
delete?: ContractWhereUniqueInput | ContractWhereUniqueInput[]
|
|
20214
|
+
connect?: ContractWhereUniqueInput | ContractWhereUniqueInput[]
|
|
20215
|
+
update?: ContractUpdateWithWhereUniqueWithoutAccountInput | ContractUpdateWithWhereUniqueWithoutAccountInput[]
|
|
20216
|
+
updateMany?: ContractUpdateManyWithWhereWithoutAccountInput | ContractUpdateManyWithWhereWithoutAccountInput[]
|
|
20217
|
+
deleteMany?: ContractScalarWhereInput | ContractScalarWhereInput[]
|
|
20218
|
+
}
|
|
20219
|
+
|
|
20104
20220
|
export type StringFieldUpdateOperationsInput = {
|
|
20105
20221
|
set?: string
|
|
20106
20222
|
}
|
|
@@ -20133,6 +20249,20 @@ export namespace Prisma {
|
|
|
20133
20249
|
deleteMany?: MissionSpecScalarWhereInput | MissionSpecScalarWhereInput[]
|
|
20134
20250
|
}
|
|
20135
20251
|
|
|
20252
|
+
export type ContractUncheckedUpdateManyWithoutAccountNestedInput = {
|
|
20253
|
+
create?: XOR<ContractCreateWithoutAccountInput, ContractUncheckedCreateWithoutAccountInput> | ContractCreateWithoutAccountInput[] | ContractUncheckedCreateWithoutAccountInput[]
|
|
20254
|
+
connectOrCreate?: ContractCreateOrConnectWithoutAccountInput | ContractCreateOrConnectWithoutAccountInput[]
|
|
20255
|
+
upsert?: ContractUpsertWithWhereUniqueWithoutAccountInput | ContractUpsertWithWhereUniqueWithoutAccountInput[]
|
|
20256
|
+
createMany?: ContractCreateManyAccountInputEnvelope
|
|
20257
|
+
set?: ContractWhereUniqueInput | ContractWhereUniqueInput[]
|
|
20258
|
+
disconnect?: ContractWhereUniqueInput | ContractWhereUniqueInput[]
|
|
20259
|
+
delete?: ContractWhereUniqueInput | ContractWhereUniqueInput[]
|
|
20260
|
+
connect?: ContractWhereUniqueInput | ContractWhereUniqueInput[]
|
|
20261
|
+
update?: ContractUpdateWithWhereUniqueWithoutAccountInput | ContractUpdateWithWhereUniqueWithoutAccountInput[]
|
|
20262
|
+
updateMany?: ContractUpdateManyWithWhereWithoutAccountInput | ContractUpdateManyWithWhereWithoutAccountInput[]
|
|
20263
|
+
deleteMany?: ContractScalarWhereInput | ContractScalarWhereInput[]
|
|
20264
|
+
}
|
|
20265
|
+
|
|
20136
20266
|
export type AccountCreateNestedManyWithoutClientCompanyModelInput = {
|
|
20137
20267
|
create?: XOR<AccountCreateWithoutClientCompanyModelInput, AccountUncheckedCreateWithoutClientCompanyModelInput> | AccountCreateWithoutClientCompanyModelInput[] | AccountUncheckedCreateWithoutClientCompanyModelInput[]
|
|
20138
20268
|
connectOrCreate?: AccountCreateOrConnectWithoutClientCompanyModelInput | AccountCreateOrConnectWithoutClientCompanyModelInput[]
|
|
@@ -20306,6 +20436,12 @@ export namespace Prisma {
|
|
|
20306
20436
|
connect?: MissionWhereUniqueInput
|
|
20307
20437
|
}
|
|
20308
20438
|
|
|
20439
|
+
export type AccountCreateNestedOneWithoutContractsInput = {
|
|
20440
|
+
create?: XOR<AccountCreateWithoutContractsInput, AccountUncheckedCreateWithoutContractsInput>
|
|
20441
|
+
connectOrCreate?: AccountCreateOrConnectWithoutContractsInput
|
|
20442
|
+
connect?: AccountWhereUniqueInput
|
|
20443
|
+
}
|
|
20444
|
+
|
|
20309
20445
|
export type EnumContractStatusFieldUpdateOperationsInput = {
|
|
20310
20446
|
set?: $Enums.ContractStatus
|
|
20311
20447
|
}
|
|
@@ -20346,6 +20482,16 @@ export namespace Prisma {
|
|
|
20346
20482
|
update?: XOR<XOR<MissionUpdateToOneWithWhereWithoutContractsInput, MissionUpdateWithoutContractsInput>, MissionUncheckedUpdateWithoutContractsInput>
|
|
20347
20483
|
}
|
|
20348
20484
|
|
|
20485
|
+
export type AccountUpdateOneWithoutContractsNestedInput = {
|
|
20486
|
+
create?: XOR<AccountCreateWithoutContractsInput, AccountUncheckedCreateWithoutContractsInput>
|
|
20487
|
+
connectOrCreate?: AccountCreateOrConnectWithoutContractsInput
|
|
20488
|
+
upsert?: AccountUpsertWithoutContractsInput
|
|
20489
|
+
disconnect?: boolean
|
|
20490
|
+
delete?: AccountWhereInput | boolean
|
|
20491
|
+
connect?: AccountWhereUniqueInput
|
|
20492
|
+
update?: XOR<XOR<AccountUpdateToOneWithWhereWithoutContractsInput, AccountUpdateWithoutContractsInput>, AccountUncheckedUpdateWithoutContractsInput>
|
|
20493
|
+
}
|
|
20494
|
+
|
|
20349
20495
|
export type MissionsAttachedLinkListCreateEnvelopeInput = {
|
|
20350
20496
|
set?: MissionsAttachedLinkCreateInput | MissionsAttachedLinkCreateInput[]
|
|
20351
20497
|
}
|
|
@@ -22031,6 +22177,47 @@ export namespace Prisma {
|
|
|
22031
22177
|
data: MissionSpecCreateManyAccountInput | MissionSpecCreateManyAccountInput[]
|
|
22032
22178
|
}
|
|
22033
22179
|
|
|
22180
|
+
export type ContractCreateWithoutAccountInput = {
|
|
22181
|
+
sid?: string
|
|
22182
|
+
status: $Enums.ContractStatus
|
|
22183
|
+
type: $Enums.ContractType
|
|
22184
|
+
downloadURL: string
|
|
22185
|
+
createdAt: Date | string
|
|
22186
|
+
updatedAt?: Date | string
|
|
22187
|
+
parties?: XOR<ContractPartyListCreateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
22188
|
+
role?: string | null
|
|
22189
|
+
custom?: boolean | null
|
|
22190
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
22191
|
+
source?: $Enums.ContractSource | null
|
|
22192
|
+
documentTitle?: string | null
|
|
22193
|
+
mission?: MissionCreateNestedOneWithoutContractsInput
|
|
22194
|
+
}
|
|
22195
|
+
|
|
22196
|
+
export type ContractUncheckedCreateWithoutAccountInput = {
|
|
22197
|
+
sid?: string
|
|
22198
|
+
status: $Enums.ContractStatus
|
|
22199
|
+
type: $Enums.ContractType
|
|
22200
|
+
downloadURL: string
|
|
22201
|
+
createdAt: Date | string
|
|
22202
|
+
updatedAt?: Date | string
|
|
22203
|
+
parties?: XOR<ContractPartyListCreateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
22204
|
+
missionId?: string | null
|
|
22205
|
+
role?: string | null
|
|
22206
|
+
custom?: boolean | null
|
|
22207
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
22208
|
+
source?: $Enums.ContractSource | null
|
|
22209
|
+
documentTitle?: string | null
|
|
22210
|
+
}
|
|
22211
|
+
|
|
22212
|
+
export type ContractCreateOrConnectWithoutAccountInput = {
|
|
22213
|
+
where: ContractWhereUniqueInput
|
|
22214
|
+
create: XOR<ContractCreateWithoutAccountInput, ContractUncheckedCreateWithoutAccountInput>
|
|
22215
|
+
}
|
|
22216
|
+
|
|
22217
|
+
export type ContractCreateManyAccountInputEnvelope = {
|
|
22218
|
+
data: ContractCreateManyAccountInput | ContractCreateManyAccountInput[]
|
|
22219
|
+
}
|
|
22220
|
+
|
|
22034
22221
|
export type AccountsMemberUpdateManyInput = {
|
|
22035
22222
|
where: AccountsMemberWhereInput
|
|
22036
22223
|
data: AccountsMemberUpdateInput
|
|
@@ -22218,6 +22405,40 @@ export namespace Prisma {
|
|
|
22218
22405
|
workingHoursNumberOfMinutesOverlap?: IntNullableFilter<"MissionSpec"> | number | null
|
|
22219
22406
|
}
|
|
22220
22407
|
|
|
22408
|
+
export type ContractUpsertWithWhereUniqueWithoutAccountInput = {
|
|
22409
|
+
where: ContractWhereUniqueInput
|
|
22410
|
+
update: XOR<ContractUpdateWithoutAccountInput, ContractUncheckedUpdateWithoutAccountInput>
|
|
22411
|
+
create: XOR<ContractCreateWithoutAccountInput, ContractUncheckedCreateWithoutAccountInput>
|
|
22412
|
+
}
|
|
22413
|
+
|
|
22414
|
+
export type ContractUpdateWithWhereUniqueWithoutAccountInput = {
|
|
22415
|
+
where: ContractWhereUniqueInput
|
|
22416
|
+
data: XOR<ContractUpdateWithoutAccountInput, ContractUncheckedUpdateWithoutAccountInput>
|
|
22417
|
+
}
|
|
22418
|
+
|
|
22419
|
+
export type ContractUpdateManyWithWhereWithoutAccountInput = {
|
|
22420
|
+
where: ContractScalarWhereInput
|
|
22421
|
+
data: XOR<ContractUpdateManyMutationInput, ContractUncheckedUpdateManyWithoutAccountInput>
|
|
22422
|
+
}
|
|
22423
|
+
|
|
22424
|
+
export type ContractScalarWhereInput = {
|
|
22425
|
+
AND?: ContractScalarWhereInput | ContractScalarWhereInput[]
|
|
22426
|
+
OR?: ContractScalarWhereInput[]
|
|
22427
|
+
NOT?: ContractScalarWhereInput | ContractScalarWhereInput[]
|
|
22428
|
+
sid?: StringFilter<"Contract"> | string
|
|
22429
|
+
status?: EnumContractStatusFilter<"Contract"> | $Enums.ContractStatus
|
|
22430
|
+
type?: EnumContractTypeFilter<"Contract"> | $Enums.ContractType
|
|
22431
|
+
downloadURL?: StringFilter<"Contract"> | string
|
|
22432
|
+
createdAt?: DateTimeFilter<"Contract"> | Date | string
|
|
22433
|
+
updatedAt?: DateTimeFilter<"Contract"> | Date | string
|
|
22434
|
+
missionId?: StringNullableFilter<"Contract"> | string | null
|
|
22435
|
+
role?: StringNullableFilter<"Contract"> | string | null
|
|
22436
|
+
custom?: BoolNullableFilter<"Contract"> | boolean | null
|
|
22437
|
+
source?: EnumContractSourceNullableFilter<"Contract"> | $Enums.ContractSource | null
|
|
22438
|
+
documentTitle?: StringNullableFilter<"Contract"> | string | null
|
|
22439
|
+
accountId?: StringNullableFilter<"Contract"> | string | null
|
|
22440
|
+
}
|
|
22441
|
+
|
|
22221
22442
|
export type AccountCreateWithoutClientCompanyModelInput = {
|
|
22222
22443
|
id?: string
|
|
22223
22444
|
members?: XOR<AccountsMemberListCreateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
@@ -22230,6 +22451,7 @@ export namespace Prisma {
|
|
|
22230
22451
|
company: CompanyCreateNestedOneWithoutAccountsInput
|
|
22231
22452
|
missions?: MissionCreateNestedManyWithoutAccountModelInput
|
|
22232
22453
|
missionSpecs?: MissionSpecCreateNestedManyWithoutAccountInput
|
|
22454
|
+
contracts?: ContractCreateNestedManyWithoutAccountInput
|
|
22233
22455
|
}
|
|
22234
22456
|
|
|
22235
22457
|
export type AccountUncheckedCreateWithoutClientCompanyModelInput = {
|
|
@@ -22244,6 +22466,7 @@ export namespace Prisma {
|
|
|
22244
22466
|
migrations?: AccountCreatemigrationsInput | string[]
|
|
22245
22467
|
missions?: MissionUncheckedCreateNestedManyWithoutAccountModelInput
|
|
22246
22468
|
missionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAccountInput
|
|
22469
|
+
contracts?: ContractUncheckedCreateNestedManyWithoutAccountInput
|
|
22247
22470
|
}
|
|
22248
22471
|
|
|
22249
22472
|
export type AccountCreateOrConnectWithoutClientCompanyModelInput = {
|
|
@@ -22393,6 +22616,7 @@ export namespace Prisma {
|
|
|
22393
22616
|
clientCompanyModel?: ClientCompanyCreateNestedOneWithoutAccountsInput
|
|
22394
22617
|
missions?: MissionCreateNestedManyWithoutAccountModelInput
|
|
22395
22618
|
missionSpecs?: MissionSpecCreateNestedManyWithoutAccountInput
|
|
22619
|
+
contracts?: ContractCreateNestedManyWithoutAccountInput
|
|
22396
22620
|
}
|
|
22397
22621
|
|
|
22398
22622
|
export type AccountUncheckedCreateWithoutCompanyInput = {
|
|
@@ -22407,6 +22631,7 @@ export namespace Prisma {
|
|
|
22407
22631
|
migrations?: AccountCreatemigrationsInput | string[]
|
|
22408
22632
|
missions?: MissionUncheckedCreateNestedManyWithoutAccountModelInput
|
|
22409
22633
|
missionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAccountInput
|
|
22634
|
+
contracts?: ContractUncheckedCreateNestedManyWithoutAccountInput
|
|
22410
22635
|
}
|
|
22411
22636
|
|
|
22412
22637
|
export type AccountCreateOrConnectWithoutCompanyInput = {
|
|
@@ -22541,6 +22766,41 @@ export namespace Prisma {
|
|
|
22541
22766
|
create: XOR<MissionCreateWithoutContractsInput, MissionUncheckedCreateWithoutContractsInput>
|
|
22542
22767
|
}
|
|
22543
22768
|
|
|
22769
|
+
export type AccountCreateWithoutContractsInput = {
|
|
22770
|
+
id?: string
|
|
22771
|
+
members?: XOR<AccountsMemberListCreateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
22772
|
+
workspace?: XOR<AccountsWorkspaceNullableCreateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
22773
|
+
billingAccount?: string | null
|
|
22774
|
+
createdAt?: Date | string | null
|
|
22775
|
+
updatedAt?: Date | string | null
|
|
22776
|
+
deletedAt?: Date | string | null
|
|
22777
|
+
migrations?: AccountCreatemigrationsInput | string[]
|
|
22778
|
+
clientCompanyModel?: ClientCompanyCreateNestedOneWithoutAccountsInput
|
|
22779
|
+
company: CompanyCreateNestedOneWithoutAccountsInput
|
|
22780
|
+
missions?: MissionCreateNestedManyWithoutAccountModelInput
|
|
22781
|
+
missionSpecs?: MissionSpecCreateNestedManyWithoutAccountInput
|
|
22782
|
+
}
|
|
22783
|
+
|
|
22784
|
+
export type AccountUncheckedCreateWithoutContractsInput = {
|
|
22785
|
+
id?: string
|
|
22786
|
+
clientCompany?: string | null
|
|
22787
|
+
companyId: string
|
|
22788
|
+
members?: XOR<AccountsMemberListCreateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
22789
|
+
workspace?: XOR<AccountsWorkspaceNullableCreateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
22790
|
+
billingAccount?: string | null
|
|
22791
|
+
createdAt?: Date | string | null
|
|
22792
|
+
updatedAt?: Date | string | null
|
|
22793
|
+
deletedAt?: Date | string | null
|
|
22794
|
+
migrations?: AccountCreatemigrationsInput | string[]
|
|
22795
|
+
missions?: MissionUncheckedCreateNestedManyWithoutAccountModelInput
|
|
22796
|
+
missionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAccountInput
|
|
22797
|
+
}
|
|
22798
|
+
|
|
22799
|
+
export type AccountCreateOrConnectWithoutContractsInput = {
|
|
22800
|
+
where: AccountWhereUniqueInput
|
|
22801
|
+
create: XOR<AccountCreateWithoutContractsInput, AccountUncheckedCreateWithoutContractsInput>
|
|
22802
|
+
}
|
|
22803
|
+
|
|
22544
22804
|
export type ContractPartyUpdateManyInput = {
|
|
22545
22805
|
where: ContractPartyWhereInput
|
|
22546
22806
|
data: ContractPartyUpdateInput
|
|
@@ -22662,6 +22922,45 @@ export namespace Prisma {
|
|
|
22662
22922
|
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22663
22923
|
}
|
|
22664
22924
|
|
|
22925
|
+
export type AccountUpsertWithoutContractsInput = {
|
|
22926
|
+
update: XOR<AccountUpdateWithoutContractsInput, AccountUncheckedUpdateWithoutContractsInput>
|
|
22927
|
+
create: XOR<AccountCreateWithoutContractsInput, AccountUncheckedCreateWithoutContractsInput>
|
|
22928
|
+
where?: AccountWhereInput
|
|
22929
|
+
}
|
|
22930
|
+
|
|
22931
|
+
export type AccountUpdateToOneWithWhereWithoutContractsInput = {
|
|
22932
|
+
where?: AccountWhereInput
|
|
22933
|
+
data: XOR<AccountUpdateWithoutContractsInput, AccountUncheckedUpdateWithoutContractsInput>
|
|
22934
|
+
}
|
|
22935
|
+
|
|
22936
|
+
export type AccountUpdateWithoutContractsInput = {
|
|
22937
|
+
members?: XOR<AccountsMemberListUpdateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
22938
|
+
workspace?: XOR<AccountsWorkspaceNullableUpdateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
22939
|
+
billingAccount?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22940
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
22941
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
22942
|
+
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
22943
|
+
migrations?: AccountUpdatemigrationsInput | string[]
|
|
22944
|
+
clientCompanyModel?: ClientCompanyUpdateOneWithoutAccountsNestedInput
|
|
22945
|
+
company?: CompanyUpdateOneRequiredWithoutAccountsNestedInput
|
|
22946
|
+
missions?: MissionUpdateManyWithoutAccountModelNestedInput
|
|
22947
|
+
missionSpecs?: MissionSpecUpdateManyWithoutAccountNestedInput
|
|
22948
|
+
}
|
|
22949
|
+
|
|
22950
|
+
export type AccountUncheckedUpdateWithoutContractsInput = {
|
|
22951
|
+
clientCompany?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22952
|
+
companyId?: StringFieldUpdateOperationsInput | string
|
|
22953
|
+
members?: XOR<AccountsMemberListUpdateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
22954
|
+
workspace?: XOR<AccountsWorkspaceNullableUpdateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
22955
|
+
billingAccount?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22956
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
22957
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
22958
|
+
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
22959
|
+
migrations?: AccountUpdatemigrationsInput | string[]
|
|
22960
|
+
missions?: MissionUncheckedUpdateManyWithoutAccountModelNestedInput
|
|
22961
|
+
missionSpecs?: MissionSpecUncheckedUpdateManyWithoutAccountNestedInput
|
|
22962
|
+
}
|
|
22963
|
+
|
|
22665
22964
|
export type MissionRoleAvailabilityCreateInput = {
|
|
22666
22965
|
date?: Date | string | null
|
|
22667
22966
|
scheduledEndDate?: Date | string | null
|
|
@@ -22722,6 +23021,7 @@ export namespace Prisma {
|
|
|
22722
23021
|
clientCompanyModel?: ClientCompanyCreateNestedOneWithoutAccountsInput
|
|
22723
23022
|
company: CompanyCreateNestedOneWithoutAccountsInput
|
|
22724
23023
|
missionSpecs?: MissionSpecCreateNestedManyWithoutAccountInput
|
|
23024
|
+
contracts?: ContractCreateNestedManyWithoutAccountInput
|
|
22725
23025
|
}
|
|
22726
23026
|
|
|
22727
23027
|
export type AccountUncheckedCreateWithoutMissionsInput = {
|
|
@@ -22736,6 +23036,7 @@ export namespace Prisma {
|
|
|
22736
23036
|
deletedAt?: Date | string | null
|
|
22737
23037
|
migrations?: AccountCreatemigrationsInput | string[]
|
|
22738
23038
|
missionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAccountInput
|
|
23039
|
+
contracts?: ContractUncheckedCreateNestedManyWithoutAccountInput
|
|
22739
23040
|
}
|
|
22740
23041
|
|
|
22741
23042
|
export type AccountCreateOrConnectWithoutMissionsInput = {
|
|
@@ -22909,6 +23210,7 @@ export namespace Prisma {
|
|
|
22909
23210
|
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
22910
23211
|
source?: $Enums.ContractSource | null
|
|
22911
23212
|
documentTitle?: string | null
|
|
23213
|
+
account?: AccountCreateNestedOneWithoutContractsInput
|
|
22912
23214
|
}
|
|
22913
23215
|
|
|
22914
23216
|
export type ContractUncheckedCreateWithoutMissionInput = {
|
|
@@ -22924,6 +23226,7 @@ export namespace Prisma {
|
|
|
22924
23226
|
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
22925
23227
|
source?: $Enums.ContractSource | null
|
|
22926
23228
|
documentTitle?: string | null
|
|
23229
|
+
accountId?: string | null
|
|
22927
23230
|
}
|
|
22928
23231
|
|
|
22929
23232
|
export type ContractCreateOrConnectWithoutMissionInput = {
|
|
@@ -22999,6 +23302,7 @@ export namespace Prisma {
|
|
|
22999
23302
|
clientCompanyModel?: ClientCompanyUpdateOneWithoutAccountsNestedInput
|
|
23000
23303
|
company?: CompanyUpdateOneRequiredWithoutAccountsNestedInput
|
|
23001
23304
|
missionSpecs?: MissionSpecUpdateManyWithoutAccountNestedInput
|
|
23305
|
+
contracts?: ContractUpdateManyWithoutAccountNestedInput
|
|
23002
23306
|
}
|
|
23003
23307
|
|
|
23004
23308
|
export type AccountUncheckedUpdateWithoutMissionsInput = {
|
|
@@ -23012,6 +23316,7 @@ export namespace Prisma {
|
|
|
23012
23316
|
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
23013
23317
|
migrations?: AccountUpdatemigrationsInput | string[]
|
|
23014
23318
|
missionSpecs?: MissionSpecUncheckedUpdateManyWithoutAccountNestedInput
|
|
23319
|
+
contracts?: ContractUncheckedUpdateManyWithoutAccountNestedInput
|
|
23015
23320
|
}
|
|
23016
23321
|
|
|
23017
23322
|
export type UserUpsertWithoutCreatedMissionsModelsInput = {
|
|
@@ -23195,23 +23500,6 @@ export namespace Prisma {
|
|
|
23195
23500
|
data: XOR<ContractUpdateManyMutationInput, ContractUncheckedUpdateManyWithoutMissionInput>
|
|
23196
23501
|
}
|
|
23197
23502
|
|
|
23198
|
-
export type ContractScalarWhereInput = {
|
|
23199
|
-
AND?: ContractScalarWhereInput | ContractScalarWhereInput[]
|
|
23200
|
-
OR?: ContractScalarWhereInput[]
|
|
23201
|
-
NOT?: ContractScalarWhereInput | ContractScalarWhereInput[]
|
|
23202
|
-
sid?: StringFilter<"Contract"> | string
|
|
23203
|
-
status?: EnumContractStatusFilter<"Contract"> | $Enums.ContractStatus
|
|
23204
|
-
type?: EnumContractTypeFilter<"Contract"> | $Enums.ContractType
|
|
23205
|
-
downloadURL?: StringFilter<"Contract"> | string
|
|
23206
|
-
createdAt?: DateTimeFilter<"Contract"> | Date | string
|
|
23207
|
-
updatedAt?: DateTimeFilter<"Contract"> | Date | string
|
|
23208
|
-
missionId?: StringNullableFilter<"Contract"> | string | null
|
|
23209
|
-
role?: StringNullableFilter<"Contract"> | string | null
|
|
23210
|
-
custom?: BoolNullableFilter<"Contract"> | boolean | null
|
|
23211
|
-
source?: EnumContractSourceNullableFilter<"Contract"> | $Enums.ContractSource | null
|
|
23212
|
-
documentTitle?: StringNullableFilter<"Contract"> | string | null
|
|
23213
|
-
}
|
|
23214
|
-
|
|
23215
23503
|
export type UserCreateWithoutMissionPrefillsInput = {
|
|
23216
23504
|
id?: string
|
|
23217
23505
|
firstName?: string | null
|
|
@@ -23348,6 +23636,7 @@ export namespace Prisma {
|
|
|
23348
23636
|
clientCompanyModel?: ClientCompanyCreateNestedOneWithoutAccountsInput
|
|
23349
23637
|
company: CompanyCreateNestedOneWithoutAccountsInput
|
|
23350
23638
|
missions?: MissionCreateNestedManyWithoutAccountModelInput
|
|
23639
|
+
contracts?: ContractCreateNestedManyWithoutAccountInput
|
|
23351
23640
|
}
|
|
23352
23641
|
|
|
23353
23642
|
export type AccountUncheckedCreateWithoutMissionSpecsInput = {
|
|
@@ -23362,6 +23651,7 @@ export namespace Prisma {
|
|
|
23362
23651
|
deletedAt?: Date | string | null
|
|
23363
23652
|
migrations?: AccountCreatemigrationsInput | string[]
|
|
23364
23653
|
missions?: MissionUncheckedCreateNestedManyWithoutAccountModelInput
|
|
23654
|
+
contracts?: ContractUncheckedCreateNestedManyWithoutAccountInput
|
|
23365
23655
|
}
|
|
23366
23656
|
|
|
23367
23657
|
export type AccountCreateOrConnectWithoutMissionSpecsInput = {
|
|
@@ -23650,6 +23940,7 @@ export namespace Prisma {
|
|
|
23650
23940
|
clientCompanyModel?: ClientCompanyUpdateOneWithoutAccountsNestedInput
|
|
23651
23941
|
company?: CompanyUpdateOneRequiredWithoutAccountsNestedInput
|
|
23652
23942
|
missions?: MissionUpdateManyWithoutAccountModelNestedInput
|
|
23943
|
+
contracts?: ContractUpdateManyWithoutAccountNestedInput
|
|
23653
23944
|
}
|
|
23654
23945
|
|
|
23655
23946
|
export type AccountUncheckedUpdateWithoutMissionSpecsInput = {
|
|
@@ -23663,6 +23954,7 @@ export namespace Prisma {
|
|
|
23663
23954
|
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
23664
23955
|
migrations?: AccountUpdatemigrationsInput | string[]
|
|
23665
23956
|
missions?: MissionUncheckedUpdateManyWithoutAccountModelNestedInput
|
|
23957
|
+
contracts?: ContractUncheckedUpdateManyWithoutAccountNestedInput
|
|
23666
23958
|
}
|
|
23667
23959
|
|
|
23668
23960
|
export type UserUpsertWithoutAuthoredMissionSpecsInput = {
|
|
@@ -24587,6 +24879,22 @@ export namespace Prisma {
|
|
|
24587
24879
|
workingHoursNumberOfMinutesOverlap?: number | null
|
|
24588
24880
|
}
|
|
24589
24881
|
|
|
24882
|
+
export type ContractCreateManyAccountInput = {
|
|
24883
|
+
sid?: string
|
|
24884
|
+
status: $Enums.ContractStatus
|
|
24885
|
+
type: $Enums.ContractType
|
|
24886
|
+
downloadURL: string
|
|
24887
|
+
createdAt: Date | string
|
|
24888
|
+
updatedAt?: Date | string
|
|
24889
|
+
parties?: XOR<ContractPartyListCreateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
24890
|
+
missionId?: string | null
|
|
24891
|
+
role?: string | null
|
|
24892
|
+
custom?: boolean | null
|
|
24893
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
24894
|
+
source?: $Enums.ContractSource | null
|
|
24895
|
+
documentTitle?: string | null
|
|
24896
|
+
}
|
|
24897
|
+
|
|
24590
24898
|
export type AccountsMemberUpdateInput = {
|
|
24591
24899
|
user?: StringFieldUpdateOperationsInput | string
|
|
24592
24900
|
accessLevel?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -24826,6 +25134,51 @@ export namespace Prisma {
|
|
|
24826
25134
|
workingHoursNumberOfMinutesOverlap?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24827
25135
|
}
|
|
24828
25136
|
|
|
25137
|
+
export type ContractUpdateWithoutAccountInput = {
|
|
25138
|
+
status?: EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus
|
|
25139
|
+
type?: EnumContractTypeFieldUpdateOperationsInput | $Enums.ContractType
|
|
25140
|
+
downloadURL?: StringFieldUpdateOperationsInput | string
|
|
25141
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25142
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25143
|
+
parties?: XOR<ContractPartyListUpdateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
25144
|
+
role?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25145
|
+
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
25146
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
25147
|
+
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
25148
|
+
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25149
|
+
mission?: MissionUpdateOneWithoutContractsNestedInput
|
|
25150
|
+
}
|
|
25151
|
+
|
|
25152
|
+
export type ContractUncheckedUpdateWithoutAccountInput = {
|
|
25153
|
+
status?: EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus
|
|
25154
|
+
type?: EnumContractTypeFieldUpdateOperationsInput | $Enums.ContractType
|
|
25155
|
+
downloadURL?: StringFieldUpdateOperationsInput | string
|
|
25156
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25157
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25158
|
+
parties?: XOR<ContractPartyListUpdateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
25159
|
+
missionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25160
|
+
role?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25161
|
+
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
25162
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
25163
|
+
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
25164
|
+
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25165
|
+
}
|
|
25166
|
+
|
|
25167
|
+
export type ContractUncheckedUpdateManyWithoutAccountInput = {
|
|
25168
|
+
status?: EnumContractStatusFieldUpdateOperationsInput | $Enums.ContractStatus
|
|
25169
|
+
type?: EnumContractTypeFieldUpdateOperationsInput | $Enums.ContractType
|
|
25170
|
+
downloadURL?: StringFieldUpdateOperationsInput | string
|
|
25171
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25172
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
25173
|
+
parties?: XOR<ContractPartyListUpdateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
25174
|
+
missionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25175
|
+
role?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25176
|
+
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
25177
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
25178
|
+
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
25179
|
+
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25180
|
+
}
|
|
25181
|
+
|
|
24829
25182
|
export type AccountCreateManyClientCompanyModelInput = {
|
|
24830
25183
|
id?: string
|
|
24831
25184
|
companyId: string
|
|
@@ -24877,6 +25230,7 @@ export namespace Prisma {
|
|
|
24877
25230
|
company?: CompanyUpdateOneRequiredWithoutAccountsNestedInput
|
|
24878
25231
|
missions?: MissionUpdateManyWithoutAccountModelNestedInput
|
|
24879
25232
|
missionSpecs?: MissionSpecUpdateManyWithoutAccountNestedInput
|
|
25233
|
+
contracts?: ContractUpdateManyWithoutAccountNestedInput
|
|
24880
25234
|
}
|
|
24881
25235
|
|
|
24882
25236
|
export type AccountUncheckedUpdateWithoutClientCompanyModelInput = {
|
|
@@ -24890,6 +25244,7 @@ export namespace Prisma {
|
|
|
24890
25244
|
migrations?: AccountUpdatemigrationsInput | string[]
|
|
24891
25245
|
missions?: MissionUncheckedUpdateManyWithoutAccountModelNestedInput
|
|
24892
25246
|
missionSpecs?: MissionSpecUncheckedUpdateManyWithoutAccountNestedInput
|
|
25247
|
+
contracts?: ContractUncheckedUpdateManyWithoutAccountNestedInput
|
|
24893
25248
|
}
|
|
24894
25249
|
|
|
24895
25250
|
export type AccountUncheckedUpdateManyWithoutClientCompanyModelInput = {
|
|
@@ -25019,6 +25374,7 @@ export namespace Prisma {
|
|
|
25019
25374
|
clientCompanyModel?: ClientCompanyUpdateOneWithoutAccountsNestedInput
|
|
25020
25375
|
missions?: MissionUpdateManyWithoutAccountModelNestedInput
|
|
25021
25376
|
missionSpecs?: MissionSpecUpdateManyWithoutAccountNestedInput
|
|
25377
|
+
contracts?: ContractUpdateManyWithoutAccountNestedInput
|
|
25022
25378
|
}
|
|
25023
25379
|
|
|
25024
25380
|
export type AccountUncheckedUpdateWithoutCompanyInput = {
|
|
@@ -25032,6 +25388,7 @@ export namespace Prisma {
|
|
|
25032
25388
|
migrations?: AccountUpdatemigrationsInput | string[]
|
|
25033
25389
|
missions?: MissionUncheckedUpdateManyWithoutAccountModelNestedInput
|
|
25034
25390
|
missionSpecs?: MissionSpecUncheckedUpdateManyWithoutAccountNestedInput
|
|
25391
|
+
contracts?: ContractUncheckedUpdateManyWithoutAccountNestedInput
|
|
25035
25392
|
}
|
|
25036
25393
|
|
|
25037
25394
|
export type AccountUncheckedUpdateManyWithoutCompanyInput = {
|
|
@@ -25078,6 +25435,7 @@ export namespace Prisma {
|
|
|
25078
25435
|
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
25079
25436
|
source?: $Enums.ContractSource | null
|
|
25080
25437
|
documentTitle?: string | null
|
|
25438
|
+
accountId?: string | null
|
|
25081
25439
|
}
|
|
25082
25440
|
|
|
25083
25441
|
export type MissionsAttachedLinkUpdateInput = {
|
|
@@ -25160,6 +25518,7 @@ export namespace Prisma {
|
|
|
25160
25518
|
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
25161
25519
|
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
25162
25520
|
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25521
|
+
account?: AccountUpdateOneWithoutContractsNestedInput
|
|
25163
25522
|
}
|
|
25164
25523
|
|
|
25165
25524
|
export type ContractUncheckedUpdateWithoutMissionInput = {
|
|
@@ -25174,6 +25533,7 @@ export namespace Prisma {
|
|
|
25174
25533
|
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
25175
25534
|
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
25176
25535
|
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25536
|
+
accountId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25177
25537
|
}
|
|
25178
25538
|
|
|
25179
25539
|
export type ContractUncheckedUpdateManyWithoutMissionInput = {
|
|
@@ -25188,6 +25548,7 @@ export namespace Prisma {
|
|
|
25188
25548
|
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
25189
25549
|
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
25190
25550
|
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25551
|
+
accountId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25191
25552
|
}
|
|
25192
25553
|
|
|
25193
25554
|
export type AttachedLinkUpdateInput = {
|