@bimatrix-aud-platform/aud_mcp_server 1.1.20 → 1.1.22

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.
@@ -431,10 +431,29 @@ function fixEnumAndRangeValues(doc, datas, fixes) {
431
431
  if (fields && Array.isArray(fields)) {
432
432
  for (const field of fields) {
433
433
  const fPath = `${path}.Fields["${field.Key || "?"}"]`;
434
- fixIntRange(field, "Category", 0, 4, 1, fPath, fixes); // 기본값: 1(Dimension)
435
- fixIntRange(field, "Area", 0, 4, 3, fPath, fixes); // 기본값: 3(Filter)
436
- fixIntRange(field, "SortType", 0, 5, 0, fPath, fixes); // 기본값: 0(None)
437
- fixIntRange(field, "CreateType", 0, 3, 0, fPath, fixes); // 기본값: 0(Default)
434
+ fixIntRange(field, "Category", 0, 4, 1, fPath, fixes); // 0:Default, 1:Dimension, 2:Measure, 3:Attribute, 4:Period
435
+ fixIntRange(field, "Area", 0, 4, 3, fPath, fixes); // 0:Hidden, 1:Row, 2:Column, 3:Filter, 4:Data
436
+ // 0:None, 1:Sum, 2:Min, 3:Max, 4:Average, 5:Count, 9:Calculate, 13:DistinctCount, 14:Text
437
+ fixIntEnum(field, "SummaryType", [0, 1, 2, 3, 4, 5, 9, 13, 14], 0, fPath, fixes);
438
+ fixIntRange(field, "TotalSummaryType", 0, 5, 0, fPath, fixes); // 0:None, 1:SumOfChild, 2:MinOfChild, 3:MaxOfChild, 4:AverageOfChild, 5:CountOfChild
439
+ // 0:None, 1:Absolute, 2:Percent, 3:PercentOfColumn, 4:PercentOfRow, 5:SubTotalPercentOfColumn, 6:SubTotalPercentOfRow, 7~12:Running*, 15:FirstPeriod, 16:LastPeriod, 17:PeriodIncrease, 18:PeriodIncreaseRate
440
+ fixIntEnum(field, "SummaryVariation", [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 17, 18], 0, fPath, fixes);
441
+ fixIntRange(field, "GroupByType", 0, 8, 0, fPath, fixes); // 0:Auto ~ 8:AlwaysGroupBy
442
+ fixIntRange(field, "SortType", 0, 5, 0, fPath, fixes); // 0:None, 1:Asc, 2:Desc, 3:Custom, 4:MeasureAsc, 5:MeasureDesc
443
+ fixIntRange(field, "CreateType", 0, 3, 0, fPath, fixes); // 0:Default, 1:Measures, 2:DimensionGroup, 3:HierarchyGroup
444
+ fixIntRange(field, "KeyType", 0, 3, 2, fPath, fixes); // 0:None, 1:NotNull, 2:NullAble, 3:Primary
445
+ fixIntRange(field, "DataType", 0, 5, 0, fPath, fixes); // 0:Numeric, 1:String, 2:DateTime8, 3:DateTimeNow, 4:UserCode, 5:CLOB
446
+ fixIntRange(field, "SaveMode", 0, 2, 0, fPath, fixes); // 0:All, 1:InsertOnly, 2:UpdateOnly
447
+ // ---- FilterInfo (IOlapFilter) ----
448
+ const fi = field.FilterInfo;
449
+ if (fi && typeof fi === "object") {
450
+ const fiPath = `${fPath}.FilterInfo`;
451
+ fixIntRange(fi, "FilterType", 0, 7, 0, fiPath, fixes); // 0:In, 1:NotIn, 2:Like, 3:NotLike, 4:BetWeen, 5:StartWith, 6:EndWith, 7:Equals
452
+ fixIntRange(fi, "FilterKind", 0, 1, 0, fiPath, fixes); // 0:Dimension, 1:Measure
453
+ fixIntRange(fi, "MeasureFilterTypeA", 0, 5, 0, fiPath, fixes); // 0:Equals, 1:Greater, 2:GreaterOrEquals, 3:Less, 4:LessOrEquals, 5:NotEquals
454
+ fixIntRange(fi, "MeasureFilterTypeB", 0, 5, 0, fiPath, fixes); // 0:Equals, 1:Greater, 2:GreaterOrEquals, 3:Less, 4:LessOrEquals, 5:NotEquals
455
+ fixIntRange(fi, "MeasureAndOrOperator", 0, 2, 2, fiPath, fixes); // 0:None, 1:Or, 2:And (기본값: 2)
456
+ }
438
457
  }
439
458
  }
440
459
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bimatrix-aud-platform/aud_mcp_server",
3
- "version": "1.1.20",
3
+ "version": "1.1.22",
4
4
  "description": "MCP Server for i-AUD MTSD document validation and generation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1435,15 +1435,15 @@ export interface IOlapField {
1435
1435
  ToolTipText?: string;
1436
1436
  /** 필드 카테고리 (0: Default, 1: Dimension, 2: Measure, 3: Attribute, 4: Period) */
1437
1437
  Category: number;
1438
- /** 필드 영역 (0: None, 1: Row, 2: Column, 3: Data, 4: Filter) */
1438
+ /** 필드 영역 (0:Hidden, 1:Row, 2:Column, 3:Filter, 4:Data) */
1439
1439
  Area: number;
1440
- /** 요약 유형 (0: Sum, 1: Count, 2: Average, 3: Min, 4: Max ) */
1440
+ /** 요약 유형 (0 : None, 1: Sum, 2:Min, 3:Max, 4:Average, 5:Count, 9:Calculate, 13:DistinctCount, 14:Text) */
1441
1441
  SummaryType: number;
1442
- /** 합계 요약 유형 */
1442
+ /** 합계 요약 유형 (0:None, 1:SumOfChild, 2:MinOfChild, 3:MaxOfChild, 4:AverageOfChild, 5:CountOfChild) */
1443
1443
  TotalSummaryType?: number;
1444
- /** 요약 변형 (0: None, 1: PercentOfGrandTotal ) */
1444
+ /** 요약 변형 (0:None, 1:Absolute, 2:Percent, 3:PercentOfColumn, 4:PercentOfRow, 5:SubTotalPercentOfColumn, 6:SubTotalPercentOfRow, 7:RunningAverage, 8:RunningCount, 9:RunningMax, 10:RunningMin, 11:RunningProduct, 12:RunningSum, 15:FirstPeriod, 16:LastPeriod, 17:PeriodIncrease, 18:PeriodIncreaseRate) */
1445
1445
  SummaryVariation?: number;
1446
- /** 그룹 함수 유형 */
1446
+ /** 그룹 함수 유형 (0:Auto, 1:Sum, 2:Count, 3:Max, 4:Min, 5:Average, 6:DistinctCount, 7:None, 8:AlwaysGroupBy) */
1447
1447
  GroupByType?: number;
1448
1448
  /** 표시 포맷 */
1449
1449
  Format?: string;
@@ -1459,7 +1459,7 @@ export interface IOlapField {
1459
1459
  Unit?: string;
1460
1460
  /** 생성 유형 (0:Default, 1:Measures(특수필드로 다른 Measure필드의 집합, Files내 1개만 자동 생성됨), 2:DimensionGroup, 3:HierarchyGroup) */
1461
1461
  CreateType?: number;
1462
- /** 정렬 유형 (0: None, 1: Asc, 2: Desc) */
1462
+ /** 정렬 유형 (0:None, 1:Asc, 2:Desc, 3:Custom, 4:MeasureAsc, 5:MeasureDesc) */
1463
1463
  SortType?: number;
1464
1464
  /** 측정값 정렬 기준 필드 */
1465
1465
  MeasureSortField?: string;
@@ -1479,11 +1479,11 @@ export interface IOlapField {
1479
1479
  AllowColumn?: boolean;
1480
1480
  /** 데이터 허용 여부 */
1481
1481
  AllowData?: boolean;
1482
- /** 키 유형 */
1482
+ /** 키 유형 (0:None, 1:NotNull, 2:NullAble, 3:Primary) */
1483
1483
  KeyType?: number;
1484
- /** 데이터 유형 */
1484
+ /** 데이터 유형 (0:Numeric, 1:String, 2:DateTime8, 3:DateTimeNow, 4:UserCode, 5:CLOB) */
1485
1485
  DataType?: number;
1486
- /** 저장 모드 */
1486
+ /** 저장 모드 (0:All, 1:InsertOnly, 2:UpdateOnly) */
1487
1487
  SaveMode?: number;
1488
1488
  /** 다국어 코드 */
1489
1489
  LanguageCode?: string;
@@ -1572,17 +1572,17 @@ export interface IOlapDimensionGroupItem {
1572
1572
  * @see src/control/olapgrid/iOLAP.Model.ts - OlapFilter.Serialize()
1573
1573
  */
1574
1574
  export interface IOlapFilter {
1575
- /** 필터 유형 */
1575
+ /** 필터 유형 enOlapFilterType (0:In, 1:NotIn, 2:Like, 3:NotLike, 4:BetWeen, 5:StartWith, 6:EndWith, 7:Equals) */
1576
1576
  FilterType?: number;
1577
- /** 필터 종류 */
1577
+ /** 필터 종류 enOlapFilterKind (0:Dimension, 1:Measure) */
1578
1578
  FilterKind?: number;
1579
1579
  /** 측정값 필터 존재 여부 */
1580
1580
  HasMeasureFilter?: boolean;
1581
- /** 측정값 필터 유형 A */
1581
+ /** 측정값 필터 유형 A enOlapMeasureFilterType (0:Equals, 1:Greater, 2:GreaterOrEquals, 3:Less, 4:LessOrEquals, 5:NotEquals) */
1582
1582
  MeasureFilterTypeA?: number;
1583
- /** 측정값 필터 유형 B */
1583
+ /** 측정값 필터 유형 B enOlapMeasureFilterType (0:Equals, 1:Greater, 2:GreaterOrEquals, 3:Less, 4:LessOrEquals, 5:NotEquals) */
1584
1584
  MeasureFilterTypeB?: number;
1585
- /** 측정값 AND/OR 연산자 */
1585
+ /** 측정값 AND/OR 연산자 enAndOrOperator (0:None, 1:Or, 2:And) */
1586
1586
  MeasureAndOrOperator?: number;
1587
1587
  /** 측정값 필터 값 A */
1588
1588
  MeasureFilterValueA?: number;
@@ -2658,6 +2658,94 @@ export interface ITableLayoutElement extends IBaseElement {
2658
2658
  MergeCellList?: any[];
2659
2659
  }
2660
2660
 
2661
+ // ============================================
2662
+ // Tab Item (탭 페이지)
2663
+ // ============================================
2664
+
2665
+ /**
2666
+ * 탭 아이템(탭 페이지) 스타일 속성
2667
+ * BackColor의 UseYn/BoxStyle을 직렬화한 구조입니다.
2668
+ * @see 2.Sources/src/control/group/Tab/TabItem.ts - Serialize()
2669
+ */
2670
+ export interface ITabItemStyle {
2671
+ /** 스타일 사용 여부 */
2672
+ UseYn?: boolean;
2673
+ /** CSS BoxStyle 문자열 */
2674
+ BoxStyle?: string;
2675
+ }
2676
+
2677
+ /**
2678
+ * 탭 아이템 기본 속성
2679
+ * @see 2.Sources/src/control/group/Tab/TabItem.ts - ITabItemBaseProperties
2680
+ */
2681
+ export interface ITabItemBaseProperties {
2682
+ /** 탭 아이템 이름 */
2683
+ Name: string;
2684
+ /** 탭 버튼에 표시되는 텍스트 */
2685
+ Text: string;
2686
+ /** 툴팁 텍스트 */
2687
+ Tooltip: string;
2688
+ /** 탭 너비 설정 */
2689
+ Width: {
2690
+ /** 너비 설정 타입 (0: FitToLength, 1: Pixel) */
2691
+ WidthSettingType: number;
2692
+ /** 너비 값 (px) */
2693
+ WidthValue: number;
2694
+ };
2695
+ /** 표시 여부 */
2696
+ Visible: boolean;
2697
+ /** 커서 타입 */
2698
+ Cursor: string;
2699
+ }
2700
+
2701
+ /**
2702
+ * 탭 아이템 스타일 속성 모음
2703
+ * @see 2.Sources/src/control/group/Tab/TabItem.ts - ITabItemStyleProperties
2704
+ */
2705
+ export interface ITabItemStyleProperties {
2706
+ /** 활성 상태 스타일 */
2707
+ ActiveStyle?: ITabItemStyle;
2708
+ /** 비활성 상태 스타일 */
2709
+ InactiveStyle?: ITabItemStyle;
2710
+ /** 마우스 오버 시 스타일 */
2711
+ MouseOverStyle?: ITabItemStyle;
2712
+ /** 마우스 다운 시 스타일 */
2713
+ MouseDownStyle?: ITabItemStyle;
2714
+ }
2715
+
2716
+ /**
2717
+ * 탭 아이템 기타 속성
2718
+ * @see 2.Sources/src/control/group/Tab/TabItem.ts - ITabItemEtcProperties
2719
+ */
2720
+ export interface ITabItemEtcProperties {
2721
+ /** 툴팁 다국어 코드 */
2722
+ TooltipLanguageCode?: string;
2723
+ /** 텍스트 다국어 코드 */
2724
+ TextLanguageCode?: string;
2725
+ }
2726
+
2727
+ /**
2728
+ * 탭 아이템(탭 페이지) 인터페이스 - 직렬화된 MTSD 구조
2729
+ * 각 탭 페이지는 이름, 자식 컨트롤들, 활성 상태, 스타일 등을 가집니다.
2730
+ * @see 2.Sources/src/control/group/Tab/TabItem.ts - ITabItem, TabItem.Serialize()
2731
+ */
2732
+ export interface ITabItem {
2733
+ /** 탭 아이템 이름 */
2734
+ Name: string;
2735
+ /** 자식 컨트롤 배열 (탭 페이지 안에 배치된 컨트롤들) */
2736
+ Controls: IElement[];
2737
+ /** 탭 아이템 고유 ID */
2738
+ Id: string;
2739
+ /** 현재 활성(선택) 상태 여부 */
2740
+ IsActive: boolean;
2741
+ /** 기본 속성 (이름, 텍스트, 툴팁, 너비, 표시 여부, 커서) */
2742
+ BaseProperties: ITabItemBaseProperties;
2743
+ /** 스타일 속성 (활성/비활성/마우스오버/마우스다운 스타일) */
2744
+ StyleProperties?: ITabItemStyleProperties;
2745
+ /** 기타 속성 (다국어 코드) */
2746
+ EtcProperties?: ITabItemEtcProperties;
2747
+ }
2748
+
2661
2749
  // ============================================
2662
2750
  // Tab Element
2663
2751
  // ============================================
@@ -2683,7 +2771,7 @@ export interface ITabElement extends IBaseElement {
2683
2771
  /** 파일 내보내기(다운로드) 가능 여부 */
2684
2772
  DoExport?: boolean;
2685
2773
  /** 탭 아이템 배열 (각 탭 페이지와 자식 컨트롤) */
2686
- TabItems?: any[];
2774
+ TabItems?: ITabItem[];
2687
2775
  }
2688
2776
 
2689
2777
  // ============================================
@@ -665,6 +665,70 @@
665
665
  "DialogHeight": { "type": "number", "description": "팝업 높이" }
666
666
  }
667
667
  },
668
+ "TabItemStyle": {
669
+ "type": "object",
670
+ "description": "탭 아이템 BackColor 스타일 (UseYn/BoxStyle)",
671
+ "properties": {
672
+ "UseYn": { "type": "boolean", "description": "스타일 사용 여부" },
673
+ "BoxStyle": { "type": "string", "description": "CSS BoxStyle 문자열" }
674
+ }
675
+ },
676
+ "TabItemBaseProperties": {
677
+ "type": "object",
678
+ "description": "탭 아이템 기본 속성",
679
+ "required": ["Name", "Text"],
680
+ "properties": {
681
+ "Name": { "type": "string", "description": "탭 아이템 이름" },
682
+ "Text": { "type": "string", "description": "탭 버튼에 표시되는 텍스트" },
683
+ "Tooltip": { "type": "string", "description": "툴팁 텍스트" },
684
+ "Width": {
685
+ "type": "object",
686
+ "description": "탭 너비 설정",
687
+ "properties": {
688
+ "WidthSettingType": { "type": "integer", "description": "너비 설정 타입 (0: FitToLength, 1: Pixel)" },
689
+ "WidthValue": { "type": "number", "description": "너비 값 (px)" }
690
+ }
691
+ },
692
+ "Visible": { "type": "boolean", "description": "표시 여부" },
693
+ "Cursor": { "type": "string", "description": "커서 타입" }
694
+ }
695
+ },
696
+ "TabItemStyleProperties": {
697
+ "type": "object",
698
+ "description": "탭 아이템 스타일 속성 모음",
699
+ "properties": {
700
+ "ActiveStyle": { "$ref": "#/$defs/TabItemStyle", "description": "활성 상태 스타일" },
701
+ "InactiveStyle": { "$ref": "#/$defs/TabItemStyle", "description": "비활성 상태 스타일" },
702
+ "MouseOverStyle": { "$ref": "#/$defs/TabItemStyle", "description": "마우스 오버 시 스타일" },
703
+ "MouseDownStyle": { "$ref": "#/$defs/TabItemStyle", "description": "마우스 다운 시 스타일" }
704
+ }
705
+ },
706
+ "TabItemEtcProperties": {
707
+ "type": "object",
708
+ "description": "탭 아이템 기타 속성",
709
+ "properties": {
710
+ "TooltipLanguageCode": { "type": "string", "description": "툴팁 다국어 코드" },
711
+ "TextLanguageCode": { "type": "string", "description": "텍스트 다국어 코드" }
712
+ }
713
+ },
714
+ "TabItem": {
715
+ "type": "object",
716
+ "description": "탭 아이템(탭 페이지) - 자식 컨트롤을 포함하는 탭 페이지 단위",
717
+ "required": ["Name", "Id", "IsActive", "BaseProperties"],
718
+ "properties": {
719
+ "Name": { "type": "string", "description": "탭 아이템 이름" },
720
+ "Controls": {
721
+ "type": "array",
722
+ "description": "자식 컨트롤 배열 (탭 페이지 안에 배치된 컨트롤들)",
723
+ "items": { "$ref": "#/$defs/Element" }
724
+ },
725
+ "Id": { "type": "string", "description": "탭 아이템 고유 ID" },
726
+ "IsActive": { "type": "boolean", "description": "현재 활성(선택) 상태 여부" },
727
+ "BaseProperties": { "$ref": "#/$defs/TabItemBaseProperties", "description": "기본 속성" },
728
+ "StyleProperties": { "$ref": "#/$defs/TabItemStyleProperties", "description": "스타일 속성" },
729
+ "EtcProperties": { "$ref": "#/$defs/TabItemEtcProperties", "description": "기타 속성 (다국어 코드)" }
730
+ }
731
+ },
668
732
  "TabElement": {
669
733
  "type": "object",
670
734
  "description": "탭 컨테이너 컨트롤",
@@ -676,7 +740,11 @@
676
740
  "MouseOverStyle": { "type": "object", "description": "마우스 오버 스타일" },
677
741
  "MouseDownStyle": { "type": "object", "description": "마우스 다운 스타일" },
678
742
  "DoExport": { "type": "boolean", "description": "내보내기 버튼 표시" },
679
- "TabItems": { "type": "array", "description": "탭 아이템 배열 (각 탭 페이지와 자식 컨트롤)" }
743
+ "TabItems": {
744
+ "type": "array",
745
+ "description": "탭 아이템 배열 (각 탭 페이지와 자식 컨트롤)",
746
+ "items": { "$ref": "#/$defs/TabItem" }
747
+ }
680
748
  }
681
749
  },
682
750
  "CalendarElement": {
@@ -1020,11 +1088,11 @@
1020
1088
  "ToolTipField": { "type": "string", "description": "툴팁 필드 키" },
1021
1089
  "ToolTipText": { "type": "string", "description": "툴팁 텍스트" },
1022
1090
  "Category": { "type": "number", "description": "카테고리 (0: Default, 1: Dimension, 2: Measure, 3: Attribute, 4: Period)" },
1023
- "Area": { "type": "number", "description": "영역 (0:None, 1:Row, 2:Column, 3:Data, 4:Filter)" },
1024
- "SummaryType": { "type": "number", "description": "요약 유형 (0:Sum, 1:Count, 2:Average, 3:Min, 4:Max )" },
1025
- "TotalSummaryType": { "type": "number", "description": "합계 요약 유형" },
1026
- "SummaryVariation": { "type": "number", "description": "요약 변형" },
1027
- "GroupByType": { "type": "number", "description": "그룹 함수 유형" },
1091
+ "Area": { "type": "number", "description": "영역 (0:Hidden, 1:Row, 2:Column, 3:Filter, 4:Data)" },
1092
+ "SummaryType": { "type": "number", "description": "요약 유형 (0:None, 1:Sum, 2:Min, 3:Max, 4:Average, 5:Count, 9:Calculate, 13:DistinctCount, 14:Text)" },
1093
+ "TotalSummaryType": { "type": "number", "description": "합계 요약 유형 (0:None, 1:SumOfChild, 2:MinOfChild, 3:MaxOfChild, 4:AverageOfChild, 5:CountOfChild)" },
1094
+ "SummaryVariation": { "type": "number", "description": "요약 변형 (0:None, 1:Absolute, 2:Percent, 3:PercentOfColumn, 4:PercentOfRow, 5:SubTotalPercentOfColumn, 6:SubTotalPercentOfRow, 7:RunningAverage, 8:RunningCount, 9:RunningMax, 10:RunningMin, 11:RunningProduct, 12:RunningSum, 15:FirstPeriod, 16:LastPeriod, 17:PeriodIncrease, 18:PeriodIncreaseRate)" },
1095
+ "GroupByType": { "type": "number", "description": "그룹 함수 유형 (0:Auto, 1:Sum, 2:Count, 3:Max, 4:Min, 5:Average, 6:DistinctCount, 7:None, 8:AlwaysGroupBy)" },
1028
1096
  "Format": { "type": "string", "description": "표시 포맷" },
1029
1097
  "Formula": { "type": "string", "description": "수식" },
1030
1098
  "Formula2": { "type": "string", "description": "수식 2" },
@@ -1032,7 +1100,7 @@
1032
1100
  "Width": { "type": "number", "description": "필드 너비" },
1033
1101
  "Unit": { "type": "string", "description": "단위" },
1034
1102
  "CreateType": { "type": "number", "description": "생성 유형 (0:Default, 1:Measures(특수필드로 다른 Measure필드의 집합, Files내 1개만 자동 생성됨), 2:DimensionGroup, 3:HierarchyGroup)" },
1035
- "SortType": { "type": "number", "description": "정렬 유형 (0:None, 1:Asc, 2:Desc)" },
1103
+ "SortType": { "type": "number", "description": "정렬 유형 (0:None, 1:Asc, 2:Desc, 3:Custom, 4:MeasureAsc, 5:MeasureDesc)" },
1036
1104
  "MeasureSortField": { "type": "string", "description": "측정값 정렬 기준 필드" },
1037
1105
  "SortBaseField": { "type": "string", "description": "정렬 기준 필드" },
1038
1106
  "MoveAble": { "type": "boolean", "description": "이동 가능" },
@@ -1042,9 +1110,9 @@
1042
1110
  "AllowRow": { "type": "boolean", "description": "행 허용" },
1043
1111
  "AllowColumn": { "type": "boolean", "description": "열 허용" },
1044
1112
  "AllowData": { "type": "boolean", "description": "데이터 허용" },
1045
- "KeyType": { "type": "number", "description": "키 유형" },
1046
- "DataType": { "type": "number", "description": "데이터 유형" },
1047
- "SaveMode": { "type": "number", "description": "저장 모드" },
1113
+ "KeyType": { "type": "number", "description": "키 유형 (0:None, 1:NotNull, 2:NullAble, 3:Primary)" },
1114
+ "DataType": { "type": "number", "description": "데이터 유형 (0:Numeric, 1:String, 2:DateTime8, 3:DateTimeNow, 4:UserCode, 5:CLOB)" },
1115
+ "SaveMode": { "type": "number", "description": "저장 모드 (0:All, 1:InsertOnly, 2:UpdateOnly)" },
1048
1116
  "LanguageCode": { "type": "string", "description": "다국어 코드" },
1049
1117
  "UseChartSource": { "type": "boolean", "description": "차트 소스 사용" },
1050
1118
  "VisibleSubTotal": { "type": "boolean", "description": "소계 표시" },
@@ -1096,12 +1164,12 @@
1096
1164
  "type": "object",
1097
1165
  "description": "OLAP 필터",
1098
1166
  "properties": {
1099
- "FilterType": { "type": "number", "description": "필터 유형" },
1100
- "FilterKind": { "type": "number", "description": "필터 종류" },
1167
+ "FilterType": { "type": "number", "description": "필터 유형 enOlapFilterType (0:In, 1:NotIn, 2:Like, 3:NotLike, 4:BetWeen, 5:StartWith, 6:EndWith, 7:Equals)" },
1168
+ "FilterKind": { "type": "number", "description": "필터 종류 enOlapFilterKind (0:Dimension, 1:Measure)" },
1101
1169
  "HasMeasureFilter": { "type": "boolean", "description": "측정값 필터 존재 여부" },
1102
- "MeasureFilterTypeA": { "type": "number", "description": "측정값 필터 유형 A" },
1103
- "MeasureFilterTypeB": { "type": "number", "description": "측정값 필터 유형 B" },
1104
- "MeasureAndOrOperator": { "type": "number", "description": "측정값 AND/OR 연산자" },
1170
+ "MeasureFilterTypeA": { "type": "number", "description": "측정값 필터 유형 A enOlapMeasureFilterType (0:Equals, 1:Greater, 2:GreaterOrEquals, 3:Less, 4:LessOrEquals, 5:NotEquals)" },
1171
+ "MeasureFilterTypeB": { "type": "number", "description": "측정값 필터 유형 B enOlapMeasureFilterType (0:Equals, 1:Greater, 2:GreaterOrEquals, 3:Less, 4:LessOrEquals, 5:NotEquals)" },
1172
+ "MeasureAndOrOperator": { "type": "number", "description": "측정값 AND/OR 연산자 enAndOrOperator (0:None, 1:Or, 2:And)" },
1105
1173
  "MeasureFilterValueA": { "type": "number", "description": "측정값 필터 값 A" },
1106
1174
  "MeasureFilterValueB": { "type": "number", "description": "측정값 필터 값 B" },
1107
1175
  "Values": { "type": "array", "description": "필터 값 배열" }