@dssp/dcsp 1.0.0-alpha.76 → 1.0.0-alpha.77
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/dist-client/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/schema.graphql +27 -0
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.77",
|
|
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.76",
|
|
43
|
-
"@dssp/project": "^1.0.0-alpha.
|
|
44
|
-
"@dssp/supervision": "^1.0.0-alpha.
|
|
43
|
+
"@dssp/project": "^1.0.0-alpha.77",
|
|
44
|
+
"@dssp/supervision": "^1.0.0-alpha.77",
|
|
45
45
|
"@material/web": "^2.4.0",
|
|
46
46
|
"@operato/chart": "^10.0.0-beta",
|
|
47
47
|
"@operato/gantt": "^10.0.0-beta",
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
"devDependencies": {
|
|
94
94
|
"@things-factory/builder": "^10.0.0-beta"
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "3752c56a8dd342972a54edf9e08c4fa4dce69781"
|
|
97
97
|
}
|
package/schema.graphql
CHANGED
|
@@ -1163,6 +1163,11 @@ type Board {
|
|
|
1163
1163
|
"""A base64 encoded thumbnail image of the board."""
|
|
1164
1164
|
thumbnail: String
|
|
1165
1165
|
|
|
1166
|
+
"""
|
|
1167
|
+
Timestamp of the last thumbnail generation. Separate lifecycle from updatedAt; only changes when the thumbnail image itself is regenerated.
|
|
1168
|
+
"""
|
|
1169
|
+
thumbnailUpdatedAt: DateTimeISO
|
|
1170
|
+
|
|
1166
1171
|
"""The type of the board, can be 'main', 'sub', or 'popup'."""
|
|
1167
1172
|
type: String
|
|
1168
1173
|
|
|
@@ -1341,6 +1346,11 @@ type BoardFavorite {
|
|
|
1341
1346
|
"""A base64 encoded thumbnail image of the board."""
|
|
1342
1347
|
thumbnail: String
|
|
1343
1348
|
|
|
1349
|
+
"""
|
|
1350
|
+
Timestamp of the last thumbnail generation. Separate lifecycle from updatedAt; only changes when the thumbnail image itself is regenerated.
|
|
1351
|
+
"""
|
|
1352
|
+
thumbnailUpdatedAt: DateTimeISO
|
|
1353
|
+
|
|
1344
1354
|
"""The type of the board, can be 'main', 'sub', or 'popup'."""
|
|
1345
1355
|
type: String
|
|
1346
1356
|
|
|
@@ -1776,6 +1786,11 @@ type BuildingInspectionSummaryOfLevel {
|
|
|
1776
1786
|
wait: Int!
|
|
1777
1787
|
}
|
|
1778
1788
|
|
|
1789
|
+
input BuildingInspectionsOfBuilding {
|
|
1790
|
+
buildingId: String!
|
|
1791
|
+
limit: Float
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1779
1794
|
input BuildingInspectionsOfBuildingLevel {
|
|
1780
1795
|
buildingLevelId: String!
|
|
1781
1796
|
endDate: String
|
|
@@ -10707,9 +10722,15 @@ type Query {
|
|
|
10707
10722
|
buildingInspection(id: String!): BuildingInspection
|
|
10708
10723
|
buildingInspectionDailyWorklogByProjectIdAndDate(date: String!, projectId: String!): BuildingInspectionDailyWorklog
|
|
10709
10724
|
|
|
10725
|
+
"""To fetch BuildingInspection Date Summary of Building"""
|
|
10726
|
+
buildingInspectionDateSummaryOfBuilding(buildingId: String!, endDate: String!, startDate: String!): [BuildingInspectionSummary!]
|
|
10727
|
+
|
|
10710
10728
|
"""To fetch a BuildingInspection Summary"""
|
|
10711
10729
|
buildingInspectionDateSummaryOfLevelAndPeriod(buildingLevelId: String!, endDate: String!, startDate: String!): [BuildingInspectionSummary!]
|
|
10712
10730
|
|
|
10731
|
+
"""To fetch BuildingInspection Date Summary of Project"""
|
|
10732
|
+
buildingInspectionDateSummaryOfProject(endDate: String!, projectId: String!, startDate: String!): [BuildingInspectionSummary!]
|
|
10733
|
+
|
|
10713
10734
|
"""To fetch multiple BuildingInspections"""
|
|
10714
10735
|
buildingInspectionHistories(
|
|
10715
10736
|
"""An array of filter conditions to apply to the list query."""
|
|
@@ -10728,6 +10749,9 @@ type Query {
|
|
|
10728
10749
|
"""To fetch a BuildingInspectionHistory"""
|
|
10729
10750
|
buildingInspectionHistory(id: String!): BuildingInspectionHistory
|
|
10730
10751
|
|
|
10752
|
+
"""To fetch BuildingInspection Summary of Building"""
|
|
10753
|
+
buildingInspectionSummaryOfBuilding(buildingId: String!): BuildingInspectionSummary
|
|
10754
|
+
|
|
10731
10755
|
"""To fetch a BuildingInspection Summary"""
|
|
10732
10756
|
buildingInspectionSummaryOfBuildingLevel(buildingLevelId: String!): BuildingInspectionSummary
|
|
10733
10757
|
|
|
@@ -10749,6 +10773,9 @@ type Query {
|
|
|
10749
10773
|
sortings: [Sorting!]
|
|
10750
10774
|
): BuildingInspectionList!
|
|
10751
10775
|
|
|
10776
|
+
"""To fetch BuildingInspections of Building"""
|
|
10777
|
+
buildingInspectionsOfBuilding(params: BuildingInspectionsOfBuilding!): BuildingInspectionList!
|
|
10778
|
+
|
|
10752
10779
|
"""To fetch multiple BuildingInspections"""
|
|
10753
10780
|
buildingInspectionsOfBuildingLevel(params: BuildingInspectionsOfBuildingLevel!): BuildingInspectionList!
|
|
10754
10781
|
|