@lexq/cli 0.1.21 → 0.1.22
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.js +2 -2
- package/dist/mcp/register.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2139,7 +2139,7 @@ ${data.totalElements} total \xB7 page ${data.pageNo + 1}/${data.totalPages}`);
|
|
|
2139
2139
|
dedent9`
|
|
2140
2140
|
|
|
2141
2141
|
Returns the full execution detail including request facts, result traces,
|
|
2142
|
-
and decision traces (SELECTED,
|
|
2142
|
+
and decision traces (SELECTED, NO_MATCH, BLOCKED, etc.).
|
|
2143
2143
|
`
|
|
2144
2144
|
).action(async (opts) => {
|
|
2145
2145
|
try {
|
|
@@ -3450,7 +3450,7 @@ function registerAnalyticsTools(server, callApi) {
|
|
|
3450
3450
|
mutatedFacts — input facts changed by rule actions (e.g. DISCOUNT mutates payment_amount)
|
|
3451
3451
|
generatedVariables — new variables created by rules (e.g. last_discount_amount)
|
|
3452
3452
|
executionTraces — per-rule match status
|
|
3453
|
-
decisionTraces — per-rule decision (SELECTED /
|
|
3453
|
+
decisionTraces — per-rule decision (SELECTED / NO_MATCH / BLOCKED / etc.)
|
|
3454
3454
|
|
|
3455
3455
|
Example input: { "facts": { "payment_amount": 100000, "customer_tier": "VIP" } }
|
|
3456
3456
|
Always dry-run before publishing to validate rule behavior.`,
|
package/dist/mcp/register.js
CHANGED
|
@@ -619,7 +619,7 @@ function registerAnalyticsTools(server, callApi) {
|
|
|
619
619
|
mutatedFacts — input facts changed by rule actions (e.g. DISCOUNT mutates payment_amount)
|
|
620
620
|
generatedVariables — new variables created by rules (e.g. last_discount_amount)
|
|
621
621
|
executionTraces — per-rule match status
|
|
622
|
-
decisionTraces — per-rule decision (SELECTED /
|
|
622
|
+
decisionTraces — per-rule decision (SELECTED / NO_MATCH / BLOCKED / etc.)
|
|
623
623
|
|
|
624
624
|
Example input: { "facts": { "payment_amount": 100000, "customer_tier": "VIP" } }
|
|
625
625
|
Always dry-run before publishing to validate rule behavior.`,
|