@a_team/prisma 3.14.6-macos-docker-linux → 3.14.7-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/edge.js +4 -4
- package/dist/client/index.d.ts +152 -0
- package/dist/client/index.js +6 -6
- 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 +8 -0
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -298,6 +298,11 @@ export type AnalysisScoreObject = $Result.DefaultSelection<Prisma.$AnalysisScore
|
|
|
298
298
|
*
|
|
299
299
|
*/
|
|
300
300
|
export type MissionApplicationAnalysisObject = $Result.DefaultSelection<Prisma.$MissionApplicationAnalysisObjectPayload>
|
|
301
|
+
/**
|
|
302
|
+
* Model MissionApplicationProposedRates
|
|
303
|
+
*
|
|
304
|
+
*/
|
|
305
|
+
export type MissionApplicationProposedRates = $Result.DefaultSelection<Prisma.$MissionApplicationProposedRatesPayload>
|
|
301
306
|
/**
|
|
302
307
|
* Model MissionPrefillRole
|
|
303
308
|
*
|
|
@@ -8509,6 +8514,71 @@ export namespace Prisma {
|
|
|
8509
8514
|
}
|
|
8510
8515
|
|
|
8511
8516
|
|
|
8517
|
+
/**
|
|
8518
|
+
* Model MissionApplicationProposedRates
|
|
8519
|
+
*/
|
|
8520
|
+
|
|
8521
|
+
|
|
8522
|
+
|
|
8523
|
+
|
|
8524
|
+
|
|
8525
|
+
export type MissionApplicationProposedRatesSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
8526
|
+
builderHourlyRate?: boolean
|
|
8527
|
+
clientHourlyRate?: boolean
|
|
8528
|
+
builderMonthlyRate?: boolean
|
|
8529
|
+
clientMonthlyRate?: boolean
|
|
8530
|
+
}, ExtArgs["result"]["missionApplicationProposedRates"]>
|
|
8531
|
+
|
|
8532
|
+
|
|
8533
|
+
export type MissionApplicationProposedRatesSelectScalar = {
|
|
8534
|
+
builderHourlyRate?: boolean
|
|
8535
|
+
clientHourlyRate?: boolean
|
|
8536
|
+
builderMonthlyRate?: boolean
|
|
8537
|
+
clientMonthlyRate?: boolean
|
|
8538
|
+
}
|
|
8539
|
+
|
|
8540
|
+
|
|
8541
|
+
export type $MissionApplicationProposedRatesPayload = {
|
|
8542
|
+
name: "MissionApplicationProposedRates"
|
|
8543
|
+
objects: {}
|
|
8544
|
+
scalars: {
|
|
8545
|
+
builderHourlyRate: number | null
|
|
8546
|
+
clientHourlyRate: number | null
|
|
8547
|
+
builderMonthlyRate: number | null
|
|
8548
|
+
clientMonthlyRate: number | null
|
|
8549
|
+
}
|
|
8550
|
+
composites: {}
|
|
8551
|
+
}
|
|
8552
|
+
|
|
8553
|
+
type MissionApplicationProposedRatesGetPayload<S extends boolean | null | undefined | MissionApplicationProposedRatesDefaultArgs> = $Result.GetResult<Prisma.$MissionApplicationProposedRatesPayload, S>
|
|
8554
|
+
|
|
8555
|
+
|
|
8556
|
+
|
|
8557
|
+
|
|
8558
|
+
|
|
8559
|
+
/**
|
|
8560
|
+
* Fields of the MissionApplicationProposedRates model
|
|
8561
|
+
*/
|
|
8562
|
+
interface MissionApplicationProposedRatesFieldRefs {
|
|
8563
|
+
readonly builderHourlyRate: FieldRef<"MissionApplicationProposedRates", 'Float'>
|
|
8564
|
+
readonly clientHourlyRate: FieldRef<"MissionApplicationProposedRates", 'Float'>
|
|
8565
|
+
readonly builderMonthlyRate: FieldRef<"MissionApplicationProposedRates", 'Float'>
|
|
8566
|
+
readonly clientMonthlyRate: FieldRef<"MissionApplicationProposedRates", 'Float'>
|
|
8567
|
+
}
|
|
8568
|
+
|
|
8569
|
+
|
|
8570
|
+
// Custom InputTypes
|
|
8571
|
+
/**
|
|
8572
|
+
* MissionApplicationProposedRates without action
|
|
8573
|
+
*/
|
|
8574
|
+
export type MissionApplicationProposedRatesDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
8575
|
+
/**
|
|
8576
|
+
* Select specific fields to fetch from the MissionApplicationProposedRates
|
|
8577
|
+
*/
|
|
8578
|
+
select?: MissionApplicationProposedRatesSelect<ExtArgs> | null
|
|
8579
|
+
}
|
|
8580
|
+
|
|
8581
|
+
|
|
8512
8582
|
/**
|
|
8513
8583
|
* Model MissionPrefillRole
|
|
8514
8584
|
*/
|
|
@@ -26609,6 +26679,7 @@ export namespace Prisma {
|
|
|
26609
26679
|
roleHistory?: boolean | RoleHistoryEntryDefaultArgs<ExtArgs>
|
|
26610
26680
|
changes?: boolean | MissionApplicationChangesDefaultArgs<ExtArgs>
|
|
26611
26681
|
analysis?: boolean | MissionApplicationAnalysisObjectDefaultArgs<ExtArgs>
|
|
26682
|
+
proposedRates?: boolean | MissionApplicationProposedRatesDefaultArgs<ExtArgs>
|
|
26612
26683
|
userModel?: boolean | UserDefaultArgs<ExtArgs>
|
|
26613
26684
|
}, ExtArgs["result"]["missionApplication"]>
|
|
26614
26685
|
|
|
@@ -26670,6 +26741,7 @@ export namespace Prisma {
|
|
|
26670
26741
|
roleHistory: Prisma.$RoleHistoryEntryPayload[]
|
|
26671
26742
|
changes: Prisma.$MissionApplicationChangesPayload | null
|
|
26672
26743
|
analysis: Prisma.$MissionApplicationAnalysisObjectPayload | null
|
|
26744
|
+
proposedRates: Prisma.$MissionApplicationProposedRatesPayload | null
|
|
26673
26745
|
}
|
|
26674
26746
|
}
|
|
26675
26747
|
|
|
@@ -41860,6 +41932,7 @@ export namespace Prisma {
|
|
|
41860
41932
|
roleHistory?: RoleHistoryEntryCompositeListFilter | RoleHistoryEntryObjectEqualityInput[]
|
|
41861
41933
|
changes?: XOR<MissionApplicationChangesNullableCompositeFilter, MissionApplicationChangesObjectEqualityInput> | null
|
|
41862
41934
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableCompositeFilter, MissionApplicationAnalysisObjectObjectEqualityInput> | null
|
|
41935
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableCompositeFilter, MissionApplicationProposedRatesObjectEqualityInput> | null
|
|
41863
41936
|
userModel?: XOR<UserRelationFilter, UserWhereInput>
|
|
41864
41937
|
}
|
|
41865
41938
|
|
|
@@ -41890,6 +41963,7 @@ export namespace Prisma {
|
|
|
41890
41963
|
roleHistory?: RoleHistoryEntryOrderByCompositeAggregateInput
|
|
41891
41964
|
changes?: MissionApplicationChangesOrderByInput
|
|
41892
41965
|
analysis?: MissionApplicationAnalysisObjectOrderByInput
|
|
41966
|
+
proposedRates?: MissionApplicationProposedRatesOrderByInput
|
|
41893
41967
|
userModel?: UserOrderByWithRelationInput
|
|
41894
41968
|
}
|
|
41895
41969
|
|
|
@@ -41923,6 +41997,7 @@ export namespace Prisma {
|
|
|
41923
41997
|
roleHistory?: RoleHistoryEntryCompositeListFilter | RoleHistoryEntryObjectEqualityInput[]
|
|
41924
41998
|
changes?: XOR<MissionApplicationChangesNullableCompositeFilter, MissionApplicationChangesObjectEqualityInput> | null
|
|
41925
41999
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableCompositeFilter, MissionApplicationAnalysisObjectObjectEqualityInput> | null
|
|
42000
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableCompositeFilter, MissionApplicationProposedRatesObjectEqualityInput> | null
|
|
41926
42001
|
userModel?: XOR<UserRelationFilter, UserWhereInput>
|
|
41927
42002
|
}, "aid">
|
|
41928
42003
|
|
|
@@ -44992,6 +45067,7 @@ export namespace Prisma {
|
|
|
44992
45067
|
roleHistory?: XOR<RoleHistoryEntryListCreateEnvelopeInput, RoleHistoryEntryCreateInput> | RoleHistoryEntryCreateInput[]
|
|
44993
45068
|
changes?: XOR<MissionApplicationChangesNullableCreateEnvelopeInput, MissionApplicationChangesCreateInput> | null
|
|
44994
45069
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableCreateEnvelopeInput, MissionApplicationAnalysisObjectCreateInput> | null
|
|
45070
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableCreateEnvelopeInput, MissionApplicationProposedRatesCreateInput> | null
|
|
44995
45071
|
userModel: UserCreateNestedOneWithoutMissionApplicationInput
|
|
44996
45072
|
}
|
|
44997
45073
|
|
|
@@ -45022,6 +45098,7 @@ export namespace Prisma {
|
|
|
45022
45098
|
roleHistory?: XOR<RoleHistoryEntryListCreateEnvelopeInput, RoleHistoryEntryCreateInput> | RoleHistoryEntryCreateInput[]
|
|
45023
45099
|
changes?: XOR<MissionApplicationChangesNullableCreateEnvelopeInput, MissionApplicationChangesCreateInput> | null
|
|
45024
45100
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableCreateEnvelopeInput, MissionApplicationAnalysisObjectCreateInput> | null
|
|
45101
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableCreateEnvelopeInput, MissionApplicationProposedRatesCreateInput> | null
|
|
45025
45102
|
}
|
|
45026
45103
|
|
|
45027
45104
|
export type MissionApplicationUpdateInput = {
|
|
@@ -45049,6 +45126,7 @@ export namespace Prisma {
|
|
|
45049
45126
|
roleHistory?: XOR<RoleHistoryEntryListUpdateEnvelopeInput, RoleHistoryEntryCreateInput> | RoleHistoryEntryCreateInput[]
|
|
45050
45127
|
changes?: XOR<MissionApplicationChangesNullableUpdateEnvelopeInput, MissionApplicationChangesCreateInput> | null
|
|
45051
45128
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableUpdateEnvelopeInput, MissionApplicationAnalysisObjectCreateInput> | null
|
|
45129
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableUpdateEnvelopeInput, MissionApplicationProposedRatesCreateInput> | null
|
|
45052
45130
|
userModel?: UserUpdateOneRequiredWithoutMissionApplicationNestedInput
|
|
45053
45131
|
}
|
|
45054
45132
|
|
|
@@ -45078,6 +45156,7 @@ export namespace Prisma {
|
|
|
45078
45156
|
roleHistory?: XOR<RoleHistoryEntryListUpdateEnvelopeInput, RoleHistoryEntryCreateInput> | RoleHistoryEntryCreateInput[]
|
|
45079
45157
|
changes?: XOR<MissionApplicationChangesNullableUpdateEnvelopeInput, MissionApplicationChangesCreateInput> | null
|
|
45080
45158
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableUpdateEnvelopeInput, MissionApplicationAnalysisObjectCreateInput> | null
|
|
45159
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableUpdateEnvelopeInput, MissionApplicationProposedRatesCreateInput> | null
|
|
45081
45160
|
}
|
|
45082
45161
|
|
|
45083
45162
|
export type MissionApplicationCreateManyInput = {
|
|
@@ -45107,6 +45186,7 @@ export namespace Prisma {
|
|
|
45107
45186
|
roleHistory?: XOR<RoleHistoryEntryListCreateEnvelopeInput, RoleHistoryEntryCreateInput> | RoleHistoryEntryCreateInput[]
|
|
45108
45187
|
changes?: XOR<MissionApplicationChangesNullableCreateEnvelopeInput, MissionApplicationChangesCreateInput> | null
|
|
45109
45188
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableCreateEnvelopeInput, MissionApplicationAnalysisObjectCreateInput> | null
|
|
45189
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableCreateEnvelopeInput, MissionApplicationProposedRatesCreateInput> | null
|
|
45110
45190
|
}
|
|
45111
45191
|
|
|
45112
45192
|
export type MissionApplicationUpdateManyMutationInput = {
|
|
@@ -45134,6 +45214,7 @@ export namespace Prisma {
|
|
|
45134
45214
|
roleHistory?: XOR<RoleHistoryEntryListUpdateEnvelopeInput, RoleHistoryEntryCreateInput> | RoleHistoryEntryCreateInput[]
|
|
45135
45215
|
changes?: XOR<MissionApplicationChangesNullableUpdateEnvelopeInput, MissionApplicationChangesCreateInput> | null
|
|
45136
45216
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableUpdateEnvelopeInput, MissionApplicationAnalysisObjectCreateInput> | null
|
|
45217
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableUpdateEnvelopeInput, MissionApplicationProposedRatesCreateInput> | null
|
|
45137
45218
|
}
|
|
45138
45219
|
|
|
45139
45220
|
export type MissionApplicationUncheckedUpdateManyInput = {
|
|
@@ -45162,6 +45243,7 @@ export namespace Prisma {
|
|
|
45162
45243
|
roleHistory?: XOR<RoleHistoryEntryListUpdateEnvelopeInput, RoleHistoryEntryCreateInput> | RoleHistoryEntryCreateInput[]
|
|
45163
45244
|
changes?: XOR<MissionApplicationChangesNullableUpdateEnvelopeInput, MissionApplicationChangesCreateInput> | null
|
|
45164
45245
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableUpdateEnvelopeInput, MissionApplicationAnalysisObjectCreateInput> | null
|
|
45246
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableUpdateEnvelopeInput, MissionApplicationProposedRatesCreateInput> | null
|
|
45165
45247
|
}
|
|
45166
45248
|
|
|
45167
45249
|
export type MissionPrefillCreateInput = {
|
|
@@ -48670,6 +48752,20 @@ export namespace Prisma {
|
|
|
48670
48752
|
gptConfigId: string
|
|
48671
48753
|
}
|
|
48672
48754
|
|
|
48755
|
+
export type MissionApplicationProposedRatesNullableCompositeFilter = {
|
|
48756
|
+
equals?: MissionApplicationProposedRatesObjectEqualityInput | null
|
|
48757
|
+
is?: MissionApplicationProposedRatesWhereInput | null
|
|
48758
|
+
isNot?: MissionApplicationProposedRatesWhereInput | null
|
|
48759
|
+
isSet?: boolean
|
|
48760
|
+
}
|
|
48761
|
+
|
|
48762
|
+
export type MissionApplicationProposedRatesObjectEqualityInput = {
|
|
48763
|
+
builderHourlyRate?: number | null
|
|
48764
|
+
clientHourlyRate?: number | null
|
|
48765
|
+
builderMonthlyRate?: number | null
|
|
48766
|
+
clientMonthlyRate?: number | null
|
|
48767
|
+
}
|
|
48768
|
+
|
|
48673
48769
|
export type MissionApplicationRateRangeOrderByInput = {
|
|
48674
48770
|
min?: SortOrder
|
|
48675
48771
|
max?: SortOrder
|
|
@@ -48730,6 +48826,13 @@ export namespace Prisma {
|
|
|
48730
48826
|
gptConfigId?: SortOrder
|
|
48731
48827
|
}
|
|
48732
48828
|
|
|
48829
|
+
export type MissionApplicationProposedRatesOrderByInput = {
|
|
48830
|
+
builderHourlyRate?: SortOrder
|
|
48831
|
+
clientHourlyRate?: SortOrder
|
|
48832
|
+
builderMonthlyRate?: SortOrder
|
|
48833
|
+
clientMonthlyRate?: SortOrder
|
|
48834
|
+
}
|
|
48835
|
+
|
|
48733
48836
|
export type MissionApplicationCountOrderByAggregateInput = {
|
|
48734
48837
|
aid?: SortOrder
|
|
48735
48838
|
uid?: SortOrder
|
|
@@ -51972,6 +52075,17 @@ export namespace Prisma {
|
|
|
51972
52075
|
gptConfigId: string
|
|
51973
52076
|
}
|
|
51974
52077
|
|
|
52078
|
+
export type MissionApplicationProposedRatesNullableCreateEnvelopeInput = {
|
|
52079
|
+
set?: MissionApplicationProposedRatesCreateInput | null
|
|
52080
|
+
}
|
|
52081
|
+
|
|
52082
|
+
export type MissionApplicationProposedRatesCreateInput = {
|
|
52083
|
+
builderHourlyRate?: number | null
|
|
52084
|
+
clientHourlyRate?: number | null
|
|
52085
|
+
builderMonthlyRate?: number | null
|
|
52086
|
+
clientMonthlyRate?: number | null
|
|
52087
|
+
}
|
|
52088
|
+
|
|
51975
52089
|
export type UserCreateNestedOneWithoutMissionApplicationInput = {
|
|
51976
52090
|
create?: XOR<UserCreateWithoutMissionApplicationInput, UserUncheckedCreateWithoutMissionApplicationInput>
|
|
51977
52091
|
connectOrCreate?: UserCreateOrConnectWithoutMissionApplicationInput
|
|
@@ -52049,6 +52163,12 @@ export namespace Prisma {
|
|
|
52049
52163
|
unset?: boolean
|
|
52050
52164
|
}
|
|
52051
52165
|
|
|
52166
|
+
export type MissionApplicationProposedRatesNullableUpdateEnvelopeInput = {
|
|
52167
|
+
set?: MissionApplicationProposedRatesCreateInput | null
|
|
52168
|
+
upsert?: MissionApplicationProposedRatesUpsertInput
|
|
52169
|
+
unset?: boolean
|
|
52170
|
+
}
|
|
52171
|
+
|
|
52052
52172
|
export type UserUpdateOneRequiredWithoutMissionApplicationNestedInput = {
|
|
52053
52173
|
create?: XOR<UserCreateWithoutMissionApplicationInput, UserUncheckedCreateWithoutMissionApplicationInput>
|
|
52054
52174
|
connectOrCreate?: UserCreateOrConnectWithoutMissionApplicationInput
|
|
@@ -54865,6 +54985,16 @@ export namespace Prisma {
|
|
|
54865
54985
|
locations?: number | null
|
|
54866
54986
|
}
|
|
54867
54987
|
|
|
54988
|
+
export type MissionApplicationProposedRatesWhereInput = {
|
|
54989
|
+
AND?: MissionApplicationProposedRatesWhereInput | MissionApplicationProposedRatesWhereInput[]
|
|
54990
|
+
OR?: MissionApplicationProposedRatesWhereInput[]
|
|
54991
|
+
NOT?: MissionApplicationProposedRatesWhereInput | MissionApplicationProposedRatesWhereInput[]
|
|
54992
|
+
builderHourlyRate?: FloatNullableFilter<"MissionApplicationProposedRates"> | number | null
|
|
54993
|
+
clientHourlyRate?: FloatNullableFilter<"MissionApplicationProposedRates"> | number | null
|
|
54994
|
+
builderMonthlyRate?: FloatNullableFilter<"MissionApplicationProposedRates"> | number | null
|
|
54995
|
+
clientMonthlyRate?: FloatNullableFilter<"MissionApplicationProposedRates"> | number | null
|
|
54996
|
+
}
|
|
54997
|
+
|
|
54868
54998
|
export type LocalHourRangeOrderByCompositeAggregateInput = {
|
|
54869
54999
|
_count?: SortOrder
|
|
54870
55000
|
}
|
|
@@ -60925,6 +61055,11 @@ export namespace Prisma {
|
|
|
60925
61055
|
update: MissionApplicationAnalysisObjectUpdateInput
|
|
60926
61056
|
}
|
|
60927
61057
|
|
|
61058
|
+
export type MissionApplicationProposedRatesUpsertInput = {
|
|
61059
|
+
set: MissionApplicationProposedRatesCreateInput | null
|
|
61060
|
+
update: MissionApplicationProposedRatesUpdateInput
|
|
61061
|
+
}
|
|
61062
|
+
|
|
60928
61063
|
export type UserUpsertWithoutMissionApplicationInput = {
|
|
60929
61064
|
update: XOR<UserUpdateWithoutMissionApplicationInput, UserUncheckedUpdateWithoutMissionApplicationInput>
|
|
60930
61065
|
create: XOR<UserCreateWithoutMissionApplicationInput, UserUncheckedCreateWithoutMissionApplicationInput>
|
|
@@ -63955,6 +64090,7 @@ export namespace Prisma {
|
|
|
63955
64090
|
roleHistory?: XOR<RoleHistoryEntryListCreateEnvelopeInput, RoleHistoryEntryCreateInput> | RoleHistoryEntryCreateInput[]
|
|
63956
64091
|
changes?: XOR<MissionApplicationChangesNullableCreateEnvelopeInput, MissionApplicationChangesCreateInput> | null
|
|
63957
64092
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableCreateEnvelopeInput, MissionApplicationAnalysisObjectCreateInput> | null
|
|
64093
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableCreateEnvelopeInput, MissionApplicationProposedRatesCreateInput> | null
|
|
63958
64094
|
}
|
|
63959
64095
|
|
|
63960
64096
|
export type MissionApplicationUncheckedCreateWithoutUserModelInput = {
|
|
@@ -63983,6 +64119,7 @@ export namespace Prisma {
|
|
|
63983
64119
|
roleHistory?: XOR<RoleHistoryEntryListCreateEnvelopeInput, RoleHistoryEntryCreateInput> | RoleHistoryEntryCreateInput[]
|
|
63984
64120
|
changes?: XOR<MissionApplicationChangesNullableCreateEnvelopeInput, MissionApplicationChangesCreateInput> | null
|
|
63985
64121
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableCreateEnvelopeInput, MissionApplicationAnalysisObjectCreateInput> | null
|
|
64122
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableCreateEnvelopeInput, MissionApplicationProposedRatesCreateInput> | null
|
|
63986
64123
|
}
|
|
63987
64124
|
|
|
63988
64125
|
export type MissionApplicationCreateOrConnectWithoutUserModelInput = {
|
|
@@ -68242,6 +68379,13 @@ export namespace Prisma {
|
|
|
68242
68379
|
gptConfigId?: StringFieldUpdateOperationsInput | string
|
|
68243
68380
|
}
|
|
68244
68381
|
|
|
68382
|
+
export type MissionApplicationProposedRatesUpdateInput = {
|
|
68383
|
+
builderHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
68384
|
+
clientHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
68385
|
+
builderMonthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
68386
|
+
clientMonthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
68387
|
+
}
|
|
68388
|
+
|
|
68245
68389
|
export type MissionPrefillRoleUpdateInput = {
|
|
68246
68390
|
categoryId?: StringFieldUpdateOperationsInput | string
|
|
68247
68391
|
headline?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -68808,6 +68952,7 @@ export namespace Prisma {
|
|
|
68808
68952
|
roleHistory?: XOR<RoleHistoryEntryListCreateEnvelopeInput, RoleHistoryEntryCreateInput> | RoleHistoryEntryCreateInput[]
|
|
68809
68953
|
changes?: XOR<MissionApplicationChangesNullableCreateEnvelopeInput, MissionApplicationChangesCreateInput> | null
|
|
68810
68954
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableCreateEnvelopeInput, MissionApplicationAnalysisObjectCreateInput> | null
|
|
68955
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableCreateEnvelopeInput, MissionApplicationProposedRatesCreateInput> | null
|
|
68811
68956
|
}
|
|
68812
68957
|
|
|
68813
68958
|
export type ProposalCreateManyCreatedByModelInput = {
|
|
@@ -69686,6 +69831,7 @@ export namespace Prisma {
|
|
|
69686
69831
|
roleHistory?: XOR<RoleHistoryEntryListUpdateEnvelopeInput, RoleHistoryEntryCreateInput> | RoleHistoryEntryCreateInput[]
|
|
69687
69832
|
changes?: XOR<MissionApplicationChangesNullableUpdateEnvelopeInput, MissionApplicationChangesCreateInput> | null
|
|
69688
69833
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableUpdateEnvelopeInput, MissionApplicationAnalysisObjectCreateInput> | null
|
|
69834
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableUpdateEnvelopeInput, MissionApplicationProposedRatesCreateInput> | null
|
|
69689
69835
|
}
|
|
69690
69836
|
|
|
69691
69837
|
export type MissionApplicationUncheckedUpdateWithoutUserModelInput = {
|
|
@@ -69713,6 +69859,7 @@ export namespace Prisma {
|
|
|
69713
69859
|
roleHistory?: XOR<RoleHistoryEntryListUpdateEnvelopeInput, RoleHistoryEntryCreateInput> | RoleHistoryEntryCreateInput[]
|
|
69714
69860
|
changes?: XOR<MissionApplicationChangesNullableUpdateEnvelopeInput, MissionApplicationChangesCreateInput> | null
|
|
69715
69861
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableUpdateEnvelopeInput, MissionApplicationAnalysisObjectCreateInput> | null
|
|
69862
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableUpdateEnvelopeInput, MissionApplicationProposedRatesCreateInput> | null
|
|
69716
69863
|
}
|
|
69717
69864
|
|
|
69718
69865
|
export type MissionApplicationUncheckedUpdateManyWithoutUserModelInput = {
|
|
@@ -69740,6 +69887,7 @@ export namespace Prisma {
|
|
|
69740
69887
|
roleHistory?: XOR<RoleHistoryEntryListUpdateEnvelopeInput, RoleHistoryEntryCreateInput> | RoleHistoryEntryCreateInput[]
|
|
69741
69888
|
changes?: XOR<MissionApplicationChangesNullableUpdateEnvelopeInput, MissionApplicationChangesCreateInput> | null
|
|
69742
69889
|
analysis?: XOR<MissionApplicationAnalysisObjectNullableUpdateEnvelopeInput, MissionApplicationAnalysisObjectCreateInput> | null
|
|
69890
|
+
proposedRates?: XOR<MissionApplicationProposedRatesNullableUpdateEnvelopeInput, MissionApplicationProposedRatesCreateInput> | null
|
|
69743
69891
|
}
|
|
69744
69892
|
|
|
69745
69893
|
export type ProposalUpdateWithoutCreatedByModelInput = {
|
|
@@ -71915,6 +72063,10 @@ export namespace Prisma {
|
|
|
71915
72063
|
* @deprecated Use MissionApplicationAnalysisObjectDefaultArgs instead
|
|
71916
72064
|
*/
|
|
71917
72065
|
export type MissionApplicationAnalysisObjectArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MissionApplicationAnalysisObjectDefaultArgs<ExtArgs>
|
|
72066
|
+
/**
|
|
72067
|
+
* @deprecated Use MissionApplicationProposedRatesDefaultArgs instead
|
|
72068
|
+
*/
|
|
72069
|
+
export type MissionApplicationProposedRatesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MissionApplicationProposedRatesDefaultArgs<ExtArgs>
|
|
71918
72070
|
/**
|
|
71919
72071
|
* @deprecated Use MissionPrefillRoleDefaultArgs instead
|
|
71920
72072
|
*/
|