@dssp/dcsp 1.0.0-alpha.51 → 1.0.0-alpha.53
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 +6 -1
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.53",
|
|
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.50",
|
|
43
|
-
"@dssp/project": "^1.0.0-alpha.
|
|
44
|
-
"@dssp/supervision": "^1.0.0-alpha.
|
|
43
|
+
"@dssp/project": "^1.0.0-alpha.53",
|
|
44
|
+
"@dssp/supervision": "^1.0.0-alpha.53",
|
|
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": "cc9504642aee54cb00df672bfe59992a3fdc49af"
|
|
97
97
|
}
|
package/schema.graphql
CHANGED
|
@@ -1929,6 +1929,7 @@ type ChecklistTemplateItem {
|
|
|
1929
1929
|
detailTypeName: String!
|
|
1930
1930
|
id: ID!
|
|
1931
1931
|
inspctionCriteria: String
|
|
1932
|
+
inspctionCriteriaText: String
|
|
1932
1933
|
mainType: String!
|
|
1933
1934
|
name: String!
|
|
1934
1935
|
sequence: Int
|
|
@@ -1948,6 +1949,7 @@ input ChecklistTemplateItemPatch {
|
|
|
1948
1949
|
detailType: String
|
|
1949
1950
|
id: ID
|
|
1950
1951
|
inspctionCriteria: String
|
|
1952
|
+
inspctionCriteriaText: String
|
|
1951
1953
|
mainType: String
|
|
1952
1954
|
name: String
|
|
1953
1955
|
sequence: Int
|
|
@@ -9480,7 +9482,7 @@ input ProfileInput {
|
|
|
9480
9482
|
"""프로젝트"""
|
|
9481
9483
|
type Project {
|
|
9482
9484
|
buildingComplex: BuildingComplex
|
|
9483
|
-
|
|
9485
|
+
completeReport: Attachment
|
|
9484
9486
|
createdAt: DateTimeISO
|
|
9485
9487
|
creator: User
|
|
9486
9488
|
deletedAt: DateTimeISO
|
|
@@ -10412,6 +10414,9 @@ type Query {
|
|
|
10412
10414
|
"""Sorting options for the list query."""
|
|
10413
10415
|
sortings: [Sorting!]
|
|
10414
10416
|
): ContactList!
|
|
10417
|
+
|
|
10418
|
+
"""프로젝트 타입 조회"""
|
|
10419
|
+
currentProjectType: String!
|
|
10415
10420
|
customers: [Domain!]!
|
|
10416
10421
|
dailyWorklogDatesOfProject(endDate: String!, projectId: String!, startDate: String!): [BuildingInspectionDailyWorklog!]!
|
|
10417
10422
|
|