@dssp/dcsp 1.0.0-alpha.25 → 1.0.0-alpha.26
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 +15 -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.26",
|
|
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.26",
|
|
44
|
+
"@dssp/supervision": "^1.0.0-alpha.26",
|
|
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": "5ad22d903bccd894178ff4ffb9fb2e32df6be31d"
|
|
97
97
|
}
|
package/schema.graphql
CHANGED
|
@@ -1170,8 +1170,15 @@ type Checklist {
|
|
|
1170
1170
|
id: ID!
|
|
1171
1171
|
inspectionDrawingType: String
|
|
1172
1172
|
inspectionParts: [String!]
|
|
1173
|
+
inspectionRequestDocumentNo: String
|
|
1174
|
+
inspectionRequestMemo: String
|
|
1175
|
+
inspectionResultDocumentNo: String
|
|
1176
|
+
inspectionResultMemo: String
|
|
1177
|
+
inspectionResultStatus: String
|
|
1178
|
+
inspectionResultType: String
|
|
1173
1179
|
location: String
|
|
1174
1180
|
name: String
|
|
1181
|
+
nameListAttachment: Attachment
|
|
1175
1182
|
|
|
1176
1183
|
"""총괄 시공 책임자"""
|
|
1177
1184
|
overallConstructor: User
|
|
@@ -1265,6 +1272,10 @@ type ChecklistList {
|
|
|
1265
1272
|
|
|
1266
1273
|
input ChecklistSubmitInputType {
|
|
1267
1274
|
id: String!
|
|
1275
|
+
inspectionRequestMemo: String
|
|
1276
|
+
inspectionResultMemo: String
|
|
1277
|
+
inspectionResultStatus: String
|
|
1278
|
+
inspectionResultType: String
|
|
1268
1279
|
overallConstructorSignature: String
|
|
1269
1280
|
overallSupervisorySignature: String
|
|
1270
1281
|
taskConstructorSignature: String
|
|
@@ -5854,6 +5865,7 @@ type Project {
|
|
|
5854
5865
|
createdAt: DateTimeISO
|
|
5855
5866
|
creator: User
|
|
5856
5867
|
deletedAt: DateTimeISO
|
|
5868
|
+
documentNaming: String
|
|
5857
5869
|
domain: Domain
|
|
5858
5870
|
endDate: String
|
|
5859
5871
|
id: ID!
|
|
@@ -5897,6 +5909,9 @@ input ProjectPatch {
|
|
|
5897
5909
|
"""연관된 건물 복합체 정보 (선택 사항)"""
|
|
5898
5910
|
buildingComplex: BuildingComplexPatch
|
|
5899
5911
|
|
|
5912
|
+
"""프로젝트 문서 네이밍"""
|
|
5913
|
+
documentNaming: String
|
|
5914
|
+
|
|
5900
5915
|
"""프로젝트 준공일정"""
|
|
5901
5916
|
endDate: String
|
|
5902
5917
|
|