@elitedcs/ghl-mcp 3.43.0 → 3.44.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/dist/index.js +7 -2
- package/package.json +1 -1
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
|
+
version: "3.44.0",
|
|
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",
|
|
@@ -10798,9 +10798,14 @@ var workflowSchema = import_zod52.z.object({
|
|
|
10798
10798
|
actions: import_zod52.z.array(actionSchema).max(40)
|
|
10799
10799
|
// house rule: <=40 actions/workflow
|
|
10800
10800
|
});
|
|
10801
|
+
var HANDOFF_OWNER_LEGACY = {
|
|
10802
|
+
"JERRY-UI": "OPERATOR-UI",
|
|
10803
|
+
"JERRY-EXT": "OPERATOR-EXT",
|
|
10804
|
+
"SASHA": "TEAM"
|
|
10805
|
+
};
|
|
10801
10806
|
var handoffSchema = import_zod52.z.object({
|
|
10802
10807
|
ref: nsRef("handoff"),
|
|
10803
|
-
owner: import_zod52.z.enum(["JERRY-UI", "JERRY-EXT", "SASHA"]),
|
|
10808
|
+
owner: import_zod52.z.enum(["OPERATOR-UI", "OPERATOR-EXT", "TEAM", "JERRY-UI", "JERRY-EXT", "SASHA"]).transform((o) => HANDOFF_OWNER_LEGACY[o] ?? o),
|
|
10804
10809
|
title: import_zod52.z.string(),
|
|
10805
10810
|
trigger: import_zod52.z.string().optional(),
|
|
10806
10811
|
instruction: import_zod52.z.string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elitedcs/ghl-mcp",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.44.0",
|
|
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",
|