@a_team/prisma 3.12.1-win → 3.12.2-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 +8 -6
- package/dist/client/index-browser.js +4 -2
- package/dist/client/index.d.ts +682 -2
- package/dist/client/index.js +10 -8
- 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 +38 -33
- package/dist/client/wasm.js +4 -2
- package/package.json +2 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -707,7 +707,8 @@ export type MissionSpecStatus = (typeof MissionSpecStatus)[keyof typeof MissionS
|
|
|
707
707
|
|
|
708
708
|
export const ProposalSchemaVersion: {
|
|
709
709
|
v1: 'v1',
|
|
710
|
-
v2: 'v2'
|
|
710
|
+
v2: 'v2',
|
|
711
|
+
v3: 'v3'
|
|
711
712
|
};
|
|
712
713
|
|
|
713
714
|
export type ProposalSchemaVersion = (typeof ProposalSchemaVersion)[keyof typeof ProposalSchemaVersion]
|
|
@@ -4196,6 +4197,7 @@ export namespace Prisma {
|
|
|
4196
4197
|
rescheduledInterviews: number
|
|
4197
4198
|
clientInterviews: number
|
|
4198
4199
|
builderInterviews: number
|
|
4200
|
+
proposalsAsTeamAdvisor: number
|
|
4199
4201
|
}
|
|
4200
4202
|
|
|
4201
4203
|
export type UserCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -4215,6 +4217,7 @@ export namespace Prisma {
|
|
|
4215
4217
|
rescheduledInterviews?: boolean | UserCountOutputTypeCountRescheduledInterviewsArgs
|
|
4216
4218
|
clientInterviews?: boolean | UserCountOutputTypeCountClientInterviewsArgs
|
|
4217
4219
|
builderInterviews?: boolean | UserCountOutputTypeCountBuilderInterviewsArgs
|
|
4220
|
+
proposalsAsTeamAdvisor?: boolean | UserCountOutputTypeCountProposalsAsTeamAdvisorArgs
|
|
4218
4221
|
}
|
|
4219
4222
|
|
|
4220
4223
|
// Custom InputTypes
|
|
@@ -4340,6 +4343,13 @@ export namespace Prisma {
|
|
|
4340
4343
|
where?: ClientInterviewWhereInput
|
|
4341
4344
|
}
|
|
4342
4345
|
|
|
4346
|
+
/**
|
|
4347
|
+
* UserCountOutputType without action
|
|
4348
|
+
*/
|
|
4349
|
+
export type UserCountOutputTypeCountProposalsAsTeamAdvisorArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4350
|
+
where?: ProposalWhereInput
|
|
4351
|
+
}
|
|
4352
|
+
|
|
4343
4353
|
|
|
4344
4354
|
/**
|
|
4345
4355
|
* Models
|
|
@@ -27598,6 +27608,7 @@ export namespace Prisma {
|
|
|
27598
27608
|
name: string | null
|
|
27599
27609
|
slug: string | null
|
|
27600
27610
|
teamBlurb: string | null
|
|
27611
|
+
teamAdvisorId: string | null
|
|
27601
27612
|
}
|
|
27602
27613
|
|
|
27603
27614
|
export type ProposalMaxAggregateOutputType = {
|
|
@@ -27625,6 +27636,7 @@ export namespace Prisma {
|
|
|
27625
27636
|
name: string | null
|
|
27626
27637
|
slug: string | null
|
|
27627
27638
|
teamBlurb: string | null
|
|
27639
|
+
teamAdvisorId: string | null
|
|
27628
27640
|
}
|
|
27629
27641
|
|
|
27630
27642
|
export type ProposalCountAggregateOutputType = {
|
|
@@ -27653,6 +27665,7 @@ export namespace Prisma {
|
|
|
27653
27665
|
name: number
|
|
27654
27666
|
slug: number
|
|
27655
27667
|
teamBlurb: number
|
|
27668
|
+
teamAdvisorId: number
|
|
27656
27669
|
_all: number
|
|
27657
27670
|
}
|
|
27658
27671
|
|
|
@@ -27690,6 +27703,7 @@ export namespace Prisma {
|
|
|
27690
27703
|
name?: true
|
|
27691
27704
|
slug?: true
|
|
27692
27705
|
teamBlurb?: true
|
|
27706
|
+
teamAdvisorId?: true
|
|
27693
27707
|
}
|
|
27694
27708
|
|
|
27695
27709
|
export type ProposalMaxAggregateInputType = {
|
|
@@ -27717,6 +27731,7 @@ export namespace Prisma {
|
|
|
27717
27731
|
name?: true
|
|
27718
27732
|
slug?: true
|
|
27719
27733
|
teamBlurb?: true
|
|
27734
|
+
teamAdvisorId?: true
|
|
27720
27735
|
}
|
|
27721
27736
|
|
|
27722
27737
|
export type ProposalCountAggregateInputType = {
|
|
@@ -27745,6 +27760,7 @@ export namespace Prisma {
|
|
|
27745
27760
|
name?: true
|
|
27746
27761
|
slug?: true
|
|
27747
27762
|
teamBlurb?: true
|
|
27763
|
+
teamAdvisorId?: true
|
|
27748
27764
|
_all?: true
|
|
27749
27765
|
}
|
|
27750
27766
|
|
|
@@ -27860,6 +27876,7 @@ export namespace Prisma {
|
|
|
27860
27876
|
name: string | null
|
|
27861
27877
|
slug: string | null
|
|
27862
27878
|
teamBlurb: string | null
|
|
27879
|
+
teamAdvisorId: string | null
|
|
27863
27880
|
_count: ProposalCountAggregateOutputType | null
|
|
27864
27881
|
_avg: ProposalAvgAggregateOutputType | null
|
|
27865
27882
|
_sum: ProposalSumAggregateOutputType | null
|
|
@@ -27911,10 +27928,12 @@ export namespace Prisma {
|
|
|
27911
27928
|
name?: boolean
|
|
27912
27929
|
slug?: boolean
|
|
27913
27930
|
teamBlurb?: boolean
|
|
27931
|
+
teamAdvisorId?: boolean
|
|
27914
27932
|
createdBy?: boolean | Proposal$createdByArgs<ExtArgs>
|
|
27915
27933
|
mission?: boolean | Proposal$missionArgs<ExtArgs>
|
|
27916
27934
|
sharedBy?: boolean | Proposal$sharedByArgs<ExtArgs>
|
|
27917
27935
|
missionSpec?: boolean | Proposal$missionSpecArgs<ExtArgs>
|
|
27936
|
+
teamAdvisor?: boolean | Proposal$teamAdvisorArgs<ExtArgs>
|
|
27918
27937
|
clientInterviews?: boolean | Proposal$clientInterviewsArgs<ExtArgs>
|
|
27919
27938
|
_count?: boolean | ProposalCountOutputTypeDefaultArgs<ExtArgs>
|
|
27920
27939
|
}, ExtArgs["result"]["proposal"]>
|
|
@@ -27946,6 +27965,7 @@ export namespace Prisma {
|
|
|
27946
27965
|
name?: boolean
|
|
27947
27966
|
slug?: boolean
|
|
27948
27967
|
teamBlurb?: boolean
|
|
27968
|
+
teamAdvisorId?: boolean
|
|
27949
27969
|
}
|
|
27950
27970
|
|
|
27951
27971
|
export type ProposalInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -27953,6 +27973,7 @@ export namespace Prisma {
|
|
|
27953
27973
|
mission?: boolean | Proposal$missionArgs<ExtArgs>
|
|
27954
27974
|
sharedBy?: boolean | Proposal$sharedByArgs<ExtArgs>
|
|
27955
27975
|
missionSpec?: boolean | Proposal$missionSpecArgs<ExtArgs>
|
|
27976
|
+
teamAdvisor?: boolean | Proposal$teamAdvisorArgs<ExtArgs>
|
|
27956
27977
|
clientInterviews?: boolean | Proposal$clientInterviewsArgs<ExtArgs>
|
|
27957
27978
|
_count?: boolean | ProposalCountOutputTypeDefaultArgs<ExtArgs>
|
|
27958
27979
|
}
|
|
@@ -27964,6 +27985,7 @@ export namespace Prisma {
|
|
|
27964
27985
|
mission: Prisma.$MissionPayload<ExtArgs> | null
|
|
27965
27986
|
sharedBy: Prisma.$UserPayload<ExtArgs> | null
|
|
27966
27987
|
missionSpec: Prisma.$MissionSpecPayload<ExtArgs> | null
|
|
27988
|
+
teamAdvisor: Prisma.$UserPayload<ExtArgs> | null
|
|
27967
27989
|
clientInterviews: Prisma.$ClientInterviewPayload<ExtArgs>[]
|
|
27968
27990
|
}
|
|
27969
27991
|
scalars: $Extensions.GetPayloadResult<{
|
|
@@ -27992,6 +28014,7 @@ export namespace Prisma {
|
|
|
27992
28014
|
name: string | null
|
|
27993
28015
|
slug: string | null
|
|
27994
28016
|
teamBlurb: string | null
|
|
28017
|
+
teamAdvisorId: string | null
|
|
27995
28018
|
}, ExtArgs["result"]["proposal"]>
|
|
27996
28019
|
composites: {
|
|
27997
28020
|
templateMap: Prisma.$ProposalTemplateMapPayload | null
|
|
@@ -28364,6 +28387,7 @@ export namespace Prisma {
|
|
|
28364
28387
|
mission<T extends Proposal$missionArgs<ExtArgs> = {}>(args?: Subset<T, Proposal$missionArgs<ExtArgs>>): Prisma__MissionClient<$Result.GetResult<Prisma.$MissionPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
28365
28388
|
sharedBy<T extends Proposal$sharedByArgs<ExtArgs> = {}>(args?: Subset<T, Proposal$sharedByArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
28366
28389
|
missionSpec<T extends Proposal$missionSpecArgs<ExtArgs> = {}>(args?: Subset<T, Proposal$missionSpecArgs<ExtArgs>>): Prisma__MissionSpecClient<$Result.GetResult<Prisma.$MissionSpecPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
28390
|
+
teamAdvisor<T extends Proposal$teamAdvisorArgs<ExtArgs> = {}>(args?: Subset<T, Proposal$teamAdvisorArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
28367
28391
|
clientInterviews<T extends Proposal$clientInterviewsArgs<ExtArgs> = {}>(args?: Subset<T, Proposal$clientInterviewsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ClientInterviewPayload<ExtArgs>, T, "findMany"> | Null>
|
|
28368
28392
|
/**
|
|
28369
28393
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -28419,6 +28443,7 @@ export namespace Prisma {
|
|
|
28419
28443
|
readonly name: FieldRef<"Proposal", 'String'>
|
|
28420
28444
|
readonly slug: FieldRef<"Proposal", 'String'>
|
|
28421
28445
|
readonly teamBlurb: FieldRef<"Proposal", 'String'>
|
|
28446
|
+
readonly teamAdvisorId: FieldRef<"Proposal", 'String'>
|
|
28422
28447
|
}
|
|
28423
28448
|
|
|
28424
28449
|
|
|
@@ -28804,6 +28829,21 @@ export namespace Prisma {
|
|
|
28804
28829
|
where?: MissionSpecWhereInput
|
|
28805
28830
|
}
|
|
28806
28831
|
|
|
28832
|
+
/**
|
|
28833
|
+
* Proposal.teamAdvisor
|
|
28834
|
+
*/
|
|
28835
|
+
export type Proposal$teamAdvisorArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
28836
|
+
/**
|
|
28837
|
+
* Select specific fields to fetch from the User
|
|
28838
|
+
*/
|
|
28839
|
+
select?: UserSelect<ExtArgs> | null
|
|
28840
|
+
/**
|
|
28841
|
+
* Choose, which related nodes to fetch as well
|
|
28842
|
+
*/
|
|
28843
|
+
include?: UserInclude<ExtArgs> | null
|
|
28844
|
+
where?: UserWhereInput
|
|
28845
|
+
}
|
|
28846
|
+
|
|
28807
28847
|
/**
|
|
28808
28848
|
* Proposal.clientInterviews
|
|
28809
28849
|
*/
|
|
@@ -32744,6 +32784,7 @@ export namespace Prisma {
|
|
|
32744
32784
|
rescheduledInterviews?: boolean | User$rescheduledInterviewsArgs<ExtArgs>
|
|
32745
32785
|
clientInterviews?: boolean | User$clientInterviewsArgs<ExtArgs>
|
|
32746
32786
|
builderInterviews?: boolean | User$builderInterviewsArgs<ExtArgs>
|
|
32787
|
+
proposalsAsTeamAdvisor?: boolean | User$proposalsAsTeamAdvisorArgs<ExtArgs>
|
|
32747
32788
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
32748
32789
|
}, ExtArgs["result"]["user"]>
|
|
32749
32790
|
|
|
@@ -32788,6 +32829,7 @@ export namespace Prisma {
|
|
|
32788
32829
|
rescheduledInterviews?: boolean | User$rescheduledInterviewsArgs<ExtArgs>
|
|
32789
32830
|
clientInterviews?: boolean | User$clientInterviewsArgs<ExtArgs>
|
|
32790
32831
|
builderInterviews?: boolean | User$builderInterviewsArgs<ExtArgs>
|
|
32832
|
+
proposalsAsTeamAdvisor?: boolean | User$proposalsAsTeamAdvisorArgs<ExtArgs>
|
|
32791
32833
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
32792
32834
|
}
|
|
32793
32835
|
|
|
@@ -32812,6 +32854,7 @@ export namespace Prisma {
|
|
|
32812
32854
|
rescheduledInterviews: Prisma.$CalendarEventPayload<ExtArgs>[]
|
|
32813
32855
|
clientInterviews: Prisma.$ClientInterviewPayload<ExtArgs>[]
|
|
32814
32856
|
builderInterviews: Prisma.$ClientInterviewPayload<ExtArgs>[]
|
|
32857
|
+
proposalsAsTeamAdvisor: Prisma.$ProposalPayload<ExtArgs>[]
|
|
32815
32858
|
}
|
|
32816
32859
|
scalars: $Extensions.GetPayloadResult<{
|
|
32817
32860
|
id: string
|
|
@@ -33225,6 +33268,7 @@ export namespace Prisma {
|
|
|
33225
33268
|
rescheduledInterviews<T extends User$rescheduledInterviewsArgs<ExtArgs> = {}>(args?: Subset<T, User$rescheduledInterviewsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CalendarEventPayload<ExtArgs>, T, "findMany"> | Null>
|
|
33226
33269
|
clientInterviews<T extends User$clientInterviewsArgs<ExtArgs> = {}>(args?: Subset<T, User$clientInterviewsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ClientInterviewPayload<ExtArgs>, T, "findMany"> | Null>
|
|
33227
33270
|
builderInterviews<T extends User$builderInterviewsArgs<ExtArgs> = {}>(args?: Subset<T, User$builderInterviewsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ClientInterviewPayload<ExtArgs>, T, "findMany"> | Null>
|
|
33271
|
+
proposalsAsTeamAdvisor<T extends User$proposalsAsTeamAdvisorArgs<ExtArgs> = {}>(args?: Subset<T, User$proposalsAsTeamAdvisorArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProposalPayload<ExtArgs>, T, "findMany"> | Null>
|
|
33228
33272
|
/**
|
|
33229
33273
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
33230
33274
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -33947,6 +33991,26 @@ export namespace Prisma {
|
|
|
33947
33991
|
distinct?: ClientInterviewScalarFieldEnum | ClientInterviewScalarFieldEnum[]
|
|
33948
33992
|
}
|
|
33949
33993
|
|
|
33994
|
+
/**
|
|
33995
|
+
* User.proposalsAsTeamAdvisor
|
|
33996
|
+
*/
|
|
33997
|
+
export type User$proposalsAsTeamAdvisorArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33998
|
+
/**
|
|
33999
|
+
* Select specific fields to fetch from the Proposal
|
|
34000
|
+
*/
|
|
34001
|
+
select?: ProposalSelect<ExtArgs> | null
|
|
34002
|
+
/**
|
|
34003
|
+
* Choose, which related nodes to fetch as well
|
|
34004
|
+
*/
|
|
34005
|
+
include?: ProposalInclude<ExtArgs> | null
|
|
34006
|
+
where?: ProposalWhereInput
|
|
34007
|
+
orderBy?: ProposalOrderByWithRelationInput | ProposalOrderByWithRelationInput[]
|
|
34008
|
+
cursor?: ProposalWhereUniqueInput
|
|
34009
|
+
take?: number
|
|
34010
|
+
skip?: number
|
|
34011
|
+
distinct?: ProposalScalarFieldEnum | ProposalScalarFieldEnum[]
|
|
34012
|
+
}
|
|
34013
|
+
|
|
33950
34014
|
/**
|
|
33951
34015
|
* User without action
|
|
33952
34016
|
*/
|
|
@@ -36352,7 +36416,8 @@ export namespace Prisma {
|
|
|
36352
36416
|
teamProposal: 'teamProposal',
|
|
36353
36417
|
name: 'name',
|
|
36354
36418
|
slug: 'slug',
|
|
36355
|
-
teamBlurb: 'teamBlurb'
|
|
36419
|
+
teamBlurb: 'teamBlurb',
|
|
36420
|
+
teamAdvisorId: 'teamAdvisorId'
|
|
36356
36421
|
};
|
|
36357
36422
|
|
|
36358
36423
|
export type ProposalScalarFieldEnum = (typeof ProposalScalarFieldEnum)[keyof typeof ProposalScalarFieldEnum]
|
|
@@ -38879,10 +38944,12 @@ export namespace Prisma {
|
|
|
38879
38944
|
name?: StringNullableFilter<"Proposal"> | string | null
|
|
38880
38945
|
slug?: StringNullableFilter<"Proposal"> | string | null
|
|
38881
38946
|
teamBlurb?: StringNullableFilter<"Proposal"> | string | null
|
|
38947
|
+
teamAdvisorId?: StringNullableFilter<"Proposal"> | string | null
|
|
38882
38948
|
createdBy?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
38883
38949
|
mission?: XOR<MissionNullableRelationFilter, MissionWhereInput> | null
|
|
38884
38950
|
sharedBy?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
38885
38951
|
missionSpec?: XOR<MissionSpecNullableRelationFilter, MissionSpecWhereInput> | null
|
|
38952
|
+
teamAdvisor?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
38886
38953
|
clientInterviews?: ClientInterviewListRelationFilter
|
|
38887
38954
|
}
|
|
38888
38955
|
|
|
@@ -38916,10 +38983,12 @@ export namespace Prisma {
|
|
|
38916
38983
|
name?: SortOrder
|
|
38917
38984
|
slug?: SortOrder
|
|
38918
38985
|
teamBlurb?: SortOrder
|
|
38986
|
+
teamAdvisorId?: SortOrder
|
|
38919
38987
|
createdBy?: UserOrderByWithRelationInput
|
|
38920
38988
|
mission?: MissionOrderByWithRelationInput
|
|
38921
38989
|
sharedBy?: UserOrderByWithRelationInput
|
|
38922
38990
|
missionSpec?: MissionSpecOrderByWithRelationInput
|
|
38991
|
+
teamAdvisor?: UserOrderByWithRelationInput
|
|
38923
38992
|
clientInterviews?: ClientInterviewOrderByRelationAggregateInput
|
|
38924
38993
|
}
|
|
38925
38994
|
|
|
@@ -38956,10 +39025,12 @@ export namespace Prisma {
|
|
|
38956
39025
|
name?: StringNullableFilter<"Proposal"> | string | null
|
|
38957
39026
|
slug?: StringNullableFilter<"Proposal"> | string | null
|
|
38958
39027
|
teamBlurb?: StringNullableFilter<"Proposal"> | string | null
|
|
39028
|
+
teamAdvisorId?: StringNullableFilter<"Proposal"> | string | null
|
|
38959
39029
|
createdBy?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
38960
39030
|
mission?: XOR<MissionNullableRelationFilter, MissionWhereInput> | null
|
|
38961
39031
|
sharedBy?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
38962
39032
|
missionSpec?: XOR<MissionSpecNullableRelationFilter, MissionSpecWhereInput> | null
|
|
39033
|
+
teamAdvisor?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
38963
39034
|
clientInterviews?: ClientInterviewListRelationFilter
|
|
38964
39035
|
}, "id">
|
|
38965
39036
|
|
|
@@ -38989,6 +39060,7 @@ export namespace Prisma {
|
|
|
38989
39060
|
name?: SortOrder
|
|
38990
39061
|
slug?: SortOrder
|
|
38991
39062
|
teamBlurb?: SortOrder
|
|
39063
|
+
teamAdvisorId?: SortOrder
|
|
38992
39064
|
_count?: ProposalCountOrderByAggregateInput
|
|
38993
39065
|
_avg?: ProposalAvgOrderByAggregateInput
|
|
38994
39066
|
_max?: ProposalMaxOrderByAggregateInput
|
|
@@ -39025,6 +39097,7 @@ export namespace Prisma {
|
|
|
39025
39097
|
name?: StringNullableWithAggregatesFilter<"Proposal"> | string | null
|
|
39026
39098
|
slug?: StringNullableWithAggregatesFilter<"Proposal"> | string | null
|
|
39027
39099
|
teamBlurb?: StringNullableWithAggregatesFilter<"Proposal"> | string | null
|
|
39100
|
+
teamAdvisorId?: StringNullableWithAggregatesFilter<"Proposal"> | string | null
|
|
39028
39101
|
}
|
|
39029
39102
|
|
|
39030
39103
|
export type RoleCategoryWhereInput = {
|
|
@@ -39299,6 +39372,7 @@ export namespace Prisma {
|
|
|
39299
39372
|
rescheduledInterviews?: CalendarEventListRelationFilter
|
|
39300
39373
|
clientInterviews?: ClientInterviewListRelationFilter
|
|
39301
39374
|
builderInterviews?: ClientInterviewListRelationFilter
|
|
39375
|
+
proposalsAsTeamAdvisor?: ProposalListRelationFilter
|
|
39302
39376
|
}
|
|
39303
39377
|
|
|
39304
39378
|
export type UserOrderByWithRelationInput = {
|
|
@@ -39349,6 +39423,7 @@ export namespace Prisma {
|
|
|
39349
39423
|
rescheduledInterviews?: CalendarEventOrderByRelationAggregateInput
|
|
39350
39424
|
clientInterviews?: ClientInterviewOrderByRelationAggregateInput
|
|
39351
39425
|
builderInterviews?: ClientInterviewOrderByRelationAggregateInput
|
|
39426
|
+
proposalsAsTeamAdvisor?: ProposalOrderByRelationAggregateInput
|
|
39352
39427
|
}
|
|
39353
39428
|
|
|
39354
39429
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -39402,6 +39477,7 @@ export namespace Prisma {
|
|
|
39402
39477
|
rescheduledInterviews?: CalendarEventListRelationFilter
|
|
39403
39478
|
clientInterviews?: ClientInterviewListRelationFilter
|
|
39404
39479
|
builderInterviews?: ClientInterviewListRelationFilter
|
|
39480
|
+
proposalsAsTeamAdvisor?: ProposalListRelationFilter
|
|
39405
39481
|
}, "id" | "username" | "email">
|
|
39406
39482
|
|
|
39407
39483
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -41798,6 +41874,7 @@ export namespace Prisma {
|
|
|
41798
41874
|
mission?: MissionCreateNestedOneWithoutProposalsInput
|
|
41799
41875
|
sharedBy?: UserCreateNestedOneWithoutSharedProposalsInput
|
|
41800
41876
|
missionSpec?: MissionSpecCreateNestedOneWithoutProposalsInput
|
|
41877
|
+
teamAdvisor?: UserCreateNestedOneWithoutProposalsAsTeamAdvisorInput
|
|
41801
41878
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutProposalInput
|
|
41802
41879
|
}
|
|
41803
41880
|
|
|
@@ -41831,6 +41908,7 @@ export namespace Prisma {
|
|
|
41831
41908
|
name?: string | null
|
|
41832
41909
|
slug?: string | null
|
|
41833
41910
|
teamBlurb?: string | null
|
|
41911
|
+
teamAdvisorId?: string | null
|
|
41834
41912
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutProposalInput
|
|
41835
41913
|
}
|
|
41836
41914
|
|
|
@@ -41863,6 +41941,7 @@ export namespace Prisma {
|
|
|
41863
41941
|
mission?: MissionUpdateOneWithoutProposalsNestedInput
|
|
41864
41942
|
sharedBy?: UserUpdateOneWithoutSharedProposalsNestedInput
|
|
41865
41943
|
missionSpec?: MissionSpecUpdateOneWithoutProposalsNestedInput
|
|
41944
|
+
teamAdvisor?: UserUpdateOneWithoutProposalsAsTeamAdvisorNestedInput
|
|
41866
41945
|
clientInterviews?: ClientInterviewUpdateManyWithoutProposalNestedInput
|
|
41867
41946
|
}
|
|
41868
41947
|
|
|
@@ -41895,6 +41974,7 @@ export namespace Prisma {
|
|
|
41895
41974
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41896
41975
|
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41897
41976
|
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41977
|
+
teamAdvisorId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41898
41978
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutProposalNestedInput
|
|
41899
41979
|
}
|
|
41900
41980
|
|
|
@@ -41928,6 +42008,7 @@ export namespace Prisma {
|
|
|
41928
42008
|
name?: string | null
|
|
41929
42009
|
slug?: string | null
|
|
41930
42010
|
teamBlurb?: string | null
|
|
42011
|
+
teamAdvisorId?: string | null
|
|
41931
42012
|
}
|
|
41932
42013
|
|
|
41933
42014
|
export type ProposalUpdateManyMutationInput = {
|
|
@@ -41986,6 +42067,7 @@ export namespace Prisma {
|
|
|
41986
42067
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41987
42068
|
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41988
42069
|
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42070
|
+
teamAdvisorId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41989
42071
|
}
|
|
41990
42072
|
|
|
41991
42073
|
export type RoleCategoryCreateInput = {
|
|
@@ -42265,6 +42347,7 @@ export namespace Prisma {
|
|
|
42265
42347
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
42266
42348
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
42267
42349
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
42350
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
42268
42351
|
}
|
|
42269
42352
|
|
|
42270
42353
|
export type UserUncheckedCreateInput = {
|
|
@@ -42315,6 +42398,7 @@ export namespace Prisma {
|
|
|
42315
42398
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
42316
42399
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
42317
42400
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
42401
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
42318
42402
|
}
|
|
42319
42403
|
|
|
42320
42404
|
export type UserUpdateInput = {
|
|
@@ -42364,6 +42448,7 @@ export namespace Prisma {
|
|
|
42364
42448
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
42365
42449
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
42366
42450
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
42451
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
42367
42452
|
}
|
|
42368
42453
|
|
|
42369
42454
|
export type UserUncheckedUpdateInput = {
|
|
@@ -42413,6 +42498,7 @@ export namespace Prisma {
|
|
|
42413
42498
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
42414
42499
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
42415
42500
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
42501
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
42416
42502
|
}
|
|
42417
42503
|
|
|
42418
42504
|
export type UserCreateManyInput = {
|
|
@@ -45153,6 +45239,7 @@ export namespace Prisma {
|
|
|
45153
45239
|
name?: SortOrder
|
|
45154
45240
|
slug?: SortOrder
|
|
45155
45241
|
teamBlurb?: SortOrder
|
|
45242
|
+
teamAdvisorId?: SortOrder
|
|
45156
45243
|
}
|
|
45157
45244
|
|
|
45158
45245
|
export type ProposalAvgOrderByAggregateInput = {
|
|
@@ -45184,6 +45271,7 @@ export namespace Prisma {
|
|
|
45184
45271
|
name?: SortOrder
|
|
45185
45272
|
slug?: SortOrder
|
|
45186
45273
|
teamBlurb?: SortOrder
|
|
45274
|
+
teamAdvisorId?: SortOrder
|
|
45187
45275
|
}
|
|
45188
45276
|
|
|
45189
45277
|
export type ProposalMinOrderByAggregateInput = {
|
|
@@ -45211,6 +45299,7 @@ export namespace Prisma {
|
|
|
45211
45299
|
name?: SortOrder
|
|
45212
45300
|
slug?: SortOrder
|
|
45213
45301
|
teamBlurb?: SortOrder
|
|
45302
|
+
teamAdvisorId?: SortOrder
|
|
45214
45303
|
}
|
|
45215
45304
|
|
|
45216
45305
|
export type ProposalSumOrderByAggregateInput = {
|
|
@@ -48063,6 +48152,12 @@ export namespace Prisma {
|
|
|
48063
48152
|
connect?: MissionSpecWhereUniqueInput
|
|
48064
48153
|
}
|
|
48065
48154
|
|
|
48155
|
+
export type UserCreateNestedOneWithoutProposalsAsTeamAdvisorInput = {
|
|
48156
|
+
create?: XOR<UserCreateWithoutProposalsAsTeamAdvisorInput, UserUncheckedCreateWithoutProposalsAsTeamAdvisorInput>
|
|
48157
|
+
connectOrCreate?: UserCreateOrConnectWithoutProposalsAsTeamAdvisorInput
|
|
48158
|
+
connect?: UserWhereUniqueInput
|
|
48159
|
+
}
|
|
48160
|
+
|
|
48066
48161
|
export type ClientInterviewCreateNestedManyWithoutProposalInput = {
|
|
48067
48162
|
create?: XOR<ClientInterviewCreateWithoutProposalInput, ClientInterviewUncheckedCreateWithoutProposalInput> | ClientInterviewCreateWithoutProposalInput[] | ClientInterviewUncheckedCreateWithoutProposalInput[]
|
|
48068
48163
|
connectOrCreate?: ClientInterviewCreateOrConnectWithoutProposalInput | ClientInterviewCreateOrConnectWithoutProposalInput[]
|
|
@@ -48157,6 +48252,16 @@ export namespace Prisma {
|
|
|
48157
48252
|
update?: XOR<XOR<MissionSpecUpdateToOneWithWhereWithoutProposalsInput, MissionSpecUpdateWithoutProposalsInput>, MissionSpecUncheckedUpdateWithoutProposalsInput>
|
|
48158
48253
|
}
|
|
48159
48254
|
|
|
48255
|
+
export type UserUpdateOneWithoutProposalsAsTeamAdvisorNestedInput = {
|
|
48256
|
+
create?: XOR<UserCreateWithoutProposalsAsTeamAdvisorInput, UserUncheckedCreateWithoutProposalsAsTeamAdvisorInput>
|
|
48257
|
+
connectOrCreate?: UserCreateOrConnectWithoutProposalsAsTeamAdvisorInput
|
|
48258
|
+
upsert?: UserUpsertWithoutProposalsAsTeamAdvisorInput
|
|
48259
|
+
disconnect?: boolean
|
|
48260
|
+
delete?: UserWhereInput | boolean
|
|
48261
|
+
connect?: UserWhereUniqueInput
|
|
48262
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutProposalsAsTeamAdvisorInput, UserUpdateWithoutProposalsAsTeamAdvisorInput>, UserUncheckedUpdateWithoutProposalsAsTeamAdvisorInput>
|
|
48263
|
+
}
|
|
48264
|
+
|
|
48160
48265
|
export type ClientInterviewUpdateManyWithoutProposalNestedInput = {
|
|
48161
48266
|
create?: XOR<ClientInterviewCreateWithoutProposalInput, ClientInterviewUncheckedCreateWithoutProposalInput> | ClientInterviewCreateWithoutProposalInput[] | ClientInterviewUncheckedCreateWithoutProposalInput[]
|
|
48162
48267
|
connectOrCreate?: ClientInterviewCreateOrConnectWithoutProposalInput | ClientInterviewCreateOrConnectWithoutProposalInput[]
|
|
@@ -48477,6 +48582,13 @@ export namespace Prisma {
|
|
|
48477
48582
|
connect?: ClientInterviewWhereUniqueInput | ClientInterviewWhereUniqueInput[]
|
|
48478
48583
|
}
|
|
48479
48584
|
|
|
48585
|
+
export type ProposalCreateNestedManyWithoutTeamAdvisorInput = {
|
|
48586
|
+
create?: XOR<ProposalCreateWithoutTeamAdvisorInput, ProposalUncheckedCreateWithoutTeamAdvisorInput> | ProposalCreateWithoutTeamAdvisorInput[] | ProposalUncheckedCreateWithoutTeamAdvisorInput[]
|
|
48587
|
+
connectOrCreate?: ProposalCreateOrConnectWithoutTeamAdvisorInput | ProposalCreateOrConnectWithoutTeamAdvisorInput[]
|
|
48588
|
+
createMany?: ProposalCreateManyTeamAdvisorInputEnvelope
|
|
48589
|
+
connect?: ProposalWhereUniqueInput | ProposalWhereUniqueInput[]
|
|
48590
|
+
}
|
|
48591
|
+
|
|
48480
48592
|
export type MissionUncheckedCreateNestedManyWithoutCreatorModelInput = {
|
|
48481
48593
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
48482
48594
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -48601,6 +48713,13 @@ export namespace Prisma {
|
|
|
48601
48713
|
connect?: ClientInterviewWhereUniqueInput | ClientInterviewWhereUniqueInput[]
|
|
48602
48714
|
}
|
|
48603
48715
|
|
|
48716
|
+
export type ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput = {
|
|
48717
|
+
create?: XOR<ProposalCreateWithoutTeamAdvisorInput, ProposalUncheckedCreateWithoutTeamAdvisorInput> | ProposalCreateWithoutTeamAdvisorInput[] | ProposalUncheckedCreateWithoutTeamAdvisorInput[]
|
|
48718
|
+
connectOrCreate?: ProposalCreateOrConnectWithoutTeamAdvisorInput | ProposalCreateOrConnectWithoutTeamAdvisorInput[]
|
|
48719
|
+
createMany?: ProposalCreateManyTeamAdvisorInputEnvelope
|
|
48720
|
+
connect?: ProposalWhereUniqueInput | ProposalWhereUniqueInput[]
|
|
48721
|
+
}
|
|
48722
|
+
|
|
48604
48723
|
export type EnumUserStatusFieldUpdateOperationsInput = {
|
|
48605
48724
|
set?: $Enums.UserStatus
|
|
48606
48725
|
}
|
|
@@ -48930,6 +49049,20 @@ export namespace Prisma {
|
|
|
48930
49049
|
deleteMany?: ClientInterviewScalarWhereInput | ClientInterviewScalarWhereInput[]
|
|
48931
49050
|
}
|
|
48932
49051
|
|
|
49052
|
+
export type ProposalUpdateManyWithoutTeamAdvisorNestedInput = {
|
|
49053
|
+
create?: XOR<ProposalCreateWithoutTeamAdvisorInput, ProposalUncheckedCreateWithoutTeamAdvisorInput> | ProposalCreateWithoutTeamAdvisorInput[] | ProposalUncheckedCreateWithoutTeamAdvisorInput[]
|
|
49054
|
+
connectOrCreate?: ProposalCreateOrConnectWithoutTeamAdvisorInput | ProposalCreateOrConnectWithoutTeamAdvisorInput[]
|
|
49055
|
+
upsert?: ProposalUpsertWithWhereUniqueWithoutTeamAdvisorInput | ProposalUpsertWithWhereUniqueWithoutTeamAdvisorInput[]
|
|
49056
|
+
createMany?: ProposalCreateManyTeamAdvisorInputEnvelope
|
|
49057
|
+
set?: ProposalWhereUniqueInput | ProposalWhereUniqueInput[]
|
|
49058
|
+
disconnect?: ProposalWhereUniqueInput | ProposalWhereUniqueInput[]
|
|
49059
|
+
delete?: ProposalWhereUniqueInput | ProposalWhereUniqueInput[]
|
|
49060
|
+
connect?: ProposalWhereUniqueInput | ProposalWhereUniqueInput[]
|
|
49061
|
+
update?: ProposalUpdateWithWhereUniqueWithoutTeamAdvisorInput | ProposalUpdateWithWhereUniqueWithoutTeamAdvisorInput[]
|
|
49062
|
+
updateMany?: ProposalUpdateManyWithWhereWithoutTeamAdvisorInput | ProposalUpdateManyWithWhereWithoutTeamAdvisorInput[]
|
|
49063
|
+
deleteMany?: ProposalScalarWhereInput | ProposalScalarWhereInput[]
|
|
49064
|
+
}
|
|
49065
|
+
|
|
48933
49066
|
export type MissionUncheckedUpdateManyWithoutCreatorModelNestedInput = {
|
|
48934
49067
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
48935
49068
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -49174,6 +49307,20 @@ export namespace Prisma {
|
|
|
49174
49307
|
deleteMany?: ClientInterviewScalarWhereInput | ClientInterviewScalarWhereInput[]
|
|
49175
49308
|
}
|
|
49176
49309
|
|
|
49310
|
+
export type ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput = {
|
|
49311
|
+
create?: XOR<ProposalCreateWithoutTeamAdvisorInput, ProposalUncheckedCreateWithoutTeamAdvisorInput> | ProposalCreateWithoutTeamAdvisorInput[] | ProposalUncheckedCreateWithoutTeamAdvisorInput[]
|
|
49312
|
+
connectOrCreate?: ProposalCreateOrConnectWithoutTeamAdvisorInput | ProposalCreateOrConnectWithoutTeamAdvisorInput[]
|
|
49313
|
+
upsert?: ProposalUpsertWithWhereUniqueWithoutTeamAdvisorInput | ProposalUpsertWithWhereUniqueWithoutTeamAdvisorInput[]
|
|
49314
|
+
createMany?: ProposalCreateManyTeamAdvisorInputEnvelope
|
|
49315
|
+
set?: ProposalWhereUniqueInput | ProposalWhereUniqueInput[]
|
|
49316
|
+
disconnect?: ProposalWhereUniqueInput | ProposalWhereUniqueInput[]
|
|
49317
|
+
delete?: ProposalWhereUniqueInput | ProposalWhereUniqueInput[]
|
|
49318
|
+
connect?: ProposalWhereUniqueInput | ProposalWhereUniqueInput[]
|
|
49319
|
+
update?: ProposalUpdateWithWhereUniqueWithoutTeamAdvisorInput | ProposalUpdateWithWhereUniqueWithoutTeamAdvisorInput[]
|
|
49320
|
+
updateMany?: ProposalUpdateManyWithWhereWithoutTeamAdvisorInput | ProposalUpdateManyWithWhereWithoutTeamAdvisorInput[]
|
|
49321
|
+
deleteMany?: ProposalScalarWhereInput | ProposalScalarWhereInput[]
|
|
49322
|
+
}
|
|
49323
|
+
|
|
49177
49324
|
export type PreferencesCreateEnvelopeInput = {
|
|
49178
49325
|
set?: PreferencesCreateInput
|
|
49179
49326
|
}
|
|
@@ -51714,6 +51861,7 @@ export namespace Prisma {
|
|
|
51714
51861
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
51715
51862
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
51716
51863
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
51864
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
51717
51865
|
}
|
|
51718
51866
|
|
|
51719
51867
|
export type UserUncheckedCreateWithoutCalendarInput = {
|
|
@@ -51763,6 +51911,7 @@ export namespace Prisma {
|
|
|
51763
51911
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
51764
51912
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
51765
51913
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
51914
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
51766
51915
|
}
|
|
51767
51916
|
|
|
51768
51917
|
export type UserCreateOrConnectWithoutCalendarInput = {
|
|
@@ -51883,6 +52032,7 @@ export namespace Prisma {
|
|
|
51883
52032
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
51884
52033
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
51885
52034
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
52035
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
51886
52036
|
}
|
|
51887
52037
|
|
|
51888
52038
|
export type UserUncheckedUpdateWithoutCalendarInput = {
|
|
@@ -51931,6 +52081,7 @@ export namespace Prisma {
|
|
|
51931
52081
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
51932
52082
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
51933
52083
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
52084
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
51934
52085
|
}
|
|
51935
52086
|
|
|
51936
52087
|
export type CalendarEventUpsertWithWhereUniqueWithoutCalendarInput = {
|
|
@@ -52017,6 +52168,7 @@ export namespace Prisma {
|
|
|
52017
52168
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
52018
52169
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
52019
52170
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
52171
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
52020
52172
|
}
|
|
52021
52173
|
|
|
52022
52174
|
export type UserUncheckedCreateWithoutCalendarAvailabilityInput = {
|
|
@@ -52066,6 +52218,7 @@ export namespace Prisma {
|
|
|
52066
52218
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
52067
52219
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
52068
52220
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
52221
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
52069
52222
|
}
|
|
52070
52223
|
|
|
52071
52224
|
export type UserCreateOrConnectWithoutCalendarAvailabilityInput = {
|
|
@@ -52165,6 +52318,7 @@ export namespace Prisma {
|
|
|
52165
52318
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
52166
52319
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
52167
52320
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
52321
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
52168
52322
|
}
|
|
52169
52323
|
|
|
52170
52324
|
export type UserUncheckedUpdateWithoutCalendarAvailabilityInput = {
|
|
@@ -52213,6 +52367,7 @@ export namespace Prisma {
|
|
|
52213
52367
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
52214
52368
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
52215
52369
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
52370
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
52216
52371
|
}
|
|
52217
52372
|
|
|
52218
52373
|
export type CalendarEventTypeUpsertWithoutAvailabilitiesInput = {
|
|
@@ -52301,6 +52456,7 @@ export namespace Prisma {
|
|
|
52301
52456
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
52302
52457
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
52303
52458
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
52459
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
52304
52460
|
}
|
|
52305
52461
|
|
|
52306
52462
|
export type UserUncheckedCreateWithoutInterviewsInput = {
|
|
@@ -52350,6 +52506,7 @@ export namespace Prisma {
|
|
|
52350
52506
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
52351
52507
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
52352
52508
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
52509
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
52353
52510
|
}
|
|
52354
52511
|
|
|
52355
52512
|
export type UserCreateOrConnectWithoutInterviewsInput = {
|
|
@@ -52464,6 +52621,7 @@ export namespace Prisma {
|
|
|
52464
52621
|
preferences?: UserPreferenceCreateNestedOneWithoutUserInput
|
|
52465
52622
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
52466
52623
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
52624
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
52467
52625
|
}
|
|
52468
52626
|
|
|
52469
52627
|
export type UserUncheckedCreateWithoutRescheduledInterviewsInput = {
|
|
@@ -52513,6 +52671,7 @@ export namespace Prisma {
|
|
|
52513
52671
|
preferences?: UserPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
52514
52672
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
52515
52673
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
52674
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
52516
52675
|
}
|
|
52517
52676
|
|
|
52518
52677
|
export type UserCreateOrConnectWithoutRescheduledInterviewsInput = {
|
|
@@ -52586,6 +52745,7 @@ export namespace Prisma {
|
|
|
52586
52745
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
52587
52746
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
52588
52747
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
52748
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
52589
52749
|
}
|
|
52590
52750
|
|
|
52591
52751
|
export type UserUncheckedUpdateWithoutInterviewsInput = {
|
|
@@ -52634,6 +52794,7 @@ export namespace Prisma {
|
|
|
52634
52794
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
52635
52795
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
52636
52796
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
52797
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
52637
52798
|
}
|
|
52638
52799
|
|
|
52639
52800
|
export type CalendarUpsertWithoutEventsInput = {
|
|
@@ -52761,6 +52922,7 @@ export namespace Prisma {
|
|
|
52761
52922
|
preferences?: UserPreferenceUpdateOneWithoutUserNestedInput
|
|
52762
52923
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
52763
52924
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
52925
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
52764
52926
|
}
|
|
52765
52927
|
|
|
52766
52928
|
export type UserUncheckedUpdateWithoutRescheduledInterviewsInput = {
|
|
@@ -52809,6 +52971,7 @@ export namespace Prisma {
|
|
|
52809
52971
|
preferences?: UserPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
52810
52972
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
52811
52973
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
52974
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
52812
52975
|
}
|
|
52813
52976
|
|
|
52814
52977
|
export type CalendarEventCreateWithoutEventTypeInput = {
|
|
@@ -53244,6 +53407,7 @@ export namespace Prisma {
|
|
|
53244
53407
|
preferences?: UserPreferenceCreateNestedOneWithoutUserInput
|
|
53245
53408
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
53246
53409
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
53410
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
53247
53411
|
}
|
|
53248
53412
|
|
|
53249
53413
|
export type UserUncheckedCreateWithoutClientInterviewsInput = {
|
|
@@ -53293,6 +53457,7 @@ export namespace Prisma {
|
|
|
53293
53457
|
preferences?: UserPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
53294
53458
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
53295
53459
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
53460
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
53296
53461
|
}
|
|
53297
53462
|
|
|
53298
53463
|
export type UserCreateOrConnectWithoutClientInterviewsInput = {
|
|
@@ -53347,6 +53512,7 @@ export namespace Prisma {
|
|
|
53347
53512
|
preferences?: UserPreferenceCreateNestedOneWithoutUserInput
|
|
53348
53513
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
53349
53514
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
53515
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
53350
53516
|
}
|
|
53351
53517
|
|
|
53352
53518
|
export type UserUncheckedCreateWithoutBuilderInterviewsInput = {
|
|
@@ -53396,6 +53562,7 @@ export namespace Prisma {
|
|
|
53396
53562
|
preferences?: UserPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
53397
53563
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
53398
53564
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
53565
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
53399
53566
|
}
|
|
53400
53567
|
|
|
53401
53568
|
export type UserCreateOrConnectWithoutBuilderInterviewsInput = {
|
|
@@ -53433,6 +53600,7 @@ export namespace Prisma {
|
|
|
53433
53600
|
mission?: MissionCreateNestedOneWithoutProposalsInput
|
|
53434
53601
|
sharedBy?: UserCreateNestedOneWithoutSharedProposalsInput
|
|
53435
53602
|
missionSpec?: MissionSpecCreateNestedOneWithoutProposalsInput
|
|
53603
|
+
teamAdvisor?: UserCreateNestedOneWithoutProposalsAsTeamAdvisorInput
|
|
53436
53604
|
}
|
|
53437
53605
|
|
|
53438
53606
|
export type ProposalUncheckedCreateWithoutClientInterviewsInput = {
|
|
@@ -53465,6 +53633,7 @@ export namespace Prisma {
|
|
|
53465
53633
|
name?: string | null
|
|
53466
53634
|
slug?: string | null
|
|
53467
53635
|
teamBlurb?: string | null
|
|
53636
|
+
teamAdvisorId?: string | null
|
|
53468
53637
|
}
|
|
53469
53638
|
|
|
53470
53639
|
export type ProposalCreateOrConnectWithoutClientInterviewsInput = {
|
|
@@ -53591,6 +53760,7 @@ export namespace Prisma {
|
|
|
53591
53760
|
preferences?: UserPreferenceUpdateOneWithoutUserNestedInput
|
|
53592
53761
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
53593
53762
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
53763
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
53594
53764
|
}
|
|
53595
53765
|
|
|
53596
53766
|
export type UserUncheckedUpdateWithoutClientInterviewsInput = {
|
|
@@ -53639,6 +53809,7 @@ export namespace Prisma {
|
|
|
53639
53809
|
preferences?: UserPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
53640
53810
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
53641
53811
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
53812
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
53642
53813
|
}
|
|
53643
53814
|
|
|
53644
53815
|
export type UserUpsertWithoutBuilderInterviewsInput = {
|
|
@@ -53698,6 +53869,7 @@ export namespace Prisma {
|
|
|
53698
53869
|
preferences?: UserPreferenceUpdateOneWithoutUserNestedInput
|
|
53699
53870
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
53700
53871
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
53872
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
53701
53873
|
}
|
|
53702
53874
|
|
|
53703
53875
|
export type UserUncheckedUpdateWithoutBuilderInterviewsInput = {
|
|
@@ -53746,6 +53918,7 @@ export namespace Prisma {
|
|
|
53746
53918
|
preferences?: UserPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
53747
53919
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
53748
53920
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
53921
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
53749
53922
|
}
|
|
53750
53923
|
|
|
53751
53924
|
export type ProposalUpsertWithoutClientInterviewsInput = {
|
|
@@ -53788,6 +53961,7 @@ export namespace Prisma {
|
|
|
53788
53961
|
mission?: MissionUpdateOneWithoutProposalsNestedInput
|
|
53789
53962
|
sharedBy?: UserUpdateOneWithoutSharedProposalsNestedInput
|
|
53790
53963
|
missionSpec?: MissionSpecUpdateOneWithoutProposalsNestedInput
|
|
53964
|
+
teamAdvisor?: UserUpdateOneWithoutProposalsAsTeamAdvisorNestedInput
|
|
53791
53965
|
}
|
|
53792
53966
|
|
|
53793
53967
|
export type ProposalUncheckedUpdateWithoutClientInterviewsInput = {
|
|
@@ -53819,6 +53993,7 @@ export namespace Prisma {
|
|
|
53819
53993
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53820
53994
|
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53821
53995
|
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53996
|
+
teamAdvisorId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53822
53997
|
}
|
|
53823
53998
|
|
|
53824
53999
|
export type StructuredEnrichmentCreateInput = {
|
|
@@ -54296,6 +54471,7 @@ export namespace Prisma {
|
|
|
54296
54471
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
54297
54472
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
54298
54473
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
54474
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
54299
54475
|
}
|
|
54300
54476
|
|
|
54301
54477
|
export type UserUncheckedCreateWithoutLinkedInRecommendationsInput = {
|
|
@@ -54345,6 +54521,7 @@ export namespace Prisma {
|
|
|
54345
54521
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
54346
54522
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
54347
54523
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
54524
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
54348
54525
|
}
|
|
54349
54526
|
|
|
54350
54527
|
export type UserCreateOrConnectWithoutLinkedInRecommendationsInput = {
|
|
@@ -54422,6 +54599,7 @@ export namespace Prisma {
|
|
|
54422
54599
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
54423
54600
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
54424
54601
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
54602
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
54425
54603
|
}
|
|
54426
54604
|
|
|
54427
54605
|
export type UserUncheckedUpdateWithoutLinkedInRecommendationsInput = {
|
|
@@ -54470,6 +54648,7 @@ export namespace Prisma {
|
|
|
54470
54648
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
54471
54649
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
54472
54650
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
54651
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
54473
54652
|
}
|
|
54474
54653
|
|
|
54475
54654
|
export type MissionRoleAvailabilityCreateInput = {
|
|
@@ -54620,6 +54799,7 @@ export namespace Prisma {
|
|
|
54620
54799
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
54621
54800
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
54622
54801
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
54802
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
54623
54803
|
}
|
|
54624
54804
|
|
|
54625
54805
|
export type UserUncheckedCreateWithoutCreatedMissionsModelsInput = {
|
|
@@ -54669,6 +54849,7 @@ export namespace Prisma {
|
|
|
54669
54849
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
54670
54850
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
54671
54851
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
54852
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
54672
54853
|
}
|
|
54673
54854
|
|
|
54674
54855
|
export type UserCreateOrConnectWithoutCreatedMissionsModelsInput = {
|
|
@@ -54788,6 +54969,7 @@ export namespace Prisma {
|
|
|
54788
54969
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
54789
54970
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
54790
54971
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
54972
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
54791
54973
|
}
|
|
54792
54974
|
|
|
54793
54975
|
export type UserUncheckedCreateWithoutOwnedMissionsModelsInput = {
|
|
@@ -54837,6 +55019,7 @@ export namespace Prisma {
|
|
|
54837
55019
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
54838
55020
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
54839
55021
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
55022
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
54840
55023
|
}
|
|
54841
55024
|
|
|
54842
55025
|
export type UserCreateOrConnectWithoutOwnedMissionsModelsInput = {
|
|
@@ -54916,6 +55099,7 @@ export namespace Prisma {
|
|
|
54916
55099
|
createdBy?: UserCreateNestedOneWithoutAuthoredProposalsInput
|
|
54917
55100
|
sharedBy?: UserCreateNestedOneWithoutSharedProposalsInput
|
|
54918
55101
|
missionSpec?: MissionSpecCreateNestedOneWithoutProposalsInput
|
|
55102
|
+
teamAdvisor?: UserCreateNestedOneWithoutProposalsAsTeamAdvisorInput
|
|
54919
55103
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutProposalInput
|
|
54920
55104
|
}
|
|
54921
55105
|
|
|
@@ -54948,6 +55132,7 @@ export namespace Prisma {
|
|
|
54948
55132
|
name?: string | null
|
|
54949
55133
|
slug?: string | null
|
|
54950
55134
|
teamBlurb?: string | null
|
|
55135
|
+
teamAdvisorId?: string | null
|
|
54951
55136
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutProposalInput
|
|
54952
55137
|
}
|
|
54953
55138
|
|
|
@@ -55153,6 +55338,7 @@ export namespace Prisma {
|
|
|
55153
55338
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
55154
55339
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
55155
55340
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
55341
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
55156
55342
|
}
|
|
55157
55343
|
|
|
55158
55344
|
export type UserUncheckedUpdateWithoutCreatedMissionsModelsInput = {
|
|
@@ -55201,6 +55387,7 @@ export namespace Prisma {
|
|
|
55201
55387
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
55202
55388
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
55203
55389
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
55390
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
55204
55391
|
}
|
|
55205
55392
|
|
|
55206
55393
|
export type MissionSpecUpsertWithoutMissionInput = {
|
|
@@ -55329,6 +55516,7 @@ export namespace Prisma {
|
|
|
55329
55516
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
55330
55517
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
55331
55518
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
55519
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
55332
55520
|
}
|
|
55333
55521
|
|
|
55334
55522
|
export type UserUncheckedUpdateWithoutOwnedMissionsModelsInput = {
|
|
@@ -55377,6 +55565,7 @@ export namespace Prisma {
|
|
|
55377
55565
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
55378
55566
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
55379
55567
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
55568
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
55380
55569
|
}
|
|
55381
55570
|
|
|
55382
55571
|
export type ContractUpsertWithWhereUniqueWithoutMissionInput = {
|
|
@@ -55440,6 +55629,7 @@ export namespace Prisma {
|
|
|
55440
55629
|
name?: StringNullableFilter<"Proposal"> | string | null
|
|
55441
55630
|
slug?: StringNullableFilter<"Proposal"> | string | null
|
|
55442
55631
|
teamBlurb?: StringNullableFilter<"Proposal"> | string | null
|
|
55632
|
+
teamAdvisorId?: StringNullableFilter<"Proposal"> | string | null
|
|
55443
55633
|
}
|
|
55444
55634
|
|
|
55445
55635
|
export type UserReviewUpsertWithWhereUniqueWithoutMissionModelInput = {
|
|
@@ -55543,6 +55733,7 @@ export namespace Prisma {
|
|
|
55543
55733
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
55544
55734
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
55545
55735
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
55736
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
55546
55737
|
}
|
|
55547
55738
|
|
|
55548
55739
|
export type UserUncheckedCreateWithoutMissionApplicationInput = {
|
|
@@ -55592,6 +55783,7 @@ export namespace Prisma {
|
|
|
55592
55783
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
55593
55784
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
55594
55785
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
55786
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
55595
55787
|
}
|
|
55596
55788
|
|
|
55597
55789
|
export type UserCreateOrConnectWithoutMissionApplicationInput = {
|
|
@@ -55713,6 +55905,7 @@ export namespace Prisma {
|
|
|
55713
55905
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
55714
55906
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
55715
55907
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
55908
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
55716
55909
|
}
|
|
55717
55910
|
|
|
55718
55911
|
export type UserUncheckedUpdateWithoutMissionApplicationInput = {
|
|
@@ -55761,6 +55954,7 @@ export namespace Prisma {
|
|
|
55761
55954
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
55762
55955
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
55763
55956
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
55957
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
55764
55958
|
}
|
|
55765
55959
|
|
|
55766
55960
|
export type MissionPrefillRoleCreaterequiredSkillsInput = {
|
|
@@ -55818,6 +56012,7 @@ export namespace Prisma {
|
|
|
55818
56012
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
55819
56013
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
55820
56014
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
56015
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
55821
56016
|
}
|
|
55822
56017
|
|
|
55823
56018
|
export type UserUncheckedCreateWithoutMissionPrefillsInput = {
|
|
@@ -55867,6 +56062,7 @@ export namespace Prisma {
|
|
|
55867
56062
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
55868
56063
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
55869
56064
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
56065
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
55870
56066
|
}
|
|
55871
56067
|
|
|
55872
56068
|
export type UserCreateOrConnectWithoutMissionPrefillsInput = {
|
|
@@ -55940,6 +56136,7 @@ export namespace Prisma {
|
|
|
55940
56136
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
55941
56137
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
55942
56138
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
56139
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
55943
56140
|
}
|
|
55944
56141
|
|
|
55945
56142
|
export type UserUncheckedUpdateWithoutMissionPrefillsInput = {
|
|
@@ -55988,6 +56185,7 @@ export namespace Prisma {
|
|
|
55988
56185
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
55989
56186
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
55990
56187
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
56188
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
55991
56189
|
}
|
|
55992
56190
|
|
|
55993
56191
|
export type ClientRoleQuestionCreateInput = {
|
|
@@ -56101,6 +56299,7 @@ export namespace Prisma {
|
|
|
56101
56299
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
56102
56300
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
56103
56301
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
56302
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
56104
56303
|
}
|
|
56105
56304
|
|
|
56106
56305
|
export type UserUncheckedCreateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -56150,6 +56349,7 @@ export namespace Prisma {
|
|
|
56150
56349
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
56151
56350
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
56152
56351
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
56352
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
56153
56353
|
}
|
|
56154
56354
|
|
|
56155
56355
|
export type UserCreateOrConnectWithoutAuthoredMissionSpecsInput = {
|
|
@@ -56239,6 +56439,7 @@ export namespace Prisma {
|
|
|
56239
56439
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
56240
56440
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
56241
56441
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
56442
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
56242
56443
|
}
|
|
56243
56444
|
|
|
56244
56445
|
export type UserUncheckedCreateWithoutModifiedMissionSpecsInput = {
|
|
@@ -56288,6 +56489,7 @@ export namespace Prisma {
|
|
|
56288
56489
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
56289
56490
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
56290
56491
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
56492
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
56291
56493
|
}
|
|
56292
56494
|
|
|
56293
56495
|
export type UserCreateOrConnectWithoutModifiedMissionSpecsInput = {
|
|
@@ -56431,6 +56633,7 @@ export namespace Prisma {
|
|
|
56431
56633
|
createdBy?: UserCreateNestedOneWithoutAuthoredProposalsInput
|
|
56432
56634
|
mission?: MissionCreateNestedOneWithoutProposalsInput
|
|
56433
56635
|
sharedBy?: UserCreateNestedOneWithoutSharedProposalsInput
|
|
56636
|
+
teamAdvisor?: UserCreateNestedOneWithoutProposalsAsTeamAdvisorInput
|
|
56434
56637
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutProposalInput
|
|
56435
56638
|
}
|
|
56436
56639
|
|
|
@@ -56463,6 +56666,7 @@ export namespace Prisma {
|
|
|
56463
56666
|
name?: string | null
|
|
56464
56667
|
slug?: string | null
|
|
56465
56668
|
teamBlurb?: string | null
|
|
56669
|
+
teamAdvisorId?: string | null
|
|
56466
56670
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutProposalInput
|
|
56467
56671
|
}
|
|
56468
56672
|
|
|
@@ -56608,6 +56812,7 @@ export namespace Prisma {
|
|
|
56608
56812
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
56609
56813
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
56610
56814
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
56815
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
56611
56816
|
}
|
|
56612
56817
|
|
|
56613
56818
|
export type UserUncheckedUpdateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -56656,6 +56861,7 @@ export namespace Prisma {
|
|
|
56656
56861
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
56657
56862
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
56658
56863
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
56864
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
56659
56865
|
}
|
|
56660
56866
|
|
|
56661
56867
|
export type ClientCompanyUpsertWithoutMissionSpecsInput = {
|
|
@@ -56754,6 +56960,7 @@ export namespace Prisma {
|
|
|
56754
56960
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
56755
56961
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
56756
56962
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
56963
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
56757
56964
|
}
|
|
56758
56965
|
|
|
56759
56966
|
export type UserUncheckedUpdateWithoutModifiedMissionSpecsInput = {
|
|
@@ -56802,6 +57009,7 @@ export namespace Prisma {
|
|
|
56802
57009
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
56803
57010
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
56804
57011
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
57012
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
56805
57013
|
}
|
|
56806
57014
|
|
|
56807
57015
|
export type MissionUpsertWithoutMissionSpecInput = {
|
|
@@ -56997,6 +57205,7 @@ export namespace Prisma {
|
|
|
56997
57205
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
56998
57206
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
56999
57207
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
57208
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
57000
57209
|
}
|
|
57001
57210
|
|
|
57002
57211
|
export type UserUncheckedCreateWithoutAuthoredProposalsInput = {
|
|
@@ -57046,6 +57255,7 @@ export namespace Prisma {
|
|
|
57046
57255
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
57047
57256
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
57048
57257
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
57258
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
57049
57259
|
}
|
|
57050
57260
|
|
|
57051
57261
|
export type UserCreateOrConnectWithoutAuthoredProposalsInput = {
|
|
@@ -57207,6 +57417,7 @@ export namespace Prisma {
|
|
|
57207
57417
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
57208
57418
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
57209
57419
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
57420
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
57210
57421
|
}
|
|
57211
57422
|
|
|
57212
57423
|
export type UserUncheckedCreateWithoutSharedProposalsInput = {
|
|
@@ -57256,6 +57467,7 @@ export namespace Prisma {
|
|
|
57256
57467
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
57257
57468
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
57258
57469
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
57470
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
57259
57471
|
}
|
|
57260
57472
|
|
|
57261
57473
|
export type UserCreateOrConnectWithoutSharedProposalsInput = {
|
|
@@ -57328,6 +57540,111 @@ export namespace Prisma {
|
|
|
57328
57540
|
create: XOR<MissionSpecCreateWithoutProposalsInput, MissionSpecUncheckedCreateWithoutProposalsInput>
|
|
57329
57541
|
}
|
|
57330
57542
|
|
|
57543
|
+
export type UserCreateWithoutProposalsAsTeamAdvisorInput = {
|
|
57544
|
+
id?: string
|
|
57545
|
+
firstName?: string | null
|
|
57546
|
+
lastName?: string | null
|
|
57547
|
+
username?: string | null
|
|
57548
|
+
email: string
|
|
57549
|
+
isAdmin?: boolean
|
|
57550
|
+
type: string
|
|
57551
|
+
pictureURL?: string | null
|
|
57552
|
+
status: $Enums.UserStatus
|
|
57553
|
+
createdAt?: Date | string
|
|
57554
|
+
titles?: UserCreatetitlesInput | string[]
|
|
57555
|
+
scrubbed?: string | null
|
|
57556
|
+
tokenVersion: number
|
|
57557
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
57558
|
+
aboutMe?: string | null
|
|
57559
|
+
profileCompleteness?: XOR<ProfileCompletenessObjectNullableCreateEnvelopeInput, ProfileCompletenessObjectCreateInput> | null
|
|
57560
|
+
cvURL?: string | null
|
|
57561
|
+
linkedin?: XOR<LinkedInObjectNullableCreateEnvelopeInput, LinkedInObjectCreateInput> | null
|
|
57562
|
+
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
57563
|
+
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
57564
|
+
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
57565
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
57566
|
+
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
57567
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
57568
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
57569
|
+
yearsExperience?: number | null
|
|
57570
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
57571
|
+
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
57572
|
+
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
57573
|
+
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
57574
|
+
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
57575
|
+
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
57576
|
+
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
57577
|
+
missionPrefills?: MissionPrefillCreateNestedManyWithoutUserInput
|
|
57578
|
+
missionApplication?: MissionApplicationCreateNestedManyWithoutUserModelInput
|
|
57579
|
+
authoredProposals?: ProposalCreateNestedManyWithoutCreatedByInput
|
|
57580
|
+
sharedProposals?: ProposalCreateNestedManyWithoutSharedByInput
|
|
57581
|
+
linkedInRecommendations?: LinkedInRecommendationCreateNestedManyWithoutUserInput
|
|
57582
|
+
givenReviews?: UserReviewCreateNestedManyWithoutFromUserModelInput
|
|
57583
|
+
receivedReviews?: UserReviewCreateNestedManyWithoutToUserModelInput
|
|
57584
|
+
calendar?: CalendarCreateNestedOneWithoutCalendarUserInput
|
|
57585
|
+
interviews?: CalendarEventCreateNestedManyWithoutEventOwnerInput
|
|
57586
|
+
calendarAvailability?: CalendarAvailabilityCreateNestedManyWithoutUserInput
|
|
57587
|
+
preferences?: UserPreferenceCreateNestedOneWithoutUserInput
|
|
57588
|
+
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
57589
|
+
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
57590
|
+
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
57591
|
+
}
|
|
57592
|
+
|
|
57593
|
+
export type UserUncheckedCreateWithoutProposalsAsTeamAdvisorInput = {
|
|
57594
|
+
id?: string
|
|
57595
|
+
firstName?: string | null
|
|
57596
|
+
lastName?: string | null
|
|
57597
|
+
username?: string | null
|
|
57598
|
+
email: string
|
|
57599
|
+
isAdmin?: boolean
|
|
57600
|
+
type: string
|
|
57601
|
+
pictureURL?: string | null
|
|
57602
|
+
status: $Enums.UserStatus
|
|
57603
|
+
createdAt?: Date | string
|
|
57604
|
+
titles?: UserCreatetitlesInput | string[]
|
|
57605
|
+
scrubbed?: string | null
|
|
57606
|
+
tokenVersion: number
|
|
57607
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
57608
|
+
aboutMe?: string | null
|
|
57609
|
+
profileCompleteness?: XOR<ProfileCompletenessObjectNullableCreateEnvelopeInput, ProfileCompletenessObjectCreateInput> | null
|
|
57610
|
+
cvURL?: string | null
|
|
57611
|
+
linkedin?: XOR<LinkedInObjectNullableCreateEnvelopeInput, LinkedInObjectCreateInput> | null
|
|
57612
|
+
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
57613
|
+
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
57614
|
+
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
57615
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
57616
|
+
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
57617
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
57618
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
57619
|
+
yearsExperience?: number | null
|
|
57620
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
57621
|
+
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
57622
|
+
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
57623
|
+
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
57624
|
+
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
57625
|
+
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
57626
|
+
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
57627
|
+
missionPrefills?: MissionPrefillUncheckedCreateNestedManyWithoutUserInput
|
|
57628
|
+
missionApplication?: MissionApplicationUncheckedCreateNestedManyWithoutUserModelInput
|
|
57629
|
+
authoredProposals?: ProposalUncheckedCreateNestedManyWithoutCreatedByInput
|
|
57630
|
+
sharedProposals?: ProposalUncheckedCreateNestedManyWithoutSharedByInput
|
|
57631
|
+
linkedInRecommendations?: LinkedInRecommendationUncheckedCreateNestedManyWithoutUserInput
|
|
57632
|
+
givenReviews?: UserReviewUncheckedCreateNestedManyWithoutFromUserModelInput
|
|
57633
|
+
receivedReviews?: UserReviewUncheckedCreateNestedManyWithoutToUserModelInput
|
|
57634
|
+
calendar?: CalendarUncheckedCreateNestedOneWithoutCalendarUserInput
|
|
57635
|
+
interviews?: CalendarEventUncheckedCreateNestedManyWithoutEventOwnerInput
|
|
57636
|
+
calendarAvailability?: CalendarAvailabilityUncheckedCreateNestedManyWithoutUserInput
|
|
57637
|
+
preferences?: UserPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
57638
|
+
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
57639
|
+
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
57640
|
+
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
57641
|
+
}
|
|
57642
|
+
|
|
57643
|
+
export type UserCreateOrConnectWithoutProposalsAsTeamAdvisorInput = {
|
|
57644
|
+
where: UserWhereUniqueInput
|
|
57645
|
+
create: XOR<UserCreateWithoutProposalsAsTeamAdvisorInput, UserUncheckedCreateWithoutProposalsAsTeamAdvisorInput>
|
|
57646
|
+
}
|
|
57647
|
+
|
|
57331
57648
|
export type ClientInterviewCreateWithoutProposalInput = {
|
|
57332
57649
|
id?: string
|
|
57333
57650
|
createdAt?: Date | string
|
|
@@ -57482,6 +57799,7 @@ export namespace Prisma {
|
|
|
57482
57799
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
57483
57800
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
57484
57801
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
57802
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
57485
57803
|
}
|
|
57486
57804
|
|
|
57487
57805
|
export type UserUncheckedUpdateWithoutAuthoredProposalsInput = {
|
|
@@ -57530,6 +57848,7 @@ export namespace Prisma {
|
|
|
57530
57848
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
57531
57849
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
57532
57850
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
57851
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
57533
57852
|
}
|
|
57534
57853
|
|
|
57535
57854
|
export type MissionUpsertWithoutProposalsInput = {
|
|
@@ -57700,6 +58019,7 @@ export namespace Prisma {
|
|
|
57700
58019
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
57701
58020
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
57702
58021
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
58022
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
57703
58023
|
}
|
|
57704
58024
|
|
|
57705
58025
|
export type UserUncheckedUpdateWithoutSharedProposalsInput = {
|
|
@@ -57748,6 +58068,7 @@ export namespace Prisma {
|
|
|
57748
58068
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
57749
58069
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
57750
58070
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
58071
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
57751
58072
|
}
|
|
57752
58073
|
|
|
57753
58074
|
export type MissionSpecUpsertWithoutProposalsInput = {
|
|
@@ -57819,6 +58140,115 @@ export namespace Prisma {
|
|
|
57819
58140
|
mission?: MissionUncheckedUpdateOneWithoutMissionSpecNestedInput
|
|
57820
58141
|
}
|
|
57821
58142
|
|
|
58143
|
+
export type UserUpsertWithoutProposalsAsTeamAdvisorInput = {
|
|
58144
|
+
update: XOR<UserUpdateWithoutProposalsAsTeamAdvisorInput, UserUncheckedUpdateWithoutProposalsAsTeamAdvisorInput>
|
|
58145
|
+
create: XOR<UserCreateWithoutProposalsAsTeamAdvisorInput, UserUncheckedCreateWithoutProposalsAsTeamAdvisorInput>
|
|
58146
|
+
where?: UserWhereInput
|
|
58147
|
+
}
|
|
58148
|
+
|
|
58149
|
+
export type UserUpdateToOneWithWhereWithoutProposalsAsTeamAdvisorInput = {
|
|
58150
|
+
where?: UserWhereInput
|
|
58151
|
+
data: XOR<UserUpdateWithoutProposalsAsTeamAdvisorInput, UserUncheckedUpdateWithoutProposalsAsTeamAdvisorInput>
|
|
58152
|
+
}
|
|
58153
|
+
|
|
58154
|
+
export type UserUpdateWithoutProposalsAsTeamAdvisorInput = {
|
|
58155
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58156
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58157
|
+
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58158
|
+
email?: StringFieldUpdateOperationsInput | string
|
|
58159
|
+
isAdmin?: BoolFieldUpdateOperationsInput | boolean
|
|
58160
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
58161
|
+
pictureURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58162
|
+
status?: EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
58163
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58164
|
+
titles?: UserUpdatetitlesInput | string[]
|
|
58165
|
+
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58166
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
58167
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
58168
|
+
aboutMe?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58169
|
+
profileCompleteness?: XOR<ProfileCompletenessObjectNullableUpdateEnvelopeInput, ProfileCompletenessObjectCreateInput> | null
|
|
58170
|
+
cvURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58171
|
+
linkedin?: XOR<LinkedInObjectNullableUpdateEnvelopeInput, LinkedInObjectCreateInput> | null
|
|
58172
|
+
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
58173
|
+
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
58174
|
+
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
58175
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
58176
|
+
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
58177
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
58178
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
58179
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
58180
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
58181
|
+
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
58182
|
+
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
58183
|
+
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
58184
|
+
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
58185
|
+
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
58186
|
+
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
58187
|
+
missionPrefills?: MissionPrefillUpdateManyWithoutUserNestedInput
|
|
58188
|
+
missionApplication?: MissionApplicationUpdateManyWithoutUserModelNestedInput
|
|
58189
|
+
authoredProposals?: ProposalUpdateManyWithoutCreatedByNestedInput
|
|
58190
|
+
sharedProposals?: ProposalUpdateManyWithoutSharedByNestedInput
|
|
58191
|
+
linkedInRecommendations?: LinkedInRecommendationUpdateManyWithoutUserNestedInput
|
|
58192
|
+
givenReviews?: UserReviewUpdateManyWithoutFromUserModelNestedInput
|
|
58193
|
+
receivedReviews?: UserReviewUpdateManyWithoutToUserModelNestedInput
|
|
58194
|
+
calendar?: CalendarUpdateOneWithoutCalendarUserNestedInput
|
|
58195
|
+
interviews?: CalendarEventUpdateManyWithoutEventOwnerNestedInput
|
|
58196
|
+
calendarAvailability?: CalendarAvailabilityUpdateManyWithoutUserNestedInput
|
|
58197
|
+
preferences?: UserPreferenceUpdateOneWithoutUserNestedInput
|
|
58198
|
+
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
58199
|
+
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
58200
|
+
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
58201
|
+
}
|
|
58202
|
+
|
|
58203
|
+
export type UserUncheckedUpdateWithoutProposalsAsTeamAdvisorInput = {
|
|
58204
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58205
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58206
|
+
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58207
|
+
email?: StringFieldUpdateOperationsInput | string
|
|
58208
|
+
isAdmin?: BoolFieldUpdateOperationsInput | boolean
|
|
58209
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
58210
|
+
pictureURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58211
|
+
status?: EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
58212
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58213
|
+
titles?: UserUpdatetitlesInput | string[]
|
|
58214
|
+
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58215
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
58216
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
58217
|
+
aboutMe?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58218
|
+
profileCompleteness?: XOR<ProfileCompletenessObjectNullableUpdateEnvelopeInput, ProfileCompletenessObjectCreateInput> | null
|
|
58219
|
+
cvURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58220
|
+
linkedin?: XOR<LinkedInObjectNullableUpdateEnvelopeInput, LinkedInObjectCreateInput> | null
|
|
58221
|
+
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
58222
|
+
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
58223
|
+
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
58224
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
58225
|
+
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
58226
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
58227
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
58228
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
58229
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
58230
|
+
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
58231
|
+
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
58232
|
+
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
58233
|
+
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
58234
|
+
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
58235
|
+
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
58236
|
+
missionPrefills?: MissionPrefillUncheckedUpdateManyWithoutUserNestedInput
|
|
58237
|
+
missionApplication?: MissionApplicationUncheckedUpdateManyWithoutUserModelNestedInput
|
|
58238
|
+
authoredProposals?: ProposalUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
58239
|
+
sharedProposals?: ProposalUncheckedUpdateManyWithoutSharedByNestedInput
|
|
58240
|
+
linkedInRecommendations?: LinkedInRecommendationUncheckedUpdateManyWithoutUserNestedInput
|
|
58241
|
+
givenReviews?: UserReviewUncheckedUpdateManyWithoutFromUserModelNestedInput
|
|
58242
|
+
receivedReviews?: UserReviewUncheckedUpdateManyWithoutToUserModelNestedInput
|
|
58243
|
+
calendar?: CalendarUncheckedUpdateOneWithoutCalendarUserNestedInput
|
|
58244
|
+
interviews?: CalendarEventUncheckedUpdateManyWithoutEventOwnerNestedInput
|
|
58245
|
+
calendarAvailability?: CalendarAvailabilityUncheckedUpdateManyWithoutUserNestedInput
|
|
58246
|
+
preferences?: UserPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
58247
|
+
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
58248
|
+
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
58249
|
+
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
58250
|
+
}
|
|
58251
|
+
|
|
57822
58252
|
export type ClientInterviewUpsertWithWhereUniqueWithoutProposalInput = {
|
|
57823
58253
|
where: ClientInterviewWhereUniqueInput
|
|
57824
58254
|
update: XOR<ClientInterviewUpdateWithoutProposalInput, ClientInterviewUncheckedUpdateWithoutProposalInput>
|
|
@@ -58358,6 +58788,7 @@ export namespace Prisma {
|
|
|
58358
58788
|
mission?: MissionCreateNestedOneWithoutProposalsInput
|
|
58359
58789
|
sharedBy?: UserCreateNestedOneWithoutSharedProposalsInput
|
|
58360
58790
|
missionSpec?: MissionSpecCreateNestedOneWithoutProposalsInput
|
|
58791
|
+
teamAdvisor?: UserCreateNestedOneWithoutProposalsAsTeamAdvisorInput
|
|
58361
58792
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutProposalInput
|
|
58362
58793
|
}
|
|
58363
58794
|
|
|
@@ -58390,6 +58821,7 @@ export namespace Prisma {
|
|
|
58390
58821
|
name?: string | null
|
|
58391
58822
|
slug?: string | null
|
|
58392
58823
|
teamBlurb?: string | null
|
|
58824
|
+
teamAdvisorId?: string | null
|
|
58393
58825
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutProposalInput
|
|
58394
58826
|
}
|
|
58395
58827
|
|
|
@@ -58431,6 +58863,7 @@ export namespace Prisma {
|
|
|
58431
58863
|
createdBy?: UserCreateNestedOneWithoutAuthoredProposalsInput
|
|
58432
58864
|
mission?: MissionCreateNestedOneWithoutProposalsInput
|
|
58433
58865
|
missionSpec?: MissionSpecCreateNestedOneWithoutProposalsInput
|
|
58866
|
+
teamAdvisor?: UserCreateNestedOneWithoutProposalsAsTeamAdvisorInput
|
|
58434
58867
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutProposalInput
|
|
58435
58868
|
}
|
|
58436
58869
|
|
|
@@ -58463,6 +58896,7 @@ export namespace Prisma {
|
|
|
58463
58896
|
name?: string | null
|
|
58464
58897
|
slug?: string | null
|
|
58465
58898
|
teamBlurb?: string | null
|
|
58899
|
+
teamAdvisorId?: string | null
|
|
58466
58900
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutProposalInput
|
|
58467
58901
|
}
|
|
58468
58902
|
|
|
@@ -58911,6 +59345,81 @@ export namespace Prisma {
|
|
|
58911
59345
|
data: ClientInterviewCreateManyBuilderInput | ClientInterviewCreateManyBuilderInput[]
|
|
58912
59346
|
}
|
|
58913
59347
|
|
|
59348
|
+
export type ProposalCreateWithoutTeamAdvisorInput = {
|
|
59349
|
+
id?: string
|
|
59350
|
+
createdAt?: Date | string | null
|
|
59351
|
+
updatedAt?: Date | string | null
|
|
59352
|
+
expiresAt?: Date | string | null
|
|
59353
|
+
clientName?: string | null
|
|
59354
|
+
projectName?: string | null
|
|
59355
|
+
webflowId?: string | null
|
|
59356
|
+
publicURL?: string | null
|
|
59357
|
+
isShared?: boolean | null
|
|
59358
|
+
sharedAt?: Date | string | null
|
|
59359
|
+
archivedURL?: string | null
|
|
59360
|
+
schemaVersion?: $Enums.ProposalSchemaVersion
|
|
59361
|
+
templateMap?: XOR<ProposalTemplateMapNullableCreateEnvelopeInput, ProposalTemplateMapCreateInput> | null
|
|
59362
|
+
template?: $Enums.ProposalTemplate | null
|
|
59363
|
+
version?: number | null
|
|
59364
|
+
publicUntil?: Date | string | null
|
|
59365
|
+
applications?: ProposalCreateapplicationsInput | string[]
|
|
59366
|
+
adminReview?: XOR<ProposalReviewNullableCreateEnvelopeInput, ProposalReviewCreateInput> | null
|
|
59367
|
+
candidates?: XOR<ProposalCandidateListCreateEnvelopeInput, ProposalCandidateCreateInput> | ProposalCandidateCreateInput[]
|
|
59368
|
+
currency?: string | null
|
|
59369
|
+
teamProposal?: boolean | null
|
|
59370
|
+
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
59371
|
+
name?: string | null
|
|
59372
|
+
slug?: string | null
|
|
59373
|
+
teamBlurb?: string | null
|
|
59374
|
+
createdBy?: UserCreateNestedOneWithoutAuthoredProposalsInput
|
|
59375
|
+
mission?: MissionCreateNestedOneWithoutProposalsInput
|
|
59376
|
+
sharedBy?: UserCreateNestedOneWithoutSharedProposalsInput
|
|
59377
|
+
missionSpec?: MissionSpecCreateNestedOneWithoutProposalsInput
|
|
59378
|
+
clientInterviews?: ClientInterviewCreateNestedManyWithoutProposalInput
|
|
59379
|
+
}
|
|
59380
|
+
|
|
59381
|
+
export type ProposalUncheckedCreateWithoutTeamAdvisorInput = {
|
|
59382
|
+
id?: string
|
|
59383
|
+
createdById?: string | null
|
|
59384
|
+
missionId?: string | null
|
|
59385
|
+
createdAt?: Date | string | null
|
|
59386
|
+
updatedAt?: Date | string | null
|
|
59387
|
+
expiresAt?: Date | string | null
|
|
59388
|
+
clientName?: string | null
|
|
59389
|
+
projectName?: string | null
|
|
59390
|
+
webflowId?: string | null
|
|
59391
|
+
publicURL?: string | null
|
|
59392
|
+
isShared?: boolean | null
|
|
59393
|
+
sharedById?: string | null
|
|
59394
|
+
sharedAt?: Date | string | null
|
|
59395
|
+
archivedURL?: string | null
|
|
59396
|
+
schemaVersion?: $Enums.ProposalSchemaVersion
|
|
59397
|
+
templateMap?: XOR<ProposalTemplateMapNullableCreateEnvelopeInput, ProposalTemplateMapCreateInput> | null
|
|
59398
|
+
template?: $Enums.ProposalTemplate | null
|
|
59399
|
+
version?: number | null
|
|
59400
|
+
publicUntil?: Date | string | null
|
|
59401
|
+
missionSpecId?: string | null
|
|
59402
|
+
applications?: ProposalCreateapplicationsInput | string[]
|
|
59403
|
+
adminReview?: XOR<ProposalReviewNullableCreateEnvelopeInput, ProposalReviewCreateInput> | null
|
|
59404
|
+
candidates?: XOR<ProposalCandidateListCreateEnvelopeInput, ProposalCandidateCreateInput> | ProposalCandidateCreateInput[]
|
|
59405
|
+
currency?: string | null
|
|
59406
|
+
teamProposal?: boolean | null
|
|
59407
|
+
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
59408
|
+
name?: string | null
|
|
59409
|
+
slug?: string | null
|
|
59410
|
+
teamBlurb?: string | null
|
|
59411
|
+
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutProposalInput
|
|
59412
|
+
}
|
|
59413
|
+
|
|
59414
|
+
export type ProposalCreateOrConnectWithoutTeamAdvisorInput = {
|
|
59415
|
+
where: ProposalWhereUniqueInput
|
|
59416
|
+
create: XOR<ProposalCreateWithoutTeamAdvisorInput, ProposalUncheckedCreateWithoutTeamAdvisorInput>
|
|
59417
|
+
}
|
|
59418
|
+
|
|
59419
|
+
export type ProposalCreateManyTeamAdvisorInputEnvelope = {
|
|
59420
|
+
data: ProposalCreateManyTeamAdvisorInput | ProposalCreateManyTeamAdvisorInput[]
|
|
59421
|
+
}
|
|
59422
|
+
|
|
58914
59423
|
export type ClientRegistrationUpsertInput = {
|
|
58915
59424
|
set: ClientRegistrationCreateInput | null
|
|
58916
59425
|
update: ClientRegistrationUpdateInput
|
|
@@ -59324,6 +59833,22 @@ export namespace Prisma {
|
|
|
59324
59833
|
data: XOR<ClientInterviewUpdateManyMutationInput, ClientInterviewUncheckedUpdateManyWithoutBuilderInput>
|
|
59325
59834
|
}
|
|
59326
59835
|
|
|
59836
|
+
export type ProposalUpsertWithWhereUniqueWithoutTeamAdvisorInput = {
|
|
59837
|
+
where: ProposalWhereUniqueInput
|
|
59838
|
+
update: XOR<ProposalUpdateWithoutTeamAdvisorInput, ProposalUncheckedUpdateWithoutTeamAdvisorInput>
|
|
59839
|
+
create: XOR<ProposalCreateWithoutTeamAdvisorInput, ProposalUncheckedCreateWithoutTeamAdvisorInput>
|
|
59840
|
+
}
|
|
59841
|
+
|
|
59842
|
+
export type ProposalUpdateWithWhereUniqueWithoutTeamAdvisorInput = {
|
|
59843
|
+
where: ProposalWhereUniqueInput
|
|
59844
|
+
data: XOR<ProposalUpdateWithoutTeamAdvisorInput, ProposalUncheckedUpdateWithoutTeamAdvisorInput>
|
|
59845
|
+
}
|
|
59846
|
+
|
|
59847
|
+
export type ProposalUpdateManyWithWhereWithoutTeamAdvisorInput = {
|
|
59848
|
+
where: ProposalScalarWhereInput
|
|
59849
|
+
data: XOR<ProposalUpdateManyMutationInput, ProposalUncheckedUpdateManyWithoutTeamAdvisorInput>
|
|
59850
|
+
}
|
|
59851
|
+
|
|
59327
59852
|
export type BookingFrequencyCreateInput = {
|
|
59328
59853
|
perDay: number
|
|
59329
59854
|
perWeek: number
|
|
@@ -59376,6 +59901,7 @@ export namespace Prisma {
|
|
|
59376
59901
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
59377
59902
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
59378
59903
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
59904
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
59379
59905
|
}
|
|
59380
59906
|
|
|
59381
59907
|
export type UserUncheckedCreateWithoutPreferencesInput = {
|
|
@@ -59425,6 +59951,7 @@ export namespace Prisma {
|
|
|
59425
59951
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
59426
59952
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
59427
59953
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
59954
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
59428
59955
|
}
|
|
59429
59956
|
|
|
59430
59957
|
export type UserCreateOrConnectWithoutPreferencesInput = {
|
|
@@ -59498,6 +60025,7 @@ export namespace Prisma {
|
|
|
59498
60025
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
59499
60026
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
59500
60027
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
60028
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
59501
60029
|
}
|
|
59502
60030
|
|
|
59503
60031
|
export type UserUncheckedUpdateWithoutPreferencesInput = {
|
|
@@ -59546,6 +60074,7 @@ export namespace Prisma {
|
|
|
59546
60074
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
59547
60075
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
59548
60076
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
60077
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
59549
60078
|
}
|
|
59550
60079
|
|
|
59551
60080
|
export type AccountCreateWithoutUserReviewsInput = {
|
|
@@ -59634,6 +60163,7 @@ export namespace Prisma {
|
|
|
59634
60163
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
59635
60164
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
59636
60165
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
60166
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
59637
60167
|
}
|
|
59638
60168
|
|
|
59639
60169
|
export type UserUncheckedCreateWithoutGivenReviewsInput = {
|
|
@@ -59683,6 +60213,7 @@ export namespace Prisma {
|
|
|
59683
60213
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
59684
60214
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
59685
60215
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
60216
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
59686
60217
|
}
|
|
59687
60218
|
|
|
59688
60219
|
export type UserCreateOrConnectWithoutGivenReviewsInput = {
|
|
@@ -59737,6 +60268,7 @@ export namespace Prisma {
|
|
|
59737
60268
|
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
59738
60269
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
59739
60270
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
60271
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
59740
60272
|
}
|
|
59741
60273
|
|
|
59742
60274
|
export type UserUncheckedCreateWithoutReceivedReviewsInput = {
|
|
@@ -59786,6 +60318,7 @@ export namespace Prisma {
|
|
|
59786
60318
|
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
59787
60319
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
59788
60320
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
60321
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
59789
60322
|
}
|
|
59790
60323
|
|
|
59791
60324
|
export type UserCreateOrConnectWithoutReceivedReviewsInput = {
|
|
@@ -60010,6 +60543,7 @@ export namespace Prisma {
|
|
|
60010
60543
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
60011
60544
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
60012
60545
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
60546
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
60013
60547
|
}
|
|
60014
60548
|
|
|
60015
60549
|
export type UserUncheckedUpdateWithoutGivenReviewsInput = {
|
|
@@ -60058,6 +60592,7 @@ export namespace Prisma {
|
|
|
60058
60592
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
60059
60593
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
60060
60594
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
60595
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
60061
60596
|
}
|
|
60062
60597
|
|
|
60063
60598
|
export type UserUpsertWithoutReceivedReviewsInput = {
|
|
@@ -60117,6 +60652,7 @@ export namespace Prisma {
|
|
|
60117
60652
|
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
60118
60653
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
60119
60654
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
60655
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
60120
60656
|
}
|
|
60121
60657
|
|
|
60122
60658
|
export type UserUncheckedUpdateWithoutReceivedReviewsInput = {
|
|
@@ -60165,6 +60701,7 @@ export namespace Prisma {
|
|
|
60165
60701
|
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
60166
60702
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
60167
60703
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
60704
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
60168
60705
|
}
|
|
60169
60706
|
|
|
60170
60707
|
export type MissionUpsertWithoutUserReviewsInput = {
|
|
@@ -61862,6 +62399,7 @@ export namespace Prisma {
|
|
|
61862
62399
|
name?: string | null
|
|
61863
62400
|
slug?: string | null
|
|
61864
62401
|
teamBlurb?: string | null
|
|
62402
|
+
teamAdvisorId?: string | null
|
|
61865
62403
|
}
|
|
61866
62404
|
|
|
61867
62405
|
export type UserReviewCreateManyMissionModelInput = {
|
|
@@ -62038,6 +62576,7 @@ export namespace Prisma {
|
|
|
62038
62576
|
createdBy?: UserUpdateOneWithoutAuthoredProposalsNestedInput
|
|
62039
62577
|
sharedBy?: UserUpdateOneWithoutSharedProposalsNestedInput
|
|
62040
62578
|
missionSpec?: MissionSpecUpdateOneWithoutProposalsNestedInput
|
|
62579
|
+
teamAdvisor?: UserUpdateOneWithoutProposalsAsTeamAdvisorNestedInput
|
|
62041
62580
|
clientInterviews?: ClientInterviewUpdateManyWithoutProposalNestedInput
|
|
62042
62581
|
}
|
|
62043
62582
|
|
|
@@ -62069,6 +62608,7 @@ export namespace Prisma {
|
|
|
62069
62608
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62070
62609
|
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62071
62610
|
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62611
|
+
teamAdvisorId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62072
62612
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutProposalNestedInput
|
|
62073
62613
|
}
|
|
62074
62614
|
|
|
@@ -62100,6 +62640,7 @@ export namespace Prisma {
|
|
|
62100
62640
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62101
62641
|
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62102
62642
|
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62643
|
+
teamAdvisorId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62103
62644
|
}
|
|
62104
62645
|
|
|
62105
62646
|
export type UserReviewUpdateWithoutMissionModelInput = {
|
|
@@ -62268,6 +62809,7 @@ export namespace Prisma {
|
|
|
62268
62809
|
name?: string | null
|
|
62269
62810
|
slug?: string | null
|
|
62270
62811
|
teamBlurb?: string | null
|
|
62812
|
+
teamAdvisorId?: string | null
|
|
62271
62813
|
}
|
|
62272
62814
|
|
|
62273
62815
|
export type AttachedLinkUpdateInput = {
|
|
@@ -62349,6 +62891,7 @@ export namespace Prisma {
|
|
|
62349
62891
|
createdBy?: UserUpdateOneWithoutAuthoredProposalsNestedInput
|
|
62350
62892
|
mission?: MissionUpdateOneWithoutProposalsNestedInput
|
|
62351
62893
|
sharedBy?: UserUpdateOneWithoutSharedProposalsNestedInput
|
|
62894
|
+
teamAdvisor?: UserUpdateOneWithoutProposalsAsTeamAdvisorNestedInput
|
|
62352
62895
|
clientInterviews?: ClientInterviewUpdateManyWithoutProposalNestedInput
|
|
62353
62896
|
}
|
|
62354
62897
|
|
|
@@ -62380,6 +62923,7 @@ export namespace Prisma {
|
|
|
62380
62923
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62381
62924
|
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62382
62925
|
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62926
|
+
teamAdvisorId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62383
62927
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutProposalNestedInput
|
|
62384
62928
|
}
|
|
62385
62929
|
|
|
@@ -62411,6 +62955,7 @@ export namespace Prisma {
|
|
|
62411
62955
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62412
62956
|
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62413
62957
|
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62958
|
+
teamAdvisorId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62414
62959
|
}
|
|
62415
62960
|
|
|
62416
62961
|
export type ProposalCandidateSectionDataCreateInput = {
|
|
@@ -62818,6 +63363,7 @@ export namespace Prisma {
|
|
|
62818
63363
|
name?: string | null
|
|
62819
63364
|
slug?: string | null
|
|
62820
63365
|
teamBlurb?: string | null
|
|
63366
|
+
teamAdvisorId?: string | null
|
|
62821
63367
|
}
|
|
62822
63368
|
|
|
62823
63369
|
export type ProposalCreateManySharedByInput = {
|
|
@@ -62849,6 +63395,7 @@ export namespace Prisma {
|
|
|
62849
63395
|
name?: string | null
|
|
62850
63396
|
slug?: string | null
|
|
62851
63397
|
teamBlurb?: string | null
|
|
63398
|
+
teamAdvisorId?: string | null
|
|
62852
63399
|
}
|
|
62853
63400
|
|
|
62854
63401
|
export type LinkedInRecommendationCreateManyUserInput = {
|
|
@@ -63011,6 +63558,38 @@ export namespace Prisma {
|
|
|
63011
63558
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCreateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
63012
63559
|
}
|
|
63013
63560
|
|
|
63561
|
+
export type ProposalCreateManyTeamAdvisorInput = {
|
|
63562
|
+
id?: string
|
|
63563
|
+
createdById?: string | null
|
|
63564
|
+
missionId?: string | null
|
|
63565
|
+
createdAt?: Date | string | null
|
|
63566
|
+
updatedAt?: Date | string | null
|
|
63567
|
+
expiresAt?: Date | string | null
|
|
63568
|
+
clientName?: string | null
|
|
63569
|
+
projectName?: string | null
|
|
63570
|
+
webflowId?: string | null
|
|
63571
|
+
publicURL?: string | null
|
|
63572
|
+
isShared?: boolean | null
|
|
63573
|
+
sharedById?: string | null
|
|
63574
|
+
sharedAt?: Date | string | null
|
|
63575
|
+
archivedURL?: string | null
|
|
63576
|
+
schemaVersion?: $Enums.ProposalSchemaVersion
|
|
63577
|
+
templateMap?: XOR<ProposalTemplateMapNullableCreateEnvelopeInput, ProposalTemplateMapCreateInput> | null
|
|
63578
|
+
template?: $Enums.ProposalTemplate | null
|
|
63579
|
+
version?: number | null
|
|
63580
|
+
publicUntil?: Date | string | null
|
|
63581
|
+
missionSpecId?: string | null
|
|
63582
|
+
applications?: ProposalCreateapplicationsInput | string[]
|
|
63583
|
+
adminReview?: XOR<ProposalReviewNullableCreateEnvelopeInput, ProposalReviewCreateInput> | null
|
|
63584
|
+
candidates?: XOR<ProposalCandidateListCreateEnvelopeInput, ProposalCandidateCreateInput> | ProposalCandidateCreateInput[]
|
|
63585
|
+
currency?: string | null
|
|
63586
|
+
teamProposal?: boolean | null
|
|
63587
|
+
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
63588
|
+
name?: string | null
|
|
63589
|
+
slug?: string | null
|
|
63590
|
+
teamBlurb?: string | null
|
|
63591
|
+
}
|
|
63592
|
+
|
|
63014
63593
|
export type ClientRegistrationUpdateInput = {
|
|
63015
63594
|
emailVerified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
63016
63595
|
signupCompany?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -63678,6 +64257,7 @@ export namespace Prisma {
|
|
|
63678
64257
|
mission?: MissionUpdateOneWithoutProposalsNestedInput
|
|
63679
64258
|
sharedBy?: UserUpdateOneWithoutSharedProposalsNestedInput
|
|
63680
64259
|
missionSpec?: MissionSpecUpdateOneWithoutProposalsNestedInput
|
|
64260
|
+
teamAdvisor?: UserUpdateOneWithoutProposalsAsTeamAdvisorNestedInput
|
|
63681
64261
|
clientInterviews?: ClientInterviewUpdateManyWithoutProposalNestedInput
|
|
63682
64262
|
}
|
|
63683
64263
|
|
|
@@ -63709,6 +64289,7 @@ export namespace Prisma {
|
|
|
63709
64289
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63710
64290
|
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63711
64291
|
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64292
|
+
teamAdvisorId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63712
64293
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutProposalNestedInput
|
|
63713
64294
|
}
|
|
63714
64295
|
|
|
@@ -63740,6 +64321,7 @@ export namespace Prisma {
|
|
|
63740
64321
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63741
64322
|
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63742
64323
|
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64324
|
+
teamAdvisorId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63743
64325
|
}
|
|
63744
64326
|
|
|
63745
64327
|
export type ProposalUpdateWithoutSharedByInput = {
|
|
@@ -63770,6 +64352,7 @@ export namespace Prisma {
|
|
|
63770
64352
|
createdBy?: UserUpdateOneWithoutAuthoredProposalsNestedInput
|
|
63771
64353
|
mission?: MissionUpdateOneWithoutProposalsNestedInput
|
|
63772
64354
|
missionSpec?: MissionSpecUpdateOneWithoutProposalsNestedInput
|
|
64355
|
+
teamAdvisor?: UserUpdateOneWithoutProposalsAsTeamAdvisorNestedInput
|
|
63773
64356
|
clientInterviews?: ClientInterviewUpdateManyWithoutProposalNestedInput
|
|
63774
64357
|
}
|
|
63775
64358
|
|
|
@@ -63801,6 +64384,7 @@ export namespace Prisma {
|
|
|
63801
64384
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63802
64385
|
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63803
64386
|
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64387
|
+
teamAdvisorId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63804
64388
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutProposalNestedInput
|
|
63805
64389
|
}
|
|
63806
64390
|
|
|
@@ -63832,6 +64416,7 @@ export namespace Prisma {
|
|
|
63832
64416
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63833
64417
|
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63834
64418
|
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64419
|
+
teamAdvisorId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63835
64420
|
}
|
|
63836
64421
|
|
|
63837
64422
|
export type LinkedInRecommendationUpdateWithoutUserInput = {
|
|
@@ -64290,6 +64875,101 @@ export namespace Prisma {
|
|
|
64290
64875
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableUpdateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
64291
64876
|
}
|
|
64292
64877
|
|
|
64878
|
+
export type ProposalUpdateWithoutTeamAdvisorInput = {
|
|
64879
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64880
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64881
|
+
expiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64882
|
+
clientName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64883
|
+
projectName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64884
|
+
webflowId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64885
|
+
publicURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64886
|
+
isShared?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
64887
|
+
sharedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64888
|
+
archivedURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64889
|
+
schemaVersion?: EnumProposalSchemaVersionFieldUpdateOperationsInput | $Enums.ProposalSchemaVersion
|
|
64890
|
+
templateMap?: XOR<ProposalTemplateMapNullableUpdateEnvelopeInput, ProposalTemplateMapCreateInput> | null
|
|
64891
|
+
template?: NullableEnumProposalTemplateFieldUpdateOperationsInput | $Enums.ProposalTemplate | null
|
|
64892
|
+
version?: NullableIntFieldUpdateOperationsInput | number | null
|
|
64893
|
+
publicUntil?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64894
|
+
applications?: ProposalUpdateapplicationsInput | string[]
|
|
64895
|
+
adminReview?: XOR<ProposalReviewNullableUpdateEnvelopeInput, ProposalReviewCreateInput> | null
|
|
64896
|
+
candidates?: XOR<ProposalCandidateListUpdateEnvelopeInput, ProposalCandidateCreateInput> | ProposalCandidateCreateInput[]
|
|
64897
|
+
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64898
|
+
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
64899
|
+
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
64900
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64901
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64902
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64903
|
+
createdBy?: UserUpdateOneWithoutAuthoredProposalsNestedInput
|
|
64904
|
+
mission?: MissionUpdateOneWithoutProposalsNestedInput
|
|
64905
|
+
sharedBy?: UserUpdateOneWithoutSharedProposalsNestedInput
|
|
64906
|
+
missionSpec?: MissionSpecUpdateOneWithoutProposalsNestedInput
|
|
64907
|
+
clientInterviews?: ClientInterviewUpdateManyWithoutProposalNestedInput
|
|
64908
|
+
}
|
|
64909
|
+
|
|
64910
|
+
export type ProposalUncheckedUpdateWithoutTeamAdvisorInput = {
|
|
64911
|
+
createdById?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64912
|
+
missionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64913
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64914
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64915
|
+
expiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64916
|
+
clientName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64917
|
+
projectName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64918
|
+
webflowId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64919
|
+
publicURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64920
|
+
isShared?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
64921
|
+
sharedById?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64922
|
+
sharedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64923
|
+
archivedURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64924
|
+
schemaVersion?: EnumProposalSchemaVersionFieldUpdateOperationsInput | $Enums.ProposalSchemaVersion
|
|
64925
|
+
templateMap?: XOR<ProposalTemplateMapNullableUpdateEnvelopeInput, ProposalTemplateMapCreateInput> | null
|
|
64926
|
+
template?: NullableEnumProposalTemplateFieldUpdateOperationsInput | $Enums.ProposalTemplate | null
|
|
64927
|
+
version?: NullableIntFieldUpdateOperationsInput | number | null
|
|
64928
|
+
publicUntil?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64929
|
+
missionSpecId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64930
|
+
applications?: ProposalUpdateapplicationsInput | string[]
|
|
64931
|
+
adminReview?: XOR<ProposalReviewNullableUpdateEnvelopeInput, ProposalReviewCreateInput> | null
|
|
64932
|
+
candidates?: XOR<ProposalCandidateListUpdateEnvelopeInput, ProposalCandidateCreateInput> | ProposalCandidateCreateInput[]
|
|
64933
|
+
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64934
|
+
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
64935
|
+
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
64936
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64937
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64938
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64939
|
+
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutProposalNestedInput
|
|
64940
|
+
}
|
|
64941
|
+
|
|
64942
|
+
export type ProposalUncheckedUpdateManyWithoutTeamAdvisorInput = {
|
|
64943
|
+
createdById?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64944
|
+
missionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64945
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64946
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64947
|
+
expiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64948
|
+
clientName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64949
|
+
projectName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64950
|
+
webflowId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64951
|
+
publicURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64952
|
+
isShared?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
64953
|
+
sharedById?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64954
|
+
sharedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64955
|
+
archivedURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64956
|
+
schemaVersion?: EnumProposalSchemaVersionFieldUpdateOperationsInput | $Enums.ProposalSchemaVersion
|
|
64957
|
+
templateMap?: XOR<ProposalTemplateMapNullableUpdateEnvelopeInput, ProposalTemplateMapCreateInput> | null
|
|
64958
|
+
template?: NullableEnumProposalTemplateFieldUpdateOperationsInput | $Enums.ProposalTemplate | null
|
|
64959
|
+
version?: NullableIntFieldUpdateOperationsInput | number | null
|
|
64960
|
+
publicUntil?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
64961
|
+
missionSpecId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64962
|
+
applications?: ProposalUpdateapplicationsInput | string[]
|
|
64963
|
+
adminReview?: XOR<ProposalReviewNullableUpdateEnvelopeInput, ProposalReviewCreateInput> | null
|
|
64964
|
+
candidates?: XOR<ProposalCandidateListUpdateEnvelopeInput, ProposalCandidateCreateInput> | ProposalCandidateCreateInput[]
|
|
64965
|
+
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64966
|
+
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
64967
|
+
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
64968
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64969
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64970
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64971
|
+
}
|
|
64972
|
+
|
|
64293
64973
|
export type BookingFrequencyNullableUpdateEnvelopeInput = {
|
|
64294
64974
|
set?: BookingFrequencyCreateInput | null
|
|
64295
64975
|
upsert?: BookingFrequencyUpsertInput
|