@derwinjs/db 0.1.1 → 0.3.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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-253843004b6b822ae3268963d7ebb7ff9c4c57307490d841f8f44ba6ea56002a",
2
+ "name": "prisma-client-f5c66233402c066a01e37df825f4f3735dea515740b8083ee9c9d07df826d7e2",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -71,8 +71,9 @@ model Project {
71
71
  modeChangedBy String?
72
72
 
73
73
  // Per-project quotas + budgets
74
- monthlyBudgetCents Int @default(10000) // $100 default
75
- dailyDispatchLimit Int @default(50)
74
+ monthlyBudgetCents Int @default(10000) // $100 default
75
+ dailyDispatchLimit Int @default(50)
76
+ testCommand String? // shell command for Verify-Pre, default 'pnpm test'
76
77
 
77
78
  // GitHub integration (QAP-019C / Group D-1, 2026-05-04).
78
79
  //
@@ -91,6 +92,7 @@ model Project {
91
92
  // payloads before any DB writes.
92
93
  repoFullName String? @unique
93
94
  webhookSecret String?
95
+ authorModel String? // override Author LLM model (Sprint 3b — claude-sonnet-4-6 default in adapter)
94
96
 
95
97
  // Relations
96
98
  profile ProjectProfile?
@@ -134,8 +134,10 @@ exports.Prisma.ProjectScalarFieldEnum = {
134
134
  modeChangedBy: 'modeChangedBy',
135
135
  monthlyBudgetCents: 'monthlyBudgetCents',
136
136
  dailyDispatchLimit: 'dailyDispatchLimit',
137
+ testCommand: 'testCommand',
137
138
  repoFullName: 'repoFullName',
138
- webhookSecret: 'webhookSecret'
139
+ webhookSecret: 'webhookSecret',
140
+ authorModel: 'authorModel'
139
141
  };
140
142
 
141
143
  exports.Prisma.ProjectProfileScalarFieldEnum = {