@elitedcs/ghl-mcp 3.75.0 → 3.77.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/CHANGELOG.md +74 -1
- package/README.md +1 -1
- package/dist/index.js +14062 -6706
- package/guide/guide.html +59 -3
- package/package.json +1 -1
- package/templates/action-schemas.json +31 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,76 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.77.0 — the account you aimed at, even when two things run at once
|
|
4
|
+
|
|
5
|
+
`switch_location` used to change your API key first and your location a moment later.
|
|
6
|
+
A failed switch was already put back exactly as it was, so that part was never the
|
|
7
|
+
problem. The gap in between was: anything running alongside the switch could read the
|
|
8
|
+
**new account's key against the old account's id**. Claude issues tool calls in
|
|
9
|
+
parallel, so that window was real, not theoretical.
|
|
10
|
+
|
|
11
|
+
The switch now verifies the new account with a throwaway probe and touches nothing until
|
|
12
|
+
that succeeds. Key and location are then committed together with no pause between them,
|
|
13
|
+
so another call in flight sees either the old account or the new one, never half of each.
|
|
14
|
+
|
|
15
|
+
**`health_check` stopped quoting you a tool count you do not have.** On a licence that
|
|
16
|
+
does not include every module it reported the full registered number, which is not what
|
|
17
|
+
you can run. It now states the tools your licence includes, and says separately how many
|
|
18
|
+
are not included and answer with a notice.
|
|
19
|
+
|
|
20
|
+
Everything else added in this release sits outside the GHL Command licence and answers
|
|
21
|
+
with a notice, the same as the tools already in that position.
|
|
22
|
+
|
|
23
|
+
Counts unchanged: 248 tools, 51 modules, free tier 112.
|
|
24
|
+
|
|
25
|
+
## 3.76.0 — the workflows you cannot edit, and the audit that said they were fine
|
|
26
|
+
|
|
27
|
+
GoHighLevel tightened what its workflow builder will save. Workflows built from older
|
|
28
|
+
snapshots carry three things it now refuses: step ids that are not proper UUIDs, wait
|
|
29
|
+
units written in the singular ("1 day" instead of "days"), and an older shape of the
|
|
30
|
+
internal notification step. **They run exactly as before. What broke is editing them.**
|
|
31
|
+
Change one step, save, and GoHighLevel rejects the whole workflow, naming steps you never
|
|
32
|
+
touched, so the error looks unrelated to the edit that caused it.
|
|
33
|
+
|
|
34
|
+
Measured across 23 accounts on 2026-09-01: 486 workflows, 78 affected. On one account,
|
|
35
|
+
20 of 43, while `audit_workflows` reported `status: "ok"`. That was the part that was
|
|
36
|
+
ours: the audit reassured you about the exact thing biting you.
|
|
37
|
+
|
|
38
|
+
**The audit now tells you.** Four new warning categories, never errors, because the
|
|
39
|
+
workflows genuinely run. Two say *it runs, you cannot edit it* (`legacy_step_id`,
|
|
40
|
+
`legacy_wait_unit`). Two say the reverse, *it saves, it runs, and it silently does
|
|
41
|
+
nothing* (`missing_required_attribute`, `missing_integration`). The advice for each is
|
|
42
|
+
opposite, so they are named separately.
|
|
43
|
+
|
|
44
|
+
**We no longer write the ids GoHighLevel refuses.** A build session could hand the
|
|
45
|
+
builder a step id like `oc-wait2` and we would save a workflow this same product could
|
|
46
|
+
never update again. A new step now gets a proper id, and every reference to it follows:
|
|
47
|
+
next, previous, siblings, if/else branches and their condition rows, goal references,
|
|
48
|
+
goto targets, and the branch table a multi-path step (Find Opportunity, Facebook
|
|
49
|
+
messenger) keeps inside itself.
|
|
50
|
+
Singular wait units and the old notification shape are corrected silently on every
|
|
51
|
+
write, because neither changes an id.
|
|
52
|
+
|
|
53
|
+
**A step that is already saved is never re-minted, and this is the important part.** A
|
|
54
|
+
contact part-way through a workflow is bound to the step they are waiting on. Change or
|
|
55
|
+
remove that step and they are dropped mid-sequence, silently, and there is no way to put
|
|
56
|
+
them back where they were. So every workflow write now checks who is parked first and
|
|
57
|
+
refuses to remove or alter a step somebody is standing on, or a step that step depends
|
|
58
|
+
on. There is no force flag. Deleting a whole workflow is the one exception: it refuses,
|
|
59
|
+
tells you how many people are inside, and you re-run naming that number. A workflow
|
|
60
|
+
already carrying bad ids is repaired by choice, step by step, with the parked count in
|
|
61
|
+
hand; the guide in your library, "Workflows that will not save", walks through it and
|
|
62
|
+
leads with the part that costs leads.
|
|
63
|
+
|
|
64
|
+
**Install slots stopped burning on a machine that cannot write its device file.** A
|
|
65
|
+
relative or unwritable config directory, or a read-only volume, meant the last-resort
|
|
66
|
+
identity was random, and every restart claimed a fresh slot until the licence capped.
|
|
67
|
+
The headline version of this was fixed in 3.69.0; this closes the fallback behind it.
|
|
68
|
+
That identity is now deterministic (user, platform, architecture, deliberately not the
|
|
69
|
+
hostname, which changes on a new network). Stated cost: two machines that share all
|
|
70
|
+
three and also cannot write their device file share one slot, which errs in your favour.
|
|
71
|
+
|
|
72
|
+
Counts unchanged: 248 tools, 51 modules, free tier 112.
|
|
73
|
+
|
|
3
74
|
## 3.75.0 — what you install is only what you bought
|
|
4
75
|
|
|
5
76
|
Your install shipped a 49KB page for a product that is not on sale, and named that
|
|
@@ -26,7 +97,9 @@ with a browser window — pass `open=true` when you actually want it opened.
|
|
|
26
97
|
|
|
27
98
|
Counts unchanged: 248 tools, 51 modules, free tier 112.
|
|
28
99
|
|
|
29
|
-
##
|
|
100
|
+
## Also in 3.75.0 — your income is not all one shape
|
|
101
|
+
|
|
102
|
+
_This entry was headed "Unreleased" in the 3.75.0 package by mistake; the tools it describes shipped in 3.75.0._
|
|
30
103
|
|
|
31
104
|
Not part of the GHL Command licence; these tools answer with a notice. The commercial
|
|
32
105
|
record could hold exactly one kind of thing: a
|
package/README.md
CHANGED