@elementor/editor-variables 3.35.0-363 → 3.35.0-364
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 +12 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +14 -14
- package/src/mcp/create-variable-tool.ts +4 -0
- package/src/mcp/delete-variable-tool.ts +4 -0
- package/src/mcp/list-variables-tool.ts +9 -5
- package/src/mcp/update-variable-tool.ts +4 -0
package/dist/index.mjs
CHANGED
|
@@ -3368,6 +3368,10 @@ var initCreateVariableTool = () => {
|
|
|
3368
3368
|
name: "create-global-variable",
|
|
3369
3369
|
schema: InputSchema,
|
|
3370
3370
|
outputSchema: OutputSchema,
|
|
3371
|
+
modelPreferences: {
|
|
3372
|
+
intelligencePriority: 0.7,
|
|
3373
|
+
speedPriority: 0.7
|
|
3374
|
+
},
|
|
3371
3375
|
description: `Create a new global variable
|
|
3372
3376
|
## When to use this tool:
|
|
3373
3377
|
- When a user requests to create a new global variable in the Elementor editor.
|
|
@@ -3428,6 +3432,10 @@ var initDeleteVariableTool = () => {
|
|
|
3428
3432
|
outputSchema: {
|
|
3429
3433
|
status: z4.enum(["ok", "error"]).describe("The status of the operation")
|
|
3430
3434
|
},
|
|
3435
|
+
modelPreferences: {
|
|
3436
|
+
intelligencePriority: 0.7,
|
|
3437
|
+
speedPriority: 0.8
|
|
3438
|
+
},
|
|
3431
3439
|
description: `Delete an existing global variable
|
|
3432
3440
|
|
|
3433
3441
|
## When to use this tool:
|
|
@@ -3483,6 +3491,10 @@ var initUpdateVariableTool = () => {
|
|
|
3483
3491
|
message: z5.string().optional().describe("Optional message providing additional information about the operation")
|
|
3484
3492
|
},
|
|
3485
3493
|
name: "update-global-variable",
|
|
3494
|
+
modelPreferences: {
|
|
3495
|
+
intelligencePriority: 0.75,
|
|
3496
|
+
speedPriority: 0.7
|
|
3497
|
+
},
|
|
3486
3498
|
description: `Update an existing global variable
|
|
3487
3499
|
|
|
3488
3500
|
## When to use this tool:
|