@derwinjs/db 0.12.0 → 0.13.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/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/learning-health-reporter.d.ts.map +1 -1
- package/dist/learning-health-reporter.js +14 -3
- package/dist/learning-health-reporter.js.map +1 -1
- package/dist/qa-audit-artifact-store.d.ts +25 -0
- package/dist/qa-audit-artifact-store.d.ts.map +1 -0
- package/dist/qa-audit-artifact-store.js +60 -0
- package/dist/qa-audit-artifact-store.js.map +1 -0
- package/dist/self-review-verdict-store.d.ts +29 -0
- package/dist/self-review-verdict-store.d.ts.map +1 -0
- package/dist/self-review-verdict-store.js +167 -0
- package/dist/self-review-verdict-store.js.map +1 -0
- package/package.json +3 -3
- package/prisma/migrations/20260510000000_sprint13_phase9_self_review_verdict/migration.sql +73 -0
- package/prisma/schema.prisma +54 -3
- package/prisma-client/edge.js +21 -5
- package/prisma-client/index-browser.js +18 -2
- package/prisma-client/index.d.ts +2423 -177
- package/prisma-client/index.js +21 -5
- package/prisma-client/package.json +1 -1
- package/prisma-client/schema.prisma +54 -3
- package/prisma-client/wasm.js +18 -2
package/prisma-client/index.d.ts
CHANGED
|
@@ -143,6 +143,11 @@ export type RumSample = $Result.DefaultSelection<Prisma.$RumSamplePayload>
|
|
|
143
143
|
*
|
|
144
144
|
*/
|
|
145
145
|
export type MilestoneEvent = $Result.DefaultSelection<Prisma.$MilestoneEventPayload>
|
|
146
|
+
/**
|
|
147
|
+
* Model SelfReviewVerdict
|
|
148
|
+
*
|
|
149
|
+
*/
|
|
150
|
+
export type SelfReviewVerdict = $Result.DefaultSelection<Prisma.$SelfReviewVerdictPayload>
|
|
146
151
|
|
|
147
152
|
/**
|
|
148
153
|
* Enums
|
|
@@ -259,7 +264,8 @@ export const AttemptStatus: {
|
|
|
259
264
|
HUMAN_MERGED: 'HUMAN_MERGED',
|
|
260
265
|
REJECTED: 'REJECTED',
|
|
261
266
|
REGRESSED_REVERTED: 'REGRESSED_REVERTED',
|
|
262
|
-
FAILED: 'FAILED'
|
|
267
|
+
FAILED: 'FAILED',
|
|
268
|
+
MANUAL_REVIEW_REQUIRED: 'MANUAL_REVIEW_REQUIRED'
|
|
263
269
|
};
|
|
264
270
|
|
|
265
271
|
export type AttemptStatus = (typeof AttemptStatus)[keyof typeof AttemptStatus]
|
|
@@ -822,6 +828,16 @@ export class PrismaClient<
|
|
|
822
828
|
* ```
|
|
823
829
|
*/
|
|
824
830
|
get milestoneEvent(): Prisma.MilestoneEventDelegate<ExtArgs>;
|
|
831
|
+
|
|
832
|
+
/**
|
|
833
|
+
* `prisma.selfReviewVerdict`: Exposes CRUD operations for the **SelfReviewVerdict** model.
|
|
834
|
+
* Example usage:
|
|
835
|
+
* ```ts
|
|
836
|
+
* // Fetch zero or more SelfReviewVerdicts
|
|
837
|
+
* const selfReviewVerdicts = await prisma.selfReviewVerdict.findMany()
|
|
838
|
+
* ```
|
|
839
|
+
*/
|
|
840
|
+
get selfReviewVerdict(): Prisma.SelfReviewVerdictDelegate<ExtArgs>;
|
|
825
841
|
}
|
|
826
842
|
|
|
827
843
|
export namespace Prisma {
|
|
@@ -1288,7 +1304,8 @@ export namespace Prisma {
|
|
|
1288
1304
|
ContractBaseline: 'ContractBaseline',
|
|
1289
1305
|
TenantFuzzConfig: 'TenantFuzzConfig',
|
|
1290
1306
|
RumSample: 'RumSample',
|
|
1291
|
-
MilestoneEvent: 'MilestoneEvent'
|
|
1307
|
+
MilestoneEvent: 'MilestoneEvent',
|
|
1308
|
+
SelfReviewVerdict: 'SelfReviewVerdict'
|
|
1292
1309
|
};
|
|
1293
1310
|
|
|
1294
1311
|
export type ModelName = (typeof ModelName)[keyof typeof ModelName]
|
|
@@ -1304,7 +1321,7 @@ export namespace Prisma {
|
|
|
1304
1321
|
|
|
1305
1322
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
|
1306
1323
|
meta: {
|
|
1307
|
-
modelProps: "project" | "projectProfile" | "ingestedDoc" | "profileEvolutionLog" | "qARun" | "rawSignal" | "qATicket" | "qAFixAttempt" | "classificationTrust" | "rAGCorpus" | "auditArtifact" | "policy" | "pathTierRule" | "classificationOverride" | "freezeWindow" | "killSwitchState" | "projectModeLog" | "spendLedger" | "qAPattern" | "qARevert" | "qAUniformity" | "visualBaseline" | "contractBaseline" | "tenantFuzzConfig" | "rumSample" | "milestoneEvent"
|
|
1324
|
+
modelProps: "project" | "projectProfile" | "ingestedDoc" | "profileEvolutionLog" | "qARun" | "rawSignal" | "qATicket" | "qAFixAttempt" | "classificationTrust" | "rAGCorpus" | "auditArtifact" | "policy" | "pathTierRule" | "classificationOverride" | "freezeWindow" | "killSwitchState" | "projectModeLog" | "spendLedger" | "qAPattern" | "qARevert" | "qAUniformity" | "visualBaseline" | "contractBaseline" | "tenantFuzzConfig" | "rumSample" | "milestoneEvent" | "selfReviewVerdict"
|
|
1308
1325
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
1309
1326
|
}
|
|
1310
1327
|
model: {
|
|
@@ -3128,6 +3145,76 @@ export namespace Prisma {
|
|
|
3128
3145
|
}
|
|
3129
3146
|
}
|
|
3130
3147
|
}
|
|
3148
|
+
SelfReviewVerdict: {
|
|
3149
|
+
payload: Prisma.$SelfReviewVerdictPayload<ExtArgs>
|
|
3150
|
+
fields: Prisma.SelfReviewVerdictFieldRefs
|
|
3151
|
+
operations: {
|
|
3152
|
+
findUnique: {
|
|
3153
|
+
args: Prisma.SelfReviewVerdictFindUniqueArgs<ExtArgs>
|
|
3154
|
+
result: $Utils.PayloadToResult<Prisma.$SelfReviewVerdictPayload> | null
|
|
3155
|
+
}
|
|
3156
|
+
findUniqueOrThrow: {
|
|
3157
|
+
args: Prisma.SelfReviewVerdictFindUniqueOrThrowArgs<ExtArgs>
|
|
3158
|
+
result: $Utils.PayloadToResult<Prisma.$SelfReviewVerdictPayload>
|
|
3159
|
+
}
|
|
3160
|
+
findFirst: {
|
|
3161
|
+
args: Prisma.SelfReviewVerdictFindFirstArgs<ExtArgs>
|
|
3162
|
+
result: $Utils.PayloadToResult<Prisma.$SelfReviewVerdictPayload> | null
|
|
3163
|
+
}
|
|
3164
|
+
findFirstOrThrow: {
|
|
3165
|
+
args: Prisma.SelfReviewVerdictFindFirstOrThrowArgs<ExtArgs>
|
|
3166
|
+
result: $Utils.PayloadToResult<Prisma.$SelfReviewVerdictPayload>
|
|
3167
|
+
}
|
|
3168
|
+
findMany: {
|
|
3169
|
+
args: Prisma.SelfReviewVerdictFindManyArgs<ExtArgs>
|
|
3170
|
+
result: $Utils.PayloadToResult<Prisma.$SelfReviewVerdictPayload>[]
|
|
3171
|
+
}
|
|
3172
|
+
create: {
|
|
3173
|
+
args: Prisma.SelfReviewVerdictCreateArgs<ExtArgs>
|
|
3174
|
+
result: $Utils.PayloadToResult<Prisma.$SelfReviewVerdictPayload>
|
|
3175
|
+
}
|
|
3176
|
+
createMany: {
|
|
3177
|
+
args: Prisma.SelfReviewVerdictCreateManyArgs<ExtArgs>
|
|
3178
|
+
result: BatchPayload
|
|
3179
|
+
}
|
|
3180
|
+
createManyAndReturn: {
|
|
3181
|
+
args: Prisma.SelfReviewVerdictCreateManyAndReturnArgs<ExtArgs>
|
|
3182
|
+
result: $Utils.PayloadToResult<Prisma.$SelfReviewVerdictPayload>[]
|
|
3183
|
+
}
|
|
3184
|
+
delete: {
|
|
3185
|
+
args: Prisma.SelfReviewVerdictDeleteArgs<ExtArgs>
|
|
3186
|
+
result: $Utils.PayloadToResult<Prisma.$SelfReviewVerdictPayload>
|
|
3187
|
+
}
|
|
3188
|
+
update: {
|
|
3189
|
+
args: Prisma.SelfReviewVerdictUpdateArgs<ExtArgs>
|
|
3190
|
+
result: $Utils.PayloadToResult<Prisma.$SelfReviewVerdictPayload>
|
|
3191
|
+
}
|
|
3192
|
+
deleteMany: {
|
|
3193
|
+
args: Prisma.SelfReviewVerdictDeleteManyArgs<ExtArgs>
|
|
3194
|
+
result: BatchPayload
|
|
3195
|
+
}
|
|
3196
|
+
updateMany: {
|
|
3197
|
+
args: Prisma.SelfReviewVerdictUpdateManyArgs<ExtArgs>
|
|
3198
|
+
result: BatchPayload
|
|
3199
|
+
}
|
|
3200
|
+
upsert: {
|
|
3201
|
+
args: Prisma.SelfReviewVerdictUpsertArgs<ExtArgs>
|
|
3202
|
+
result: $Utils.PayloadToResult<Prisma.$SelfReviewVerdictPayload>
|
|
3203
|
+
}
|
|
3204
|
+
aggregate: {
|
|
3205
|
+
args: Prisma.SelfReviewVerdictAggregateArgs<ExtArgs>
|
|
3206
|
+
result: $Utils.Optional<AggregateSelfReviewVerdict>
|
|
3207
|
+
}
|
|
3208
|
+
groupBy: {
|
|
3209
|
+
args: Prisma.SelfReviewVerdictGroupByArgs<ExtArgs>
|
|
3210
|
+
result: $Utils.Optional<SelfReviewVerdictGroupByOutputType>[]
|
|
3211
|
+
}
|
|
3212
|
+
count: {
|
|
3213
|
+
args: Prisma.SelfReviewVerdictCountArgs<ExtArgs>
|
|
3214
|
+
result: $Utils.Optional<SelfReviewVerdictCountAggregateOutputType> | number
|
|
3215
|
+
}
|
|
3216
|
+
}
|
|
3217
|
+
}
|
|
3131
3218
|
}
|
|
3132
3219
|
} & {
|
|
3133
3220
|
other: {
|
|
@@ -3307,6 +3394,7 @@ export namespace Prisma {
|
|
|
3307
3394
|
contractBaselines: number
|
|
3308
3395
|
rumSamples: number
|
|
3309
3396
|
milestoneEvents: number
|
|
3397
|
+
selfReviewVerdicts: number
|
|
3310
3398
|
}
|
|
3311
3399
|
|
|
3312
3400
|
export type ProjectCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -3328,6 +3416,7 @@ export namespace Prisma {
|
|
|
3328
3416
|
contractBaselines?: boolean | ProjectCountOutputTypeCountContractBaselinesArgs
|
|
3329
3417
|
rumSamples?: boolean | ProjectCountOutputTypeCountRumSamplesArgs
|
|
3330
3418
|
milestoneEvents?: boolean | ProjectCountOutputTypeCountMilestoneEventsArgs
|
|
3419
|
+
selfReviewVerdicts?: boolean | ProjectCountOutputTypeCountSelfReviewVerdictsArgs
|
|
3331
3420
|
}
|
|
3332
3421
|
|
|
3333
3422
|
// Custom InputTypes
|
|
@@ -3467,6 +3556,13 @@ export namespace Prisma {
|
|
|
3467
3556
|
where?: MilestoneEventWhereInput
|
|
3468
3557
|
}
|
|
3469
3558
|
|
|
3559
|
+
/**
|
|
3560
|
+
* ProjectCountOutputType without action
|
|
3561
|
+
*/
|
|
3562
|
+
export type ProjectCountOutputTypeCountSelfReviewVerdictsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
3563
|
+
where?: SelfReviewVerdictWhereInput
|
|
3564
|
+
}
|
|
3565
|
+
|
|
3470
3566
|
|
|
3471
3567
|
/**
|
|
3472
3568
|
* Count Type ProjectProfileCountOutputType
|
|
@@ -3621,10 +3717,12 @@ export namespace Prisma {
|
|
|
3621
3717
|
|
|
3622
3718
|
export type QAFixAttemptCountOutputType = {
|
|
3623
3719
|
artifacts: number
|
|
3720
|
+
selfReviewVerdicts: number
|
|
3624
3721
|
}
|
|
3625
3722
|
|
|
3626
3723
|
export type QAFixAttemptCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
3627
3724
|
artifacts?: boolean | QAFixAttemptCountOutputTypeCountArtifactsArgs
|
|
3725
|
+
selfReviewVerdicts?: boolean | QAFixAttemptCountOutputTypeCountSelfReviewVerdictsArgs
|
|
3628
3726
|
}
|
|
3629
3727
|
|
|
3630
3728
|
// Custom InputTypes
|
|
@@ -3645,6 +3743,13 @@ export namespace Prisma {
|
|
|
3645
3743
|
where?: AuditArtifactWhereInput
|
|
3646
3744
|
}
|
|
3647
3745
|
|
|
3746
|
+
/**
|
|
3747
|
+
* QAFixAttemptCountOutputType without action
|
|
3748
|
+
*/
|
|
3749
|
+
export type QAFixAttemptCountOutputTypeCountSelfReviewVerdictsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
3750
|
+
where?: SelfReviewVerdictWhereInput
|
|
3751
|
+
}
|
|
3752
|
+
|
|
3648
3753
|
|
|
3649
3754
|
/**
|
|
3650
3755
|
* Models
|
|
@@ -3992,6 +4097,7 @@ export namespace Prisma {
|
|
|
3992
4097
|
tenantFuzzConfig?: boolean | Project$tenantFuzzConfigArgs<ExtArgs>
|
|
3993
4098
|
rumSamples?: boolean | Project$rumSamplesArgs<ExtArgs>
|
|
3994
4099
|
milestoneEvents?: boolean | Project$milestoneEventsArgs<ExtArgs>
|
|
4100
|
+
selfReviewVerdicts?: boolean | Project$selfReviewVerdictsArgs<ExtArgs>
|
|
3995
4101
|
_count?: boolean | ProjectCountOutputTypeDefaultArgs<ExtArgs>
|
|
3996
4102
|
}, ExtArgs["result"]["project"]>
|
|
3997
4103
|
|
|
@@ -4062,6 +4168,7 @@ export namespace Prisma {
|
|
|
4062
4168
|
tenantFuzzConfig?: boolean | Project$tenantFuzzConfigArgs<ExtArgs>
|
|
4063
4169
|
rumSamples?: boolean | Project$rumSamplesArgs<ExtArgs>
|
|
4064
4170
|
milestoneEvents?: boolean | Project$milestoneEventsArgs<ExtArgs>
|
|
4171
|
+
selfReviewVerdicts?: boolean | Project$selfReviewVerdictsArgs<ExtArgs>
|
|
4065
4172
|
_count?: boolean | ProjectCountOutputTypeDefaultArgs<ExtArgs>
|
|
4066
4173
|
}
|
|
4067
4174
|
export type ProjectIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
@@ -4089,6 +4196,7 @@ export namespace Prisma {
|
|
|
4089
4196
|
tenantFuzzConfig: Prisma.$TenantFuzzConfigPayload<ExtArgs> | null
|
|
4090
4197
|
rumSamples: Prisma.$RumSamplePayload<ExtArgs>[]
|
|
4091
4198
|
milestoneEvents: Prisma.$MilestoneEventPayload<ExtArgs>[]
|
|
4199
|
+
selfReviewVerdicts: Prisma.$SelfReviewVerdictPayload<ExtArgs>[]
|
|
4092
4200
|
}
|
|
4093
4201
|
scalars: $Extensions.GetPayloadResult<{
|
|
4094
4202
|
id: string
|
|
@@ -4495,6 +4603,7 @@ export namespace Prisma {
|
|
|
4495
4603
|
tenantFuzzConfig<T extends Project$tenantFuzzConfigArgs<ExtArgs> = {}>(args?: Subset<T, Project$tenantFuzzConfigArgs<ExtArgs>>): Prisma__TenantFuzzConfigClient<$Result.GetResult<Prisma.$TenantFuzzConfigPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
4496
4604
|
rumSamples<T extends Project$rumSamplesArgs<ExtArgs> = {}>(args?: Subset<T, Project$rumSamplesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RumSamplePayload<ExtArgs>, T, "findMany"> | Null>
|
|
4497
4605
|
milestoneEvents<T extends Project$milestoneEventsArgs<ExtArgs> = {}>(args?: Subset<T, Project$milestoneEventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MilestoneEventPayload<ExtArgs>, T, "findMany"> | Null>
|
|
4606
|
+
selfReviewVerdicts<T extends Project$selfReviewVerdictsArgs<ExtArgs> = {}>(args?: Subset<T, Project$selfReviewVerdictsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SelfReviewVerdictPayload<ExtArgs>, T, "findMany"> | Null>
|
|
4498
4607
|
/**
|
|
4499
4608
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
4500
4609
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -5247,6 +5356,26 @@ export namespace Prisma {
|
|
|
5247
5356
|
distinct?: MilestoneEventScalarFieldEnum | MilestoneEventScalarFieldEnum[]
|
|
5248
5357
|
}
|
|
5249
5358
|
|
|
5359
|
+
/**
|
|
5360
|
+
* Project.selfReviewVerdicts
|
|
5361
|
+
*/
|
|
5362
|
+
export type Project$selfReviewVerdictsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5363
|
+
/**
|
|
5364
|
+
* Select specific fields to fetch from the SelfReviewVerdict
|
|
5365
|
+
*/
|
|
5366
|
+
select?: SelfReviewVerdictSelect<ExtArgs> | null
|
|
5367
|
+
/**
|
|
5368
|
+
* Choose, which related nodes to fetch as well
|
|
5369
|
+
*/
|
|
5370
|
+
include?: SelfReviewVerdictInclude<ExtArgs> | null
|
|
5371
|
+
where?: SelfReviewVerdictWhereInput
|
|
5372
|
+
orderBy?: SelfReviewVerdictOrderByWithRelationInput | SelfReviewVerdictOrderByWithRelationInput[]
|
|
5373
|
+
cursor?: SelfReviewVerdictWhereUniqueInput
|
|
5374
|
+
take?: number
|
|
5375
|
+
skip?: number
|
|
5376
|
+
distinct?: SelfReviewVerdictScalarFieldEnum | SelfReviewVerdictScalarFieldEnum[]
|
|
5377
|
+
}
|
|
5378
|
+
|
|
5250
5379
|
/**
|
|
5251
5380
|
* Project without action
|
|
5252
5381
|
*/
|
|
@@ -12003,6 +12132,7 @@ export namespace Prisma {
|
|
|
12003
12132
|
ticket?: boolean | QATicketDefaultArgs<ExtArgs>
|
|
12004
12133
|
project?: boolean | ProjectDefaultArgs<ExtArgs>
|
|
12005
12134
|
artifacts?: boolean | QAFixAttempt$artifactsArgs<ExtArgs>
|
|
12135
|
+
selfReviewVerdicts?: boolean | QAFixAttempt$selfReviewVerdictsArgs<ExtArgs>
|
|
12006
12136
|
_count?: boolean | QAFixAttemptCountOutputTypeDefaultArgs<ExtArgs>
|
|
12007
12137
|
}, ExtArgs["result"]["qAFixAttempt"]>
|
|
12008
12138
|
|
|
@@ -12070,6 +12200,7 @@ export namespace Prisma {
|
|
|
12070
12200
|
ticket?: boolean | QATicketDefaultArgs<ExtArgs>
|
|
12071
12201
|
project?: boolean | ProjectDefaultArgs<ExtArgs>
|
|
12072
12202
|
artifacts?: boolean | QAFixAttempt$artifactsArgs<ExtArgs>
|
|
12203
|
+
selfReviewVerdicts?: boolean | QAFixAttempt$selfReviewVerdictsArgs<ExtArgs>
|
|
12073
12204
|
_count?: boolean | QAFixAttemptCountOutputTypeDefaultArgs<ExtArgs>
|
|
12074
12205
|
}
|
|
12075
12206
|
export type QAFixAttemptIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -12083,6 +12214,7 @@ export namespace Prisma {
|
|
|
12083
12214
|
ticket: Prisma.$QATicketPayload<ExtArgs>
|
|
12084
12215
|
project: Prisma.$ProjectPayload<ExtArgs>
|
|
12085
12216
|
artifacts: Prisma.$AuditArtifactPayload<ExtArgs>[]
|
|
12217
|
+
selfReviewVerdicts: Prisma.$SelfReviewVerdictPayload<ExtArgs>[]
|
|
12086
12218
|
}
|
|
12087
12219
|
scalars: $Extensions.GetPayloadResult<{
|
|
12088
12220
|
id: string
|
|
@@ -12478,6 +12610,7 @@ export namespace Prisma {
|
|
|
12478
12610
|
ticket<T extends QATicketDefaultArgs<ExtArgs> = {}>(args?: Subset<T, QATicketDefaultArgs<ExtArgs>>): Prisma__QATicketClient<$Result.GetResult<Prisma.$QATicketPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
12479
12611
|
project<T extends ProjectDefaultArgs<ExtArgs> = {}>(args?: Subset<T, ProjectDefaultArgs<ExtArgs>>): Prisma__ProjectClient<$Result.GetResult<Prisma.$ProjectPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
12480
12612
|
artifacts<T extends QAFixAttempt$artifactsArgs<ExtArgs> = {}>(args?: Subset<T, QAFixAttempt$artifactsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AuditArtifactPayload<ExtArgs>, T, "findMany"> | Null>
|
|
12613
|
+
selfReviewVerdicts<T extends QAFixAttempt$selfReviewVerdictsArgs<ExtArgs> = {}>(args?: Subset<T, QAFixAttempt$selfReviewVerdictsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SelfReviewVerdictPayload<ExtArgs>, T, "findMany"> | Null>
|
|
12481
12614
|
/**
|
|
12482
12615
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
12483
12616
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -12870,6 +13003,26 @@ export namespace Prisma {
|
|
|
12870
13003
|
distinct?: AuditArtifactScalarFieldEnum | AuditArtifactScalarFieldEnum[]
|
|
12871
13004
|
}
|
|
12872
13005
|
|
|
13006
|
+
/**
|
|
13007
|
+
* QAFixAttempt.selfReviewVerdicts
|
|
13008
|
+
*/
|
|
13009
|
+
export type QAFixAttempt$selfReviewVerdictsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
13010
|
+
/**
|
|
13011
|
+
* Select specific fields to fetch from the SelfReviewVerdict
|
|
13012
|
+
*/
|
|
13013
|
+
select?: SelfReviewVerdictSelect<ExtArgs> | null
|
|
13014
|
+
/**
|
|
13015
|
+
* Choose, which related nodes to fetch as well
|
|
13016
|
+
*/
|
|
13017
|
+
include?: SelfReviewVerdictInclude<ExtArgs> | null
|
|
13018
|
+
where?: SelfReviewVerdictWhereInput
|
|
13019
|
+
orderBy?: SelfReviewVerdictOrderByWithRelationInput | SelfReviewVerdictOrderByWithRelationInput[]
|
|
13020
|
+
cursor?: SelfReviewVerdictWhereUniqueInput
|
|
13021
|
+
take?: number
|
|
13022
|
+
skip?: number
|
|
13023
|
+
distinct?: SelfReviewVerdictScalarFieldEnum | SelfReviewVerdictScalarFieldEnum[]
|
|
13024
|
+
}
|
|
13025
|
+
|
|
12873
13026
|
/**
|
|
12874
13027
|
* QAFixAttempt without action
|
|
12875
13028
|
*/
|
|
@@ -30755,348 +30908,1393 @@ export namespace Prisma {
|
|
|
30755
30908
|
|
|
30756
30909
|
|
|
30757
30910
|
/**
|
|
30758
|
-
* Fields of the MilestoneEvent model
|
|
30911
|
+
* Fields of the MilestoneEvent model
|
|
30912
|
+
*/
|
|
30913
|
+
interface MilestoneEventFieldRefs {
|
|
30914
|
+
readonly id: FieldRef<"MilestoneEvent", 'String'>
|
|
30915
|
+
readonly projectId: FieldRef<"MilestoneEvent", 'String'>
|
|
30916
|
+
readonly name: FieldRef<"MilestoneEvent", 'String'>
|
|
30917
|
+
readonly description: FieldRef<"MilestoneEvent", 'String'>
|
|
30918
|
+
readonly startsAt: FieldRef<"MilestoneEvent", 'DateTime'>
|
|
30919
|
+
readonly endsAt: FieldRef<"MilestoneEvent", 'DateTime'>
|
|
30920
|
+
readonly kind: FieldRef<"MilestoneEvent", 'String'>
|
|
30921
|
+
readonly createdBy: FieldRef<"MilestoneEvent", 'String'>
|
|
30922
|
+
readonly createdAt: FieldRef<"MilestoneEvent", 'DateTime'>
|
|
30923
|
+
readonly updatedAt: FieldRef<"MilestoneEvent", 'DateTime'>
|
|
30924
|
+
}
|
|
30925
|
+
|
|
30926
|
+
|
|
30927
|
+
// Custom InputTypes
|
|
30928
|
+
/**
|
|
30929
|
+
* MilestoneEvent findUnique
|
|
30930
|
+
*/
|
|
30931
|
+
export type MilestoneEventFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
30932
|
+
/**
|
|
30933
|
+
* Select specific fields to fetch from the MilestoneEvent
|
|
30934
|
+
*/
|
|
30935
|
+
select?: MilestoneEventSelect<ExtArgs> | null
|
|
30936
|
+
/**
|
|
30937
|
+
* Choose, which related nodes to fetch as well
|
|
30938
|
+
*/
|
|
30939
|
+
include?: MilestoneEventInclude<ExtArgs> | null
|
|
30940
|
+
/**
|
|
30941
|
+
* Filter, which MilestoneEvent to fetch.
|
|
30942
|
+
*/
|
|
30943
|
+
where: MilestoneEventWhereUniqueInput
|
|
30944
|
+
}
|
|
30945
|
+
|
|
30946
|
+
/**
|
|
30947
|
+
* MilestoneEvent findUniqueOrThrow
|
|
30948
|
+
*/
|
|
30949
|
+
export type MilestoneEventFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
30950
|
+
/**
|
|
30951
|
+
* Select specific fields to fetch from the MilestoneEvent
|
|
30952
|
+
*/
|
|
30953
|
+
select?: MilestoneEventSelect<ExtArgs> | null
|
|
30954
|
+
/**
|
|
30955
|
+
* Choose, which related nodes to fetch as well
|
|
30956
|
+
*/
|
|
30957
|
+
include?: MilestoneEventInclude<ExtArgs> | null
|
|
30958
|
+
/**
|
|
30959
|
+
* Filter, which MilestoneEvent to fetch.
|
|
30960
|
+
*/
|
|
30961
|
+
where: MilestoneEventWhereUniqueInput
|
|
30962
|
+
}
|
|
30963
|
+
|
|
30964
|
+
/**
|
|
30965
|
+
* MilestoneEvent findFirst
|
|
30966
|
+
*/
|
|
30967
|
+
export type MilestoneEventFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
30968
|
+
/**
|
|
30969
|
+
* Select specific fields to fetch from the MilestoneEvent
|
|
30970
|
+
*/
|
|
30971
|
+
select?: MilestoneEventSelect<ExtArgs> | null
|
|
30972
|
+
/**
|
|
30973
|
+
* Choose, which related nodes to fetch as well
|
|
30974
|
+
*/
|
|
30975
|
+
include?: MilestoneEventInclude<ExtArgs> | null
|
|
30976
|
+
/**
|
|
30977
|
+
* Filter, which MilestoneEvent to fetch.
|
|
30978
|
+
*/
|
|
30979
|
+
where?: MilestoneEventWhereInput
|
|
30980
|
+
/**
|
|
30981
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
30982
|
+
*
|
|
30983
|
+
* Determine the order of MilestoneEvents to fetch.
|
|
30984
|
+
*/
|
|
30985
|
+
orderBy?: MilestoneEventOrderByWithRelationInput | MilestoneEventOrderByWithRelationInput[]
|
|
30986
|
+
/**
|
|
30987
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
30988
|
+
*
|
|
30989
|
+
* Sets the position for searching for MilestoneEvents.
|
|
30990
|
+
*/
|
|
30991
|
+
cursor?: MilestoneEventWhereUniqueInput
|
|
30992
|
+
/**
|
|
30993
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
30994
|
+
*
|
|
30995
|
+
* Take `±n` MilestoneEvents from the position of the cursor.
|
|
30996
|
+
*/
|
|
30997
|
+
take?: number
|
|
30998
|
+
/**
|
|
30999
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
31000
|
+
*
|
|
31001
|
+
* Skip the first `n` MilestoneEvents.
|
|
31002
|
+
*/
|
|
31003
|
+
skip?: number
|
|
31004
|
+
/**
|
|
31005
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
31006
|
+
*
|
|
31007
|
+
* Filter by unique combinations of MilestoneEvents.
|
|
31008
|
+
*/
|
|
31009
|
+
distinct?: MilestoneEventScalarFieldEnum | MilestoneEventScalarFieldEnum[]
|
|
31010
|
+
}
|
|
31011
|
+
|
|
31012
|
+
/**
|
|
31013
|
+
* MilestoneEvent findFirstOrThrow
|
|
31014
|
+
*/
|
|
31015
|
+
export type MilestoneEventFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31016
|
+
/**
|
|
31017
|
+
* Select specific fields to fetch from the MilestoneEvent
|
|
31018
|
+
*/
|
|
31019
|
+
select?: MilestoneEventSelect<ExtArgs> | null
|
|
31020
|
+
/**
|
|
31021
|
+
* Choose, which related nodes to fetch as well
|
|
31022
|
+
*/
|
|
31023
|
+
include?: MilestoneEventInclude<ExtArgs> | null
|
|
31024
|
+
/**
|
|
31025
|
+
* Filter, which MilestoneEvent to fetch.
|
|
31026
|
+
*/
|
|
31027
|
+
where?: MilestoneEventWhereInput
|
|
31028
|
+
/**
|
|
31029
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
31030
|
+
*
|
|
31031
|
+
* Determine the order of MilestoneEvents to fetch.
|
|
31032
|
+
*/
|
|
31033
|
+
orderBy?: MilestoneEventOrderByWithRelationInput | MilestoneEventOrderByWithRelationInput[]
|
|
31034
|
+
/**
|
|
31035
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
31036
|
+
*
|
|
31037
|
+
* Sets the position for searching for MilestoneEvents.
|
|
31038
|
+
*/
|
|
31039
|
+
cursor?: MilestoneEventWhereUniqueInput
|
|
31040
|
+
/**
|
|
31041
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
31042
|
+
*
|
|
31043
|
+
* Take `±n` MilestoneEvents from the position of the cursor.
|
|
31044
|
+
*/
|
|
31045
|
+
take?: number
|
|
31046
|
+
/**
|
|
31047
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
31048
|
+
*
|
|
31049
|
+
* Skip the first `n` MilestoneEvents.
|
|
31050
|
+
*/
|
|
31051
|
+
skip?: number
|
|
31052
|
+
/**
|
|
31053
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
31054
|
+
*
|
|
31055
|
+
* Filter by unique combinations of MilestoneEvents.
|
|
31056
|
+
*/
|
|
31057
|
+
distinct?: MilestoneEventScalarFieldEnum | MilestoneEventScalarFieldEnum[]
|
|
31058
|
+
}
|
|
31059
|
+
|
|
31060
|
+
/**
|
|
31061
|
+
* MilestoneEvent findMany
|
|
31062
|
+
*/
|
|
31063
|
+
export type MilestoneEventFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31064
|
+
/**
|
|
31065
|
+
* Select specific fields to fetch from the MilestoneEvent
|
|
31066
|
+
*/
|
|
31067
|
+
select?: MilestoneEventSelect<ExtArgs> | null
|
|
31068
|
+
/**
|
|
31069
|
+
* Choose, which related nodes to fetch as well
|
|
31070
|
+
*/
|
|
31071
|
+
include?: MilestoneEventInclude<ExtArgs> | null
|
|
31072
|
+
/**
|
|
31073
|
+
* Filter, which MilestoneEvents to fetch.
|
|
31074
|
+
*/
|
|
31075
|
+
where?: MilestoneEventWhereInput
|
|
31076
|
+
/**
|
|
31077
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
31078
|
+
*
|
|
31079
|
+
* Determine the order of MilestoneEvents to fetch.
|
|
31080
|
+
*/
|
|
31081
|
+
orderBy?: MilestoneEventOrderByWithRelationInput | MilestoneEventOrderByWithRelationInput[]
|
|
31082
|
+
/**
|
|
31083
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
31084
|
+
*
|
|
31085
|
+
* Sets the position for listing MilestoneEvents.
|
|
31086
|
+
*/
|
|
31087
|
+
cursor?: MilestoneEventWhereUniqueInput
|
|
31088
|
+
/**
|
|
31089
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
31090
|
+
*
|
|
31091
|
+
* Take `±n` MilestoneEvents from the position of the cursor.
|
|
31092
|
+
*/
|
|
31093
|
+
take?: number
|
|
31094
|
+
/**
|
|
31095
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
31096
|
+
*
|
|
31097
|
+
* Skip the first `n` MilestoneEvents.
|
|
31098
|
+
*/
|
|
31099
|
+
skip?: number
|
|
31100
|
+
distinct?: MilestoneEventScalarFieldEnum | MilestoneEventScalarFieldEnum[]
|
|
31101
|
+
}
|
|
31102
|
+
|
|
31103
|
+
/**
|
|
31104
|
+
* MilestoneEvent create
|
|
31105
|
+
*/
|
|
31106
|
+
export type MilestoneEventCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31107
|
+
/**
|
|
31108
|
+
* Select specific fields to fetch from the MilestoneEvent
|
|
31109
|
+
*/
|
|
31110
|
+
select?: MilestoneEventSelect<ExtArgs> | null
|
|
31111
|
+
/**
|
|
31112
|
+
* Choose, which related nodes to fetch as well
|
|
31113
|
+
*/
|
|
31114
|
+
include?: MilestoneEventInclude<ExtArgs> | null
|
|
31115
|
+
/**
|
|
31116
|
+
* The data needed to create a MilestoneEvent.
|
|
31117
|
+
*/
|
|
31118
|
+
data: XOR<MilestoneEventCreateInput, MilestoneEventUncheckedCreateInput>
|
|
31119
|
+
}
|
|
31120
|
+
|
|
31121
|
+
/**
|
|
31122
|
+
* MilestoneEvent createMany
|
|
31123
|
+
*/
|
|
31124
|
+
export type MilestoneEventCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31125
|
+
/**
|
|
31126
|
+
* The data used to create many MilestoneEvents.
|
|
31127
|
+
*/
|
|
31128
|
+
data: MilestoneEventCreateManyInput | MilestoneEventCreateManyInput[]
|
|
31129
|
+
skipDuplicates?: boolean
|
|
31130
|
+
}
|
|
31131
|
+
|
|
31132
|
+
/**
|
|
31133
|
+
* MilestoneEvent createManyAndReturn
|
|
31134
|
+
*/
|
|
31135
|
+
export type MilestoneEventCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31136
|
+
/**
|
|
31137
|
+
* Select specific fields to fetch from the MilestoneEvent
|
|
31138
|
+
*/
|
|
31139
|
+
select?: MilestoneEventSelectCreateManyAndReturn<ExtArgs> | null
|
|
31140
|
+
/**
|
|
31141
|
+
* The data used to create many MilestoneEvents.
|
|
31142
|
+
*/
|
|
31143
|
+
data: MilestoneEventCreateManyInput | MilestoneEventCreateManyInput[]
|
|
31144
|
+
skipDuplicates?: boolean
|
|
31145
|
+
/**
|
|
31146
|
+
* Choose, which related nodes to fetch as well
|
|
31147
|
+
*/
|
|
31148
|
+
include?: MilestoneEventIncludeCreateManyAndReturn<ExtArgs> | null
|
|
31149
|
+
}
|
|
31150
|
+
|
|
31151
|
+
/**
|
|
31152
|
+
* MilestoneEvent update
|
|
31153
|
+
*/
|
|
31154
|
+
export type MilestoneEventUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31155
|
+
/**
|
|
31156
|
+
* Select specific fields to fetch from the MilestoneEvent
|
|
31157
|
+
*/
|
|
31158
|
+
select?: MilestoneEventSelect<ExtArgs> | null
|
|
31159
|
+
/**
|
|
31160
|
+
* Choose, which related nodes to fetch as well
|
|
31161
|
+
*/
|
|
31162
|
+
include?: MilestoneEventInclude<ExtArgs> | null
|
|
31163
|
+
/**
|
|
31164
|
+
* The data needed to update a MilestoneEvent.
|
|
31165
|
+
*/
|
|
31166
|
+
data: XOR<MilestoneEventUpdateInput, MilestoneEventUncheckedUpdateInput>
|
|
31167
|
+
/**
|
|
31168
|
+
* Choose, which MilestoneEvent to update.
|
|
31169
|
+
*/
|
|
31170
|
+
where: MilestoneEventWhereUniqueInput
|
|
31171
|
+
}
|
|
31172
|
+
|
|
31173
|
+
/**
|
|
31174
|
+
* MilestoneEvent updateMany
|
|
31175
|
+
*/
|
|
31176
|
+
export type MilestoneEventUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31177
|
+
/**
|
|
31178
|
+
* The data used to update MilestoneEvents.
|
|
31179
|
+
*/
|
|
31180
|
+
data: XOR<MilestoneEventUpdateManyMutationInput, MilestoneEventUncheckedUpdateManyInput>
|
|
31181
|
+
/**
|
|
31182
|
+
* Filter which MilestoneEvents to update
|
|
31183
|
+
*/
|
|
31184
|
+
where?: MilestoneEventWhereInput
|
|
31185
|
+
}
|
|
31186
|
+
|
|
31187
|
+
/**
|
|
31188
|
+
* MilestoneEvent upsert
|
|
31189
|
+
*/
|
|
31190
|
+
export type MilestoneEventUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31191
|
+
/**
|
|
31192
|
+
* Select specific fields to fetch from the MilestoneEvent
|
|
31193
|
+
*/
|
|
31194
|
+
select?: MilestoneEventSelect<ExtArgs> | null
|
|
31195
|
+
/**
|
|
31196
|
+
* Choose, which related nodes to fetch as well
|
|
31197
|
+
*/
|
|
31198
|
+
include?: MilestoneEventInclude<ExtArgs> | null
|
|
31199
|
+
/**
|
|
31200
|
+
* The filter to search for the MilestoneEvent to update in case it exists.
|
|
31201
|
+
*/
|
|
31202
|
+
where: MilestoneEventWhereUniqueInput
|
|
31203
|
+
/**
|
|
31204
|
+
* In case the MilestoneEvent found by the `where` argument doesn't exist, create a new MilestoneEvent with this data.
|
|
31205
|
+
*/
|
|
31206
|
+
create: XOR<MilestoneEventCreateInput, MilestoneEventUncheckedCreateInput>
|
|
31207
|
+
/**
|
|
31208
|
+
* In case the MilestoneEvent was found with the provided `where` argument, update it with this data.
|
|
31209
|
+
*/
|
|
31210
|
+
update: XOR<MilestoneEventUpdateInput, MilestoneEventUncheckedUpdateInput>
|
|
31211
|
+
}
|
|
31212
|
+
|
|
31213
|
+
/**
|
|
31214
|
+
* MilestoneEvent delete
|
|
31215
|
+
*/
|
|
31216
|
+
export type MilestoneEventDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31217
|
+
/**
|
|
31218
|
+
* Select specific fields to fetch from the MilestoneEvent
|
|
31219
|
+
*/
|
|
31220
|
+
select?: MilestoneEventSelect<ExtArgs> | null
|
|
31221
|
+
/**
|
|
31222
|
+
* Choose, which related nodes to fetch as well
|
|
31223
|
+
*/
|
|
31224
|
+
include?: MilestoneEventInclude<ExtArgs> | null
|
|
31225
|
+
/**
|
|
31226
|
+
* Filter which MilestoneEvent to delete.
|
|
31227
|
+
*/
|
|
31228
|
+
where: MilestoneEventWhereUniqueInput
|
|
31229
|
+
}
|
|
31230
|
+
|
|
31231
|
+
/**
|
|
31232
|
+
* MilestoneEvent deleteMany
|
|
31233
|
+
*/
|
|
31234
|
+
export type MilestoneEventDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31235
|
+
/**
|
|
31236
|
+
* Filter which MilestoneEvents to delete
|
|
31237
|
+
*/
|
|
31238
|
+
where?: MilestoneEventWhereInput
|
|
31239
|
+
}
|
|
31240
|
+
|
|
31241
|
+
/**
|
|
31242
|
+
* MilestoneEvent without action
|
|
31243
|
+
*/
|
|
31244
|
+
export type MilestoneEventDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31245
|
+
/**
|
|
31246
|
+
* Select specific fields to fetch from the MilestoneEvent
|
|
31247
|
+
*/
|
|
31248
|
+
select?: MilestoneEventSelect<ExtArgs> | null
|
|
31249
|
+
/**
|
|
31250
|
+
* Choose, which related nodes to fetch as well
|
|
31251
|
+
*/
|
|
31252
|
+
include?: MilestoneEventInclude<ExtArgs> | null
|
|
31253
|
+
}
|
|
31254
|
+
|
|
31255
|
+
|
|
31256
|
+
/**
|
|
31257
|
+
* Model SelfReviewVerdict
|
|
31258
|
+
*/
|
|
31259
|
+
|
|
31260
|
+
export type AggregateSelfReviewVerdict = {
|
|
31261
|
+
_count: SelfReviewVerdictCountAggregateOutputType | null
|
|
31262
|
+
_avg: SelfReviewVerdictAvgAggregateOutputType | null
|
|
31263
|
+
_sum: SelfReviewVerdictSumAggregateOutputType | null
|
|
31264
|
+
_min: SelfReviewVerdictMinAggregateOutputType | null
|
|
31265
|
+
_max: SelfReviewVerdictMaxAggregateOutputType | null
|
|
31266
|
+
}
|
|
31267
|
+
|
|
31268
|
+
export type SelfReviewVerdictAvgAggregateOutputType = {
|
|
31269
|
+
criticalIssuesFound: number | null
|
|
31270
|
+
minorIssuesFound: number | null
|
|
31271
|
+
}
|
|
31272
|
+
|
|
31273
|
+
export type SelfReviewVerdictSumAggregateOutputType = {
|
|
31274
|
+
criticalIssuesFound: number | null
|
|
31275
|
+
minorIssuesFound: number | null
|
|
31276
|
+
}
|
|
31277
|
+
|
|
31278
|
+
export type SelfReviewVerdictMinAggregateOutputType = {
|
|
31279
|
+
id: string | null
|
|
31280
|
+
projectId: string | null
|
|
31281
|
+
qaFixAttemptId: string | null
|
|
31282
|
+
qaTicketId: string | null
|
|
31283
|
+
classification: string | null
|
|
31284
|
+
surface: string | null
|
|
31285
|
+
verdict: string | null
|
|
31286
|
+
criticalIssuesFound: number | null
|
|
31287
|
+
minorIssuesFound: number | null
|
|
31288
|
+
createdAt: Date | null
|
|
31289
|
+
}
|
|
31290
|
+
|
|
31291
|
+
export type SelfReviewVerdictMaxAggregateOutputType = {
|
|
31292
|
+
id: string | null
|
|
31293
|
+
projectId: string | null
|
|
31294
|
+
qaFixAttemptId: string | null
|
|
31295
|
+
qaTicketId: string | null
|
|
31296
|
+
classification: string | null
|
|
31297
|
+
surface: string | null
|
|
31298
|
+
verdict: string | null
|
|
31299
|
+
criticalIssuesFound: number | null
|
|
31300
|
+
minorIssuesFound: number | null
|
|
31301
|
+
createdAt: Date | null
|
|
31302
|
+
}
|
|
31303
|
+
|
|
31304
|
+
export type SelfReviewVerdictCountAggregateOutputType = {
|
|
31305
|
+
id: number
|
|
31306
|
+
projectId: number
|
|
31307
|
+
qaFixAttemptId: number
|
|
31308
|
+
qaTicketId: number
|
|
31309
|
+
classification: number
|
|
31310
|
+
surface: number
|
|
31311
|
+
verdict: number
|
|
31312
|
+
reasonHints: number
|
|
31313
|
+
criticalIssuesFound: number
|
|
31314
|
+
minorIssuesFound: number
|
|
31315
|
+
createdAt: number
|
|
31316
|
+
_all: number
|
|
31317
|
+
}
|
|
31318
|
+
|
|
31319
|
+
|
|
31320
|
+
export type SelfReviewVerdictAvgAggregateInputType = {
|
|
31321
|
+
criticalIssuesFound?: true
|
|
31322
|
+
minorIssuesFound?: true
|
|
31323
|
+
}
|
|
31324
|
+
|
|
31325
|
+
export type SelfReviewVerdictSumAggregateInputType = {
|
|
31326
|
+
criticalIssuesFound?: true
|
|
31327
|
+
minorIssuesFound?: true
|
|
31328
|
+
}
|
|
31329
|
+
|
|
31330
|
+
export type SelfReviewVerdictMinAggregateInputType = {
|
|
31331
|
+
id?: true
|
|
31332
|
+
projectId?: true
|
|
31333
|
+
qaFixAttemptId?: true
|
|
31334
|
+
qaTicketId?: true
|
|
31335
|
+
classification?: true
|
|
31336
|
+
surface?: true
|
|
31337
|
+
verdict?: true
|
|
31338
|
+
criticalIssuesFound?: true
|
|
31339
|
+
minorIssuesFound?: true
|
|
31340
|
+
createdAt?: true
|
|
31341
|
+
}
|
|
31342
|
+
|
|
31343
|
+
export type SelfReviewVerdictMaxAggregateInputType = {
|
|
31344
|
+
id?: true
|
|
31345
|
+
projectId?: true
|
|
31346
|
+
qaFixAttemptId?: true
|
|
31347
|
+
qaTicketId?: true
|
|
31348
|
+
classification?: true
|
|
31349
|
+
surface?: true
|
|
31350
|
+
verdict?: true
|
|
31351
|
+
criticalIssuesFound?: true
|
|
31352
|
+
minorIssuesFound?: true
|
|
31353
|
+
createdAt?: true
|
|
31354
|
+
}
|
|
31355
|
+
|
|
31356
|
+
export type SelfReviewVerdictCountAggregateInputType = {
|
|
31357
|
+
id?: true
|
|
31358
|
+
projectId?: true
|
|
31359
|
+
qaFixAttemptId?: true
|
|
31360
|
+
qaTicketId?: true
|
|
31361
|
+
classification?: true
|
|
31362
|
+
surface?: true
|
|
31363
|
+
verdict?: true
|
|
31364
|
+
reasonHints?: true
|
|
31365
|
+
criticalIssuesFound?: true
|
|
31366
|
+
minorIssuesFound?: true
|
|
31367
|
+
createdAt?: true
|
|
31368
|
+
_all?: true
|
|
31369
|
+
}
|
|
31370
|
+
|
|
31371
|
+
export type SelfReviewVerdictAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31372
|
+
/**
|
|
31373
|
+
* Filter which SelfReviewVerdict to aggregate.
|
|
31374
|
+
*/
|
|
31375
|
+
where?: SelfReviewVerdictWhereInput
|
|
31376
|
+
/**
|
|
31377
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
31378
|
+
*
|
|
31379
|
+
* Determine the order of SelfReviewVerdicts to fetch.
|
|
31380
|
+
*/
|
|
31381
|
+
orderBy?: SelfReviewVerdictOrderByWithRelationInput | SelfReviewVerdictOrderByWithRelationInput[]
|
|
31382
|
+
/**
|
|
31383
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
31384
|
+
*
|
|
31385
|
+
* Sets the start position
|
|
31386
|
+
*/
|
|
31387
|
+
cursor?: SelfReviewVerdictWhereUniqueInput
|
|
31388
|
+
/**
|
|
31389
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
31390
|
+
*
|
|
31391
|
+
* Take `±n` SelfReviewVerdicts from the position of the cursor.
|
|
31392
|
+
*/
|
|
31393
|
+
take?: number
|
|
31394
|
+
/**
|
|
31395
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
31396
|
+
*
|
|
31397
|
+
* Skip the first `n` SelfReviewVerdicts.
|
|
31398
|
+
*/
|
|
31399
|
+
skip?: number
|
|
31400
|
+
/**
|
|
31401
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
31402
|
+
*
|
|
31403
|
+
* Count returned SelfReviewVerdicts
|
|
31404
|
+
**/
|
|
31405
|
+
_count?: true | SelfReviewVerdictCountAggregateInputType
|
|
31406
|
+
/**
|
|
31407
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
31408
|
+
*
|
|
31409
|
+
* Select which fields to average
|
|
31410
|
+
**/
|
|
31411
|
+
_avg?: SelfReviewVerdictAvgAggregateInputType
|
|
31412
|
+
/**
|
|
31413
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
31414
|
+
*
|
|
31415
|
+
* Select which fields to sum
|
|
31416
|
+
**/
|
|
31417
|
+
_sum?: SelfReviewVerdictSumAggregateInputType
|
|
31418
|
+
/**
|
|
31419
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
31420
|
+
*
|
|
31421
|
+
* Select which fields to find the minimum value
|
|
31422
|
+
**/
|
|
31423
|
+
_min?: SelfReviewVerdictMinAggregateInputType
|
|
31424
|
+
/**
|
|
31425
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
31426
|
+
*
|
|
31427
|
+
* Select which fields to find the maximum value
|
|
31428
|
+
**/
|
|
31429
|
+
_max?: SelfReviewVerdictMaxAggregateInputType
|
|
31430
|
+
}
|
|
31431
|
+
|
|
31432
|
+
export type GetSelfReviewVerdictAggregateType<T extends SelfReviewVerdictAggregateArgs> = {
|
|
31433
|
+
[P in keyof T & keyof AggregateSelfReviewVerdict]: P extends '_count' | 'count'
|
|
31434
|
+
? T[P] extends true
|
|
31435
|
+
? number
|
|
31436
|
+
: GetScalarType<T[P], AggregateSelfReviewVerdict[P]>
|
|
31437
|
+
: GetScalarType<T[P], AggregateSelfReviewVerdict[P]>
|
|
31438
|
+
}
|
|
31439
|
+
|
|
31440
|
+
|
|
31441
|
+
|
|
31442
|
+
|
|
31443
|
+
export type SelfReviewVerdictGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31444
|
+
where?: SelfReviewVerdictWhereInput
|
|
31445
|
+
orderBy?: SelfReviewVerdictOrderByWithAggregationInput | SelfReviewVerdictOrderByWithAggregationInput[]
|
|
31446
|
+
by: SelfReviewVerdictScalarFieldEnum[] | SelfReviewVerdictScalarFieldEnum
|
|
31447
|
+
having?: SelfReviewVerdictScalarWhereWithAggregatesInput
|
|
31448
|
+
take?: number
|
|
31449
|
+
skip?: number
|
|
31450
|
+
_count?: SelfReviewVerdictCountAggregateInputType | true
|
|
31451
|
+
_avg?: SelfReviewVerdictAvgAggregateInputType
|
|
31452
|
+
_sum?: SelfReviewVerdictSumAggregateInputType
|
|
31453
|
+
_min?: SelfReviewVerdictMinAggregateInputType
|
|
31454
|
+
_max?: SelfReviewVerdictMaxAggregateInputType
|
|
31455
|
+
}
|
|
31456
|
+
|
|
31457
|
+
export type SelfReviewVerdictGroupByOutputType = {
|
|
31458
|
+
id: string
|
|
31459
|
+
projectId: string
|
|
31460
|
+
qaFixAttemptId: string
|
|
31461
|
+
qaTicketId: string
|
|
31462
|
+
classification: string
|
|
31463
|
+
surface: string
|
|
31464
|
+
verdict: string
|
|
31465
|
+
reasonHints: string[]
|
|
31466
|
+
criticalIssuesFound: number
|
|
31467
|
+
minorIssuesFound: number
|
|
31468
|
+
createdAt: Date
|
|
31469
|
+
_count: SelfReviewVerdictCountAggregateOutputType | null
|
|
31470
|
+
_avg: SelfReviewVerdictAvgAggregateOutputType | null
|
|
31471
|
+
_sum: SelfReviewVerdictSumAggregateOutputType | null
|
|
31472
|
+
_min: SelfReviewVerdictMinAggregateOutputType | null
|
|
31473
|
+
_max: SelfReviewVerdictMaxAggregateOutputType | null
|
|
31474
|
+
}
|
|
31475
|
+
|
|
31476
|
+
type GetSelfReviewVerdictGroupByPayload<T extends SelfReviewVerdictGroupByArgs> = Prisma.PrismaPromise<
|
|
31477
|
+
Array<
|
|
31478
|
+
PickEnumerable<SelfReviewVerdictGroupByOutputType, T['by']> &
|
|
31479
|
+
{
|
|
31480
|
+
[P in ((keyof T) & (keyof SelfReviewVerdictGroupByOutputType))]: P extends '_count'
|
|
31481
|
+
? T[P] extends boolean
|
|
31482
|
+
? number
|
|
31483
|
+
: GetScalarType<T[P], SelfReviewVerdictGroupByOutputType[P]>
|
|
31484
|
+
: GetScalarType<T[P], SelfReviewVerdictGroupByOutputType[P]>
|
|
31485
|
+
}
|
|
31486
|
+
>
|
|
31487
|
+
>
|
|
31488
|
+
|
|
31489
|
+
|
|
31490
|
+
export type SelfReviewVerdictSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
31491
|
+
id?: boolean
|
|
31492
|
+
projectId?: boolean
|
|
31493
|
+
qaFixAttemptId?: boolean
|
|
31494
|
+
qaTicketId?: boolean
|
|
31495
|
+
classification?: boolean
|
|
31496
|
+
surface?: boolean
|
|
31497
|
+
verdict?: boolean
|
|
31498
|
+
reasonHints?: boolean
|
|
31499
|
+
criticalIssuesFound?: boolean
|
|
31500
|
+
minorIssuesFound?: boolean
|
|
31501
|
+
createdAt?: boolean
|
|
31502
|
+
project?: boolean | ProjectDefaultArgs<ExtArgs>
|
|
31503
|
+
qaFixAttempt?: boolean | QAFixAttemptDefaultArgs<ExtArgs>
|
|
31504
|
+
}, ExtArgs["result"]["selfReviewVerdict"]>
|
|
31505
|
+
|
|
31506
|
+
export type SelfReviewVerdictSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
31507
|
+
id?: boolean
|
|
31508
|
+
projectId?: boolean
|
|
31509
|
+
qaFixAttemptId?: boolean
|
|
31510
|
+
qaTicketId?: boolean
|
|
31511
|
+
classification?: boolean
|
|
31512
|
+
surface?: boolean
|
|
31513
|
+
verdict?: boolean
|
|
31514
|
+
reasonHints?: boolean
|
|
31515
|
+
criticalIssuesFound?: boolean
|
|
31516
|
+
minorIssuesFound?: boolean
|
|
31517
|
+
createdAt?: boolean
|
|
31518
|
+
project?: boolean | ProjectDefaultArgs<ExtArgs>
|
|
31519
|
+
qaFixAttempt?: boolean | QAFixAttemptDefaultArgs<ExtArgs>
|
|
31520
|
+
}, ExtArgs["result"]["selfReviewVerdict"]>
|
|
31521
|
+
|
|
31522
|
+
export type SelfReviewVerdictSelectScalar = {
|
|
31523
|
+
id?: boolean
|
|
31524
|
+
projectId?: boolean
|
|
31525
|
+
qaFixAttemptId?: boolean
|
|
31526
|
+
qaTicketId?: boolean
|
|
31527
|
+
classification?: boolean
|
|
31528
|
+
surface?: boolean
|
|
31529
|
+
verdict?: boolean
|
|
31530
|
+
reasonHints?: boolean
|
|
31531
|
+
criticalIssuesFound?: boolean
|
|
31532
|
+
minorIssuesFound?: boolean
|
|
31533
|
+
createdAt?: boolean
|
|
31534
|
+
}
|
|
31535
|
+
|
|
31536
|
+
export type SelfReviewVerdictInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31537
|
+
project?: boolean | ProjectDefaultArgs<ExtArgs>
|
|
31538
|
+
qaFixAttempt?: boolean | QAFixAttemptDefaultArgs<ExtArgs>
|
|
31539
|
+
}
|
|
31540
|
+
export type SelfReviewVerdictIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31541
|
+
project?: boolean | ProjectDefaultArgs<ExtArgs>
|
|
31542
|
+
qaFixAttempt?: boolean | QAFixAttemptDefaultArgs<ExtArgs>
|
|
31543
|
+
}
|
|
31544
|
+
|
|
31545
|
+
export type $SelfReviewVerdictPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31546
|
+
name: "SelfReviewVerdict"
|
|
31547
|
+
objects: {
|
|
31548
|
+
project: Prisma.$ProjectPayload<ExtArgs>
|
|
31549
|
+
qaFixAttempt: Prisma.$QAFixAttemptPayload<ExtArgs>
|
|
31550
|
+
}
|
|
31551
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
31552
|
+
id: string
|
|
31553
|
+
projectId: string
|
|
31554
|
+
qaFixAttemptId: string
|
|
31555
|
+
qaTicketId: string
|
|
31556
|
+
classification: string
|
|
31557
|
+
surface: string
|
|
31558
|
+
verdict: string
|
|
31559
|
+
reasonHints: string[]
|
|
31560
|
+
criticalIssuesFound: number
|
|
31561
|
+
minorIssuesFound: number
|
|
31562
|
+
createdAt: Date
|
|
31563
|
+
}, ExtArgs["result"]["selfReviewVerdict"]>
|
|
31564
|
+
composites: {}
|
|
31565
|
+
}
|
|
31566
|
+
|
|
31567
|
+
type SelfReviewVerdictGetPayload<S extends boolean | null | undefined | SelfReviewVerdictDefaultArgs> = $Result.GetResult<Prisma.$SelfReviewVerdictPayload, S>
|
|
31568
|
+
|
|
31569
|
+
type SelfReviewVerdictCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
31570
|
+
Omit<SelfReviewVerdictFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
31571
|
+
select?: SelfReviewVerdictCountAggregateInputType | true
|
|
31572
|
+
}
|
|
31573
|
+
|
|
31574
|
+
export interface SelfReviewVerdictDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
31575
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['SelfReviewVerdict'], meta: { name: 'SelfReviewVerdict' } }
|
|
31576
|
+
/**
|
|
31577
|
+
* Find zero or one SelfReviewVerdict that matches the filter.
|
|
31578
|
+
* @param {SelfReviewVerdictFindUniqueArgs} args - Arguments to find a SelfReviewVerdict
|
|
31579
|
+
* @example
|
|
31580
|
+
* // Get one SelfReviewVerdict
|
|
31581
|
+
* const selfReviewVerdict = await prisma.selfReviewVerdict.findUnique({
|
|
31582
|
+
* where: {
|
|
31583
|
+
* // ... provide filter here
|
|
31584
|
+
* }
|
|
31585
|
+
* })
|
|
31586
|
+
*/
|
|
31587
|
+
findUnique<T extends SelfReviewVerdictFindUniqueArgs>(args: SelectSubset<T, SelfReviewVerdictFindUniqueArgs<ExtArgs>>): Prisma__SelfReviewVerdictClient<$Result.GetResult<Prisma.$SelfReviewVerdictPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
31588
|
+
|
|
31589
|
+
/**
|
|
31590
|
+
* Find one SelfReviewVerdict that matches the filter or throw an error with `error.code='P2025'`
|
|
31591
|
+
* if no matches were found.
|
|
31592
|
+
* @param {SelfReviewVerdictFindUniqueOrThrowArgs} args - Arguments to find a SelfReviewVerdict
|
|
31593
|
+
* @example
|
|
31594
|
+
* // Get one SelfReviewVerdict
|
|
31595
|
+
* const selfReviewVerdict = await prisma.selfReviewVerdict.findUniqueOrThrow({
|
|
31596
|
+
* where: {
|
|
31597
|
+
* // ... provide filter here
|
|
31598
|
+
* }
|
|
31599
|
+
* })
|
|
31600
|
+
*/
|
|
31601
|
+
findUniqueOrThrow<T extends SelfReviewVerdictFindUniqueOrThrowArgs>(args: SelectSubset<T, SelfReviewVerdictFindUniqueOrThrowArgs<ExtArgs>>): Prisma__SelfReviewVerdictClient<$Result.GetResult<Prisma.$SelfReviewVerdictPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
31602
|
+
|
|
31603
|
+
/**
|
|
31604
|
+
* Find the first SelfReviewVerdict that matches the filter.
|
|
31605
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
31606
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
31607
|
+
* @param {SelfReviewVerdictFindFirstArgs} args - Arguments to find a SelfReviewVerdict
|
|
31608
|
+
* @example
|
|
31609
|
+
* // Get one SelfReviewVerdict
|
|
31610
|
+
* const selfReviewVerdict = await prisma.selfReviewVerdict.findFirst({
|
|
31611
|
+
* where: {
|
|
31612
|
+
* // ... provide filter here
|
|
31613
|
+
* }
|
|
31614
|
+
* })
|
|
31615
|
+
*/
|
|
31616
|
+
findFirst<T extends SelfReviewVerdictFindFirstArgs>(args?: SelectSubset<T, SelfReviewVerdictFindFirstArgs<ExtArgs>>): Prisma__SelfReviewVerdictClient<$Result.GetResult<Prisma.$SelfReviewVerdictPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
31617
|
+
|
|
31618
|
+
/**
|
|
31619
|
+
* Find the first SelfReviewVerdict that matches the filter or
|
|
31620
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
31621
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
31622
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
31623
|
+
* @param {SelfReviewVerdictFindFirstOrThrowArgs} args - Arguments to find a SelfReviewVerdict
|
|
31624
|
+
* @example
|
|
31625
|
+
* // Get one SelfReviewVerdict
|
|
31626
|
+
* const selfReviewVerdict = await prisma.selfReviewVerdict.findFirstOrThrow({
|
|
31627
|
+
* where: {
|
|
31628
|
+
* // ... provide filter here
|
|
31629
|
+
* }
|
|
31630
|
+
* })
|
|
31631
|
+
*/
|
|
31632
|
+
findFirstOrThrow<T extends SelfReviewVerdictFindFirstOrThrowArgs>(args?: SelectSubset<T, SelfReviewVerdictFindFirstOrThrowArgs<ExtArgs>>): Prisma__SelfReviewVerdictClient<$Result.GetResult<Prisma.$SelfReviewVerdictPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
31633
|
+
|
|
31634
|
+
/**
|
|
31635
|
+
* Find zero or more SelfReviewVerdicts that matches the filter.
|
|
31636
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
31637
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
31638
|
+
* @param {SelfReviewVerdictFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
31639
|
+
* @example
|
|
31640
|
+
* // Get all SelfReviewVerdicts
|
|
31641
|
+
* const selfReviewVerdicts = await prisma.selfReviewVerdict.findMany()
|
|
31642
|
+
*
|
|
31643
|
+
* // Get first 10 SelfReviewVerdicts
|
|
31644
|
+
* const selfReviewVerdicts = await prisma.selfReviewVerdict.findMany({ take: 10 })
|
|
31645
|
+
*
|
|
31646
|
+
* // Only select the `id`
|
|
31647
|
+
* const selfReviewVerdictWithIdOnly = await prisma.selfReviewVerdict.findMany({ select: { id: true } })
|
|
31648
|
+
*
|
|
31649
|
+
*/
|
|
31650
|
+
findMany<T extends SelfReviewVerdictFindManyArgs>(args?: SelectSubset<T, SelfReviewVerdictFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SelfReviewVerdictPayload<ExtArgs>, T, "findMany">>
|
|
31651
|
+
|
|
31652
|
+
/**
|
|
31653
|
+
* Create a SelfReviewVerdict.
|
|
31654
|
+
* @param {SelfReviewVerdictCreateArgs} args - Arguments to create a SelfReviewVerdict.
|
|
31655
|
+
* @example
|
|
31656
|
+
* // Create one SelfReviewVerdict
|
|
31657
|
+
* const SelfReviewVerdict = await prisma.selfReviewVerdict.create({
|
|
31658
|
+
* data: {
|
|
31659
|
+
* // ... data to create a SelfReviewVerdict
|
|
31660
|
+
* }
|
|
31661
|
+
* })
|
|
31662
|
+
*
|
|
31663
|
+
*/
|
|
31664
|
+
create<T extends SelfReviewVerdictCreateArgs>(args: SelectSubset<T, SelfReviewVerdictCreateArgs<ExtArgs>>): Prisma__SelfReviewVerdictClient<$Result.GetResult<Prisma.$SelfReviewVerdictPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
31665
|
+
|
|
31666
|
+
/**
|
|
31667
|
+
* Create many SelfReviewVerdicts.
|
|
31668
|
+
* @param {SelfReviewVerdictCreateManyArgs} args - Arguments to create many SelfReviewVerdicts.
|
|
31669
|
+
* @example
|
|
31670
|
+
* // Create many SelfReviewVerdicts
|
|
31671
|
+
* const selfReviewVerdict = await prisma.selfReviewVerdict.createMany({
|
|
31672
|
+
* data: [
|
|
31673
|
+
* // ... provide data here
|
|
31674
|
+
* ]
|
|
31675
|
+
* })
|
|
31676
|
+
*
|
|
31677
|
+
*/
|
|
31678
|
+
createMany<T extends SelfReviewVerdictCreateManyArgs>(args?: SelectSubset<T, SelfReviewVerdictCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
31679
|
+
|
|
31680
|
+
/**
|
|
31681
|
+
* Create many SelfReviewVerdicts and returns the data saved in the database.
|
|
31682
|
+
* @param {SelfReviewVerdictCreateManyAndReturnArgs} args - Arguments to create many SelfReviewVerdicts.
|
|
31683
|
+
* @example
|
|
31684
|
+
* // Create many SelfReviewVerdicts
|
|
31685
|
+
* const selfReviewVerdict = await prisma.selfReviewVerdict.createManyAndReturn({
|
|
31686
|
+
* data: [
|
|
31687
|
+
* // ... provide data here
|
|
31688
|
+
* ]
|
|
31689
|
+
* })
|
|
31690
|
+
*
|
|
31691
|
+
* // Create many SelfReviewVerdicts and only return the `id`
|
|
31692
|
+
* const selfReviewVerdictWithIdOnly = await prisma.selfReviewVerdict.createManyAndReturn({
|
|
31693
|
+
* select: { id: true },
|
|
31694
|
+
* data: [
|
|
31695
|
+
* // ... provide data here
|
|
31696
|
+
* ]
|
|
31697
|
+
* })
|
|
31698
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
31699
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
31700
|
+
*
|
|
31701
|
+
*/
|
|
31702
|
+
createManyAndReturn<T extends SelfReviewVerdictCreateManyAndReturnArgs>(args?: SelectSubset<T, SelfReviewVerdictCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SelfReviewVerdictPayload<ExtArgs>, T, "createManyAndReturn">>
|
|
31703
|
+
|
|
31704
|
+
/**
|
|
31705
|
+
* Delete a SelfReviewVerdict.
|
|
31706
|
+
* @param {SelfReviewVerdictDeleteArgs} args - Arguments to delete one SelfReviewVerdict.
|
|
31707
|
+
* @example
|
|
31708
|
+
* // Delete one SelfReviewVerdict
|
|
31709
|
+
* const SelfReviewVerdict = await prisma.selfReviewVerdict.delete({
|
|
31710
|
+
* where: {
|
|
31711
|
+
* // ... filter to delete one SelfReviewVerdict
|
|
31712
|
+
* }
|
|
31713
|
+
* })
|
|
31714
|
+
*
|
|
31715
|
+
*/
|
|
31716
|
+
delete<T extends SelfReviewVerdictDeleteArgs>(args: SelectSubset<T, SelfReviewVerdictDeleteArgs<ExtArgs>>): Prisma__SelfReviewVerdictClient<$Result.GetResult<Prisma.$SelfReviewVerdictPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
31717
|
+
|
|
31718
|
+
/**
|
|
31719
|
+
* Update one SelfReviewVerdict.
|
|
31720
|
+
* @param {SelfReviewVerdictUpdateArgs} args - Arguments to update one SelfReviewVerdict.
|
|
31721
|
+
* @example
|
|
31722
|
+
* // Update one SelfReviewVerdict
|
|
31723
|
+
* const selfReviewVerdict = await prisma.selfReviewVerdict.update({
|
|
31724
|
+
* where: {
|
|
31725
|
+
* // ... provide filter here
|
|
31726
|
+
* },
|
|
31727
|
+
* data: {
|
|
31728
|
+
* // ... provide data here
|
|
31729
|
+
* }
|
|
31730
|
+
* })
|
|
31731
|
+
*
|
|
31732
|
+
*/
|
|
31733
|
+
update<T extends SelfReviewVerdictUpdateArgs>(args: SelectSubset<T, SelfReviewVerdictUpdateArgs<ExtArgs>>): Prisma__SelfReviewVerdictClient<$Result.GetResult<Prisma.$SelfReviewVerdictPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
31734
|
+
|
|
31735
|
+
/**
|
|
31736
|
+
* Delete zero or more SelfReviewVerdicts.
|
|
31737
|
+
* @param {SelfReviewVerdictDeleteManyArgs} args - Arguments to filter SelfReviewVerdicts to delete.
|
|
31738
|
+
* @example
|
|
31739
|
+
* // Delete a few SelfReviewVerdicts
|
|
31740
|
+
* const { count } = await prisma.selfReviewVerdict.deleteMany({
|
|
31741
|
+
* where: {
|
|
31742
|
+
* // ... provide filter here
|
|
31743
|
+
* }
|
|
31744
|
+
* })
|
|
31745
|
+
*
|
|
31746
|
+
*/
|
|
31747
|
+
deleteMany<T extends SelfReviewVerdictDeleteManyArgs>(args?: SelectSubset<T, SelfReviewVerdictDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
31748
|
+
|
|
31749
|
+
/**
|
|
31750
|
+
* Update zero or more SelfReviewVerdicts.
|
|
31751
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
31752
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
31753
|
+
* @param {SelfReviewVerdictUpdateManyArgs} args - Arguments to update one or more rows.
|
|
31754
|
+
* @example
|
|
31755
|
+
* // Update many SelfReviewVerdicts
|
|
31756
|
+
* const selfReviewVerdict = await prisma.selfReviewVerdict.updateMany({
|
|
31757
|
+
* where: {
|
|
31758
|
+
* // ... provide filter here
|
|
31759
|
+
* },
|
|
31760
|
+
* data: {
|
|
31761
|
+
* // ... provide data here
|
|
31762
|
+
* }
|
|
31763
|
+
* })
|
|
31764
|
+
*
|
|
31765
|
+
*/
|
|
31766
|
+
updateMany<T extends SelfReviewVerdictUpdateManyArgs>(args: SelectSubset<T, SelfReviewVerdictUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
31767
|
+
|
|
31768
|
+
/**
|
|
31769
|
+
* Create or update one SelfReviewVerdict.
|
|
31770
|
+
* @param {SelfReviewVerdictUpsertArgs} args - Arguments to update or create a SelfReviewVerdict.
|
|
31771
|
+
* @example
|
|
31772
|
+
* // Update or create a SelfReviewVerdict
|
|
31773
|
+
* const selfReviewVerdict = await prisma.selfReviewVerdict.upsert({
|
|
31774
|
+
* create: {
|
|
31775
|
+
* // ... data to create a SelfReviewVerdict
|
|
31776
|
+
* },
|
|
31777
|
+
* update: {
|
|
31778
|
+
* // ... in case it already exists, update
|
|
31779
|
+
* },
|
|
31780
|
+
* where: {
|
|
31781
|
+
* // ... the filter for the SelfReviewVerdict we want to update
|
|
31782
|
+
* }
|
|
31783
|
+
* })
|
|
31784
|
+
*/
|
|
31785
|
+
upsert<T extends SelfReviewVerdictUpsertArgs>(args: SelectSubset<T, SelfReviewVerdictUpsertArgs<ExtArgs>>): Prisma__SelfReviewVerdictClient<$Result.GetResult<Prisma.$SelfReviewVerdictPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
31786
|
+
|
|
31787
|
+
|
|
31788
|
+
/**
|
|
31789
|
+
* Count the number of SelfReviewVerdicts.
|
|
31790
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
31791
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
31792
|
+
* @param {SelfReviewVerdictCountArgs} args - Arguments to filter SelfReviewVerdicts to count.
|
|
31793
|
+
* @example
|
|
31794
|
+
* // Count the number of SelfReviewVerdicts
|
|
31795
|
+
* const count = await prisma.selfReviewVerdict.count({
|
|
31796
|
+
* where: {
|
|
31797
|
+
* // ... the filter for the SelfReviewVerdicts we want to count
|
|
31798
|
+
* }
|
|
31799
|
+
* })
|
|
31800
|
+
**/
|
|
31801
|
+
count<T extends SelfReviewVerdictCountArgs>(
|
|
31802
|
+
args?: Subset<T, SelfReviewVerdictCountArgs>,
|
|
31803
|
+
): Prisma.PrismaPromise<
|
|
31804
|
+
T extends $Utils.Record<'select', any>
|
|
31805
|
+
? T['select'] extends true
|
|
31806
|
+
? number
|
|
31807
|
+
: GetScalarType<T['select'], SelfReviewVerdictCountAggregateOutputType>
|
|
31808
|
+
: number
|
|
31809
|
+
>
|
|
31810
|
+
|
|
31811
|
+
/**
|
|
31812
|
+
* Allows you to perform aggregations operations on a SelfReviewVerdict.
|
|
31813
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
31814
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
31815
|
+
* @param {SelfReviewVerdictAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
31816
|
+
* @example
|
|
31817
|
+
* // Ordered by age ascending
|
|
31818
|
+
* // Where email contains prisma.io
|
|
31819
|
+
* // Limited to the 10 users
|
|
31820
|
+
* const aggregations = await prisma.user.aggregate({
|
|
31821
|
+
* _avg: {
|
|
31822
|
+
* age: true,
|
|
31823
|
+
* },
|
|
31824
|
+
* where: {
|
|
31825
|
+
* email: {
|
|
31826
|
+
* contains: "prisma.io",
|
|
31827
|
+
* },
|
|
31828
|
+
* },
|
|
31829
|
+
* orderBy: {
|
|
31830
|
+
* age: "asc",
|
|
31831
|
+
* },
|
|
31832
|
+
* take: 10,
|
|
31833
|
+
* })
|
|
31834
|
+
**/
|
|
31835
|
+
aggregate<T extends SelfReviewVerdictAggregateArgs>(args: Subset<T, SelfReviewVerdictAggregateArgs>): Prisma.PrismaPromise<GetSelfReviewVerdictAggregateType<T>>
|
|
31836
|
+
|
|
31837
|
+
/**
|
|
31838
|
+
* Group by SelfReviewVerdict.
|
|
31839
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
31840
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
31841
|
+
* @param {SelfReviewVerdictGroupByArgs} args - Group by arguments.
|
|
31842
|
+
* @example
|
|
31843
|
+
* // Group by city, order by createdAt, get count
|
|
31844
|
+
* const result = await prisma.user.groupBy({
|
|
31845
|
+
* by: ['city', 'createdAt'],
|
|
31846
|
+
* orderBy: {
|
|
31847
|
+
* createdAt: true
|
|
31848
|
+
* },
|
|
31849
|
+
* _count: {
|
|
31850
|
+
* _all: true
|
|
31851
|
+
* },
|
|
31852
|
+
* })
|
|
31853
|
+
*
|
|
31854
|
+
**/
|
|
31855
|
+
groupBy<
|
|
31856
|
+
T extends SelfReviewVerdictGroupByArgs,
|
|
31857
|
+
HasSelectOrTake extends Or<
|
|
31858
|
+
Extends<'skip', Keys<T>>,
|
|
31859
|
+
Extends<'take', Keys<T>>
|
|
31860
|
+
>,
|
|
31861
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
31862
|
+
? { orderBy: SelfReviewVerdictGroupByArgs['orderBy'] }
|
|
31863
|
+
: { orderBy?: SelfReviewVerdictGroupByArgs['orderBy'] },
|
|
31864
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
31865
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
31866
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
31867
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
31868
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
31869
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
31870
|
+
InputErrors extends ByEmpty extends True
|
|
31871
|
+
? `Error: "by" must not be empty.`
|
|
31872
|
+
: HavingValid extends False
|
|
31873
|
+
? {
|
|
31874
|
+
[P in HavingFields]: P extends ByFields
|
|
31875
|
+
? never
|
|
31876
|
+
: P extends string
|
|
31877
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
31878
|
+
: [
|
|
31879
|
+
Error,
|
|
31880
|
+
'Field ',
|
|
31881
|
+
P,
|
|
31882
|
+
` in "having" needs to be provided in "by"`,
|
|
31883
|
+
]
|
|
31884
|
+
}[HavingFields]
|
|
31885
|
+
: 'take' extends Keys<T>
|
|
31886
|
+
? 'orderBy' extends Keys<T>
|
|
31887
|
+
? ByValid extends True
|
|
31888
|
+
? {}
|
|
31889
|
+
: {
|
|
31890
|
+
[P in OrderFields]: P extends ByFields
|
|
31891
|
+
? never
|
|
31892
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
31893
|
+
}[OrderFields]
|
|
31894
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
31895
|
+
: 'skip' extends Keys<T>
|
|
31896
|
+
? 'orderBy' extends Keys<T>
|
|
31897
|
+
? ByValid extends True
|
|
31898
|
+
? {}
|
|
31899
|
+
: {
|
|
31900
|
+
[P in OrderFields]: P extends ByFields
|
|
31901
|
+
? never
|
|
31902
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
31903
|
+
}[OrderFields]
|
|
31904
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
31905
|
+
: ByValid extends True
|
|
31906
|
+
? {}
|
|
31907
|
+
: {
|
|
31908
|
+
[P in OrderFields]: P extends ByFields
|
|
31909
|
+
? never
|
|
31910
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
31911
|
+
}[OrderFields]
|
|
31912
|
+
>(args: SubsetIntersection<T, SelfReviewVerdictGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetSelfReviewVerdictGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
31913
|
+
/**
|
|
31914
|
+
* Fields of the SelfReviewVerdict model
|
|
31915
|
+
*/
|
|
31916
|
+
readonly fields: SelfReviewVerdictFieldRefs;
|
|
31917
|
+
}
|
|
31918
|
+
|
|
31919
|
+
/**
|
|
31920
|
+
* The delegate class that acts as a "Promise-like" for SelfReviewVerdict.
|
|
31921
|
+
* Why is this prefixed with `Prisma__`?
|
|
31922
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
31923
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
31924
|
+
*/
|
|
31925
|
+
export interface Prisma__SelfReviewVerdictClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
31926
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
31927
|
+
project<T extends ProjectDefaultArgs<ExtArgs> = {}>(args?: Subset<T, ProjectDefaultArgs<ExtArgs>>): Prisma__ProjectClient<$Result.GetResult<Prisma.$ProjectPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
31928
|
+
qaFixAttempt<T extends QAFixAttemptDefaultArgs<ExtArgs> = {}>(args?: Subset<T, QAFixAttemptDefaultArgs<ExtArgs>>): Prisma__QAFixAttemptClient<$Result.GetResult<Prisma.$QAFixAttemptPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
31929
|
+
/**
|
|
31930
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
31931
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
31932
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
31933
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
31934
|
+
*/
|
|
31935
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>
|
|
31936
|
+
/**
|
|
31937
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
31938
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
31939
|
+
* @returns A Promise for the completion of the callback.
|
|
31940
|
+
*/
|
|
31941
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
31942
|
+
/**
|
|
31943
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
31944
|
+
* resolved value cannot be modified from the callback.
|
|
31945
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
31946
|
+
* @returns A Promise for the completion of the callback.
|
|
31947
|
+
*/
|
|
31948
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
31949
|
+
}
|
|
31950
|
+
|
|
31951
|
+
|
|
31952
|
+
|
|
31953
|
+
|
|
31954
|
+
/**
|
|
31955
|
+
* Fields of the SelfReviewVerdict model
|
|
30759
31956
|
*/
|
|
30760
|
-
interface
|
|
30761
|
-
readonly id: FieldRef<"
|
|
30762
|
-
readonly projectId: FieldRef<"
|
|
30763
|
-
readonly
|
|
30764
|
-
readonly
|
|
30765
|
-
readonly
|
|
30766
|
-
readonly
|
|
30767
|
-
readonly
|
|
30768
|
-
readonly
|
|
30769
|
-
readonly
|
|
30770
|
-
readonly
|
|
31957
|
+
interface SelfReviewVerdictFieldRefs {
|
|
31958
|
+
readonly id: FieldRef<"SelfReviewVerdict", 'String'>
|
|
31959
|
+
readonly projectId: FieldRef<"SelfReviewVerdict", 'String'>
|
|
31960
|
+
readonly qaFixAttemptId: FieldRef<"SelfReviewVerdict", 'String'>
|
|
31961
|
+
readonly qaTicketId: FieldRef<"SelfReviewVerdict", 'String'>
|
|
31962
|
+
readonly classification: FieldRef<"SelfReviewVerdict", 'String'>
|
|
31963
|
+
readonly surface: FieldRef<"SelfReviewVerdict", 'String'>
|
|
31964
|
+
readonly verdict: FieldRef<"SelfReviewVerdict", 'String'>
|
|
31965
|
+
readonly reasonHints: FieldRef<"SelfReviewVerdict", 'String[]'>
|
|
31966
|
+
readonly criticalIssuesFound: FieldRef<"SelfReviewVerdict", 'Int'>
|
|
31967
|
+
readonly minorIssuesFound: FieldRef<"SelfReviewVerdict", 'Int'>
|
|
31968
|
+
readonly createdAt: FieldRef<"SelfReviewVerdict", 'DateTime'>
|
|
30771
31969
|
}
|
|
30772
31970
|
|
|
30773
31971
|
|
|
30774
31972
|
// Custom InputTypes
|
|
30775
31973
|
/**
|
|
30776
|
-
*
|
|
31974
|
+
* SelfReviewVerdict findUnique
|
|
30777
31975
|
*/
|
|
30778
|
-
export type
|
|
31976
|
+
export type SelfReviewVerdictFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
30779
31977
|
/**
|
|
30780
|
-
* Select specific fields to fetch from the
|
|
31978
|
+
* Select specific fields to fetch from the SelfReviewVerdict
|
|
30781
31979
|
*/
|
|
30782
|
-
select?:
|
|
31980
|
+
select?: SelfReviewVerdictSelect<ExtArgs> | null
|
|
30783
31981
|
/**
|
|
30784
31982
|
* Choose, which related nodes to fetch as well
|
|
30785
31983
|
*/
|
|
30786
|
-
include?:
|
|
31984
|
+
include?: SelfReviewVerdictInclude<ExtArgs> | null
|
|
30787
31985
|
/**
|
|
30788
|
-
* Filter, which
|
|
31986
|
+
* Filter, which SelfReviewVerdict to fetch.
|
|
30789
31987
|
*/
|
|
30790
|
-
where:
|
|
31988
|
+
where: SelfReviewVerdictWhereUniqueInput
|
|
30791
31989
|
}
|
|
30792
31990
|
|
|
30793
31991
|
/**
|
|
30794
|
-
*
|
|
31992
|
+
* SelfReviewVerdict findUniqueOrThrow
|
|
30795
31993
|
*/
|
|
30796
|
-
export type
|
|
31994
|
+
export type SelfReviewVerdictFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
30797
31995
|
/**
|
|
30798
|
-
* Select specific fields to fetch from the
|
|
31996
|
+
* Select specific fields to fetch from the SelfReviewVerdict
|
|
30799
31997
|
*/
|
|
30800
|
-
select?:
|
|
31998
|
+
select?: SelfReviewVerdictSelect<ExtArgs> | null
|
|
30801
31999
|
/**
|
|
30802
32000
|
* Choose, which related nodes to fetch as well
|
|
30803
32001
|
*/
|
|
30804
|
-
include?:
|
|
32002
|
+
include?: SelfReviewVerdictInclude<ExtArgs> | null
|
|
30805
32003
|
/**
|
|
30806
|
-
* Filter, which
|
|
32004
|
+
* Filter, which SelfReviewVerdict to fetch.
|
|
30807
32005
|
*/
|
|
30808
|
-
where:
|
|
32006
|
+
where: SelfReviewVerdictWhereUniqueInput
|
|
30809
32007
|
}
|
|
30810
32008
|
|
|
30811
32009
|
/**
|
|
30812
|
-
*
|
|
32010
|
+
* SelfReviewVerdict findFirst
|
|
30813
32011
|
*/
|
|
30814
|
-
export type
|
|
32012
|
+
export type SelfReviewVerdictFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
30815
32013
|
/**
|
|
30816
|
-
* Select specific fields to fetch from the
|
|
32014
|
+
* Select specific fields to fetch from the SelfReviewVerdict
|
|
30817
32015
|
*/
|
|
30818
|
-
select?:
|
|
32016
|
+
select?: SelfReviewVerdictSelect<ExtArgs> | null
|
|
30819
32017
|
/**
|
|
30820
32018
|
* Choose, which related nodes to fetch as well
|
|
30821
32019
|
*/
|
|
30822
|
-
include?:
|
|
32020
|
+
include?: SelfReviewVerdictInclude<ExtArgs> | null
|
|
30823
32021
|
/**
|
|
30824
|
-
* Filter, which
|
|
32022
|
+
* Filter, which SelfReviewVerdict to fetch.
|
|
30825
32023
|
*/
|
|
30826
|
-
where?:
|
|
32024
|
+
where?: SelfReviewVerdictWhereInput
|
|
30827
32025
|
/**
|
|
30828
32026
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
30829
32027
|
*
|
|
30830
|
-
* Determine the order of
|
|
32028
|
+
* Determine the order of SelfReviewVerdicts to fetch.
|
|
30831
32029
|
*/
|
|
30832
|
-
orderBy?:
|
|
32030
|
+
orderBy?: SelfReviewVerdictOrderByWithRelationInput | SelfReviewVerdictOrderByWithRelationInput[]
|
|
30833
32031
|
/**
|
|
30834
32032
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
30835
32033
|
*
|
|
30836
|
-
* Sets the position for searching for
|
|
32034
|
+
* Sets the position for searching for SelfReviewVerdicts.
|
|
30837
32035
|
*/
|
|
30838
|
-
cursor?:
|
|
32036
|
+
cursor?: SelfReviewVerdictWhereUniqueInput
|
|
30839
32037
|
/**
|
|
30840
32038
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
30841
32039
|
*
|
|
30842
|
-
* Take `±n`
|
|
32040
|
+
* Take `±n` SelfReviewVerdicts from the position of the cursor.
|
|
30843
32041
|
*/
|
|
30844
32042
|
take?: number
|
|
30845
32043
|
/**
|
|
30846
32044
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
30847
32045
|
*
|
|
30848
|
-
* Skip the first `n`
|
|
32046
|
+
* Skip the first `n` SelfReviewVerdicts.
|
|
30849
32047
|
*/
|
|
30850
32048
|
skip?: number
|
|
30851
32049
|
/**
|
|
30852
32050
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
30853
32051
|
*
|
|
30854
|
-
* Filter by unique combinations of
|
|
32052
|
+
* Filter by unique combinations of SelfReviewVerdicts.
|
|
30855
32053
|
*/
|
|
30856
|
-
distinct?:
|
|
32054
|
+
distinct?: SelfReviewVerdictScalarFieldEnum | SelfReviewVerdictScalarFieldEnum[]
|
|
30857
32055
|
}
|
|
30858
32056
|
|
|
30859
32057
|
/**
|
|
30860
|
-
*
|
|
32058
|
+
* SelfReviewVerdict findFirstOrThrow
|
|
30861
32059
|
*/
|
|
30862
|
-
export type
|
|
32060
|
+
export type SelfReviewVerdictFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
30863
32061
|
/**
|
|
30864
|
-
* Select specific fields to fetch from the
|
|
32062
|
+
* Select specific fields to fetch from the SelfReviewVerdict
|
|
30865
32063
|
*/
|
|
30866
|
-
select?:
|
|
32064
|
+
select?: SelfReviewVerdictSelect<ExtArgs> | null
|
|
30867
32065
|
/**
|
|
30868
32066
|
* Choose, which related nodes to fetch as well
|
|
30869
32067
|
*/
|
|
30870
|
-
include?:
|
|
32068
|
+
include?: SelfReviewVerdictInclude<ExtArgs> | null
|
|
30871
32069
|
/**
|
|
30872
|
-
* Filter, which
|
|
32070
|
+
* Filter, which SelfReviewVerdict to fetch.
|
|
30873
32071
|
*/
|
|
30874
|
-
where?:
|
|
32072
|
+
where?: SelfReviewVerdictWhereInput
|
|
30875
32073
|
/**
|
|
30876
32074
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
30877
32075
|
*
|
|
30878
|
-
* Determine the order of
|
|
32076
|
+
* Determine the order of SelfReviewVerdicts to fetch.
|
|
30879
32077
|
*/
|
|
30880
|
-
orderBy?:
|
|
32078
|
+
orderBy?: SelfReviewVerdictOrderByWithRelationInput | SelfReviewVerdictOrderByWithRelationInput[]
|
|
30881
32079
|
/**
|
|
30882
32080
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
30883
32081
|
*
|
|
30884
|
-
* Sets the position for searching for
|
|
32082
|
+
* Sets the position for searching for SelfReviewVerdicts.
|
|
30885
32083
|
*/
|
|
30886
|
-
cursor?:
|
|
32084
|
+
cursor?: SelfReviewVerdictWhereUniqueInput
|
|
30887
32085
|
/**
|
|
30888
32086
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
30889
32087
|
*
|
|
30890
|
-
* Take `±n`
|
|
32088
|
+
* Take `±n` SelfReviewVerdicts from the position of the cursor.
|
|
30891
32089
|
*/
|
|
30892
32090
|
take?: number
|
|
30893
32091
|
/**
|
|
30894
32092
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
30895
32093
|
*
|
|
30896
|
-
* Skip the first `n`
|
|
32094
|
+
* Skip the first `n` SelfReviewVerdicts.
|
|
30897
32095
|
*/
|
|
30898
32096
|
skip?: number
|
|
30899
32097
|
/**
|
|
30900
32098
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
30901
32099
|
*
|
|
30902
|
-
* Filter by unique combinations of
|
|
32100
|
+
* Filter by unique combinations of SelfReviewVerdicts.
|
|
30903
32101
|
*/
|
|
30904
|
-
distinct?:
|
|
32102
|
+
distinct?: SelfReviewVerdictScalarFieldEnum | SelfReviewVerdictScalarFieldEnum[]
|
|
30905
32103
|
}
|
|
30906
32104
|
|
|
30907
32105
|
/**
|
|
30908
|
-
*
|
|
32106
|
+
* SelfReviewVerdict findMany
|
|
30909
32107
|
*/
|
|
30910
|
-
export type
|
|
32108
|
+
export type SelfReviewVerdictFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
30911
32109
|
/**
|
|
30912
|
-
* Select specific fields to fetch from the
|
|
32110
|
+
* Select specific fields to fetch from the SelfReviewVerdict
|
|
30913
32111
|
*/
|
|
30914
|
-
select?:
|
|
32112
|
+
select?: SelfReviewVerdictSelect<ExtArgs> | null
|
|
30915
32113
|
/**
|
|
30916
32114
|
* Choose, which related nodes to fetch as well
|
|
30917
32115
|
*/
|
|
30918
|
-
include?:
|
|
32116
|
+
include?: SelfReviewVerdictInclude<ExtArgs> | null
|
|
30919
32117
|
/**
|
|
30920
|
-
* Filter, which
|
|
32118
|
+
* Filter, which SelfReviewVerdicts to fetch.
|
|
30921
32119
|
*/
|
|
30922
|
-
where?:
|
|
32120
|
+
where?: SelfReviewVerdictWhereInput
|
|
30923
32121
|
/**
|
|
30924
32122
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
30925
32123
|
*
|
|
30926
|
-
* Determine the order of
|
|
32124
|
+
* Determine the order of SelfReviewVerdicts to fetch.
|
|
30927
32125
|
*/
|
|
30928
|
-
orderBy?:
|
|
32126
|
+
orderBy?: SelfReviewVerdictOrderByWithRelationInput | SelfReviewVerdictOrderByWithRelationInput[]
|
|
30929
32127
|
/**
|
|
30930
32128
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
30931
32129
|
*
|
|
30932
|
-
* Sets the position for listing
|
|
32130
|
+
* Sets the position for listing SelfReviewVerdicts.
|
|
30933
32131
|
*/
|
|
30934
|
-
cursor?:
|
|
32132
|
+
cursor?: SelfReviewVerdictWhereUniqueInput
|
|
30935
32133
|
/**
|
|
30936
32134
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
30937
32135
|
*
|
|
30938
|
-
* Take `±n`
|
|
32136
|
+
* Take `±n` SelfReviewVerdicts from the position of the cursor.
|
|
30939
32137
|
*/
|
|
30940
32138
|
take?: number
|
|
30941
32139
|
/**
|
|
30942
32140
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
30943
32141
|
*
|
|
30944
|
-
* Skip the first `n`
|
|
32142
|
+
* Skip the first `n` SelfReviewVerdicts.
|
|
30945
32143
|
*/
|
|
30946
32144
|
skip?: number
|
|
30947
|
-
distinct?:
|
|
32145
|
+
distinct?: SelfReviewVerdictScalarFieldEnum | SelfReviewVerdictScalarFieldEnum[]
|
|
30948
32146
|
}
|
|
30949
32147
|
|
|
30950
32148
|
/**
|
|
30951
|
-
*
|
|
32149
|
+
* SelfReviewVerdict create
|
|
30952
32150
|
*/
|
|
30953
|
-
export type
|
|
32151
|
+
export type SelfReviewVerdictCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
30954
32152
|
/**
|
|
30955
|
-
* Select specific fields to fetch from the
|
|
32153
|
+
* Select specific fields to fetch from the SelfReviewVerdict
|
|
30956
32154
|
*/
|
|
30957
|
-
select?:
|
|
32155
|
+
select?: SelfReviewVerdictSelect<ExtArgs> | null
|
|
30958
32156
|
/**
|
|
30959
32157
|
* Choose, which related nodes to fetch as well
|
|
30960
32158
|
*/
|
|
30961
|
-
include?:
|
|
32159
|
+
include?: SelfReviewVerdictInclude<ExtArgs> | null
|
|
30962
32160
|
/**
|
|
30963
|
-
* The data needed to create a
|
|
32161
|
+
* The data needed to create a SelfReviewVerdict.
|
|
30964
32162
|
*/
|
|
30965
|
-
data: XOR<
|
|
32163
|
+
data: XOR<SelfReviewVerdictCreateInput, SelfReviewVerdictUncheckedCreateInput>
|
|
30966
32164
|
}
|
|
30967
32165
|
|
|
30968
32166
|
/**
|
|
30969
|
-
*
|
|
32167
|
+
* SelfReviewVerdict createMany
|
|
30970
32168
|
*/
|
|
30971
|
-
export type
|
|
32169
|
+
export type SelfReviewVerdictCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
30972
32170
|
/**
|
|
30973
|
-
* The data used to create many
|
|
32171
|
+
* The data used to create many SelfReviewVerdicts.
|
|
30974
32172
|
*/
|
|
30975
|
-
data:
|
|
32173
|
+
data: SelfReviewVerdictCreateManyInput | SelfReviewVerdictCreateManyInput[]
|
|
30976
32174
|
skipDuplicates?: boolean
|
|
30977
32175
|
}
|
|
30978
32176
|
|
|
30979
32177
|
/**
|
|
30980
|
-
*
|
|
32178
|
+
* SelfReviewVerdict createManyAndReturn
|
|
30981
32179
|
*/
|
|
30982
|
-
export type
|
|
32180
|
+
export type SelfReviewVerdictCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
30983
32181
|
/**
|
|
30984
|
-
* Select specific fields to fetch from the
|
|
32182
|
+
* Select specific fields to fetch from the SelfReviewVerdict
|
|
30985
32183
|
*/
|
|
30986
|
-
select?:
|
|
32184
|
+
select?: SelfReviewVerdictSelectCreateManyAndReturn<ExtArgs> | null
|
|
30987
32185
|
/**
|
|
30988
|
-
* The data used to create many
|
|
32186
|
+
* The data used to create many SelfReviewVerdicts.
|
|
30989
32187
|
*/
|
|
30990
|
-
data:
|
|
32188
|
+
data: SelfReviewVerdictCreateManyInput | SelfReviewVerdictCreateManyInput[]
|
|
30991
32189
|
skipDuplicates?: boolean
|
|
30992
32190
|
/**
|
|
30993
32191
|
* Choose, which related nodes to fetch as well
|
|
30994
32192
|
*/
|
|
30995
|
-
include?:
|
|
32193
|
+
include?: SelfReviewVerdictIncludeCreateManyAndReturn<ExtArgs> | null
|
|
30996
32194
|
}
|
|
30997
32195
|
|
|
30998
32196
|
/**
|
|
30999
|
-
*
|
|
32197
|
+
* SelfReviewVerdict update
|
|
31000
32198
|
*/
|
|
31001
|
-
export type
|
|
32199
|
+
export type SelfReviewVerdictUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31002
32200
|
/**
|
|
31003
|
-
* Select specific fields to fetch from the
|
|
32201
|
+
* Select specific fields to fetch from the SelfReviewVerdict
|
|
31004
32202
|
*/
|
|
31005
|
-
select?:
|
|
32203
|
+
select?: SelfReviewVerdictSelect<ExtArgs> | null
|
|
31006
32204
|
/**
|
|
31007
32205
|
* Choose, which related nodes to fetch as well
|
|
31008
32206
|
*/
|
|
31009
|
-
include?:
|
|
32207
|
+
include?: SelfReviewVerdictInclude<ExtArgs> | null
|
|
31010
32208
|
/**
|
|
31011
|
-
* The data needed to update a
|
|
32209
|
+
* The data needed to update a SelfReviewVerdict.
|
|
31012
32210
|
*/
|
|
31013
|
-
data: XOR<
|
|
32211
|
+
data: XOR<SelfReviewVerdictUpdateInput, SelfReviewVerdictUncheckedUpdateInput>
|
|
31014
32212
|
/**
|
|
31015
|
-
* Choose, which
|
|
32213
|
+
* Choose, which SelfReviewVerdict to update.
|
|
31016
32214
|
*/
|
|
31017
|
-
where:
|
|
32215
|
+
where: SelfReviewVerdictWhereUniqueInput
|
|
31018
32216
|
}
|
|
31019
32217
|
|
|
31020
32218
|
/**
|
|
31021
|
-
*
|
|
32219
|
+
* SelfReviewVerdict updateMany
|
|
31022
32220
|
*/
|
|
31023
|
-
export type
|
|
32221
|
+
export type SelfReviewVerdictUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31024
32222
|
/**
|
|
31025
|
-
* The data used to update
|
|
32223
|
+
* The data used to update SelfReviewVerdicts.
|
|
31026
32224
|
*/
|
|
31027
|
-
data: XOR<
|
|
32225
|
+
data: XOR<SelfReviewVerdictUpdateManyMutationInput, SelfReviewVerdictUncheckedUpdateManyInput>
|
|
31028
32226
|
/**
|
|
31029
|
-
* Filter which
|
|
32227
|
+
* Filter which SelfReviewVerdicts to update
|
|
31030
32228
|
*/
|
|
31031
|
-
where?:
|
|
32229
|
+
where?: SelfReviewVerdictWhereInput
|
|
31032
32230
|
}
|
|
31033
32231
|
|
|
31034
32232
|
/**
|
|
31035
|
-
*
|
|
32233
|
+
* SelfReviewVerdict upsert
|
|
31036
32234
|
*/
|
|
31037
|
-
export type
|
|
32235
|
+
export type SelfReviewVerdictUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31038
32236
|
/**
|
|
31039
|
-
* Select specific fields to fetch from the
|
|
32237
|
+
* Select specific fields to fetch from the SelfReviewVerdict
|
|
31040
32238
|
*/
|
|
31041
|
-
select?:
|
|
32239
|
+
select?: SelfReviewVerdictSelect<ExtArgs> | null
|
|
31042
32240
|
/**
|
|
31043
32241
|
* Choose, which related nodes to fetch as well
|
|
31044
32242
|
*/
|
|
31045
|
-
include?:
|
|
32243
|
+
include?: SelfReviewVerdictInclude<ExtArgs> | null
|
|
31046
32244
|
/**
|
|
31047
|
-
* The filter to search for the
|
|
32245
|
+
* The filter to search for the SelfReviewVerdict to update in case it exists.
|
|
31048
32246
|
*/
|
|
31049
|
-
where:
|
|
32247
|
+
where: SelfReviewVerdictWhereUniqueInput
|
|
31050
32248
|
/**
|
|
31051
|
-
* In case the
|
|
32249
|
+
* In case the SelfReviewVerdict found by the `where` argument doesn't exist, create a new SelfReviewVerdict with this data.
|
|
31052
32250
|
*/
|
|
31053
|
-
create: XOR<
|
|
32251
|
+
create: XOR<SelfReviewVerdictCreateInput, SelfReviewVerdictUncheckedCreateInput>
|
|
31054
32252
|
/**
|
|
31055
|
-
* In case the
|
|
32253
|
+
* In case the SelfReviewVerdict was found with the provided `where` argument, update it with this data.
|
|
31056
32254
|
*/
|
|
31057
|
-
update: XOR<
|
|
32255
|
+
update: XOR<SelfReviewVerdictUpdateInput, SelfReviewVerdictUncheckedUpdateInput>
|
|
31058
32256
|
}
|
|
31059
32257
|
|
|
31060
32258
|
/**
|
|
31061
|
-
*
|
|
32259
|
+
* SelfReviewVerdict delete
|
|
31062
32260
|
*/
|
|
31063
|
-
export type
|
|
32261
|
+
export type SelfReviewVerdictDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31064
32262
|
/**
|
|
31065
|
-
* Select specific fields to fetch from the
|
|
32263
|
+
* Select specific fields to fetch from the SelfReviewVerdict
|
|
31066
32264
|
*/
|
|
31067
|
-
select?:
|
|
32265
|
+
select?: SelfReviewVerdictSelect<ExtArgs> | null
|
|
31068
32266
|
/**
|
|
31069
32267
|
* Choose, which related nodes to fetch as well
|
|
31070
32268
|
*/
|
|
31071
|
-
include?:
|
|
32269
|
+
include?: SelfReviewVerdictInclude<ExtArgs> | null
|
|
31072
32270
|
/**
|
|
31073
|
-
* Filter which
|
|
32271
|
+
* Filter which SelfReviewVerdict to delete.
|
|
31074
32272
|
*/
|
|
31075
|
-
where:
|
|
32273
|
+
where: SelfReviewVerdictWhereUniqueInput
|
|
31076
32274
|
}
|
|
31077
32275
|
|
|
31078
32276
|
/**
|
|
31079
|
-
*
|
|
32277
|
+
* SelfReviewVerdict deleteMany
|
|
31080
32278
|
*/
|
|
31081
|
-
export type
|
|
32279
|
+
export type SelfReviewVerdictDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31082
32280
|
/**
|
|
31083
|
-
* Filter which
|
|
32281
|
+
* Filter which SelfReviewVerdicts to delete
|
|
31084
32282
|
*/
|
|
31085
|
-
where?:
|
|
32283
|
+
where?: SelfReviewVerdictWhereInput
|
|
31086
32284
|
}
|
|
31087
32285
|
|
|
31088
32286
|
/**
|
|
31089
|
-
*
|
|
32287
|
+
* SelfReviewVerdict without action
|
|
31090
32288
|
*/
|
|
31091
|
-
export type
|
|
32289
|
+
export type SelfReviewVerdictDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
31092
32290
|
/**
|
|
31093
|
-
* Select specific fields to fetch from the
|
|
32291
|
+
* Select specific fields to fetch from the SelfReviewVerdict
|
|
31094
32292
|
*/
|
|
31095
|
-
select?:
|
|
32293
|
+
select?: SelfReviewVerdictSelect<ExtArgs> | null
|
|
31096
32294
|
/**
|
|
31097
32295
|
* Choose, which related nodes to fetch as well
|
|
31098
32296
|
*/
|
|
31099
|
-
include?:
|
|
32297
|
+
include?: SelfReviewVerdictInclude<ExtArgs> | null
|
|
31100
32298
|
}
|
|
31101
32299
|
|
|
31102
32300
|
|
|
@@ -31574,6 +32772,23 @@ export namespace Prisma {
|
|
|
31574
32772
|
export type MilestoneEventScalarFieldEnum = (typeof MilestoneEventScalarFieldEnum)[keyof typeof MilestoneEventScalarFieldEnum]
|
|
31575
32773
|
|
|
31576
32774
|
|
|
32775
|
+
export const SelfReviewVerdictScalarFieldEnum: {
|
|
32776
|
+
id: 'id',
|
|
32777
|
+
projectId: 'projectId',
|
|
32778
|
+
qaFixAttemptId: 'qaFixAttemptId',
|
|
32779
|
+
qaTicketId: 'qaTicketId',
|
|
32780
|
+
classification: 'classification',
|
|
32781
|
+
surface: 'surface',
|
|
32782
|
+
verdict: 'verdict',
|
|
32783
|
+
reasonHints: 'reasonHints',
|
|
32784
|
+
criticalIssuesFound: 'criticalIssuesFound',
|
|
32785
|
+
minorIssuesFound: 'minorIssuesFound',
|
|
32786
|
+
createdAt: 'createdAt'
|
|
32787
|
+
};
|
|
32788
|
+
|
|
32789
|
+
export type SelfReviewVerdictScalarFieldEnum = (typeof SelfReviewVerdictScalarFieldEnum)[keyof typeof SelfReviewVerdictScalarFieldEnum]
|
|
32790
|
+
|
|
32791
|
+
|
|
31577
32792
|
export const SortOrder: {
|
|
31578
32793
|
asc: 'asc',
|
|
31579
32794
|
desc: 'desc'
|
|
@@ -32024,6 +33239,7 @@ export namespace Prisma {
|
|
|
32024
33239
|
tenantFuzzConfig?: XOR<TenantFuzzConfigNullableRelationFilter, TenantFuzzConfigWhereInput> | null
|
|
32025
33240
|
rumSamples?: RumSampleListRelationFilter
|
|
32026
33241
|
milestoneEvents?: MilestoneEventListRelationFilter
|
|
33242
|
+
selfReviewVerdicts?: SelfReviewVerdictListRelationFilter
|
|
32027
33243
|
}
|
|
32028
33244
|
|
|
32029
33245
|
export type ProjectOrderByWithRelationInput = {
|
|
@@ -32067,6 +33283,7 @@ export namespace Prisma {
|
|
|
32067
33283
|
tenantFuzzConfig?: TenantFuzzConfigOrderByWithRelationInput
|
|
32068
33284
|
rumSamples?: RumSampleOrderByRelationAggregateInput
|
|
32069
33285
|
milestoneEvents?: MilestoneEventOrderByRelationAggregateInput
|
|
33286
|
+
selfReviewVerdicts?: SelfReviewVerdictOrderByRelationAggregateInput
|
|
32070
33287
|
}
|
|
32071
33288
|
|
|
32072
33289
|
export type ProjectWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -32113,6 +33330,7 @@ export namespace Prisma {
|
|
|
32113
33330
|
tenantFuzzConfig?: XOR<TenantFuzzConfigNullableRelationFilter, TenantFuzzConfigWhereInput> | null
|
|
32114
33331
|
rumSamples?: RumSampleListRelationFilter
|
|
32115
33332
|
milestoneEvents?: MilestoneEventListRelationFilter
|
|
33333
|
+
selfReviewVerdicts?: SelfReviewVerdictListRelationFilter
|
|
32116
33334
|
}, "id" | "slug" | "repoFullName">
|
|
32117
33335
|
|
|
32118
33336
|
export type ProjectOrderByWithAggregationInput = {
|
|
@@ -32792,6 +34010,7 @@ export namespace Prisma {
|
|
|
32792
34010
|
ticket?: XOR<QATicketRelationFilter, QATicketWhereInput>
|
|
32793
34011
|
project?: XOR<ProjectRelationFilter, ProjectWhereInput>
|
|
32794
34012
|
artifacts?: AuditArtifactListRelationFilter
|
|
34013
|
+
selfReviewVerdicts?: SelfReviewVerdictListRelationFilter
|
|
32795
34014
|
}
|
|
32796
34015
|
|
|
32797
34016
|
export type QAFixAttemptOrderByWithRelationInput = {
|
|
@@ -32824,6 +34043,7 @@ export namespace Prisma {
|
|
|
32824
34043
|
ticket?: QATicketOrderByWithRelationInput
|
|
32825
34044
|
project?: ProjectOrderByWithRelationInput
|
|
32826
34045
|
artifacts?: AuditArtifactOrderByRelationAggregateInput
|
|
34046
|
+
selfReviewVerdicts?: SelfReviewVerdictOrderByRelationAggregateInput
|
|
32827
34047
|
}
|
|
32828
34048
|
|
|
32829
34049
|
export type QAFixAttemptWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -32859,6 +34079,7 @@ export namespace Prisma {
|
|
|
32859
34079
|
ticket?: XOR<QATicketRelationFilter, QATicketWhereInput>
|
|
32860
34080
|
project?: XOR<ProjectRelationFilter, ProjectWhereInput>
|
|
32861
34081
|
artifacts?: AuditArtifactListRelationFilter
|
|
34082
|
+
selfReviewVerdicts?: SelfReviewVerdictListRelationFilter
|
|
32862
34083
|
}, "id">
|
|
32863
34084
|
|
|
32864
34085
|
export type QAFixAttemptOrderByWithAggregationInput = {
|
|
@@ -34413,6 +35634,96 @@ export namespace Prisma {
|
|
|
34413
35634
|
updatedAt?: DateTimeWithAggregatesFilter<"MilestoneEvent"> | Date | string
|
|
34414
35635
|
}
|
|
34415
35636
|
|
|
35637
|
+
export type SelfReviewVerdictWhereInput = {
|
|
35638
|
+
AND?: SelfReviewVerdictWhereInput | SelfReviewVerdictWhereInput[]
|
|
35639
|
+
OR?: SelfReviewVerdictWhereInput[]
|
|
35640
|
+
NOT?: SelfReviewVerdictWhereInput | SelfReviewVerdictWhereInput[]
|
|
35641
|
+
id?: StringFilter<"SelfReviewVerdict"> | string
|
|
35642
|
+
projectId?: StringFilter<"SelfReviewVerdict"> | string
|
|
35643
|
+
qaFixAttemptId?: StringFilter<"SelfReviewVerdict"> | string
|
|
35644
|
+
qaTicketId?: StringFilter<"SelfReviewVerdict"> | string
|
|
35645
|
+
classification?: StringFilter<"SelfReviewVerdict"> | string
|
|
35646
|
+
surface?: StringFilter<"SelfReviewVerdict"> | string
|
|
35647
|
+
verdict?: StringFilter<"SelfReviewVerdict"> | string
|
|
35648
|
+
reasonHints?: StringNullableListFilter<"SelfReviewVerdict">
|
|
35649
|
+
criticalIssuesFound?: IntFilter<"SelfReviewVerdict"> | number
|
|
35650
|
+
minorIssuesFound?: IntFilter<"SelfReviewVerdict"> | number
|
|
35651
|
+
createdAt?: DateTimeFilter<"SelfReviewVerdict"> | Date | string
|
|
35652
|
+
project?: XOR<ProjectRelationFilter, ProjectWhereInput>
|
|
35653
|
+
qaFixAttempt?: XOR<QAFixAttemptRelationFilter, QAFixAttemptWhereInput>
|
|
35654
|
+
}
|
|
35655
|
+
|
|
35656
|
+
export type SelfReviewVerdictOrderByWithRelationInput = {
|
|
35657
|
+
id?: SortOrder
|
|
35658
|
+
projectId?: SortOrder
|
|
35659
|
+
qaFixAttemptId?: SortOrder
|
|
35660
|
+
qaTicketId?: SortOrder
|
|
35661
|
+
classification?: SortOrder
|
|
35662
|
+
surface?: SortOrder
|
|
35663
|
+
verdict?: SortOrder
|
|
35664
|
+
reasonHints?: SortOrder
|
|
35665
|
+
criticalIssuesFound?: SortOrder
|
|
35666
|
+
minorIssuesFound?: SortOrder
|
|
35667
|
+
createdAt?: SortOrder
|
|
35668
|
+
project?: ProjectOrderByWithRelationInput
|
|
35669
|
+
qaFixAttempt?: QAFixAttemptOrderByWithRelationInput
|
|
35670
|
+
}
|
|
35671
|
+
|
|
35672
|
+
export type SelfReviewVerdictWhereUniqueInput = Prisma.AtLeast<{
|
|
35673
|
+
id?: string
|
|
35674
|
+
AND?: SelfReviewVerdictWhereInput | SelfReviewVerdictWhereInput[]
|
|
35675
|
+
OR?: SelfReviewVerdictWhereInput[]
|
|
35676
|
+
NOT?: SelfReviewVerdictWhereInput | SelfReviewVerdictWhereInput[]
|
|
35677
|
+
projectId?: StringFilter<"SelfReviewVerdict"> | string
|
|
35678
|
+
qaFixAttemptId?: StringFilter<"SelfReviewVerdict"> | string
|
|
35679
|
+
qaTicketId?: StringFilter<"SelfReviewVerdict"> | string
|
|
35680
|
+
classification?: StringFilter<"SelfReviewVerdict"> | string
|
|
35681
|
+
surface?: StringFilter<"SelfReviewVerdict"> | string
|
|
35682
|
+
verdict?: StringFilter<"SelfReviewVerdict"> | string
|
|
35683
|
+
reasonHints?: StringNullableListFilter<"SelfReviewVerdict">
|
|
35684
|
+
criticalIssuesFound?: IntFilter<"SelfReviewVerdict"> | number
|
|
35685
|
+
minorIssuesFound?: IntFilter<"SelfReviewVerdict"> | number
|
|
35686
|
+
createdAt?: DateTimeFilter<"SelfReviewVerdict"> | Date | string
|
|
35687
|
+
project?: XOR<ProjectRelationFilter, ProjectWhereInput>
|
|
35688
|
+
qaFixAttempt?: XOR<QAFixAttemptRelationFilter, QAFixAttemptWhereInput>
|
|
35689
|
+
}, "id">
|
|
35690
|
+
|
|
35691
|
+
export type SelfReviewVerdictOrderByWithAggregationInput = {
|
|
35692
|
+
id?: SortOrder
|
|
35693
|
+
projectId?: SortOrder
|
|
35694
|
+
qaFixAttemptId?: SortOrder
|
|
35695
|
+
qaTicketId?: SortOrder
|
|
35696
|
+
classification?: SortOrder
|
|
35697
|
+
surface?: SortOrder
|
|
35698
|
+
verdict?: SortOrder
|
|
35699
|
+
reasonHints?: SortOrder
|
|
35700
|
+
criticalIssuesFound?: SortOrder
|
|
35701
|
+
minorIssuesFound?: SortOrder
|
|
35702
|
+
createdAt?: SortOrder
|
|
35703
|
+
_count?: SelfReviewVerdictCountOrderByAggregateInput
|
|
35704
|
+
_avg?: SelfReviewVerdictAvgOrderByAggregateInput
|
|
35705
|
+
_max?: SelfReviewVerdictMaxOrderByAggregateInput
|
|
35706
|
+
_min?: SelfReviewVerdictMinOrderByAggregateInput
|
|
35707
|
+
_sum?: SelfReviewVerdictSumOrderByAggregateInput
|
|
35708
|
+
}
|
|
35709
|
+
|
|
35710
|
+
export type SelfReviewVerdictScalarWhereWithAggregatesInput = {
|
|
35711
|
+
AND?: SelfReviewVerdictScalarWhereWithAggregatesInput | SelfReviewVerdictScalarWhereWithAggregatesInput[]
|
|
35712
|
+
OR?: SelfReviewVerdictScalarWhereWithAggregatesInput[]
|
|
35713
|
+
NOT?: SelfReviewVerdictScalarWhereWithAggregatesInput | SelfReviewVerdictScalarWhereWithAggregatesInput[]
|
|
35714
|
+
id?: StringWithAggregatesFilter<"SelfReviewVerdict"> | string
|
|
35715
|
+
projectId?: StringWithAggregatesFilter<"SelfReviewVerdict"> | string
|
|
35716
|
+
qaFixAttemptId?: StringWithAggregatesFilter<"SelfReviewVerdict"> | string
|
|
35717
|
+
qaTicketId?: StringWithAggregatesFilter<"SelfReviewVerdict"> | string
|
|
35718
|
+
classification?: StringWithAggregatesFilter<"SelfReviewVerdict"> | string
|
|
35719
|
+
surface?: StringWithAggregatesFilter<"SelfReviewVerdict"> | string
|
|
35720
|
+
verdict?: StringWithAggregatesFilter<"SelfReviewVerdict"> | string
|
|
35721
|
+
reasonHints?: StringNullableListFilter<"SelfReviewVerdict">
|
|
35722
|
+
criticalIssuesFound?: IntWithAggregatesFilter<"SelfReviewVerdict"> | number
|
|
35723
|
+
minorIssuesFound?: IntWithAggregatesFilter<"SelfReviewVerdict"> | number
|
|
35724
|
+
createdAt?: DateTimeWithAggregatesFilter<"SelfReviewVerdict"> | Date | string
|
|
35725
|
+
}
|
|
35726
|
+
|
|
34416
35727
|
export type ProjectCreateInput = {
|
|
34417
35728
|
id?: string
|
|
34418
35729
|
name: string
|
|
@@ -34454,6 +35765,7 @@ export namespace Prisma {
|
|
|
34454
35765
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
34455
35766
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
34456
35767
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
35768
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
34457
35769
|
}
|
|
34458
35770
|
|
|
34459
35771
|
export type ProjectUncheckedCreateInput = {
|
|
@@ -34497,6 +35809,7 @@ export namespace Prisma {
|
|
|
34497
35809
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
34498
35810
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
34499
35811
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
35812
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
34500
35813
|
}
|
|
34501
35814
|
|
|
34502
35815
|
export type ProjectUpdateInput = {
|
|
@@ -34540,6 +35853,7 @@ export namespace Prisma {
|
|
|
34540
35853
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
34541
35854
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
34542
35855
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
35856
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
34543
35857
|
}
|
|
34544
35858
|
|
|
34545
35859
|
export type ProjectUncheckedUpdateInput = {
|
|
@@ -34583,6 +35897,7 @@ export namespace Prisma {
|
|
|
34583
35897
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
34584
35898
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
34585
35899
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
35900
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
34586
35901
|
}
|
|
34587
35902
|
|
|
34588
35903
|
export type ProjectCreateManyInput = {
|
|
@@ -35362,6 +36677,7 @@ export namespace Prisma {
|
|
|
35362
36677
|
ticket: QATicketCreateNestedOneWithoutAttemptsInput
|
|
35363
36678
|
project: ProjectCreateNestedOneWithoutFixAttemptsInput
|
|
35364
36679
|
artifacts?: AuditArtifactCreateNestedManyWithoutFixAttemptInput
|
|
36680
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutQaFixAttemptInput
|
|
35365
36681
|
}
|
|
35366
36682
|
|
|
35367
36683
|
export type QAFixAttemptUncheckedCreateInput = {
|
|
@@ -35392,6 +36708,7 @@ export namespace Prisma {
|
|
|
35392
36708
|
attemptedAt?: Date | string
|
|
35393
36709
|
closedAt?: Date | string | null
|
|
35394
36710
|
artifacts?: AuditArtifactUncheckedCreateNestedManyWithoutFixAttemptInput
|
|
36711
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutQaFixAttemptInput
|
|
35395
36712
|
}
|
|
35396
36713
|
|
|
35397
36714
|
export type QAFixAttemptUpdateInput = {
|
|
@@ -35422,6 +36739,7 @@ export namespace Prisma {
|
|
|
35422
36739
|
ticket?: QATicketUpdateOneRequiredWithoutAttemptsNestedInput
|
|
35423
36740
|
project?: ProjectUpdateOneRequiredWithoutFixAttemptsNestedInput
|
|
35424
36741
|
artifacts?: AuditArtifactUpdateManyWithoutFixAttemptNestedInput
|
|
36742
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutQaFixAttemptNestedInput
|
|
35425
36743
|
}
|
|
35426
36744
|
|
|
35427
36745
|
export type QAFixAttemptUncheckedUpdateInput = {
|
|
@@ -35452,6 +36770,7 @@ export namespace Prisma {
|
|
|
35452
36770
|
attemptedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
35453
36771
|
closedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
35454
36772
|
artifacts?: AuditArtifactUncheckedUpdateManyWithoutFixAttemptNestedInput
|
|
36773
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutQaFixAttemptNestedInput
|
|
35455
36774
|
}
|
|
35456
36775
|
|
|
35457
36776
|
export type QAFixAttemptCreateManyInput = {
|
|
@@ -37177,6 +38496,102 @@ export namespace Prisma {
|
|
|
37177
38496
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
37178
38497
|
}
|
|
37179
38498
|
|
|
38499
|
+
export type SelfReviewVerdictCreateInput = {
|
|
38500
|
+
id?: string
|
|
38501
|
+
qaTicketId: string
|
|
38502
|
+
classification: string
|
|
38503
|
+
surface: string
|
|
38504
|
+
verdict: string
|
|
38505
|
+
reasonHints?: SelfReviewVerdictCreatereasonHintsInput | string[]
|
|
38506
|
+
criticalIssuesFound: number
|
|
38507
|
+
minorIssuesFound: number
|
|
38508
|
+
createdAt?: Date | string
|
|
38509
|
+
project: ProjectCreateNestedOneWithoutSelfReviewVerdictsInput
|
|
38510
|
+
qaFixAttempt: QAFixAttemptCreateNestedOneWithoutSelfReviewVerdictsInput
|
|
38511
|
+
}
|
|
38512
|
+
|
|
38513
|
+
export type SelfReviewVerdictUncheckedCreateInput = {
|
|
38514
|
+
id?: string
|
|
38515
|
+
projectId: string
|
|
38516
|
+
qaFixAttemptId: string
|
|
38517
|
+
qaTicketId: string
|
|
38518
|
+
classification: string
|
|
38519
|
+
surface: string
|
|
38520
|
+
verdict: string
|
|
38521
|
+
reasonHints?: SelfReviewVerdictCreatereasonHintsInput | string[]
|
|
38522
|
+
criticalIssuesFound: number
|
|
38523
|
+
minorIssuesFound: number
|
|
38524
|
+
createdAt?: Date | string
|
|
38525
|
+
}
|
|
38526
|
+
|
|
38527
|
+
export type SelfReviewVerdictUpdateInput = {
|
|
38528
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
38529
|
+
qaTicketId?: StringFieldUpdateOperationsInput | string
|
|
38530
|
+
classification?: StringFieldUpdateOperationsInput | string
|
|
38531
|
+
surface?: StringFieldUpdateOperationsInput | string
|
|
38532
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
38533
|
+
reasonHints?: SelfReviewVerdictUpdatereasonHintsInput | string[]
|
|
38534
|
+
criticalIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
38535
|
+
minorIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
38536
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
38537
|
+
project?: ProjectUpdateOneRequiredWithoutSelfReviewVerdictsNestedInput
|
|
38538
|
+
qaFixAttempt?: QAFixAttemptUpdateOneRequiredWithoutSelfReviewVerdictsNestedInput
|
|
38539
|
+
}
|
|
38540
|
+
|
|
38541
|
+
export type SelfReviewVerdictUncheckedUpdateInput = {
|
|
38542
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
38543
|
+
projectId?: StringFieldUpdateOperationsInput | string
|
|
38544
|
+
qaFixAttemptId?: StringFieldUpdateOperationsInput | string
|
|
38545
|
+
qaTicketId?: StringFieldUpdateOperationsInput | string
|
|
38546
|
+
classification?: StringFieldUpdateOperationsInput | string
|
|
38547
|
+
surface?: StringFieldUpdateOperationsInput | string
|
|
38548
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
38549
|
+
reasonHints?: SelfReviewVerdictUpdatereasonHintsInput | string[]
|
|
38550
|
+
criticalIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
38551
|
+
minorIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
38552
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
38553
|
+
}
|
|
38554
|
+
|
|
38555
|
+
export type SelfReviewVerdictCreateManyInput = {
|
|
38556
|
+
id?: string
|
|
38557
|
+
projectId: string
|
|
38558
|
+
qaFixAttemptId: string
|
|
38559
|
+
qaTicketId: string
|
|
38560
|
+
classification: string
|
|
38561
|
+
surface: string
|
|
38562
|
+
verdict: string
|
|
38563
|
+
reasonHints?: SelfReviewVerdictCreatereasonHintsInput | string[]
|
|
38564
|
+
criticalIssuesFound: number
|
|
38565
|
+
minorIssuesFound: number
|
|
38566
|
+
createdAt?: Date | string
|
|
38567
|
+
}
|
|
38568
|
+
|
|
38569
|
+
export type SelfReviewVerdictUpdateManyMutationInput = {
|
|
38570
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
38571
|
+
qaTicketId?: StringFieldUpdateOperationsInput | string
|
|
38572
|
+
classification?: StringFieldUpdateOperationsInput | string
|
|
38573
|
+
surface?: StringFieldUpdateOperationsInput | string
|
|
38574
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
38575
|
+
reasonHints?: SelfReviewVerdictUpdatereasonHintsInput | string[]
|
|
38576
|
+
criticalIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
38577
|
+
minorIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
38578
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
38579
|
+
}
|
|
38580
|
+
|
|
38581
|
+
export type SelfReviewVerdictUncheckedUpdateManyInput = {
|
|
38582
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
38583
|
+
projectId?: StringFieldUpdateOperationsInput | string
|
|
38584
|
+
qaFixAttemptId?: StringFieldUpdateOperationsInput | string
|
|
38585
|
+
qaTicketId?: StringFieldUpdateOperationsInput | string
|
|
38586
|
+
classification?: StringFieldUpdateOperationsInput | string
|
|
38587
|
+
surface?: StringFieldUpdateOperationsInput | string
|
|
38588
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
38589
|
+
reasonHints?: SelfReviewVerdictUpdatereasonHintsInput | string[]
|
|
38590
|
+
criticalIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
38591
|
+
minorIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
38592
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
38593
|
+
}
|
|
38594
|
+
|
|
37180
38595
|
export type StringFilter<$PrismaModel = never> = {
|
|
37181
38596
|
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
37182
38597
|
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
@@ -37412,6 +38827,12 @@ export namespace Prisma {
|
|
|
37412
38827
|
none?: MilestoneEventWhereInput
|
|
37413
38828
|
}
|
|
37414
38829
|
|
|
38830
|
+
export type SelfReviewVerdictListRelationFilter = {
|
|
38831
|
+
every?: SelfReviewVerdictWhereInput
|
|
38832
|
+
some?: SelfReviewVerdictWhereInput
|
|
38833
|
+
none?: SelfReviewVerdictWhereInput
|
|
38834
|
+
}
|
|
38835
|
+
|
|
37415
38836
|
export type SortOrderInput = {
|
|
37416
38837
|
sort: SortOrder
|
|
37417
38838
|
nulls?: NullsOrder
|
|
@@ -37489,6 +38910,10 @@ export namespace Prisma {
|
|
|
37489
38910
|
_count?: SortOrder
|
|
37490
38911
|
}
|
|
37491
38912
|
|
|
38913
|
+
export type SelfReviewVerdictOrderByRelationAggregateInput = {
|
|
38914
|
+
_count?: SortOrder
|
|
38915
|
+
}
|
|
38916
|
+
|
|
37492
38917
|
export type ProjectCountOrderByAggregateInput = {
|
|
37493
38918
|
id?: SortOrder
|
|
37494
38919
|
name?: SortOrder
|
|
@@ -39408,6 +40833,61 @@ export namespace Prisma {
|
|
|
39408
40833
|
updatedAt?: SortOrder
|
|
39409
40834
|
}
|
|
39410
40835
|
|
|
40836
|
+
export type QAFixAttemptRelationFilter = {
|
|
40837
|
+
is?: QAFixAttemptWhereInput
|
|
40838
|
+
isNot?: QAFixAttemptWhereInput
|
|
40839
|
+
}
|
|
40840
|
+
|
|
40841
|
+
export type SelfReviewVerdictCountOrderByAggregateInput = {
|
|
40842
|
+
id?: SortOrder
|
|
40843
|
+
projectId?: SortOrder
|
|
40844
|
+
qaFixAttemptId?: SortOrder
|
|
40845
|
+
qaTicketId?: SortOrder
|
|
40846
|
+
classification?: SortOrder
|
|
40847
|
+
surface?: SortOrder
|
|
40848
|
+
verdict?: SortOrder
|
|
40849
|
+
reasonHints?: SortOrder
|
|
40850
|
+
criticalIssuesFound?: SortOrder
|
|
40851
|
+
minorIssuesFound?: SortOrder
|
|
40852
|
+
createdAt?: SortOrder
|
|
40853
|
+
}
|
|
40854
|
+
|
|
40855
|
+
export type SelfReviewVerdictAvgOrderByAggregateInput = {
|
|
40856
|
+
criticalIssuesFound?: SortOrder
|
|
40857
|
+
minorIssuesFound?: SortOrder
|
|
40858
|
+
}
|
|
40859
|
+
|
|
40860
|
+
export type SelfReviewVerdictMaxOrderByAggregateInput = {
|
|
40861
|
+
id?: SortOrder
|
|
40862
|
+
projectId?: SortOrder
|
|
40863
|
+
qaFixAttemptId?: SortOrder
|
|
40864
|
+
qaTicketId?: SortOrder
|
|
40865
|
+
classification?: SortOrder
|
|
40866
|
+
surface?: SortOrder
|
|
40867
|
+
verdict?: SortOrder
|
|
40868
|
+
criticalIssuesFound?: SortOrder
|
|
40869
|
+
minorIssuesFound?: SortOrder
|
|
40870
|
+
createdAt?: SortOrder
|
|
40871
|
+
}
|
|
40872
|
+
|
|
40873
|
+
export type SelfReviewVerdictMinOrderByAggregateInput = {
|
|
40874
|
+
id?: SortOrder
|
|
40875
|
+
projectId?: SortOrder
|
|
40876
|
+
qaFixAttemptId?: SortOrder
|
|
40877
|
+
qaTicketId?: SortOrder
|
|
40878
|
+
classification?: SortOrder
|
|
40879
|
+
surface?: SortOrder
|
|
40880
|
+
verdict?: SortOrder
|
|
40881
|
+
criticalIssuesFound?: SortOrder
|
|
40882
|
+
minorIssuesFound?: SortOrder
|
|
40883
|
+
createdAt?: SortOrder
|
|
40884
|
+
}
|
|
40885
|
+
|
|
40886
|
+
export type SelfReviewVerdictSumOrderByAggregateInput = {
|
|
40887
|
+
criticalIssuesFound?: SortOrder
|
|
40888
|
+
minorIssuesFound?: SortOrder
|
|
40889
|
+
}
|
|
40890
|
+
|
|
39411
40891
|
export type ProjectProfileCreateNestedOneWithoutProjectInput = {
|
|
39412
40892
|
create?: XOR<ProjectProfileCreateWithoutProjectInput, ProjectProfileUncheckedCreateWithoutProjectInput>
|
|
39413
40893
|
connectOrCreate?: ProjectProfileCreateOrConnectWithoutProjectInput
|
|
@@ -39546,6 +41026,13 @@ export namespace Prisma {
|
|
|
39546
41026
|
connect?: MilestoneEventWhereUniqueInput | MilestoneEventWhereUniqueInput[]
|
|
39547
41027
|
}
|
|
39548
41028
|
|
|
41029
|
+
export type SelfReviewVerdictCreateNestedManyWithoutProjectInput = {
|
|
41030
|
+
create?: XOR<SelfReviewVerdictCreateWithoutProjectInput, SelfReviewVerdictUncheckedCreateWithoutProjectInput> | SelfReviewVerdictCreateWithoutProjectInput[] | SelfReviewVerdictUncheckedCreateWithoutProjectInput[]
|
|
41031
|
+
connectOrCreate?: SelfReviewVerdictCreateOrConnectWithoutProjectInput | SelfReviewVerdictCreateOrConnectWithoutProjectInput[]
|
|
41032
|
+
createMany?: SelfReviewVerdictCreateManyProjectInputEnvelope
|
|
41033
|
+
connect?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
41034
|
+
}
|
|
41035
|
+
|
|
39549
41036
|
export type ProjectProfileUncheckedCreateNestedOneWithoutProjectInput = {
|
|
39550
41037
|
create?: XOR<ProjectProfileCreateWithoutProjectInput, ProjectProfileUncheckedCreateWithoutProjectInput>
|
|
39551
41038
|
connectOrCreate?: ProjectProfileCreateOrConnectWithoutProjectInput
|
|
@@ -39684,6 +41171,13 @@ export namespace Prisma {
|
|
|
39684
41171
|
connect?: MilestoneEventWhereUniqueInput | MilestoneEventWhereUniqueInput[]
|
|
39685
41172
|
}
|
|
39686
41173
|
|
|
41174
|
+
export type SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput = {
|
|
41175
|
+
create?: XOR<SelfReviewVerdictCreateWithoutProjectInput, SelfReviewVerdictUncheckedCreateWithoutProjectInput> | SelfReviewVerdictCreateWithoutProjectInput[] | SelfReviewVerdictUncheckedCreateWithoutProjectInput[]
|
|
41176
|
+
connectOrCreate?: SelfReviewVerdictCreateOrConnectWithoutProjectInput | SelfReviewVerdictCreateOrConnectWithoutProjectInput[]
|
|
41177
|
+
createMany?: SelfReviewVerdictCreateManyProjectInputEnvelope
|
|
41178
|
+
connect?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
41179
|
+
}
|
|
41180
|
+
|
|
39687
41181
|
export type StringFieldUpdateOperationsInput = {
|
|
39688
41182
|
set?: string
|
|
39689
41183
|
}
|
|
@@ -40004,6 +41498,20 @@ export namespace Prisma {
|
|
|
40004
41498
|
deleteMany?: MilestoneEventScalarWhereInput | MilestoneEventScalarWhereInput[]
|
|
40005
41499
|
}
|
|
40006
41500
|
|
|
41501
|
+
export type SelfReviewVerdictUpdateManyWithoutProjectNestedInput = {
|
|
41502
|
+
create?: XOR<SelfReviewVerdictCreateWithoutProjectInput, SelfReviewVerdictUncheckedCreateWithoutProjectInput> | SelfReviewVerdictCreateWithoutProjectInput[] | SelfReviewVerdictUncheckedCreateWithoutProjectInput[]
|
|
41503
|
+
connectOrCreate?: SelfReviewVerdictCreateOrConnectWithoutProjectInput | SelfReviewVerdictCreateOrConnectWithoutProjectInput[]
|
|
41504
|
+
upsert?: SelfReviewVerdictUpsertWithWhereUniqueWithoutProjectInput | SelfReviewVerdictUpsertWithWhereUniqueWithoutProjectInput[]
|
|
41505
|
+
createMany?: SelfReviewVerdictCreateManyProjectInputEnvelope
|
|
41506
|
+
set?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
41507
|
+
disconnect?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
41508
|
+
delete?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
41509
|
+
connect?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
41510
|
+
update?: SelfReviewVerdictUpdateWithWhereUniqueWithoutProjectInput | SelfReviewVerdictUpdateWithWhereUniqueWithoutProjectInput[]
|
|
41511
|
+
updateMany?: SelfReviewVerdictUpdateManyWithWhereWithoutProjectInput | SelfReviewVerdictUpdateManyWithWhereWithoutProjectInput[]
|
|
41512
|
+
deleteMany?: SelfReviewVerdictScalarWhereInput | SelfReviewVerdictScalarWhereInput[]
|
|
41513
|
+
}
|
|
41514
|
+
|
|
40007
41515
|
export type ProjectProfileUncheckedUpdateOneWithoutProjectNestedInput = {
|
|
40008
41516
|
create?: XOR<ProjectProfileCreateWithoutProjectInput, ProjectProfileUncheckedCreateWithoutProjectInput>
|
|
40009
41517
|
connectOrCreate?: ProjectProfileCreateOrConnectWithoutProjectInput
|
|
@@ -40276,6 +41784,20 @@ export namespace Prisma {
|
|
|
40276
41784
|
deleteMany?: MilestoneEventScalarWhereInput | MilestoneEventScalarWhereInput[]
|
|
40277
41785
|
}
|
|
40278
41786
|
|
|
41787
|
+
export type SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput = {
|
|
41788
|
+
create?: XOR<SelfReviewVerdictCreateWithoutProjectInput, SelfReviewVerdictUncheckedCreateWithoutProjectInput> | SelfReviewVerdictCreateWithoutProjectInput[] | SelfReviewVerdictUncheckedCreateWithoutProjectInput[]
|
|
41789
|
+
connectOrCreate?: SelfReviewVerdictCreateOrConnectWithoutProjectInput | SelfReviewVerdictCreateOrConnectWithoutProjectInput[]
|
|
41790
|
+
upsert?: SelfReviewVerdictUpsertWithWhereUniqueWithoutProjectInput | SelfReviewVerdictUpsertWithWhereUniqueWithoutProjectInput[]
|
|
41791
|
+
createMany?: SelfReviewVerdictCreateManyProjectInputEnvelope
|
|
41792
|
+
set?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
41793
|
+
disconnect?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
41794
|
+
delete?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
41795
|
+
connect?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
41796
|
+
update?: SelfReviewVerdictUpdateWithWhereUniqueWithoutProjectInput | SelfReviewVerdictUpdateWithWhereUniqueWithoutProjectInput[]
|
|
41797
|
+
updateMany?: SelfReviewVerdictUpdateManyWithWhereWithoutProjectInput | SelfReviewVerdictUpdateManyWithWhereWithoutProjectInput[]
|
|
41798
|
+
deleteMany?: SelfReviewVerdictScalarWhereInput | SelfReviewVerdictScalarWhereInput[]
|
|
41799
|
+
}
|
|
41800
|
+
|
|
40279
41801
|
export type ProjectProfileCreatecomplianceTagsInput = {
|
|
40280
41802
|
set: string[]
|
|
40281
41803
|
}
|
|
@@ -40814,6 +42336,13 @@ export namespace Prisma {
|
|
|
40814
42336
|
connect?: AuditArtifactWhereUniqueInput | AuditArtifactWhereUniqueInput[]
|
|
40815
42337
|
}
|
|
40816
42338
|
|
|
42339
|
+
export type SelfReviewVerdictCreateNestedManyWithoutQaFixAttemptInput = {
|
|
42340
|
+
create?: XOR<SelfReviewVerdictCreateWithoutQaFixAttemptInput, SelfReviewVerdictUncheckedCreateWithoutQaFixAttemptInput> | SelfReviewVerdictCreateWithoutQaFixAttemptInput[] | SelfReviewVerdictUncheckedCreateWithoutQaFixAttemptInput[]
|
|
42341
|
+
connectOrCreate?: SelfReviewVerdictCreateOrConnectWithoutQaFixAttemptInput | SelfReviewVerdictCreateOrConnectWithoutQaFixAttemptInput[]
|
|
42342
|
+
createMany?: SelfReviewVerdictCreateManyQaFixAttemptInputEnvelope
|
|
42343
|
+
connect?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
42344
|
+
}
|
|
42345
|
+
|
|
40817
42346
|
export type AuditArtifactUncheckedCreateNestedManyWithoutFixAttemptInput = {
|
|
40818
42347
|
create?: XOR<AuditArtifactCreateWithoutFixAttemptInput, AuditArtifactUncheckedCreateWithoutFixAttemptInput> | AuditArtifactCreateWithoutFixAttemptInput[] | AuditArtifactUncheckedCreateWithoutFixAttemptInput[]
|
|
40819
42348
|
connectOrCreate?: AuditArtifactCreateOrConnectWithoutFixAttemptInput | AuditArtifactCreateOrConnectWithoutFixAttemptInput[]
|
|
@@ -40821,6 +42350,13 @@ export namespace Prisma {
|
|
|
40821
42350
|
connect?: AuditArtifactWhereUniqueInput | AuditArtifactWhereUniqueInput[]
|
|
40822
42351
|
}
|
|
40823
42352
|
|
|
42353
|
+
export type SelfReviewVerdictUncheckedCreateNestedManyWithoutQaFixAttemptInput = {
|
|
42354
|
+
create?: XOR<SelfReviewVerdictCreateWithoutQaFixAttemptInput, SelfReviewVerdictUncheckedCreateWithoutQaFixAttemptInput> | SelfReviewVerdictCreateWithoutQaFixAttemptInput[] | SelfReviewVerdictUncheckedCreateWithoutQaFixAttemptInput[]
|
|
42355
|
+
connectOrCreate?: SelfReviewVerdictCreateOrConnectWithoutQaFixAttemptInput | SelfReviewVerdictCreateOrConnectWithoutQaFixAttemptInput[]
|
|
42356
|
+
createMany?: SelfReviewVerdictCreateManyQaFixAttemptInputEnvelope
|
|
42357
|
+
connect?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
42358
|
+
}
|
|
42359
|
+
|
|
40824
42360
|
export type NullableIntFieldUpdateOperationsInput = {
|
|
40825
42361
|
set?: number | null
|
|
40826
42362
|
increment?: number
|
|
@@ -40867,6 +42403,20 @@ export namespace Prisma {
|
|
|
40867
42403
|
deleteMany?: AuditArtifactScalarWhereInput | AuditArtifactScalarWhereInput[]
|
|
40868
42404
|
}
|
|
40869
42405
|
|
|
42406
|
+
export type SelfReviewVerdictUpdateManyWithoutQaFixAttemptNestedInput = {
|
|
42407
|
+
create?: XOR<SelfReviewVerdictCreateWithoutQaFixAttemptInput, SelfReviewVerdictUncheckedCreateWithoutQaFixAttemptInput> | SelfReviewVerdictCreateWithoutQaFixAttemptInput[] | SelfReviewVerdictUncheckedCreateWithoutQaFixAttemptInput[]
|
|
42408
|
+
connectOrCreate?: SelfReviewVerdictCreateOrConnectWithoutQaFixAttemptInput | SelfReviewVerdictCreateOrConnectWithoutQaFixAttemptInput[]
|
|
42409
|
+
upsert?: SelfReviewVerdictUpsertWithWhereUniqueWithoutQaFixAttemptInput | SelfReviewVerdictUpsertWithWhereUniqueWithoutQaFixAttemptInput[]
|
|
42410
|
+
createMany?: SelfReviewVerdictCreateManyQaFixAttemptInputEnvelope
|
|
42411
|
+
set?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
42412
|
+
disconnect?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
42413
|
+
delete?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
42414
|
+
connect?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
42415
|
+
update?: SelfReviewVerdictUpdateWithWhereUniqueWithoutQaFixAttemptInput | SelfReviewVerdictUpdateWithWhereUniqueWithoutQaFixAttemptInput[]
|
|
42416
|
+
updateMany?: SelfReviewVerdictUpdateManyWithWhereWithoutQaFixAttemptInput | SelfReviewVerdictUpdateManyWithWhereWithoutQaFixAttemptInput[]
|
|
42417
|
+
deleteMany?: SelfReviewVerdictScalarWhereInput | SelfReviewVerdictScalarWhereInput[]
|
|
42418
|
+
}
|
|
42419
|
+
|
|
40870
42420
|
export type AuditArtifactUncheckedUpdateManyWithoutFixAttemptNestedInput = {
|
|
40871
42421
|
create?: XOR<AuditArtifactCreateWithoutFixAttemptInput, AuditArtifactUncheckedCreateWithoutFixAttemptInput> | AuditArtifactCreateWithoutFixAttemptInput[] | AuditArtifactUncheckedCreateWithoutFixAttemptInput[]
|
|
40872
42422
|
connectOrCreate?: AuditArtifactCreateOrConnectWithoutFixAttemptInput | AuditArtifactCreateOrConnectWithoutFixAttemptInput[]
|
|
@@ -40881,6 +42431,20 @@ export namespace Prisma {
|
|
|
40881
42431
|
deleteMany?: AuditArtifactScalarWhereInput | AuditArtifactScalarWhereInput[]
|
|
40882
42432
|
}
|
|
40883
42433
|
|
|
42434
|
+
export type SelfReviewVerdictUncheckedUpdateManyWithoutQaFixAttemptNestedInput = {
|
|
42435
|
+
create?: XOR<SelfReviewVerdictCreateWithoutQaFixAttemptInput, SelfReviewVerdictUncheckedCreateWithoutQaFixAttemptInput> | SelfReviewVerdictCreateWithoutQaFixAttemptInput[] | SelfReviewVerdictUncheckedCreateWithoutQaFixAttemptInput[]
|
|
42436
|
+
connectOrCreate?: SelfReviewVerdictCreateOrConnectWithoutQaFixAttemptInput | SelfReviewVerdictCreateOrConnectWithoutQaFixAttemptInput[]
|
|
42437
|
+
upsert?: SelfReviewVerdictUpsertWithWhereUniqueWithoutQaFixAttemptInput | SelfReviewVerdictUpsertWithWhereUniqueWithoutQaFixAttemptInput[]
|
|
42438
|
+
createMany?: SelfReviewVerdictCreateManyQaFixAttemptInputEnvelope
|
|
42439
|
+
set?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
42440
|
+
disconnect?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
42441
|
+
delete?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
42442
|
+
connect?: SelfReviewVerdictWhereUniqueInput | SelfReviewVerdictWhereUniqueInput[]
|
|
42443
|
+
update?: SelfReviewVerdictUpdateWithWhereUniqueWithoutQaFixAttemptInput | SelfReviewVerdictUpdateWithWhereUniqueWithoutQaFixAttemptInput[]
|
|
42444
|
+
updateMany?: SelfReviewVerdictUpdateManyWithWhereWithoutQaFixAttemptInput | SelfReviewVerdictUpdateManyWithWhereWithoutQaFixAttemptInput[]
|
|
42445
|
+
deleteMany?: SelfReviewVerdictScalarWhereInput | SelfReviewVerdictScalarWhereInput[]
|
|
42446
|
+
}
|
|
42447
|
+
|
|
40884
42448
|
export type ProjectCreateNestedOneWithoutTrustScoresInput = {
|
|
40885
42449
|
create?: XOR<ProjectCreateWithoutTrustScoresInput, ProjectUncheckedCreateWithoutTrustScoresInput>
|
|
40886
42450
|
connectOrCreate?: ProjectCreateOrConnectWithoutTrustScoresInput
|
|
@@ -41247,6 +42811,43 @@ export namespace Prisma {
|
|
|
41247
42811
|
update?: XOR<XOR<ProjectUpdateToOneWithWhereWithoutMilestoneEventsInput, ProjectUpdateWithoutMilestoneEventsInput>, ProjectUncheckedUpdateWithoutMilestoneEventsInput>
|
|
41248
42812
|
}
|
|
41249
42813
|
|
|
42814
|
+
export type SelfReviewVerdictCreatereasonHintsInput = {
|
|
42815
|
+
set: string[]
|
|
42816
|
+
}
|
|
42817
|
+
|
|
42818
|
+
export type ProjectCreateNestedOneWithoutSelfReviewVerdictsInput = {
|
|
42819
|
+
create?: XOR<ProjectCreateWithoutSelfReviewVerdictsInput, ProjectUncheckedCreateWithoutSelfReviewVerdictsInput>
|
|
42820
|
+
connectOrCreate?: ProjectCreateOrConnectWithoutSelfReviewVerdictsInput
|
|
42821
|
+
connect?: ProjectWhereUniqueInput
|
|
42822
|
+
}
|
|
42823
|
+
|
|
42824
|
+
export type QAFixAttemptCreateNestedOneWithoutSelfReviewVerdictsInput = {
|
|
42825
|
+
create?: XOR<QAFixAttemptCreateWithoutSelfReviewVerdictsInput, QAFixAttemptUncheckedCreateWithoutSelfReviewVerdictsInput>
|
|
42826
|
+
connectOrCreate?: QAFixAttemptCreateOrConnectWithoutSelfReviewVerdictsInput
|
|
42827
|
+
connect?: QAFixAttemptWhereUniqueInput
|
|
42828
|
+
}
|
|
42829
|
+
|
|
42830
|
+
export type SelfReviewVerdictUpdatereasonHintsInput = {
|
|
42831
|
+
set?: string[]
|
|
42832
|
+
push?: string | string[]
|
|
42833
|
+
}
|
|
42834
|
+
|
|
42835
|
+
export type ProjectUpdateOneRequiredWithoutSelfReviewVerdictsNestedInput = {
|
|
42836
|
+
create?: XOR<ProjectCreateWithoutSelfReviewVerdictsInput, ProjectUncheckedCreateWithoutSelfReviewVerdictsInput>
|
|
42837
|
+
connectOrCreate?: ProjectCreateOrConnectWithoutSelfReviewVerdictsInput
|
|
42838
|
+
upsert?: ProjectUpsertWithoutSelfReviewVerdictsInput
|
|
42839
|
+
connect?: ProjectWhereUniqueInput
|
|
42840
|
+
update?: XOR<XOR<ProjectUpdateToOneWithWhereWithoutSelfReviewVerdictsInput, ProjectUpdateWithoutSelfReviewVerdictsInput>, ProjectUncheckedUpdateWithoutSelfReviewVerdictsInput>
|
|
42841
|
+
}
|
|
42842
|
+
|
|
42843
|
+
export type QAFixAttemptUpdateOneRequiredWithoutSelfReviewVerdictsNestedInput = {
|
|
42844
|
+
create?: XOR<QAFixAttemptCreateWithoutSelfReviewVerdictsInput, QAFixAttemptUncheckedCreateWithoutSelfReviewVerdictsInput>
|
|
42845
|
+
connectOrCreate?: QAFixAttemptCreateOrConnectWithoutSelfReviewVerdictsInput
|
|
42846
|
+
upsert?: QAFixAttemptUpsertWithoutSelfReviewVerdictsInput
|
|
42847
|
+
connect?: QAFixAttemptWhereUniqueInput
|
|
42848
|
+
update?: XOR<XOR<QAFixAttemptUpdateToOneWithWhereWithoutSelfReviewVerdictsInput, QAFixAttemptUpdateWithoutSelfReviewVerdictsInput>, QAFixAttemptUncheckedUpdateWithoutSelfReviewVerdictsInput>
|
|
42849
|
+
}
|
|
42850
|
+
|
|
41250
42851
|
export type NestedStringFilter<$PrismaModel = never> = {
|
|
41251
42852
|
equals?: string | StringFieldRefInput<$PrismaModel>
|
|
41252
42853
|
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
|
@@ -42078,6 +43679,7 @@ export namespace Prisma {
|
|
|
42078
43679
|
closedAt?: Date | string | null
|
|
42079
43680
|
ticket: QATicketCreateNestedOneWithoutAttemptsInput
|
|
42080
43681
|
artifacts?: AuditArtifactCreateNestedManyWithoutFixAttemptInput
|
|
43682
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutQaFixAttemptInput
|
|
42081
43683
|
}
|
|
42082
43684
|
|
|
42083
43685
|
export type QAFixAttemptUncheckedCreateWithoutProjectInput = {
|
|
@@ -42107,6 +43709,7 @@ export namespace Prisma {
|
|
|
42107
43709
|
attemptedAt?: Date | string
|
|
42108
43710
|
closedAt?: Date | string | null
|
|
42109
43711
|
artifacts?: AuditArtifactUncheckedCreateNestedManyWithoutFixAttemptInput
|
|
43712
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutQaFixAttemptInput
|
|
42110
43713
|
}
|
|
42111
43714
|
|
|
42112
43715
|
export type QAFixAttemptCreateOrConnectWithoutProjectInput = {
|
|
@@ -42670,6 +44273,42 @@ export namespace Prisma {
|
|
|
42670
44273
|
skipDuplicates?: boolean
|
|
42671
44274
|
}
|
|
42672
44275
|
|
|
44276
|
+
export type SelfReviewVerdictCreateWithoutProjectInput = {
|
|
44277
|
+
id?: string
|
|
44278
|
+
qaTicketId: string
|
|
44279
|
+
classification: string
|
|
44280
|
+
surface: string
|
|
44281
|
+
verdict: string
|
|
44282
|
+
reasonHints?: SelfReviewVerdictCreatereasonHintsInput | string[]
|
|
44283
|
+
criticalIssuesFound: number
|
|
44284
|
+
minorIssuesFound: number
|
|
44285
|
+
createdAt?: Date | string
|
|
44286
|
+
qaFixAttempt: QAFixAttemptCreateNestedOneWithoutSelfReviewVerdictsInput
|
|
44287
|
+
}
|
|
44288
|
+
|
|
44289
|
+
export type SelfReviewVerdictUncheckedCreateWithoutProjectInput = {
|
|
44290
|
+
id?: string
|
|
44291
|
+
qaFixAttemptId: string
|
|
44292
|
+
qaTicketId: string
|
|
44293
|
+
classification: string
|
|
44294
|
+
surface: string
|
|
44295
|
+
verdict: string
|
|
44296
|
+
reasonHints?: SelfReviewVerdictCreatereasonHintsInput | string[]
|
|
44297
|
+
criticalIssuesFound: number
|
|
44298
|
+
minorIssuesFound: number
|
|
44299
|
+
createdAt?: Date | string
|
|
44300
|
+
}
|
|
44301
|
+
|
|
44302
|
+
export type SelfReviewVerdictCreateOrConnectWithoutProjectInput = {
|
|
44303
|
+
where: SelfReviewVerdictWhereUniqueInput
|
|
44304
|
+
create: XOR<SelfReviewVerdictCreateWithoutProjectInput, SelfReviewVerdictUncheckedCreateWithoutProjectInput>
|
|
44305
|
+
}
|
|
44306
|
+
|
|
44307
|
+
export type SelfReviewVerdictCreateManyProjectInputEnvelope = {
|
|
44308
|
+
data: SelfReviewVerdictCreateManyProjectInput | SelfReviewVerdictCreateManyProjectInput[]
|
|
44309
|
+
skipDuplicates?: boolean
|
|
44310
|
+
}
|
|
44311
|
+
|
|
42673
44312
|
export type ProjectProfileUpsertWithoutProjectInput = {
|
|
42674
44313
|
update: XOR<ProjectProfileUpdateWithoutProjectInput, ProjectProfileUncheckedUpdateWithoutProjectInput>
|
|
42675
44314
|
create: XOR<ProjectProfileCreateWithoutProjectInput, ProjectProfileUncheckedCreateWithoutProjectInput>
|
|
@@ -43362,6 +45001,39 @@ export namespace Prisma {
|
|
|
43362
45001
|
updatedAt?: DateTimeFilter<"MilestoneEvent"> | Date | string
|
|
43363
45002
|
}
|
|
43364
45003
|
|
|
45004
|
+
export type SelfReviewVerdictUpsertWithWhereUniqueWithoutProjectInput = {
|
|
45005
|
+
where: SelfReviewVerdictWhereUniqueInput
|
|
45006
|
+
update: XOR<SelfReviewVerdictUpdateWithoutProjectInput, SelfReviewVerdictUncheckedUpdateWithoutProjectInput>
|
|
45007
|
+
create: XOR<SelfReviewVerdictCreateWithoutProjectInput, SelfReviewVerdictUncheckedCreateWithoutProjectInput>
|
|
45008
|
+
}
|
|
45009
|
+
|
|
45010
|
+
export type SelfReviewVerdictUpdateWithWhereUniqueWithoutProjectInput = {
|
|
45011
|
+
where: SelfReviewVerdictWhereUniqueInput
|
|
45012
|
+
data: XOR<SelfReviewVerdictUpdateWithoutProjectInput, SelfReviewVerdictUncheckedUpdateWithoutProjectInput>
|
|
45013
|
+
}
|
|
45014
|
+
|
|
45015
|
+
export type SelfReviewVerdictUpdateManyWithWhereWithoutProjectInput = {
|
|
45016
|
+
where: SelfReviewVerdictScalarWhereInput
|
|
45017
|
+
data: XOR<SelfReviewVerdictUpdateManyMutationInput, SelfReviewVerdictUncheckedUpdateManyWithoutProjectInput>
|
|
45018
|
+
}
|
|
45019
|
+
|
|
45020
|
+
export type SelfReviewVerdictScalarWhereInput = {
|
|
45021
|
+
AND?: SelfReviewVerdictScalarWhereInput | SelfReviewVerdictScalarWhereInput[]
|
|
45022
|
+
OR?: SelfReviewVerdictScalarWhereInput[]
|
|
45023
|
+
NOT?: SelfReviewVerdictScalarWhereInput | SelfReviewVerdictScalarWhereInput[]
|
|
45024
|
+
id?: StringFilter<"SelfReviewVerdict"> | string
|
|
45025
|
+
projectId?: StringFilter<"SelfReviewVerdict"> | string
|
|
45026
|
+
qaFixAttemptId?: StringFilter<"SelfReviewVerdict"> | string
|
|
45027
|
+
qaTicketId?: StringFilter<"SelfReviewVerdict"> | string
|
|
45028
|
+
classification?: StringFilter<"SelfReviewVerdict"> | string
|
|
45029
|
+
surface?: StringFilter<"SelfReviewVerdict"> | string
|
|
45030
|
+
verdict?: StringFilter<"SelfReviewVerdict"> | string
|
|
45031
|
+
reasonHints?: StringNullableListFilter<"SelfReviewVerdict">
|
|
45032
|
+
criticalIssuesFound?: IntFilter<"SelfReviewVerdict"> | number
|
|
45033
|
+
minorIssuesFound?: IntFilter<"SelfReviewVerdict"> | number
|
|
45034
|
+
createdAt?: DateTimeFilter<"SelfReviewVerdict"> | Date | string
|
|
45035
|
+
}
|
|
45036
|
+
|
|
43365
45037
|
export type ProjectCreateWithoutProfileInput = {
|
|
43366
45038
|
id?: string
|
|
43367
45039
|
name: string
|
|
@@ -43402,6 +45074,7 @@ export namespace Prisma {
|
|
|
43402
45074
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
43403
45075
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
43404
45076
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
45077
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
43405
45078
|
}
|
|
43406
45079
|
|
|
43407
45080
|
export type ProjectUncheckedCreateWithoutProfileInput = {
|
|
@@ -43444,6 +45117,7 @@ export namespace Prisma {
|
|
|
43444
45117
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
43445
45118
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
43446
45119
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
45120
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
43447
45121
|
}
|
|
43448
45122
|
|
|
43449
45123
|
export type ProjectCreateOrConnectWithoutProfileInput = {
|
|
@@ -43530,6 +45204,7 @@ export namespace Prisma {
|
|
|
43530
45204
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
43531
45205
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
43532
45206
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
45207
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
43533
45208
|
}
|
|
43534
45209
|
|
|
43535
45210
|
export type ProjectUncheckedUpdateWithoutProfileInput = {
|
|
@@ -43572,6 +45247,7 @@ export namespace Prisma {
|
|
|
43572
45247
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
43573
45248
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
43574
45249
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
45250
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
43575
45251
|
}
|
|
43576
45252
|
|
|
43577
45253
|
export type ProfileEvolutionLogUpsertWithWhereUniqueWithoutProfileInput = {
|
|
@@ -43727,6 +45403,7 @@ export namespace Prisma {
|
|
|
43727
45403
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
43728
45404
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
43729
45405
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
45406
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
43730
45407
|
}
|
|
43731
45408
|
|
|
43732
45409
|
export type ProjectUncheckedCreateWithoutRunsInput = {
|
|
@@ -43769,6 +45446,7 @@ export namespace Prisma {
|
|
|
43769
45446
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
43770
45447
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
43771
45448
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
45449
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
43772
45450
|
}
|
|
43773
45451
|
|
|
43774
45452
|
export type ProjectCreateOrConnectWithoutRunsInput = {
|
|
@@ -44007,6 +45685,7 @@ export namespace Prisma {
|
|
|
44007
45685
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
44008
45686
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
44009
45687
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
45688
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
44010
45689
|
}
|
|
44011
45690
|
|
|
44012
45691
|
export type ProjectUncheckedUpdateWithoutRunsInput = {
|
|
@@ -44049,6 +45728,7 @@ export namespace Prisma {
|
|
|
44049
45728
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
44050
45729
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
44051
45730
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
45731
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
44052
45732
|
}
|
|
44053
45733
|
|
|
44054
45734
|
export type RawSignalUpsertWithWhereUniqueWithoutQaRunInput = {
|
|
@@ -44398,6 +46078,7 @@ export namespace Prisma {
|
|
|
44398
46078
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
44399
46079
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
44400
46080
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
46081
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
44401
46082
|
}
|
|
44402
46083
|
|
|
44403
46084
|
export type ProjectUncheckedCreateWithoutTicketsInput = {
|
|
@@ -44440,6 +46121,7 @@ export namespace Prisma {
|
|
|
44440
46121
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
44441
46122
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
44442
46123
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
46124
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
44443
46125
|
}
|
|
44444
46126
|
|
|
44445
46127
|
export type ProjectCreateOrConnectWithoutTicketsInput = {
|
|
@@ -44545,6 +46227,7 @@ export namespace Prisma {
|
|
|
44545
46227
|
closedAt?: Date | string | null
|
|
44546
46228
|
project: ProjectCreateNestedOneWithoutFixAttemptsInput
|
|
44547
46229
|
artifacts?: AuditArtifactCreateNestedManyWithoutFixAttemptInput
|
|
46230
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutQaFixAttemptInput
|
|
44548
46231
|
}
|
|
44549
46232
|
|
|
44550
46233
|
export type QAFixAttemptUncheckedCreateWithoutTicketInput = {
|
|
@@ -44574,6 +46257,7 @@ export namespace Prisma {
|
|
|
44574
46257
|
attemptedAt?: Date | string
|
|
44575
46258
|
closedAt?: Date | string | null
|
|
44576
46259
|
artifacts?: AuditArtifactUncheckedCreateNestedManyWithoutFixAttemptInput
|
|
46260
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutQaFixAttemptInput
|
|
44577
46261
|
}
|
|
44578
46262
|
|
|
44579
46263
|
export type QAFixAttemptCreateOrConnectWithoutTicketInput = {
|
|
@@ -44721,6 +46405,7 @@ export namespace Prisma {
|
|
|
44721
46405
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
44722
46406
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
44723
46407
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
46408
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
44724
46409
|
}
|
|
44725
46410
|
|
|
44726
46411
|
export type ProjectUncheckedUpdateWithoutTicketsInput = {
|
|
@@ -44763,6 +46448,7 @@ export namespace Prisma {
|
|
|
44763
46448
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
44764
46449
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
44765
46450
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
46451
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
44766
46452
|
}
|
|
44767
46453
|
|
|
44768
46454
|
export type QARunUpsertWithoutTicketsInput = {
|
|
@@ -44983,6 +46669,7 @@ export namespace Prisma {
|
|
|
44983
46669
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
44984
46670
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
44985
46671
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
46672
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
44986
46673
|
}
|
|
44987
46674
|
|
|
44988
46675
|
export type ProjectUncheckedCreateWithoutFixAttemptsInput = {
|
|
@@ -45025,6 +46712,7 @@ export namespace Prisma {
|
|
|
45025
46712
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
45026
46713
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
45027
46714
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
46715
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
45028
46716
|
}
|
|
45029
46717
|
|
|
45030
46718
|
export type ProjectCreateOrConnectWithoutFixAttemptsInput = {
|
|
@@ -45074,6 +46762,42 @@ export namespace Prisma {
|
|
|
45074
46762
|
skipDuplicates?: boolean
|
|
45075
46763
|
}
|
|
45076
46764
|
|
|
46765
|
+
export type SelfReviewVerdictCreateWithoutQaFixAttemptInput = {
|
|
46766
|
+
id?: string
|
|
46767
|
+
qaTicketId: string
|
|
46768
|
+
classification: string
|
|
46769
|
+
surface: string
|
|
46770
|
+
verdict: string
|
|
46771
|
+
reasonHints?: SelfReviewVerdictCreatereasonHintsInput | string[]
|
|
46772
|
+
criticalIssuesFound: number
|
|
46773
|
+
minorIssuesFound: number
|
|
46774
|
+
createdAt?: Date | string
|
|
46775
|
+
project: ProjectCreateNestedOneWithoutSelfReviewVerdictsInput
|
|
46776
|
+
}
|
|
46777
|
+
|
|
46778
|
+
export type SelfReviewVerdictUncheckedCreateWithoutQaFixAttemptInput = {
|
|
46779
|
+
id?: string
|
|
46780
|
+
projectId: string
|
|
46781
|
+
qaTicketId: string
|
|
46782
|
+
classification: string
|
|
46783
|
+
surface: string
|
|
46784
|
+
verdict: string
|
|
46785
|
+
reasonHints?: SelfReviewVerdictCreatereasonHintsInput | string[]
|
|
46786
|
+
criticalIssuesFound: number
|
|
46787
|
+
minorIssuesFound: number
|
|
46788
|
+
createdAt?: Date | string
|
|
46789
|
+
}
|
|
46790
|
+
|
|
46791
|
+
export type SelfReviewVerdictCreateOrConnectWithoutQaFixAttemptInput = {
|
|
46792
|
+
where: SelfReviewVerdictWhereUniqueInput
|
|
46793
|
+
create: XOR<SelfReviewVerdictCreateWithoutQaFixAttemptInput, SelfReviewVerdictUncheckedCreateWithoutQaFixAttemptInput>
|
|
46794
|
+
}
|
|
46795
|
+
|
|
46796
|
+
export type SelfReviewVerdictCreateManyQaFixAttemptInputEnvelope = {
|
|
46797
|
+
data: SelfReviewVerdictCreateManyQaFixAttemptInput | SelfReviewVerdictCreateManyQaFixAttemptInput[]
|
|
46798
|
+
skipDuplicates?: boolean
|
|
46799
|
+
}
|
|
46800
|
+
|
|
45077
46801
|
export type QATicketUpsertWithoutAttemptsInput = {
|
|
45078
46802
|
update: XOR<QATicketUpdateWithoutAttemptsInput, QATicketUncheckedUpdateWithoutAttemptsInput>
|
|
45079
46803
|
create: XOR<QATicketCreateWithoutAttemptsInput, QATicketUncheckedCreateWithoutAttemptsInput>
|
|
@@ -45200,6 +46924,7 @@ export namespace Prisma {
|
|
|
45200
46924
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
45201
46925
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
45202
46926
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
46927
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
45203
46928
|
}
|
|
45204
46929
|
|
|
45205
46930
|
export type ProjectUncheckedUpdateWithoutFixAttemptsInput = {
|
|
@@ -45242,6 +46967,7 @@ export namespace Prisma {
|
|
|
45242
46967
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
45243
46968
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
45244
46969
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
46970
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
45245
46971
|
}
|
|
45246
46972
|
|
|
45247
46973
|
export type AuditArtifactUpsertWithWhereUniqueWithoutFixAttemptInput = {
|
|
@@ -45260,6 +46986,22 @@ export namespace Prisma {
|
|
|
45260
46986
|
data: XOR<AuditArtifactUpdateManyMutationInput, AuditArtifactUncheckedUpdateManyWithoutFixAttemptInput>
|
|
45261
46987
|
}
|
|
45262
46988
|
|
|
46989
|
+
export type SelfReviewVerdictUpsertWithWhereUniqueWithoutQaFixAttemptInput = {
|
|
46990
|
+
where: SelfReviewVerdictWhereUniqueInput
|
|
46991
|
+
update: XOR<SelfReviewVerdictUpdateWithoutQaFixAttemptInput, SelfReviewVerdictUncheckedUpdateWithoutQaFixAttemptInput>
|
|
46992
|
+
create: XOR<SelfReviewVerdictCreateWithoutQaFixAttemptInput, SelfReviewVerdictUncheckedCreateWithoutQaFixAttemptInput>
|
|
46993
|
+
}
|
|
46994
|
+
|
|
46995
|
+
export type SelfReviewVerdictUpdateWithWhereUniqueWithoutQaFixAttemptInput = {
|
|
46996
|
+
where: SelfReviewVerdictWhereUniqueInput
|
|
46997
|
+
data: XOR<SelfReviewVerdictUpdateWithoutQaFixAttemptInput, SelfReviewVerdictUncheckedUpdateWithoutQaFixAttemptInput>
|
|
46998
|
+
}
|
|
46999
|
+
|
|
47000
|
+
export type SelfReviewVerdictUpdateManyWithWhereWithoutQaFixAttemptInput = {
|
|
47001
|
+
where: SelfReviewVerdictScalarWhereInput
|
|
47002
|
+
data: XOR<SelfReviewVerdictUpdateManyMutationInput, SelfReviewVerdictUncheckedUpdateManyWithoutQaFixAttemptInput>
|
|
47003
|
+
}
|
|
47004
|
+
|
|
45263
47005
|
export type ProjectCreateWithoutTrustScoresInput = {
|
|
45264
47006
|
id?: string
|
|
45265
47007
|
name: string
|
|
@@ -45300,6 +47042,7 @@ export namespace Prisma {
|
|
|
45300
47042
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
45301
47043
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
45302
47044
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
47045
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
45303
47046
|
}
|
|
45304
47047
|
|
|
45305
47048
|
export type ProjectUncheckedCreateWithoutTrustScoresInput = {
|
|
@@ -45342,6 +47085,7 @@ export namespace Prisma {
|
|
|
45342
47085
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
45343
47086
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
45344
47087
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
47088
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
45345
47089
|
}
|
|
45346
47090
|
|
|
45347
47091
|
export type ProjectCreateOrConnectWithoutTrustScoresInput = {
|
|
@@ -45400,6 +47144,7 @@ export namespace Prisma {
|
|
|
45400
47144
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
45401
47145
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
45402
47146
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
47147
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
45403
47148
|
}
|
|
45404
47149
|
|
|
45405
47150
|
export type ProjectUncheckedUpdateWithoutTrustScoresInput = {
|
|
@@ -45442,6 +47187,7 @@ export namespace Prisma {
|
|
|
45442
47187
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
45443
47188
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
45444
47189
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
47190
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
45445
47191
|
}
|
|
45446
47192
|
|
|
45447
47193
|
export type ProjectCreateWithoutAuditArtifactsInput = {
|
|
@@ -45484,6 +47230,7 @@ export namespace Prisma {
|
|
|
45484
47230
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
45485
47231
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
45486
47232
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
47233
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
45487
47234
|
}
|
|
45488
47235
|
|
|
45489
47236
|
export type ProjectUncheckedCreateWithoutAuditArtifactsInput = {
|
|
@@ -45526,6 +47273,7 @@ export namespace Prisma {
|
|
|
45526
47273
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
45527
47274
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
45528
47275
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
47276
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
45529
47277
|
}
|
|
45530
47278
|
|
|
45531
47279
|
export type ProjectCreateOrConnectWithoutAuditArtifactsInput = {
|
|
@@ -45629,6 +47377,7 @@ export namespace Prisma {
|
|
|
45629
47377
|
closedAt?: Date | string | null
|
|
45630
47378
|
ticket: QATicketCreateNestedOneWithoutAttemptsInput
|
|
45631
47379
|
project: ProjectCreateNestedOneWithoutFixAttemptsInput
|
|
47380
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutQaFixAttemptInput
|
|
45632
47381
|
}
|
|
45633
47382
|
|
|
45634
47383
|
export type QAFixAttemptUncheckedCreateWithoutArtifactsInput = {
|
|
@@ -45658,6 +47407,7 @@ export namespace Prisma {
|
|
|
45658
47407
|
fixSuccessScore?: number | null
|
|
45659
47408
|
attemptedAt?: Date | string
|
|
45660
47409
|
closedAt?: Date | string | null
|
|
47410
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutQaFixAttemptInput
|
|
45661
47411
|
}
|
|
45662
47412
|
|
|
45663
47413
|
export type QAFixAttemptCreateOrConnectWithoutArtifactsInput = {
|
|
@@ -45716,6 +47466,7 @@ export namespace Prisma {
|
|
|
45716
47466
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
45717
47467
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
45718
47468
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
47469
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
45719
47470
|
}
|
|
45720
47471
|
|
|
45721
47472
|
export type ProjectUncheckedUpdateWithoutAuditArtifactsInput = {
|
|
@@ -45758,6 +47509,7 @@ export namespace Prisma {
|
|
|
45758
47509
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
45759
47510
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
45760
47511
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
47512
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
45761
47513
|
}
|
|
45762
47514
|
|
|
45763
47515
|
export type QATicketUpsertWithoutArtifactsInput = {
|
|
@@ -45873,6 +47625,7 @@ export namespace Prisma {
|
|
|
45873
47625
|
closedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
45874
47626
|
ticket?: QATicketUpdateOneRequiredWithoutAttemptsNestedInput
|
|
45875
47627
|
project?: ProjectUpdateOneRequiredWithoutFixAttemptsNestedInput
|
|
47628
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutQaFixAttemptNestedInput
|
|
45876
47629
|
}
|
|
45877
47630
|
|
|
45878
47631
|
export type QAFixAttemptUncheckedUpdateWithoutArtifactsInput = {
|
|
@@ -45902,6 +47655,7 @@ export namespace Prisma {
|
|
|
45902
47655
|
fixSuccessScore?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
45903
47656
|
attemptedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
45904
47657
|
closedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
47658
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutQaFixAttemptNestedInput
|
|
45905
47659
|
}
|
|
45906
47660
|
|
|
45907
47661
|
export type ProjectCreateWithoutPoliciesInput = {
|
|
@@ -45944,6 +47698,7 @@ export namespace Prisma {
|
|
|
45944
47698
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
45945
47699
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
45946
47700
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
47701
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
45947
47702
|
}
|
|
45948
47703
|
|
|
45949
47704
|
export type ProjectUncheckedCreateWithoutPoliciesInput = {
|
|
@@ -45986,6 +47741,7 @@ export namespace Prisma {
|
|
|
45986
47741
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
45987
47742
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
45988
47743
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
47744
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
45989
47745
|
}
|
|
45990
47746
|
|
|
45991
47747
|
export type ProjectCreateOrConnectWithoutPoliciesInput = {
|
|
@@ -46044,6 +47800,7 @@ export namespace Prisma {
|
|
|
46044
47800
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
46045
47801
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
46046
47802
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
47803
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
46047
47804
|
}
|
|
46048
47805
|
|
|
46049
47806
|
export type ProjectUncheckedUpdateWithoutPoliciesInput = {
|
|
@@ -46086,6 +47843,7 @@ export namespace Prisma {
|
|
|
46086
47843
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
46087
47844
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
46088
47845
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
47846
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
46089
47847
|
}
|
|
46090
47848
|
|
|
46091
47849
|
export type ProjectCreateWithoutPathTierRulesInput = {
|
|
@@ -46128,6 +47886,7 @@ export namespace Prisma {
|
|
|
46128
47886
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
46129
47887
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
46130
47888
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
47889
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
46131
47890
|
}
|
|
46132
47891
|
|
|
46133
47892
|
export type ProjectUncheckedCreateWithoutPathTierRulesInput = {
|
|
@@ -46170,6 +47929,7 @@ export namespace Prisma {
|
|
|
46170
47929
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
46171
47930
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
46172
47931
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
47932
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
46173
47933
|
}
|
|
46174
47934
|
|
|
46175
47935
|
export type ProjectCreateOrConnectWithoutPathTierRulesInput = {
|
|
@@ -46228,6 +47988,7 @@ export namespace Prisma {
|
|
|
46228
47988
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
46229
47989
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
46230
47990
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
47991
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
46231
47992
|
}
|
|
46232
47993
|
|
|
46233
47994
|
export type ProjectUncheckedUpdateWithoutPathTierRulesInput = {
|
|
@@ -46270,6 +48031,7 @@ export namespace Prisma {
|
|
|
46270
48031
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
46271
48032
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
46272
48033
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
48034
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
46273
48035
|
}
|
|
46274
48036
|
|
|
46275
48037
|
export type ProjectCreateWithoutClassificationOverridesInput = {
|
|
@@ -46312,6 +48074,7 @@ export namespace Prisma {
|
|
|
46312
48074
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
46313
48075
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
46314
48076
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
48077
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
46315
48078
|
}
|
|
46316
48079
|
|
|
46317
48080
|
export type ProjectUncheckedCreateWithoutClassificationOverridesInput = {
|
|
@@ -46354,6 +48117,7 @@ export namespace Prisma {
|
|
|
46354
48117
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
46355
48118
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
46356
48119
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
48120
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
46357
48121
|
}
|
|
46358
48122
|
|
|
46359
48123
|
export type ProjectCreateOrConnectWithoutClassificationOverridesInput = {
|
|
@@ -46412,6 +48176,7 @@ export namespace Prisma {
|
|
|
46412
48176
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
46413
48177
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
46414
48178
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
48179
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
46415
48180
|
}
|
|
46416
48181
|
|
|
46417
48182
|
export type ProjectUncheckedUpdateWithoutClassificationOverridesInput = {
|
|
@@ -46454,6 +48219,7 @@ export namespace Prisma {
|
|
|
46454
48219
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
46455
48220
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
46456
48221
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
48222
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
46457
48223
|
}
|
|
46458
48224
|
|
|
46459
48225
|
export type ProjectCreateWithoutFreezeWindowsInput = {
|
|
@@ -46496,6 +48262,7 @@ export namespace Prisma {
|
|
|
46496
48262
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
46497
48263
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
46498
48264
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
48265
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
46499
48266
|
}
|
|
46500
48267
|
|
|
46501
48268
|
export type ProjectUncheckedCreateWithoutFreezeWindowsInput = {
|
|
@@ -46538,6 +48305,7 @@ export namespace Prisma {
|
|
|
46538
48305
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
46539
48306
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
46540
48307
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
48308
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
46541
48309
|
}
|
|
46542
48310
|
|
|
46543
48311
|
export type ProjectCreateOrConnectWithoutFreezeWindowsInput = {
|
|
@@ -46596,6 +48364,7 @@ export namespace Prisma {
|
|
|
46596
48364
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
46597
48365
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
46598
48366
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
48367
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
46599
48368
|
}
|
|
46600
48369
|
|
|
46601
48370
|
export type ProjectUncheckedUpdateWithoutFreezeWindowsInput = {
|
|
@@ -46638,6 +48407,7 @@ export namespace Prisma {
|
|
|
46638
48407
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
46639
48408
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
46640
48409
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
48410
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
46641
48411
|
}
|
|
46642
48412
|
|
|
46643
48413
|
export type ProjectCreateWithoutKillSwitchesInput = {
|
|
@@ -46680,6 +48450,7 @@ export namespace Prisma {
|
|
|
46680
48450
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
46681
48451
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
46682
48452
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
48453
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
46683
48454
|
}
|
|
46684
48455
|
|
|
46685
48456
|
export type ProjectUncheckedCreateWithoutKillSwitchesInput = {
|
|
@@ -46722,6 +48493,7 @@ export namespace Prisma {
|
|
|
46722
48493
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
46723
48494
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
46724
48495
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
48496
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
46725
48497
|
}
|
|
46726
48498
|
|
|
46727
48499
|
export type ProjectCreateOrConnectWithoutKillSwitchesInput = {
|
|
@@ -46780,6 +48552,7 @@ export namespace Prisma {
|
|
|
46780
48552
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
46781
48553
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
46782
48554
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
48555
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
46783
48556
|
}
|
|
46784
48557
|
|
|
46785
48558
|
export type ProjectUncheckedUpdateWithoutKillSwitchesInput = {
|
|
@@ -46822,6 +48595,7 @@ export namespace Prisma {
|
|
|
46822
48595
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
46823
48596
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
46824
48597
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
48598
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
46825
48599
|
}
|
|
46826
48600
|
|
|
46827
48601
|
export type ProjectCreateWithoutModeLogInput = {
|
|
@@ -46864,6 +48638,7 @@ export namespace Prisma {
|
|
|
46864
48638
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
46865
48639
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
46866
48640
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
48641
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
46867
48642
|
}
|
|
46868
48643
|
|
|
46869
48644
|
export type ProjectUncheckedCreateWithoutModeLogInput = {
|
|
@@ -46906,6 +48681,7 @@ export namespace Prisma {
|
|
|
46906
48681
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
46907
48682
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
46908
48683
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
48684
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
46909
48685
|
}
|
|
46910
48686
|
|
|
46911
48687
|
export type ProjectCreateOrConnectWithoutModeLogInput = {
|
|
@@ -46964,6 +48740,7 @@ export namespace Prisma {
|
|
|
46964
48740
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
46965
48741
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
46966
48742
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
48743
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
46967
48744
|
}
|
|
46968
48745
|
|
|
46969
48746
|
export type ProjectUncheckedUpdateWithoutModeLogInput = {
|
|
@@ -47006,6 +48783,7 @@ export namespace Prisma {
|
|
|
47006
48783
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
47007
48784
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
47008
48785
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
48786
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
47009
48787
|
}
|
|
47010
48788
|
|
|
47011
48789
|
export type ProjectCreateWithoutPatternsInput = {
|
|
@@ -47048,6 +48826,7 @@ export namespace Prisma {
|
|
|
47048
48826
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
47049
48827
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
47050
48828
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
48829
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
47051
48830
|
}
|
|
47052
48831
|
|
|
47053
48832
|
export type ProjectUncheckedCreateWithoutPatternsInput = {
|
|
@@ -47090,6 +48869,7 @@ export namespace Prisma {
|
|
|
47090
48869
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
47091
48870
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
47092
48871
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
48872
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
47093
48873
|
}
|
|
47094
48874
|
|
|
47095
48875
|
export type ProjectCreateOrConnectWithoutPatternsInput = {
|
|
@@ -47148,6 +48928,7 @@ export namespace Prisma {
|
|
|
47148
48928
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
47149
48929
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
47150
48930
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
48931
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
47151
48932
|
}
|
|
47152
48933
|
|
|
47153
48934
|
export type ProjectUncheckedUpdateWithoutPatternsInput = {
|
|
@@ -47190,6 +48971,7 @@ export namespace Prisma {
|
|
|
47190
48971
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
47191
48972
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
47192
48973
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
48974
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
47193
48975
|
}
|
|
47194
48976
|
|
|
47195
48977
|
export type ProjectCreateWithoutRevertsInput = {
|
|
@@ -47232,6 +49014,7 @@ export namespace Prisma {
|
|
|
47232
49014
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
47233
49015
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
47234
49016
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
49017
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
47235
49018
|
}
|
|
47236
49019
|
|
|
47237
49020
|
export type ProjectUncheckedCreateWithoutRevertsInput = {
|
|
@@ -47274,6 +49057,7 @@ export namespace Prisma {
|
|
|
47274
49057
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
47275
49058
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
47276
49059
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
49060
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
47277
49061
|
}
|
|
47278
49062
|
|
|
47279
49063
|
export type ProjectCreateOrConnectWithoutRevertsInput = {
|
|
@@ -47440,6 +49224,7 @@ export namespace Prisma {
|
|
|
47440
49224
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
47441
49225
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
47442
49226
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
49227
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
47443
49228
|
}
|
|
47444
49229
|
|
|
47445
49230
|
export type ProjectUncheckedUpdateWithoutRevertsInput = {
|
|
@@ -47482,6 +49267,7 @@ export namespace Prisma {
|
|
|
47482
49267
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
47483
49268
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
47484
49269
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
49270
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
47485
49271
|
}
|
|
47486
49272
|
|
|
47487
49273
|
export type QATicketUpsertWithoutRevertsInput = {
|
|
@@ -47644,6 +49430,7 @@ export namespace Prisma {
|
|
|
47644
49430
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
47645
49431
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
47646
49432
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
49433
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
47647
49434
|
}
|
|
47648
49435
|
|
|
47649
49436
|
export type ProjectUncheckedCreateWithoutUniformitiesInput = {
|
|
@@ -47686,6 +49473,7 @@ export namespace Prisma {
|
|
|
47686
49473
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
47687
49474
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
47688
49475
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
49476
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
47689
49477
|
}
|
|
47690
49478
|
|
|
47691
49479
|
export type ProjectCreateOrConnectWithoutUniformitiesInput = {
|
|
@@ -47783,6 +49571,7 @@ export namespace Prisma {
|
|
|
47783
49571
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
47784
49572
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
47785
49573
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
49574
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
47786
49575
|
}
|
|
47787
49576
|
|
|
47788
49577
|
export type ProjectUncheckedUpdateWithoutUniformitiesInput = {
|
|
@@ -47825,6 +49614,7 @@ export namespace Prisma {
|
|
|
47825
49614
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
47826
49615
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
47827
49616
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
49617
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
47828
49618
|
}
|
|
47829
49619
|
|
|
47830
49620
|
export type QARunUpsertWithoutUniformitiesInput = {
|
|
@@ -47912,6 +49702,7 @@ export namespace Prisma {
|
|
|
47912
49702
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
47913
49703
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
47914
49704
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
49705
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
47915
49706
|
}
|
|
47916
49707
|
|
|
47917
49708
|
export type ProjectUncheckedCreateWithoutVisualBaselinesInput = {
|
|
@@ -47954,6 +49745,7 @@ export namespace Prisma {
|
|
|
47954
49745
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
47955
49746
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
47956
49747
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
49748
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
47957
49749
|
}
|
|
47958
49750
|
|
|
47959
49751
|
export type ProjectCreateOrConnectWithoutVisualBaselinesInput = {
|
|
@@ -48012,6 +49804,7 @@ export namespace Prisma {
|
|
|
48012
49804
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
48013
49805
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
48014
49806
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
49807
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
48015
49808
|
}
|
|
48016
49809
|
|
|
48017
49810
|
export type ProjectUncheckedUpdateWithoutVisualBaselinesInput = {
|
|
@@ -48054,6 +49847,7 @@ export namespace Prisma {
|
|
|
48054
49847
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
48055
49848
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
48056
49849
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
49850
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
48057
49851
|
}
|
|
48058
49852
|
|
|
48059
49853
|
export type ProjectCreateWithoutContractBaselinesInput = {
|
|
@@ -48096,6 +49890,7 @@ export namespace Prisma {
|
|
|
48096
49890
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
48097
49891
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
48098
49892
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
49893
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
48099
49894
|
}
|
|
48100
49895
|
|
|
48101
49896
|
export type ProjectUncheckedCreateWithoutContractBaselinesInput = {
|
|
@@ -48138,6 +49933,7 @@ export namespace Prisma {
|
|
|
48138
49933
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
48139
49934
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
48140
49935
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
49936
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
48141
49937
|
}
|
|
48142
49938
|
|
|
48143
49939
|
export type ProjectCreateOrConnectWithoutContractBaselinesInput = {
|
|
@@ -48193,12 +49989,201 @@ export namespace Prisma {
|
|
|
48193
49989
|
freezeWindows?: FreezeWindowUpdateManyWithoutProjectNestedInput
|
|
48194
49990
|
killSwitches?: KillSwitchStateUpdateManyWithoutProjectNestedInput
|
|
48195
49991
|
visualBaselines?: VisualBaselineUpdateManyWithoutProjectNestedInput
|
|
48196
|
-
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
49992
|
+
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
49993
|
+
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
49994
|
+
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
49995
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
49996
|
+
}
|
|
49997
|
+
|
|
49998
|
+
export type ProjectUncheckedUpdateWithoutContractBaselinesInput = {
|
|
49999
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
50000
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
50001
|
+
slug?: StringFieldUpdateOperationsInput | string
|
|
50002
|
+
type?: EnumProjectTypeFieldUpdateOperationsInput | $Enums.ProjectType
|
|
50003
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
50004
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
50005
|
+
mode?: EnumProjectModeFieldUpdateOperationsInput | $Enums.ProjectMode
|
|
50006
|
+
modeChangedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
50007
|
+
modeChangedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50008
|
+
monthlyBudgetCents?: IntFieldUpdateOperationsInput | number
|
|
50009
|
+
dailyDispatchLimit?: IntFieldUpdateOperationsInput | number
|
|
50010
|
+
testCommand?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50011
|
+
monthlyBudgetUsd?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
50012
|
+
budgetSoftWarnPct?: FloatFieldUpdateOperationsInput | number
|
|
50013
|
+
repoFullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50014
|
+
webhookSecret?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50015
|
+
authorModel?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50016
|
+
defaultTier?: EnumRiskTierFieldUpdateOperationsInput | $Enums.RiskTier
|
|
50017
|
+
trustThresholds?: NullableJsonNullValueInput | InputJsonValue
|
|
50018
|
+
killSwitchConfig?: NullableJsonNullValueInput | InputJsonValue
|
|
50019
|
+
profile?: ProjectProfileUncheckedUpdateOneWithoutProjectNestedInput
|
|
50020
|
+
runs?: QARunUncheckedUpdateManyWithoutProjectNestedInput
|
|
50021
|
+
tickets?: QATicketUncheckedUpdateManyWithoutProjectNestedInput
|
|
50022
|
+
fixAttempts?: QAFixAttemptUncheckedUpdateManyWithoutProjectNestedInput
|
|
50023
|
+
auditArtifacts?: AuditArtifactUncheckedUpdateManyWithoutProjectNestedInput
|
|
50024
|
+
policies?: PolicyUncheckedUpdateManyWithoutProjectNestedInput
|
|
50025
|
+
trustScores?: ClassificationTrustUncheckedUpdateManyWithoutProjectNestedInput
|
|
50026
|
+
modeLog?: ProjectModeLogUncheckedUpdateManyWithoutProjectNestedInput
|
|
50027
|
+
patterns?: QAPatternUncheckedUpdateManyWithoutProjectNestedInput
|
|
50028
|
+
reverts?: QARevertUncheckedUpdateManyWithoutProjectNestedInput
|
|
50029
|
+
uniformities?: QAUniformityUncheckedUpdateManyWithoutProjectNestedInput
|
|
50030
|
+
pathTierRules?: PathTierRuleUncheckedUpdateManyWithoutProjectNestedInput
|
|
50031
|
+
classificationOverrides?: ClassificationOverrideUncheckedUpdateManyWithoutProjectNestedInput
|
|
50032
|
+
freezeWindows?: FreezeWindowUncheckedUpdateManyWithoutProjectNestedInput
|
|
50033
|
+
killSwitches?: KillSwitchStateUncheckedUpdateManyWithoutProjectNestedInput
|
|
50034
|
+
visualBaselines?: VisualBaselineUncheckedUpdateManyWithoutProjectNestedInput
|
|
50035
|
+
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
50036
|
+
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
50037
|
+
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
50038
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
50039
|
+
}
|
|
50040
|
+
|
|
50041
|
+
export type ProjectCreateWithoutTenantFuzzConfigInput = {
|
|
50042
|
+
id?: string
|
|
50043
|
+
name: string
|
|
50044
|
+
slug: string
|
|
50045
|
+
type: $Enums.ProjectType
|
|
50046
|
+
createdAt?: Date | string
|
|
50047
|
+
updatedAt?: Date | string
|
|
50048
|
+
mode?: $Enums.ProjectMode
|
|
50049
|
+
modeChangedAt?: Date | string
|
|
50050
|
+
modeChangedBy?: string | null
|
|
50051
|
+
monthlyBudgetCents?: number
|
|
50052
|
+
dailyDispatchLimit?: number
|
|
50053
|
+
testCommand?: string | null
|
|
50054
|
+
monthlyBudgetUsd?: number | null
|
|
50055
|
+
budgetSoftWarnPct?: number
|
|
50056
|
+
repoFullName?: string | null
|
|
50057
|
+
webhookSecret?: string | null
|
|
50058
|
+
authorModel?: string | null
|
|
50059
|
+
defaultTier?: $Enums.RiskTier
|
|
50060
|
+
trustThresholds?: NullableJsonNullValueInput | InputJsonValue
|
|
50061
|
+
killSwitchConfig?: NullableJsonNullValueInput | InputJsonValue
|
|
50062
|
+
profile?: ProjectProfileCreateNestedOneWithoutProjectInput
|
|
50063
|
+
runs?: QARunCreateNestedManyWithoutProjectInput
|
|
50064
|
+
tickets?: QATicketCreateNestedManyWithoutProjectInput
|
|
50065
|
+
fixAttempts?: QAFixAttemptCreateNestedManyWithoutProjectInput
|
|
50066
|
+
auditArtifacts?: AuditArtifactCreateNestedManyWithoutProjectInput
|
|
50067
|
+
policies?: PolicyCreateNestedManyWithoutProjectInput
|
|
50068
|
+
trustScores?: ClassificationTrustCreateNestedManyWithoutProjectInput
|
|
50069
|
+
modeLog?: ProjectModeLogCreateNestedManyWithoutProjectInput
|
|
50070
|
+
patterns?: QAPatternCreateNestedManyWithoutProjectInput
|
|
50071
|
+
reverts?: QARevertCreateNestedManyWithoutProjectInput
|
|
50072
|
+
uniformities?: QAUniformityCreateNestedManyWithoutProjectInput
|
|
50073
|
+
pathTierRules?: PathTierRuleCreateNestedManyWithoutProjectInput
|
|
50074
|
+
classificationOverrides?: ClassificationOverrideCreateNestedManyWithoutProjectInput
|
|
50075
|
+
freezeWindows?: FreezeWindowCreateNestedManyWithoutProjectInput
|
|
50076
|
+
killSwitches?: KillSwitchStateCreateNestedManyWithoutProjectInput
|
|
50077
|
+
visualBaselines?: VisualBaselineCreateNestedManyWithoutProjectInput
|
|
50078
|
+
contractBaselines?: ContractBaselineCreateNestedManyWithoutProjectInput
|
|
50079
|
+
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
50080
|
+
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
50081
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
50082
|
+
}
|
|
50083
|
+
|
|
50084
|
+
export type ProjectUncheckedCreateWithoutTenantFuzzConfigInput = {
|
|
50085
|
+
id?: string
|
|
50086
|
+
name: string
|
|
50087
|
+
slug: string
|
|
50088
|
+
type: $Enums.ProjectType
|
|
50089
|
+
createdAt?: Date | string
|
|
50090
|
+
updatedAt?: Date | string
|
|
50091
|
+
mode?: $Enums.ProjectMode
|
|
50092
|
+
modeChangedAt?: Date | string
|
|
50093
|
+
modeChangedBy?: string | null
|
|
50094
|
+
monthlyBudgetCents?: number
|
|
50095
|
+
dailyDispatchLimit?: number
|
|
50096
|
+
testCommand?: string | null
|
|
50097
|
+
monthlyBudgetUsd?: number | null
|
|
50098
|
+
budgetSoftWarnPct?: number
|
|
50099
|
+
repoFullName?: string | null
|
|
50100
|
+
webhookSecret?: string | null
|
|
50101
|
+
authorModel?: string | null
|
|
50102
|
+
defaultTier?: $Enums.RiskTier
|
|
50103
|
+
trustThresholds?: NullableJsonNullValueInput | InputJsonValue
|
|
50104
|
+
killSwitchConfig?: NullableJsonNullValueInput | InputJsonValue
|
|
50105
|
+
profile?: ProjectProfileUncheckedCreateNestedOneWithoutProjectInput
|
|
50106
|
+
runs?: QARunUncheckedCreateNestedManyWithoutProjectInput
|
|
50107
|
+
tickets?: QATicketUncheckedCreateNestedManyWithoutProjectInput
|
|
50108
|
+
fixAttempts?: QAFixAttemptUncheckedCreateNestedManyWithoutProjectInput
|
|
50109
|
+
auditArtifacts?: AuditArtifactUncheckedCreateNestedManyWithoutProjectInput
|
|
50110
|
+
policies?: PolicyUncheckedCreateNestedManyWithoutProjectInput
|
|
50111
|
+
trustScores?: ClassificationTrustUncheckedCreateNestedManyWithoutProjectInput
|
|
50112
|
+
modeLog?: ProjectModeLogUncheckedCreateNestedManyWithoutProjectInput
|
|
50113
|
+
patterns?: QAPatternUncheckedCreateNestedManyWithoutProjectInput
|
|
50114
|
+
reverts?: QARevertUncheckedCreateNestedManyWithoutProjectInput
|
|
50115
|
+
uniformities?: QAUniformityUncheckedCreateNestedManyWithoutProjectInput
|
|
50116
|
+
pathTierRules?: PathTierRuleUncheckedCreateNestedManyWithoutProjectInput
|
|
50117
|
+
classificationOverrides?: ClassificationOverrideUncheckedCreateNestedManyWithoutProjectInput
|
|
50118
|
+
freezeWindows?: FreezeWindowUncheckedCreateNestedManyWithoutProjectInput
|
|
50119
|
+
killSwitches?: KillSwitchStateUncheckedCreateNestedManyWithoutProjectInput
|
|
50120
|
+
visualBaselines?: VisualBaselineUncheckedCreateNestedManyWithoutProjectInput
|
|
50121
|
+
contractBaselines?: ContractBaselineUncheckedCreateNestedManyWithoutProjectInput
|
|
50122
|
+
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
50123
|
+
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
50124
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
50125
|
+
}
|
|
50126
|
+
|
|
50127
|
+
export type ProjectCreateOrConnectWithoutTenantFuzzConfigInput = {
|
|
50128
|
+
where: ProjectWhereUniqueInput
|
|
50129
|
+
create: XOR<ProjectCreateWithoutTenantFuzzConfigInput, ProjectUncheckedCreateWithoutTenantFuzzConfigInput>
|
|
50130
|
+
}
|
|
50131
|
+
|
|
50132
|
+
export type ProjectUpsertWithoutTenantFuzzConfigInput = {
|
|
50133
|
+
update: XOR<ProjectUpdateWithoutTenantFuzzConfigInput, ProjectUncheckedUpdateWithoutTenantFuzzConfigInput>
|
|
50134
|
+
create: XOR<ProjectCreateWithoutTenantFuzzConfigInput, ProjectUncheckedCreateWithoutTenantFuzzConfigInput>
|
|
50135
|
+
where?: ProjectWhereInput
|
|
50136
|
+
}
|
|
50137
|
+
|
|
50138
|
+
export type ProjectUpdateToOneWithWhereWithoutTenantFuzzConfigInput = {
|
|
50139
|
+
where?: ProjectWhereInput
|
|
50140
|
+
data: XOR<ProjectUpdateWithoutTenantFuzzConfigInput, ProjectUncheckedUpdateWithoutTenantFuzzConfigInput>
|
|
50141
|
+
}
|
|
50142
|
+
|
|
50143
|
+
export type ProjectUpdateWithoutTenantFuzzConfigInput = {
|
|
50144
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
50145
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
50146
|
+
slug?: StringFieldUpdateOperationsInput | string
|
|
50147
|
+
type?: EnumProjectTypeFieldUpdateOperationsInput | $Enums.ProjectType
|
|
50148
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
50149
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
50150
|
+
mode?: EnumProjectModeFieldUpdateOperationsInput | $Enums.ProjectMode
|
|
50151
|
+
modeChangedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
50152
|
+
modeChangedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50153
|
+
monthlyBudgetCents?: IntFieldUpdateOperationsInput | number
|
|
50154
|
+
dailyDispatchLimit?: IntFieldUpdateOperationsInput | number
|
|
50155
|
+
testCommand?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50156
|
+
monthlyBudgetUsd?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
50157
|
+
budgetSoftWarnPct?: FloatFieldUpdateOperationsInput | number
|
|
50158
|
+
repoFullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50159
|
+
webhookSecret?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50160
|
+
authorModel?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50161
|
+
defaultTier?: EnumRiskTierFieldUpdateOperationsInput | $Enums.RiskTier
|
|
50162
|
+
trustThresholds?: NullableJsonNullValueInput | InputJsonValue
|
|
50163
|
+
killSwitchConfig?: NullableJsonNullValueInput | InputJsonValue
|
|
50164
|
+
profile?: ProjectProfileUpdateOneWithoutProjectNestedInput
|
|
50165
|
+
runs?: QARunUpdateManyWithoutProjectNestedInput
|
|
50166
|
+
tickets?: QATicketUpdateManyWithoutProjectNestedInput
|
|
50167
|
+
fixAttempts?: QAFixAttemptUpdateManyWithoutProjectNestedInput
|
|
50168
|
+
auditArtifacts?: AuditArtifactUpdateManyWithoutProjectNestedInput
|
|
50169
|
+
policies?: PolicyUpdateManyWithoutProjectNestedInput
|
|
50170
|
+
trustScores?: ClassificationTrustUpdateManyWithoutProjectNestedInput
|
|
50171
|
+
modeLog?: ProjectModeLogUpdateManyWithoutProjectNestedInput
|
|
50172
|
+
patterns?: QAPatternUpdateManyWithoutProjectNestedInput
|
|
50173
|
+
reverts?: QARevertUpdateManyWithoutProjectNestedInput
|
|
50174
|
+
uniformities?: QAUniformityUpdateManyWithoutProjectNestedInput
|
|
50175
|
+
pathTierRules?: PathTierRuleUpdateManyWithoutProjectNestedInput
|
|
50176
|
+
classificationOverrides?: ClassificationOverrideUpdateManyWithoutProjectNestedInput
|
|
50177
|
+
freezeWindows?: FreezeWindowUpdateManyWithoutProjectNestedInput
|
|
50178
|
+
killSwitches?: KillSwitchStateUpdateManyWithoutProjectNestedInput
|
|
50179
|
+
visualBaselines?: VisualBaselineUpdateManyWithoutProjectNestedInput
|
|
50180
|
+
contractBaselines?: ContractBaselineUpdateManyWithoutProjectNestedInput
|
|
48197
50181
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
48198
50182
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
50183
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
48199
50184
|
}
|
|
48200
50185
|
|
|
48201
|
-
export type
|
|
50186
|
+
export type ProjectUncheckedUpdateWithoutTenantFuzzConfigInput = {
|
|
48202
50187
|
id?: StringFieldUpdateOperationsInput | string
|
|
48203
50188
|
name?: StringFieldUpdateOperationsInput | string
|
|
48204
50189
|
slug?: StringFieldUpdateOperationsInput | string
|
|
@@ -48235,12 +50220,13 @@ export namespace Prisma {
|
|
|
48235
50220
|
freezeWindows?: FreezeWindowUncheckedUpdateManyWithoutProjectNestedInput
|
|
48236
50221
|
killSwitches?: KillSwitchStateUncheckedUpdateManyWithoutProjectNestedInput
|
|
48237
50222
|
visualBaselines?: VisualBaselineUncheckedUpdateManyWithoutProjectNestedInput
|
|
48238
|
-
|
|
50223
|
+
contractBaselines?: ContractBaselineUncheckedUpdateManyWithoutProjectNestedInput
|
|
48239
50224
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
48240
50225
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
50226
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
48241
50227
|
}
|
|
48242
50228
|
|
|
48243
|
-
export type
|
|
50229
|
+
export type ProjectCreateWithoutRumSamplesInput = {
|
|
48244
50230
|
id?: string
|
|
48245
50231
|
name: string
|
|
48246
50232
|
slug: string
|
|
@@ -48278,11 +50264,12 @@ export namespace Prisma {
|
|
|
48278
50264
|
killSwitches?: KillSwitchStateCreateNestedManyWithoutProjectInput
|
|
48279
50265
|
visualBaselines?: VisualBaselineCreateNestedManyWithoutProjectInput
|
|
48280
50266
|
contractBaselines?: ContractBaselineCreateNestedManyWithoutProjectInput
|
|
48281
|
-
|
|
50267
|
+
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
48282
50268
|
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
50269
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
48283
50270
|
}
|
|
48284
50271
|
|
|
48285
|
-
export type
|
|
50272
|
+
export type ProjectUncheckedCreateWithoutRumSamplesInput = {
|
|
48286
50273
|
id?: string
|
|
48287
50274
|
name: string
|
|
48288
50275
|
slug: string
|
|
@@ -48320,27 +50307,28 @@ export namespace Prisma {
|
|
|
48320
50307
|
killSwitches?: KillSwitchStateUncheckedCreateNestedManyWithoutProjectInput
|
|
48321
50308
|
visualBaselines?: VisualBaselineUncheckedCreateNestedManyWithoutProjectInput
|
|
48322
50309
|
contractBaselines?: ContractBaselineUncheckedCreateNestedManyWithoutProjectInput
|
|
48323
|
-
|
|
50310
|
+
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
48324
50311
|
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
50312
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
48325
50313
|
}
|
|
48326
50314
|
|
|
48327
|
-
export type
|
|
50315
|
+
export type ProjectCreateOrConnectWithoutRumSamplesInput = {
|
|
48328
50316
|
where: ProjectWhereUniqueInput
|
|
48329
|
-
create: XOR<
|
|
50317
|
+
create: XOR<ProjectCreateWithoutRumSamplesInput, ProjectUncheckedCreateWithoutRumSamplesInput>
|
|
48330
50318
|
}
|
|
48331
50319
|
|
|
48332
|
-
export type
|
|
48333
|
-
update: XOR<
|
|
48334
|
-
create: XOR<
|
|
50320
|
+
export type ProjectUpsertWithoutRumSamplesInput = {
|
|
50321
|
+
update: XOR<ProjectUpdateWithoutRumSamplesInput, ProjectUncheckedUpdateWithoutRumSamplesInput>
|
|
50322
|
+
create: XOR<ProjectCreateWithoutRumSamplesInput, ProjectUncheckedCreateWithoutRumSamplesInput>
|
|
48335
50323
|
where?: ProjectWhereInput
|
|
48336
50324
|
}
|
|
48337
50325
|
|
|
48338
|
-
export type
|
|
50326
|
+
export type ProjectUpdateToOneWithWhereWithoutRumSamplesInput = {
|
|
48339
50327
|
where?: ProjectWhereInput
|
|
48340
|
-
data: XOR<
|
|
50328
|
+
data: XOR<ProjectUpdateWithoutRumSamplesInput, ProjectUncheckedUpdateWithoutRumSamplesInput>
|
|
48341
50329
|
}
|
|
48342
50330
|
|
|
48343
|
-
export type
|
|
50331
|
+
export type ProjectUpdateWithoutRumSamplesInput = {
|
|
48344
50332
|
id?: StringFieldUpdateOperationsInput | string
|
|
48345
50333
|
name?: StringFieldUpdateOperationsInput | string
|
|
48346
50334
|
slug?: StringFieldUpdateOperationsInput | string
|
|
@@ -48378,11 +50366,12 @@ export namespace Prisma {
|
|
|
48378
50366
|
killSwitches?: KillSwitchStateUpdateManyWithoutProjectNestedInput
|
|
48379
50367
|
visualBaselines?: VisualBaselineUpdateManyWithoutProjectNestedInput
|
|
48380
50368
|
contractBaselines?: ContractBaselineUpdateManyWithoutProjectNestedInput
|
|
48381
|
-
|
|
50369
|
+
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
48382
50370
|
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
50371
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
48383
50372
|
}
|
|
48384
50373
|
|
|
48385
|
-
export type
|
|
50374
|
+
export type ProjectUncheckedUpdateWithoutRumSamplesInput = {
|
|
48386
50375
|
id?: StringFieldUpdateOperationsInput | string
|
|
48387
50376
|
name?: StringFieldUpdateOperationsInput | string
|
|
48388
50377
|
slug?: StringFieldUpdateOperationsInput | string
|
|
@@ -48420,11 +50409,12 @@ export namespace Prisma {
|
|
|
48420
50409
|
killSwitches?: KillSwitchStateUncheckedUpdateManyWithoutProjectNestedInput
|
|
48421
50410
|
visualBaselines?: VisualBaselineUncheckedUpdateManyWithoutProjectNestedInput
|
|
48422
50411
|
contractBaselines?: ContractBaselineUncheckedUpdateManyWithoutProjectNestedInput
|
|
48423
|
-
|
|
50412
|
+
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
48424
50413
|
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
50414
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
48425
50415
|
}
|
|
48426
50416
|
|
|
48427
|
-
export type
|
|
50417
|
+
export type ProjectCreateWithoutMilestoneEventsInput = {
|
|
48428
50418
|
id?: string
|
|
48429
50419
|
name: string
|
|
48430
50420
|
slug: string
|
|
@@ -48463,10 +50453,11 @@ export namespace Prisma {
|
|
|
48463
50453
|
visualBaselines?: VisualBaselineCreateNestedManyWithoutProjectInput
|
|
48464
50454
|
contractBaselines?: ContractBaselineCreateNestedManyWithoutProjectInput
|
|
48465
50455
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
48466
|
-
|
|
50456
|
+
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
50457
|
+
selfReviewVerdicts?: SelfReviewVerdictCreateNestedManyWithoutProjectInput
|
|
48467
50458
|
}
|
|
48468
50459
|
|
|
48469
|
-
export type
|
|
50460
|
+
export type ProjectUncheckedCreateWithoutMilestoneEventsInput = {
|
|
48470
50461
|
id?: string
|
|
48471
50462
|
name: string
|
|
48472
50463
|
slug: string
|
|
@@ -48505,26 +50496,27 @@ export namespace Prisma {
|
|
|
48505
50496
|
visualBaselines?: VisualBaselineUncheckedCreateNestedManyWithoutProjectInput
|
|
48506
50497
|
contractBaselines?: ContractBaselineUncheckedCreateNestedManyWithoutProjectInput
|
|
48507
50498
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
48508
|
-
|
|
50499
|
+
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
50500
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedCreateNestedManyWithoutProjectInput
|
|
48509
50501
|
}
|
|
48510
50502
|
|
|
48511
|
-
export type
|
|
50503
|
+
export type ProjectCreateOrConnectWithoutMilestoneEventsInput = {
|
|
48512
50504
|
where: ProjectWhereUniqueInput
|
|
48513
|
-
create: XOR<
|
|
50505
|
+
create: XOR<ProjectCreateWithoutMilestoneEventsInput, ProjectUncheckedCreateWithoutMilestoneEventsInput>
|
|
48514
50506
|
}
|
|
48515
50507
|
|
|
48516
|
-
export type
|
|
48517
|
-
update: XOR<
|
|
48518
|
-
create: XOR<
|
|
50508
|
+
export type ProjectUpsertWithoutMilestoneEventsInput = {
|
|
50509
|
+
update: XOR<ProjectUpdateWithoutMilestoneEventsInput, ProjectUncheckedUpdateWithoutMilestoneEventsInput>
|
|
50510
|
+
create: XOR<ProjectCreateWithoutMilestoneEventsInput, ProjectUncheckedCreateWithoutMilestoneEventsInput>
|
|
48519
50511
|
where?: ProjectWhereInput
|
|
48520
50512
|
}
|
|
48521
50513
|
|
|
48522
|
-
export type
|
|
50514
|
+
export type ProjectUpdateToOneWithWhereWithoutMilestoneEventsInput = {
|
|
48523
50515
|
where?: ProjectWhereInput
|
|
48524
|
-
data: XOR<
|
|
50516
|
+
data: XOR<ProjectUpdateWithoutMilestoneEventsInput, ProjectUncheckedUpdateWithoutMilestoneEventsInput>
|
|
48525
50517
|
}
|
|
48526
50518
|
|
|
48527
|
-
export type
|
|
50519
|
+
export type ProjectUpdateWithoutMilestoneEventsInput = {
|
|
48528
50520
|
id?: StringFieldUpdateOperationsInput | string
|
|
48529
50521
|
name?: StringFieldUpdateOperationsInput | string
|
|
48530
50522
|
slug?: StringFieldUpdateOperationsInput | string
|
|
@@ -48563,10 +50555,11 @@ export namespace Prisma {
|
|
|
48563
50555
|
visualBaselines?: VisualBaselineUpdateManyWithoutProjectNestedInput
|
|
48564
50556
|
contractBaselines?: ContractBaselineUpdateManyWithoutProjectNestedInput
|
|
48565
50557
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
48566
|
-
|
|
50558
|
+
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
50559
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutProjectNestedInput
|
|
48567
50560
|
}
|
|
48568
50561
|
|
|
48569
|
-
export type
|
|
50562
|
+
export type ProjectUncheckedUpdateWithoutMilestoneEventsInput = {
|
|
48570
50563
|
id?: StringFieldUpdateOperationsInput | string
|
|
48571
50564
|
name?: StringFieldUpdateOperationsInput | string
|
|
48572
50565
|
slug?: StringFieldUpdateOperationsInput | string
|
|
@@ -48605,10 +50598,11 @@ export namespace Prisma {
|
|
|
48605
50598
|
visualBaselines?: VisualBaselineUncheckedUpdateManyWithoutProjectNestedInput
|
|
48606
50599
|
contractBaselines?: ContractBaselineUncheckedUpdateManyWithoutProjectNestedInput
|
|
48607
50600
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
48608
|
-
|
|
50601
|
+
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
50602
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutProjectNestedInput
|
|
48609
50603
|
}
|
|
48610
50604
|
|
|
48611
|
-
export type
|
|
50605
|
+
export type ProjectCreateWithoutSelfReviewVerdictsInput = {
|
|
48612
50606
|
id?: string
|
|
48613
50607
|
name: string
|
|
48614
50608
|
slug: string
|
|
@@ -48648,9 +50642,10 @@ export namespace Prisma {
|
|
|
48648
50642
|
contractBaselines?: ContractBaselineCreateNestedManyWithoutProjectInput
|
|
48649
50643
|
tenantFuzzConfig?: TenantFuzzConfigCreateNestedOneWithoutProjectInput
|
|
48650
50644
|
rumSamples?: RumSampleCreateNestedManyWithoutProjectInput
|
|
50645
|
+
milestoneEvents?: MilestoneEventCreateNestedManyWithoutProjectInput
|
|
48651
50646
|
}
|
|
48652
50647
|
|
|
48653
|
-
export type
|
|
50648
|
+
export type ProjectUncheckedCreateWithoutSelfReviewVerdictsInput = {
|
|
48654
50649
|
id?: string
|
|
48655
50650
|
name: string
|
|
48656
50651
|
slug: string
|
|
@@ -48690,25 +50685,91 @@ export namespace Prisma {
|
|
|
48690
50685
|
contractBaselines?: ContractBaselineUncheckedCreateNestedManyWithoutProjectInput
|
|
48691
50686
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedCreateNestedOneWithoutProjectInput
|
|
48692
50687
|
rumSamples?: RumSampleUncheckedCreateNestedManyWithoutProjectInput
|
|
50688
|
+
milestoneEvents?: MilestoneEventUncheckedCreateNestedManyWithoutProjectInput
|
|
48693
50689
|
}
|
|
48694
50690
|
|
|
48695
|
-
export type
|
|
50691
|
+
export type ProjectCreateOrConnectWithoutSelfReviewVerdictsInput = {
|
|
48696
50692
|
where: ProjectWhereUniqueInput
|
|
48697
|
-
create: XOR<
|
|
50693
|
+
create: XOR<ProjectCreateWithoutSelfReviewVerdictsInput, ProjectUncheckedCreateWithoutSelfReviewVerdictsInput>
|
|
48698
50694
|
}
|
|
48699
50695
|
|
|
48700
|
-
export type
|
|
48701
|
-
|
|
48702
|
-
|
|
50696
|
+
export type QAFixAttemptCreateWithoutSelfReviewVerdictsInput = {
|
|
50697
|
+
id?: string
|
|
50698
|
+
attemptNumber: number
|
|
50699
|
+
promptText: string
|
|
50700
|
+
diff?: string | null
|
|
50701
|
+
diffSizeBytes?: number | null
|
|
50702
|
+
modelName?: string | null
|
|
50703
|
+
modelVersion?: string | null
|
|
50704
|
+
inputTokens?: number | null
|
|
50705
|
+
outputTokens?: number | null
|
|
50706
|
+
costCents?: number | null
|
|
50707
|
+
preVerifyResult?: NullableJsonNullValueInput | InputJsonValue
|
|
50708
|
+
preVerifyPassed?: boolean | null
|
|
50709
|
+
branchName?: string | null
|
|
50710
|
+
prUrl?: string | null
|
|
50711
|
+
prNumber?: number | null
|
|
50712
|
+
dispatchStatus?: $Enums.AttemptStatus
|
|
50713
|
+
mergedAt?: Date | string | null
|
|
50714
|
+
postVerifyResult?: NullableJsonNullValueInput | InputJsonValue
|
|
50715
|
+
regressionDetected?: boolean
|
|
50716
|
+
autoRevertedAt?: Date | string | null
|
|
50717
|
+
humanEditLines?: number | null
|
|
50718
|
+
fixSuccessScore?: number | null
|
|
50719
|
+
attemptedAt?: Date | string
|
|
50720
|
+
closedAt?: Date | string | null
|
|
50721
|
+
ticket: QATicketCreateNestedOneWithoutAttemptsInput
|
|
50722
|
+
project: ProjectCreateNestedOneWithoutFixAttemptsInput
|
|
50723
|
+
artifacts?: AuditArtifactCreateNestedManyWithoutFixAttemptInput
|
|
50724
|
+
}
|
|
50725
|
+
|
|
50726
|
+
export type QAFixAttemptUncheckedCreateWithoutSelfReviewVerdictsInput = {
|
|
50727
|
+
id?: string
|
|
50728
|
+
qaTicketId: string
|
|
50729
|
+
projectId: string
|
|
50730
|
+
attemptNumber: number
|
|
50731
|
+
promptText: string
|
|
50732
|
+
diff?: string | null
|
|
50733
|
+
diffSizeBytes?: number | null
|
|
50734
|
+
modelName?: string | null
|
|
50735
|
+
modelVersion?: string | null
|
|
50736
|
+
inputTokens?: number | null
|
|
50737
|
+
outputTokens?: number | null
|
|
50738
|
+
costCents?: number | null
|
|
50739
|
+
preVerifyResult?: NullableJsonNullValueInput | InputJsonValue
|
|
50740
|
+
preVerifyPassed?: boolean | null
|
|
50741
|
+
branchName?: string | null
|
|
50742
|
+
prUrl?: string | null
|
|
50743
|
+
prNumber?: number | null
|
|
50744
|
+
dispatchStatus?: $Enums.AttemptStatus
|
|
50745
|
+
mergedAt?: Date | string | null
|
|
50746
|
+
postVerifyResult?: NullableJsonNullValueInput | InputJsonValue
|
|
50747
|
+
regressionDetected?: boolean
|
|
50748
|
+
autoRevertedAt?: Date | string | null
|
|
50749
|
+
humanEditLines?: number | null
|
|
50750
|
+
fixSuccessScore?: number | null
|
|
50751
|
+
attemptedAt?: Date | string
|
|
50752
|
+
closedAt?: Date | string | null
|
|
50753
|
+
artifacts?: AuditArtifactUncheckedCreateNestedManyWithoutFixAttemptInput
|
|
50754
|
+
}
|
|
50755
|
+
|
|
50756
|
+
export type QAFixAttemptCreateOrConnectWithoutSelfReviewVerdictsInput = {
|
|
50757
|
+
where: QAFixAttemptWhereUniqueInput
|
|
50758
|
+
create: XOR<QAFixAttemptCreateWithoutSelfReviewVerdictsInput, QAFixAttemptUncheckedCreateWithoutSelfReviewVerdictsInput>
|
|
50759
|
+
}
|
|
50760
|
+
|
|
50761
|
+
export type ProjectUpsertWithoutSelfReviewVerdictsInput = {
|
|
50762
|
+
update: XOR<ProjectUpdateWithoutSelfReviewVerdictsInput, ProjectUncheckedUpdateWithoutSelfReviewVerdictsInput>
|
|
50763
|
+
create: XOR<ProjectCreateWithoutSelfReviewVerdictsInput, ProjectUncheckedCreateWithoutSelfReviewVerdictsInput>
|
|
48703
50764
|
where?: ProjectWhereInput
|
|
48704
50765
|
}
|
|
48705
50766
|
|
|
48706
|
-
export type
|
|
50767
|
+
export type ProjectUpdateToOneWithWhereWithoutSelfReviewVerdictsInput = {
|
|
48707
50768
|
where?: ProjectWhereInput
|
|
48708
|
-
data: XOR<
|
|
50769
|
+
data: XOR<ProjectUpdateWithoutSelfReviewVerdictsInput, ProjectUncheckedUpdateWithoutSelfReviewVerdictsInput>
|
|
48709
50770
|
}
|
|
48710
50771
|
|
|
48711
|
-
export type
|
|
50772
|
+
export type ProjectUpdateWithoutSelfReviewVerdictsInput = {
|
|
48712
50773
|
id?: StringFieldUpdateOperationsInput | string
|
|
48713
50774
|
name?: StringFieldUpdateOperationsInput | string
|
|
48714
50775
|
slug?: StringFieldUpdateOperationsInput | string
|
|
@@ -48748,9 +50809,10 @@ export namespace Prisma {
|
|
|
48748
50809
|
contractBaselines?: ContractBaselineUpdateManyWithoutProjectNestedInput
|
|
48749
50810
|
tenantFuzzConfig?: TenantFuzzConfigUpdateOneWithoutProjectNestedInput
|
|
48750
50811
|
rumSamples?: RumSampleUpdateManyWithoutProjectNestedInput
|
|
50812
|
+
milestoneEvents?: MilestoneEventUpdateManyWithoutProjectNestedInput
|
|
48751
50813
|
}
|
|
48752
50814
|
|
|
48753
|
-
export type
|
|
50815
|
+
export type ProjectUncheckedUpdateWithoutSelfReviewVerdictsInput = {
|
|
48754
50816
|
id?: StringFieldUpdateOperationsInput | string
|
|
48755
50817
|
name?: StringFieldUpdateOperationsInput | string
|
|
48756
50818
|
slug?: StringFieldUpdateOperationsInput | string
|
|
@@ -48790,6 +50852,78 @@ export namespace Prisma {
|
|
|
48790
50852
|
contractBaselines?: ContractBaselineUncheckedUpdateManyWithoutProjectNestedInput
|
|
48791
50853
|
tenantFuzzConfig?: TenantFuzzConfigUncheckedUpdateOneWithoutProjectNestedInput
|
|
48792
50854
|
rumSamples?: RumSampleUncheckedUpdateManyWithoutProjectNestedInput
|
|
50855
|
+
milestoneEvents?: MilestoneEventUncheckedUpdateManyWithoutProjectNestedInput
|
|
50856
|
+
}
|
|
50857
|
+
|
|
50858
|
+
export type QAFixAttemptUpsertWithoutSelfReviewVerdictsInput = {
|
|
50859
|
+
update: XOR<QAFixAttemptUpdateWithoutSelfReviewVerdictsInput, QAFixAttemptUncheckedUpdateWithoutSelfReviewVerdictsInput>
|
|
50860
|
+
create: XOR<QAFixAttemptCreateWithoutSelfReviewVerdictsInput, QAFixAttemptUncheckedCreateWithoutSelfReviewVerdictsInput>
|
|
50861
|
+
where?: QAFixAttemptWhereInput
|
|
50862
|
+
}
|
|
50863
|
+
|
|
50864
|
+
export type QAFixAttemptUpdateToOneWithWhereWithoutSelfReviewVerdictsInput = {
|
|
50865
|
+
where?: QAFixAttemptWhereInput
|
|
50866
|
+
data: XOR<QAFixAttemptUpdateWithoutSelfReviewVerdictsInput, QAFixAttemptUncheckedUpdateWithoutSelfReviewVerdictsInput>
|
|
50867
|
+
}
|
|
50868
|
+
|
|
50869
|
+
export type QAFixAttemptUpdateWithoutSelfReviewVerdictsInput = {
|
|
50870
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
50871
|
+
attemptNumber?: IntFieldUpdateOperationsInput | number
|
|
50872
|
+
promptText?: StringFieldUpdateOperationsInput | string
|
|
50873
|
+
diff?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50874
|
+
diffSizeBytes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
50875
|
+
modelName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50876
|
+
modelVersion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50877
|
+
inputTokens?: NullableIntFieldUpdateOperationsInput | number | null
|
|
50878
|
+
outputTokens?: NullableIntFieldUpdateOperationsInput | number | null
|
|
50879
|
+
costCents?: NullableIntFieldUpdateOperationsInput | number | null
|
|
50880
|
+
preVerifyResult?: NullableJsonNullValueInput | InputJsonValue
|
|
50881
|
+
preVerifyPassed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
50882
|
+
branchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50883
|
+
prUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50884
|
+
prNumber?: NullableIntFieldUpdateOperationsInput | number | null
|
|
50885
|
+
dispatchStatus?: EnumAttemptStatusFieldUpdateOperationsInput | $Enums.AttemptStatus
|
|
50886
|
+
mergedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
50887
|
+
postVerifyResult?: NullableJsonNullValueInput | InputJsonValue
|
|
50888
|
+
regressionDetected?: BoolFieldUpdateOperationsInput | boolean
|
|
50889
|
+
autoRevertedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
50890
|
+
humanEditLines?: NullableIntFieldUpdateOperationsInput | number | null
|
|
50891
|
+
fixSuccessScore?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
50892
|
+
attemptedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
50893
|
+
closedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
50894
|
+
ticket?: QATicketUpdateOneRequiredWithoutAttemptsNestedInput
|
|
50895
|
+
project?: ProjectUpdateOneRequiredWithoutFixAttemptsNestedInput
|
|
50896
|
+
artifacts?: AuditArtifactUpdateManyWithoutFixAttemptNestedInput
|
|
50897
|
+
}
|
|
50898
|
+
|
|
50899
|
+
export type QAFixAttemptUncheckedUpdateWithoutSelfReviewVerdictsInput = {
|
|
50900
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
50901
|
+
qaTicketId?: StringFieldUpdateOperationsInput | string
|
|
50902
|
+
projectId?: StringFieldUpdateOperationsInput | string
|
|
50903
|
+
attemptNumber?: IntFieldUpdateOperationsInput | number
|
|
50904
|
+
promptText?: StringFieldUpdateOperationsInput | string
|
|
50905
|
+
diff?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50906
|
+
diffSizeBytes?: NullableIntFieldUpdateOperationsInput | number | null
|
|
50907
|
+
modelName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50908
|
+
modelVersion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50909
|
+
inputTokens?: NullableIntFieldUpdateOperationsInput | number | null
|
|
50910
|
+
outputTokens?: NullableIntFieldUpdateOperationsInput | number | null
|
|
50911
|
+
costCents?: NullableIntFieldUpdateOperationsInput | number | null
|
|
50912
|
+
preVerifyResult?: NullableJsonNullValueInput | InputJsonValue
|
|
50913
|
+
preVerifyPassed?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
50914
|
+
branchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50915
|
+
prUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
50916
|
+
prNumber?: NullableIntFieldUpdateOperationsInput | number | null
|
|
50917
|
+
dispatchStatus?: EnumAttemptStatusFieldUpdateOperationsInput | $Enums.AttemptStatus
|
|
50918
|
+
mergedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
50919
|
+
postVerifyResult?: NullableJsonNullValueInput | InputJsonValue
|
|
50920
|
+
regressionDetected?: BoolFieldUpdateOperationsInput | boolean
|
|
50921
|
+
autoRevertedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
50922
|
+
humanEditLines?: NullableIntFieldUpdateOperationsInput | number | null
|
|
50923
|
+
fixSuccessScore?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
50924
|
+
attemptedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
50925
|
+
closedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
50926
|
+
artifacts?: AuditArtifactUncheckedUpdateManyWithoutFixAttemptNestedInput
|
|
48793
50927
|
}
|
|
48794
50928
|
|
|
48795
50929
|
export type QARunCreateManyProjectInput = {
|
|
@@ -49050,6 +51184,19 @@ export namespace Prisma {
|
|
|
49050
51184
|
updatedAt?: Date | string
|
|
49051
51185
|
}
|
|
49052
51186
|
|
|
51187
|
+
export type SelfReviewVerdictCreateManyProjectInput = {
|
|
51188
|
+
id?: string
|
|
51189
|
+
qaFixAttemptId: string
|
|
51190
|
+
qaTicketId: string
|
|
51191
|
+
classification: string
|
|
51192
|
+
surface: string
|
|
51193
|
+
verdict: string
|
|
51194
|
+
reasonHints?: SelfReviewVerdictCreatereasonHintsInput | string[]
|
|
51195
|
+
criticalIssuesFound: number
|
|
51196
|
+
minorIssuesFound: number
|
|
51197
|
+
createdAt?: Date | string
|
|
51198
|
+
}
|
|
51199
|
+
|
|
49053
51200
|
export type QARunUpdateWithoutProjectInput = {
|
|
49054
51201
|
id?: StringFieldUpdateOperationsInput | string
|
|
49055
51202
|
triggeredBy?: StringFieldUpdateOperationsInput | string
|
|
@@ -49216,6 +51363,7 @@ export namespace Prisma {
|
|
|
49216
51363
|
closedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
49217
51364
|
ticket?: QATicketUpdateOneRequiredWithoutAttemptsNestedInput
|
|
49218
51365
|
artifacts?: AuditArtifactUpdateManyWithoutFixAttemptNestedInput
|
|
51366
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutQaFixAttemptNestedInput
|
|
49219
51367
|
}
|
|
49220
51368
|
|
|
49221
51369
|
export type QAFixAttemptUncheckedUpdateWithoutProjectInput = {
|
|
@@ -49245,6 +51393,7 @@ export namespace Prisma {
|
|
|
49245
51393
|
attemptedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
49246
51394
|
closedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
49247
51395
|
artifacts?: AuditArtifactUncheckedUpdateManyWithoutFixAttemptNestedInput
|
|
51396
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutQaFixAttemptNestedInput
|
|
49248
51397
|
}
|
|
49249
51398
|
|
|
49250
51399
|
export type QAFixAttemptUncheckedUpdateManyWithoutProjectInput = {
|
|
@@ -49842,6 +51991,45 @@ export namespace Prisma {
|
|
|
49842
51991
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
49843
51992
|
}
|
|
49844
51993
|
|
|
51994
|
+
export type SelfReviewVerdictUpdateWithoutProjectInput = {
|
|
51995
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
51996
|
+
qaTicketId?: StringFieldUpdateOperationsInput | string
|
|
51997
|
+
classification?: StringFieldUpdateOperationsInput | string
|
|
51998
|
+
surface?: StringFieldUpdateOperationsInput | string
|
|
51999
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
52000
|
+
reasonHints?: SelfReviewVerdictUpdatereasonHintsInput | string[]
|
|
52001
|
+
criticalIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
52002
|
+
minorIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
52003
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
52004
|
+
qaFixAttempt?: QAFixAttemptUpdateOneRequiredWithoutSelfReviewVerdictsNestedInput
|
|
52005
|
+
}
|
|
52006
|
+
|
|
52007
|
+
export type SelfReviewVerdictUncheckedUpdateWithoutProjectInput = {
|
|
52008
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
52009
|
+
qaFixAttemptId?: StringFieldUpdateOperationsInput | string
|
|
52010
|
+
qaTicketId?: StringFieldUpdateOperationsInput | string
|
|
52011
|
+
classification?: StringFieldUpdateOperationsInput | string
|
|
52012
|
+
surface?: StringFieldUpdateOperationsInput | string
|
|
52013
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
52014
|
+
reasonHints?: SelfReviewVerdictUpdatereasonHintsInput | string[]
|
|
52015
|
+
criticalIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
52016
|
+
minorIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
52017
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
52018
|
+
}
|
|
52019
|
+
|
|
52020
|
+
export type SelfReviewVerdictUncheckedUpdateManyWithoutProjectInput = {
|
|
52021
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
52022
|
+
qaFixAttemptId?: StringFieldUpdateOperationsInput | string
|
|
52023
|
+
qaTicketId?: StringFieldUpdateOperationsInput | string
|
|
52024
|
+
classification?: StringFieldUpdateOperationsInput | string
|
|
52025
|
+
surface?: StringFieldUpdateOperationsInput | string
|
|
52026
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
52027
|
+
reasonHints?: SelfReviewVerdictUpdatereasonHintsInput | string[]
|
|
52028
|
+
criticalIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
52029
|
+
minorIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
52030
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
52031
|
+
}
|
|
52032
|
+
|
|
49845
52033
|
export type ProfileEvolutionLogCreateManyProfileInput = {
|
|
49846
52034
|
id?: string
|
|
49847
52035
|
triggerType: string
|
|
@@ -50281,6 +52469,7 @@ export namespace Prisma {
|
|
|
50281
52469
|
closedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
50282
52470
|
project?: ProjectUpdateOneRequiredWithoutFixAttemptsNestedInput
|
|
50283
52471
|
artifacts?: AuditArtifactUpdateManyWithoutFixAttemptNestedInput
|
|
52472
|
+
selfReviewVerdicts?: SelfReviewVerdictUpdateManyWithoutQaFixAttemptNestedInput
|
|
50284
52473
|
}
|
|
50285
52474
|
|
|
50286
52475
|
export type QAFixAttemptUncheckedUpdateWithoutTicketInput = {
|
|
@@ -50310,6 +52499,7 @@ export namespace Prisma {
|
|
|
50310
52499
|
attemptedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
50311
52500
|
closedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
50312
52501
|
artifacts?: AuditArtifactUncheckedUpdateManyWithoutFixAttemptNestedInput
|
|
52502
|
+
selfReviewVerdicts?: SelfReviewVerdictUncheckedUpdateManyWithoutQaFixAttemptNestedInput
|
|
50313
52503
|
}
|
|
50314
52504
|
|
|
50315
52505
|
export type QAFixAttemptUncheckedUpdateManyWithoutTicketInput = {
|
|
@@ -50452,6 +52642,19 @@ export namespace Prisma {
|
|
|
50452
52642
|
capturedAt?: Date | string
|
|
50453
52643
|
}
|
|
50454
52644
|
|
|
52645
|
+
export type SelfReviewVerdictCreateManyQaFixAttemptInput = {
|
|
52646
|
+
id?: string
|
|
52647
|
+
projectId: string
|
|
52648
|
+
qaTicketId: string
|
|
52649
|
+
classification: string
|
|
52650
|
+
surface: string
|
|
52651
|
+
verdict: string
|
|
52652
|
+
reasonHints?: SelfReviewVerdictCreatereasonHintsInput | string[]
|
|
52653
|
+
criticalIssuesFound: number
|
|
52654
|
+
minorIssuesFound: number
|
|
52655
|
+
createdAt?: Date | string
|
|
52656
|
+
}
|
|
52657
|
+
|
|
50455
52658
|
export type AuditArtifactUpdateWithoutFixAttemptInput = {
|
|
50456
52659
|
id?: StringFieldUpdateOperationsInput | string
|
|
50457
52660
|
artifactType?: EnumArtifactTypeFieldUpdateOperationsInput | $Enums.ArtifactType
|
|
@@ -50500,6 +52703,45 @@ export namespace Prisma {
|
|
|
50500
52703
|
capturedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
50501
52704
|
}
|
|
50502
52705
|
|
|
52706
|
+
export type SelfReviewVerdictUpdateWithoutQaFixAttemptInput = {
|
|
52707
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
52708
|
+
qaTicketId?: StringFieldUpdateOperationsInput | string
|
|
52709
|
+
classification?: StringFieldUpdateOperationsInput | string
|
|
52710
|
+
surface?: StringFieldUpdateOperationsInput | string
|
|
52711
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
52712
|
+
reasonHints?: SelfReviewVerdictUpdatereasonHintsInput | string[]
|
|
52713
|
+
criticalIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
52714
|
+
minorIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
52715
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
52716
|
+
project?: ProjectUpdateOneRequiredWithoutSelfReviewVerdictsNestedInput
|
|
52717
|
+
}
|
|
52718
|
+
|
|
52719
|
+
export type SelfReviewVerdictUncheckedUpdateWithoutQaFixAttemptInput = {
|
|
52720
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
52721
|
+
projectId?: StringFieldUpdateOperationsInput | string
|
|
52722
|
+
qaTicketId?: StringFieldUpdateOperationsInput | string
|
|
52723
|
+
classification?: StringFieldUpdateOperationsInput | string
|
|
52724
|
+
surface?: StringFieldUpdateOperationsInput | string
|
|
52725
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
52726
|
+
reasonHints?: SelfReviewVerdictUpdatereasonHintsInput | string[]
|
|
52727
|
+
criticalIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
52728
|
+
minorIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
52729
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
52730
|
+
}
|
|
52731
|
+
|
|
52732
|
+
export type SelfReviewVerdictUncheckedUpdateManyWithoutQaFixAttemptInput = {
|
|
52733
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
52734
|
+
projectId?: StringFieldUpdateOperationsInput | string
|
|
52735
|
+
qaTicketId?: StringFieldUpdateOperationsInput | string
|
|
52736
|
+
classification?: StringFieldUpdateOperationsInput | string
|
|
52737
|
+
surface?: StringFieldUpdateOperationsInput | string
|
|
52738
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
52739
|
+
reasonHints?: SelfReviewVerdictUpdatereasonHintsInput | string[]
|
|
52740
|
+
criticalIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
52741
|
+
minorIssuesFound?: IntFieldUpdateOperationsInput | number
|
|
52742
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
52743
|
+
}
|
|
52744
|
+
|
|
50503
52745
|
|
|
50504
52746
|
|
|
50505
52747
|
/**
|
|
@@ -50629,6 +52871,10 @@ export namespace Prisma {
|
|
|
50629
52871
|
* @deprecated Use MilestoneEventDefaultArgs instead
|
|
50630
52872
|
*/
|
|
50631
52873
|
export type MilestoneEventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MilestoneEventDefaultArgs<ExtArgs>
|
|
52874
|
+
/**
|
|
52875
|
+
* @deprecated Use SelfReviewVerdictDefaultArgs instead
|
|
52876
|
+
*/
|
|
52877
|
+
export type SelfReviewVerdictArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = SelfReviewVerdictDefaultArgs<ExtArgs>
|
|
50632
52878
|
|
|
50633
52879
|
/**
|
|
50634
52880
|
* Batch Payload for updateMany & deleteMany & createMany
|