@elitedcs/ghl-mcp 3.34.4 → 3.34.6
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 +20 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.34.6 — Revert v3.34.5 (internal_update_opportunity save-abort regression)
|
|
4
|
+
|
|
5
|
+
- **Reverts v3.34.5.** That release made `validateActionChain` throw on *every*
|
|
6
|
+
`internal_update_opportunity` action — including ones round-tripped from
|
|
7
|
+
`get_workflow_full` — unless `__customInputFields__` carried both a `pipelineId`
|
|
8
|
+
and a `pipelineStageId` entry, and it removed v3.34.4's id-based pass-through for
|
|
9
|
+
already-saved nodes. Because that check runs at the top of `buildActionChain`,
|
|
10
|
+
one such node aborted the **entire** `update_workflow_actions` save. Re-saving any
|
|
11
|
+
workflow that already contained an "Update Opportunity" / move-to-stage action
|
|
12
|
+
could hard-fail. The v3.34.5 normalizer was also not shape-preserving for a real
|
|
13
|
+
round-tripped node (it dropped extra per-field keys), risking corruption on
|
|
14
|
+
re-save. An independent (non-Claude) audit confirmed both failure modes.
|
|
15
|
+
- **v3.34.4 is retained** — its merge-tag blank-render audit and the honest
|
|
16
|
+
Update-Opportunity guard were audited clean. Creating an
|
|
17
|
+
`internal_update_opportunity` from scratch is guarded again with the clear "build
|
|
18
|
+
that one step in the GHL UI" message; a round-tripped one passes through untouched.
|
|
19
|
+
- Net effect: restores the proven v3.34.3 / v3.34.4 save behavior. A correct
|
|
20
|
+
from-scratch builder for Update-Opportunity will be re-attempted separately, with
|
|
21
|
+
live verification, before any future republish.
|
|
22
|
+
|
|
3
23
|
## 3.34.4 — Audit catches blank-render merge tags + honest guard on Update-Opportunity
|
|
4
24
|
|
|
5
25
|
- **`audit_workflows` / `validate_workflow` now flag dead `{{contact.X}}` merge tags.**
|
package/dist/index.js
CHANGED
|
@@ -31,7 +31,7 @@ var require_package = __commonJS({
|
|
|
31
31
|
"package.json"(exports2, module2) {
|
|
32
32
|
module2.exports = {
|
|
33
33
|
name: "@elitedcs/ghl-mcp",
|
|
34
|
-
version: "3.34.
|
|
34
|
+
version: "3.34.6",
|
|
35
35
|
mcpName: "io.github.drjerryrelth/ghl-command",
|
|
36
36
|
description: "GoHighLevel MCP Server for Claude. 218 tools \u2014 full CRM, automation, marketing control, account-wide workflow audit, and the only programmatic GHL workflow builder, now multi-tenant across client accounts.",
|
|
37
37
|
main: "dist/index.js",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elitedcs/ghl-mcp",
|
|
3
|
-
"version": "3.34.
|
|
3
|
+
"version": "3.34.6",
|
|
4
4
|
"mcpName": "io.github.drjerryrelth/ghl-command",
|
|
5
5
|
"description": "GoHighLevel MCP Server for Claude. 218 tools — full CRM, automation, marketing control, account-wide workflow audit, and the only programmatic GHL workflow builder, now multi-tenant across client accounts.",
|
|
6
6
|
"main": "dist/index.js",
|