@dssp/dkpi 1.0.0-alpha.56 → 1.0.0-alpha.58
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/assets/images/project-image.png +0 -0
- package/dist-client/components/kpi-boxplot-chart.js +12 -48
- package/dist-client/components/kpi-boxplot-chart.js.map +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-list-page.js +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-list-page.js.map +1 -1
- package/dist-client/pages/project-complete-tabs/pc-tab1-plan.js +6 -6
- package/dist-client/pages/project-complete-tabs/pc-tab1-plan.js.map +1 -1
- package/dist-client/pages/sv-project-detail.d.ts +4 -0
- package/dist-client/pages/sv-project-detail.js +218 -0
- package/dist-client/pages/sv-project-detail.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/menu-tools.d.ts +10 -1
- package/dist-client/viewparts/menu-tools.js +36 -7
- package/dist-client/viewparts/menu-tools.js.map +1 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.d.ts +38 -0
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.js +311 -2
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.js.map +1 -1
- package/dist-server/service/kpi-value/kpi-value-query.d.ts +1 -0
- package/dist-server/service/kpi-value/kpi-value-query.js +22 -0
- package/dist-server/service/kpi-value/kpi-value-query.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/schema.graphql +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dssp/dkpi",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.58",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -103,5 +103,5 @@
|
|
|
103
103
|
"devDependencies": {
|
|
104
104
|
"@things-factory/builder": "^9.0.0"
|
|
105
105
|
},
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "d54b1fc0d789c498afddc7e4a7424ebde112a572"
|
|
107
107
|
}
|
package/schema.graphql
CHANGED
|
@@ -11843,6 +11843,9 @@ type Query {
|
|
|
11843
11843
|
sortings: [Sorting!]
|
|
11844
11844
|
): ProjectReportList!
|
|
11845
11845
|
|
|
11846
|
+
"""To fetch KpiValues by project group with X prefix kpi names"""
|
|
11847
|
+
projectXKpiValues(projectId: String!): [KpiValue!]!
|
|
11848
|
+
|
|
11846
11849
|
"""프로젝트 리스트"""
|
|
11847
11850
|
projects(
|
|
11848
11851
|
"""An array of filter conditions to apply to the list query."""
|