@dssp/dssp 0.0.17 → 0.0.19
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/db_back.sqlite +0 -0
- package/package.json +5 -5
- package/schema.graphql +15 -6
package/db_back.sqlite
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dssp/dssp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"docker:push": "docker image push hatiolab/dssp:latest && docker image push hatiolab/dssp:$npm_package_version"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@dssp/building-complex": "^0.0.
|
|
43
|
-
"@dssp/project": "^0.0.
|
|
44
|
-
"@dssp/supervision": "^0.0.
|
|
42
|
+
"@dssp/building-complex": "^0.0.19",
|
|
43
|
+
"@dssp/project": "^0.0.19",
|
|
44
|
+
"@dssp/supervision": "^0.0.19",
|
|
45
45
|
"@material/web": "^2.1.0",
|
|
46
46
|
"@operato/chart": "^8.0.0-alpha",
|
|
47
47
|
"@operato/gantt": "^8.0.0-alpha",
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
"devDependencies": {
|
|
94
94
|
"@things-factory/builder": "^8.0.0-alpha"
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "a7d5da01e7a8920b9eb9c4f9340a4eb5ebdb12f9"
|
|
97
97
|
}
|
package/schema.graphql
CHANGED
|
@@ -588,6 +588,20 @@ type BuildingInspectionSummary {
|
|
|
588
588
|
wait: Int!
|
|
589
589
|
}
|
|
590
590
|
|
|
591
|
+
type BuildingInspectionSummaryOfLevel {
|
|
592
|
+
"""검측 실패 수"""
|
|
593
|
+
fail: Int!
|
|
594
|
+
|
|
595
|
+
"""검측 통과 수"""
|
|
596
|
+
pass: Int!
|
|
597
|
+
|
|
598
|
+
"""검측 요청 수"""
|
|
599
|
+
request: Int!
|
|
600
|
+
|
|
601
|
+
"""검측 대기 수"""
|
|
602
|
+
wait: Int!
|
|
603
|
+
}
|
|
604
|
+
|
|
591
605
|
input BuildingInspectionsOfBuildingLevel {
|
|
592
606
|
buildingLevelId: String!
|
|
593
607
|
limit: Float
|
|
@@ -608,6 +622,7 @@ type BuildingLevel {
|
|
|
608
622
|
elevationDrawingThumbnail: String
|
|
609
623
|
floor: Float!
|
|
610
624
|
id: ID!
|
|
625
|
+
inspectionSummary: BuildingInspectionSummaryOfLevel!
|
|
611
626
|
mainDrawing: Attachment
|
|
612
627
|
mainDrawingImage: String
|
|
613
628
|
mainDrawingThumbnail: String
|
|
@@ -2633,9 +2648,6 @@ type Mutation {
|
|
|
2633
2648
|
"""To import some Boards"""
|
|
2634
2649
|
importBoards(files: [Upload!]!, groupId: String!, overwrite: Boolean!): [Board!]!
|
|
2635
2650
|
|
|
2636
|
-
"""To import multiple BuildingComplexes"""
|
|
2637
|
-
importBuildingComplexes(buildingComplexes: [BuildingComplexPatch!]!): Boolean!
|
|
2638
|
-
|
|
2639
2651
|
"""To import multiple Buildings"""
|
|
2640
2652
|
importBuildings(buildings: [BuildingPatch!]!): Boolean!
|
|
2641
2653
|
|
|
@@ -2911,9 +2923,6 @@ type Mutation {
|
|
|
2911
2923
|
"""To modify multiple Buildings' information"""
|
|
2912
2924
|
updateMultipleBuilding(patches: [BuildingPatch!]!): [Building!]!
|
|
2913
2925
|
|
|
2914
|
-
"""To modify multiple BuildingComplexes' information"""
|
|
2915
|
-
updateMultipleBuildingComplex(patches: [BuildingComplexPatch!]!): [BuildingComplex!]!
|
|
2916
|
-
|
|
2917
2926
|
"""To modify multiple Checklists' information"""
|
|
2918
2927
|
updateMultipleChecklist(patches: [ChecklistPatch!]!): [Checklist!]!
|
|
2919
2928
|
|