@dssp/dkpi 1.0.0-alpha.84 → 1.0.0-alpha.85

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dssp/dkpi",
3
- "version": "1.0.0-alpha.84",
3
+ "version": "1.0.0-alpha.85",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -107,5 +107,5 @@
107
107
  "devDependencies": {
108
108
  "@things-factory/builder": "^10.0.0-beta"
109
109
  },
110
- "gitHead": "e8b2a12528b8f5cf0c3814474cad0f765d679fc0"
110
+ "gitHead": "bfe738d1a31fc9e58bb355695ec580fb819b8c37"
111
111
  }
package/schema.graphql CHANGED
@@ -10363,6 +10363,9 @@ input ProjectPatch {
10363
10363
  """프로젝트 준공일정"""
10364
10364
  endDate: String
10365
10365
 
10366
+ """지역 구분 코드 (시군구 식별, 통계 그룹핑용)"""
10367
+ geoGroup: String
10368
+
10366
10369
  """수정할 프로젝트의 ID"""
10367
10370
  id: String!
10368
10371
 
@@ -10378,6 +10381,9 @@ input ProjectPatch {
10378
10381
  """프로젝트 이름"""
10379
10382
  name: String
10380
10383
 
10384
+ """우편 코드 (5자리)"""
10385
+ postalCode: String
10386
+
10381
10387
  """로봇 작업 대수"""
10382
10388
  robotCount: Int
10383
10389
 
@@ -12111,7 +12117,7 @@ type Query {
12111
12117
  id: String!
12112
12118
  ): KpiMetricValue
12113
12119
 
12114
- """To fetch multiple KpiMetricValues"""
12120
+ """To fetch multiple KpiMetricValues (cross-domain admin view)"""
12115
12121
  kpiMetricValues(
12116
12122
  """An array of filter conditions to apply to the list query."""
12117
12123
  filters: [Filter!]
@@ -12294,6 +12300,23 @@ type Query {
12294
12300
  rootId: String
12295
12301
  ): [Kpi!]!
12296
12302
 
12303
+ """
12304
+ Fetch latest-version KpiValues only — one row per (domain, kpi, valueDate, kpiOrgScope).
12305
+ """
12306
+ latestKpiValues(
12307
+ """An array of filter conditions to apply to the list query."""
12308
+ filters: [Filter!]
12309
+
12310
+ """Inherited value type for the list query."""
12311
+ inherited: InheritedValueType
12312
+
12313
+ """Pagination options for the list query."""
12314
+ pagination: Pagination
12315
+
12316
+ """Sorting options for the list query."""
12317
+ sortings: [Sorting!]
12318
+ ): KpiValueList!
12319
+
12297
12320
  """To fetch a LiteMenu"""
12298
12321
  liteMenu(id: String!): LiteMenu!
12299
12322
 
@@ -12790,7 +12813,9 @@ type Query {
12790
12813
  sortings: [Sorting!]
12791
12814
  ): ProjectReportList!
12792
12815
 
12793
- """To fetch KpiValues by project group with X prefix kpi names"""
12816
+ """
12817
+ To fetch KpiValues by project group with X prefix kpi names (latest version only)
12818
+ """
12794
12819
  projectXKpiValues(projectId: String!): [KpiValue!]!
12795
12820
 
12796
12821
  """프로젝트 리스트"""