schemeog-mcp 3.3.0 → 3.4.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.
Files changed (2) hide show
  1. package/index.js +5 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -429,6 +429,11 @@ function normalizeElements(elements) {
429
429
  }
430
430
  }
431
431
 
432
+ // ASCII Content — для type: "ascii" (ASCII-диаграмма внутри карточки)
433
+ if (el.asciiContent) {
434
+ fixed.asciiContent = el.asciiContent;
435
+ }
436
+
432
437
  // КРИТИЧНО: Извлекаем connections из элемента (локальный формат)
433
438
  // и конвертируем в формат сервера {from, to, label}
434
439
  if (el.connections && Array.isArray(el.connections)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "schemeog-mcp",
3
- "version": "3.3.0",
3
+ "version": "3.4.0",
4
4
  "description": "MCP Server for Diagrams.love - Create and manage visual diagrams and flowcharts with AI assistance",
5
5
  "type": "module",
6
6
  "main": "index.js",