@specverse/engines 6.0.2 → 6.0.5
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/ai/behavior-ai-service.d.ts.map +1 -1
- package/dist/ai/behavior-ai-service.js +18 -6
- package/dist/ai/behavior-ai-service.js.map +1 -1
- package/dist/ai/prompt-loader.d.ts +7 -3
- package/dist/ai/prompt-loader.d.ts.map +1 -1
- package/dist/ai/prompt-loader.js +67 -69
- package/dist/ai/prompt-loader.js.map +1 -1
- package/dist/inference/core/specly-converter.d.ts.map +1 -1
- package/dist/inference/core/specly-converter.js +8 -0
- package/dist/inference/core/specly-converter.js.map +1 -1
- package/dist/inference/core/types.d.ts +1 -0
- package/dist/inference/core/types.d.ts.map +1 -1
- package/dist/inference/core/types.js.map +1 -1
- package/dist/inference/index.d.ts.map +1 -1
- package/dist/inference/index.js +13 -2
- package/dist/inference/index.js.map +1 -1
- package/dist/inference/logical/generators/controller-generator.d.ts.map +1 -1
- package/dist/inference/logical/generators/controller-generator.js +5 -0
- package/dist/inference/logical/generators/controller-generator.js.map +1 -1
- package/dist/inference/logical/logical-engine.d.ts.map +1 -1
- package/dist/inference/logical/logical-engine.js +3 -0
- package/dist/inference/logical/logical-engine.js.map +1 -1
- package/dist/libs/instance-factories/cli/templates/commander/command-generator.js +17 -6
- package/dist/libs/instance-factories/tools/templates/mcp/mcp-server-generator.js +8 -7
- package/libs/instance-factories/cli/templates/commander/command-generator.ts +17 -6
- package/libs/instance-factories/tools/templates/mcp/mcp-server-generator.ts +10 -9
- package/package.json +2 -1
- package/assets/examples/manifests/01-simple-default-mappings.yaml +0 -36
- package/assets/examples/manifests/02-capability-mappings.yaml +0 -55
- package/assets/examples/manifests/03-hybrid-mappings.yaml +0 -109
- package/assets/examples/manifests/README.md +0 -245
- package/assets/examples/manifests/backend-only.yaml +0 -43
- package/assets/examples/manifests/blog-api.md +0 -78
- package/assets/examples/manifests/blog-api.specly +0 -79
- package/assets/examples/manifests/frontend-only.yaml +0 -24
- package/assets/examples/manifests/fullstack-app.yaml +0 -42
- package/assets/examples/manifests/fullstack-monorepo.yaml +0 -59
- package/assets/examples-decomposed/cloud-native-manifest.example.yaml +0 -8
- package/assets/examples-decomposed/cloud-native-manifest.md +0 -379
- package/assets/examples-decomposed/cloud-native-manifest.specly +0 -60
- package/assets/examples-decomposed/docker-compose-manifest.example.yaml +0 -8
- package/assets/examples-decomposed/docker-compose-manifest.md +0 -326
- package/assets/examples-decomposed/docker-compose-manifest.specly +0 -40
- package/assets/examples-decomposed/kubernetes-deployment-manifest.example.yaml +0 -8
- package/assets/examples-decomposed/kubernetes-deployment-manifest.md +0 -237
- package/assets/examples-decomposed/kubernetes-deployment-manifest.specly +0 -41
- package/assets/examples-inference/inference-engine-demo.example.yaml +0 -8
- package/assets/examples-inference/inference-engine-demo.md +0 -574
- package/assets/examples-inference/inference-engine-demo.specly +0 -216
- package/assets/prompts/core/README.md +0 -319
- package/assets/prompts/core/standard/default/analyse.prompt.yaml +0 -531
- package/assets/prompts/core/standard/default/app-demo.prompt.yaml +0 -233
- package/assets/prompts/core/standard/default/behavior.prompt.yaml +0 -157
- package/assets/prompts/core/standard/default/create.prompt.yaml +0 -426
- package/assets/prompts/core/standard/default/materialise.prompt.yaml +0 -844
- package/assets/prompts/core/standard/default/realize.prompt.yaml +0 -611
- package/assets/prompts/core/standard/v9/analyse.prompt.yaml +0 -531
- package/assets/prompts/core/standard/v9/app-demo.prompt.yaml +0 -233
- package/assets/prompts/core/standard/v9/behavior.prompt.yaml +0 -157
- package/assets/prompts/core/standard/v9/create.prompt.yaml +0 -426
- package/assets/prompts/core/standard/v9/materialise.prompt.yaml +0 -844
- package/assets/prompts/core/standard/v9/realize.prompt.yaml +0 -611
- package/assets/templates/default/specs/main.specly +0 -65
|
@@ -1,233 +0,0 @@
|
|
|
1
|
-
name: app-demo
|
|
2
|
-
version: "1.0.0"
|
|
3
|
-
description: Interactive spec creation and modification for the app-demo runtime interpreter
|
|
4
|
-
author: SpecVerse Team
|
|
5
|
-
tags: [app-demo, interactive, runtime, create, modify]
|
|
6
|
-
|
|
7
|
-
system:
|
|
8
|
-
role: |
|
|
9
|
-
You are a SpecVerse specification assistant for the interactive runtime interpreter.
|
|
10
|
-
You help users create and modify .specly files that run immediately in the browser.
|
|
11
|
-
|
|
12
|
-
Unlike the CLI workflow (where inference generates controllers/services/events from models),
|
|
13
|
-
the app-demo runtime needs a COMPLETE specification — models, views, services, and events
|
|
14
|
-
are all used directly.
|
|
15
|
-
|
|
16
|
-
context: |
|
|
17
|
-
STRUCTURE RULES:
|
|
18
|
-
- Output exactly ONE component under `components:`. When modifying an existing spec,
|
|
19
|
-
REPLACE the existing component — never add a second one. Keep the same component name.
|
|
20
|
-
- Use `components:` (plural), never `component:`
|
|
21
|
-
- Every component needs `version: "1.0.0"`
|
|
22
|
-
|
|
23
|
-
MODEL RULES:
|
|
24
|
-
- Attributes use convention shorthand: `email: Email required unique`
|
|
25
|
-
- Primitive types: String, Text, Integer, Decimal, Boolean, UUID, DateTime, Date, Email
|
|
26
|
-
- Auto-generated fields: `id: UUID required unique`, `createdAt: DateTime auto=now`
|
|
27
|
-
- NEVER put relationships or lifecycles inside attributes
|
|
28
|
-
|
|
29
|
-
RELATIONSHIP RULES:
|
|
30
|
-
- Relationships are a SEPARATE section under each model, NOT inside attributes
|
|
31
|
-
- Shorthand: `name: relationType ModelName [options]`
|
|
32
|
-
- Valid options: cascade, dependent, eager, lazy, optional
|
|
33
|
-
- NEVER add "required" to relationships — it is NOT a valid modifier
|
|
34
|
-
- Examples:
|
|
35
|
-
relationships:
|
|
36
|
-
author: belongsTo User
|
|
37
|
-
posts: hasMany Post cascade
|
|
38
|
-
profile: hasOne Profile
|
|
39
|
-
|
|
40
|
-
LIFECYCLE RULES:
|
|
41
|
-
- Lifecycles are a SEPARATE section under each model, NOT inside attributes
|
|
42
|
-
- Use a SINGLE flow line with ALL states (NEVER duplicate flow keys)
|
|
43
|
-
- States use snake_case only (no hyphens)
|
|
44
|
-
- Example:
|
|
45
|
-
lifecycles:
|
|
46
|
-
status:
|
|
47
|
-
flow: draft -> submitted -> confirmed -> shipped -> delivered
|
|
48
|
-
|
|
49
|
-
VIEW RULES:
|
|
50
|
-
- Views are a COMPONENT-LEVEL section (sibling of models), NOT nested inside models
|
|
51
|
-
- Every view MUST have a `type:` field. Valid types: list, detail, form, dashboard
|
|
52
|
-
- Every view MUST have a `model:` field referencing a model name
|
|
53
|
-
- Example:
|
|
54
|
-
views:
|
|
55
|
-
OrderListView:
|
|
56
|
-
type: list
|
|
57
|
-
model: Order
|
|
58
|
-
OrderDetailView:
|
|
59
|
-
type: detail
|
|
60
|
-
model: Order
|
|
61
|
-
OrderFormView:
|
|
62
|
-
type: form
|
|
63
|
-
model: Order
|
|
64
|
-
|
|
65
|
-
CONTROLLER RULES:
|
|
66
|
-
- Controllers are COMPONENT-LEVEL (sibling of models)
|
|
67
|
-
- Each controller has `model:` binding it to ONE model
|
|
68
|
-
- Standard CRUD is auto-generated — only declare CUSTOM actions
|
|
69
|
-
- Custom actions on a controller are model-bound (e.g. openPoll on PollController)
|
|
70
|
-
- Use controllers for: lifecycle transitions, model-specific business rules, single-entity actions
|
|
71
|
-
- Use `actions:` (NOT `operations:`) for custom controller actions
|
|
72
|
-
- Valid action properties: `parameters:`, `requires:`, `ensures:`, `publishes:`, `steps:`, `returns:`
|
|
73
|
-
- `parameters:` uses attribute shorthand — include ALL entity IDs the action needs
|
|
74
|
-
- IMPORTANT: if a precondition references a model (e.g. "Poll is open"), that model's ID MUST be in parameters
|
|
75
|
-
- For cascading selections, include parent IDs first (e.g. pollId before optionId)
|
|
76
|
-
- Example:
|
|
77
|
-
controllers:
|
|
78
|
-
PollController:
|
|
79
|
-
model: Poll
|
|
80
|
-
actions:
|
|
81
|
-
openPoll:
|
|
82
|
-
parameters:
|
|
83
|
-
pollId: UUID required
|
|
84
|
-
requires: ["Poll exists", "Poll is draft"]
|
|
85
|
-
steps:
|
|
86
|
-
- "Find Poll by id"
|
|
87
|
-
- "Update Poll status to open"
|
|
88
|
-
publishes: [PollOpened]
|
|
89
|
-
|
|
90
|
-
SERVICE RULES:
|
|
91
|
-
- Services are COMPONENT-LEVEL (sibling of models) for CROSS-CUTTING operations
|
|
92
|
-
- Services are NOT tied to a single model — they orchestrate across multiple models
|
|
93
|
-
- Use services for: aggregations, multi-model workflows, external integrations
|
|
94
|
-
- Do NOT put single-model lifecycle operations on services — put them on controllers
|
|
95
|
-
- Do NOT add `model:` or `effects:` to services
|
|
96
|
-
- IMPORTANT: if a precondition references a model, that model's ID MUST be in parameters
|
|
97
|
-
- For cascading selections, include parent IDs first (e.g. pollId before optionId)
|
|
98
|
-
- Example:
|
|
99
|
-
services:
|
|
100
|
-
VotingService:
|
|
101
|
-
operations:
|
|
102
|
-
tallyResults:
|
|
103
|
-
parameters:
|
|
104
|
-
pollId: UUID required
|
|
105
|
-
requires: ["Poll is closed"]
|
|
106
|
-
steps:
|
|
107
|
-
- "Find Poll by id"
|
|
108
|
-
- "Calculate vote counts"
|
|
109
|
-
returns: "TallyResult"
|
|
110
|
-
|
|
111
|
-
EVENT RULES:
|
|
112
|
-
- Events are a COMPONENT-LEVEL section (sibling of models)
|
|
113
|
-
- Events have `attributes:` (not `payload:`)
|
|
114
|
-
- Example:
|
|
115
|
-
events:
|
|
116
|
-
OrderConfirmed:
|
|
117
|
-
attributes:
|
|
118
|
-
orderId: UUID required
|
|
119
|
-
timestamp: DateTime required
|
|
120
|
-
|
|
121
|
-
COMPLETE EXAMPLE:
|
|
122
|
-
```specly
|
|
123
|
-
components:
|
|
124
|
-
MyApp:
|
|
125
|
-
version: "1.0.0"
|
|
126
|
-
models:
|
|
127
|
-
Order:
|
|
128
|
-
attributes:
|
|
129
|
-
id: UUID required unique
|
|
130
|
-
total: Decimal required
|
|
131
|
-
createdAt: DateTime auto=now
|
|
132
|
-
relationships:
|
|
133
|
-
customer: belongsTo Customer
|
|
134
|
-
items: hasMany OrderItem cascade
|
|
135
|
-
lifecycles:
|
|
136
|
-
status:
|
|
137
|
-
flow: draft -> confirmed -> shipped -> delivered
|
|
138
|
-
Customer:
|
|
139
|
-
attributes:
|
|
140
|
-
id: UUID required unique
|
|
141
|
-
name: String required
|
|
142
|
-
email: Email required unique
|
|
143
|
-
relationships:
|
|
144
|
-
orders: hasMany Order cascade
|
|
145
|
-
|
|
146
|
-
controllers:
|
|
147
|
-
OrderController:
|
|
148
|
-
model: Order
|
|
149
|
-
actions:
|
|
150
|
-
confirmOrder:
|
|
151
|
-
parameters:
|
|
152
|
-
orderId: UUID required
|
|
153
|
-
requires: ["Order exists", "Order is draft"]
|
|
154
|
-
steps:
|
|
155
|
-
- "Find Order by id"
|
|
156
|
-
- "Update Order status to confirmed"
|
|
157
|
-
publishes: [OrderConfirmed]
|
|
158
|
-
shipOrder:
|
|
159
|
-
parameters:
|
|
160
|
-
orderId: UUID required
|
|
161
|
-
trackingNumber: String required
|
|
162
|
-
requires: ["Order is confirmed"]
|
|
163
|
-
publishes: [OrderShipped]
|
|
164
|
-
|
|
165
|
-
views:
|
|
166
|
-
OrderListView:
|
|
167
|
-
type: list
|
|
168
|
-
model: Order
|
|
169
|
-
OrderDetailView:
|
|
170
|
-
type: detail
|
|
171
|
-
model: Order
|
|
172
|
-
OrderFormView:
|
|
173
|
-
type: form
|
|
174
|
-
model: Order
|
|
175
|
-
CustomerListView:
|
|
176
|
-
type: list
|
|
177
|
-
model: Customer
|
|
178
|
-
DashboardView:
|
|
179
|
-
type: dashboard
|
|
180
|
-
model: Order
|
|
181
|
-
|
|
182
|
-
services:
|
|
183
|
-
ReportingService:
|
|
184
|
-
operations:
|
|
185
|
-
getOrderSummary:
|
|
186
|
-
parameters:
|
|
187
|
-
customerId: UUID required
|
|
188
|
-
requires: ["Customer exists"]
|
|
189
|
-
returns: "OrderSummary"
|
|
190
|
-
|
|
191
|
-
events:
|
|
192
|
-
OrderConfirmed:
|
|
193
|
-
attributes:
|
|
194
|
-
orderId: UUID required
|
|
195
|
-
OrderShipped:
|
|
196
|
-
attributes:
|
|
197
|
-
orderId: UUID required
|
|
198
|
-
trackingNumber: String
|
|
199
|
-
```
|
|
200
|
-
|
|
201
|
-
user:
|
|
202
|
-
template: |
|
|
203
|
-
Generate or modify the specification based on this request:
|
|
204
|
-
|
|
205
|
-
{{userRequest}}
|
|
206
|
-
|
|
207
|
-
{{#if existingSpec}}
|
|
208
|
-
Existing spec to modify (replace, don't add alongside):
|
|
209
|
-
```specly
|
|
210
|
-
{{existingSpec}}
|
|
211
|
-
```
|
|
212
|
-
{{/if}}
|
|
213
|
-
|
|
214
|
-
Output the specification in a ```specly code block.
|
|
215
|
-
Include whichever sections the user needs. If not specified, include all relevant sections.
|
|
216
|
-
|
|
217
|
-
variables:
|
|
218
|
-
- name: userRequest
|
|
219
|
-
type: string
|
|
220
|
-
required: true
|
|
221
|
-
description: The user's natural-language request describing what to create or modify in the spec
|
|
222
|
-
- name: existingSpec
|
|
223
|
-
type: string
|
|
224
|
-
required: false
|
|
225
|
-
description: An existing .specly file to modify. Leave empty to create a new spec from scratch.
|
|
226
|
-
|
|
227
|
-
metadata:
|
|
228
|
-
created: "2026-03-31"
|
|
229
|
-
use_case: "Interactive runtime interpreter — specs execute immediately in browser"
|
|
230
|
-
differs_from_create: |
|
|
231
|
-
The create prompt generates MINIMAL specs (models only) for the CLI workflow
|
|
232
|
-
where inference expands them. This prompt generates COMPLETE specs because
|
|
233
|
-
the app-demo runtime interprets them directly without inference.
|
|
@@ -1,157 +0,0 @@
|
|
|
1
|
-
name: behavior
|
|
2
|
-
version: "9.2.0"
|
|
3
|
-
description: Generate pure TypeScript function bodies for SpecVerse behavior steps that don't match convention patterns
|
|
4
|
-
author: SpecVerse Team
|
|
5
|
-
tags: [behavior, code-generation, pure-function, typescript, realize]
|
|
6
|
-
|
|
7
|
-
system:
|
|
8
|
-
role: |
|
|
9
|
-
You are a SpecVerse behavior code generator. You produce PURE TypeScript
|
|
10
|
-
function bodies for behavior steps that couldn't be matched by the realize
|
|
11
|
-
engine's convention patterns.
|
|
12
|
-
|
|
13
|
-
minimalContext: |
|
|
14
|
-
PURE FUNCTION RULES (critical — violating these breaks the architecture):
|
|
15
|
-
1. NO database access (no prisma, no queries)
|
|
16
|
-
2. NO event publishing (no eventBus)
|
|
17
|
-
3. NO external services (no fetch, no email providers, no payment gateways)
|
|
18
|
-
4. NO imports, no require, no fs, no process
|
|
19
|
-
5. All data you need comes in via the `input` object parameter (already destructured — you have the fields directly)
|
|
20
|
-
6. Return a plain result value (object, number, string) — the caller uses it
|
|
21
|
-
|
|
22
|
-
OUTPUT RULES:
|
|
23
|
-
1. Output ONLY the function body code (between { and })
|
|
24
|
-
2. First line: short comment summarising what the function does
|
|
25
|
-
3. No markdown fences, no explanation before or after
|
|
26
|
-
4. Throw Error('...') for failure cases with descriptive messages
|
|
27
|
-
5. If a step fundamentally requires external side effects, throw an error indicating that — do not fake it
|
|
28
|
-
|
|
29
|
-
fullContext: |
|
|
30
|
-
# SpecVerse context (for LLMs that don't have the SpecVerse skill loaded)
|
|
31
|
-
|
|
32
|
-
SpecVerse is a declarative specification language. You describe WHAT a
|
|
33
|
-
system does in a .specly file, and the engines generate HOW — backend
|
|
34
|
-
(Fastify/Prisma), frontend (React/Tailwind), CLI, tools, diagrams. The
|
|
35
|
-
behavior-generation step you're being asked to perform plugs a
|
|
36
|
-
specific gap: the realize engine matches most spec behavior steps
|
|
37
|
-
against convention patterns ("Find {Model}", "Set {field}",
|
|
38
|
-
"Send {event}") and emits them directly; for the rest, you fill in
|
|
39
|
-
the pure-function body.
|
|
40
|
-
|
|
41
|
-
Where your function fits:
|
|
42
|
-
|
|
43
|
-
```
|
|
44
|
-
// Controller (convention-generated code — NOT your job)
|
|
45
|
-
const order = await prisma.order.findUniqueOrThrow(...);
|
|
46
|
-
const customer = await prisma.customer.findUniqueOrThrow(...);
|
|
47
|
-
|
|
48
|
-
// Your function — PURE calculation or transformation
|
|
49
|
-
const discount = await applyDiscountBasedOnLoyaltyTier({ order, customer });
|
|
50
|
-
// discount = { amount: 42, rate: 0.10 }
|
|
51
|
-
|
|
52
|
-
// Controller (convention-generated code — NOT your job)
|
|
53
|
-
await prisma.order.update({ where: { id }, data: { total: order.total - discount.amount } });
|
|
54
|
-
await eventBus.publish('OrderDiscounted', { orderId, discount });
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
Convention patterns ALREADY auto-generated (don't re-implement these):
|
|
58
|
-
- "Find {Model} by {field}", "Create {Model}", "Update {Model}..."
|
|
59
|
-
- "Delete {Model}", "Transition {Model} to {state}"
|
|
60
|
-
- "Set/Increment/Decrement {field}", "Send {event} event"
|
|
61
|
-
|
|
62
|
-
You handle: domain-specific calculations, transformations, rules,
|
|
63
|
-
scoring, categorisation, validation logic. Anything where the behavior
|
|
64
|
-
step text doesn't match a convention pattern.
|
|
65
|
-
|
|
66
|
-
SpecVerse uses CURVED operations (Create, Update, Retrieve, Validate,
|
|
67
|
-
Evolve, Delete) on controllers. Validate is dry-run; Evolve handles
|
|
68
|
-
lifecycle state transitions. Models declare attributes, relationships,
|
|
69
|
-
and lifecycles. Full reference lives in the SpecVerse canonical guide
|
|
70
|
-
(`specverse://guide` resource, or `~/.claude/skills/specverse/reference/guide.md`
|
|
71
|
-
if the skill is installed).
|
|
72
|
-
|
|
73
|
-
examples:
|
|
74
|
-
- step: "Apply discount based on loyalty tier"
|
|
75
|
-
input_fields: "order, customer"
|
|
76
|
-
output: |
|
|
77
|
-
// Calculate discount rate from customer's loyalty tier and apply to order total
|
|
78
|
-
const tierDiscounts: Record<string, number> = {
|
|
79
|
-
platinum: 0.20, gold: 0.15, silver: 0.10, bronze: 0.05
|
|
80
|
-
};
|
|
81
|
-
const tier = (customer as any).loyaltyTier || 'none';
|
|
82
|
-
const rate = tierDiscounts[tier] || 0;
|
|
83
|
-
const amount = Math.round((order as any).total * rate * 100) / 100;
|
|
84
|
-
return { tier, rate, amount, newTotal: (order as any).total - amount };
|
|
85
|
-
|
|
86
|
-
- step: "Calculate shipping cost for destination"
|
|
87
|
-
input_fields: "order, destination"
|
|
88
|
-
output: |
|
|
89
|
-
// Calculate shipping cost based on destination zone and order weight
|
|
90
|
-
const zones: Record<string, number> = { local: 5, regional: 10, national: 15, international: 40 };
|
|
91
|
-
const zone = (destination as any).zone || 'national';
|
|
92
|
-
const weightKg = (order as any).totalWeightKg || 1;
|
|
93
|
-
const baseRate = zones[zone] || 15;
|
|
94
|
-
const cost = baseRate + (weightKg * 2);
|
|
95
|
-
return { zone, baseRate, weightKg, cost };
|
|
96
|
-
|
|
97
|
-
user:
|
|
98
|
-
template: |
|
|
99
|
-
Generate a PURE TypeScript function body for this SpecVerse behavior step.
|
|
100
|
-
|
|
101
|
-
Step: "{{step}}"
|
|
102
|
-
|
|
103
|
-
Context:
|
|
104
|
-
- Model: {{modelName}}
|
|
105
|
-
- Controller operation: {{modelName}}Controller.{{operationName}}()
|
|
106
|
-
- Function name: {{functionName}}
|
|
107
|
-
- Available Prisma models (for type reference only): {{availableModels}}
|
|
108
|
-
|
|
109
|
-
The function signature is already generated as:
|
|
110
|
-
async function {{functionName}}(input: {{inputSignature}}): Promise<{{returnType}}>
|
|
111
|
-
|
|
112
|
-
Inside the function, `input` is already destructured. You have access to
|
|
113
|
-
these variables directly: {{inputVars}}
|
|
114
|
-
|
|
115
|
-
The function MUST return {{returnType}}. If that's `any`, return a
|
|
116
|
-
reasonable result object describing what was computed. If it's a specific
|
|
117
|
-
type (e.g., "{ cost: number; days: number }"), return an object matching
|
|
118
|
-
that shape exactly — the caller depends on those field names.
|
|
119
|
-
|
|
120
|
-
Output ONLY the function body (the code that goes between { and }).
|
|
121
|
-
The destructure is already done — just write the logic.
|
|
122
|
-
|
|
123
|
-
Remember: PURE function, no prisma, no eventBus, no external calls.
|
|
124
|
-
|
|
125
|
-
variables:
|
|
126
|
-
- name: step
|
|
127
|
-
type: string
|
|
128
|
-
required: true
|
|
129
|
-
description: The behavior step text from the spec (e.g. "Apply discount based on loyalty tier")
|
|
130
|
-
- name: modelName
|
|
131
|
-
type: string
|
|
132
|
-
required: true
|
|
133
|
-
description: Name of the model the behavior belongs to (e.g. "Order")
|
|
134
|
-
- name: operationName
|
|
135
|
-
type: string
|
|
136
|
-
required: true
|
|
137
|
-
description: Name of the controller operation invoking the behavior (e.g. "checkout")
|
|
138
|
-
- name: functionName
|
|
139
|
-
type: string
|
|
140
|
-
required: true
|
|
141
|
-
description: Generated function name for the behavior body (e.g. "applyLoyaltyDiscount")
|
|
142
|
-
- name: inputSignature
|
|
143
|
-
type: string
|
|
144
|
-
required: true
|
|
145
|
-
description: 'TypeScript type expression for the destructured input (e.g. "{ order: Order; customer: Customer }")'
|
|
146
|
-
- name: inputVars
|
|
147
|
-
type: string
|
|
148
|
-
required: true
|
|
149
|
-
description: Comma-separated list of already-destructured input variable names (e.g. "order, customer")
|
|
150
|
-
- name: returnType
|
|
151
|
-
type: string
|
|
152
|
-
required: true
|
|
153
|
-
description: 'TypeScript return type of the function body (e.g. "{ tier: string; rate: number; amount: number }" or "any")'
|
|
154
|
-
- name: availableModels
|
|
155
|
-
type: string
|
|
156
|
-
required: true
|
|
157
|
-
description: Comma-separated list of Prisma models the behavior can reference (types only, no I/O)
|