@things-factory/operato-dataset 9.0.15 → 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.
- package/package.json +3 -3
- 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.
|
|
3
|
+
"version": "9.0.16",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"@things-factory/integration-influxdb": "^9.0.15",
|
|
83
83
|
"@things-factory/integration-msgraph": "^9.0.15",
|
|
84
84
|
"@things-factory/integration-ui": "^9.0.15",
|
|
85
|
-
"@things-factory/kpi": "^9.0.
|
|
85
|
+
"@things-factory/kpi": "^9.0.16",
|
|
86
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",
|
|
@@ -104,5 +104,5 @@
|
|
|
104
104
|
"devDependencies": {
|
|
105
105
|
"@things-factory/builder": "^9.0.5"
|
|
106
106
|
},
|
|
107
|
-
"gitHead": "
|
|
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.,
|
|
3560
|
+
Visualization type for this KPI (e.g., CARD, GAUGE, PROGRESS, BAR, LINE, etc.).
|
|
3561
3561
|
"""
|
|
3562
|
-
vizType:
|
|
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.,
|
|
3853
|
+
Visualization type for this KPI (e.g., CARD, GAUGE, PROGRESS, BAR, LINE, etc.).
|
|
3851
3854
|
"""
|
|
3852
|
-
vizType:
|
|
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.,
|
|
6379
|
+
Visualization type for this KPI (e.g., CARD, GAUGE, PROGRESS, BAR, LINE, etc.).
|
|
6358
6380
|
"""
|
|
6359
|
-
vizType:
|
|
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."""
|