@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
|
@@ -504,6 +504,20 @@ exports.Prisma.MilestoneEventScalarFieldEnum = {
|
|
|
504
504
|
updatedAt: 'updatedAt'
|
|
505
505
|
};
|
|
506
506
|
|
|
507
|
+
exports.Prisma.SelfReviewVerdictScalarFieldEnum = {
|
|
508
|
+
id: 'id',
|
|
509
|
+
projectId: 'projectId',
|
|
510
|
+
qaFixAttemptId: 'qaFixAttemptId',
|
|
511
|
+
qaTicketId: 'qaTicketId',
|
|
512
|
+
classification: 'classification',
|
|
513
|
+
surface: 'surface',
|
|
514
|
+
verdict: 'verdict',
|
|
515
|
+
reasonHints: 'reasonHints',
|
|
516
|
+
criticalIssuesFound: 'criticalIssuesFound',
|
|
517
|
+
minorIssuesFound: 'minorIssuesFound',
|
|
518
|
+
createdAt: 'createdAt'
|
|
519
|
+
};
|
|
520
|
+
|
|
507
521
|
exports.Prisma.SortOrder = {
|
|
508
522
|
asc: 'asc',
|
|
509
523
|
desc: 'desc'
|
|
@@ -617,7 +631,8 @@ exports.AttemptStatus = exports.$Enums.AttemptStatus = {
|
|
|
617
631
|
HUMAN_MERGED: 'HUMAN_MERGED',
|
|
618
632
|
REJECTED: 'REJECTED',
|
|
619
633
|
REGRESSED_REVERTED: 'REGRESSED_REVERTED',
|
|
620
|
-
FAILED: 'FAILED'
|
|
634
|
+
FAILED: 'FAILED',
|
|
635
|
+
MANUAL_REVIEW_REQUIRED: 'MANUAL_REVIEW_REQUIRED'
|
|
621
636
|
};
|
|
622
637
|
|
|
623
638
|
exports.ArtifactType = exports.$Enums.ArtifactType = {
|
|
@@ -717,7 +732,8 @@ exports.Prisma.ModelName = {
|
|
|
717
732
|
ContractBaseline: 'ContractBaseline',
|
|
718
733
|
TenantFuzzConfig: 'TenantFuzzConfig',
|
|
719
734
|
RumSample: 'RumSample',
|
|
720
|
-
MilestoneEvent: 'MilestoneEvent'
|
|
735
|
+
MilestoneEvent: 'MilestoneEvent',
|
|
736
|
+
SelfReviewVerdict: 'SelfReviewVerdict'
|
|
721
737
|
};
|
|
722
738
|
|
|
723
739
|
/**
|