@a_team/prisma 3.2.11-win → 3.3.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 +4 -4
- package/dist/client/index.d.ts +78 -45
- package/dist/client/index.js +6 -6
- 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 +8 -6
- package/package.json +2 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -3800,6 +3800,7 @@ export namespace Prisma {
|
|
|
3800
3800
|
headline?: boolean
|
|
3801
3801
|
hourlyRate?: boolean
|
|
3802
3802
|
monthlyRate?: boolean
|
|
3803
|
+
marginVAT?: boolean
|
|
3803
3804
|
isBadPerformance?: boolean
|
|
3804
3805
|
isLead?: boolean
|
|
3805
3806
|
locations?: boolean
|
|
@@ -3835,6 +3836,7 @@ export namespace Prisma {
|
|
|
3835
3836
|
headline?: boolean
|
|
3836
3837
|
hourlyRate?: boolean
|
|
3837
3838
|
monthlyRate?: boolean
|
|
3839
|
+
marginVAT?: boolean
|
|
3838
3840
|
isBadPerformance?: boolean
|
|
3839
3841
|
isLead?: boolean
|
|
3840
3842
|
locations?: boolean
|
|
@@ -3869,6 +3871,7 @@ export namespace Prisma {
|
|
|
3869
3871
|
headline: string | null
|
|
3870
3872
|
hourlyRate: number | null
|
|
3871
3873
|
monthlyRate: number | null
|
|
3874
|
+
marginVAT: number | null
|
|
3872
3875
|
isBadPerformance: boolean | null
|
|
3873
3876
|
isLead: boolean | null
|
|
3874
3877
|
locations: string[]
|
|
@@ -3917,6 +3920,7 @@ export namespace Prisma {
|
|
|
3917
3920
|
readonly headline: FieldRef<"MissionRole", 'String'>
|
|
3918
3921
|
readonly hourlyRate: FieldRef<"MissionRole", 'Float'>
|
|
3919
3922
|
readonly monthlyRate: FieldRef<"MissionRole", 'Float'>
|
|
3923
|
+
readonly marginVAT: FieldRef<"MissionRole", 'Float'>
|
|
3920
3924
|
readonly isBadPerformance: FieldRef<"MissionRole", 'Boolean'>
|
|
3921
3925
|
readonly isLead: FieldRef<"MissionRole", 'Boolean'>
|
|
3922
3926
|
readonly locations: FieldRef<"MissionRole", 'String[]'>
|
|
@@ -3964,6 +3968,7 @@ export namespace Prisma {
|
|
|
3964
3968
|
accessMode?: boolean
|
|
3965
3969
|
excludeFromInvoiceEmails?: boolean
|
|
3966
3970
|
excludeFromTeamPulseEmails?: boolean
|
|
3971
|
+
excludeFromMissionUpdatesEmails?: boolean
|
|
3967
3972
|
}, ExtArgs["result"]["missionsManager"]>
|
|
3968
3973
|
|
|
3969
3974
|
|
|
@@ -3972,6 +3977,7 @@ export namespace Prisma {
|
|
|
3972
3977
|
accessMode?: boolean
|
|
3973
3978
|
excludeFromInvoiceEmails?: boolean
|
|
3974
3979
|
excludeFromTeamPulseEmails?: boolean
|
|
3980
|
+
excludeFromMissionUpdatesEmails?: boolean
|
|
3975
3981
|
}
|
|
3976
3982
|
|
|
3977
3983
|
|
|
@@ -3983,6 +3989,7 @@ export namespace Prisma {
|
|
|
3983
3989
|
accessMode: string
|
|
3984
3990
|
excludeFromInvoiceEmails: boolean | null
|
|
3985
3991
|
excludeFromTeamPulseEmails: boolean | null
|
|
3992
|
+
excludeFromMissionUpdatesEmails: boolean | null
|
|
3986
3993
|
}
|
|
3987
3994
|
composites: {}
|
|
3988
3995
|
}
|
|
@@ -4001,6 +4008,7 @@ export namespace Prisma {
|
|
|
4001
4008
|
readonly accessMode: FieldRef<"MissionsManager", 'String'>
|
|
4002
4009
|
readonly excludeFromInvoiceEmails: FieldRef<"MissionsManager", 'Boolean'>
|
|
4003
4010
|
readonly excludeFromTeamPulseEmails: FieldRef<"MissionsManager", 'Boolean'>
|
|
4011
|
+
readonly excludeFromMissionUpdatesEmails: FieldRef<"MissionsManager", 'Boolean'>
|
|
4004
4012
|
}
|
|
4005
4013
|
|
|
4006
4014
|
|
|
@@ -5484,7 +5492,7 @@ export namespace Prisma {
|
|
|
5484
5492
|
export type AccountGroupByOutputType = {
|
|
5485
5493
|
id: string
|
|
5486
5494
|
clientCompany: string | null
|
|
5487
|
-
companyId: string
|
|
5495
|
+
companyId: string | null
|
|
5488
5496
|
billingAccount: string | null
|
|
5489
5497
|
createdAt: Date | null
|
|
5490
5498
|
updatedAt: Date | null
|
|
@@ -5521,7 +5529,7 @@ export namespace Prisma {
|
|
|
5521
5529
|
deletedAt?: boolean
|
|
5522
5530
|
migrations?: boolean
|
|
5523
5531
|
clientCompanyModel?: boolean | Account$clientCompanyModelArgs<ExtArgs>
|
|
5524
|
-
company?: boolean |
|
|
5532
|
+
company?: boolean | Account$companyArgs<ExtArgs>
|
|
5525
5533
|
missions?: boolean | Account$missionsArgs<ExtArgs>
|
|
5526
5534
|
missionSpecs?: boolean | Account$missionSpecsArgs<ExtArgs>
|
|
5527
5535
|
contracts?: boolean | Account$contractsArgs<ExtArgs>
|
|
@@ -5542,7 +5550,7 @@ export namespace Prisma {
|
|
|
5542
5550
|
|
|
5543
5551
|
export type AccountInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5544
5552
|
clientCompanyModel?: boolean | Account$clientCompanyModelArgs<ExtArgs>
|
|
5545
|
-
company?: boolean |
|
|
5553
|
+
company?: boolean | Account$companyArgs<ExtArgs>
|
|
5546
5554
|
missions?: boolean | Account$missionsArgs<ExtArgs>
|
|
5547
5555
|
missionSpecs?: boolean | Account$missionSpecsArgs<ExtArgs>
|
|
5548
5556
|
contracts?: boolean | Account$contractsArgs<ExtArgs>
|
|
@@ -5553,7 +5561,7 @@ export namespace Prisma {
|
|
|
5553
5561
|
name: "Account"
|
|
5554
5562
|
objects: {
|
|
5555
5563
|
clientCompanyModel: Prisma.$ClientCompanyPayload<ExtArgs> | null
|
|
5556
|
-
company: Prisma.$CompanyPayload<ExtArgs>
|
|
5564
|
+
company: Prisma.$CompanyPayload<ExtArgs> | null
|
|
5557
5565
|
missions: Prisma.$MissionPayload<ExtArgs>[]
|
|
5558
5566
|
missionSpecs: Prisma.$MissionSpecPayload<ExtArgs>[]
|
|
5559
5567
|
contracts: Prisma.$ContractPayload<ExtArgs>[]
|
|
@@ -5561,7 +5569,7 @@ export namespace Prisma {
|
|
|
5561
5569
|
scalars: $Extensions.GetPayloadResult<{
|
|
5562
5570
|
id: string
|
|
5563
5571
|
clientCompany: string | null
|
|
5564
|
-
companyId: string
|
|
5572
|
+
companyId: string | null
|
|
5565
5573
|
billingAccount: string | null
|
|
5566
5574
|
createdAt: Date | null
|
|
5567
5575
|
updatedAt: Date | null
|
|
@@ -5934,7 +5942,7 @@ export namespace Prisma {
|
|
|
5934
5942
|
export interface Prisma__AccountClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
5935
5943
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
5936
5944
|
clientCompanyModel<T extends Account$clientCompanyModelArgs<ExtArgs> = {}>(args?: Subset<T, Account$clientCompanyModelArgs<ExtArgs>>): Prisma__ClientCompanyClient<$Result.GetResult<Prisma.$ClientCompanyPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
5937
|
-
company<T extends
|
|
5945
|
+
company<T extends Account$companyArgs<ExtArgs> = {}>(args?: Subset<T, Account$companyArgs<ExtArgs>>): Prisma__CompanyClient<$Result.GetResult<Prisma.$CompanyPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
5938
5946
|
missions<T extends Account$missionsArgs<ExtArgs> = {}>(args?: Subset<T, Account$missionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionPayload<ExtArgs>, T, "findMany"> | Null>
|
|
5939
5947
|
missionSpecs<T extends Account$missionSpecsArgs<ExtArgs> = {}>(args?: Subset<T, Account$missionSpecsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findMany"> | Null>
|
|
5940
5948
|
contracts<T extends Account$contractsArgs<ExtArgs> = {}>(args?: Subset<T, Account$contractsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ContractPayload<ExtArgs>, T, "findMany"> | Null>
|
|
@@ -6169,7 +6177,7 @@ export namespace Prisma {
|
|
|
6169
6177
|
/**
|
|
6170
6178
|
* The data needed to create a Account.
|
|
6171
6179
|
*/
|
|
6172
|
-
data
|
|
6180
|
+
data?: XOR<AccountCreateInput, AccountUncheckedCreateInput>
|
|
6173
6181
|
}
|
|
6174
6182
|
|
|
6175
6183
|
/**
|
|
@@ -6315,6 +6323,21 @@ export namespace Prisma {
|
|
|
6315
6323
|
where?: ClientCompanyWhereInput
|
|
6316
6324
|
}
|
|
6317
6325
|
|
|
6326
|
+
/**
|
|
6327
|
+
* Account.company
|
|
6328
|
+
*/
|
|
6329
|
+
export type Account$companyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6330
|
+
/**
|
|
6331
|
+
* Select specific fields to fetch from the Company
|
|
6332
|
+
*/
|
|
6333
|
+
select?: CompanySelect<ExtArgs> | null
|
|
6334
|
+
/**
|
|
6335
|
+
* Choose, which related nodes to fetch as well
|
|
6336
|
+
*/
|
|
6337
|
+
include?: CompanyInclude<ExtArgs> | null
|
|
6338
|
+
where?: CompanyWhereInput
|
|
6339
|
+
}
|
|
6340
|
+
|
|
6318
6341
|
/**
|
|
6319
6342
|
* Account.missions
|
|
6320
6343
|
*/
|
|
@@ -19513,7 +19536,7 @@ export namespace Prisma {
|
|
|
19513
19536
|
NOT?: AccountWhereInput | AccountWhereInput[]
|
|
19514
19537
|
id?: StringFilter<"Account"> | string
|
|
19515
19538
|
clientCompany?: StringNullableFilter<"Account"> | string | null
|
|
19516
|
-
companyId?:
|
|
19539
|
+
companyId?: StringNullableFilter<"Account"> | string | null
|
|
19517
19540
|
members?: AccountsMemberCompositeListFilter | AccountsMemberObjectEqualityInput[]
|
|
19518
19541
|
workspace?: XOR<AccountsWorkspaceNullableCompositeFilter, AccountsWorkspaceObjectEqualityInput> | null
|
|
19519
19542
|
billingAccount?: StringNullableFilter<"Account"> | string | null
|
|
@@ -19522,7 +19545,7 @@ export namespace Prisma {
|
|
|
19522
19545
|
deletedAt?: DateTimeNullableFilter<"Account"> | Date | string | null
|
|
19523
19546
|
migrations?: StringNullableListFilter<"Account">
|
|
19524
19547
|
clientCompanyModel?: XOR<ClientCompanyNullableRelationFilter, ClientCompanyWhereInput> | null
|
|
19525
|
-
company?: XOR<
|
|
19548
|
+
company?: XOR<CompanyNullableRelationFilter, CompanyWhereInput> | null
|
|
19526
19549
|
missions?: MissionListRelationFilter
|
|
19527
19550
|
missionSpecs?: MissionSpecListRelationFilter
|
|
19528
19551
|
contracts?: ContractListRelationFilter
|
|
@@ -19552,7 +19575,7 @@ export namespace Prisma {
|
|
|
19552
19575
|
OR?: AccountWhereInput[]
|
|
19553
19576
|
NOT?: AccountWhereInput | AccountWhereInput[]
|
|
19554
19577
|
clientCompany?: StringNullableFilter<"Account"> | string | null
|
|
19555
|
-
companyId?:
|
|
19578
|
+
companyId?: StringNullableFilter<"Account"> | string | null
|
|
19556
19579
|
members?: AccountsMemberCompositeListFilter | AccountsMemberObjectEqualityInput[]
|
|
19557
19580
|
workspace?: XOR<AccountsWorkspaceNullableCompositeFilter, AccountsWorkspaceObjectEqualityInput> | null
|
|
19558
19581
|
billingAccount?: StringNullableFilter<"Account"> | string | null
|
|
@@ -19561,7 +19584,7 @@ export namespace Prisma {
|
|
|
19561
19584
|
deletedAt?: DateTimeNullableFilter<"Account"> | Date | string | null
|
|
19562
19585
|
migrations?: StringNullableListFilter<"Account">
|
|
19563
19586
|
clientCompanyModel?: XOR<ClientCompanyNullableRelationFilter, ClientCompanyWhereInput> | null
|
|
19564
|
-
company?: XOR<
|
|
19587
|
+
company?: XOR<CompanyNullableRelationFilter, CompanyWhereInput> | null
|
|
19565
19588
|
missions?: MissionListRelationFilter
|
|
19566
19589
|
missionSpecs?: MissionSpecListRelationFilter
|
|
19567
19590
|
contracts?: ContractListRelationFilter
|
|
@@ -19587,7 +19610,7 @@ export namespace Prisma {
|
|
|
19587
19610
|
NOT?: AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[]
|
|
19588
19611
|
id?: StringWithAggregatesFilter<"Account"> | string
|
|
19589
19612
|
clientCompany?: StringNullableWithAggregatesFilter<"Account"> | string | null
|
|
19590
|
-
companyId?:
|
|
19613
|
+
companyId?: StringNullableWithAggregatesFilter<"Account"> | string | null
|
|
19591
19614
|
billingAccount?: StringNullableWithAggregatesFilter<"Account"> | string | null
|
|
19592
19615
|
createdAt?: DateTimeNullableWithAggregatesFilter<"Account"> | Date | string | null
|
|
19593
19616
|
updatedAt?: DateTimeNullableWithAggregatesFilter<"Account"> | Date | string | null
|
|
@@ -20851,7 +20874,7 @@ export namespace Prisma {
|
|
|
20851
20874
|
deletedAt?: Date | string | null
|
|
20852
20875
|
migrations?: AccountCreatemigrationsInput | string[]
|
|
20853
20876
|
clientCompanyModel?: ClientCompanyCreateNestedOneWithoutAccountsInput
|
|
20854
|
-
company
|
|
20877
|
+
company?: CompanyCreateNestedOneWithoutAccountsInput
|
|
20855
20878
|
missions?: MissionCreateNestedManyWithoutAccountModelInput
|
|
20856
20879
|
missionSpecs?: MissionSpecCreateNestedManyWithoutAccountInput
|
|
20857
20880
|
contracts?: ContractCreateNestedManyWithoutAccountInput
|
|
@@ -20860,7 +20883,7 @@ export namespace Prisma {
|
|
|
20860
20883
|
export type AccountUncheckedCreateInput = {
|
|
20861
20884
|
id?: string
|
|
20862
20885
|
clientCompany?: string | null
|
|
20863
|
-
companyId
|
|
20886
|
+
companyId?: string | null
|
|
20864
20887
|
members?: XOR<AccountsMemberListCreateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
20865
20888
|
workspace?: XOR<AccountsWorkspaceNullableCreateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
20866
20889
|
billingAccount?: string | null
|
|
@@ -20882,7 +20905,7 @@ export namespace Prisma {
|
|
|
20882
20905
|
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
20883
20906
|
migrations?: AccountUpdatemigrationsInput | string[]
|
|
20884
20907
|
clientCompanyModel?: ClientCompanyUpdateOneWithoutAccountsNestedInput
|
|
20885
|
-
company?:
|
|
20908
|
+
company?: CompanyUpdateOneWithoutAccountsNestedInput
|
|
20886
20909
|
missions?: MissionUpdateManyWithoutAccountModelNestedInput
|
|
20887
20910
|
missionSpecs?: MissionSpecUpdateManyWithoutAccountNestedInput
|
|
20888
20911
|
contracts?: ContractUpdateManyWithoutAccountNestedInput
|
|
@@ -20890,7 +20913,7 @@ export namespace Prisma {
|
|
|
20890
20913
|
|
|
20891
20914
|
export type AccountUncheckedUpdateInput = {
|
|
20892
20915
|
clientCompany?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20893
|
-
companyId?:
|
|
20916
|
+
companyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20894
20917
|
members?: XOR<AccountsMemberListUpdateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
20895
20918
|
workspace?: XOR<AccountsWorkspaceNullableUpdateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
20896
20919
|
billingAccount?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -20906,7 +20929,7 @@ export namespace Prisma {
|
|
|
20906
20929
|
export type AccountCreateManyInput = {
|
|
20907
20930
|
id?: string
|
|
20908
20931
|
clientCompany?: string | null
|
|
20909
|
-
companyId
|
|
20932
|
+
companyId?: string | null
|
|
20910
20933
|
members?: XOR<AccountsMemberListCreateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
20911
20934
|
workspace?: XOR<AccountsWorkspaceNullableCreateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
20912
20935
|
billingAccount?: string | null
|
|
@@ -20928,7 +20951,7 @@ export namespace Prisma {
|
|
|
20928
20951
|
|
|
20929
20952
|
export type AccountUncheckedUpdateManyInput = {
|
|
20930
20953
|
clientCompany?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20931
|
-
companyId?:
|
|
20954
|
+
companyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
20932
20955
|
members?: XOR<AccountsMemberListUpdateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
20933
20956
|
workspace?: XOR<AccountsWorkspaceNullableUpdateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
20934
20957
|
billingAccount?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -22509,9 +22532,9 @@ export namespace Prisma {
|
|
|
22509
22532
|
isNot?: ClientCompanyWhereInput | null
|
|
22510
22533
|
}
|
|
22511
22534
|
|
|
22512
|
-
export type
|
|
22513
|
-
is?: CompanyWhereInput
|
|
22514
|
-
isNot?: CompanyWhereInput
|
|
22535
|
+
export type CompanyNullableRelationFilter = {
|
|
22536
|
+
is?: CompanyWhereInput | null
|
|
22537
|
+
isNot?: CompanyWhereInput | null
|
|
22515
22538
|
}
|
|
22516
22539
|
|
|
22517
22540
|
export type MissionListRelationFilter = {
|
|
@@ -23105,6 +23128,7 @@ export namespace Prisma {
|
|
|
23105
23128
|
accessMode: string
|
|
23106
23129
|
excludeFromInvoiceEmails?: boolean | null
|
|
23107
23130
|
excludeFromTeamPulseEmails?: boolean | null
|
|
23131
|
+
excludeFromMissionUpdatesEmails?: boolean | null
|
|
23108
23132
|
}
|
|
23109
23133
|
|
|
23110
23134
|
export type MissionRoleCompositeListFilter = {
|
|
@@ -23130,6 +23154,7 @@ export namespace Prisma {
|
|
|
23130
23154
|
headline?: string | null
|
|
23131
23155
|
hourlyRate?: number | null
|
|
23132
23156
|
monthlyRate?: number | null
|
|
23157
|
+
marginVAT?: number | null
|
|
23133
23158
|
isBadPerformance?: boolean | null
|
|
23134
23159
|
isLead?: boolean | null
|
|
23135
23160
|
locations?: string[]
|
|
@@ -24161,10 +24186,12 @@ export namespace Prisma {
|
|
|
24161
24186
|
update?: XOR<XOR<ClientCompanyUpdateToOneWithWhereWithoutAccountsInput, ClientCompanyUpdateWithoutAccountsInput>, ClientCompanyUncheckedUpdateWithoutAccountsInput>
|
|
24162
24187
|
}
|
|
24163
24188
|
|
|
24164
|
-
export type
|
|
24189
|
+
export type CompanyUpdateOneWithoutAccountsNestedInput = {
|
|
24165
24190
|
create?: XOR<CompanyCreateWithoutAccountsInput, CompanyUncheckedCreateWithoutAccountsInput>
|
|
24166
24191
|
connectOrCreate?: CompanyCreateOrConnectWithoutAccountsInput
|
|
24167
24192
|
upsert?: CompanyUpsertWithoutAccountsInput
|
|
24193
|
+
disconnect?: boolean
|
|
24194
|
+
delete?: CompanyWhereInput | boolean
|
|
24168
24195
|
connect?: CompanyWhereUniqueInput
|
|
24169
24196
|
update?: XOR<XOR<CompanyUpdateToOneWithWhereWithoutAccountsInput, CompanyUpdateWithoutAccountsInput>, CompanyUncheckedUpdateWithoutAccountsInput>
|
|
24170
24197
|
}
|
|
@@ -24211,10 +24238,6 @@ export namespace Prisma {
|
|
|
24211
24238
|
deleteMany?: ContractScalarWhereInput | ContractScalarWhereInput[]
|
|
24212
24239
|
}
|
|
24213
24240
|
|
|
24214
|
-
export type StringFieldUpdateOperationsInput = {
|
|
24215
|
-
set?: string
|
|
24216
|
-
}
|
|
24217
|
-
|
|
24218
24241
|
export type MissionUncheckedUpdateManyWithoutAccountModelNestedInput = {
|
|
24219
24242
|
create?: XOR<MissionCreateWithoutAccountModelInput, MissionUncheckedCreateWithoutAccountModelInput> | MissionCreateWithoutAccountModelInput[] | MissionUncheckedCreateWithoutAccountModelInput[]
|
|
24220
24243
|
connectOrCreate?: MissionCreateOrConnectWithoutAccountModelInput | MissionCreateOrConnectWithoutAccountModelInput[]
|
|
@@ -24285,6 +24308,10 @@ export namespace Prisma {
|
|
|
24285
24308
|
connect?: MissionSpecWhereUniqueInput | MissionSpecWhereUniqueInput[]
|
|
24286
24309
|
}
|
|
24287
24310
|
|
|
24311
|
+
export type StringFieldUpdateOperationsInput = {
|
|
24312
|
+
set?: string
|
|
24313
|
+
}
|
|
24314
|
+
|
|
24288
24315
|
export type AccountUpdateManyWithoutClientCompanyModelNestedInput = {
|
|
24289
24316
|
create?: XOR<AccountCreateWithoutClientCompanyModelInput, AccountUncheckedCreateWithoutClientCompanyModelInput> | AccountCreateWithoutClientCompanyModelInput[] | AccountUncheckedCreateWithoutClientCompanyModelInput[]
|
|
24290
24317
|
connectOrCreate?: AccountCreateOrConnectWithoutClientCompanyModelInput | AccountCreateOrConnectWithoutClientCompanyModelInput[]
|
|
@@ -24583,6 +24610,7 @@ export namespace Prisma {
|
|
|
24583
24610
|
accessMode: string
|
|
24584
24611
|
excludeFromInvoiceEmails?: boolean | null
|
|
24585
24612
|
excludeFromTeamPulseEmails?: boolean | null
|
|
24613
|
+
excludeFromMissionUpdatesEmails?: boolean | null
|
|
24586
24614
|
}
|
|
24587
24615
|
|
|
24588
24616
|
export type MissionCreatemigrationsInput = {
|
|
@@ -24611,6 +24639,7 @@ export namespace Prisma {
|
|
|
24611
24639
|
headline?: string | null
|
|
24612
24640
|
hourlyRate?: number | null
|
|
24613
24641
|
monthlyRate?: number | null
|
|
24642
|
+
marginVAT?: number | null
|
|
24614
24643
|
isBadPerformance?: boolean | null
|
|
24615
24644
|
isLead?: boolean | null
|
|
24616
24645
|
locations?: MissionRoleCreatelocationsInput | string[]
|
|
@@ -25824,6 +25853,7 @@ export namespace Prisma {
|
|
|
25824
25853
|
accessMode?: StringFilter<"MissionsManager"> | string
|
|
25825
25854
|
excludeFromInvoiceEmails?: BoolNullableFilter<"MissionsManager"> | boolean | null
|
|
25826
25855
|
excludeFromTeamPulseEmails?: BoolNullableFilter<"MissionsManager"> | boolean | null
|
|
25856
|
+
excludeFromMissionUpdatesEmails?: BoolNullableFilter<"MissionsManager"> | boolean | null
|
|
25827
25857
|
}
|
|
25828
25858
|
|
|
25829
25859
|
export type MissionRoleWhereInput = {
|
|
@@ -25843,6 +25873,7 @@ export namespace Prisma {
|
|
|
25843
25873
|
headline?: StringNullableFilter<"MissionRole"> | string | null
|
|
25844
25874
|
hourlyRate?: FloatNullableFilter<"MissionRole"> | number | null
|
|
25845
25875
|
monthlyRate?: FloatNullableFilter<"MissionRole"> | number | null
|
|
25876
|
+
marginVAT?: FloatNullableFilter<"MissionRole"> | number | null
|
|
25846
25877
|
isBadPerformance?: BoolNullableFilter<"MissionRole"> | boolean | null
|
|
25847
25878
|
isLead?: BoolNullableFilter<"MissionRole"> | boolean | null
|
|
25848
25879
|
locations?: StringNullableListFilter<"MissionRole">
|
|
@@ -26734,7 +26765,7 @@ export namespace Prisma {
|
|
|
26734
26765
|
updatedAt?: Date | string | null
|
|
26735
26766
|
deletedAt?: Date | string | null
|
|
26736
26767
|
migrations?: AccountCreatemigrationsInput | string[]
|
|
26737
|
-
company
|
|
26768
|
+
company?: CompanyCreateNestedOneWithoutAccountsInput
|
|
26738
26769
|
missions?: MissionCreateNestedManyWithoutAccountModelInput
|
|
26739
26770
|
missionSpecs?: MissionSpecCreateNestedManyWithoutAccountInput
|
|
26740
26771
|
contracts?: ContractCreateNestedManyWithoutAccountInput
|
|
@@ -26742,7 +26773,7 @@ export namespace Prisma {
|
|
|
26742
26773
|
|
|
26743
26774
|
export type AccountUncheckedCreateWithoutClientCompanyModelInput = {
|
|
26744
26775
|
id?: string
|
|
26745
|
-
companyId
|
|
26776
|
+
companyId?: string | null
|
|
26746
26777
|
members?: XOR<AccountsMemberListCreateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
26747
26778
|
workspace?: XOR<AccountsWorkspaceNullableCreateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
26748
26779
|
billingAccount?: string | null
|
|
@@ -26853,7 +26884,7 @@ export namespace Prisma {
|
|
|
26853
26884
|
NOT?: AccountScalarWhereInput | AccountScalarWhereInput[]
|
|
26854
26885
|
id?: StringFilter<"Account"> | string
|
|
26855
26886
|
clientCompany?: StringNullableFilter<"Account"> | string | null
|
|
26856
|
-
companyId?:
|
|
26887
|
+
companyId?: StringNullableFilter<"Account"> | string | null
|
|
26857
26888
|
billingAccount?: StringNullableFilter<"Account"> | string | null
|
|
26858
26889
|
createdAt?: DateTimeNullableFilter<"Account"> | Date | string | null
|
|
26859
26890
|
updatedAt?: DateTimeNullableFilter<"Account"> | Date | string | null
|
|
@@ -27078,7 +27109,7 @@ export namespace Prisma {
|
|
|
27078
27109
|
deletedAt?: Date | string | null
|
|
27079
27110
|
migrations?: AccountCreatemigrationsInput | string[]
|
|
27080
27111
|
clientCompanyModel?: ClientCompanyCreateNestedOneWithoutAccountsInput
|
|
27081
|
-
company
|
|
27112
|
+
company?: CompanyCreateNestedOneWithoutAccountsInput
|
|
27082
27113
|
missions?: MissionCreateNestedManyWithoutAccountModelInput
|
|
27083
27114
|
missionSpecs?: MissionSpecCreateNestedManyWithoutAccountInput
|
|
27084
27115
|
}
|
|
@@ -27086,7 +27117,7 @@ export namespace Prisma {
|
|
|
27086
27117
|
export type AccountUncheckedCreateWithoutContractsInput = {
|
|
27087
27118
|
id?: string
|
|
27088
27119
|
clientCompany?: string | null
|
|
27089
|
-
companyId
|
|
27120
|
+
companyId?: string | null
|
|
27090
27121
|
members?: XOR<AccountsMemberListCreateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
27091
27122
|
workspace?: XOR<AccountsWorkspaceNullableCreateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
27092
27123
|
billingAccount?: string | null
|
|
@@ -27244,14 +27275,14 @@ export namespace Prisma {
|
|
|
27244
27275
|
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
27245
27276
|
migrations?: AccountUpdatemigrationsInput | string[]
|
|
27246
27277
|
clientCompanyModel?: ClientCompanyUpdateOneWithoutAccountsNestedInput
|
|
27247
|
-
company?:
|
|
27278
|
+
company?: CompanyUpdateOneWithoutAccountsNestedInput
|
|
27248
27279
|
missions?: MissionUpdateManyWithoutAccountModelNestedInput
|
|
27249
27280
|
missionSpecs?: MissionSpecUpdateManyWithoutAccountNestedInput
|
|
27250
27281
|
}
|
|
27251
27282
|
|
|
27252
27283
|
export type AccountUncheckedUpdateWithoutContractsInput = {
|
|
27253
27284
|
clientCompany?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27254
|
-
companyId?:
|
|
27285
|
+
companyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27255
27286
|
members?: XOR<AccountsMemberListUpdateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
27256
27287
|
workspace?: XOR<AccountsWorkspaceNullableUpdateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
27257
27288
|
billingAccount?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -27337,7 +27368,7 @@ export namespace Prisma {
|
|
|
27337
27368
|
deletedAt?: Date | string | null
|
|
27338
27369
|
migrations?: AccountCreatemigrationsInput | string[]
|
|
27339
27370
|
clientCompanyModel?: ClientCompanyCreateNestedOneWithoutAccountsInput
|
|
27340
|
-
company
|
|
27371
|
+
company?: CompanyCreateNestedOneWithoutAccountsInput
|
|
27341
27372
|
missionSpecs?: MissionSpecCreateNestedManyWithoutAccountInput
|
|
27342
27373
|
contracts?: ContractCreateNestedManyWithoutAccountInput
|
|
27343
27374
|
}
|
|
@@ -27345,7 +27376,7 @@ export namespace Prisma {
|
|
|
27345
27376
|
export type AccountUncheckedCreateWithoutMissionsInput = {
|
|
27346
27377
|
id?: string
|
|
27347
27378
|
clientCompany?: string | null
|
|
27348
|
-
companyId
|
|
27379
|
+
companyId?: string | null
|
|
27349
27380
|
members?: XOR<AccountsMemberListCreateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
27350
27381
|
workspace?: XOR<AccountsWorkspaceNullableCreateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
27351
27382
|
billingAccount?: string | null
|
|
@@ -27650,14 +27681,14 @@ export namespace Prisma {
|
|
|
27650
27681
|
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
27651
27682
|
migrations?: AccountUpdatemigrationsInput | string[]
|
|
27652
27683
|
clientCompanyModel?: ClientCompanyUpdateOneWithoutAccountsNestedInput
|
|
27653
|
-
company?:
|
|
27684
|
+
company?: CompanyUpdateOneWithoutAccountsNestedInput
|
|
27654
27685
|
missionSpecs?: MissionSpecUpdateManyWithoutAccountNestedInput
|
|
27655
27686
|
contracts?: ContractUpdateManyWithoutAccountNestedInput
|
|
27656
27687
|
}
|
|
27657
27688
|
|
|
27658
27689
|
export type AccountUncheckedUpdateWithoutMissionsInput = {
|
|
27659
27690
|
clientCompany?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27660
|
-
companyId?:
|
|
27691
|
+
companyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27661
27692
|
members?: XOR<AccountsMemberListUpdateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
27662
27693
|
workspace?: XOR<AccountsWorkspaceNullableUpdateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
27663
27694
|
billingAccount?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -28048,7 +28079,7 @@ export namespace Prisma {
|
|
|
28048
28079
|
deletedAt?: Date | string | null
|
|
28049
28080
|
migrations?: AccountCreatemigrationsInput | string[]
|
|
28050
28081
|
clientCompanyModel?: ClientCompanyCreateNestedOneWithoutAccountsInput
|
|
28051
|
-
company
|
|
28082
|
+
company?: CompanyCreateNestedOneWithoutAccountsInput
|
|
28052
28083
|
missions?: MissionCreateNestedManyWithoutAccountModelInput
|
|
28053
28084
|
contracts?: ContractCreateNestedManyWithoutAccountInput
|
|
28054
28085
|
}
|
|
@@ -28056,7 +28087,7 @@ export namespace Prisma {
|
|
|
28056
28087
|
export type AccountUncheckedCreateWithoutMissionSpecsInput = {
|
|
28057
28088
|
id?: string
|
|
28058
28089
|
clientCompany?: string | null
|
|
28059
|
-
companyId
|
|
28090
|
+
companyId?: string | null
|
|
28060
28091
|
members?: XOR<AccountsMemberListCreateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
28061
28092
|
workspace?: XOR<AccountsWorkspaceNullableCreateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
28062
28093
|
billingAccount?: string | null
|
|
@@ -28384,14 +28415,14 @@ export namespace Prisma {
|
|
|
28384
28415
|
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
28385
28416
|
migrations?: AccountUpdatemigrationsInput | string[]
|
|
28386
28417
|
clientCompanyModel?: ClientCompanyUpdateOneWithoutAccountsNestedInput
|
|
28387
|
-
company?:
|
|
28418
|
+
company?: CompanyUpdateOneWithoutAccountsNestedInput
|
|
28388
28419
|
missions?: MissionUpdateManyWithoutAccountModelNestedInput
|
|
28389
28420
|
contracts?: ContractUpdateManyWithoutAccountNestedInput
|
|
28390
28421
|
}
|
|
28391
28422
|
|
|
28392
28423
|
export type AccountUncheckedUpdateWithoutMissionSpecsInput = {
|
|
28393
28424
|
clientCompany?: NullableStringFieldUpdateOperationsInput | string | null
|
|
28394
|
-
companyId?:
|
|
28425
|
+
companyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
28395
28426
|
members?: XOR<AccountsMemberListUpdateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
28396
28427
|
workspace?: XOR<AccountsWorkspaceNullableUpdateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
28397
28428
|
billingAccount?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -29772,7 +29803,7 @@ export namespace Prisma {
|
|
|
29772
29803
|
|
|
29773
29804
|
export type AccountCreateManyClientCompanyModelInput = {
|
|
29774
29805
|
id?: string
|
|
29775
|
-
companyId
|
|
29806
|
+
companyId?: string | null
|
|
29776
29807
|
members?: XOR<AccountsMemberListCreateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
29777
29808
|
workspace?: XOR<AccountsWorkspaceNullableCreateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
29778
29809
|
billingAccount?: string | null
|
|
@@ -29818,14 +29849,14 @@ export namespace Prisma {
|
|
|
29818
29849
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
29819
29850
|
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
29820
29851
|
migrations?: AccountUpdatemigrationsInput | string[]
|
|
29821
|
-
company?:
|
|
29852
|
+
company?: CompanyUpdateOneWithoutAccountsNestedInput
|
|
29822
29853
|
missions?: MissionUpdateManyWithoutAccountModelNestedInput
|
|
29823
29854
|
missionSpecs?: MissionSpecUpdateManyWithoutAccountNestedInput
|
|
29824
29855
|
contracts?: ContractUpdateManyWithoutAccountNestedInput
|
|
29825
29856
|
}
|
|
29826
29857
|
|
|
29827
29858
|
export type AccountUncheckedUpdateWithoutClientCompanyModelInput = {
|
|
29828
|
-
companyId?:
|
|
29859
|
+
companyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29829
29860
|
members?: XOR<AccountsMemberListUpdateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
29830
29861
|
workspace?: XOR<AccountsWorkspaceNullableUpdateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
29831
29862
|
billingAccount?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -29839,7 +29870,7 @@ export namespace Prisma {
|
|
|
29839
29870
|
}
|
|
29840
29871
|
|
|
29841
29872
|
export type AccountUncheckedUpdateManyWithoutClientCompanyModelInput = {
|
|
29842
|
-
companyId?:
|
|
29873
|
+
companyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29843
29874
|
members?: XOR<AccountsMemberListUpdateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
29844
29875
|
workspace?: XOR<AccountsWorkspaceNullableUpdateEnvelopeInput, AccountsWorkspaceCreateInput> | null
|
|
29845
29876
|
billingAccount?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -30078,6 +30109,7 @@ export namespace Prisma {
|
|
|
30078
30109
|
accessMode?: StringFieldUpdateOperationsInput | string
|
|
30079
30110
|
excludeFromInvoiceEmails?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30080
30111
|
excludeFromTeamPulseEmails?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30112
|
+
excludeFromMissionUpdatesEmails?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30081
30113
|
}
|
|
30082
30114
|
|
|
30083
30115
|
export type MissionRoleUpdateInput = {
|
|
@@ -30094,6 +30126,7 @@ export namespace Prisma {
|
|
|
30094
30126
|
headline?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30095
30127
|
hourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
30096
30128
|
monthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
30129
|
+
marginVAT?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
30097
30130
|
isBadPerformance?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30098
30131
|
isLead?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
30099
30132
|
locations?: MissionRoleUpdatelocationsInput | string[]
|