@dssp/dkpi 1.0.0-alpha.66 → 1.0.0-alpha.68
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/dist-client/components/kpi-2d-lookup-chart.d.ts +10 -30
- package/dist-client/components/kpi-2d-lookup-chart.js +150 -362
- package/dist-client/components/kpi-2d-lookup-chart.js.map +1 -1
- package/dist-client/components/kpi-boxplot-chart.js +51 -20
- package/dist-client/components/kpi-boxplot-chart.js.map +1 -1
- package/dist-client/components/kpi-lookup-chart.d.ts +15 -4
- package/dist-client/components/kpi-lookup-chart.js +248 -292
- package/dist-client/components/kpi-lookup-chart.js.map +1 -1
- package/dist-client/components/kpi-radar-chart.js +29 -5
- package/dist-client/components/kpi-radar-chart.js.map +1 -1
- package/dist-client/components/kpi-single-boxplot-chart.js +72 -14
- package/dist-client/components/kpi-single-boxplot-chart.js.map +1 -1
- package/dist-client/google-map/common-google-map.js +10 -8
- package/dist-client/google-map/common-google-map.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/components/kpi-left-panel.js +7 -0
- package/dist-client/pages/kpi-dashboard/components/kpi-left-panel.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/components/kpi-map-panel.d.ts +2 -0
- package/dist-client/pages/kpi-dashboard/components/kpi-map-panel.js +12 -4
- package/dist-client/pages/kpi-dashboard/components/kpi-map-panel.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/components/kpi-region-popup.d.ts +2 -0
- package/dist-client/pages/kpi-dashboard/components/kpi-region-popup.js +84 -25
- package/dist-client/pages/kpi-dashboard/components/kpi-region-popup.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/kpi-dashboard-map.d.ts +12 -0
- package/dist-client/pages/kpi-dashboard/kpi-dashboard-map.js +243 -16
- package/dist-client/pages/kpi-dashboard/kpi-dashboard-map.js.map +1 -1
- package/dist-client/pages/sv-project-detail.d.ts +1 -1
- package/dist-client/pages/sv-project-detail.js +25 -7
- package/dist-client/pages/sv-project-detail.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/service/kpi-stat/kpi-stat-query.d.ts +2 -0
- package/dist-server/service/kpi-stat/kpi-stat-query.js +120 -0
- package/dist-server/service/kpi-stat/kpi-stat-query.js.map +1 -1
- package/dist-server/service/kpi-stat/kpi-stat-types.d.ts +1 -0
- package/dist-server/service/kpi-stat/kpi-stat-types.js +4 -0
- package/dist-server/service/kpi-stat/kpi-stat-types.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/schema.graphql +7 -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.68",
|
|
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": "^10.0.0-beta"
|
|
105
105
|
},
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "9c60848ea5e8d376e81c1d942e7f4e9da4c8a223"
|
|
107
107
|
}
|
package/schema.graphql
CHANGED
|
@@ -4423,6 +4423,7 @@ type KpiComprehensiveStats {
|
|
|
4423
4423
|
}
|
|
4424
4424
|
|
|
4425
4425
|
type KpiComprehensiveStatsByGeoGroup {
|
|
4426
|
+
address: String
|
|
4426
4427
|
avgVal: Float!
|
|
4427
4428
|
geoGroup: String
|
|
4428
4429
|
kpiName: String
|
|
@@ -11391,6 +11392,9 @@ type Query {
|
|
|
11391
11392
|
"""Get KPI box plot statistics for Y-category KPIs by geo group"""
|
|
11392
11393
|
kpiYValueComprehensiveStatsByGeoGroup(geoGroup: String): [KpiComprehensiveStatsByGeoGroup!]!
|
|
11393
11394
|
|
|
11395
|
+
"""Get Y-level KPI statistics by geo_group code (sigungu)"""
|
|
11396
|
+
kpiYValueStatsByGeoGroup(endYearMonth: String, geoGroup: String!, startYearMonth: String): [KpiComprehensiveStats!]!
|
|
11397
|
+
|
|
11394
11398
|
"""Get KPI statistics for Y-category KPIs by specific metro area"""
|
|
11395
11399
|
kpiYValueStatsByMetroArea(endYearMonth: String, metroArea: String!, startYearMonth: String): [KpiComprehensiveStats!]!
|
|
11396
11400
|
|
|
@@ -11400,6 +11404,9 @@ type Query {
|
|
|
11400
11404
|
"""Get monthly KPI trend for Z-category KPIs by metro area"""
|
|
11401
11405
|
kpiZValueMonthlyTrendByGeoGroup(buildingUsage: String, endYearMonth: String, kpiName: String, sectorType: String, startYearMonth: String): [KpiMonthlyTrend!]!
|
|
11402
11406
|
|
|
11407
|
+
"""Get KPI statistics by sigungu (geo_group code) level"""
|
|
11408
|
+
kpiZValueStatsBySigungu(buildingUsage: String, endYearMonth: String, kpiName: String, sectorType: String, startYearMonth: String): [KpiComprehensiveStatsByGeoGroup!]!
|
|
11409
|
+
|
|
11403
11410
|
"""To fetch multiple Kpis"""
|
|
11404
11411
|
kpis(
|
|
11405
11412
|
"""An array of filter conditions to apply to the list query."""
|