@dssp/dkpi 1.0.0-alpha.79 → 1.0.0-alpha.80
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/pages/project-complete-tabs/pc-tab1-plan.d.ts +10 -4
- package/dist-client/pages/project-complete-tabs/pc-tab1-plan.js +139 -45
- package/dist-client/pages/project-complete-tabs/pc-tab1-plan.js.map +1 -1
- package/dist-client/shared/complete-api.d.ts +28 -0
- package/dist-client/shared/complete-api.js +21 -0
- package/dist-client/shared/complete-api.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.d.ts +69 -0
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.js +223 -2
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/schema.graphql +28 -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.80",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@dssp/integration-allbaro": "^1.0.0-alpha.79",
|
|
52
|
-
"@dssp/integration-kiscon": "^1.0.0-alpha.
|
|
53
|
-
"@dssp/project": "^1.0.0-alpha.
|
|
52
|
+
"@dssp/integration-kiscon": "^1.0.0-alpha.80",
|
|
53
|
+
"@dssp/project": "^1.0.0-alpha.80",
|
|
54
54
|
"@material/web": "^2.4.0",
|
|
55
55
|
"@operato/chart": "^10.0.0-beta",
|
|
56
56
|
"@operato/gantt": "^10.0.0-beta",
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
"devDependencies": {
|
|
108
108
|
"@things-factory/builder": "^10.0.0-beta"
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "c7f3e0417094e1e87cba83252158d7adb8c1b6bd"
|
|
111
111
|
}
|
package/schema.graphql
CHANGED
|
@@ -4353,6 +4353,26 @@ type EnvVarResolution {
|
|
|
4353
4353
|
value: String
|
|
4354
4354
|
}
|
|
4355
4355
|
|
|
4356
|
+
"""외부 시스템(세움터/올바로/키스콘) 데이터 수집 시나리오 호출 결과"""
|
|
4357
|
+
type ExternalDataCollectionResult {
|
|
4358
|
+
"""
|
|
4359
|
+
시나리오 result 객체 — projectKey: value 맵. 세움터={area, floorAreaRatio, upperFloorCount, lowerFloorCount, structureType, siteType}, 올바로={totalConstructionWasteAmount}, 키스콘={constructionPeriod, constructionCost}. siteType (건축물 용도, 예 APARTMENT_COMPLEX) / structureType (구조형태) 는 BuildingComplex 의 시설유형/구조유형 속성 후보. KISCON 의 "공사유형(신설/증축)" 은 DSSP SiteType (용도분류) 와 다른 도메인이라 매핑 대상 아님.
|
|
4360
|
+
"""
|
|
4361
|
+
data: Object
|
|
4362
|
+
|
|
4363
|
+
"""표시 라벨 (세움터/올바로/키스콘)"""
|
|
4364
|
+
label: String!
|
|
4365
|
+
|
|
4366
|
+
"""성공 시 "완료", 실패 시 에러 메시지"""
|
|
4367
|
+
message: String!
|
|
4368
|
+
|
|
4369
|
+
"""시나리오 실행 성공 여부"""
|
|
4370
|
+
ok: Boolean!
|
|
4371
|
+
|
|
4372
|
+
"""소스 키: saeumteo | allbaro | kiscon"""
|
|
4373
|
+
source: String!
|
|
4374
|
+
}
|
|
4375
|
+
|
|
4356
4376
|
"""Entity for Favorite"""
|
|
4357
4377
|
type Favorite {
|
|
4358
4378
|
createdAt: DateTimeISO
|
|
@@ -6366,6 +6386,14 @@ type Mutation {
|
|
|
6366
6386
|
"""
|
|
6367
6387
|
cloneBoard(id: String!, patch: BoardPatch!, targetGroupId: String, targetSubdomain: String!): Board!
|
|
6368
6388
|
|
|
6389
|
+
"""Run only 건축물관리대장조회 scenario for project basic info collection."""
|
|
6390
|
+
collectProjectBasicInfo(address: String, projectId: String!): ExternalDataCollectionResult!
|
|
6391
|
+
|
|
6392
|
+
"""
|
|
6393
|
+
Run external data collection scenarios per system, returning per-system result.
|
|
6394
|
+
"""
|
|
6395
|
+
collectProjectExternalData(projectId: String!): [ExternalDataCollectionResult!]!
|
|
6396
|
+
|
|
6369
6397
|
"""Establishes a live connection to a configured endpoint."""
|
|
6370
6398
|
connectConnection(name: String!): Connection!
|
|
6371
6399
|
|