@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.
- package/package.json +3 -3
- package/prisma/schema.prisma +4 -2
- package/prisma-client/edge.js +6 -4
- package/prisma-client/index-browser.js +3 -1
- package/prisma-client/index.d.ts +145 -1
- package/prisma-client/index.js +6 -4
- package/prisma-client/package.json +1 -1
- package/prisma-client/schema.prisma +4 -2
- package/prisma-client/wasm.js +3 -1
|
@@ -71,8 +71,9 @@ model Project {
|
|
|
71
71
|
modeChangedBy String?
|
|
72
72
|
|
|
73
73
|
// Per-project quotas + budgets
|
|
74
|
-
monthlyBudgetCents Int
|
|
75
|
-
dailyDispatchLimit Int
|
|
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?
|
package/prisma-client/wasm.js
CHANGED
|
@@ -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 = {
|