@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.js
CHANGED
|
@@ -3365,6 +3365,10 @@ var initCreateVariableTool = () => {
|
|
|
3365
3365
|
name: "create-global-variable",
|
|
3366
3366
|
schema: InputSchema,
|
|
3367
3367
|
outputSchema: OutputSchema,
|
|
3368
|
+
modelPreferences: {
|
|
3369
|
+
intelligencePriority: 0.7,
|
|
3370
|
+
speedPriority: 0.7
|
|
3371
|
+
},
|
|
3368
3372
|
description: `Create a new global variable
|
|
3369
3373
|
## When to use this tool:
|
|
3370
3374
|
- When a user requests to create a new global variable in the Elementor editor.
|
|
@@ -3425,6 +3429,10 @@ var initDeleteVariableTool = () => {
|
|
|
3425
3429
|
outputSchema: {
|
|
3426
3430
|
status: import_schema4.z.enum(["ok", "error"]).describe("The status of the operation")
|
|
3427
3431
|
},
|
|
3432
|
+
modelPreferences: {
|
|
3433
|
+
intelligencePriority: 0.7,
|
|
3434
|
+
speedPriority: 0.8
|
|
3435
|
+
},
|
|
3428
3436
|
description: `Delete an existing global variable
|
|
3429
3437
|
|
|
3430
3438
|
## When to use this tool:
|
|
@@ -3480,6 +3488,10 @@ var initUpdateVariableTool = () => {
|
|
|
3480
3488
|
message: import_schema5.z.string().optional().describe("Optional message providing additional information about the operation")
|
|
3481
3489
|
},
|
|
3482
3490
|
name: "update-global-variable",
|
|
3491
|
+
modelPreferences: {
|
|
3492
|
+
intelligencePriority: 0.75,
|
|
3493
|
+
speedPriority: 0.7
|
|
3494
|
+
},
|
|
3483
3495
|
description: `Update an existing global variable
|
|
3484
3496
|
|
|
3485
3497
|
## When to use this tool:
|