@dssp/supervision 1.0.0-alpha.41 → 1.0.0-alpha.48
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/building-inspection/building-inspection-detail-ai-measurement.d.ts +56 -0
- package/dist-client/pages/building-inspection/building-inspection-detail-ai-measurement.js +789 -0
- package/dist-client/pages/building-inspection/building-inspection-detail-ai-measurement.js.map +1 -0
- package/dist-client/pages/building-inspection/building-inspection-detail-camera.d.ts +8 -6
- package/dist-client/pages/building-inspection/building-inspection-detail-camera.js +114 -65
- package/dist-client/pages/building-inspection/building-inspection-detail-camera.js.map +1 -1
- package/dist-client/pages/building-inspection/component/building-inspection-detail-header.d.ts +3 -0
- package/dist-client/pages/building-inspection/component/building-inspection-detail-header.js +77 -8
- package/dist-client/pages/building-inspection/component/building-inspection-detail-header.js.map +1 -1
- package/dist-client/pages/building-inspection/component/inspection-document/photo-album-popup.js +21 -6
- package/dist-client/pages/building-inspection/component/inspection-document/photo-album-popup.js.map +1 -1
- package/dist-client/pages/checklist-template/checklist-template-item.js +14 -3
- package/dist-client/pages/checklist-template/checklist-template-item.js.map +1 -1
- package/dist-client/route.d.ts +1 -1
- package/dist-client/route.js +3 -0
- package/dist-client/route.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/service/checklist/checklist-query.d.ts +1 -0
- package/dist-server/service/checklist/checklist-query.js +20 -0
- package/dist-server/service/checklist/checklist-query.js.map +1 -1
- package/dist-server/service/checklist-template-item/checklist-template-item-mutation.js +4 -1
- package/dist-server/service/checklist-template-item/checklist-template-item-mutation.js.map +1 -1
- package/dist-server/service/checklist-template-item/checklist-template-item-type.d.ts +2 -0
- package/dist-server/service/checklist-template-item/checklist-template-item-type.js +5 -0
- package/dist-server/service/checklist-template-item/checklist-template-item-type.js.map +1 -1
- package/dist-server/service/checklist-template-item/checklist-template-item.d.ts +6 -0
- package/dist-server/service/checklist-template-item/checklist-template-item.js +16 -1
- package/dist-server/service/checklist-template-item/checklist-template-item.js.map +1 -1
- package/dist-server/service/checklist-template-item/spec-matching-service.d.ts +2 -0
- package/dist-server/service/checklist-template-item/spec-matching-service.js +50 -0
- package/dist-server/service/checklist-template-item/spec-matching-service.js.map +1 -0
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -4
- package/things-factory.config.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dssp/supervision",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.48",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@dssp/building-complex": "^1.0.0-alpha.
|
|
31
|
-
"@dssp/drawing": "^1.0.0-alpha.
|
|
30
|
+
"@dssp/building-complex": "^1.0.0-alpha.47",
|
|
31
|
+
"@dssp/drawing": "^1.0.0-alpha.47",
|
|
32
32
|
"@operato/event-view": "^9.0.0",
|
|
33
33
|
"@operato/graphql": "^9.0.0",
|
|
34
34
|
"@operato/image-marker": "^9.0.0",
|
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
"@operato/shell": "^9.0.0",
|
|
38
38
|
"@things-factory/auth-base": "^9.0.0",
|
|
39
39
|
"@things-factory/shell": "^9.0.0",
|
|
40
|
+
"html2canvas": "1.4.1",
|
|
40
41
|
"moment": "2.30.1"
|
|
41
42
|
},
|
|
42
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "f37793ca16fbd38199f8b921989e8510b623685a"
|
|
43
44
|
}
|
package/things-factory.config.js
CHANGED
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
'building-inspection-detail-drawing', // 층 검측 상세 - 검측 도면
|
|
11
11
|
'building-inspection-detail-checklist', // 층 검측 상세 - 검측 체크리스트
|
|
12
12
|
'building-inspection-detail-camera', // 층 검측 상세 - 사진 촬영
|
|
13
|
+
'building-inspection-detail-ai-measurement', // 층 검측 상세 - AI 거리 측정
|
|
13
14
|
|
|
14
15
|
'building-inspection-grid-detail' // 동별 시공검측 상세 정보 (단국대)
|
|
15
16
|
].map(page => {
|