@elitedcs/ghl-mcp 3.72.1 → 3.72.3
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 +51 -0
- package/dist/index.js +11140 -8686
- package/guide/guide.html +1 -1
- package/package.json +3 -1
- package/templates/action-schemas.json +3 -3
- package/templates/clinic-medspa.json +1 -1
- package/templates/external-funnel/README.md +5 -2
- package/templates/external-funnel/wrangler.toml.example +40 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,56 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.72.3 — the waits in a built account can actually go live
|
|
4
|
+
|
|
5
|
+
Blueprint builds a client's account and then asks whether to publish the workflows or
|
|
6
|
+
leave them as drafts for review. Say publish, and the ones with a wait of a day or more
|
|
7
|
+
were refused by GoHighLevel and stayed as drafts. The build still reported them as
|
|
8
|
+
created, so the account looked finished when the follow-up sequences were not running.
|
|
9
|
+
|
|
10
|
+
The cause was one word. GoHighLevel takes `minutes` and `hour`, but for days it wants
|
|
11
|
+
`days`, and we were sending `day`. It is not a rule you can guess: a workflow that is
|
|
12
|
+
nothing but a wait accepts the singular quite happily, which is why this went unnoticed.
|
|
13
|
+
It only fails on the shape a real nurture has, a message followed by a wait, which is
|
|
14
|
+
every follow-up sequence the presets build. **123 of the waits in the shipped presets
|
|
15
|
+
were affected.**
|
|
16
|
+
|
|
17
|
+
Workflows already in an account are untouched and keep working; this was only ever about
|
|
18
|
+
newly built ones.
|
|
19
|
+
|
|
20
|
+
**The second half is the reporting.** A workflow that could not be published was still
|
|
21
|
+
counted as built, and the summary read the same as a run where nobody asked to publish at
|
|
22
|
+
all: it suggested turning on publishing, to someone who had just turned it on. The real
|
|
23
|
+
reason sat further down the report where nobody looks first. A build now says plainly
|
|
24
|
+
which workflows could not be published, what GoHighLevel said about each, that they are
|
|
25
|
+
sitting as drafts and not running, and that repeating the build will not help.
|
|
26
|
+
|
|
27
|
+
## 3.72.2 — a form you read back can be saved again
|
|
28
|
+
|
|
29
|
+
A subscriber tried to edit one of her forms the documented way: read it with
|
|
30
|
+
`get_form_full`, change one thing, hand it back to `update_form`. It was refused. She
|
|
31
|
+
tried again from an exact copy of the payload. Refused again. Then she found it herself,
|
|
32
|
+
stripped one key by hand, and the identical edit saved first time.
|
|
33
|
+
|
|
34
|
+
She was right. GoHighLevel's form builder writes every custom field with the field's id
|
|
35
|
+
under two spellings, `Id` and `id`, holding the same value. On her form 42 of 58 fields
|
|
36
|
+
carried the pair; standard fields like name and email never do. Sitting in GoHighLevel it
|
|
37
|
+
is harmless. The trouble starts on the way back out, because editing a form means
|
|
38
|
+
repeating the whole document, and a document that says the same id twice per field, once
|
|
39
|
+
capitalised and once not, is asking to be repeated wrongly.
|
|
40
|
+
|
|
41
|
+
**`get_form_full` now returns one of them, and `update_form` accepts either.** A key is
|
|
42
|
+
dropped only when another key beside it means the same thing in a different case and
|
|
43
|
+
holds exactly the same value, so nothing is lost: the value is still there under the
|
|
44
|
+
name that survives. Where two such keys hold *different* values, both are kept, because
|
|
45
|
+
that is real information and picking one would be a guess. Forms built by the intake
|
|
46
|
+
installer are unaffected; they save by a different route and were never part of this.
|
|
47
|
+
|
|
48
|
+
If you have been working around this by hand, you can stop. Proven before release
|
|
49
|
+
against a real form on a live account: saved with both spellings, saved again with one,
|
|
50
|
+
edit kept, every custom field intact.
|
|
51
|
+
|
|
52
|
+
Counts unchanged: 247 tools, 51 modules, free tier 111.
|
|
53
|
+
|
|
3
54
|
## 3.72.1 — a client's work stops shipping in the package
|
|
4
55
|
|
|
5
56
|
An audit of the published 3.72.0 tarball found somebody else's proprietary material
|