@bimatrix-aud-platform/aud_mcp_server 1.1.22 → 1.1.23

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.
@@ -471,5 +471,15 @@ function walkElements(elements, callback, parentPath = "") {
471
471
  if (el.ChildElements && Array.isArray(el.ChildElements)) {
472
472
  walkElements(el.ChildElements, callback, path);
473
473
  }
474
+ else if (el.Type === "Tab" && el.TabItems && Array.isArray(el.TabItems)) {
475
+ // 탭이면 TabItems(탭 페이지) > Controls(자식 컨트롤) 재귀 순회
476
+ for (let i = 0; i < el.TabItems.length; i++) {
477
+ const tabPage = el.TabItems[i];
478
+ const tabPagePath = `${path} > TabItem[${i}](${tabPage.Name || "?"})`;
479
+ if (tabPage.Controls && Array.isArray(tabPage.Controls)) {
480
+ walkElements(tabPage.Controls, callback, tabPagePath);
481
+ }
482
+ }
483
+ }
474
484
  }
475
485
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bimatrix-aud-platform/aud_mcp_server",
3
- "version": "1.1.22",
4
- "description": "MCP Server for i-AUD MTSD document validation and generation",
3
+ "version": "1.1.23",
4
+ "description": "MCP Server for i-AUD MTSD document validation, generation, schema querying, control info extraction, and database operations",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
@@ -24,6 +24,8 @@
24
24
  "mtsd",
25
25
  "i-aud",
26
26
  "validator",
27
+ "generator",
28
+ "database",
27
29
  "model-context-protocol",
28
30
  "claude"
29
31
  ],
@@ -2483,7 +2483,7 @@ export interface IMaskTextBoxElement extends IBaseElement {
2483
2483
  /** 텍스트 값 */
2484
2484
  Text?: string;
2485
2485
  /** 입력 값 */
2486
- Value?: any;
2486
+ Value?: string;
2487
2487
  /** 데이터 바인딩 정보 */
2488
2488
  BindingInfo?: IBindingInfo;
2489
2489
  /** MX-Grid와의 바인딩 정보 */
@@ -619,7 +619,7 @@
619
619
  "Formula": { "type": "string", "description": "동적 수식" },
620
620
  "IsReadOnly": { "type": "boolean", "description": "읽기 전용" },
621
621
  "Text": { "type": "string", "description": "텍스트 값" },
622
- "Value": { "description": "입력 값" },
622
+ "Value": { "type": "string", "description": "입력 값" },
623
623
  "BindingInfo": { "$ref": "#/$defs/BindingInfo", "description": "데이터 바인딩 정보" },
624
624
  "MxBinding": { "type": "string", "description": "MX-Grid 바인딩" }
625
625
  }