@elementor/editor-canvas 4.0.0-549 → 4.0.0-551

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 CHANGED
@@ -3460,7 +3460,8 @@ var outputSchema = {
3460
3460
  errors: import_schema.z.string().describe("Error message if the composition building failed").optional(),
3461
3461
  xmlStructure: import_schema.z.string().describe(
3462
3462
  "The built XML structure as a string. Must use this XML after completion of building the composition, it contains real IDs."
3463
- ).optional()
3463
+ ).optional(),
3464
+ llm_instructions: import_schema.z.string().describe("Instructions what to do next, Important to follow these instructions!")
3464
3465
  };
3465
3466
 
3466
3467
  // src/mcp/tools/build-composition/tool.ts
package/dist/index.mjs CHANGED
@@ -3442,7 +3442,8 @@ var outputSchema = {
3442
3442
  errors: z.string().describe("Error message if the composition building failed").optional(),
3443
3443
  xmlStructure: z.string().describe(
3444
3444
  "The built XML structure as a string. Must use this XML after completion of building the composition, it contains real IDs."
3445
- ).optional()
3445
+ ).optional(),
3446
+ llm_instructions: z.string().describe("Instructions what to do next, Important to follow these instructions!")
3446
3447
  };
3447
3448
 
3448
3449
  // src/mcp/tools/build-composition/tool.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@elementor/editor-canvas",
3
3
  "description": "Elementor Editor Canvas",
4
- "version": "4.0.0-549",
4
+ "version": "4.0.0-551",
5
5
  "private": false,
6
6
  "author": "Elementor Team",
7
7
  "homepage": "https://elementor.com/",
@@ -37,24 +37,24 @@
37
37
  "react-dom": "^18.3.1"
38
38
  },
39
39
  "dependencies": {
40
- "@elementor/editor": "4.0.0-549",
41
- "@elementor/editor-controls": "4.0.0-549",
42
- "@elementor/editor-documents": "4.0.0-549",
43
- "@elementor/editor-elements": "4.0.0-549",
44
- "@elementor/editor-interactions": "4.0.0-549",
45
- "@elementor/editor-mcp": "4.0.0-549",
46
- "@elementor/editor-notifications": "4.0.0-549",
47
- "@elementor/editor-props": "4.0.0-549",
48
- "@elementor/editor-responsive": "4.0.0-549",
49
- "@elementor/editor-styles": "4.0.0-549",
50
- "@elementor/editor-styles-repository": "4.0.0-549",
51
- "@elementor/editor-ui": "4.0.0-549",
52
- "@elementor/editor-v1-adapters": "4.0.0-549",
53
- "@elementor/schema": "4.0.0-549",
54
- "@elementor/twing": "4.0.0-549",
40
+ "@elementor/editor": "4.0.0-551",
41
+ "@elementor/editor-controls": "4.0.0-551",
42
+ "@elementor/editor-documents": "4.0.0-551",
43
+ "@elementor/editor-elements": "4.0.0-551",
44
+ "@elementor/editor-interactions": "4.0.0-551",
45
+ "@elementor/editor-mcp": "4.0.0-551",
46
+ "@elementor/editor-notifications": "4.0.0-551",
47
+ "@elementor/editor-props": "4.0.0-551",
48
+ "@elementor/editor-responsive": "4.0.0-551",
49
+ "@elementor/editor-styles": "4.0.0-551",
50
+ "@elementor/editor-styles-repository": "4.0.0-551",
51
+ "@elementor/editor-ui": "4.0.0-551",
52
+ "@elementor/editor-v1-adapters": "4.0.0-551",
53
+ "@elementor/schema": "4.0.0-551",
54
+ "@elementor/twing": "4.0.0-551",
55
55
  "@elementor/ui": "1.36.17",
56
- "@elementor/utils": "4.0.0-549",
57
- "@elementor/wp-media": "4.0.0-549",
56
+ "@elementor/utils": "4.0.0-551",
57
+ "@elementor/wp-media": "4.0.0-551",
58
58
  "@floating-ui/react": "^0.27.5",
59
59
  "@wordpress/i18n": "^5.13.0"
60
60
  },
@@ -35,4 +35,5 @@ export const outputSchema = {
35
35
  'The built XML structure as a string. Must use this XML after completion of building the composition, it contains real IDs.'
36
36
  )
37
37
  .optional(),
38
+ llm_instructions: z.string().describe( 'Instructions what to do next, Important to follow these instructions!' ),
38
39
  };