@dssp/dssp 1.0.0-alpha.8 → 1.0.0-alpha.9

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 +8 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dssp/dssp",
3
- "version": "1.0.0-alpha.8",
3
+ "version": "1.0.0-alpha.9",
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": "^1.0.0-alpha.8",
43
- "@dssp/project": "^1.0.0-alpha.8",
44
- "@dssp/supervision": "^1.0.0-alpha.8",
42
+ "@dssp/building-complex": "^1.0.0-alpha.9",
43
+ "@dssp/project": "^1.0.0-alpha.9",
44
+ "@dssp/supervision": "^1.0.0-alpha.9",
45
45
  "@material/web": "^2.1.0",
46
46
  "@operato/chart": "^9.0.0",
47
47
  "@operato/gantt": "^9.0.0",
@@ -75,5 +75,5 @@
75
75
  "devDependencies": {
76
76
  "@things-factory/builder": "^9.0.0"
77
77
  },
78
- "gitHead": "5f45c1ada38841c0dfe22e7405e85f7721808918"
78
+ "gitHead": "847441e42070c1d0183a52f15640a9bb07e74e4e"
79
79
  }
package/schema.graphql CHANGED
@@ -1155,6 +1155,7 @@ type ChatCompletionOutput {
1155
1155
  type Checklist {
1156
1156
  buildingInspection: BuildingInspection!
1157
1157
  checklistItems: [ChecklistItem!]!
1158
+ checklistReferenceType: String
1158
1159
  constructionDetailType: String
1159
1160
  constructionInspectionDate: DateTimeISO
1160
1161
  constructionType: String
@@ -1175,9 +1176,11 @@ type Checklist {
1175
1176
  """총괄 감리 책임자"""
1176
1177
  overallSupervisory: User
1177
1178
  overallSupervisorySignature: String
1179
+ project: Project!
1178
1180
  projectType: String
1179
1181
  supervisorInspectionDate: DateTimeISO
1180
1182
  task: Task!
1183
+ taskCode: String
1181
1184
 
1182
1185
  """공종별 시공 관리자"""
1183
1186
  taskConstructor: User
@@ -1191,12 +1194,15 @@ type Checklist {
1191
1194
  }
1192
1195
 
1193
1196
  input ChecklistInputType {
1197
+ checklistReferenceType: String
1194
1198
  constructionDetailType: String
1195
1199
  constructionType: String
1196
1200
  inspectionDrawingType: String
1197
1201
  inspectionParts: [String!]
1198
- location: String!
1202
+ location: String
1199
1203
  name: String!
1204
+ projectId: String
1205
+ taskCode: String
1200
1206
  }
1201
1207
 
1202
1208
  type ChecklistItem {
@@ -4339,7 +4345,7 @@ input NewBoardTemplate {
4339
4345
  }
4340
4346
 
4341
4347
  input NewBuildingInspection {
4342
- buildingLevelId: String!
4348
+ buildingLevelId: String
4343
4349
  cellX: Float
4344
4350
  cellY: Float
4345
4351
  checklist: ChecklistInputType!