@dssp/dcsp 1.0.0-alpha.27 → 1.0.0-alpha.28
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/package.json +4 -4
- package/schema.graphql +20 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dssp/dcsp",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.28",
|
|
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.22",
|
|
43
|
-
"@dssp/project": "^1.0.0-alpha.
|
|
44
|
-
"@dssp/supervision": "^1.0.0-alpha.
|
|
43
|
+
"@dssp/project": "^1.0.0-alpha.28",
|
|
44
|
+
"@dssp/supervision": "^1.0.0-alpha.28",
|
|
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": "
|
|
96
|
+
"gitHead": "3f5d327e9cb2956140480c1f7fe0f281f3836918"
|
|
97
97
|
}
|
package/schema.graphql
CHANGED
|
@@ -1055,10 +1055,12 @@ type BuildingInspection {
|
|
|
1055
1055
|
status: String
|
|
1056
1056
|
updatedAt: DateTimeISO
|
|
1057
1057
|
updater: User
|
|
1058
|
+
worklog: BuildingInspectionDailyWorklog
|
|
1058
1059
|
}
|
|
1059
1060
|
|
|
1060
1061
|
"""Entity for BuildingInspectionDailyWorklog"""
|
|
1061
1062
|
type BuildingInspectionDailyWorklog {
|
|
1063
|
+
buildingInspections: [BuildingInspection!]
|
|
1062
1064
|
createdAt: DateTimeISO
|
|
1063
1065
|
creator: User
|
|
1064
1066
|
date: String
|
|
@@ -1074,12 +1076,20 @@ type BuildingInspectionDailyWorklog {
|
|
|
1074
1076
|
worklogs: Object
|
|
1075
1077
|
}
|
|
1076
1078
|
|
|
1079
|
+
input BuildingInspectionDailyWorklogNew {
|
|
1080
|
+
buildingInspectionIds: [String!]
|
|
1081
|
+
date: String!
|
|
1082
|
+
directiveMemo: String
|
|
1083
|
+
memo: String
|
|
1084
|
+
projectId: String!
|
|
1085
|
+
worklogs: Object
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1077
1088
|
input BuildingInspectionDailyWorklogPatch {
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
id: ID
|
|
1089
|
+
directiveMemo: String
|
|
1090
|
+
id: ID!
|
|
1081
1091
|
memo: String
|
|
1082
|
-
|
|
1092
|
+
worklogs: Object
|
|
1083
1093
|
}
|
|
1084
1094
|
|
|
1085
1095
|
type BuildingInspectionList {
|
|
@@ -3152,6 +3162,9 @@ type Mutation {
|
|
|
3152
3162
|
"""To create Building Inspection information"""
|
|
3153
3163
|
createBuildingInspection(patch: NewBuildingInspection!): BuildingInspection!
|
|
3154
3164
|
|
|
3165
|
+
"""Create Daily Worklog by projectId+date"""
|
|
3166
|
+
createBuildingInspectionDailyWorklog(patch: BuildingInspectionDailyWorklogNew!): BuildingInspectionDailyWorklog!
|
|
3167
|
+
|
|
3155
3168
|
"""To create new ChecklistItemComment"""
|
|
3156
3169
|
createChecklistItemComment(checklistItemComment: NewChecklistItemComment!): ChecklistItemComment!
|
|
3157
3170
|
|
|
@@ -3364,12 +3377,6 @@ type Mutation {
|
|
|
3364
3377
|
"""To delete multiple BuildingComplexes"""
|
|
3365
3378
|
deleteBuildingComplexes(ids: [String!]!): Boolean!
|
|
3366
3379
|
|
|
3367
|
-
"""To delete BuildingInspectionDailyWorklog"""
|
|
3368
|
-
deleteBuildingInspectionDailyWorklog(id: String!): Boolean!
|
|
3369
|
-
|
|
3370
|
-
"""To delete multiple BuildingInspectionDailyWorklogs"""
|
|
3371
|
-
deleteBuildingInspectionDailyWorklogs(ids: [String!]!): Boolean!
|
|
3372
|
-
|
|
3373
3380
|
"""To delete multiple Checklists"""
|
|
3374
3381
|
deleteBuildingInspections(ids: [String!]!): Boolean!
|
|
3375
3382
|
|
|
@@ -3976,8 +3983,8 @@ type Mutation {
|
|
|
3976
3983
|
"""To create Building Inspection And Checklist information"""
|
|
3977
3984
|
updateBuildingInspectionChecklist(buildingInspection: UpdateBuildingInspectionSubmitType!): Boolean!
|
|
3978
3985
|
|
|
3979
|
-
"""
|
|
3980
|
-
updateBuildingInspectionDailyWorklog(
|
|
3986
|
+
"""Update Daily Worklog"""
|
|
3987
|
+
updateBuildingInspectionDailyWorklog(patch: BuildingInspectionDailyWorklogPatch!): BuildingInspectionDailyWorklog!
|
|
3981
3988
|
|
|
3982
3989
|
"""To modify ChecklistItemComment information"""
|
|
3983
3990
|
updateChecklistItemComment(id: String!, patch: ChecklistItemCommentPatch!): ChecklistItemComment!
|
|
@@ -4068,9 +4075,6 @@ type Mutation {
|
|
|
4068
4075
|
"""To modify multiple Buildings' information"""
|
|
4069
4076
|
updateMultipleBuilding(patches: [BuildingPatch!]!): [Building!]!
|
|
4070
4077
|
|
|
4071
|
-
"""To modify multiple BuildingInspectionDailyWorklogs' information"""
|
|
4072
|
-
updateMultipleBuildingInspectionDailyWorklog(patches: [BuildingInspectionDailyWorklogPatch!]!): [BuildingInspectionDailyWorklog!]!
|
|
4073
|
-
|
|
4074
4078
|
"""To modify multiple ChecklistTemplates' information"""
|
|
4075
4079
|
updateMultipleChecklistTemplate(patches: [ChecklistTemplatePatch!]!): [ChecklistTemplate!]!
|
|
4076
4080
|
|
|
@@ -6599,6 +6603,7 @@ type Query {
|
|
|
6599
6603
|
sortings: [Sorting!]
|
|
6600
6604
|
): ContactList!
|
|
6601
6605
|
customers: [Domain!]!
|
|
6606
|
+
dailyWorklogDatesOfProject(endDate: String!, projectId: String!, startDate: String!): [BuildingInspectionDailyWorklog!]!
|
|
6602
6607
|
decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
|
|
6603
6608
|
decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
|
|
6604
6609
|
|