funifier-mcp 0.3.19 → 0.3.20
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/CHANGELOG.md +19 -0
- package/datasource-funifier-docs/.coverage.json +1 -1
- package/datasource-funifier-docs/.search-index.json +59689 -0
- package/datasource-funifier-docs/.skills-map.json +150 -0
- package/datasource-funifier-docs/knowledge/guides/trigger-examples.md +6 -6
- package/datasource-funifier-docs/knowledge/guides/triggers-guide.md +74 -11
- package/datasource-funifier-docs/knowledge/modules/trigger.md +29 -1
- package/dist/mcp/bundle.js +106 -106
- package/package.json +1 -1
- package/skills/funifier/references/create-trigger.md +28 -16
- package/skills/funifier/references/debug.md +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to `funifier-mcp` are documented here. Format loosely follows
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/); versions follow semver.
|
|
5
5
|
|
|
6
|
+
## [0.3.20]
|
|
7
|
+
|
|
8
|
+
Documentation of trigger flow-interruption (strict mode) in the Funifier knowledge base.
|
|
9
|
+
|
|
10
|
+
### Documentation
|
|
11
|
+
- **Document `TriggerManager.executeStrict` (strict mode).** `DatabaseRest.insert/update/delete`
|
|
12
|
+
run `before_create`/`before_update`/`before_delete` triggers on database collections
|
|
13
|
+
(`/v3/database/{collection}`) in strict mode: an exception in the script aborts the
|
|
14
|
+
operation (document not written/removed; API responds **HTTP 500** with
|
|
15
|
+
`{ "message", "statusCode": 500 }`). Every other path (player/action/swap/quiz/bulk/`after_*`)
|
|
16
|
+
still uses plain `execute()`, which swallows exceptions and persists the document.
|
|
17
|
+
- **Mode A (strict `throw`) vs Mode B (`after_create` + delete).** Rewrote
|
|
18
|
+
`guides/triggers-guide.md` §8 and updated `guides/trigger-examples.md` and
|
|
19
|
+
`modules/trigger.md` (new §2.5.1 `execute` vs `executeStrict`) to distinguish the two
|
|
20
|
+
rejection patterns and when each applies.
|
|
21
|
+
- **Version-dependent feature + detection probe.** Strict mode was added in a recent Engine
|
|
22
|
+
update and is not on every instance; docs and the `funifier-create-trigger` skill now
|
|
23
|
+
include a disposable-trigger probe to detect support before relying on it.
|
|
24
|
+
|
|
6
25
|
## [0.3.19]
|
|
7
26
|
|
|
8
27
|
Implementation of the prioritized improvements from the MCP implementation review
|