@things-factory/kpi 9.0.39 → 9.0.40
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/client/pages/kpi/kpi-list-page.ts +21 -9
- package/client/pages/kpi-value/kpi-value-list-page.ts +10 -10
- package/dist-client/pages/kpi/kpi-list-page.js +21 -9
- package/dist-client/pages/kpi/kpi-list-page.js.map +1 -1
- package/dist-client/pages/kpi-value/kpi-value-list-page.js +10 -10
- package/dist-client/pages/kpi-value/kpi-value-list-page.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/service/kpi-value/kpi-value-type.d.ts +2 -0
- package/dist-server/service/kpi-value/kpi-value-type.js +8 -0
- package/dist-server/service/kpi-value/kpi-value-type.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/server/service/kpi-value/kpi-value-type.ts +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/kpi",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.40",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"@things-factory/dataset": "^9.0.38",
|
|
46
46
|
"@things-factory/shell": "^9.0.34"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "71bbb5b1503efb32b5a6210ee89c6362a9bed821"
|
|
49
49
|
}
|
|
@@ -39,6 +39,9 @@ export class NewKpiValue {
|
|
|
39
39
|
@Field({ nullable: true, description: 'Legacy organizational unit identifier (for backward compatibility)' })
|
|
40
40
|
org?: string
|
|
41
41
|
|
|
42
|
+
@Field({ nullable: true, description: 'Group key for this value (organization, line, user, project, etc.)' })
|
|
43
|
+
group?: string
|
|
44
|
+
|
|
42
45
|
@Field(type => KpiValueInputType, {
|
|
43
46
|
nullable: true,
|
|
44
47
|
description: 'Indicates whether this value was entered manually or generated automatically.'
|
|
@@ -93,6 +96,9 @@ export class KpiValuePatch {
|
|
|
93
96
|
@Field({ nullable: true, description: 'Legacy organizational unit identifier (for backward compatibility)' })
|
|
94
97
|
org?: string
|
|
95
98
|
|
|
99
|
+
@Field({ nullable: true, description: 'Group key for this value (organization, line, user, project, etc.)' })
|
|
100
|
+
group?: string
|
|
101
|
+
|
|
96
102
|
@Field(type => KpiValueInputType, {
|
|
97
103
|
nullable: true,
|
|
98
104
|
description: 'Indicates whether this value was entered manually or generated automatically.'
|