@dssp/dssp 0.0.10 → 0.0.11

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 +27 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dssp/dssp",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
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.10",
43
- "@dssp/project": "^0.0.10",
44
- "@dssp/supervision": "^0.0.10",
42
+ "@dssp/building-complex": "^0.0.11",
43
+ "@dssp/project": "^0.0.11",
44
+ "@dssp/supervision": "^0.0.11",
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": "f5e70faf42512bfb57de29892fff63e0bacf5d0e"
96
+ "gitHead": "a52f2688d11ebf3e7d727fbd8ff825920840be83"
97
97
  }
package/schema.graphql CHANGED
@@ -645,7 +645,7 @@ type Checklist {
645
645
  buildingInspection: BuildingInspection!
646
646
  checklistItems: [ChecklistItem!]!
647
647
  constructionDetailType: String
648
- constructionInsprctionDate: DateTimeISO
648
+ constructionInspectionDate: DateTimeISO
649
649
  constructionType: String
650
650
  createdAt: DateTimeISO
651
651
  creator: User
@@ -658,7 +658,7 @@ type Checklist {
658
658
  name: String
659
659
  overallConstructorSignature: String
660
660
  overallSupervisorySignature: String
661
- supervisorInsprctionDate: DateTimeISO
661
+ supervisorInspectionDate: DateTimeISO
662
662
  task: Task!
663
663
  taskConstructorSignature: String
664
664
  taskSupervisorySignature: String
@@ -705,6 +705,12 @@ type ChecklistItemList {
705
705
  total: Int!
706
706
  }
707
707
 
708
+ input ChecklistItemSubmitInputType {
709
+ constructionConfirmStatus: String
710
+ id: String!
711
+ supervisoryConfirmStatus: String
712
+ }
713
+
708
714
  type ChecklistList {
709
715
  items: [Checklist!]!
710
716
  total: Int!
@@ -718,6 +724,14 @@ input ChecklistPatch {
718
724
  name: String
719
725
  }
720
726
 
727
+ input ChecklistSubmitInputType {
728
+ id: String!
729
+ overallConstructorSignature: String
730
+ overallSupervisorySignature: String
731
+ taskConstructorSignature: String
732
+ taskSupervisorySignature: String
733
+ }
734
+
721
735
  type ChecklistTemplate {
722
736
  checklistTemplateItems: [ChecklistTemplateItem!]!
723
737
  createdAt: DateTimeISO
@@ -2814,7 +2828,10 @@ type Mutation {
2814
2828
  updateBuildingComplex(id: String!, patch: BuildingComplexPatch!): BuildingComplex!
2815
2829
 
2816
2830
  """To update Building Inspection information"""
2817
- updateBuildingInspection(patch: UpdateBuildingInspection!): BuildingInspection!
2831
+ updateBuildingInspection(patch: UpdateBuildingInspectionDrawingMarker!): BuildingInspection!
2832
+
2833
+ """To create Building Inspection And Checklist information"""
2834
+ updateBuildingInspectionChecklist(buildingInspection: UpdateBuildingInspectionSubmitType!): Boolean!
2818
2835
 
2819
2836
  """To modify Checklist information"""
2820
2837
  updateChecklist(id: String!, patch: ChecklistPatch!): Checklist!
@@ -5555,11 +5572,17 @@ input ThemePatch {
5555
5572
  value: Object
5556
5573
  }
5557
5574
 
5558
- input UpdateBuildingInspection {
5575
+ input UpdateBuildingInspectionDrawingMarker {
5559
5576
  drawingMarker: String
5560
5577
  id: String!
5561
5578
  }
5562
5579
 
5580
+ input UpdateBuildingInspectionSubmitType {
5581
+ checklist: ChecklistSubmitInputType!
5582
+ checklistItem: [ChecklistItemSubmitInputType!]!
5583
+ id: String!
5584
+ }
5585
+
5563
5586
  """The `Upload` scalar type represents a file upload."""
5564
5587
  scalar Upload
5565
5588