@things-factory/operato-dataset 9.0.14 → 9.0.16

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/package.json +16 -16
  2. package/schema.graphql +30 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-dataset",
3
- "version": "9.0.14",
3
+ "version": "9.0.16",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -67,42 +67,42 @@
67
67
  "@things-factory/apptool-ui": "^9.0.5",
68
68
  "@things-factory/auth-base": "^9.0.5",
69
69
  "@things-factory/auth-ui": "^9.0.9",
70
- "@things-factory/board-service": "^9.0.14",
70
+ "@things-factory/board-service": "^9.0.15",
71
71
  "@things-factory/board-ui": "^9.0.5",
72
- "@things-factory/ccp": "^9.0.14",
72
+ "@things-factory/ccp": "^9.0.15",
73
73
  "@things-factory/context-ui": "^9.0.5",
74
- "@things-factory/dashboard": "^9.0.14",
75
- "@things-factory/dataset": "^9.0.14",
76
- "@things-factory/edge-client": "^9.0.14",
74
+ "@things-factory/dashboard": "^9.0.15",
75
+ "@things-factory/dataset": "^9.0.15",
76
+ "@things-factory/edge-client": "^9.0.15",
77
77
  "@things-factory/evaluation": "^9.0.9",
78
78
  "@things-factory/export-ui": "^9.0.5",
79
79
  "@things-factory/help": "^9.0.5",
80
80
  "@things-factory/i18n-base": "^9.0.5",
81
- "@things-factory/integration-base": "^9.0.14",
82
- "@things-factory/integration-influxdb": "^9.0.14",
83
- "@things-factory/integration-msgraph": "^9.0.14",
84
- "@things-factory/integration-ui": "^9.0.14",
85
- "@things-factory/kpi": "^9.0.14",
86
- "@things-factory/lite-menu": "^9.0.14",
81
+ "@things-factory/integration-base": "^9.0.15",
82
+ "@things-factory/integration-influxdb": "^9.0.15",
83
+ "@things-factory/integration-msgraph": "^9.0.15",
84
+ "@things-factory/integration-ui": "^9.0.15",
85
+ "@things-factory/kpi": "^9.0.16",
86
+ "@things-factory/lite-menu": "^9.0.15",
87
87
  "@things-factory/lock-client": "^9.0.5",
88
88
  "@things-factory/more-base": "^9.0.5",
89
89
  "@things-factory/more-ui": "^9.0.5",
90
90
  "@things-factory/notification": "^9.0.5",
91
91
  "@things-factory/oauth2-client": "^9.0.5",
92
92
  "@things-factory/organization": "^9.0.5",
93
- "@things-factory/qc": "^9.0.14",
93
+ "@things-factory/qc": "^9.0.15",
94
94
  "@things-factory/resource-ui": "^9.0.9",
95
95
  "@things-factory/scheduler": "^9.0.5",
96
96
  "@things-factory/setting-base": "^9.0.5",
97
97
  "@things-factory/setting-ui": "^9.0.5",
98
98
  "@things-factory/shell": "^9.0.5",
99
- "@things-factory/spc": "^9.0.14",
99
+ "@things-factory/spc": "^9.0.15",
100
100
  "@things-factory/system": "^9.0.5",
101
101
  "@things-factory/work-shift": "^9.0.5",
102
- "@things-factory/worklist": "^9.0.14"
102
+ "@things-factory/worklist": "^9.0.15"
103
103
  },
104
104
  "devDependencies": {
105
105
  "@things-factory/builder": "^9.0.5"
106
106
  },
107
- "gitHead": "b092ace8cad6c994b41ce6c06b929085d886b134"
107
+ "gitHead": "c1ff091fe44632f61f2581e7ec4f8af515be22ae"
108
108
  }
package/schema.graphql CHANGED
@@ -3552,14 +3552,14 @@ type Kpi {
3552
3552
  version: Float
3553
3553
 
3554
3554
  """
3555
- Visualization options and metadata for this KPI, such as color, icon, thresholds, unit, decimal places, etc.
3555
+ Visualization options and metadata for this KPI, such as color, icon, thresholds, unit, decimal places, min/max values, etc.
3556
3556
  """
3557
3557
  vizMeta: Object
3558
3558
 
3559
3559
  """
3560
- Visualization type for this KPI (e.g., bar, line, gauge, progress, card, table, icon, badge, text).
3560
+ Visualization type for this KPI (e.g., CARD, GAUGE, PROGRESS, BAR, LINE, etc.).
3561
3561
  """
3562
- vizType: String
3562
+ vizType: KpiVizType
3563
3563
  }
3564
3564
 
3565
3565
  """KPI 경고/알림 엔티티. KPI 실적, 등급, 목표 미달 등 경고/알림 정보를 제공."""
@@ -3637,6 +3637,9 @@ type KpiCategoryList {
3637
3637
  Input type for updating an existing KPI category. Used in mutations to patch category details.
3638
3638
  """
3639
3639
  input KpiCategoryPatch {
3640
+ """Whether this category is active (usable) or not."""
3641
+ active: Boolean
3642
+
3640
3643
  """Custom flag for update operations (internal use)."""
3641
3644
  cuFlag: String
3642
3645
 
@@ -3847,9 +3850,9 @@ input KpiPatch {
3847
3850
  vizMeta: Object
3848
3851
 
3849
3852
  """
3850
- Visualization type for this KPI (e.g., bar, line, gauge, progress, card, table, icon, badge, text).
3853
+ Visualization type for this KPI (e.g., CARD, GAUGE, PROGRESS, BAR, LINE, etc.).
3851
3854
  """
3852
- vizType: String
3855
+ vizType: KpiVizType
3853
3856
  }
3854
3857
 
3855
3858
  """State enumeration of a KPI (DRAFT, RELEASED, ARCHIVED)"""
@@ -3985,6 +3988,25 @@ input KpiValuePatch {
3985
3988
  version: Int
3986
3989
  }
3987
3990
 
3991
+ """Visualization type for KPI display (CARD, GAUGE, PROGRESS, etc.)"""
3992
+ enum KpiVizType {
3993
+ BADGE
3994
+ BAR
3995
+ BULLET
3996
+ CARD
3997
+ DONUT
3998
+ GAUGE
3999
+ ICON
4000
+ LINE
4001
+ PIE
4002
+ PROGRESS
4003
+ RADAR
4004
+ SPEEDOMETER
4005
+ TABLE
4006
+ TEXT
4007
+ THERMOMETER
4008
+ }
4009
+
3988
4010
  """Entity for LiteMenu"""
3989
4011
  type LiteMenu {
3990
4012
  active: Boolean
@@ -6354,15 +6376,16 @@ input NewKpi {
6354
6376
  vizMeta: Object
6355
6377
 
6356
6378
  """
6357
- Visualization type for this KPI (e.g., bar, line, gauge, progress, card, table, icon, badge, text).
6379
+ Visualization type for this KPI (e.g., CARD, GAUGE, PROGRESS, BAR, LINE, etc.).
6358
6380
  """
6359
- vizType: String
6381
+ vizType: KpiVizType
6360
6382
  }
6361
6383
 
6362
6384
  """
6363
6385
  Input type for creating a new KPI category. Used in mutations to provide category details.
6364
6386
  """
6365
6387
  input NewKpiCategory {
6388
+ """Whether this category is active (usable) or not."""
6366
6389
  active: Boolean
6367
6390
 
6368
6391
  """Detailed description of this KPI category."""