@things-factory/kpi 9.0.30 → 9.0.32
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/README.md +1 -2
- package/client/charts/kpi-boxplot-chart.ts +182 -42
- package/client/charts/kpi-mini-trend-chart.ts +125 -0
- package/client/charts/kpi-radar-chart.ts +9 -9
- package/client/charts/kpi-trend-chart.ts +163 -0
- package/client/google-map/common-google-map.ts +45 -7
- package/client/google-map/google-map-loader.ts +1 -1
- package/client/pages/kpi/kpi-list-page.ts +196 -32
- package/client/pages/kpi/kpi-overview.ts +9 -11
- package/client/pages/kpi/kpi-tree-page.ts +409 -0
- package/client/pages/kpi/kpi-view.ts +187 -0
- package/client/pages/kpi-dashboard/cards/kpi-level1-card.ts +1 -1
- package/client/pages/kpi-dashboard/cards/kpi-level2-comparison.ts +1 -1
- package/client/pages/kpi-dashboard/cards/kpi-level3-comparison.ts +1 -1
- package/client/pages/kpi-dashboard/components/kpi-chart-toggle.ts +1 -2
- package/client/pages/kpi-dashboard/components/kpi-left-panel.ts +437 -0
- package/client/pages/kpi-dashboard/components/kpi-map-panel.ts +243 -30
- package/client/pages/kpi-dashboard/components/kpi-region-popup.ts +356 -0
- package/client/pages/kpi-dashboard/kpi-dashboard-map.ts +50 -592
- package/client/pages/kpi-dashboard/kpi-dashboard.ts +28 -30
- package/client/pages/kpi-history/kpi-history-list-page.ts +11 -11
- package/client/pages/kpi-metric/kpi-metric-list-page.ts +10 -2
- package/client/pages/kpi-metric-value/kpi-metric-value-editor-page.ts +7 -7
- package/client/pages/kpi-metric-value/kpi-metric-value-importer.ts +2 -2
- package/client/pages/kpi-metric-value/kpi-metric-value-list-page.ts +16 -8
- package/client/pages/kpi-metric-value/kpi-metric-value-manual-entry-form.ts +5 -5
- package/client/pages/kpi-statistic/kpi-statistic-editor-page.ts +1 -2
- package/client/pages/kpi-statistic/kpi-statistic-list-page.ts +10 -2
- package/client/pages/kpi-value/kpi-value-editor-page.ts +11 -7
- package/client/pages/kpi-value/kpi-value-list-page.ts +31 -7
- package/client/route.ts +2 -9
- package/design-entities.md +8 -12
- package/dist-client/charts/kpi-boxplot-chart.d.ts +2 -0
- package/dist-client/charts/kpi-boxplot-chart.js +168 -42
- package/dist-client/charts/kpi-boxplot-chart.js.map +1 -1
- package/dist-client/charts/kpi-mini-trend-chart.d.ts +14 -0
- package/dist-client/charts/kpi-mini-trend-chart.js +148 -0
- package/dist-client/charts/kpi-mini-trend-chart.js.map +1 -0
- package/dist-client/charts/kpi-radar-chart.js +9 -9
- package/dist-client/charts/kpi-radar-chart.js.map +1 -1
- package/dist-client/charts/kpi-trend-chart.d.ts +25 -0
- package/dist-client/charts/kpi-trend-chart.js +186 -0
- package/dist-client/charts/kpi-trend-chart.js.map +1 -0
- package/dist-client/google-map/common-google-map.js +40 -7
- package/dist-client/google-map/common-google-map.js.map +1 -1
- package/dist-client/google-map/google-map-loader.js +1 -1
- package/dist-client/google-map/google-map-loader.js.map +1 -1
- package/dist-client/pages/kpi/kpi-list-page.d.ts +19 -3
- package/dist-client/pages/kpi/kpi-list-page.js +188 -32
- package/dist-client/pages/kpi/kpi-list-page.js.map +1 -1
- package/dist-client/pages/kpi/kpi-overview.js +9 -11
- package/dist-client/pages/kpi/kpi-overview.js.map +1 -1
- package/dist-client/pages/kpi/kpi-tree-page.d.ts +59 -0
- package/dist-client/pages/kpi/kpi-tree-page.js +403 -0
- package/dist-client/pages/kpi/kpi-tree-page.js.map +1 -0
- package/dist-client/pages/kpi/kpi-view.d.ts +12 -0
- package/dist-client/pages/kpi/kpi-view.js +191 -0
- package/dist-client/pages/kpi/kpi-view.js.map +1 -0
- package/dist-client/pages/kpi-dashboard/cards/kpi-level1-card.js +1 -1
- package/dist-client/pages/kpi-dashboard/cards/kpi-level1-card.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/cards/kpi-level2-comparison.js +1 -1
- package/dist-client/pages/kpi-dashboard/cards/kpi-level2-comparison.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/cards/kpi-level3-comparison.js +1 -1
- package/dist-client/pages/kpi-dashboard/cards/kpi-level3-comparison.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/components/kpi-chart-toggle.js +1 -2
- package/dist-client/pages/kpi-dashboard/components/kpi-chart-toggle.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/components/kpi-left-panel.d.ts +24 -0
- package/dist-client/pages/kpi-dashboard/components/kpi-left-panel.js +440 -0
- package/dist-client/pages/kpi-dashboard/components/kpi-left-panel.js.map +1 -0
- package/dist-client/pages/kpi-dashboard/components/kpi-map-panel.d.ts +11 -1
- package/dist-client/pages/kpi-dashboard/components/kpi-map-panel.js +243 -22
- 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 +23 -0
- package/dist-client/pages/kpi-dashboard/components/kpi-region-popup.js +369 -0
- package/dist-client/pages/kpi-dashboard/components/kpi-region-popup.js.map +1 -0
- package/dist-client/pages/kpi-dashboard/kpi-dashboard-map.d.ts +6 -15
- package/dist-client/pages/kpi-dashboard/kpi-dashboard-map.js +47 -588
- package/dist-client/pages/kpi-dashboard/kpi-dashboard-map.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/kpi-dashboard.js +28 -30
- package/dist-client/pages/kpi-dashboard/kpi-dashboard.js.map +1 -1
- package/dist-client/pages/kpi-history/kpi-history-list-page.d.ts +6 -1
- package/dist-client/pages/kpi-history/kpi-history-list-page.js +11 -11
- package/dist-client/pages/kpi-history/kpi-history-list-page.js.map +1 -1
- package/dist-client/pages/kpi-metric/kpi-metric-list-page.d.ts +5 -0
- package/dist-client/pages/kpi-metric/kpi-metric-list-page.js +10 -2
- package/dist-client/pages/kpi-metric/kpi-metric-list-page.js.map +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-editor-page.d.ts +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-editor-page.js +8 -8
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-editor-page.js.map +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-importer.js +2 -2
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-importer.js.map +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-list-page.d.ts +5 -0
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-list-page.js +16 -8
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-list-page.js.map +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-manual-entry-form.d.ts +1 -1
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-manual-entry-form.js +6 -6
- package/dist-client/pages/kpi-metric-value/kpi-metric-value-manual-entry-form.js.map +1 -1
- package/dist-client/pages/kpi-statistic/kpi-statistic-editor-page.js +1 -2
- package/dist-client/pages/kpi-statistic/kpi-statistic-editor-page.js.map +1 -1
- package/dist-client/pages/kpi-statistic/kpi-statistic-list-page.d.ts +5 -0
- package/dist-client/pages/kpi-statistic/kpi-statistic-list-page.js +10 -2
- package/dist-client/pages/kpi-statistic/kpi-statistic-list-page.js.map +1 -1
- package/dist-client/pages/kpi-value/kpi-value-editor-page.d.ts +2 -1
- package/dist-client/pages/kpi-value/kpi-value-editor-page.js +16 -8
- package/dist-client/pages/kpi-value/kpi-value-editor-page.js.map +1 -1
- package/dist-client/pages/kpi-value/kpi-value-list-page.d.ts +5 -0
- package/dist-client/pages/kpi-value/kpi-value-list-page.js +31 -7
- package/dist-client/pages/kpi-value/kpi-value-list-page.js.map +1 -1
- package/dist-client/route.d.ts +1 -1
- package/dist-client/route.js +2 -8
- package/dist-client/route.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/controllers/kpi-metric-value-provider.d.ts +1 -1
- package/dist-server/controllers/kpi-metric-value-provider.js +4 -4
- package/dist-server/controllers/kpi-metric-value-provider.js.map +1 -1
- package/dist-server/controllers/kpi-value-provider.d.ts +1 -1
- package/dist-server/controllers/kpi-value-provider.js +3 -3
- package/dist-server/controllers/kpi-value-provider.js.map +1 -1
- package/dist-server/migrations/1752190849680-seed-kpi-metrics.d.ts +6 -0
- package/dist-server/migrations/1752190849680-seed-kpi-metrics.js +101 -0
- package/dist-server/migrations/1752190849680-seed-kpi-metrics.js.map +1 -0
- package/dist-server/migrations/1752190849681-seed-kpi.d.ts +5 -0
- package/dist-server/migrations/1752190849681-seed-kpi.js +315 -0
- package/dist-server/migrations/1752190849681-seed-kpi.js.map +1 -0
- package/dist-server/migrations/1752192090123-add-grades-to-kpi.d.ts +7 -0
- package/dist-server/migrations/1752192090123-add-grades-to-kpi.js +51 -0
- package/dist-server/migrations/1752192090123-add-grades-to-kpi.js.map +1 -0
- package/dist-server/migrations/1752192090124-add-kpi-statistics.d.ts +5 -0
- package/dist-server/migrations/1752192090124-add-kpi-statistics.js +710 -0
- package/dist-server/migrations/1752192090124-add-kpi-statistics.js.map +1 -0
- package/dist-server/migrations/1752192090128-seed-kpi-org-scope.d.ts +6 -0
- package/dist-server/migrations/1752192090128-seed-kpi-org-scope.js +111 -0
- package/dist-server/migrations/1752192090128-seed-kpi-org-scope.js.map +1 -0
- package/dist-server/migrations/1752192090129-seed-kpi-values.d.ts +6 -0
- package/dist-server/migrations/1752192090129-seed-kpi-values.js +187 -0
- package/dist-server/migrations/1752192090129-seed-kpi-values.js.map +1 -0
- package/dist-server/migrations/grade-data/x11-performance-table.json +962 -0
- package/dist-server/migrations/grade-data/x12-performance-table.json +611 -0
- package/dist-server/migrations/grade-data/x14-performance-table.json +42 -0
- package/dist-server/migrations/grade-data/x21-performance-table.json +889 -0
- package/dist-server/migrations/grade-data/x22-performance-table.json +1064 -0
- package/dist-server/migrations/grade-data/x23-performance-table.json +42 -0
- package/dist-server/migrations/grade-data/x31-performance-table.json +644 -0
- package/dist-server/migrations/grade-data/x32-performance-table.json +993 -0
- package/dist-server/migrations/grade-data/x33-performance-table.json +195 -0
- package/dist-server/migrations/grade-data/x34-performance-table.json +12 -0
- package/dist-server/migrations/grade-data/x35-performance-table.json +42 -0
- package/dist-server/migrations/grade-data/x41-performance-table.json +825 -0
- package/dist-server/migrations/grade-data/x42-performance-table.json +786 -0
- package/dist-server/migrations/grade-data/x43-performance-table.json +12 -0
- package/dist-server/migrations/grade-data/x44-performance-table.json +42 -0
- package/dist-server/migrations/grade-data/x51-performance-table.json +924 -0
- package/dist-server/migrations/grade-data/x52-performance-table.json +42 -0
- package/dist-server/migrations/grade-data/x61-performance-table.json +261 -0
- package/dist-server/migrations/grade-data/x62-performance-table.json +42 -0
- package/dist-server/migrations/seed-data/kpi-metrics-seed.json +454 -0
- package/dist-server/migrations/seed-data/kpi-org-scope-seed.json +1676 -0
- package/dist-server/migrations/seed-data/kpi-values-seed.json +402 -0
- package/dist-server/migrations/seed-data/kpis-seed.json +488 -0
- package/dist-server/service/index.d.ts +3 -7
- package/dist-server/service/index.js +5 -12
- package/dist-server/service/index.js.map +1 -1
- package/dist-server/service/kpi/aggregate-kpi.js +30 -13
- package/dist-server/service/kpi/aggregate-kpi.js.map +1 -1
- package/dist-server/service/kpi/kpi-formula.service.d.ts +15 -0
- package/dist-server/service/kpi/kpi-formula.service.js +90 -0
- package/dist-server/service/kpi/kpi-formula.service.js.map +1 -1
- package/dist-server/service/kpi/kpi-history.d.ts +0 -3
- package/dist-server/service/kpi/kpi-history.js +0 -10
- package/dist-server/service/kpi/kpi-history.js.map +1 -1
- package/dist-server/service/kpi/kpi-mutation.d.ts +1 -1
- package/dist-server/service/kpi/kpi-mutation.js +57 -20
- package/dist-server/service/kpi/kpi-mutation.js.map +1 -1
- package/dist-server/service/kpi/kpi-query.d.ts +7 -3
- package/dist-server/service/kpi/kpi-query.js +126 -10
- package/dist-server/service/kpi/kpi-query.js.map +1 -1
- package/dist-server/service/kpi/kpi-type.d.ts +4 -2
- package/dist-server/service/kpi/kpi-type.js +12 -4
- package/dist-server/service/kpi/kpi-type.js.map +1 -1
- package/dist-server/service/kpi/kpi.d.ts +4 -3
- package/dist-server/service/kpi/kpi.js +20 -8
- package/dist-server/service/kpi/kpi.js.map +1 -1
- package/dist-server/service/kpi-metric/aggregate-kpi-metric.js +46 -11
- package/dist-server/service/kpi-metric/aggregate-kpi-metric.js.map +1 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.d.ts +1 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.js +6 -6
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.js.map +1 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value-type.d.ts +2 -2
- package/dist-server/service/kpi-metric-value/kpi-metric-value-type.js +4 -4
- package/dist-server/service/kpi-metric-value/kpi-metric-value-type.js.map +1 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value.d.ts +1 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value.js +3 -3
- package/dist-server/service/kpi-metric-value/kpi-metric-value.js.map +1 -1
- package/dist-server/service/kpi-org-scope/index.d.ts +9 -0
- package/dist-server/service/kpi-org-scope/index.js +14 -0
- package/dist-server/service/kpi-org-scope/index.js.map +1 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-mutation.d.ts +8 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-mutation.js +170 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-mutation.js.map +1 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-query.d.ts +14 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-query.js +152 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-query.js.map +1 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-type.d.ts +26 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-type.js +101 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope-type.js.map +1 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope.d.ts +26 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope.js +135 -0
- package/dist-server/service/kpi-org-scope/kpi-org-scope.js.map +1 -0
- package/dist-server/service/kpi-statistic/kpi-statistic.d.ts +1 -0
- package/dist-server/service/kpi-statistic/kpi-statistic.js +11 -0
- package/dist-server/service/kpi-statistic/kpi-statistic.js.map +1 -1
- package/dist-server/service/kpi-value/kpi-value-mutation.js +71 -7
- package/dist-server/service/kpi-value/kpi-value-mutation.js.map +1 -1
- package/dist-server/service/kpi-value/kpi-value-type.d.ts +4 -2
- package/dist-server/service/kpi-value/kpi-value-type.js +12 -4
- package/dist-server/service/kpi-value/kpi-value-type.js.map +1 -1
- package/dist-server/service/kpi-value/kpi-value.d.ts +3 -1
- package/dist-server/service/kpi-value/kpi-value.js +11 -5
- package/dist-server/service/kpi-value/kpi-value.js.map +1 -1
- package/dist-server/service/utils/value-date-util.d.ts +1 -0
- package/dist-server/service/utils/value-date-util.js +41 -0
- package/dist-server/service/utils/value-date-util.js.map +1 -1
- package/dist-server/tsconfig.json +10 -0
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -6
- package/server/@types/index.d.ts +11 -0
- package/server/controllers/kpi-metric-value-provider.ts +5 -5
- package/server/controllers/kpi-value-provider.ts +4 -4
- package/server/migrations/1752190849680-seed-kpi-metrics.ts +124 -0
- package/server/migrations/1752190849681-seed-kpi.ts +356 -0
- package/server/migrations/1752192090123-add-grades-to-kpi.ts +67 -0
- package/server/migrations/1752192090124-add-kpi-statistics.ts +719 -0
- package/server/migrations/1752192090128-seed-kpi-org-scope.ts +132 -0
- package/server/migrations/1752192090129-seed-kpi-values.ts +207 -0
- package/server/migrations/grade-data/x11-performance-table.json +962 -0
- package/server/migrations/grade-data/x12-performance-table.json +611 -0
- package/server/migrations/grade-data/x14-performance-table.json +42 -0
- package/server/migrations/grade-data/x21-performance-table.json +889 -0
- package/server/migrations/grade-data/x22-performance-table.json +1064 -0
- package/server/migrations/grade-data/x23-performance-table.json +42 -0
- package/server/migrations/grade-data/x31-performance-table.json +644 -0
- package/server/migrations/grade-data/x32-performance-table.json +993 -0
- package/server/migrations/grade-data/x33-performance-table.json +195 -0
- package/server/migrations/grade-data/x34-performance-table.json +12 -0
- package/server/migrations/grade-data/x35-performance-table.json +42 -0
- package/server/migrations/grade-data/x41-performance-table.json +825 -0
- package/server/migrations/grade-data/x42-performance-table.json +786 -0
- package/server/migrations/grade-data/x43-performance-table.json +12 -0
- package/server/migrations/grade-data/x44-performance-table.json +42 -0
- package/server/migrations/grade-data/x51-performance-table.json +924 -0
- package/server/migrations/grade-data/x52-performance-table.json +42 -0
- package/server/migrations/grade-data/x61-performance-table.json +261 -0
- package/server/migrations/grade-data/x62-performance-table.json +42 -0
- package/server/migrations/seed-data/kpi-metrics-seed.json +454 -0
- package/server/migrations/seed-data/kpi-org-scope-seed.json +1676 -0
- package/server/migrations/seed-data/kpi-values-seed.json +402 -0
- package/server/migrations/seed-data/kpis-seed.json +488 -0
- package/server/service/index.ts +5 -12
- package/server/service/kpi/aggregate-kpi.ts +31 -13
- package/server/service/kpi/kpi-formula.service.ts +101 -0
- package/server/service/kpi/kpi-history.ts +0 -8
- package/server/service/kpi/kpi-mutation.ts +59 -19
- package/server/service/kpi/kpi-query.ts +118 -8
- package/server/service/kpi/kpi-type.ts +10 -4
- package/server/service/kpi/kpi.ts +17 -7
- package/server/service/kpi-metric/aggregate-kpi-metric.ts +55 -11
- package/server/service/kpi-metric-value/kpi-metric-value-mutation.ts +6 -6
- package/server/service/kpi-metric-value/kpi-metric-value-type.ts +4 -4
- package/server/service/kpi-metric-value/kpi-metric-value.ts +3 -3
- package/server/service/kpi-org-scope/index.ts +11 -0
- package/server/service/kpi-org-scope/kpi-org-scope-mutation.ts +173 -0
- package/server/service/kpi-org-scope/kpi-org-scope-query.ts +127 -0
- package/server/service/kpi-org-scope/kpi-org-scope-type.ts +68 -0
- package/server/service/kpi-org-scope/kpi-org-scope.ts +123 -0
- package/server/service/kpi-statistic/kpi-statistic.ts +10 -0
- package/server/service/kpi-value/kpi-value-mutation.ts +73 -7
- package/server/service/kpi-value/kpi-value-type.ts +10 -4
- package/server/service/kpi-value/kpi-value.ts +10 -5
- package/server/service/utils/value-date-util.ts +47 -0
- package/server/types/global.d.ts +8 -0
- package/things-factory.config.js +1 -0
- package/translations/en.json +15 -3
- package/translations/ja.json +13 -3
- package/translations/ko.json +15 -3
- package/translations/ms.json +13 -3
- package/translations/zh.json +13 -3
- package/client/google-map/script-loader.ts +0 -173
- package/client/pages/kpi-category/kpi-category-importer.ts +0 -90
- package/client/pages/kpi-category/kpi-category-list-page.ts +0 -537
- package/client/pages/kpi-category/kpi-category-value-calculator.ts +0 -233
- package/client/pages/kpi-category-value/kpi-category-value-list-page.ts +0 -404
- package/dist-client/google-map/script-loader.d.ts +0 -3
- package/dist-client/google-map/script-loader.js +0 -144
- package/dist-client/google-map/script-loader.js.map +0 -1
- package/dist-client/pages/kpi-category/kpi-category-importer.d.ts +0 -23
- package/dist-client/pages/kpi-category/kpi-category-importer.js +0 -92
- package/dist-client/pages/kpi-category/kpi-category-importer.js.map +0 -1
- package/dist-client/pages/kpi-category/kpi-category-list-page.d.ts +0 -74
- package/dist-client/pages/kpi-category/kpi-category-list-page.js +0 -517
- package/dist-client/pages/kpi-category/kpi-category-list-page.js.map +0 -1
- package/dist-client/pages/kpi-category/kpi-category-value-calculator.d.ts +0 -13
- package/dist-client/pages/kpi-category/kpi-category-value-calculator.js +0 -256
- package/dist-client/pages/kpi-category/kpi-category-value-calculator.js.map +0 -1
- package/dist-client/pages/kpi-category-value/kpi-category-value-list-page.d.ts +0 -63
- package/dist-client/pages/kpi-category-value/kpi-category-value-list-page.js +0 -393
- package/dist-client/pages/kpi-category-value/kpi-category-value-list-page.js.map +0 -1
- package/dist-server/service/kpi-category/index.d.ts +0 -6
- package/dist-server/service/kpi-category/index.js +0 -10
- package/dist-server/service/kpi-category/index.js.map +0 -1
- package/dist-server/service/kpi-category/kpi-category-mutation.d.ts +0 -9
- package/dist-server/service/kpi-category/kpi-category-mutation.js +0 -221
- package/dist-server/service/kpi-category/kpi-category-mutation.js.map +0 -1
- package/dist-server/service/kpi-category/kpi-category-query.d.ts +0 -18
- package/dist-server/service/kpi-category/kpi-category-query.js +0 -115
- package/dist-server/service/kpi-category/kpi-category-query.js.map +0 -1
- package/dist-server/service/kpi-category/kpi-category-type.d.ts +0 -24
- package/dist-server/service/kpi-category/kpi-category-type.js +0 -100
- package/dist-server/service/kpi-category/kpi-category-type.js.map +0 -1
- package/dist-server/service/kpi-category/kpi-category.d.ts +0 -22
- package/dist-server/service/kpi-category/kpi-category.js +0 -106
- package/dist-server/service/kpi-category/kpi-category.js.map +0 -1
- package/dist-server/service/kpi-category-value/index.d.ts +0 -6
- package/dist-server/service/kpi-category-value/index.js +0 -10
- package/dist-server/service/kpi-category-value/index.js.map +0 -1
- package/dist-server/service/kpi-category-value/kpi-category-value-mutation.d.ts +0 -8
- package/dist-server/service/kpi-category-value/kpi-category-value-mutation.js +0 -102
- package/dist-server/service/kpi-category-value/kpi-category-value-mutation.js.map +0 -1
- package/dist-server/service/kpi-category-value/kpi-category-value-query.d.ts +0 -13
- package/dist-server/service/kpi-category-value/kpi-category-value-query.js +0 -91
- package/dist-server/service/kpi-category-value/kpi-category-value-query.js.map +0 -1
- package/dist-server/service/kpi-category-value/kpi-category-value-type.d.ts +0 -19
- package/dist-server/service/kpi-category-value/kpi-category-value-type.js +0 -73
- package/dist-server/service/kpi-category-value/kpi-category-value-type.js.map +0 -1
- package/dist-server/service/kpi-category-value/kpi-category-value.d.ts +0 -19
- package/dist-server/service/kpi-category-value/kpi-category-value.js +0 -91
- package/dist-server/service/kpi-category-value/kpi-category-value.js.map +0 -1
- package/helps/kpi/kpi-category.md +0 -160
- package/server/service/kpi-category/index.ts +0 -7
- package/server/service/kpi-category/kpi-category-mutation.ts +0 -217
- package/server/service/kpi-category/kpi-category-query.ts +0 -87
- package/server/service/kpi-category/kpi-category-type.ts +0 -73
- package/server/service/kpi-category/kpi-category.ts +0 -95
- package/server/service/kpi-category-value/index.ts +0 -7
- package/server/service/kpi-category-value/kpi-category-value-mutation.ts +0 -88
- package/server/service/kpi-category-value/kpi-category-value-query.ts +0 -62
- package/server/service/kpi-category-value/kpi-category-value-type.ts +0 -48
- package/server/service/kpi-category-value/kpi-category-value.ts +0 -79
|
@@ -0,0 +1,454 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "품질성과 수준 평가",
|
|
4
|
+
"description": "품질성과 수준 평가",
|
|
5
|
+
"unit": null,
|
|
6
|
+
"source": null,
|
|
7
|
+
"field_name": null,
|
|
8
|
+
"active": true,
|
|
9
|
+
"schedule_id": null,
|
|
10
|
+
"timezone": "Asia\/Seoul",
|
|
11
|
+
"data_set_id": null,
|
|
12
|
+
"period_type": "MONTH",
|
|
13
|
+
"collect_type": "MANUAL",
|
|
14
|
+
"schedule": "0 0 0 1 * *"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "환경성과 수준 평가",
|
|
18
|
+
"description": "환경성과 수준 평가",
|
|
19
|
+
"unit": null,
|
|
20
|
+
"source": null,
|
|
21
|
+
"field_name": null,
|
|
22
|
+
"active": true,
|
|
23
|
+
"schedule_id": null,
|
|
24
|
+
"timezone": "Asia\/Seoul",
|
|
25
|
+
"data_set_id": null,
|
|
26
|
+
"period_type": "MONTH",
|
|
27
|
+
"collect_type": "MANUAL",
|
|
28
|
+
"schedule": "0 0 0 1 * *"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "검수자재 불합격 건수",
|
|
32
|
+
"description": "검수자재 불합격 건수",
|
|
33
|
+
"unit": "건",
|
|
34
|
+
"source": null,
|
|
35
|
+
"field_name": null,
|
|
36
|
+
"active": true,
|
|
37
|
+
"schedule_id": null,
|
|
38
|
+
"timezone": "Asia\/Seoul",
|
|
39
|
+
"data_set_id": null,
|
|
40
|
+
"period_type": "DAY",
|
|
41
|
+
"collect_type": "MANUAL",
|
|
42
|
+
"schedule": null
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "품질검측 불합격 건수",
|
|
46
|
+
"description": "품질검측 불합격 건수",
|
|
47
|
+
"unit": "건",
|
|
48
|
+
"source": null,
|
|
49
|
+
"field_name": null,
|
|
50
|
+
"active": true,
|
|
51
|
+
"schedule_id": null,
|
|
52
|
+
"timezone": "Asia\/Seoul",
|
|
53
|
+
"data_set_id": null,
|
|
54
|
+
"period_type": "DAY",
|
|
55
|
+
"collect_type": "MANUAL",
|
|
56
|
+
"schedule": null
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "품질시험 불합격 건수",
|
|
60
|
+
"description": "품질시험 불합격 건수",
|
|
61
|
+
"unit": "건",
|
|
62
|
+
"source": null,
|
|
63
|
+
"field_name": null,
|
|
64
|
+
"active": true,
|
|
65
|
+
"schedule_id": null,
|
|
66
|
+
"timezone": "Asia\/Seoul",
|
|
67
|
+
"data_set_id": null,
|
|
68
|
+
"period_type": "DAY",
|
|
69
|
+
"collect_type": "MANUAL",
|
|
70
|
+
"schedule": null
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "계획공사비",
|
|
74
|
+
"description": "계획공사비",
|
|
75
|
+
"unit": "억원",
|
|
76
|
+
"source": null,
|
|
77
|
+
"field_name": null,
|
|
78
|
+
"active": true,
|
|
79
|
+
"schedule_id": null,
|
|
80
|
+
"timezone": "Asia\/Seoul",
|
|
81
|
+
"data_set_id": null,
|
|
82
|
+
"period_type": "DAY",
|
|
83
|
+
"collect_type": "MANUAL",
|
|
84
|
+
"schedule": null
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "계획공정율",
|
|
88
|
+
"description": "계획공정율",
|
|
89
|
+
"unit": "%",
|
|
90
|
+
"source": null,
|
|
91
|
+
"field_name": null,
|
|
92
|
+
"active": true,
|
|
93
|
+
"schedule_id": null,
|
|
94
|
+
"timezone": "Asia\/Seoul",
|
|
95
|
+
"data_set_id": null,
|
|
96
|
+
"period_type": "DAY",
|
|
97
|
+
"collect_type": "MANUAL",
|
|
98
|
+
"schedule": null
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "실적공정율",
|
|
102
|
+
"description": "실적공정율",
|
|
103
|
+
"unit": "%",
|
|
104
|
+
"source": null,
|
|
105
|
+
"field_name": null,
|
|
106
|
+
"active": true,
|
|
107
|
+
"schedule_id": null,
|
|
108
|
+
"timezone": "Asia\/Seoul",
|
|
109
|
+
"data_set_id": null,
|
|
110
|
+
"period_type": "DAY",
|
|
111
|
+
"collect_type": "MANUAL",
|
|
112
|
+
"schedule": null
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "실제공사비",
|
|
116
|
+
"description": "실제공사비",
|
|
117
|
+
"unit": "억원",
|
|
118
|
+
"source": null,
|
|
119
|
+
"field_name": null,
|
|
120
|
+
"active": true,
|
|
121
|
+
"schedule_id": null,
|
|
122
|
+
"timezone": "Asia\/Seoul",
|
|
123
|
+
"data_set_id": null,
|
|
124
|
+
"period_type": "DAY",
|
|
125
|
+
"collect_type": "MANUAL",
|
|
126
|
+
"schedule": null
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "생산성성과 수준 평가",
|
|
130
|
+
"description": "생산성성과 수준 평가",
|
|
131
|
+
"unit": null,
|
|
132
|
+
"source": null,
|
|
133
|
+
"field_name": null,
|
|
134
|
+
"active": true,
|
|
135
|
+
"schedule_id": null,
|
|
136
|
+
"timezone": "Asia\/Seoul",
|
|
137
|
+
"data_set_id": null,
|
|
138
|
+
"period_type": "MONTH",
|
|
139
|
+
"collect_type": "MANUAL",
|
|
140
|
+
"schedule": "0 0 0 1 * *"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "계획공사기간",
|
|
144
|
+
"description": "계획공사기간",
|
|
145
|
+
"unit": "개월",
|
|
146
|
+
"source": null,
|
|
147
|
+
"field_name": null,
|
|
148
|
+
"active": true,
|
|
149
|
+
"schedule_id": null,
|
|
150
|
+
"timezone": "Asia\/Seoul",
|
|
151
|
+
"data_set_id": null,
|
|
152
|
+
"period_type": "DAY",
|
|
153
|
+
"collect_type": "MANUAL",
|
|
154
|
+
"schedule": null
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "노동손실일수",
|
|
158
|
+
"description": "노동손실일수",
|
|
159
|
+
"unit": "일",
|
|
160
|
+
"source": null,
|
|
161
|
+
"field_name": null,
|
|
162
|
+
"active": true,
|
|
163
|
+
"schedule_id": null,
|
|
164
|
+
"timezone": "Asia\/Seoul",
|
|
165
|
+
"data_set_id": null,
|
|
166
|
+
"period_type": "DAY",
|
|
167
|
+
"collect_type": "MANUAL",
|
|
168
|
+
"schedule": null
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"name": "실제공사기간",
|
|
172
|
+
"description": "실제공사기간",
|
|
173
|
+
"unit": "개월",
|
|
174
|
+
"source": null,
|
|
175
|
+
"field_name": null,
|
|
176
|
+
"active": true,
|
|
177
|
+
"schedule_id": null,
|
|
178
|
+
"timezone": "Asia\/Seoul",
|
|
179
|
+
"data_set_id": null,
|
|
180
|
+
"period_type": "DAY",
|
|
181
|
+
"collect_type": "MANUAL",
|
|
182
|
+
"schedule": null
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "1인당 연간 근로 시간",
|
|
186
|
+
"description": "1인당 연간 근로 시간",
|
|
187
|
+
"unit": "일",
|
|
188
|
+
"source": null,
|
|
189
|
+
"field_name": null,
|
|
190
|
+
"active": true,
|
|
191
|
+
"schedule_id": null,
|
|
192
|
+
"timezone": "Asia\/Seoul",
|
|
193
|
+
"data_set_id": null,
|
|
194
|
+
"period_type": "DAY",
|
|
195
|
+
"collect_type": "MANUAL",
|
|
196
|
+
"schedule": null
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "SL-PA 안전 평가",
|
|
200
|
+
"description": "SL-PA 안전 평가",
|
|
201
|
+
"unit": null,
|
|
202
|
+
"source": null,
|
|
203
|
+
"field_name": null,
|
|
204
|
+
"active": true,
|
|
205
|
+
"schedule_id": null,
|
|
206
|
+
"timezone": "Asia\/Seoul",
|
|
207
|
+
"data_set_id": null,
|
|
208
|
+
"period_type": "DAY",
|
|
209
|
+
"collect_type": "MANUAL",
|
|
210
|
+
"schedule": null
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "SL-PA 품질평가",
|
|
214
|
+
"description": "SL-PA 품질평가",
|
|
215
|
+
"unit": null,
|
|
216
|
+
"source": null,
|
|
217
|
+
"field_name": null,
|
|
218
|
+
"active": true,
|
|
219
|
+
"schedule_id": null,
|
|
220
|
+
"timezone": "Asia\/Seoul",
|
|
221
|
+
"data_set_id": null,
|
|
222
|
+
"period_type": "DAY",
|
|
223
|
+
"collect_type": "MANUAL",
|
|
224
|
+
"schedule": null
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"name": "총 설계 변경 건",
|
|
228
|
+
"description": "총 설계 변경 건",
|
|
229
|
+
"unit": "회",
|
|
230
|
+
"source": null,
|
|
231
|
+
"field_name": null,
|
|
232
|
+
"active": true,
|
|
233
|
+
"schedule_id": null,
|
|
234
|
+
"timezone": "Asia\/Seoul",
|
|
235
|
+
"created_at": "2025-07-25T09:45:46.628Z",
|
|
236
|
+
"updated_at": "2025-07-27T20:31:42.895Z",
|
|
237
|
+
"data_set_id": null,
|
|
238
|
+
"period_type": "MONTH",
|
|
239
|
+
"collect_type": "MANUAL",
|
|
240
|
+
"schedule": null
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"name": "총 건설 폐기물 발생량",
|
|
244
|
+
"description": "총 건설 폐기물 발생량",
|
|
245
|
+
"unit": "톤",
|
|
246
|
+
"source": null,
|
|
247
|
+
"field_name": null,
|
|
248
|
+
"active": true,
|
|
249
|
+
"schedule_id": null,
|
|
250
|
+
"timezone": "Asia\/Seoul",
|
|
251
|
+
"updated_at": "2025-07-27T21:40:11.369Z",
|
|
252
|
+
"data_set_id": null,
|
|
253
|
+
"period_type": "MONTH",
|
|
254
|
+
"collect_type": "MANUAL",
|
|
255
|
+
"schedule": null
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "투입인력",
|
|
259
|
+
"description": "투입인력",
|
|
260
|
+
"unit": "명",
|
|
261
|
+
"source": null,
|
|
262
|
+
"field_name": null,
|
|
263
|
+
"active": true,
|
|
264
|
+
"schedule_id": null,
|
|
265
|
+
"timezone": "Asia\/Seoul",
|
|
266
|
+
"updated_at": "2025-07-27T21:40:11.369Z",
|
|
267
|
+
"data_set_id": null,
|
|
268
|
+
"period_type": "MONTH",
|
|
269
|
+
"collect_type": "MANUAL",
|
|
270
|
+
"schedule": null
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"name": "총 근로자수",
|
|
274
|
+
"description": "총 근로자수",
|
|
275
|
+
"unit": "명",
|
|
276
|
+
"source": null,
|
|
277
|
+
"field_name": null,
|
|
278
|
+
"active": true,
|
|
279
|
+
"schedule_id": null,
|
|
280
|
+
"timezone": "Asia\/Seoul",
|
|
281
|
+
"data_set_id": null,
|
|
282
|
+
"period_type": "DAY",
|
|
283
|
+
"collect_type": "MANUAL",
|
|
284
|
+
"schedule": null
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"name": "재해 건수",
|
|
288
|
+
"description": "재해 건수",
|
|
289
|
+
"unit": "건",
|
|
290
|
+
"source": null,
|
|
291
|
+
"field_name": null,
|
|
292
|
+
"active": true,
|
|
293
|
+
"schedule_id": null,
|
|
294
|
+
"timezone": "Asia\/Seoul",
|
|
295
|
+
"data_set_id": null,
|
|
296
|
+
"period_type": "DAY",
|
|
297
|
+
"collect_type": "MANUAL",
|
|
298
|
+
"schedule": null
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"name": "일정 이탈 수준",
|
|
302
|
+
"description": "일정 이탈 수준",
|
|
303
|
+
"unit": null,
|
|
304
|
+
"source": null,
|
|
305
|
+
"field_name": null,
|
|
306
|
+
"active": true,
|
|
307
|
+
"schedule_id": null,
|
|
308
|
+
"timezone": "Asia\/Seoul",
|
|
309
|
+
"data_set_id": null,
|
|
310
|
+
"period_type": "DAY",
|
|
311
|
+
"collect_type": "MANUAL",
|
|
312
|
+
"schedule": null
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"name": "연간 근로자 수",
|
|
316
|
+
"description": "연간 근로자 수",
|
|
317
|
+
"unit": "명",
|
|
318
|
+
"source": null,
|
|
319
|
+
"field_name": null,
|
|
320
|
+
"active": true,
|
|
321
|
+
"schedule_id": null,
|
|
322
|
+
"timezone": "Asia\/Seoul",
|
|
323
|
+
"data_set_id": null,
|
|
324
|
+
"period_type": "DAY",
|
|
325
|
+
"collect_type": "MANUAL",
|
|
326
|
+
"schedule": null
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"name": "공사비",
|
|
330
|
+
"description": "공사비",
|
|
331
|
+
"unit": "억원",
|
|
332
|
+
"source": null,
|
|
333
|
+
"field_name": null,
|
|
334
|
+
"active": true,
|
|
335
|
+
"schedule_id": null,
|
|
336
|
+
"timezone": "Asia\/Seoul",
|
|
337
|
+
"data_set_id": null,
|
|
338
|
+
"period_type": "DAY",
|
|
339
|
+
"collect_type": "MANUAL",
|
|
340
|
+
"schedule": null
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"name": "연면적",
|
|
344
|
+
"description": "연면적",
|
|
345
|
+
"unit": "m2",
|
|
346
|
+
"source": null,
|
|
347
|
+
"field_name": null,
|
|
348
|
+
"active": true,
|
|
349
|
+
"schedule_id": null,
|
|
350
|
+
"timezone": "Asia\/Seoul",
|
|
351
|
+
"data_set_id": null,
|
|
352
|
+
"period_type": "DAY",
|
|
353
|
+
"collect_type": "MANUAL",
|
|
354
|
+
"schedule": null
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"name": "용적율",
|
|
358
|
+
"description": "용적율",
|
|
359
|
+
"unit": "%",
|
|
360
|
+
"source": null,
|
|
361
|
+
"field_name": null,
|
|
362
|
+
"active": true,
|
|
363
|
+
"schedule_id": null,
|
|
364
|
+
"timezone": "Asia\/Seoul",
|
|
365
|
+
"data_set_id": null,
|
|
366
|
+
"period_type": "DAY",
|
|
367
|
+
"collect_type": "MANUAL",
|
|
368
|
+
"schedule": null
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"name": "공사기간",
|
|
372
|
+
"description": "공사기간",
|
|
373
|
+
"unit": "개월",
|
|
374
|
+
"source": null,
|
|
375
|
+
"field_name": null,
|
|
376
|
+
"active": true,
|
|
377
|
+
"schedule_id": null,
|
|
378
|
+
"timezone": "Asia\/Seoul",
|
|
379
|
+
"data_set_id": null,
|
|
380
|
+
"period_type": "DAY",
|
|
381
|
+
"collect_type": "MANUAL",
|
|
382
|
+
"schedule": null
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"name": "지상층수",
|
|
386
|
+
"description": "지상층수",
|
|
387
|
+
"unit": "층",
|
|
388
|
+
"source": null,
|
|
389
|
+
"field_name": null,
|
|
390
|
+
"active": true,
|
|
391
|
+
"schedule_id": null,
|
|
392
|
+
"timezone": "Asia\/Seoul",
|
|
393
|
+
"data_set_id": null,
|
|
394
|
+
"period_type": "DAY",
|
|
395
|
+
"collect_type": "MANUAL",
|
|
396
|
+
"schedule": null
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"name": "지하층수",
|
|
400
|
+
"description": "지하층수",
|
|
401
|
+
"unit": "층",
|
|
402
|
+
"source": null,
|
|
403
|
+
"field_name": null,
|
|
404
|
+
"active": true,
|
|
405
|
+
"schedule_id": null,
|
|
406
|
+
"timezone": "Asia\/Seoul",
|
|
407
|
+
"data_set_id": null,
|
|
408
|
+
"period_type": "DAY",
|
|
409
|
+
"collect_type": "MANUAL",
|
|
410
|
+
"schedule": null
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"name": "비용성과 수준 평가",
|
|
414
|
+
"description": "비용성과 수준 평가",
|
|
415
|
+
"unit": null,
|
|
416
|
+
"source": null,
|
|
417
|
+
"field_name": null,
|
|
418
|
+
"active": true,
|
|
419
|
+
"schedule_id": null,
|
|
420
|
+
"timezone": "Asia\/Seoul",
|
|
421
|
+
"data_set_id": null,
|
|
422
|
+
"period_type": "MONTH",
|
|
423
|
+
"collect_type": "MANUAL",
|
|
424
|
+
"schedule": "0 0 0 1 * *"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"name": "안전성과 수준 평가",
|
|
428
|
+
"description": "안전성과 수준 평가",
|
|
429
|
+
"unit": null,
|
|
430
|
+
"source": null,
|
|
431
|
+
"field_name": null,
|
|
432
|
+
"active": true,
|
|
433
|
+
"schedule_id": null,
|
|
434
|
+
"timezone": "Asia\/Seoul",
|
|
435
|
+
"data_set_id": null,
|
|
436
|
+
"period_type": "MONTH",
|
|
437
|
+
"collect_type": "MANUAL",
|
|
438
|
+
"schedule": "0 0 0 1 * *"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"name": "일정성과 수준 평가",
|
|
442
|
+
"description": "일정성과 수준 평가",
|
|
443
|
+
"unit": null,
|
|
444
|
+
"source": null,
|
|
445
|
+
"field_name": null,
|
|
446
|
+
"active": true,
|
|
447
|
+
"schedule_id": null,
|
|
448
|
+
"timezone": "Asia\/Seoul",
|
|
449
|
+
"data_set_id": null,
|
|
450
|
+
"period_type": "MONTH",
|
|
451
|
+
"collect_type": "MANUAL",
|
|
452
|
+
"schedule": "0 0 0 1 * *"
|
|
453
|
+
}
|
|
454
|
+
]
|