@a_team/prisma 2.0.14 → 2.1.0
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 +11 -4
- package/dist/client/index-browser.js +8 -1
- package/dist/client/index.d.ts +157 -28
- package/dist/client/index.js +11 -4
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +17 -8
- package/dist/client/wasm.js +8 -1
- package/package.json +1 -1
|
@@ -155,7 +155,8 @@ exports.Prisma.ContractScalarFieldEnum = {
|
|
|
155
155
|
updatedAt: 'updatedAt',
|
|
156
156
|
missionId: 'missionId',
|
|
157
157
|
role: 'role',
|
|
158
|
-
custom: 'custom'
|
|
158
|
+
custom: 'custom',
|
|
159
|
+
source: 'source'
|
|
159
160
|
};
|
|
160
161
|
|
|
161
162
|
exports.Prisma.MissionScalarFieldEnum = {
|
|
@@ -285,6 +286,12 @@ exports.ContractType = exports.$Enums.ContractType = {
|
|
|
285
286
|
ClientContract: 'ClientContract'
|
|
286
287
|
};
|
|
287
288
|
|
|
289
|
+
exports.ContractSource = exports.$Enums.ContractSource = {
|
|
290
|
+
PandaDoc: 'PandaDoc',
|
|
291
|
+
Custom: 'Custom',
|
|
292
|
+
ATeamGenerated: 'ATeamGenerated'
|
|
293
|
+
};
|
|
294
|
+
|
|
288
295
|
exports.MissionSpecStatus = exports.$Enums.MissionSpecStatus = {
|
|
289
296
|
spec: 'spec',
|
|
290
297
|
formation: 'formation',
|
package/dist/client/index.d.ts
CHANGED
|
@@ -220,6 +220,15 @@ export const ContractType: {
|
|
|
220
220
|
export type ContractType = (typeof ContractType)[keyof typeof ContractType]
|
|
221
221
|
|
|
222
222
|
|
|
223
|
+
export const ContractSource: {
|
|
224
|
+
PandaDoc: 'PandaDoc',
|
|
225
|
+
Custom: 'Custom',
|
|
226
|
+
ATeamGenerated: 'ATeamGenerated'
|
|
227
|
+
};
|
|
228
|
+
|
|
229
|
+
export type ContractSource = (typeof ContractSource)[keyof typeof ContractSource]
|
|
230
|
+
|
|
231
|
+
|
|
223
232
|
export const MissionSpecStatus: {
|
|
224
233
|
spec: 'spec',
|
|
225
234
|
formation: 'formation',
|
|
@@ -249,6 +258,10 @@ export type ContractType = $Enums.ContractType
|
|
|
249
258
|
|
|
250
259
|
export const ContractType: typeof $Enums.ContractType
|
|
251
260
|
|
|
261
|
+
export type ContractSource = $Enums.ContractSource
|
|
262
|
+
|
|
263
|
+
export const ContractSource: typeof $Enums.ContractSource
|
|
264
|
+
|
|
252
265
|
export type MissionSpecStatus = $Enums.MissionSpecStatus
|
|
253
266
|
|
|
254
267
|
export const MissionSpecStatus: typeof $Enums.MissionSpecStatus
|
|
@@ -2507,11 +2520,15 @@ export namespace Prisma {
|
|
|
2507
2520
|
|
|
2508
2521
|
export type PandadocMetadataSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
2509
2522
|
id?: boolean
|
|
2523
|
+
hubspotDealId?: boolean
|
|
2524
|
+
hubspotCompanyId?: boolean
|
|
2510
2525
|
}, ExtArgs["result"]["pandadocMetadata"]>
|
|
2511
2526
|
|
|
2512
2527
|
|
|
2513
2528
|
export type PandadocMetadataSelectScalar = {
|
|
2514
2529
|
id?: boolean
|
|
2530
|
+
hubspotDealId?: boolean
|
|
2531
|
+
hubspotCompanyId?: boolean
|
|
2515
2532
|
}
|
|
2516
2533
|
|
|
2517
2534
|
|
|
@@ -2520,6 +2537,8 @@ export namespace Prisma {
|
|
|
2520
2537
|
objects: {}
|
|
2521
2538
|
scalars: {
|
|
2522
2539
|
id: string
|
|
2540
|
+
hubspotDealId: string | null
|
|
2541
|
+
hubspotCompanyId: string | null
|
|
2523
2542
|
}
|
|
2524
2543
|
composites: {}
|
|
2525
2544
|
}
|
|
@@ -2535,6 +2554,8 @@ export namespace Prisma {
|
|
|
2535
2554
|
*/
|
|
2536
2555
|
interface PandadocMetadataFieldRefs {
|
|
2537
2556
|
readonly id: FieldRef<"PandadocMetadata", 'String'>
|
|
2557
|
+
readonly hubspotDealId: FieldRef<"PandadocMetadata", 'String'>
|
|
2558
|
+
readonly hubspotCompanyId: FieldRef<"PandadocMetadata", 'String'>
|
|
2538
2559
|
}
|
|
2539
2560
|
|
|
2540
2561
|
|
|
@@ -6996,6 +7017,7 @@ export namespace Prisma {
|
|
|
6996
7017
|
missionId: string | null
|
|
6997
7018
|
role: string | null
|
|
6998
7019
|
custom: boolean | null
|
|
7020
|
+
source: $Enums.ContractSource | null
|
|
6999
7021
|
}
|
|
7000
7022
|
|
|
7001
7023
|
export type ContractMaxAggregateOutputType = {
|
|
@@ -7008,6 +7030,7 @@ export namespace Prisma {
|
|
|
7008
7030
|
missionId: string | null
|
|
7009
7031
|
role: string | null
|
|
7010
7032
|
custom: boolean | null
|
|
7033
|
+
source: $Enums.ContractSource | null
|
|
7011
7034
|
}
|
|
7012
7035
|
|
|
7013
7036
|
export type ContractCountAggregateOutputType = {
|
|
@@ -7020,6 +7043,7 @@ export namespace Prisma {
|
|
|
7020
7043
|
missionId: number
|
|
7021
7044
|
role: number
|
|
7022
7045
|
custom: number
|
|
7046
|
+
source: number
|
|
7023
7047
|
_all: number
|
|
7024
7048
|
}
|
|
7025
7049
|
|
|
@@ -7034,6 +7058,7 @@ export namespace Prisma {
|
|
|
7034
7058
|
missionId?: true
|
|
7035
7059
|
role?: true
|
|
7036
7060
|
custom?: true
|
|
7061
|
+
source?: true
|
|
7037
7062
|
}
|
|
7038
7063
|
|
|
7039
7064
|
export type ContractMaxAggregateInputType = {
|
|
@@ -7046,6 +7071,7 @@ export namespace Prisma {
|
|
|
7046
7071
|
missionId?: true
|
|
7047
7072
|
role?: true
|
|
7048
7073
|
custom?: true
|
|
7074
|
+
source?: true
|
|
7049
7075
|
}
|
|
7050
7076
|
|
|
7051
7077
|
export type ContractCountAggregateInputType = {
|
|
@@ -7058,6 +7084,7 @@ export namespace Prisma {
|
|
|
7058
7084
|
missionId?: true
|
|
7059
7085
|
role?: true
|
|
7060
7086
|
custom?: true
|
|
7087
|
+
source?: true
|
|
7061
7088
|
_all?: true
|
|
7062
7089
|
}
|
|
7063
7090
|
|
|
@@ -7143,6 +7170,7 @@ export namespace Prisma {
|
|
|
7143
7170
|
missionId: string | null
|
|
7144
7171
|
role: string | null
|
|
7145
7172
|
custom: boolean | null
|
|
7173
|
+
source: $Enums.ContractSource | null
|
|
7146
7174
|
_count: ContractCountAggregateOutputType | null
|
|
7147
7175
|
_min: ContractMinAggregateOutputType | null
|
|
7148
7176
|
_max: ContractMaxAggregateOutputType | null
|
|
@@ -7174,6 +7202,7 @@ export namespace Prisma {
|
|
|
7174
7202
|
role?: boolean
|
|
7175
7203
|
custom?: boolean
|
|
7176
7204
|
pandadocMetadata?: boolean | PandadocMetadataDefaultArgs<ExtArgs>
|
|
7205
|
+
source?: boolean
|
|
7177
7206
|
mission?: boolean | Contract$missionArgs<ExtArgs>
|
|
7178
7207
|
}, ExtArgs["result"]["contract"]>
|
|
7179
7208
|
|
|
@@ -7188,6 +7217,7 @@ export namespace Prisma {
|
|
|
7188
7217
|
missionId?: boolean
|
|
7189
7218
|
role?: boolean
|
|
7190
7219
|
custom?: boolean
|
|
7220
|
+
source?: boolean
|
|
7191
7221
|
}
|
|
7192
7222
|
|
|
7193
7223
|
export type ContractInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -7209,10 +7239,11 @@ export namespace Prisma {
|
|
|
7209
7239
|
missionId: string | null
|
|
7210
7240
|
role: string | null
|
|
7211
7241
|
custom: boolean | null
|
|
7242
|
+
source: $Enums.ContractSource | null
|
|
7212
7243
|
}, ExtArgs["result"]["contract"]>
|
|
7213
7244
|
composites: {
|
|
7214
7245
|
parties: Prisma.$ContractPartyPayload[]
|
|
7215
|
-
pandadocMetadata: Prisma.$PandadocMetadataPayload
|
|
7246
|
+
pandadocMetadata: Prisma.$PandadocMetadataPayload | null
|
|
7216
7247
|
}
|
|
7217
7248
|
}
|
|
7218
7249
|
|
|
@@ -7614,6 +7645,7 @@ export namespace Prisma {
|
|
|
7614
7645
|
readonly missionId: FieldRef<"Contract", 'String'>
|
|
7615
7646
|
readonly role: FieldRef<"Contract", 'String'>
|
|
7616
7647
|
readonly custom: FieldRef<"Contract", 'Boolean'>
|
|
7648
|
+
readonly source: FieldRef<"Contract", 'ContractSource'>
|
|
7617
7649
|
}
|
|
7618
7650
|
|
|
7619
7651
|
|
|
@@ -14439,7 +14471,8 @@ export namespace Prisma {
|
|
|
14439
14471
|
updatedAt: 'updatedAt',
|
|
14440
14472
|
missionId: 'missionId',
|
|
14441
14473
|
role: 'role',
|
|
14442
|
-
custom: 'custom'
|
|
14474
|
+
custom: 'custom',
|
|
14475
|
+
source: 'source'
|
|
14443
14476
|
};
|
|
14444
14477
|
|
|
14445
14478
|
export type ContractScalarFieldEnum = (typeof ContractScalarFieldEnum)[keyof typeof ContractScalarFieldEnum]
|
|
@@ -14654,6 +14687,20 @@ export namespace Prisma {
|
|
|
14654
14687
|
|
|
14655
14688
|
|
|
14656
14689
|
|
|
14690
|
+
/**
|
|
14691
|
+
* Reference to a field of type 'ContractSource'
|
|
14692
|
+
*/
|
|
14693
|
+
export type EnumContractSourceFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ContractSource'>
|
|
14694
|
+
|
|
14695
|
+
|
|
14696
|
+
|
|
14697
|
+
/**
|
|
14698
|
+
* Reference to a field of type 'ContractSource[]'
|
|
14699
|
+
*/
|
|
14700
|
+
export type ListEnumContractSourceFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ContractSource[]'>
|
|
14701
|
+
|
|
14702
|
+
|
|
14703
|
+
|
|
14657
14704
|
/**
|
|
14658
14705
|
* Reference to a field of type 'Float'
|
|
14659
14706
|
*/
|
|
@@ -14963,7 +15010,8 @@ export namespace Prisma {
|
|
|
14963
15010
|
missionId?: StringNullableFilter<"Contract"> | string | null
|
|
14964
15011
|
role?: StringNullableFilter<"Contract"> | string | null
|
|
14965
15012
|
custom?: BoolNullableFilter<"Contract"> | boolean | null
|
|
14966
|
-
pandadocMetadata?: XOR<
|
|
15013
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableCompositeFilter, PandadocMetadataObjectEqualityInput> | null
|
|
15014
|
+
source?: EnumContractSourceNullableFilter<"Contract"> | $Enums.ContractSource | null
|
|
14967
15015
|
mission?: XOR<MissionNullableRelationFilter, MissionWhereInput> | null
|
|
14968
15016
|
}
|
|
14969
15017
|
|
|
@@ -14979,6 +15027,7 @@ export namespace Prisma {
|
|
|
14979
15027
|
role?: SortOrder
|
|
14980
15028
|
custom?: SortOrder
|
|
14981
15029
|
pandadocMetadata?: PandadocMetadataOrderByInput
|
|
15030
|
+
source?: SortOrder
|
|
14982
15031
|
mission?: MissionOrderByWithRelationInput
|
|
14983
15032
|
}
|
|
14984
15033
|
|
|
@@ -14996,7 +15045,8 @@ export namespace Prisma {
|
|
|
14996
15045
|
missionId?: StringNullableFilter<"Contract"> | string | null
|
|
14997
15046
|
role?: StringNullableFilter<"Contract"> | string | null
|
|
14998
15047
|
custom?: BoolNullableFilter<"Contract"> | boolean | null
|
|
14999
|
-
pandadocMetadata?: XOR<
|
|
15048
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableCompositeFilter, PandadocMetadataObjectEqualityInput> | null
|
|
15049
|
+
source?: EnumContractSourceNullableFilter<"Contract"> | $Enums.ContractSource | null
|
|
15000
15050
|
mission?: XOR<MissionNullableRelationFilter, MissionWhereInput> | null
|
|
15001
15051
|
}, "sid">
|
|
15002
15052
|
|
|
@@ -15010,6 +15060,7 @@ export namespace Prisma {
|
|
|
15010
15060
|
missionId?: SortOrder
|
|
15011
15061
|
role?: SortOrder
|
|
15012
15062
|
custom?: SortOrder
|
|
15063
|
+
source?: SortOrder
|
|
15013
15064
|
_count?: ContractCountOrderByAggregateInput
|
|
15014
15065
|
_max?: ContractMaxOrderByAggregateInput
|
|
15015
15066
|
_min?: ContractMinOrderByAggregateInput
|
|
@@ -15028,6 +15079,7 @@ export namespace Prisma {
|
|
|
15028
15079
|
missionId?: StringNullableWithAggregatesFilter<"Contract"> | string | null
|
|
15029
15080
|
role?: StringNullableWithAggregatesFilter<"Contract"> | string | null
|
|
15030
15081
|
custom?: BoolNullableWithAggregatesFilter<"Contract"> | boolean | null
|
|
15082
|
+
source?: EnumContractSourceNullableWithAggregatesFilter<"Contract"> | $Enums.ContractSource | null
|
|
15031
15083
|
}
|
|
15032
15084
|
|
|
15033
15085
|
export type MissionWhereInput = {
|
|
@@ -15991,7 +16043,8 @@ export namespace Prisma {
|
|
|
15991
16043
|
parties?: XOR<ContractPartyListCreateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
15992
16044
|
role?: string | null
|
|
15993
16045
|
custom?: boolean | null
|
|
15994
|
-
pandadocMetadata
|
|
16046
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16047
|
+
source?: $Enums.ContractSource | null
|
|
15995
16048
|
mission?: MissionCreateNestedOneWithoutContractsInput
|
|
15996
16049
|
}
|
|
15997
16050
|
|
|
@@ -16006,7 +16059,8 @@ export namespace Prisma {
|
|
|
16006
16059
|
missionId?: string | null
|
|
16007
16060
|
role?: string | null
|
|
16008
16061
|
custom?: boolean | null
|
|
16009
|
-
pandadocMetadata
|
|
16062
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16063
|
+
source?: $Enums.ContractSource | null
|
|
16010
16064
|
}
|
|
16011
16065
|
|
|
16012
16066
|
export type ContractUpdateInput = {
|
|
@@ -16018,7 +16072,8 @@ export namespace Prisma {
|
|
|
16018
16072
|
parties?: XOR<ContractPartyListUpdateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
16019
16073
|
role?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16020
16074
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
16021
|
-
pandadocMetadata?: XOR<
|
|
16075
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16076
|
+
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
16022
16077
|
mission?: MissionUpdateOneWithoutContractsNestedInput
|
|
16023
16078
|
}
|
|
16024
16079
|
|
|
@@ -16032,7 +16087,8 @@ export namespace Prisma {
|
|
|
16032
16087
|
missionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16033
16088
|
role?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16034
16089
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
16035
|
-
pandadocMetadata?: XOR<
|
|
16090
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16091
|
+
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
16036
16092
|
}
|
|
16037
16093
|
|
|
16038
16094
|
export type ContractCreateManyInput = {
|
|
@@ -16046,7 +16102,8 @@ export namespace Prisma {
|
|
|
16046
16102
|
missionId?: string | null
|
|
16047
16103
|
role?: string | null
|
|
16048
16104
|
custom?: boolean | null
|
|
16049
|
-
pandadocMetadata
|
|
16105
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16106
|
+
source?: $Enums.ContractSource | null
|
|
16050
16107
|
}
|
|
16051
16108
|
|
|
16052
16109
|
export type ContractUpdateManyMutationInput = {
|
|
@@ -16058,7 +16115,8 @@ export namespace Prisma {
|
|
|
16058
16115
|
parties?: XOR<ContractPartyListUpdateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
16059
16116
|
role?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16060
16117
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
16061
|
-
pandadocMetadata?: XOR<
|
|
16118
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16119
|
+
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
16062
16120
|
}
|
|
16063
16121
|
|
|
16064
16122
|
export type ContractUncheckedUpdateManyInput = {
|
|
@@ -16071,7 +16129,8 @@ export namespace Prisma {
|
|
|
16071
16129
|
missionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16072
16130
|
role?: NullableStringFieldUpdateOperationsInput | string | null
|
|
16073
16131
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
16074
|
-
pandadocMetadata?: XOR<
|
|
16132
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
16133
|
+
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
16075
16134
|
}
|
|
16076
16135
|
|
|
16077
16136
|
export type MissionCreateInput = {
|
|
@@ -17247,14 +17306,25 @@ export namespace Prisma {
|
|
|
17247
17306
|
stripeClient?: string | null
|
|
17248
17307
|
}
|
|
17249
17308
|
|
|
17250
|
-
export type
|
|
17251
|
-
equals?: PandadocMetadataObjectEqualityInput
|
|
17252
|
-
is?: PandadocMetadataWhereInput
|
|
17253
|
-
isNot?: PandadocMetadataWhereInput
|
|
17309
|
+
export type PandadocMetadataNullableCompositeFilter = {
|
|
17310
|
+
equals?: PandadocMetadataObjectEqualityInput | null
|
|
17311
|
+
is?: PandadocMetadataWhereInput | null
|
|
17312
|
+
isNot?: PandadocMetadataWhereInput | null
|
|
17313
|
+
isSet?: boolean
|
|
17254
17314
|
}
|
|
17255
17315
|
|
|
17256
17316
|
export type PandadocMetadataObjectEqualityInput = {
|
|
17257
17317
|
id: string
|
|
17318
|
+
hubspotDealId?: string | null
|
|
17319
|
+
hubspotCompanyId?: string | null
|
|
17320
|
+
}
|
|
17321
|
+
|
|
17322
|
+
export type EnumContractSourceNullableFilter<$PrismaModel = never> = {
|
|
17323
|
+
equals?: $Enums.ContractSource | EnumContractSourceFieldRefInput<$PrismaModel> | null
|
|
17324
|
+
in?: $Enums.ContractSource[] | ListEnumContractSourceFieldRefInput<$PrismaModel> | null
|
|
17325
|
+
notIn?: $Enums.ContractSource[] | ListEnumContractSourceFieldRefInput<$PrismaModel> | null
|
|
17326
|
+
not?: NestedEnumContractSourceNullableFilter<$PrismaModel> | $Enums.ContractSource | null
|
|
17327
|
+
isSet?: boolean
|
|
17258
17328
|
}
|
|
17259
17329
|
|
|
17260
17330
|
export type MissionNullableRelationFilter = {
|
|
@@ -17268,6 +17338,8 @@ export namespace Prisma {
|
|
|
17268
17338
|
|
|
17269
17339
|
export type PandadocMetadataOrderByInput = {
|
|
17270
17340
|
id?: SortOrder
|
|
17341
|
+
hubspotDealId?: SortOrder
|
|
17342
|
+
hubspotCompanyId?: SortOrder
|
|
17271
17343
|
}
|
|
17272
17344
|
|
|
17273
17345
|
export type ContractCountOrderByAggregateInput = {
|
|
@@ -17280,6 +17352,7 @@ export namespace Prisma {
|
|
|
17280
17352
|
missionId?: SortOrder
|
|
17281
17353
|
role?: SortOrder
|
|
17282
17354
|
custom?: SortOrder
|
|
17355
|
+
source?: SortOrder
|
|
17283
17356
|
}
|
|
17284
17357
|
|
|
17285
17358
|
export type ContractMaxOrderByAggregateInput = {
|
|
@@ -17292,6 +17365,7 @@ export namespace Prisma {
|
|
|
17292
17365
|
missionId?: SortOrder
|
|
17293
17366
|
role?: SortOrder
|
|
17294
17367
|
custom?: SortOrder
|
|
17368
|
+
source?: SortOrder
|
|
17295
17369
|
}
|
|
17296
17370
|
|
|
17297
17371
|
export type ContractMinOrderByAggregateInput = {
|
|
@@ -17304,6 +17378,7 @@ export namespace Prisma {
|
|
|
17304
17378
|
missionId?: SortOrder
|
|
17305
17379
|
role?: SortOrder
|
|
17306
17380
|
custom?: SortOrder
|
|
17381
|
+
source?: SortOrder
|
|
17307
17382
|
}
|
|
17308
17383
|
|
|
17309
17384
|
export type EnumContractStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -17340,6 +17415,17 @@ export namespace Prisma {
|
|
|
17340
17415
|
_max?: NestedDateTimeFilter<$PrismaModel>
|
|
17341
17416
|
}
|
|
17342
17417
|
|
|
17418
|
+
export type EnumContractSourceNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
17419
|
+
equals?: $Enums.ContractSource | EnumContractSourceFieldRefInput<$PrismaModel> | null
|
|
17420
|
+
in?: $Enums.ContractSource[] | ListEnumContractSourceFieldRefInput<$PrismaModel> | null
|
|
17421
|
+
notIn?: $Enums.ContractSource[] | ListEnumContractSourceFieldRefInput<$PrismaModel> | null
|
|
17422
|
+
not?: NestedEnumContractSourceNullableWithAggregatesFilter<$PrismaModel> | $Enums.ContractSource | null
|
|
17423
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
17424
|
+
_min?: NestedEnumContractSourceNullableFilter<$PrismaModel>
|
|
17425
|
+
_max?: NestedEnumContractSourceNullableFilter<$PrismaModel>
|
|
17426
|
+
isSet?: boolean
|
|
17427
|
+
}
|
|
17428
|
+
|
|
17343
17429
|
export type MissionsAttachedLinkCompositeListFilter = {
|
|
17344
17430
|
equals?: MissionsAttachedLinkObjectEqualityInput[]
|
|
17345
17431
|
every?: MissionsAttachedLinkWhereInput
|
|
@@ -18403,12 +18489,14 @@ export namespace Prisma {
|
|
|
18403
18489
|
stripeClient?: string | null
|
|
18404
18490
|
}
|
|
18405
18491
|
|
|
18406
|
-
export type
|
|
18407
|
-
set?: PandadocMetadataCreateInput
|
|
18492
|
+
export type PandadocMetadataNullableCreateEnvelopeInput = {
|
|
18493
|
+
set?: PandadocMetadataCreateInput | null
|
|
18408
18494
|
}
|
|
18409
18495
|
|
|
18410
18496
|
export type PandadocMetadataCreateInput = {
|
|
18411
18497
|
id: string
|
|
18498
|
+
hubspotDealId?: string | null
|
|
18499
|
+
hubspotCompanyId?: string | null
|
|
18412
18500
|
}
|
|
18413
18501
|
|
|
18414
18502
|
export type MissionCreateNestedOneWithoutContractsInput = {
|
|
@@ -18436,9 +18524,15 @@ export namespace Prisma {
|
|
|
18436
18524
|
deleteMany?: ContractPartyDeleteManyInput
|
|
18437
18525
|
}
|
|
18438
18526
|
|
|
18439
|
-
export type
|
|
18440
|
-
set?: PandadocMetadataCreateInput
|
|
18441
|
-
|
|
18527
|
+
export type PandadocMetadataNullableUpdateEnvelopeInput = {
|
|
18528
|
+
set?: PandadocMetadataCreateInput | null
|
|
18529
|
+
upsert?: PandadocMetadataUpsertInput
|
|
18530
|
+
unset?: boolean
|
|
18531
|
+
}
|
|
18532
|
+
|
|
18533
|
+
export type NullableEnumContractSourceFieldUpdateOperationsInput = {
|
|
18534
|
+
set?: $Enums.ContractSource | null
|
|
18535
|
+
unset?: boolean
|
|
18442
18536
|
}
|
|
18443
18537
|
|
|
18444
18538
|
export type MissionUpdateOneWithoutContractsNestedInput = {
|
|
@@ -19400,6 +19494,16 @@ export namespace Prisma {
|
|
|
19400
19494
|
OR?: PandadocMetadataWhereInput[]
|
|
19401
19495
|
NOT?: PandadocMetadataWhereInput | PandadocMetadataWhereInput[]
|
|
19402
19496
|
id?: StringFilter<"PandadocMetadata"> | string
|
|
19497
|
+
hubspotDealId?: StringNullableFilter<"PandadocMetadata"> | string | null
|
|
19498
|
+
hubspotCompanyId?: StringNullableFilter<"PandadocMetadata"> | string | null
|
|
19499
|
+
}
|
|
19500
|
+
|
|
19501
|
+
export type NestedEnumContractSourceNullableFilter<$PrismaModel = never> = {
|
|
19502
|
+
equals?: $Enums.ContractSource | EnumContractSourceFieldRefInput<$PrismaModel> | null
|
|
19503
|
+
in?: $Enums.ContractSource[] | ListEnumContractSourceFieldRefInput<$PrismaModel> | null
|
|
19504
|
+
notIn?: $Enums.ContractSource[] | ListEnumContractSourceFieldRefInput<$PrismaModel> | null
|
|
19505
|
+
not?: NestedEnumContractSourceNullableFilter<$PrismaModel> | $Enums.ContractSource | null
|
|
19506
|
+
isSet?: boolean
|
|
19403
19507
|
}
|
|
19404
19508
|
|
|
19405
19509
|
export type NestedEnumContractStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -19436,6 +19540,17 @@ export namespace Prisma {
|
|
|
19436
19540
|
_max?: NestedDateTimeFilter<$PrismaModel>
|
|
19437
19541
|
}
|
|
19438
19542
|
|
|
19543
|
+
export type NestedEnumContractSourceNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
19544
|
+
equals?: $Enums.ContractSource | EnumContractSourceFieldRefInput<$PrismaModel> | null
|
|
19545
|
+
in?: $Enums.ContractSource[] | ListEnumContractSourceFieldRefInput<$PrismaModel> | null
|
|
19546
|
+
notIn?: $Enums.ContractSource[] | ListEnumContractSourceFieldRefInput<$PrismaModel> | null
|
|
19547
|
+
not?: NestedEnumContractSourceNullableWithAggregatesFilter<$PrismaModel> | $Enums.ContractSource | null
|
|
19548
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
19549
|
+
_min?: NestedEnumContractSourceNullableFilter<$PrismaModel>
|
|
19550
|
+
_max?: NestedEnumContractSourceNullableFilter<$PrismaModel>
|
|
19551
|
+
isSet?: boolean
|
|
19552
|
+
}
|
|
19553
|
+
|
|
19439
19554
|
export type MissionsAttachedLinkWhereInput = {
|
|
19440
19555
|
AND?: MissionsAttachedLinkWhereInput | MissionsAttachedLinkWhereInput[]
|
|
19441
19556
|
OR?: MissionsAttachedLinkWhereInput[]
|
|
@@ -20491,8 +20606,9 @@ export namespace Prisma {
|
|
|
20491
20606
|
where: ContractPartyWhereInput
|
|
20492
20607
|
}
|
|
20493
20608
|
|
|
20494
|
-
export type
|
|
20495
|
-
|
|
20609
|
+
export type PandadocMetadataUpsertInput = {
|
|
20610
|
+
set: PandadocMetadataCreateInput | null
|
|
20611
|
+
update: PandadocMetadataUpdateInput
|
|
20496
20612
|
}
|
|
20497
20613
|
|
|
20498
20614
|
export type MissionUpsertWithoutContractsInput = {
|
|
@@ -20832,7 +20948,8 @@ export namespace Prisma {
|
|
|
20832
20948
|
parties?: XOR<ContractPartyListCreateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
20833
20949
|
role?: string | null
|
|
20834
20950
|
custom?: boolean | null
|
|
20835
|
-
pandadocMetadata
|
|
20951
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
20952
|
+
source?: $Enums.ContractSource | null
|
|
20836
20953
|
}
|
|
20837
20954
|
|
|
20838
20955
|
export type ContractUncheckedCreateWithoutMissionInput = {
|
|
@@ -20845,7 +20962,8 @@ export namespace Prisma {
|
|
|
20845
20962
|
parties?: XOR<ContractPartyListCreateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
20846
20963
|
role?: string | null
|
|
20847
20964
|
custom?: boolean | null
|
|
20848
|
-
pandadocMetadata
|
|
20965
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
20966
|
+
source?: $Enums.ContractSource | null
|
|
20849
20967
|
}
|
|
20850
20968
|
|
|
20851
20969
|
export type ContractCreateOrConnectWithoutMissionInput = {
|
|
@@ -21122,6 +21240,7 @@ export namespace Prisma {
|
|
|
21122
21240
|
missionId?: StringNullableFilter<"Contract"> | string | null
|
|
21123
21241
|
role?: StringNullableFilter<"Contract"> | string | null
|
|
21124
21242
|
custom?: BoolNullableFilter<"Contract"> | boolean | null
|
|
21243
|
+
source?: EnumContractSourceNullableFilter<"Contract"> | $Enums.ContractSource | null
|
|
21125
21244
|
}
|
|
21126
21245
|
|
|
21127
21246
|
export type ClientRoleQuestionCreateInput = {
|
|
@@ -22720,6 +22839,12 @@ export namespace Prisma {
|
|
|
22720
22839
|
stripeClient?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22721
22840
|
}
|
|
22722
22841
|
|
|
22842
|
+
export type PandadocMetadataUpdateInput = {
|
|
22843
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
22844
|
+
hubspotDealId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22845
|
+
hubspotCompanyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22846
|
+
}
|
|
22847
|
+
|
|
22723
22848
|
export type TimezoneObjectCreateInput = {
|
|
22724
22849
|
name: string
|
|
22725
22850
|
utcOffset: number
|
|
@@ -22735,7 +22860,8 @@ export namespace Prisma {
|
|
|
22735
22860
|
parties?: XOR<ContractPartyListCreateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
22736
22861
|
role?: string | null
|
|
22737
22862
|
custom?: boolean | null
|
|
22738
|
-
pandadocMetadata
|
|
22863
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableCreateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
22864
|
+
source?: $Enums.ContractSource | null
|
|
22739
22865
|
}
|
|
22740
22866
|
|
|
22741
22867
|
export type MissionsAttachedLinkUpdateInput = {
|
|
@@ -22815,7 +22941,8 @@ export namespace Prisma {
|
|
|
22815
22941
|
parties?: XOR<ContractPartyListUpdateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
22816
22942
|
role?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22817
22943
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
22818
|
-
pandadocMetadata?: XOR<
|
|
22944
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
22945
|
+
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
22819
22946
|
}
|
|
22820
22947
|
|
|
22821
22948
|
export type ContractUncheckedUpdateWithoutMissionInput = {
|
|
@@ -22827,7 +22954,8 @@ export namespace Prisma {
|
|
|
22827
22954
|
parties?: XOR<ContractPartyListUpdateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
22828
22955
|
role?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22829
22956
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
22830
|
-
pandadocMetadata?: XOR<
|
|
22957
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
22958
|
+
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
22831
22959
|
}
|
|
22832
22960
|
|
|
22833
22961
|
export type ContractUncheckedUpdateManyWithoutMissionInput = {
|
|
@@ -22839,7 +22967,8 @@ export namespace Prisma {
|
|
|
22839
22967
|
parties?: XOR<ContractPartyListUpdateEnvelopeInput, ContractPartyCreateInput> | ContractPartyCreateInput[]
|
|
22840
22968
|
role?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22841
22969
|
custom?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
22842
|
-
pandadocMetadata?: XOR<
|
|
22970
|
+
pandadocMetadata?: XOR<PandadocMetadataNullableUpdateEnvelopeInput, PandadocMetadataCreateInput> | null
|
|
22971
|
+
source?: NullableEnumContractSourceFieldUpdateOperationsInput | $Enums.ContractSource | null
|
|
22843
22972
|
}
|
|
22844
22973
|
|
|
22845
22974
|
export type AttachedLinkUpdateInput = {
|