@a_team/prisma 2.1.0 → 2.1.2
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 +9 -4
- package/dist/client/index-browser.js +2 -1
- package/dist/client/index.d.ts +35 -1
- package/dist/client/index.js +13 -4
- package/dist/client/libquery_engine-linux-musl-openssl-3.0.x.so.node +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +2 -1
- package/dist/client/wasm.js +2 -1
- package/package.json +1 -1
package/dist/client/index.d.ts
CHANGED
|
@@ -7018,6 +7018,7 @@ export namespace Prisma {
|
|
|
7018
7018
|
role: string | null
|
|
7019
7019
|
custom: boolean | null
|
|
7020
7020
|
source: $Enums.ContractSource | null
|
|
7021
|
+
documentTitle: string | null
|
|
7021
7022
|
}
|
|
7022
7023
|
|
|
7023
7024
|
export type ContractMaxAggregateOutputType = {
|
|
@@ -7031,6 +7032,7 @@ export namespace Prisma {
|
|
|
7031
7032
|
role: string | null
|
|
7032
7033
|
custom: boolean | null
|
|
7033
7034
|
source: $Enums.ContractSource | null
|
|
7035
|
+
documentTitle: string | null
|
|
7034
7036
|
}
|
|
7035
7037
|
|
|
7036
7038
|
export type ContractCountAggregateOutputType = {
|
|
@@ -7044,6 +7046,7 @@ export namespace Prisma {
|
|
|
7044
7046
|
role: number
|
|
7045
7047
|
custom: number
|
|
7046
7048
|
source: number
|
|
7049
|
+
documentTitle: number
|
|
7047
7050
|
_all: number
|
|
7048
7051
|
}
|
|
7049
7052
|
|
|
@@ -7059,6 +7062,7 @@ export namespace Prisma {
|
|
|
7059
7062
|
role?: true
|
|
7060
7063
|
custom?: true
|
|
7061
7064
|
source?: true
|
|
7065
|
+
documentTitle?: true
|
|
7062
7066
|
}
|
|
7063
7067
|
|
|
7064
7068
|
export type ContractMaxAggregateInputType = {
|
|
@@ -7072,6 +7076,7 @@ export namespace Prisma {
|
|
|
7072
7076
|
role?: true
|
|
7073
7077
|
custom?: true
|
|
7074
7078
|
source?: true
|
|
7079
|
+
documentTitle?: true
|
|
7075
7080
|
}
|
|
7076
7081
|
|
|
7077
7082
|
export type ContractCountAggregateInputType = {
|
|
@@ -7085,6 +7090,7 @@ export namespace Prisma {
|
|
|
7085
7090
|
role?: true
|
|
7086
7091
|
custom?: true
|
|
7087
7092
|
source?: true
|
|
7093
|
+
documentTitle?: true
|
|
7088
7094
|
_all?: true
|
|
7089
7095
|
}
|
|
7090
7096
|
|
|
@@ -7171,6 +7177,7 @@ export namespace Prisma {
|
|
|
7171
7177
|
role: string | null
|
|
7172
7178
|
custom: boolean | null
|
|
7173
7179
|
source: $Enums.ContractSource | null
|
|
7180
|
+
documentTitle: string | null
|
|
7174
7181
|
_count: ContractCountAggregateOutputType | null
|
|
7175
7182
|
_min: ContractMinAggregateOutputType | null
|
|
7176
7183
|
_max: ContractMaxAggregateOutputType | null
|
|
@@ -7203,6 +7210,7 @@ export namespace Prisma {
|
|
|
7203
7210
|
custom?: boolean
|
|
7204
7211
|
pandadocMetadata?: boolean | PandadocMetadataDefaultArgs<ExtArgs>
|
|
7205
7212
|
source?: boolean
|
|
7213
|
+
documentTitle?: boolean
|
|
7206
7214
|
mission?: boolean | Contract$missionArgs<ExtArgs>
|
|
7207
7215
|
}, ExtArgs["result"]["contract"]>
|
|
7208
7216
|
|
|
@@ -7218,6 +7226,7 @@ export namespace Prisma {
|
|
|
7218
7226
|
role?: boolean
|
|
7219
7227
|
custom?: boolean
|
|
7220
7228
|
source?: boolean
|
|
7229
|
+
documentTitle?: boolean
|
|
7221
7230
|
}
|
|
7222
7231
|
|
|
7223
7232
|
export type ContractInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -7240,6 +7249,7 @@ export namespace Prisma {
|
|
|
7240
7249
|
role: string | null
|
|
7241
7250
|
custom: boolean | null
|
|
7242
7251
|
source: $Enums.ContractSource | null
|
|
7252
|
+
documentTitle: string | null
|
|
7243
7253
|
}, ExtArgs["result"]["contract"]>
|
|
7244
7254
|
composites: {
|
|
7245
7255
|
parties: Prisma.$ContractPartyPayload[]
|
|
@@ -7646,6 +7656,7 @@ export namespace Prisma {
|
|
|
7646
7656
|
readonly role: FieldRef<"Contract", 'String'>
|
|
7647
7657
|
readonly custom: FieldRef<"Contract", 'Boolean'>
|
|
7648
7658
|
readonly source: FieldRef<"Contract", 'ContractSource'>
|
|
7659
|
+
readonly documentTitle: FieldRef<"Contract", 'String'>
|
|
7649
7660
|
}
|
|
7650
7661
|
|
|
7651
7662
|
|
|
@@ -14472,7 +14483,8 @@ export namespace Prisma {
|
|
|
14472
14483
|
missionId: 'missionId',
|
|
14473
14484
|
role: 'role',
|
|
14474
14485
|
custom: 'custom',
|
|
14475
|
-
source: 'source'
|
|
14486
|
+
source: 'source',
|
|
14487
|
+
documentTitle: 'documentTitle'
|
|
14476
14488
|
};
|
|
14477
14489
|
|
|
14478
14490
|
export type ContractScalarFieldEnum = (typeof ContractScalarFieldEnum)[keyof typeof ContractScalarFieldEnum]
|
|
@@ -15012,6 +15024,7 @@ export namespace Prisma {
|
|
|
15012
15024
|
custom?: BoolNullableFilter<"Contract"> | boolean | null
|
|
15013
15025
|
pandadocMetadata?: XOR<PandadocMetadataNullableCompositeFilter, PandadocMetadataObjectEqualityInput> | null
|
|
15014
15026
|
source?: EnumContractSourceNullableFilter<"Contract"> | $Enums.ContractSource | null
|
|
15027
|
+
documentTitle?: StringNullableFilter<"Contract"> | string | null
|
|
15015
15028
|
mission?: XOR<MissionNullableRelationFilter, MissionWhereInput> | null
|
|
15016
15029
|
}
|
|
15017
15030
|
|
|
@@ -15028,6 +15041,7 @@ export namespace Prisma {
|
|
|
15028
15041
|
custom?: SortOrder
|
|
15029
15042
|
pandadocMetadata?: PandadocMetadataOrderByInput
|
|
15030
15043
|
source?: SortOrder
|
|
15044
|
+
documentTitle?: SortOrder
|
|
15031
15045
|
mission?: MissionOrderByWithRelationInput
|
|
15032
15046
|
}
|
|
15033
15047
|
|
|
@@ -15047,6 +15061,7 @@ export namespace Prisma {
|
|
|
15047
15061
|
custom?: BoolNullableFilter<"Contract"> | boolean | null
|
|
15048
15062
|
pandadocMetadata?: XOR<PandadocMetadataNullableCompositeFilter, PandadocMetadataObjectEqualityInput> | null
|
|
15049
15063
|
source?: EnumContractSourceNullableFilter<"Contract"> | $Enums.ContractSource | null
|
|
15064
|
+
documentTitle?: StringNullableFilter<"Contract"> | string | null
|
|
15050
15065
|
mission?: XOR<MissionNullableRelationFilter, MissionWhereInput> | null
|
|
15051
15066
|
}, "sid">
|
|
15052
15067
|
|
|
@@ -15061,6 +15076,7 @@ export namespace Prisma {
|
|
|
15061
15076
|
role?: SortOrder
|
|
15062
15077
|
custom?: SortOrder
|
|
15063
15078
|
source?: SortOrder
|
|
15079
|
+
documentTitle?: SortOrder
|
|
15064
15080
|
_count?: ContractCountOrderByAggregateInput
|
|
15065
15081
|
_max?: ContractMaxOrderByAggregateInput
|
|
15066
15082
|
_min?: ContractMinOrderByAggregateInput
|
|
@@ -15080,6 +15096,7 @@ export namespace Prisma {
|
|
|
15080
15096
|
role?: StringNullableWithAggregatesFilter<"Contract"> | string | null
|
|
15081
15097
|
custom?: BoolNullableWithAggregatesFilter<"Contract"> | boolean | null
|
|
15082
15098
|
source?: EnumContractSourceNullableWithAggregatesFilter<"Contract"> | $Enums.ContractSource | null
|
|
15099
|
+
documentTitle?: StringNullableWithAggregatesFilter<"Contract"> | string | null
|
|
15083
15100
|
}
|
|
15084
15101
|
|
|
15085
15102
|
export type MissionWhereInput = {
|
|
@@ -16045,6 +16062,7 @@ export namespace Prisma {
|
|
|
16045
16062
|
custom?: boolean | null
|
|
16046
16063
|
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16047
16064
|
source?: $Enums.ContractSource | null
|
|
16065
|
+
documentTitle?: string | null
|
|
16048
16066
|
mission?: MissionCreateNestedOneWithoutContractsInput
|
|
16049
16067
|
}
|
|
16050
16068
|
|
|
@@ -16061,6 +16079,7 @@ export namespace Prisma {
|
|
|
16061
16079
|
custom?: boolean | null
|
|
16062
16080
|
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16063
16081
|
source?: $Enums.ContractSource | null
|
|
16082
|
+
documentTitle?: string | null
|
|
16064
16083
|
}
|
|
16065
16084
|
|
|
16066
16085
|
export type ContractUpdateInput = {
|
|
@@ -16074,6 +16093,7 @@ export namespace Prisma {
|
|
|
16074
16093
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
16075
16094
|
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16076
16095
|
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
16096
|
+
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16077
16097
|
mission?: MissionUpdateOneWithoutContractsNestedInput
|
|
16078
16098
|
}
|
|
16079
16099
|
|
|
@@ -16089,6 +16109,7 @@ export namespace Prisma {
|
|
|
16089
16109
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
16090
16110
|
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16091
16111
|
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
16112
|
+
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16092
16113
|
}
|
|
16093
16114
|
|
|
16094
16115
|
export type ContractCreateManyInput = {
|
|
@@ -16104,6 +16125,7 @@ export namespace Prisma {
|
|
|
16104
16125
|
custom?: boolean | null
|
|
16105
16126
|
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16106
16127
|
source?: $Enums.ContractSource | null
|
|
16128
|
+
documentTitle?: string | null
|
|
16107
16129
|
}
|
|
16108
16130
|
|
|
16109
16131
|
export type ContractUpdateManyMutationInput = {
|
|
@@ -16117,6 +16139,7 @@ export namespace Prisma {
|
|
|
16117
16139
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
16118
16140
|
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16119
16141
|
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
16142
|
+
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16120
16143
|
}
|
|
16121
16144
|
|
|
16122
16145
|
export type ContractUncheckedUpdateManyInput = {
|
|
@@ -16131,6 +16154,7 @@ export namespace Prisma {
|
|
|
16131
16154
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
16132
16155
|
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16133
16156
|
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
16157
|
+
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16134
16158
|
}
|
|
16135
16159
|
|
|
16136
16160
|
export type MissionCreateInput = {
|
|
@@ -17353,6 +17377,7 @@ export namespace Prisma {
|
|
|
17353
17377
|
role?: SortOrder
|
|
17354
17378
|
custom?: SortOrder
|
|
17355
17379
|
source?: SortOrder
|
|
17380
|
+
documentTitle?: SortOrder
|
|
17356
17381
|
}
|
|
17357
17382
|
|
|
17358
17383
|
export type ContractMaxOrderByAggregateInput = {
|
|
@@ -17366,6 +17391,7 @@ export namespace Prisma {
|
|
|
17366
17391
|
role?: SortOrder
|
|
17367
17392
|
custom?: SortOrder
|
|
17368
17393
|
source?: SortOrder
|
|
17394
|
+
documentTitle?: SortOrder
|
|
17369
17395
|
}
|
|
17370
17396
|
|
|
17371
17397
|
export type ContractMinOrderByAggregateInput = {
|
|
@@ -17379,6 +17405,7 @@ export namespace Prisma {
|
|
|
17379
17405
|
role?: SortOrder
|
|
17380
17406
|
custom?: SortOrder
|
|
17381
17407
|
source?: SortOrder
|
|
17408
|
+
documentTitle?: SortOrder
|
|
17382
17409
|
}
|
|
17383
17410
|
|
|
17384
17411
|
export type EnumContractStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -20950,6 +20977,7 @@ export namespace Prisma {
|
|
|
20950
20977
|
custom?: boolean | null
|
|
20951
20978
|
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
20952
20979
|
source?: $Enums.ContractSource | null
|
|
20980
|
+
documentTitle?: string | null
|
|
20953
20981
|
}
|
|
20954
20982
|
|
|
20955
20983
|
export type ContractUncheckedCreateWithoutMissionInput = {
|
|
@@ -20964,6 +20992,7 @@ export namespace Prisma {
|
|
|
20964
20992
|
custom?: boolean | null
|
|
20965
20993
|
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
20966
20994
|
source?: $Enums.ContractSource | null
|
|
20995
|
+
documentTitle?: string | null
|
|
20967
20996
|
}
|
|
20968
20997
|
|
|
20969
20998
|
export type ContractCreateOrConnectWithoutMissionInput = {
|
|
@@ -21241,6 +21270,7 @@ export namespace Prisma {
|
|
|
21241
21270
|
role?: StringNullableFilter<"Contract"> | string | null
|
|
21242
21271
|
custom?: BoolNullableFilter<"Contract"> | boolean | null
|
|
21243
21272
|
source?: EnumContractSourceNullableFilter<"Contract"> | $Enums.ContractSource | null
|
|
21273
|
+
documentTitle?: StringNullableFilter<"Contract"> | string | null
|
|
21244
21274
|
}
|
|
21245
21275
|
|
|
21246
21276
|
export type ClientRoleQuestionCreateInput = {
|
|
@@ -22862,6 +22892,7 @@ export namespace Prisma {
|
|
|
22862
22892
|
custom?: boolean | null
|
|
22863
22893
|
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
22864
22894
|
source?: $Enums.ContractSource | null
|
|
22895
|
+
documentTitle?: string | null
|
|
22865
22896
|
}
|
|
22866
22897
|
|
|
22867
22898
|
export type MissionsAttachedLinkUpdateInput = {
|
|
@@ -22943,6 +22974,7 @@ export namespace Prisma {
|
|
|
22943
22974
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
22944
22975
|
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
22945
22976
|
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
22977
|
+
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22946
22978
|
}
|
|
22947
22979
|
|
|
22948
22980
|
export type ContractUncheckedUpdateWithoutMissionInput = {
|
|
@@ -22956,6 +22988,7 @@ export namespace Prisma {
|
|
|
22956
22988
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
22957
22989
|
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
22958
22990
|
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
22991
|
+
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22959
22992
|
}
|
|
22960
22993
|
|
|
22961
22994
|
export type ContractUncheckedUpdateManyWithoutMissionInput = {
|
|
@@ -22969,6 +23002,7 @@ export namespace Prisma {
|
|
|
22969
23002
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
22970
23003
|
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
22971
23004
|
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
23005
|
+
documentTitle?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22972
23006
|
}
|
|
22973
23007
|
|
|
22974
23008
|
export type AttachedLinkUpdateInput = {
|