@dssp/dcsp 1.0.0-alpha.7 → 1.0.0-alpha.8

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/schema.graphql +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dssp/dcsp",
3
- "version": "1.0.0-alpha.7",
3
+ "version": "1.0.0-alpha.8",
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/dcsp:latest && docker image push hatiolab/dcsp:$npm_package_version"
40
40
  },
41
41
  "dependencies": {
42
- "@dssp/building-complex": "^1.0.0-alpha.7",
43
- "@dssp/project": "^1.0.0-alpha.7",
44
- "@dssp/supervision": "^1.0.0-alpha.7",
42
+ "@dssp/building-complex": "^1.0.0-alpha.8",
43
+ "@dssp/project": "^1.0.0-alpha.8",
44
+ "@dssp/supervision": "^1.0.0-alpha.8",
45
45
  "@material/web": "^2.1.0",
46
46
  "@operato/chart": "^9.0.0",
47
47
  "@operato/gantt": "^9.0.0",
@@ -93,5 +93,5 @@
93
93
  "devDependencies": {
94
94
  "@things-factory/builder": "^9.0.0"
95
95
  },
96
- "gitHead": "90bbd8d5727c5078ab9196f0b06f55853365bdb7"
96
+ "gitHead": "5f45c1ada38841c0dfe22e7405e85f7721808918"
97
97
  }
package/schema.graphql CHANGED
@@ -5751,6 +5751,7 @@ type Project {
5751
5751
  mainPhoto: Attachment
5752
5752
  name: String!
5753
5753
  projectType: String!
5754
+ robotCount: Float
5754
5755
  robotProgressRate: Float
5755
5756
  rootTasks: [Task!]
5756
5757
  scheduleTable: Attachment
@@ -5773,6 +5774,7 @@ type ProjectList {
5773
5774
  }
5774
5775
 
5775
5776
  input ProjectPatch {
5777
+ """연관된 건물 복합체 정보 (선택 사항)"""
5776
5778
  buildingComplex: BuildingComplexPatch
5777
5779
 
5778
5780
  """프로젝트 준공일정"""
@@ -5793,6 +5795,9 @@ input ProjectPatch {
5793
5795
  """프로젝트 이름"""
5794
5796
  name: String!
5795
5797
 
5798
+ """로봇 작업 대수"""
5799
+ robotCount: Int
5800
+
5796
5801
  """로봇 작업 진행율 (%)"""
5797
5802
  robotProgressRate: Float
5798
5803