@bimatrix-aud-platform/aud_mcp_server 1.1.45 → 1.1.46

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.
@@ -61,7 +61,7 @@ export function defaultStyle() {
61
61
  }
62
62
  export function defaultValidator() {
63
63
  return {
64
- ValidateType: 0,
64
+ ValidateType: 8, // enGridValidateType.None
65
65
  UseGuideMessage: false,
66
66
  GuideLanguageCode: "",
67
67
  UseErrorMessage: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bimatrix-aud-platform/aud_mcp_server",
3
- "version": "1.1.45",
3
+ "version": "1.1.46",
4
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",
@@ -691,13 +691,18 @@ export interface IGridColumn {
691
691
 
692
692
  /**
693
693
  * 유효성 검사 인터페이스
694
+ * @see src/enum/GridEnum.ts - enGridValidateType
695
+ * @see src/enum/GridEnum.ts - enGridIMEType
694
696
  */
695
697
  export interface IValidator {
696
- /** 유효성 검사 타입 (0: None, 1: Required, 2: Range 등) */
698
+ /**
699
+ * 유효성 검사 타입 (enGridValidateType)
700
+ * 0: Between, 1: NotBetween, 2: =, 3: <>, 4: >, 5: <, 6: >=, 7: <=, 8: None(기본값)
701
+ */
697
702
  ValidateType: number;
698
- /** 검사 값 1 (최소값 ) */
703
+ /** 검사 값 1 (Between/NotBetween의 최소값, 비교 연산의 기준값) */
699
704
  Value1?: number;
700
- /** 검사 값 2 (최대값) */
705
+ /** 검사 값 2 (Between/NotBetween의 최대값) */
701
706
  Value2?: number;
702
707
  /** 가이드 메시지 사용 여부 */
703
708
  UseGuideMessage: boolean;
@@ -707,7 +712,10 @@ export interface IValidator {
707
712
  UseErrorMessage: boolean;
708
713
  /** 오류 메시지 다국어 코드 */
709
714
  ErrorLanguageCode: string;
710
- /** IME 입력 모드 (0: Auto, 1: Native, 2: Alpha 등) */
715
+ /**
716
+ * IME 입력 모드 (enGridIMEType)
717
+ * 0: None, 1: English, 2: Default(자국어)
718
+ */
711
719
  IMEMode?: number;
712
720
  }
713
721
 
@@ -2937,9 +2945,9 @@ export interface IChartElement extends IBaseElement {
2937
2945
  DoRefresh: boolean;
2938
2946
  /** 파일 내보내기(다운로드) 가능 여부, 기본값: true */
2939
2947
  DoExport: boolean;
2940
- /** 연결된 피벗 그리드 컨트롤 이름 */
2948
+ /** 차트의 데이터 소스로 연결된 피벗 그리드 컨트롤 이름 */
2941
2949
  PivotGrid?: string;
2942
- /** 연결된 데이터 그리드 컨트롤 이름 */
2950
+ /** 차트의 데이터 소스로 연결된 데이터 그리드 컨트롤 이름 */
2943
2951
  DataGrid?: string;
2944
2952
  /** 차트 옵션 (@see ChartOptions.ts Serialize: ChartType, 폰트, 테두리, 팔레트, 툴팁 등) */
2945
2953
  Chart?: IChartOptions;
@@ -1698,17 +1698,17 @@
1698
1698
  },
1699
1699
  "Validator": {
1700
1700
  "type": "object",
1701
- "description": "유효성 검사 설정",
1701
+ "description": "유효성 검사 설정 (enGridValidateType 기반)",
1702
1702
  "required": ["ValidateType", "UseGuideMessage", "GuideLanguageCode", "UseErrorMessage", "ErrorLanguageCode"],
1703
1703
  "properties": {
1704
- "ValidateType": { "type": "integer", "description": "검사 타입 (0:None, 1:Required, 2:Range)" },
1705
- "Value1": { "type": "number" },
1706
- "Value2": { "type": "number" },
1704
+ "ValidateType": { "type": "integer", "enum": [0, 1, 2, 3, 4, 5, 6, 7, 8], "description": "검사 타입 (enGridValidateType) — 0:Between, 1:NotBetween, 2:=, 3:<>, 4:>, 5:<, 6:>=, 7:<=, 8:None(기본값)" },
1705
+ "Value1": { "type": "number", "description": "Between/NotBetween 최소값 또는 비교 기준값" },
1706
+ "Value2": { "type": "number", "description": "Between/NotBetween 최대값" },
1707
1707
  "UseGuideMessage": { "type": "boolean" },
1708
1708
  "GuideLanguageCode": { "type": "string" },
1709
1709
  "UseErrorMessage": { "type": "boolean" },
1710
1710
  "ErrorLanguageCode": { "type": "string" },
1711
- "IMEMode": { "type": "integer" }
1711
+ "IMEMode": { "type": "integer", "enum": [0, 1, 2], "description": "IME 모드 (enGridIMEType) — 0:None, 1:English, 2:Default(자국어)" }
1712
1712
  }
1713
1713
  },
1714
1714
  "MultiHeader": {