@a_team/prisma 3.9.4-macos-docker-linux → 3.9.5-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 -5
- package/dist/client/index-browser.js +4 -1
- package/dist/client/index.d.ts +351 -1
- package/dist/client/index.js +10 -7
- package/dist/client/{libquery_engine-linux-arm64-openssl-3.0.x.so.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 +18 -0
- package/dist/client/wasm.js +4 -1
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -278,6 +278,11 @@ export type ProposalCandidateSections = $Result.DefaultSelection<Prisma.$Proposa
|
|
|
278
278
|
*
|
|
279
279
|
*/
|
|
280
280
|
export type ProposalRoleData = $Result.DefaultSelection<Prisma.$ProposalRoleDataPayload>
|
|
281
|
+
/**
|
|
282
|
+
* Model ProposalTfsPitch
|
|
283
|
+
*
|
|
284
|
+
*/
|
|
285
|
+
export type ProposalTfsPitch = $Result.DefaultSelection<Prisma.$ProposalTfsPitchPayload>
|
|
281
286
|
/**
|
|
282
287
|
* Model Role
|
|
283
288
|
*
|
|
@@ -6595,6 +6600,16 @@ export namespace Prisma {
|
|
|
6595
6600
|
projects?: boolean
|
|
6596
6601
|
reviews?: boolean
|
|
6597
6602
|
cardSections?: boolean | ProposalCandidateSectionsDefaultArgs<ExtArgs>
|
|
6603
|
+
isTeamLead?: boolean
|
|
6604
|
+
tfsPitch?: boolean | ProposalTfsPitchDefaultArgs<ExtArgs>
|
|
6605
|
+
proposedAt?: boolean
|
|
6606
|
+
githubUrl?: boolean
|
|
6607
|
+
cvUrl?: boolean
|
|
6608
|
+
portfolioUrl?: boolean
|
|
6609
|
+
portfolioPassword?: boolean
|
|
6610
|
+
gptUsageLogId?: boolean
|
|
6611
|
+
linkedInRecommendations?: boolean
|
|
6612
|
+
slug?: boolean
|
|
6598
6613
|
}, ExtArgs["result"]["proposalCandidate"]>
|
|
6599
6614
|
|
|
6600
6615
|
|
|
@@ -6613,6 +6628,15 @@ export namespace Prisma {
|
|
|
6613
6628
|
includeCustomQuestionReply?: boolean
|
|
6614
6629
|
projects?: boolean
|
|
6615
6630
|
reviews?: boolean
|
|
6631
|
+
isTeamLead?: boolean
|
|
6632
|
+
proposedAt?: boolean
|
|
6633
|
+
githubUrl?: boolean
|
|
6634
|
+
cvUrl?: boolean
|
|
6635
|
+
portfolioUrl?: boolean
|
|
6636
|
+
portfolioPassword?: boolean
|
|
6637
|
+
gptUsageLogId?: boolean
|
|
6638
|
+
linkedInRecommendations?: boolean
|
|
6639
|
+
slug?: boolean
|
|
6616
6640
|
}
|
|
6617
6641
|
|
|
6618
6642
|
export type ProposalCandidateInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
@@ -6635,10 +6659,20 @@ export namespace Prisma {
|
|
|
6635
6659
|
includeCustomQuestionReply: boolean | null
|
|
6636
6660
|
projects: string[]
|
|
6637
6661
|
reviews: string[]
|
|
6662
|
+
isTeamLead: boolean | null
|
|
6663
|
+
proposedAt: Date | null
|
|
6664
|
+
githubUrl: string | null
|
|
6665
|
+
cvUrl: string | null
|
|
6666
|
+
portfolioUrl: string | null
|
|
6667
|
+
portfolioPassword: string | null
|
|
6668
|
+
gptUsageLogId: string | null
|
|
6669
|
+
linkedInRecommendations: string[]
|
|
6670
|
+
slug: string | null
|
|
6638
6671
|
}
|
|
6639
6672
|
composites: {
|
|
6640
6673
|
clientReview: Prisma.$ProposalReviewPayload | null
|
|
6641
6674
|
cardSections: Prisma.$ProposalCandidateSectionsPayload | null
|
|
6675
|
+
tfsPitch: Prisma.$ProposalTfsPitchPayload | null
|
|
6642
6676
|
}
|
|
6643
6677
|
}
|
|
6644
6678
|
|
|
@@ -6666,6 +6700,15 @@ export namespace Prisma {
|
|
|
6666
6700
|
readonly includeCustomQuestionReply: FieldRef<"ProposalCandidate", 'Boolean'>
|
|
6667
6701
|
readonly projects: FieldRef<"ProposalCandidate", 'String[]'>
|
|
6668
6702
|
readonly reviews: FieldRef<"ProposalCandidate", 'String[]'>
|
|
6703
|
+
readonly isTeamLead: FieldRef<"ProposalCandidate", 'Boolean'>
|
|
6704
|
+
readonly proposedAt: FieldRef<"ProposalCandidate", 'DateTime'>
|
|
6705
|
+
readonly githubUrl: FieldRef<"ProposalCandidate", 'String'>
|
|
6706
|
+
readonly cvUrl: FieldRef<"ProposalCandidate", 'String'>
|
|
6707
|
+
readonly portfolioUrl: FieldRef<"ProposalCandidate", 'String'>
|
|
6708
|
+
readonly portfolioPassword: FieldRef<"ProposalCandidate", 'String'>
|
|
6709
|
+
readonly gptUsageLogId: FieldRef<"ProposalCandidate", 'String'>
|
|
6710
|
+
readonly linkedInRecommendations: FieldRef<"ProposalCandidate", 'String[]'>
|
|
6711
|
+
readonly slug: FieldRef<"ProposalCandidate", 'String'>
|
|
6669
6712
|
}
|
|
6670
6713
|
|
|
6671
6714
|
|
|
@@ -6859,6 +6902,63 @@ export namespace Prisma {
|
|
|
6859
6902
|
}
|
|
6860
6903
|
|
|
6861
6904
|
|
|
6905
|
+
/**
|
|
6906
|
+
* Model ProposalTfsPitch
|
|
6907
|
+
*/
|
|
6908
|
+
|
|
6909
|
+
|
|
6910
|
+
|
|
6911
|
+
|
|
6912
|
+
|
|
6913
|
+
export type ProposalTfsPitchSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
6914
|
+
blurb?: boolean
|
|
6915
|
+
website?: boolean
|
|
6916
|
+
}, ExtArgs["result"]["proposalTfsPitch"]>
|
|
6917
|
+
|
|
6918
|
+
|
|
6919
|
+
export type ProposalTfsPitchSelectScalar = {
|
|
6920
|
+
blurb?: boolean
|
|
6921
|
+
website?: boolean
|
|
6922
|
+
}
|
|
6923
|
+
|
|
6924
|
+
|
|
6925
|
+
export type $ProposalTfsPitchPayload = {
|
|
6926
|
+
name: "ProposalTfsPitch"
|
|
6927
|
+
objects: {}
|
|
6928
|
+
scalars: {
|
|
6929
|
+
blurb: string | null
|
|
6930
|
+
website: string | null
|
|
6931
|
+
}
|
|
6932
|
+
composites: {}
|
|
6933
|
+
}
|
|
6934
|
+
|
|
6935
|
+
type ProposalTfsPitchGetPayload<S extends boolean | null | undefined | ProposalTfsPitchDefaultArgs> = $Result.GetResult<Prisma.$ProposalTfsPitchPayload, S>
|
|
6936
|
+
|
|
6937
|
+
|
|
6938
|
+
|
|
6939
|
+
|
|
6940
|
+
|
|
6941
|
+
/**
|
|
6942
|
+
* Fields of the ProposalTfsPitch model
|
|
6943
|
+
*/
|
|
6944
|
+
interface ProposalTfsPitchFieldRefs {
|
|
6945
|
+
readonly blurb: FieldRef<"ProposalTfsPitch", 'String'>
|
|
6946
|
+
readonly website: FieldRef<"ProposalTfsPitch", 'String'>
|
|
6947
|
+
}
|
|
6948
|
+
|
|
6949
|
+
|
|
6950
|
+
// Custom InputTypes
|
|
6951
|
+
/**
|
|
6952
|
+
* ProposalTfsPitch without action
|
|
6953
|
+
*/
|
|
6954
|
+
export type ProposalTfsPitchDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6955
|
+
/**
|
|
6956
|
+
* Select specific fields to fetch from the ProposalTfsPitch
|
|
6957
|
+
*/
|
|
6958
|
+
select?: ProposalTfsPitchSelect<ExtArgs> | null
|
|
6959
|
+
}
|
|
6960
|
+
|
|
6961
|
+
|
|
6862
6962
|
/**
|
|
6863
6963
|
* Model Role
|
|
6864
6964
|
*/
|
|
@@ -18970,6 +19070,9 @@ export namespace Prisma {
|
|
|
18970
19070
|
missionSpecId: string | null
|
|
18971
19071
|
currency: string | null
|
|
18972
19072
|
teamProposal: boolean | null
|
|
19073
|
+
name: string | null
|
|
19074
|
+
slug: string | null
|
|
19075
|
+
teamBlurb: string | null
|
|
18973
19076
|
}
|
|
18974
19077
|
|
|
18975
19078
|
export type ProposalMaxAggregateOutputType = {
|
|
@@ -18994,6 +19097,9 @@ export namespace Prisma {
|
|
|
18994
19097
|
missionSpecId: string | null
|
|
18995
19098
|
currency: string | null
|
|
18996
19099
|
teamProposal: boolean | null
|
|
19100
|
+
name: string | null
|
|
19101
|
+
slug: string | null
|
|
19102
|
+
teamBlurb: string | null
|
|
18997
19103
|
}
|
|
18998
19104
|
|
|
18999
19105
|
export type ProposalCountAggregateOutputType = {
|
|
@@ -19019,6 +19125,9 @@ export namespace Prisma {
|
|
|
19019
19125
|
applications: number
|
|
19020
19126
|
currency: number
|
|
19021
19127
|
teamProposal: number
|
|
19128
|
+
name: number
|
|
19129
|
+
slug: number
|
|
19130
|
+
teamBlurb: number
|
|
19022
19131
|
_all: number
|
|
19023
19132
|
}
|
|
19024
19133
|
|
|
@@ -19053,6 +19162,9 @@ export namespace Prisma {
|
|
|
19053
19162
|
missionSpecId?: true
|
|
19054
19163
|
currency?: true
|
|
19055
19164
|
teamProposal?: true
|
|
19165
|
+
name?: true
|
|
19166
|
+
slug?: true
|
|
19167
|
+
teamBlurb?: true
|
|
19056
19168
|
}
|
|
19057
19169
|
|
|
19058
19170
|
export type ProposalMaxAggregateInputType = {
|
|
@@ -19077,6 +19189,9 @@ export namespace Prisma {
|
|
|
19077
19189
|
missionSpecId?: true
|
|
19078
19190
|
currency?: true
|
|
19079
19191
|
teamProposal?: true
|
|
19192
|
+
name?: true
|
|
19193
|
+
slug?: true
|
|
19194
|
+
teamBlurb?: true
|
|
19080
19195
|
}
|
|
19081
19196
|
|
|
19082
19197
|
export type ProposalCountAggregateInputType = {
|
|
@@ -19102,6 +19217,9 @@ export namespace Prisma {
|
|
|
19102
19217
|
applications?: true
|
|
19103
19218
|
currency?: true
|
|
19104
19219
|
teamProposal?: true
|
|
19220
|
+
name?: true
|
|
19221
|
+
slug?: true
|
|
19222
|
+
teamBlurb?: true
|
|
19105
19223
|
_all?: true
|
|
19106
19224
|
}
|
|
19107
19225
|
|
|
@@ -19214,6 +19332,9 @@ export namespace Prisma {
|
|
|
19214
19332
|
applications: string[]
|
|
19215
19333
|
currency: string | null
|
|
19216
19334
|
teamProposal: boolean | null
|
|
19335
|
+
name: string | null
|
|
19336
|
+
slug: string | null
|
|
19337
|
+
teamBlurb: string | null
|
|
19217
19338
|
_count: ProposalCountAggregateOutputType | null
|
|
19218
19339
|
_avg: ProposalAvgAggregateOutputType | null
|
|
19219
19340
|
_sum: ProposalSumAggregateOutputType | null
|
|
@@ -19262,6 +19383,9 @@ export namespace Prisma {
|
|
|
19262
19383
|
currency?: boolean
|
|
19263
19384
|
teamProposal?: boolean
|
|
19264
19385
|
rolesData?: boolean | ProposalRoleDataDefaultArgs<ExtArgs>
|
|
19386
|
+
name?: boolean
|
|
19387
|
+
slug?: boolean
|
|
19388
|
+
teamBlurb?: boolean
|
|
19265
19389
|
createdBy?: boolean | Proposal$createdByArgs<ExtArgs>
|
|
19266
19390
|
mission?: boolean | Proposal$missionArgs<ExtArgs>
|
|
19267
19391
|
sharedBy?: boolean | Proposal$sharedByArgs<ExtArgs>
|
|
@@ -19292,6 +19416,9 @@ export namespace Prisma {
|
|
|
19292
19416
|
applications?: boolean
|
|
19293
19417
|
currency?: boolean
|
|
19294
19418
|
teamProposal?: boolean
|
|
19419
|
+
name?: boolean
|
|
19420
|
+
slug?: boolean
|
|
19421
|
+
teamBlurb?: boolean
|
|
19295
19422
|
}
|
|
19296
19423
|
|
|
19297
19424
|
export type ProposalInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -19332,6 +19459,9 @@ export namespace Prisma {
|
|
|
19332
19459
|
applications: string[]
|
|
19333
19460
|
currency: string | null
|
|
19334
19461
|
teamProposal: boolean | null
|
|
19462
|
+
name: string | null
|
|
19463
|
+
slug: string | null
|
|
19464
|
+
teamBlurb: string | null
|
|
19335
19465
|
}, ExtArgs["result"]["proposal"]>
|
|
19336
19466
|
composites: {
|
|
19337
19467
|
templateMap: Prisma.$ProposalTemplateMapPayload | null
|
|
@@ -19755,6 +19885,9 @@ export namespace Prisma {
|
|
|
19755
19885
|
readonly applications: FieldRef<"Proposal", 'String[]'>
|
|
19756
19886
|
readonly currency: FieldRef<"Proposal", 'String'>
|
|
19757
19887
|
readonly teamProposal: FieldRef<"Proposal", 'Boolean'>
|
|
19888
|
+
readonly name: FieldRef<"Proposal", 'String'>
|
|
19889
|
+
readonly slug: FieldRef<"Proposal", 'String'>
|
|
19890
|
+
readonly teamBlurb: FieldRef<"Proposal", 'String'>
|
|
19758
19891
|
}
|
|
19759
19892
|
|
|
19760
19893
|
|
|
@@ -25282,7 +25415,10 @@ export namespace Prisma {
|
|
|
25282
25415
|
missionSpecId: 'missionSpecId',
|
|
25283
25416
|
applications: 'applications',
|
|
25284
25417
|
currency: 'currency',
|
|
25285
|
-
teamProposal: 'teamProposal'
|
|
25418
|
+
teamProposal: 'teamProposal',
|
|
25419
|
+
name: 'name',
|
|
25420
|
+
slug: 'slug',
|
|
25421
|
+
teamBlurb: 'teamBlurb'
|
|
25286
25422
|
};
|
|
25287
25423
|
|
|
25288
25424
|
export type ProposalScalarFieldEnum = (typeof ProposalScalarFieldEnum)[keyof typeof ProposalScalarFieldEnum]
|
|
@@ -27037,6 +27173,9 @@ export namespace Prisma {
|
|
|
27037
27173
|
currency?: StringNullableFilter<"Proposal"> | string | null
|
|
27038
27174
|
teamProposal?: BoolNullableFilter<"Proposal"> | boolean | null
|
|
27039
27175
|
rolesData?: ProposalRoleDataCompositeListFilter | ProposalRoleDataObjectEqualityInput[]
|
|
27176
|
+
name?: StringNullableFilter<"Proposal"> | string | null
|
|
27177
|
+
slug?: StringNullableFilter<"Proposal"> | string | null
|
|
27178
|
+
teamBlurb?: StringNullableFilter<"Proposal"> | string | null
|
|
27040
27179
|
createdBy?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
27041
27180
|
mission?: XOR<MissionNullableRelationFilter, MissionWhereInput> | null
|
|
27042
27181
|
sharedBy?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
@@ -27070,6 +27209,9 @@ export namespace Prisma {
|
|
|
27070
27209
|
currency?: SortOrder
|
|
27071
27210
|
teamProposal?: SortOrder
|
|
27072
27211
|
rolesData?: ProposalRoleDataOrderByCompositeAggregateInput
|
|
27212
|
+
name?: SortOrder
|
|
27213
|
+
slug?: SortOrder
|
|
27214
|
+
teamBlurb?: SortOrder
|
|
27073
27215
|
createdBy?: UserOrderByWithRelationInput
|
|
27074
27216
|
mission?: MissionOrderByWithRelationInput
|
|
27075
27217
|
sharedBy?: UserOrderByWithRelationInput
|
|
@@ -27106,6 +27248,9 @@ export namespace Prisma {
|
|
|
27106
27248
|
currency?: StringNullableFilter<"Proposal"> | string | null
|
|
27107
27249
|
teamProposal?: BoolNullableFilter<"Proposal"> | boolean | null
|
|
27108
27250
|
rolesData?: ProposalRoleDataCompositeListFilter | ProposalRoleDataObjectEqualityInput[]
|
|
27251
|
+
name?: StringNullableFilter<"Proposal"> | string | null
|
|
27252
|
+
slug?: StringNullableFilter<"Proposal"> | string | null
|
|
27253
|
+
teamBlurb?: StringNullableFilter<"Proposal"> | string | null
|
|
27109
27254
|
createdBy?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
27110
27255
|
mission?: XOR<MissionNullableRelationFilter, MissionWhereInput> | null
|
|
27111
27256
|
sharedBy?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
@@ -27135,6 +27280,9 @@ export namespace Prisma {
|
|
|
27135
27280
|
applications?: SortOrder
|
|
27136
27281
|
currency?: SortOrder
|
|
27137
27282
|
teamProposal?: SortOrder
|
|
27283
|
+
name?: SortOrder
|
|
27284
|
+
slug?: SortOrder
|
|
27285
|
+
teamBlurb?: SortOrder
|
|
27138
27286
|
_count?: ProposalCountOrderByAggregateInput
|
|
27139
27287
|
_avg?: ProposalAvgOrderByAggregateInput
|
|
27140
27288
|
_max?: ProposalMaxOrderByAggregateInput
|
|
@@ -27168,6 +27316,9 @@ export namespace Prisma {
|
|
|
27168
27316
|
applications?: StringNullableListFilter<"Proposal">
|
|
27169
27317
|
currency?: StringNullableWithAggregatesFilter<"Proposal"> | string | null
|
|
27170
27318
|
teamProposal?: BoolNullableWithAggregatesFilter<"Proposal"> | boolean | null
|
|
27319
|
+
name?: StringNullableWithAggregatesFilter<"Proposal"> | string | null
|
|
27320
|
+
slug?: StringNullableWithAggregatesFilter<"Proposal"> | string | null
|
|
27321
|
+
teamBlurb?: StringNullableWithAggregatesFilter<"Proposal"> | string | null
|
|
27171
27322
|
}
|
|
27172
27323
|
|
|
27173
27324
|
export type RoleCategoryWhereInput = {
|
|
@@ -29045,6 +29196,9 @@ export namespace Prisma {
|
|
|
29045
29196
|
currency?: string | null
|
|
29046
29197
|
teamProposal?: boolean | null
|
|
29047
29198
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
29199
|
+
name?: string | null
|
|
29200
|
+
slug?: string | null
|
|
29201
|
+
teamBlurb?: string | null
|
|
29048
29202
|
createdBy?: UserCreateNestedOneWithoutAuthoredProposalsInput
|
|
29049
29203
|
mission?: MissionCreateNestedOneWithoutProposalsInput
|
|
29050
29204
|
sharedBy?: UserCreateNestedOneWithoutSharedProposalsInput
|
|
@@ -29078,6 +29232,9 @@ export namespace Prisma {
|
|
|
29078
29232
|
currency?: string | null
|
|
29079
29233
|
teamProposal?: boolean | null
|
|
29080
29234
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
29235
|
+
name?: string | null
|
|
29236
|
+
slug?: string | null
|
|
29237
|
+
teamBlurb?: string | null
|
|
29081
29238
|
}
|
|
29082
29239
|
|
|
29083
29240
|
export type ProposalUpdateInput = {
|
|
@@ -29102,6 +29259,9 @@ export namespace Prisma {
|
|
|
29102
29259
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29103
29260
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
29104
29261
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
29262
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29263
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29264
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29105
29265
|
createdBy?: UserUpdateOneWithoutAuthoredProposalsNestedInput
|
|
29106
29266
|
mission?: MissionUpdateOneWithoutProposalsNestedInput
|
|
29107
29267
|
sharedBy?: UserUpdateOneWithoutSharedProposalsNestedInput
|
|
@@ -29134,6 +29294,9 @@ export namespace Prisma {
|
|
|
29134
29294
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29135
29295
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
29136
29296
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
29297
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29298
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29299
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29137
29300
|
}
|
|
29138
29301
|
|
|
29139
29302
|
export type ProposalCreateManyInput = {
|
|
@@ -29163,6 +29326,9 @@ export namespace Prisma {
|
|
|
29163
29326
|
currency?: string | null
|
|
29164
29327
|
teamProposal?: boolean | null
|
|
29165
29328
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
29329
|
+
name?: string | null
|
|
29330
|
+
slug?: string | null
|
|
29331
|
+
teamBlurb?: string | null
|
|
29166
29332
|
}
|
|
29167
29333
|
|
|
29168
29334
|
export type ProposalUpdateManyMutationInput = {
|
|
@@ -29187,6 +29353,9 @@ export namespace Prisma {
|
|
|
29187
29353
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29188
29354
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
29189
29355
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
29356
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29357
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29358
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29190
29359
|
}
|
|
29191
29360
|
|
|
29192
29361
|
export type ProposalUncheckedUpdateManyInput = {
|
|
@@ -29215,6 +29384,9 @@ export namespace Prisma {
|
|
|
29215
29384
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29216
29385
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
29217
29386
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
29387
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29388
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29389
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29218
29390
|
}
|
|
29219
29391
|
|
|
29220
29392
|
export type RoleCategoryCreateInput = {
|
|
@@ -31421,6 +31593,16 @@ export namespace Prisma {
|
|
|
31421
31593
|
projects?: string[]
|
|
31422
31594
|
reviews?: string[]
|
|
31423
31595
|
cardSections?: ProposalCandidateSectionsObjectEqualityInput | null
|
|
31596
|
+
isTeamLead?: boolean | null
|
|
31597
|
+
tfsPitch?: ProposalTfsPitchObjectEqualityInput | null
|
|
31598
|
+
proposedAt?: Date | string | null
|
|
31599
|
+
githubUrl?: string | null
|
|
31600
|
+
cvUrl?: string | null
|
|
31601
|
+
portfolioUrl?: string | null
|
|
31602
|
+
portfolioPassword?: string | null
|
|
31603
|
+
gptUsageLogId?: string | null
|
|
31604
|
+
linkedInRecommendations?: string[]
|
|
31605
|
+
slug?: string | null
|
|
31424
31606
|
}
|
|
31425
31607
|
|
|
31426
31608
|
export type ProposalRoleDataCompositeListFilter = {
|
|
@@ -31481,6 +31663,9 @@ export namespace Prisma {
|
|
|
31481
31663
|
applications?: SortOrder
|
|
31482
31664
|
currency?: SortOrder
|
|
31483
31665
|
teamProposal?: SortOrder
|
|
31666
|
+
name?: SortOrder
|
|
31667
|
+
slug?: SortOrder
|
|
31668
|
+
teamBlurb?: SortOrder
|
|
31484
31669
|
}
|
|
31485
31670
|
|
|
31486
31671
|
export type ProposalAvgOrderByAggregateInput = {
|
|
@@ -31509,6 +31694,9 @@ export namespace Prisma {
|
|
|
31509
31694
|
missionSpecId?: SortOrder
|
|
31510
31695
|
currency?: SortOrder
|
|
31511
31696
|
teamProposal?: SortOrder
|
|
31697
|
+
name?: SortOrder
|
|
31698
|
+
slug?: SortOrder
|
|
31699
|
+
teamBlurb?: SortOrder
|
|
31512
31700
|
}
|
|
31513
31701
|
|
|
31514
31702
|
export type ProposalMinOrderByAggregateInput = {
|
|
@@ -31533,6 +31721,9 @@ export namespace Prisma {
|
|
|
31533
31721
|
missionSpecId?: SortOrder
|
|
31534
31722
|
currency?: SortOrder
|
|
31535
31723
|
teamProposal?: SortOrder
|
|
31724
|
+
name?: SortOrder
|
|
31725
|
+
slug?: SortOrder
|
|
31726
|
+
teamBlurb?: SortOrder
|
|
31536
31727
|
}
|
|
31537
31728
|
|
|
31538
31729
|
export type ProposalSumOrderByAggregateInput = {
|
|
@@ -33564,6 +33755,16 @@ export namespace Prisma {
|
|
|
33564
33755
|
projects?: ProposalCandidateCreateprojectsInput | string[]
|
|
33565
33756
|
reviews?: ProposalCandidateCreatereviewsInput | string[]
|
|
33566
33757
|
cardSections?: ProposalCandidateSectionsCreateInput | null
|
|
33758
|
+
isTeamLead?: boolean | null
|
|
33759
|
+
tfsPitch?: ProposalTfsPitchCreateInput | null
|
|
33760
|
+
proposedAt?: Date | string | null
|
|
33761
|
+
githubUrl?: string | null
|
|
33762
|
+
cvUrl?: string | null
|
|
33763
|
+
portfolioUrl?: string | null
|
|
33764
|
+
portfolioPassword?: string | null
|
|
33765
|
+
gptUsageLogId?: string | null
|
|
33766
|
+
linkedInRecommendations?: ProposalCandidateCreatelinkedInRecommendationsInput | string[]
|
|
33767
|
+
slug?: string | null
|
|
33567
33768
|
}
|
|
33568
33769
|
|
|
33569
33770
|
export type ProposalRoleDataListCreateEnvelopeInput = {
|
|
@@ -35168,6 +35369,16 @@ export namespace Prisma {
|
|
|
35168
35369
|
projects?: StringNullableListFilter<"ProposalCandidate">
|
|
35169
35370
|
reviews?: StringNullableListFilter<"ProposalCandidate">
|
|
35170
35371
|
cardSections?: XOR<ProposalCandidateSectionsNullableCompositeFilter, ProposalCandidateSectionsObjectEqualityInput> | null
|
|
35372
|
+
isTeamLead?: BoolNullableFilter<"ProposalCandidate"> | boolean | null
|
|
35373
|
+
tfsPitch?: XOR<ProposalTfsPitchNullableCompositeFilter, ProposalTfsPitchObjectEqualityInput> | null
|
|
35374
|
+
proposedAt?: DateTimeNullableFilter<"ProposalCandidate"> | Date | string | null
|
|
35375
|
+
githubUrl?: StringNullableFilter<"ProposalCandidate"> | string | null
|
|
35376
|
+
cvUrl?: StringNullableFilter<"ProposalCandidate"> | string | null
|
|
35377
|
+
portfolioUrl?: StringNullableFilter<"ProposalCandidate"> | string | null
|
|
35378
|
+
portfolioPassword?: StringNullableFilter<"ProposalCandidate"> | string | null
|
|
35379
|
+
gptUsageLogId?: StringNullableFilter<"ProposalCandidate"> | string | null
|
|
35380
|
+
linkedInRecommendations?: StringNullableListFilter<"ProposalCandidate">
|
|
35381
|
+
slug?: StringNullableFilter<"ProposalCandidate"> | string | null
|
|
35171
35382
|
}
|
|
35172
35383
|
|
|
35173
35384
|
export type ProposalCandidateSectionsObjectEqualityInput = {
|
|
@@ -35176,6 +35387,11 @@ export namespace Prisma {
|
|
|
35176
35387
|
experience: ProposalCandidateSectionDataObjectEqualityInput
|
|
35177
35388
|
}
|
|
35178
35389
|
|
|
35390
|
+
export type ProposalTfsPitchObjectEqualityInput = {
|
|
35391
|
+
blurb?: string | null
|
|
35392
|
+
website?: string | null
|
|
35393
|
+
}
|
|
35394
|
+
|
|
35179
35395
|
export type ProposalRoleDataWhereInput = {
|
|
35180
35396
|
AND?: ProposalRoleDataWhereInput | ProposalRoleDataWhereInput[]
|
|
35181
35397
|
OR?: ProposalRoleDataWhereInput[]
|
|
@@ -37119,6 +37335,9 @@ export namespace Prisma {
|
|
|
37119
37335
|
currency?: string | null
|
|
37120
37336
|
teamProposal?: boolean | null
|
|
37121
37337
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
37338
|
+
name?: string | null
|
|
37339
|
+
slug?: string | null
|
|
37340
|
+
teamBlurb?: string | null
|
|
37122
37341
|
createdBy?: UserCreateNestedOneWithoutAuthoredProposalsInput
|
|
37123
37342
|
sharedBy?: UserCreateNestedOneWithoutSharedProposalsInput
|
|
37124
37343
|
missionSpec?: MissionSpecCreateNestedOneWithoutProposalsInput
|
|
@@ -37150,6 +37369,9 @@ export namespace Prisma {
|
|
|
37150
37369
|
currency?: string | null
|
|
37151
37370
|
teamProposal?: boolean | null
|
|
37152
37371
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
37372
|
+
name?: string | null
|
|
37373
|
+
slug?: string | null
|
|
37374
|
+
teamBlurb?: string | null
|
|
37153
37375
|
}
|
|
37154
37376
|
|
|
37155
37377
|
export type ProposalCreateOrConnectWithoutMissionInput = {
|
|
@@ -37543,6 +37765,9 @@ export namespace Prisma {
|
|
|
37543
37765
|
applications?: StringNullableListFilter<"Proposal">
|
|
37544
37766
|
currency?: StringNullableFilter<"Proposal"> | string | null
|
|
37545
37767
|
teamProposal?: BoolNullableFilter<"Proposal"> | boolean | null
|
|
37768
|
+
name?: StringNullableFilter<"Proposal"> | string | null
|
|
37769
|
+
slug?: StringNullableFilter<"Proposal"> | string | null
|
|
37770
|
+
teamBlurb?: StringNullableFilter<"Proposal"> | string | null
|
|
37546
37771
|
}
|
|
37547
37772
|
|
|
37548
37773
|
export type LocalHourRangeCreateInput = {
|
|
@@ -38386,6 +38611,9 @@ export namespace Prisma {
|
|
|
38386
38611
|
currency?: string | null
|
|
38387
38612
|
teamProposal?: boolean | null
|
|
38388
38613
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
38614
|
+
name?: string | null
|
|
38615
|
+
slug?: string | null
|
|
38616
|
+
teamBlurb?: string | null
|
|
38389
38617
|
createdBy?: UserCreateNestedOneWithoutAuthoredProposalsInput
|
|
38390
38618
|
mission?: MissionCreateNestedOneWithoutProposalsInput
|
|
38391
38619
|
sharedBy?: UserCreateNestedOneWithoutSharedProposalsInput
|
|
@@ -38417,6 +38645,9 @@ export namespace Prisma {
|
|
|
38417
38645
|
currency?: string | null
|
|
38418
38646
|
teamProposal?: boolean | null
|
|
38419
38647
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
38648
|
+
name?: string | null
|
|
38649
|
+
slug?: string | null
|
|
38650
|
+
teamBlurb?: string | null
|
|
38420
38651
|
}
|
|
38421
38652
|
|
|
38422
38653
|
export type ProposalCreateOrConnectWithoutMissionSpecInput = {
|
|
@@ -38852,6 +39083,15 @@ export namespace Prisma {
|
|
|
38852
39083
|
experience: ProposalCandidateSectionDataCreateInput
|
|
38853
39084
|
}
|
|
38854
39085
|
|
|
39086
|
+
export type ProposalTfsPitchCreateInput = {
|
|
39087
|
+
blurb?: string | null
|
|
39088
|
+
website?: string | null
|
|
39089
|
+
}
|
|
39090
|
+
|
|
39091
|
+
export type ProposalCandidateCreatelinkedInRecommendationsInput = {
|
|
39092
|
+
set: string[]
|
|
39093
|
+
}
|
|
39094
|
+
|
|
38855
39095
|
export type UserCreateWithoutAuthoredProposalsInput = {
|
|
38856
39096
|
id?: string
|
|
38857
39097
|
firstName?: string | null
|
|
@@ -40081,6 +40321,9 @@ export namespace Prisma {
|
|
|
40081
40321
|
currency?: string | null
|
|
40082
40322
|
teamProposal?: boolean | null
|
|
40083
40323
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
40324
|
+
name?: string | null
|
|
40325
|
+
slug?: string | null
|
|
40326
|
+
teamBlurb?: string | null
|
|
40084
40327
|
mission?: MissionCreateNestedOneWithoutProposalsInput
|
|
40085
40328
|
sharedBy?: UserCreateNestedOneWithoutSharedProposalsInput
|
|
40086
40329
|
missionSpec?: MissionSpecCreateNestedOneWithoutProposalsInput
|
|
@@ -40112,6 +40355,9 @@ export namespace Prisma {
|
|
|
40112
40355
|
currency?: string | null
|
|
40113
40356
|
teamProposal?: boolean | null
|
|
40114
40357
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
40358
|
+
name?: string | null
|
|
40359
|
+
slug?: string | null
|
|
40360
|
+
teamBlurb?: string | null
|
|
40115
40361
|
}
|
|
40116
40362
|
|
|
40117
40363
|
export type ProposalCreateOrConnectWithoutCreatedByInput = {
|
|
@@ -40146,6 +40392,9 @@ export namespace Prisma {
|
|
|
40146
40392
|
currency?: string | null
|
|
40147
40393
|
teamProposal?: boolean | null
|
|
40148
40394
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
40395
|
+
name?: string | null
|
|
40396
|
+
slug?: string | null
|
|
40397
|
+
teamBlurb?: string | null
|
|
40149
40398
|
createdBy?: UserCreateNestedOneWithoutAuthoredProposalsInput
|
|
40150
40399
|
mission?: MissionCreateNestedOneWithoutProposalsInput
|
|
40151
40400
|
missionSpec?: MissionSpecCreateNestedOneWithoutProposalsInput
|
|
@@ -40177,6 +40426,9 @@ export namespace Prisma {
|
|
|
40177
40426
|
currency?: string | null
|
|
40178
40427
|
teamProposal?: boolean | null
|
|
40179
40428
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
40429
|
+
name?: string | null
|
|
40430
|
+
slug?: string | null
|
|
40431
|
+
teamBlurb?: string | null
|
|
40180
40432
|
}
|
|
40181
40433
|
|
|
40182
40434
|
export type ProposalCreateOrConnectWithoutSharedByInput = {
|
|
@@ -40649,6 +40901,13 @@ export namespace Prisma {
|
|
|
40649
40901
|
isSet?: boolean
|
|
40650
40902
|
}
|
|
40651
40903
|
|
|
40904
|
+
export type ProposalTfsPitchNullableCompositeFilter = {
|
|
40905
|
+
equals?: ProposalTfsPitchObjectEqualityInput | null
|
|
40906
|
+
is?: ProposalTfsPitchWhereInput | null
|
|
40907
|
+
isNot?: ProposalTfsPitchWhereInput | null
|
|
40908
|
+
isSet?: boolean
|
|
40909
|
+
}
|
|
40910
|
+
|
|
40652
40911
|
export type ProposalCandidateSectionDataObjectEqualityInput = {
|
|
40653
40912
|
text?: string | null
|
|
40654
40913
|
title?: string | null
|
|
@@ -41517,6 +41776,9 @@ export namespace Prisma {
|
|
|
41517
41776
|
currency?: string | null
|
|
41518
41777
|
teamProposal?: boolean | null
|
|
41519
41778
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
41779
|
+
name?: string | null
|
|
41780
|
+
slug?: string | null
|
|
41781
|
+
teamBlurb?: string | null
|
|
41520
41782
|
}
|
|
41521
41783
|
|
|
41522
41784
|
export type MissionsAttachedLinkUpdateInput = {
|
|
@@ -41663,6 +41925,9 @@ export namespace Prisma {
|
|
|
41663
41925
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41664
41926
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
41665
41927
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
41928
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41929
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41930
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41666
41931
|
createdBy?: UserUpdateOneWithoutAuthoredProposalsNestedInput
|
|
41667
41932
|
sharedBy?: UserUpdateOneWithoutSharedProposalsNestedInput
|
|
41668
41933
|
missionSpec?: MissionSpecUpdateOneWithoutProposalsNestedInput
|
|
@@ -41693,6 +41958,9 @@ export namespace Prisma {
|
|
|
41693
41958
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41694
41959
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
41695
41960
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
41961
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41962
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41963
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41696
41964
|
}
|
|
41697
41965
|
|
|
41698
41966
|
export type ProposalUncheckedUpdateManyWithoutMissionInput = {
|
|
@@ -41720,6 +41988,9 @@ export namespace Prisma {
|
|
|
41720
41988
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41721
41989
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
41722
41990
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
41991
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41992
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41993
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41723
41994
|
}
|
|
41724
41995
|
|
|
41725
41996
|
export type MissionApplicationRateRangeUpdateInput = {
|
|
@@ -41825,6 +42096,9 @@ export namespace Prisma {
|
|
|
41825
42096
|
currency?: string | null
|
|
41826
42097
|
teamProposal?: boolean | null
|
|
41827
42098
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
42099
|
+
name?: string | null
|
|
42100
|
+
slug?: string | null
|
|
42101
|
+
teamBlurb?: string | null
|
|
41828
42102
|
}
|
|
41829
42103
|
|
|
41830
42104
|
export type AttachedLinkUpdateInput = {
|
|
@@ -41900,6 +42174,9 @@ export namespace Prisma {
|
|
|
41900
42174
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41901
42175
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
41902
42176
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
42177
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42178
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42179
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41903
42180
|
createdBy?: UserUpdateOneWithoutAuthoredProposalsNestedInput
|
|
41904
42181
|
mission?: MissionUpdateOneWithoutProposalsNestedInput
|
|
41905
42182
|
sharedBy?: UserUpdateOneWithoutSharedProposalsNestedInput
|
|
@@ -41930,6 +42207,9 @@ export namespace Prisma {
|
|
|
41930
42207
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41931
42208
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
41932
42209
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
42210
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42211
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42212
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41933
42213
|
}
|
|
41934
42214
|
|
|
41935
42215
|
export type ProposalUncheckedUpdateManyWithoutMissionSpecInput = {
|
|
@@ -41957,6 +42237,9 @@ export namespace Prisma {
|
|
|
41957
42237
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41958
42238
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
41959
42239
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
42240
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42241
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42242
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41960
42243
|
}
|
|
41961
42244
|
|
|
41962
42245
|
export type ProposalCandidateSectionDataCreateInput = {
|
|
@@ -41994,6 +42277,16 @@ export namespace Prisma {
|
|
|
41994
42277
|
projects?: ProposalCandidateUpdateprojectsInput | string[]
|
|
41995
42278
|
reviews?: ProposalCandidateUpdatereviewsInput | string[]
|
|
41996
42279
|
cardSections?: XOR<ProposalCandidateSectionsNullableUpdateEnvelopeInput, ProposalCandidateSectionsCreateInput> | null
|
|
42280
|
+
isTeamLead?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
42281
|
+
tfsPitch?: XOR<ProposalTfsPitchNullableUpdateEnvelopeInput, ProposalTfsPitchCreateInput> | null
|
|
42282
|
+
proposedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
42283
|
+
githubUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42284
|
+
cvUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42285
|
+
portfolioUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42286
|
+
portfolioPassword?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42287
|
+
gptUsageLogId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42288
|
+
linkedInRecommendations?: ProposalCandidateUpdatelinkedInRecommendationsInput | string[]
|
|
42289
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
41997
42290
|
}
|
|
41998
42291
|
|
|
41999
42292
|
export type ProposalRoleDataUpdateInput = {
|
|
@@ -42235,6 +42528,9 @@ export namespace Prisma {
|
|
|
42235
42528
|
currency?: string | null
|
|
42236
42529
|
teamProposal?: boolean | null
|
|
42237
42530
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
42531
|
+
name?: string | null
|
|
42532
|
+
slug?: string | null
|
|
42533
|
+
teamBlurb?: string | null
|
|
42238
42534
|
}
|
|
42239
42535
|
|
|
42240
42536
|
export type ProposalCreateManySharedByInput = {
|
|
@@ -42263,6 +42559,9 @@ export namespace Prisma {
|
|
|
42263
42559
|
currency?: string | null
|
|
42264
42560
|
teamProposal?: boolean | null
|
|
42265
42561
|
rolesData?: XOR<ProposalRoleDataListCreateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
42562
|
+
name?: string | null
|
|
42563
|
+
slug?: string | null
|
|
42564
|
+
teamBlurb?: string | null
|
|
42266
42565
|
}
|
|
42267
42566
|
|
|
42268
42567
|
export type ClientRegistrationUpdateInput = {
|
|
@@ -42922,6 +43221,9 @@ export namespace Prisma {
|
|
|
42922
43221
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42923
43222
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
42924
43223
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
43224
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43225
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43226
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42925
43227
|
mission?: MissionUpdateOneWithoutProposalsNestedInput
|
|
42926
43228
|
sharedBy?: UserUpdateOneWithoutSharedProposalsNestedInput
|
|
42927
43229
|
missionSpec?: MissionSpecUpdateOneWithoutProposalsNestedInput
|
|
@@ -42952,6 +43254,9 @@ export namespace Prisma {
|
|
|
42952
43254
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42953
43255
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
42954
43256
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
43257
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43258
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43259
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42955
43260
|
}
|
|
42956
43261
|
|
|
42957
43262
|
export type ProposalUncheckedUpdateManyWithoutCreatedByInput = {
|
|
@@ -42979,6 +43284,9 @@ export namespace Prisma {
|
|
|
42979
43284
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42980
43285
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
42981
43286
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
43287
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43288
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43289
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
42982
43290
|
}
|
|
42983
43291
|
|
|
42984
43292
|
export type ProposalUpdateWithoutSharedByInput = {
|
|
@@ -43003,6 +43311,9 @@ export namespace Prisma {
|
|
|
43003
43311
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43004
43312
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
43005
43313
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
43314
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43315
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43316
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43006
43317
|
createdBy?: UserUpdateOneWithoutAuthoredProposalsNestedInput
|
|
43007
43318
|
mission?: MissionUpdateOneWithoutProposalsNestedInput
|
|
43008
43319
|
missionSpec?: MissionSpecUpdateOneWithoutProposalsNestedInput
|
|
@@ -43033,6 +43344,9 @@ export namespace Prisma {
|
|
|
43033
43344
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43034
43345
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
43035
43346
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
43347
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43348
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43349
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43036
43350
|
}
|
|
43037
43351
|
|
|
43038
43352
|
export type ProposalUncheckedUpdateManyWithoutSharedByInput = {
|
|
@@ -43060,6 +43374,9 @@ export namespace Prisma {
|
|
|
43060
43374
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43061
43375
|
teamProposal?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
43062
43376
|
rolesData?: XOR<ProposalRoleDataListUpdateEnvelopeInput, ProposalRoleDataCreateInput> | ProposalRoleDataCreateInput[]
|
|
43377
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43378
|
+
slug?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43379
|
+
teamBlurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43063
43380
|
}
|
|
43064
43381
|
|
|
43065
43382
|
export type NestedEnumBillingPaymentDueFilter<$PrismaModel = never> = {
|
|
@@ -43269,6 +43586,14 @@ export namespace Prisma {
|
|
|
43269
43586
|
experience?: XOR<ProposalCandidateSectionDataCompositeFilter, ProposalCandidateSectionDataObjectEqualityInput>
|
|
43270
43587
|
}
|
|
43271
43588
|
|
|
43589
|
+
export type ProposalTfsPitchWhereInput = {
|
|
43590
|
+
AND?: ProposalTfsPitchWhereInput | ProposalTfsPitchWhereInput[]
|
|
43591
|
+
OR?: ProposalTfsPitchWhereInput[]
|
|
43592
|
+
NOT?: ProposalTfsPitchWhereInput | ProposalTfsPitchWhereInput[]
|
|
43593
|
+
blurb?: StringNullableFilter<"ProposalTfsPitch"> | string | null
|
|
43594
|
+
website?: StringNullableFilter<"ProposalTfsPitch"> | string | null
|
|
43595
|
+
}
|
|
43596
|
+
|
|
43272
43597
|
export type NestedEnumRegisterRequestTypeNullableFilter<$PrismaModel = never> = {
|
|
43273
43598
|
equals?: $Enums.RegisterRequestType | EnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
43274
43599
|
in?: $Enums.RegisterRequestType[] | ListEnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
@@ -43533,6 +43858,17 @@ export namespace Prisma {
|
|
|
43533
43858
|
unset?: boolean
|
|
43534
43859
|
}
|
|
43535
43860
|
|
|
43861
|
+
export type ProposalTfsPitchNullableUpdateEnvelopeInput = {
|
|
43862
|
+
set?: ProposalTfsPitchCreateInput | null
|
|
43863
|
+
upsert?: ProposalTfsPitchUpsertInput
|
|
43864
|
+
unset?: boolean
|
|
43865
|
+
}
|
|
43866
|
+
|
|
43867
|
+
export type ProposalCandidateUpdatelinkedInRecommendationsInput = {
|
|
43868
|
+
set?: string[]
|
|
43869
|
+
push?: string | string[]
|
|
43870
|
+
}
|
|
43871
|
+
|
|
43536
43872
|
export type UserTalentIndustryExperienceViewCreatejobTitlesInput = {
|
|
43537
43873
|
set: string[]
|
|
43538
43874
|
}
|
|
@@ -43739,6 +44075,11 @@ export namespace Prisma {
|
|
|
43739
44075
|
update: ProposalCandidateSectionsUpdateInput
|
|
43740
44076
|
}
|
|
43741
44077
|
|
|
44078
|
+
export type ProposalTfsPitchUpsertInput = {
|
|
44079
|
+
set: ProposalTfsPitchCreateInput | null
|
|
44080
|
+
update: ProposalTfsPitchUpdateInput
|
|
44081
|
+
}
|
|
44082
|
+
|
|
43742
44083
|
export type UserTalentSkillAssignmentDataUpsertInput = {
|
|
43743
44084
|
set: UserTalentSkillAssignmentDataCreateInput | null
|
|
43744
44085
|
update: UserTalentSkillAssignmentDataUpdateInput
|
|
@@ -43892,6 +44233,11 @@ export namespace Prisma {
|
|
|
43892
44233
|
experience?: XOR<ProposalCandidateSectionDataUpdateEnvelopeInput, ProposalCandidateSectionDataCreateInput>
|
|
43893
44234
|
}
|
|
43894
44235
|
|
|
44236
|
+
export type ProposalTfsPitchUpdateInput = {
|
|
44237
|
+
blurb?: NullableStringFieldUpdateOperationsInput | string | null
|
|
44238
|
+
website?: NullableStringFieldUpdateOperationsInput | string | null
|
|
44239
|
+
}
|
|
44240
|
+
|
|
43895
44241
|
export type UserTalentSkillAssignmentDataUpdateInput = {
|
|
43896
44242
|
mainTalentSkills?: XOR<UserTalentSkillAssignmentListUpdateEnvelopeInput, UserTalentSkillAssignmentCreateInput> | UserTalentSkillAssignmentCreateInput[]
|
|
43897
44243
|
additionalTalentSkills?: XOR<UserTalentSkillAssignmentListUpdateEnvelopeInput, UserTalentSkillAssignmentCreateInput> | UserTalentSkillAssignmentCreateInput[]
|
|
@@ -44240,6 +44586,10 @@ export namespace Prisma {
|
|
|
44240
44586
|
* @deprecated Use ProposalRoleDataDefaultArgs instead
|
|
44241
44587
|
*/
|
|
44242
44588
|
export type ProposalRoleDataArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ProposalRoleDataDefaultArgs<ExtArgs>
|
|
44589
|
+
/**
|
|
44590
|
+
* @deprecated Use ProposalTfsPitchDefaultArgs instead
|
|
44591
|
+
*/
|
|
44592
|
+
export type ProposalTfsPitchArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ProposalTfsPitchDefaultArgs<ExtArgs>
|
|
44243
44593
|
/**
|
|
44244
44594
|
* @deprecated Use RoleDefaultArgs instead
|
|
44245
44595
|
*/
|