@dssp/dssp 1.0.0-alpha.35 → 1.0.0-alpha.36

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 +4 -4
  2. package/schema.graphql +81 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dssp/dssp",
3
- "version": "1.0.0-alpha.35",
3
+ "version": "1.0.0-alpha.36",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -40,8 +40,8 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@dssp/building-complex": "^1.0.0-alpha.35",
43
- "@dssp/project": "^1.0.0-alpha.35",
44
- "@dssp/supervision": "^1.0.0-alpha.35",
43
+ "@dssp/project": "^1.0.0-alpha.36",
44
+ "@dssp/supervision": "^1.0.0-alpha.36",
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": "ed297576d670b3551aa9ba781f95ff36b0ba31e4"
78
+ "gitHead": "053e01f9ae9908d04593448f4e9a65864510b52c"
79
79
  }
package/schema.graphql CHANGED
@@ -1055,6 +1055,53 @@ type BuildingInspection {
1055
1055
  status: String
1056
1056
  updatedAt: DateTimeISO
1057
1057
  updater: User
1058
+ worklog: BuildingInspectionDailyWorklog
1059
+ }
1060
+
1061
+ """Entity for BuildingInspectionDailyWorklog"""
1062
+ type BuildingInspectionDailyWorklog {
1063
+ buildingInspections: [BuildingInspection!]
1064
+ createdAt: DateTimeISO
1065
+ creator: User
1066
+ date: String
1067
+ deletedAt: DateTimeISO
1068
+ directiveMemo: String
1069
+ documentNo: String
1070
+ domain: Domain
1071
+ id: ID
1072
+ memo: String
1073
+
1074
+ """총괄 감리 책임자"""
1075
+ overallSupervisory: User
1076
+ overallSupervisorySignature: String
1077
+ projectId: String!
1078
+
1079
+ """건축사보 (공종별 감리 관리자)"""
1080
+ taskSupervisory: User
1081
+ taskSupervisorySignature: String
1082
+ updatedAt: DateTimeISO
1083
+ updater: User
1084
+ worklogs: Object
1085
+ }
1086
+
1087
+ input BuildingInspectionDailyWorklogNew {
1088
+ buildingInspectionIds: [String!]
1089
+ date: String!
1090
+ directiveMemo: String
1091
+ memo: String
1092
+ overallSupervisoryId: String
1093
+ overallSupervisorySignature: String
1094
+ projectId: String!
1095
+ taskSupervisoryId: String
1096
+ taskSupervisorySignature: String
1097
+ worklogs: Object
1098
+ }
1099
+
1100
+ input BuildingInspectionDailyWorklogPatch {
1101
+ directiveMemo: String
1102
+ id: ID!
1103
+ memo: String
1104
+ worklogs: Object
1058
1105
  }
1059
1106
 
1060
1107
  type BuildingInspectionList {
@@ -1095,7 +1142,9 @@ type BuildingInspectionSummaryOfLevel {
1095
1142
 
1096
1143
  input BuildingInspectionsOfBuildingLevel {
1097
1144
  buildingLevelId: String!
1145
+ endDate: String
1098
1146
  limit: Float
1147
+ startDate: String
1099
1148
  }
1100
1149
 
1101
1150
  input BuildingInspectionsOfProject {
@@ -1170,8 +1219,17 @@ type Checklist {
1170
1219
  id: ID!
1171
1220
  inspectionDrawingType: String
1172
1221
  inspectionParts: [String!]
1222
+ inspectionRequestDocumentNo: String
1223
+ inspectionRequestMemo: String
1224
+ inspectionRequestUpdatedAt: DateTimeISO
1225
+ inspectionResultDocumentNo: String
1226
+ inspectionResultMemo: String
1227
+ inspectionResultStatus: String
1228
+ inspectionResultType: String
1229
+ inspectionResultUpdatedAt: DateTimeISO
1173
1230
  location: String
1174
1231
  name: String
1232
+ nameListAttachment: Attachment
1175
1233
 
1176
1234
  """총괄 시공 책임자"""
1177
1235
  overallConstructor: User
@@ -1206,7 +1264,7 @@ input ChecklistInputType {
1206
1264
  type ChecklistItem {
1207
1265
  checklist: Checklist
1208
1266
  checklistItemAttachmentCount: Float!
1209
- checklistItemAttachments: [Attachment!]!
1267
+ checklistItemAttachments(description: String): [Attachment!]!
1210
1268
  checklistItemCommentCount: Float!
1211
1269
  checklistItemComments: [ChecklistItemComment!]!
1212
1270
  constructionConfirmStatus: String
@@ -1265,6 +1323,10 @@ type ChecklistList {
1265
1323
 
1266
1324
  input ChecklistSubmitInputType {
1267
1325
  id: String!
1326
+ inspectionRequestMemo: String
1327
+ inspectionResultMemo: String
1328
+ inspectionResultStatus: String
1329
+ inspectionResultType: String
1268
1330
  overallConstructorSignature: String
1269
1331
  overallSupervisorySignature: String
1270
1332
  taskConstructorSignature: String
@@ -3112,6 +3174,9 @@ type Mutation {
3112
3174
  """To create Building Inspection information"""
3113
3175
  createBuildingInspection(patch: NewBuildingInspection!): BuildingInspection!
3114
3176
 
3177
+ """Create Daily Worklog by projectId+date"""
3178
+ createBuildingInspectionDailyWorklog(patch: BuildingInspectionDailyWorklogNew!): BuildingInspectionDailyWorklog!
3179
+
3115
3180
  """To create new ChecklistItemComment"""
3116
3181
  createChecklistItemComment(checklistItemComment: NewChecklistItemComment!): ChecklistItemComment!
3117
3182
 
@@ -3930,6 +3995,9 @@ type Mutation {
3930
3995
  """To create Building Inspection And Checklist information"""
3931
3996
  updateBuildingInspectionChecklist(buildingInspection: UpdateBuildingInspectionSubmitType!): Boolean!
3932
3997
 
3998
+ """Update Daily Worklog"""
3999
+ updateBuildingInspectionDailyWorklog(patch: BuildingInspectionDailyWorklogPatch!): BuildingInspectionDailyWorklog!
4000
+
3933
4001
  """To modify ChecklistItemComment information"""
3934
4002
  updateChecklistItemComment(id: String!, patch: ChecklistItemCommentPatch!): ChecklistItemComment!
3935
4003
 
@@ -5445,6 +5513,7 @@ type PDFDrawing {
5445
5513
  type PDFDrawingLink {
5446
5514
  box: String
5447
5515
  data: PDFDrawingLinkData
5516
+ dwgId: String
5448
5517
  id: String
5449
5518
  story: String
5450
5519
  symbol: String
@@ -5854,14 +5923,18 @@ type Project {
5854
5923
  createdAt: DateTimeISO
5855
5924
  creator: User
5856
5925
  deletedAt: DateTimeISO
5926
+ documentNaming: String
5857
5927
  domain: Domain
5858
5928
  endDate: String
5929
+ geoGroup: String
5859
5930
  id: ID!
5931
+ inputType: String
5860
5932
  inspPassRate: Float
5861
5933
  kpi: Float
5862
5934
  mainPhoto: Attachment
5863
5935
  name: String!
5864
- projectType: String!
5936
+ postalCode: String
5937
+ projectType: String
5865
5938
  robotCount: Float
5866
5939
  robotProgressRate: Float
5867
5940
  rootTasks: [Task!]
@@ -5897,6 +5970,9 @@ input ProjectPatch {
5897
5970
  """연관된 건물 복합체 정보 (선택 사항)"""
5898
5971
  buildingComplex: BuildingComplexPatch
5899
5972
 
5973
+ """프로젝트 문서 네이밍"""
5974
+ documentNaming: String
5975
+
5900
5976
  """프로젝트 준공일정"""
5901
5977
  endDate: String
5902
5978
 
@@ -6265,6 +6341,7 @@ type Query {
6265
6341
 
6266
6342
  """To fetch a BuildingInspection"""
6267
6343
  buildingInspection(id: String!): BuildingInspection
6344
+ buildingInspectionDailyWorklogByProjectIdAndDate(date: String!, projectId: String!): BuildingInspectionDailyWorklog
6268
6345
 
6269
6346
  """To fetch a BuildingInspection Summary"""
6270
6347
  buildingInspectionDateSummaryOfLevelAndPeriod(buildingLevelId: String!, endDate: String!, startDate: String!): [BuildingInspectionSummary!]
@@ -6542,6 +6619,7 @@ type Query {
6542
6619
  sortings: [Sorting!]
6543
6620
  ): ContactList!
6544
6621
  customers: [Domain!]!
6622
+ dailyWorklogDatesOfProject(endDate: String!, projectId: String!, startDate: String!): [BuildingInspectionDailyWorklog!]!
6545
6623
  decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
6546
6624
  decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
6547
6625
 
@@ -8648,6 +8726,7 @@ input UpdateBuildingInspectionSubmitType {
8648
8726
  checklist: ChecklistSubmitInputType!
8649
8727
  checklistItem: [ChecklistItemSubmitInputType!]!
8650
8728
  id: String!
8729
+ memo: String
8651
8730
  }
8652
8731
 
8653
8732
  input UpdateTaskChecklistSubmitType {