@dssp/supervision 0.0.28 → 0.0.30
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/client/pages/building-inspection/building-inspection-detail-camera.ts +277 -0
- package/client/pages/building-inspection/building-inspection-detail-drawing.ts +26 -6
- package/client/pages/building-inspection/building-inspection-list.ts +0 -6
- package/client/pages/building-inspection/component/building-inspection-detail-header.ts +2 -2
- package/client/route.ts +4 -0
- package/dist-client/pages/building-inspection/building-inspection-detail-camera.d.ts +25 -0
- package/dist-client/pages/building-inspection/building-inspection-detail-camera.js +291 -0
- package/dist-client/pages/building-inspection/building-inspection-detail-camera.js.map +1 -0
- package/dist-client/pages/building-inspection/building-inspection-detail-drawing.js +24 -7
- package/dist-client/pages/building-inspection/building-inspection-detail-drawing.js.map +1 -1
- package/dist-client/pages/building-inspection/building-inspection-list.js +0 -6
- package/dist-client/pages/building-inspection/building-inspection-list.js.map +1 -1
- package/dist-client/pages/building-inspection/component/building-inspection-detail-header.js +2 -2
- package/dist-client/pages/building-inspection/component/building-inspection-detail-header.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/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -5
- package/things-factory.config.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dssp/supervision",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.30",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -27,16 +27,17 @@
|
|
|
27
27
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@dssp/building-complex": "^0.0.
|
|
31
|
-
"@dssp/drawing": "^0.0.
|
|
32
|
-
"@dssp/project": "^0.0.
|
|
30
|
+
"@dssp/building-complex": "^0.0.30",
|
|
31
|
+
"@dssp/drawing": "^0.0.30",
|
|
32
|
+
"@dssp/project": "^0.0.30",
|
|
33
33
|
"@operato/event-view": "^8.0.0-alpha",
|
|
34
34
|
"@operato/graphql": "^8.0.0-alpha",
|
|
35
35
|
"@operato/image-marker": "^8.0.0-alpha",
|
|
36
36
|
"@operato/input": "^8.0.0-alpha",
|
|
37
|
+
"@operato/mini-map": "^8.0.0-alpha",
|
|
37
38
|
"@operato/shell": "^8.0.0-alpha",
|
|
38
39
|
"@things-factory/auth-base": "^8.0.0-alpha",
|
|
39
40
|
"@things-factory/shell": "^8.0.0-alpha"
|
|
40
41
|
},
|
|
41
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "1091ab6303e2995122bfa3acf7a7a0988e8bc5cc"
|
|
42
43
|
}
|
package/things-factory.config.js
CHANGED
|
@@ -9,6 +9,7 @@ export default {
|
|
|
9
9
|
'building-inspection-list', // 층 검측 현황
|
|
10
10
|
'building-inspection-detail-drawing', // 층 검측 상세 - 검측 도면
|
|
11
11
|
'building-inspection-detail-checklist', // 층 검측 상세 - 검측 체크리스트
|
|
12
|
+
'building-inspection-detail-camera' // 층 검측 상세 - 사진 촬영
|
|
12
13
|
].map(page => {
|
|
13
14
|
return {
|
|
14
15
|
page,
|