@dssp/dssp 1.0.0-alpha.9 → 1.0.0-y.0
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/db_back.sqlite +0 -0
- package/dist-client/bootstrap.js +10 -12
- package/dist-client/bootstrap.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/menu-tools.js +1 -1
- package/dist-client/viewparts/menu-tools.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -5
- package/schema.graphql +542 -47
package/schema.graphql
CHANGED
|
@@ -499,6 +499,7 @@ enum AttributeSetItemType {
|
|
|
499
499
|
datetime
|
|
500
500
|
file
|
|
501
501
|
number
|
|
502
|
+
secret
|
|
502
503
|
select
|
|
503
504
|
text
|
|
504
505
|
}
|
|
@@ -976,6 +977,13 @@ type Building {
|
|
|
976
977
|
|
|
977
978
|
"""단지 정보"""
|
|
978
979
|
type BuildingComplex {
|
|
980
|
+
actualArea: Float
|
|
981
|
+
actualConstructionCost: Float
|
|
982
|
+
actualCoverageRatio: Float
|
|
983
|
+
actualDesignChangeCount: Float
|
|
984
|
+
actualFloorAreaRatio: Float
|
|
985
|
+
actualProgress: Float
|
|
986
|
+
actualWorkerCount: Float
|
|
979
987
|
address: String
|
|
980
988
|
area: Float
|
|
981
989
|
buildingCount: Float
|
|
@@ -984,13 +992,16 @@ type BuildingComplex {
|
|
|
984
992
|
constructionCompany: String
|
|
985
993
|
constructionCost: Float
|
|
986
994
|
constructionType: String
|
|
995
|
+
coverageRatio: Float
|
|
987
996
|
createdAt: DateTimeISO
|
|
988
997
|
creator: User
|
|
989
998
|
deletedAt: DateTimeISO
|
|
999
|
+
designChangeCount: Float
|
|
990
1000
|
designCompany: String
|
|
991
1001
|
domain: Domain
|
|
992
1002
|
drawing: Attachment
|
|
993
1003
|
etc: String
|
|
1004
|
+
floorAreaRatio: Float
|
|
994
1005
|
householdCount: Float
|
|
995
1006
|
id: ID!
|
|
996
1007
|
latitude: Float
|
|
@@ -1000,26 +1011,41 @@ type BuildingComplex {
|
|
|
1000
1011
|
overallSupervisoryEmails: [String!]
|
|
1001
1012
|
planXScale: Float
|
|
1002
1013
|
planYScale: Float
|
|
1014
|
+
plannedProgress: Float
|
|
1015
|
+
siteType: String
|
|
1016
|
+
structureType: String
|
|
1003
1017
|
supervisoryCompany: String
|
|
1004
1018
|
taskConstructorEmails: [String!]
|
|
1005
1019
|
taskSupervisoryEmails: [String!]
|
|
1006
1020
|
updatedAt: DateTimeISO
|
|
1007
1021
|
updater: User
|
|
1022
|
+
virtualTourLink: String
|
|
1023
|
+
workerCount: Float
|
|
1008
1024
|
}
|
|
1009
1025
|
|
|
1010
1026
|
input BuildingComplexPatch {
|
|
1027
|
+
actualArea: Float
|
|
1028
|
+
actualConstructionCost: Float
|
|
1029
|
+
actualCoverageRatio: Float
|
|
1030
|
+
actualDesignChangeCount: Float
|
|
1031
|
+
actualFloorAreaRatio: Float
|
|
1032
|
+
actualProgress: Float
|
|
1033
|
+
actualWorkerCount: Float
|
|
1011
1034
|
address: String
|
|
1012
1035
|
area: Float
|
|
1013
|
-
buildingCount:
|
|
1036
|
+
buildingCount: Int
|
|
1014
1037
|
buildings: [BuildingPatch!]
|
|
1015
1038
|
clientCompany: String
|
|
1016
1039
|
constructionCompany: String
|
|
1017
1040
|
constructionCost: Float
|
|
1018
1041
|
constructionType: String
|
|
1042
|
+
coverageRatio: Float
|
|
1043
|
+
designChangeCount: Int
|
|
1019
1044
|
designCompany: String
|
|
1020
1045
|
drawingUpload: Upload
|
|
1021
1046
|
etc: String
|
|
1022
|
-
|
|
1047
|
+
floorAreaRatio: Float
|
|
1048
|
+
householdCount: Int
|
|
1023
1049
|
id: String
|
|
1024
1050
|
latitude: Float
|
|
1025
1051
|
longitude: Float
|
|
@@ -1028,13 +1054,18 @@ input BuildingComplexPatch {
|
|
|
1028
1054
|
overallSupervisoryEmails: [String!]
|
|
1029
1055
|
planXScale: Float
|
|
1030
1056
|
planYScale: Float
|
|
1057
|
+
plannedProgress: Float
|
|
1058
|
+
siteType: SiteType
|
|
1059
|
+
structureType: String
|
|
1031
1060
|
supervisoryCompany: String
|
|
1032
1061
|
taskConstructorEmails: [String!]
|
|
1033
1062
|
taskSupervisoryEmails: [String!]
|
|
1063
|
+
virtualTourLink: String
|
|
1064
|
+
workerCount: Int
|
|
1034
1065
|
}
|
|
1035
1066
|
|
|
1036
1067
|
type BuildingInspection {
|
|
1037
|
-
|
|
1068
|
+
attachments: [Attachment!]!
|
|
1038
1069
|
buildingInspectionSummary: BuildingInspectionSummary!
|
|
1039
1070
|
buildingLevel: BuildingLevel
|
|
1040
1071
|
cellX: Float
|
|
@@ -1045,12 +1076,88 @@ type BuildingInspection {
|
|
|
1045
1076
|
deletedAt: DateTimeISO
|
|
1046
1077
|
drawingMarker: String
|
|
1047
1078
|
id: ID!
|
|
1048
|
-
manager:
|
|
1079
|
+
manager: ProjectManagerOutput
|
|
1080
|
+
memo: String
|
|
1049
1081
|
projectType: String
|
|
1050
1082
|
requestDate: String
|
|
1051
1083
|
status: String
|
|
1052
1084
|
updatedAt: DateTimeISO
|
|
1053
1085
|
updater: User
|
|
1086
|
+
worklog: BuildingInspectionDailyWorklog
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
"""Entity for BuildingInspectionDailyWorklog"""
|
|
1090
|
+
type BuildingInspectionDailyWorklog {
|
|
1091
|
+
buildingInspections: [BuildingInspection!]
|
|
1092
|
+
createdAt: DateTimeISO
|
|
1093
|
+
creator: User
|
|
1094
|
+
date: String
|
|
1095
|
+
deletedAt: DateTimeISO
|
|
1096
|
+
directiveMemo: String
|
|
1097
|
+
documentNo: String
|
|
1098
|
+
domain: Domain
|
|
1099
|
+
id: ID
|
|
1100
|
+
memo: String
|
|
1101
|
+
|
|
1102
|
+
"""총괄 감리 책임자"""
|
|
1103
|
+
overallSupervisory: User
|
|
1104
|
+
overallSupervisorySignature: String
|
|
1105
|
+
projectId: String!
|
|
1106
|
+
|
|
1107
|
+
"""건축사보 (공종별 감리 관리자)"""
|
|
1108
|
+
taskSupervisory: User
|
|
1109
|
+
taskSupervisorySignature: String
|
|
1110
|
+
updatedAt: DateTimeISO
|
|
1111
|
+
updater: User
|
|
1112
|
+
worklogs: Object
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
input BuildingInspectionDailyWorklogNew {
|
|
1116
|
+
buildingInspectionIds: [String!]
|
|
1117
|
+
date: String!
|
|
1118
|
+
directiveMemo: String
|
|
1119
|
+
memo: String
|
|
1120
|
+
overallSupervisoryId: String
|
|
1121
|
+
overallSupervisorySignature: String
|
|
1122
|
+
projectId: String!
|
|
1123
|
+
taskSupervisoryId: String
|
|
1124
|
+
taskSupervisorySignature: String
|
|
1125
|
+
worklogs: Object
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
input BuildingInspectionDailyWorklogPatch {
|
|
1129
|
+
directiveMemo: String
|
|
1130
|
+
id: ID!
|
|
1131
|
+
memo: String
|
|
1132
|
+
worklogs: Object
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
"""History Entity of BuildingInspection"""
|
|
1136
|
+
type BuildingInspectionHistory {
|
|
1137
|
+
attachments: [Attachment!]!
|
|
1138
|
+
buildingLevel: BuildingLevel
|
|
1139
|
+
cellX: Float
|
|
1140
|
+
cellY: Float
|
|
1141
|
+
checklistHistory: ChecklistHistory
|
|
1142
|
+
checklistId: String
|
|
1143
|
+
createdAt: DateTimeISO
|
|
1144
|
+
creator: User
|
|
1145
|
+
drawingMarker: String
|
|
1146
|
+
id: ID!
|
|
1147
|
+
loggedAt: DateTimeISO
|
|
1148
|
+
manager: ProjectManagerOutput
|
|
1149
|
+
memo: String
|
|
1150
|
+
projectType: String
|
|
1151
|
+
requestDate: String
|
|
1152
|
+
status: String
|
|
1153
|
+
timestamp: User!
|
|
1154
|
+
updater: User
|
|
1155
|
+
worklog: BuildingInspectionDailyWorklog
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
type BuildingInspectionHistoryList {
|
|
1159
|
+
items: [BuildingInspectionHistory!]!
|
|
1160
|
+
total: Int!
|
|
1054
1161
|
}
|
|
1055
1162
|
|
|
1056
1163
|
type BuildingInspectionList {
|
|
@@ -1091,7 +1198,9 @@ type BuildingInspectionSummaryOfLevel {
|
|
|
1091
1198
|
|
|
1092
1199
|
input BuildingInspectionsOfBuildingLevel {
|
|
1093
1200
|
buildingLevelId: String!
|
|
1201
|
+
endDate: String
|
|
1094
1202
|
limit: Float
|
|
1203
|
+
startDate: String
|
|
1095
1204
|
}
|
|
1096
1205
|
|
|
1097
1206
|
input BuildingInspectionsOfProject {
|
|
@@ -1166,8 +1275,17 @@ type Checklist {
|
|
|
1166
1275
|
id: ID!
|
|
1167
1276
|
inspectionDrawingType: String
|
|
1168
1277
|
inspectionParts: [String!]
|
|
1278
|
+
inspectionRequestDocumentNo: String
|
|
1279
|
+
inspectionRequestMemo: String
|
|
1280
|
+
inspectionRequestUpdatedAt: DateTimeISO
|
|
1281
|
+
inspectionResultDocumentNo: String
|
|
1282
|
+
inspectionResultMemo: String
|
|
1283
|
+
inspectionResultStatus: String
|
|
1284
|
+
inspectionResultType: String
|
|
1285
|
+
inspectionResultUpdatedAt: DateTimeISO
|
|
1169
1286
|
location: String
|
|
1170
1287
|
name: String
|
|
1288
|
+
nameListAttachment: Attachment
|
|
1171
1289
|
|
|
1172
1290
|
"""총괄 시공 책임자"""
|
|
1173
1291
|
overallConstructor: User
|
|
@@ -1176,11 +1294,8 @@ type Checklist {
|
|
|
1176
1294
|
"""총괄 감리 책임자"""
|
|
1177
1295
|
overallSupervisory: User
|
|
1178
1296
|
overallSupervisorySignature: String
|
|
1179
|
-
project: Project!
|
|
1180
1297
|
projectType: String
|
|
1181
1298
|
supervisorInspectionDate: DateTimeISO
|
|
1182
|
-
task: Task!
|
|
1183
|
-
taskCode: String
|
|
1184
1299
|
|
|
1185
1300
|
"""공종별 시공 관리자"""
|
|
1186
1301
|
taskConstructor: User
|
|
@@ -1193,22 +1308,71 @@ type Checklist {
|
|
|
1193
1308
|
updater: User
|
|
1194
1309
|
}
|
|
1195
1310
|
|
|
1196
|
-
|
|
1311
|
+
"""Entity for ChecklistHistory"""
|
|
1312
|
+
type ChecklistHistory {
|
|
1313
|
+
buildingInspectionHistory: BuildingInspectionHistory!
|
|
1314
|
+
checklistItemHistories: [ChecklistItemHistory!]!
|
|
1197
1315
|
checklistReferenceType: String
|
|
1316
|
+
constructionDetailType: String
|
|
1317
|
+
constructionInspectionDate: DateTimeISO
|
|
1318
|
+
constructionType: String
|
|
1319
|
+
createdAt: DateTimeISO
|
|
1320
|
+
creator: User
|
|
1321
|
+
documentNo: String
|
|
1322
|
+
id: ID!
|
|
1323
|
+
inspectionDrawingType: String
|
|
1324
|
+
inspectionParts: [String!]
|
|
1325
|
+
inspectionRequestDocumentNo: String
|
|
1326
|
+
inspectionRequestMemo: String
|
|
1327
|
+
inspectionRequestUpdatedAt: DateTimeISO
|
|
1328
|
+
inspectionResultDocumentNo: String
|
|
1329
|
+
inspectionResultMemo: String
|
|
1330
|
+
inspectionResultStatus: String
|
|
1331
|
+
inspectionResultType: String
|
|
1332
|
+
inspectionResultUpdatedAt: DateTimeISO
|
|
1333
|
+
location: String
|
|
1334
|
+
loggedAt: DateTimeISO
|
|
1335
|
+
name: String
|
|
1336
|
+
|
|
1337
|
+
"""총괄 시공 책임자"""
|
|
1338
|
+
overallConstructor: User
|
|
1339
|
+
overallConstructorSignature: String
|
|
1340
|
+
|
|
1341
|
+
"""총괄 감리 책임자"""
|
|
1342
|
+
overallSupervisory: User
|
|
1343
|
+
overallSupervisorySignature: String
|
|
1344
|
+
projectType: String
|
|
1345
|
+
supervisorInspectionDate: DateTimeISO
|
|
1346
|
+
|
|
1347
|
+
"""공종별 시공 관리자"""
|
|
1348
|
+
taskConstructor: User
|
|
1349
|
+
taskConstructorSignature: String
|
|
1350
|
+
|
|
1351
|
+
"""건축사보 (공종별 감리 관리자)"""
|
|
1352
|
+
taskSupervisory: User
|
|
1353
|
+
taskSupervisorySignature: String
|
|
1354
|
+
timestamp: User!
|
|
1355
|
+
updater: User
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
type ChecklistHistoryList {
|
|
1359
|
+
items: [ChecklistHistory!]!
|
|
1360
|
+
total: Int!
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
input ChecklistInputType {
|
|
1198
1364
|
constructionDetailType: String
|
|
1199
1365
|
constructionType: String
|
|
1200
1366
|
inspectionDrawingType: String
|
|
1201
1367
|
inspectionParts: [String!]
|
|
1202
1368
|
location: String
|
|
1203
1369
|
name: String!
|
|
1204
|
-
projectId: String
|
|
1205
|
-
taskCode: String
|
|
1206
1370
|
}
|
|
1207
1371
|
|
|
1208
1372
|
type ChecklistItem {
|
|
1209
1373
|
checklist: Checklist
|
|
1210
1374
|
checklistItemAttachmentCount: Float!
|
|
1211
|
-
checklistItemAttachments: [Attachment!]!
|
|
1375
|
+
checklistItemAttachments(description: String): [Attachment!]!
|
|
1212
1376
|
checklistItemCommentCount: Float!
|
|
1213
1377
|
checklistItemComments: [ChecklistItemComment!]!
|
|
1214
1378
|
constructionConfirmStatus: String
|
|
@@ -1242,6 +1406,33 @@ input ChecklistItemCommentPatch {
|
|
|
1242
1406
|
id: ID
|
|
1243
1407
|
}
|
|
1244
1408
|
|
|
1409
|
+
"""History Entity of ChecklistItem"""
|
|
1410
|
+
type ChecklistItemHistory {
|
|
1411
|
+
checklistHistory: ChecklistHistory
|
|
1412
|
+
checklistId: String
|
|
1413
|
+
checklistItemAttachmentCount: Float!
|
|
1414
|
+
checklistItemAttachments(description: String): [Attachment!]!
|
|
1415
|
+
checklistItemCommentCount: Float!
|
|
1416
|
+
checklistItemComments: [ChecklistItemComment!]!
|
|
1417
|
+
constructionConfirmStatus: String
|
|
1418
|
+
createdAt: DateTimeISO
|
|
1419
|
+
creator: User
|
|
1420
|
+
detailType: String!
|
|
1421
|
+
id: ID!
|
|
1422
|
+
inspctionCriteria: String
|
|
1423
|
+
loggedAt: DateTimeISO
|
|
1424
|
+
mainType: String!
|
|
1425
|
+
name: String
|
|
1426
|
+
sequence: Float
|
|
1427
|
+
supervisoryConfirmStatus: String
|
|
1428
|
+
updater: User
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
type ChecklistItemHistoryList {
|
|
1432
|
+
items: [ChecklistItemHistory!]!
|
|
1433
|
+
total: Int!
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1245
1436
|
input ChecklistItemInputType {
|
|
1246
1437
|
detailType: String!
|
|
1247
1438
|
inspctionCriteria: String
|
|
@@ -1265,16 +1456,12 @@ type ChecklistList {
|
|
|
1265
1456
|
total: Int!
|
|
1266
1457
|
}
|
|
1267
1458
|
|
|
1268
|
-
input ChecklistPatch {
|
|
1269
|
-
active: Boolean
|
|
1270
|
-
cuFlag: String
|
|
1271
|
-
description: String
|
|
1272
|
-
id: ID
|
|
1273
|
-
name: String
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
1459
|
input ChecklistSubmitInputType {
|
|
1277
1460
|
id: String!
|
|
1461
|
+
inspectionRequestMemo: String
|
|
1462
|
+
inspectionResultMemo: String
|
|
1463
|
+
inspectionResultStatus: String
|
|
1464
|
+
inspectionResultType: String
|
|
1278
1465
|
overallConstructorSignature: String
|
|
1279
1466
|
overallSupervisorySignature: String
|
|
1280
1467
|
taskConstructorSignature: String
|
|
@@ -1426,9 +1613,7 @@ input CommonCodePatch {
|
|
|
1426
1613
|
|
|
1427
1614
|
"""Represents a configured connection to an external system or service."""
|
|
1428
1615
|
type Connection {
|
|
1429
|
-
"""
|
|
1430
|
-
Indicates whether the connection is currently active and should be maintained.
|
|
1431
|
-
"""
|
|
1616
|
+
"""Whether to automatically connect when the application starts"""
|
|
1432
1617
|
active: Boolean
|
|
1433
1618
|
|
|
1434
1619
|
"""The timestamp when the connection was created."""
|
|
@@ -1455,6 +1640,11 @@ type Connection {
|
|
|
1455
1640
|
"""The name of the connection."""
|
|
1456
1641
|
name: String!
|
|
1457
1642
|
|
|
1643
|
+
"""
|
|
1644
|
+
When true, connection is created on-demand when needed and cleaned up after use.
|
|
1645
|
+
"""
|
|
1646
|
+
onDemand: Boolean
|
|
1647
|
+
|
|
1458
1648
|
"""A key-value map of parameters for the connection."""
|
|
1459
1649
|
params: Object
|
|
1460
1650
|
|
|
@@ -1482,7 +1672,7 @@ type ConnectionList {
|
|
|
1482
1672
|
|
|
1483
1673
|
"""Input for updating (patching) an existing connection."""
|
|
1484
1674
|
input ConnectionPatch {
|
|
1485
|
-
"""
|
|
1675
|
+
"""Whether to automatically connect when the application starts"""
|
|
1486
1676
|
active: Boolean
|
|
1487
1677
|
|
|
1488
1678
|
"""
|
|
@@ -1505,6 +1695,11 @@ input ConnectionPatch {
|
|
|
1505
1695
|
"""The new name for the connection."""
|
|
1506
1696
|
name: String
|
|
1507
1697
|
|
|
1698
|
+
"""
|
|
1699
|
+
When true, connection is created on-demand when needed and cleaned up after use.
|
|
1700
|
+
"""
|
|
1701
|
+
onDemand: Boolean
|
|
1702
|
+
|
|
1508
1703
|
"""The new parameters for the connection."""
|
|
1509
1704
|
params: Object
|
|
1510
1705
|
|
|
@@ -1529,6 +1724,11 @@ type ConnectionState {
|
|
|
1529
1724
|
"""The name of the connection."""
|
|
1530
1725
|
name: String
|
|
1531
1726
|
|
|
1727
|
+
"""
|
|
1728
|
+
When true, connection is created on-demand when needed and cleaned up after use.
|
|
1729
|
+
"""
|
|
1730
|
+
onDemand: Boolean
|
|
1731
|
+
|
|
1532
1732
|
"""The current status of the connection."""
|
|
1533
1733
|
state: String
|
|
1534
1734
|
|
|
@@ -1782,6 +1982,9 @@ type Domain {
|
|
|
1782
1982
|
"""A description of the domain."""
|
|
1783
1983
|
description: String
|
|
1784
1984
|
|
|
1985
|
+
"""The environment variables associated with the domain."""
|
|
1986
|
+
envVars: [EnvVar!]
|
|
1987
|
+
|
|
1785
1988
|
"""The external type of the domain, if applicable."""
|
|
1786
1989
|
extType: String
|
|
1787
1990
|
|
|
@@ -2227,6 +2430,68 @@ type EntityRelationMetadata {
|
|
|
2227
2430
|
relationType: Boolean
|
|
2228
2431
|
}
|
|
2229
2432
|
|
|
2433
|
+
"""Environment variable entity for storing key-value pairs."""
|
|
2434
|
+
type EnvVar {
|
|
2435
|
+
"""Indicates whether this environment variable is currently active."""
|
|
2436
|
+
active: Boolean!
|
|
2437
|
+
|
|
2438
|
+
"""The timestamp when the environment variable was created."""
|
|
2439
|
+
createdAt: DateTimeISO
|
|
2440
|
+
|
|
2441
|
+
"""A detailed description of the environment variable."""
|
|
2442
|
+
description: String
|
|
2443
|
+
|
|
2444
|
+
"""The domain to which this environment variable belongs."""
|
|
2445
|
+
domain: Domain
|
|
2446
|
+
|
|
2447
|
+
"""The domain ID to which this environment variable belongs."""
|
|
2448
|
+
domainId: String!
|
|
2449
|
+
|
|
2450
|
+
"""Unique identifier for the environment variable."""
|
|
2451
|
+
id: ID!
|
|
2452
|
+
|
|
2453
|
+
"""The name of the environment variable."""
|
|
2454
|
+
name: String!
|
|
2455
|
+
|
|
2456
|
+
"""The timestamp when the environment variable was last updated."""
|
|
2457
|
+
updatedAt: DateTimeISO
|
|
2458
|
+
|
|
2459
|
+
"""The value of the environment variable (encrypted)."""
|
|
2460
|
+
value: String
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
"""List of environment variables."""
|
|
2464
|
+
type EnvVarList {
|
|
2465
|
+
"""The list of environment variable items."""
|
|
2466
|
+
items: [EnvVar!]!
|
|
2467
|
+
|
|
2468
|
+
"""The total number of environment variables."""
|
|
2469
|
+
total: Int!
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
"""Input type for updating an existing environment variable."""
|
|
2473
|
+
input EnvVarPatch {
|
|
2474
|
+
"""The new active status for the environment variable."""
|
|
2475
|
+
active: Boolean
|
|
2476
|
+
|
|
2477
|
+
"""
|
|
2478
|
+
A flag indicating whether the environment variable is being created, updated, or deleted.
|
|
2479
|
+
"""
|
|
2480
|
+
cuFlag: String
|
|
2481
|
+
|
|
2482
|
+
"""The new description for the environment variable."""
|
|
2483
|
+
description: String
|
|
2484
|
+
|
|
2485
|
+
"""The unique identifier of the environment variable to update."""
|
|
2486
|
+
id: ID
|
|
2487
|
+
|
|
2488
|
+
"""The new name for the environment variable."""
|
|
2489
|
+
name: String
|
|
2490
|
+
|
|
2491
|
+
"""The new value for the environment variable."""
|
|
2492
|
+
value: String
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2230
2495
|
"""Entity for Favorite"""
|
|
2231
2496
|
type Favorite {
|
|
2232
2497
|
createdAt: DateTimeISO
|
|
@@ -3044,8 +3309,8 @@ type Mutation {
|
|
|
3044
3309
|
"""To create Building Inspection information"""
|
|
3045
3310
|
createBuildingInspection(patch: NewBuildingInspection!): BuildingInspection!
|
|
3046
3311
|
|
|
3047
|
-
"""
|
|
3048
|
-
|
|
3312
|
+
"""Create Daily Worklog by projectId+date"""
|
|
3313
|
+
createBuildingInspectionDailyWorklog(patch: BuildingInspectionDailyWorklogNew!): BuildingInspectionDailyWorklog!
|
|
3049
3314
|
|
|
3050
3315
|
"""To create new ChecklistItemComment"""
|
|
3051
3316
|
createChecklistItemComment(checklistItemComment: NewChecklistItemComment!): ChecklistItemComment!
|
|
@@ -3087,6 +3352,9 @@ type Mutation {
|
|
|
3087
3352
|
"""To create new EntityColumn"""
|
|
3088
3353
|
createEntityColumn(entityColumn: NewEntityColumn!): EntityColumn!
|
|
3089
3354
|
|
|
3355
|
+
"""To create new EnvVar"""
|
|
3356
|
+
createEnvVar(envVar: NewEnvVar!): EnvVar!
|
|
3357
|
+
|
|
3090
3358
|
"""To create new Favorite"""
|
|
3091
3359
|
createFavorite(favorite: NewFavorite!): Favorite!
|
|
3092
3360
|
|
|
@@ -3177,6 +3445,9 @@ type Mutation {
|
|
|
3177
3445
|
"""To create new Task"""
|
|
3178
3446
|
createTask(task: NewTask!): Task!
|
|
3179
3447
|
|
|
3448
|
+
"""To create Task Checklist information"""
|
|
3449
|
+
createTaskChecklist(patch: NewTaskChecklist!): Boolean!
|
|
3450
|
+
|
|
3180
3451
|
"""To create new TaskResource"""
|
|
3181
3452
|
createTaskResource(taskResource: NewTaskResource!): TaskResource!
|
|
3182
3453
|
|
|
@@ -3274,7 +3545,7 @@ type Mutation {
|
|
|
3274
3545
|
"""To delete multiple ChecklistTypes"""
|
|
3275
3546
|
deleteChecklistTypes(ids: [String!]!): Boolean!
|
|
3276
3547
|
|
|
3277
|
-
"""To
|
|
3548
|
+
"""To create Building Inspection And Checklist information"""
|
|
3278
3549
|
deleteChecklists(ids: [String!]!): Boolean!
|
|
3279
3550
|
|
|
3280
3551
|
"""To delete CommonCode"""
|
|
@@ -3365,6 +3636,12 @@ type Mutation {
|
|
|
3365
3636
|
"""To delete multiple EntityColumns"""
|
|
3366
3637
|
deleteEntityColumns(ids: [String!]!): Boolean!
|
|
3367
3638
|
|
|
3639
|
+
"""To delete EnvVar"""
|
|
3640
|
+
deleteEnvVar(id: String!): Boolean!
|
|
3641
|
+
|
|
3642
|
+
"""To delete multiple EnvVars"""
|
|
3643
|
+
deleteEnvVars(ids: [String!]!): Boolean!
|
|
3644
|
+
|
|
3368
3645
|
"""To delete Favorite"""
|
|
3369
3646
|
deleteFavorite(routing: String!): Boolean!
|
|
3370
3647
|
|
|
@@ -3782,7 +4059,7 @@ type Mutation {
|
|
|
3782
4059
|
singleUpload(file: Upload!): Attachment!
|
|
3783
4060
|
|
|
3784
4061
|
"""Starts a new scenario instance, which will run in the background."""
|
|
3785
|
-
startScenario(instanceName: String, scenarioName: String!, variables: Object):
|
|
4062
|
+
startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceStartResult!
|
|
3786
4063
|
|
|
3787
4064
|
"""Starts the schedule for a specific scenario, if one is defined."""
|
|
3788
4065
|
startScenarioSchedule(scenarioId: String!): Scenario!
|
|
@@ -3848,13 +4125,13 @@ type Mutation {
|
|
|
3848
4125
|
updateBuildingComplex(id: String!, patch: BuildingComplexPatch!): BuildingComplex!
|
|
3849
4126
|
|
|
3850
4127
|
"""To update Building Inspection information"""
|
|
3851
|
-
updateBuildingInspection(patch:
|
|
4128
|
+
updateBuildingInspection(patch: UpdateBuildingInspection!): BuildingInspection!
|
|
3852
4129
|
|
|
3853
4130
|
"""To create Building Inspection And Checklist information"""
|
|
3854
4131
|
updateBuildingInspectionChecklist(buildingInspection: UpdateBuildingInspectionSubmitType!): Boolean!
|
|
3855
4132
|
|
|
3856
|
-
"""
|
|
3857
|
-
|
|
4133
|
+
"""Update Daily Worklog"""
|
|
4134
|
+
updateBuildingInspectionDailyWorklog(patch: BuildingInspectionDailyWorklogPatch!): BuildingInspectionDailyWorklog!
|
|
3858
4135
|
|
|
3859
4136
|
"""To modify ChecklistItemComment information"""
|
|
3860
4137
|
updateChecklistItemComment(id: String!, patch: ChecklistItemCommentPatch!): ChecklistItemComment!
|
|
@@ -3894,6 +4171,9 @@ type Mutation {
|
|
|
3894
4171
|
"""To modify EntityColumn information"""
|
|
3895
4172
|
updateEntityColumn(id: String!, patch: EntityColumnPatch!): EntityColumn!
|
|
3896
4173
|
|
|
4174
|
+
"""To modify EnvVar information"""
|
|
4175
|
+
updateEnvVar(envVar: EnvVarPatch!, id: String!): EnvVar!
|
|
4176
|
+
|
|
3897
4177
|
"""To modify Font information"""
|
|
3898
4178
|
updateFont(id: String!, patch: FontPatch!): Font!
|
|
3899
4179
|
|
|
@@ -3942,9 +4222,6 @@ type Mutation {
|
|
|
3942
4222
|
"""To modify multiple Buildings' information"""
|
|
3943
4223
|
updateMultipleBuilding(patches: [BuildingPatch!]!): [Building!]!
|
|
3944
4224
|
|
|
3945
|
-
"""To modify multiple Checklists' information"""
|
|
3946
|
-
updateMultipleChecklist(patches: [ChecklistPatch!]!): [Checklist!]!
|
|
3947
|
-
|
|
3948
4225
|
"""To modify multiple ChecklistTemplates' information"""
|
|
3949
4226
|
updateMultipleChecklistTemplate(patches: [ChecklistTemplatePatch!]!): [ChecklistTemplate!]!
|
|
3950
4227
|
|
|
@@ -3989,6 +4266,9 @@ type Mutation {
|
|
|
3989
4266
|
"""To modify multiple Entitys' information"""
|
|
3990
4267
|
updateMultipleEntityColumn(patches: [EntityColumnPatch!]!): [EntityColumn!]!
|
|
3991
4268
|
|
|
4269
|
+
"""To modify multiple EnvVars' information"""
|
|
4270
|
+
updateMultipleEnvVars(patches: [EnvVarPatch!]!): [EnvVar!]!
|
|
4271
|
+
|
|
3992
4272
|
"""To modify multiple InspectionDrawingTypes' information"""
|
|
3993
4273
|
updateMultipleInspectionDrawingType(patches: [InspectionDrawingTypePatch!]!): [InspectionDrawingType!]!
|
|
3994
4274
|
|
|
@@ -4105,9 +4385,12 @@ type Mutation {
|
|
|
4105
4385
|
"""To modify privilege information"""
|
|
4106
4386
|
updatePrivilege(category: String!, name: String!, patch: PrivilegePatch!): Privilege!
|
|
4107
4387
|
|
|
4108
|
-
"""프로젝트 업데이트"""
|
|
4388
|
+
"""프로젝트 업데이트 (중복 사용 금지)"""
|
|
4109
4389
|
updateProject(project: ProjectPatch!): Project!
|
|
4110
4390
|
|
|
4391
|
+
"""프로젝트 완료 1단계 업데이트"""
|
|
4392
|
+
updateProjectCompleteStep1(project: ProjectCompleteStep1Patch!): Project!
|
|
4393
|
+
|
|
4111
4394
|
"""프로젝트 도면 업데이트"""
|
|
4112
4395
|
updateProjectPlan(project: ProjectPatch!): Project!
|
|
4113
4396
|
|
|
@@ -4149,6 +4432,9 @@ type Mutation {
|
|
|
4149
4432
|
"""To modify Task information"""
|
|
4150
4433
|
updateTask(id: String!, patch: TaskPatch!): Task!
|
|
4151
4434
|
|
|
4435
|
+
"""To update Task Checklist information"""
|
|
4436
|
+
updateTaskChecklist(taskChecklist: UpdateTaskChecklistSubmitType!): Boolean!
|
|
4437
|
+
|
|
4152
4438
|
"""To modify TaskResource information"""
|
|
4153
4439
|
updateTaskResource(id: String!, patch: TaskResourcePatch!): TaskResource!
|
|
4154
4440
|
|
|
@@ -4353,13 +4639,6 @@ input NewBuildingInspection {
|
|
|
4353
4639
|
managerId: String
|
|
4354
4640
|
}
|
|
4355
4641
|
|
|
4356
|
-
input NewChecklist {
|
|
4357
|
-
active: Boolean
|
|
4358
|
-
description: String
|
|
4359
|
-
name: String!
|
|
4360
|
-
params: String
|
|
4361
|
-
}
|
|
4362
|
-
|
|
4363
4642
|
input NewChecklistItemComment {
|
|
4364
4643
|
checklistItemId: String
|
|
4365
4644
|
comment: String
|
|
@@ -4381,6 +4660,9 @@ input NewCommonCodeDetail {
|
|
|
4381
4660
|
|
|
4382
4661
|
"""Input for creating a new connection."""
|
|
4383
4662
|
input NewConnection {
|
|
4663
|
+
"""Whether to automatically connect when the application starts"""
|
|
4664
|
+
active: Boolean
|
|
4665
|
+
|
|
4384
4666
|
"""A detailed description for the new connection."""
|
|
4385
4667
|
description: String
|
|
4386
4668
|
|
|
@@ -4393,6 +4675,11 @@ input NewConnection {
|
|
|
4393
4675
|
"""The name for the new connection."""
|
|
4394
4676
|
name: String!
|
|
4395
4677
|
|
|
4678
|
+
"""
|
|
4679
|
+
When true, connection is created on-demand when needed and cleaned up after use.
|
|
4680
|
+
"""
|
|
4681
|
+
onDemand: Boolean
|
|
4682
|
+
|
|
4396
4683
|
"""A key-value map of parameters for the new connection."""
|
|
4397
4684
|
params: Object
|
|
4398
4685
|
|
|
@@ -4516,6 +4803,21 @@ input NewEntityColumn {
|
|
|
4516
4803
|
virtualField: Boolean
|
|
4517
4804
|
}
|
|
4518
4805
|
|
|
4806
|
+
"""Input type for creating a new environment variable."""
|
|
4807
|
+
input NewEnvVar {
|
|
4808
|
+
"""Indicates whether this environment variable is active."""
|
|
4809
|
+
active: Boolean
|
|
4810
|
+
|
|
4811
|
+
"""A detailed description for the new environment variable."""
|
|
4812
|
+
description: String
|
|
4813
|
+
|
|
4814
|
+
"""The name for the new environment variable."""
|
|
4815
|
+
name: String!
|
|
4816
|
+
|
|
4817
|
+
"""The value for the new environment variable."""
|
|
4818
|
+
value: String
|
|
4819
|
+
}
|
|
4820
|
+
|
|
4519
4821
|
input NewFavorite {
|
|
4520
4822
|
routing: String!
|
|
4521
4823
|
}
|
|
@@ -4848,6 +5150,9 @@ input NewScenario {
|
|
|
4848
5150
|
"""A detailed description for the new scenario."""
|
|
4849
5151
|
description: String
|
|
4850
5152
|
|
|
5153
|
+
"""Iteration for scenario execution: SELF, CHILDREN, or SELF & CHILDREN."""
|
|
5154
|
+
iteration: String
|
|
5155
|
+
|
|
4851
5156
|
"""The name of the new scenario."""
|
|
4852
5157
|
name: String!
|
|
4853
5158
|
|
|
@@ -4945,6 +5250,12 @@ input NewTask {
|
|
|
4945
5250
|
project: ObjectRefForProject
|
|
4946
5251
|
}
|
|
4947
5252
|
|
|
5253
|
+
input NewTaskChecklist {
|
|
5254
|
+
checklist: TaskChecklistInputType!
|
|
5255
|
+
checklistItem: [ChecklistItemInputType!]!
|
|
5256
|
+
managerId: String
|
|
5257
|
+
}
|
|
5258
|
+
|
|
4948
5259
|
input NewTaskResource {
|
|
4949
5260
|
quantity: Float!
|
|
4950
5261
|
resourceId: ID!
|
|
@@ -5340,6 +5651,7 @@ type PDFDrawing {
|
|
|
5340
5651
|
type PDFDrawingLink {
|
|
5341
5652
|
box: String
|
|
5342
5653
|
data: PDFDrawingLinkData
|
|
5654
|
+
dwgId: String
|
|
5343
5655
|
id: String
|
|
5344
5656
|
story: String
|
|
5345
5657
|
symbol: String
|
|
@@ -5745,18 +6057,24 @@ input ProfileInput {
|
|
|
5745
6057
|
|
|
5746
6058
|
"""프로젝트"""
|
|
5747
6059
|
type Project {
|
|
6060
|
+
actualEndDate: String
|
|
6061
|
+
actualStartDate: String
|
|
5748
6062
|
buildingComplex: BuildingComplex
|
|
5749
6063
|
createdAt: DateTimeISO
|
|
5750
6064
|
creator: User
|
|
5751
6065
|
deletedAt: DateTimeISO
|
|
6066
|
+
documentNaming: String
|
|
5752
6067
|
domain: Domain
|
|
5753
6068
|
endDate: String
|
|
6069
|
+
geoGroup: String
|
|
5754
6070
|
id: ID!
|
|
6071
|
+
inputType: String
|
|
5755
6072
|
inspPassRate: Float
|
|
5756
6073
|
kpi: Float
|
|
5757
6074
|
mainPhoto: Attachment
|
|
5758
6075
|
name: String!
|
|
5759
|
-
|
|
6076
|
+
postalCode: String
|
|
6077
|
+
projectType: String
|
|
5760
6078
|
robotCount: Float
|
|
5761
6079
|
robotProgressRate: Float
|
|
5762
6080
|
rootTasks: [Task!]
|
|
@@ -5771,6 +6089,20 @@ type Project {
|
|
|
5771
6089
|
weeklyProgress: Float
|
|
5772
6090
|
}
|
|
5773
6091
|
|
|
6092
|
+
input ProjectCompleteStep1Patch {
|
|
6093
|
+
"""실제 준공일"""
|
|
6094
|
+
actualEndDate: String
|
|
6095
|
+
|
|
6096
|
+
"""실제 착공일"""
|
|
6097
|
+
actualStartDate: String
|
|
6098
|
+
|
|
6099
|
+
"""연관된 건물 복합체 정보 (선택 사항)"""
|
|
6100
|
+
buildingComplex: BuildingComplexPatch
|
|
6101
|
+
|
|
6102
|
+
"""수정할 프로젝트의 ID"""
|
|
6103
|
+
id: String!
|
|
6104
|
+
}
|
|
6105
|
+
|
|
5774
6106
|
type ProjectList {
|
|
5775
6107
|
"""프로젝트 리스트 항목들"""
|
|
5776
6108
|
items: [Project!]!
|
|
@@ -5779,10 +6111,22 @@ type ProjectList {
|
|
|
5779
6111
|
total: Int!
|
|
5780
6112
|
}
|
|
5781
6113
|
|
|
6114
|
+
type ProjectManagerOutput {
|
|
6115
|
+
id: ID
|
|
6116
|
+
name: String
|
|
6117
|
+
phone: String
|
|
6118
|
+
position: String
|
|
6119
|
+
updatedAt: String
|
|
6120
|
+
userId: ID!
|
|
6121
|
+
}
|
|
6122
|
+
|
|
5782
6123
|
input ProjectPatch {
|
|
5783
6124
|
"""연관된 건물 복합체 정보 (선택 사항)"""
|
|
5784
6125
|
buildingComplex: BuildingComplexPatch
|
|
5785
6126
|
|
|
6127
|
+
"""프로젝트 문서 네이밍"""
|
|
6128
|
+
documentNaming: String
|
|
6129
|
+
|
|
5786
6130
|
"""프로젝트 준공일정"""
|
|
5787
6131
|
endDate: String
|
|
5788
6132
|
|
|
@@ -5833,7 +6177,6 @@ type ProjectReport {
|
|
|
5833
6177
|
id: ID!
|
|
5834
6178
|
name: String
|
|
5835
6179
|
params: String
|
|
5836
|
-
project: Project!
|
|
5837
6180
|
state: String
|
|
5838
6181
|
supervisor: Supervisor!
|
|
5839
6182
|
thumbnail: String
|
|
@@ -5883,8 +6226,15 @@ type PropertySpec {
|
|
|
5883
6226
|
"""CSS styles to be applied to the input field."""
|
|
5884
6227
|
styles: Object
|
|
5885
6228
|
|
|
5886
|
-
"""
|
|
6229
|
+
"""
|
|
6230
|
+
The data type of the property (e.g., text, number, boolean, select, password).
|
|
6231
|
+
"""
|
|
5887
6232
|
type: String!
|
|
6233
|
+
|
|
6234
|
+
"""
|
|
6235
|
+
Whether this property should use Domain attributes for secure storage instead of direct params.
|
|
6236
|
+
"""
|
|
6237
|
+
useDomainAttribute: Boolean
|
|
5888
6238
|
}
|
|
5889
6239
|
|
|
5890
6240
|
type Query {
|
|
@@ -6145,10 +6495,29 @@ type Query {
|
|
|
6145
6495
|
|
|
6146
6496
|
"""To fetch a BuildingInspection"""
|
|
6147
6497
|
buildingInspection(id: String!): BuildingInspection
|
|
6498
|
+
buildingInspectionDailyWorklogByProjectIdAndDate(date: String!, projectId: String!): BuildingInspectionDailyWorklog
|
|
6148
6499
|
|
|
6149
6500
|
"""To fetch a BuildingInspection Summary"""
|
|
6150
6501
|
buildingInspectionDateSummaryOfLevelAndPeriod(buildingLevelId: String!, endDate: String!, startDate: String!): [BuildingInspectionSummary!]
|
|
6151
6502
|
|
|
6503
|
+
"""To fetch multiple BuildingInspections"""
|
|
6504
|
+
buildingInspectionHistories(
|
|
6505
|
+
"""An array of filter conditions to apply to the list query."""
|
|
6506
|
+
filters: [Filter!]
|
|
6507
|
+
|
|
6508
|
+
"""Inherited value type for the list query."""
|
|
6509
|
+
inherited: InheritedValueType
|
|
6510
|
+
|
|
6511
|
+
"""Pagination options for the list query."""
|
|
6512
|
+
pagination: Pagination
|
|
6513
|
+
|
|
6514
|
+
"""Sorting options for the list query."""
|
|
6515
|
+
sortings: [Sorting!]
|
|
6516
|
+
): BuildingInspectionHistoryList!
|
|
6517
|
+
|
|
6518
|
+
"""To fetch a BuildingInspectionHistory"""
|
|
6519
|
+
buildingInspectionHistory(id: String!): BuildingInspectionHistory
|
|
6520
|
+
|
|
6152
6521
|
"""To fetch a BuildingInspection Summary"""
|
|
6153
6522
|
buildingInspectionSummaryOfBuildingLevel(buildingLevelId: String!): BuildingInspectionSummary
|
|
6154
6523
|
|
|
@@ -6207,12 +6576,48 @@ type Query {
|
|
|
6207
6576
|
"""To fetch a Checklist"""
|
|
6208
6577
|
checklist(id: String!): Checklist
|
|
6209
6578
|
|
|
6579
|
+
"""To fetch multiple ChecklistHistories"""
|
|
6580
|
+
checklistHistories(
|
|
6581
|
+
"""An array of filter conditions to apply to the list query."""
|
|
6582
|
+
filters: [Filter!]
|
|
6583
|
+
|
|
6584
|
+
"""Inherited value type for the list query."""
|
|
6585
|
+
inherited: InheritedValueType
|
|
6586
|
+
|
|
6587
|
+
"""Pagination options for the list query."""
|
|
6588
|
+
pagination: Pagination
|
|
6589
|
+
|
|
6590
|
+
"""Sorting options for the list query."""
|
|
6591
|
+
sortings: [Sorting!]
|
|
6592
|
+
): ChecklistHistoryList!
|
|
6593
|
+
|
|
6594
|
+
"""To fetch a ChecklistHistory"""
|
|
6595
|
+
checklistHistory(id: String!): ChecklistHistory!
|
|
6596
|
+
|
|
6210
6597
|
"""To fetch a ChecklistItem"""
|
|
6211
6598
|
checklistItem(id: String!): ChecklistItem
|
|
6212
6599
|
|
|
6213
6600
|
"""To fetch multiple ChecklistItemComments"""
|
|
6214
6601
|
checklistItemComments(checklistItemId: String!, pagination: Pagination!): [ChecklistItemComment!]!
|
|
6215
6602
|
|
|
6603
|
+
"""To fetch multiple ChecklistItems"""
|
|
6604
|
+
checklistItemHistories(
|
|
6605
|
+
"""An array of filter conditions to apply to the list query."""
|
|
6606
|
+
filters: [Filter!]
|
|
6607
|
+
|
|
6608
|
+
"""Inherited value type for the list query."""
|
|
6609
|
+
inherited: InheritedValueType
|
|
6610
|
+
|
|
6611
|
+
"""Pagination options for the list query."""
|
|
6612
|
+
pagination: Pagination
|
|
6613
|
+
|
|
6614
|
+
"""Sorting options for the list query."""
|
|
6615
|
+
sortings: [Sorting!]
|
|
6616
|
+
): ChecklistItemHistoryList!
|
|
6617
|
+
|
|
6618
|
+
"""To fetch a ChecklistItemHistory"""
|
|
6619
|
+
checklistItemHistory(id: String!): ChecklistItemHistory
|
|
6620
|
+
|
|
6216
6621
|
"""To fetch multiple ChecklistItems"""
|
|
6217
6622
|
checklistItems(
|
|
6218
6623
|
"""An array of filter conditions to apply to the list query."""
|
|
@@ -6422,6 +6827,7 @@ type Query {
|
|
|
6422
6827
|
sortings: [Sorting!]
|
|
6423
6828
|
): ContactList!
|
|
6424
6829
|
customers: [Domain!]!
|
|
6830
|
+
dailyWorklogDatesOfProject(endDate: String!, projectId: String!, startDate: String!): [BuildingInspectionDailyWorklog!]!
|
|
6425
6831
|
decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
|
|
6426
6832
|
decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
|
|
6427
6833
|
|
|
@@ -6581,6 +6987,20 @@ type Query {
|
|
|
6581
6987
|
|
|
6582
6988
|
"""To fetch a EntityMetadata"""
|
|
6583
6989
|
entityMetadata(name: String!): EntityMetadata!
|
|
6990
|
+
envVar(id: String!): EnvVar
|
|
6991
|
+
envVars(
|
|
6992
|
+
"""An array of filter conditions to apply to the list query."""
|
|
6993
|
+
filters: [Filter!]
|
|
6994
|
+
|
|
6995
|
+
"""Inherited value type for the list query."""
|
|
6996
|
+
inherited: InheritedValueType
|
|
6997
|
+
|
|
6998
|
+
"""Pagination options for the list query."""
|
|
6999
|
+
pagination: Pagination
|
|
7000
|
+
|
|
7001
|
+
"""Sorting options for the list query."""
|
|
7002
|
+
sortings: [Sorting!]
|
|
7003
|
+
): EnvVarList!
|
|
6584
7004
|
|
|
6585
7005
|
"""To fetch a Favorite"""
|
|
6586
7006
|
favorite(id: String!): Favorite!
|
|
@@ -7363,6 +7783,9 @@ type Query {
|
|
|
7363
7783
|
"""Fetch a single Task by its ID"""
|
|
7364
7784
|
task(id: String!): Task
|
|
7365
7785
|
|
|
7786
|
+
"""Fetch a single TaskChecklistBinding by its ID"""
|
|
7787
|
+
taskChecklistBinding(id: String!): TaskChecklistBinding
|
|
7788
|
+
|
|
7366
7789
|
"""To fetch a TaskResource"""
|
|
7367
7790
|
taskResource(id: String!): TaskResource
|
|
7368
7791
|
|
|
@@ -7636,7 +8059,7 @@ type RoomFinishDetail {
|
|
|
7636
8059
|
"""Represents a sequence of steps designed to automate a task or process."""
|
|
7637
8060
|
type Scenario {
|
|
7638
8061
|
"""
|
|
7639
|
-
Indicates if the scenario should be automatically started when the server starts.
|
|
8062
|
+
Indicates if the scenario should be automatically started when the server starts.
|
|
7640
8063
|
"""
|
|
7641
8064
|
active: Boolean
|
|
7642
8065
|
connectionNames: [Connection!]!
|
|
@@ -7657,6 +8080,9 @@ type Scenario {
|
|
|
7657
8080
|
id: ID!
|
|
7658
8081
|
instances: [ScenarioInstance!]
|
|
7659
8082
|
|
|
8083
|
+
"""Iteration for scenario execution: SELF, CHILDREN, or SELF & CHILDREN."""
|
|
8084
|
+
iteration: String
|
|
8085
|
+
|
|
7660
8086
|
"""The name of the scenario."""
|
|
7661
8087
|
name: String!
|
|
7662
8088
|
|
|
@@ -7786,6 +8212,18 @@ type ScenarioInstanceRunResult {
|
|
|
7786
8212
|
variables: Object
|
|
7787
8213
|
}
|
|
7788
8214
|
|
|
8215
|
+
"""Contains the final result of a completed scenario instance start."""
|
|
8216
|
+
type ScenarioInstanceStartResult {
|
|
8217
|
+
"""A final message from the run (e.g., success or failure reason)."""
|
|
8218
|
+
message: String
|
|
8219
|
+
|
|
8220
|
+
"""The final state of the instance after the run."""
|
|
8221
|
+
state: String
|
|
8222
|
+
|
|
8223
|
+
"""The timestamp when the instance started."""
|
|
8224
|
+
timestamp: DateTimeISO
|
|
8225
|
+
}
|
|
8226
|
+
|
|
7789
8227
|
"""
|
|
7790
8228
|
Represents the complete state of a scenario instance at a point in time.
|
|
7791
8229
|
"""
|
|
@@ -7838,7 +8276,9 @@ type ScenarioList {
|
|
|
7838
8276
|
|
|
7839
8277
|
"""Input for updating (patching) an existing scenario."""
|
|
7840
8278
|
input ScenarioPatch {
|
|
7841
|
-
"""
|
|
8279
|
+
"""
|
|
8280
|
+
Indicates if the scenario should be automatically started when the server starts.
|
|
8281
|
+
"""
|
|
7842
8282
|
active: Boolean
|
|
7843
8283
|
|
|
7844
8284
|
"""
|
|
@@ -7852,6 +8292,11 @@ input ScenarioPatch {
|
|
|
7852
8292
|
"""The unique identifier of the scenario to update."""
|
|
7853
8293
|
id: ID
|
|
7854
8294
|
|
|
8295
|
+
"""
|
|
8296
|
+
The new iteration for scenario execution: SELF, CHILDREN, or SELF & CHILDREN.
|
|
8297
|
+
"""
|
|
8298
|
+
iteration: String
|
|
8299
|
+
|
|
7855
8300
|
"""The new name for the scenario."""
|
|
7856
8301
|
name: String
|
|
7857
8302
|
|
|
@@ -7911,6 +8356,21 @@ input SettingPatch {
|
|
|
7911
8356
|
value: String
|
|
7912
8357
|
}
|
|
7913
8358
|
|
|
8359
|
+
"""현장 유형"""
|
|
8360
|
+
enum SiteType {
|
|
8361
|
+
APARTMENT_COMPLEX
|
|
8362
|
+
COMMERCIAL
|
|
8363
|
+
CULTURAL
|
|
8364
|
+
DETACHED_HOUSE
|
|
8365
|
+
EDUCATION
|
|
8366
|
+
INDUSTRIAL
|
|
8367
|
+
MEDICAL
|
|
8368
|
+
NEIGHBORHOOD_FACILITY
|
|
8369
|
+
OFFICE
|
|
8370
|
+
RELIGIOUS
|
|
8371
|
+
TRANSPORT
|
|
8372
|
+
}
|
|
8373
|
+
|
|
7914
8374
|
"""Input type for specifying sorting options in a list query."""
|
|
7915
8375
|
input Sorting {
|
|
7916
8376
|
"""Set to true for descending order. Default is false (ascending)."""
|
|
@@ -8255,12 +8715,39 @@ type Task {
|
|
|
8255
8715
|
startDate: DateTimeISO
|
|
8256
8716
|
style: String
|
|
8257
8717
|
tags: Object
|
|
8718
|
+
taskChecklistBinding: TaskChecklistBinding
|
|
8258
8719
|
taskResources: [TaskResource!]
|
|
8259
8720
|
type: String
|
|
8260
8721
|
updatedAt: DateTimeISO
|
|
8261
8722
|
updater: User
|
|
8262
8723
|
}
|
|
8263
8724
|
|
|
8725
|
+
"""Task와 Checklist 간의 바인딩 정보"""
|
|
8726
|
+
type TaskChecklistBinding {
|
|
8727
|
+
checklist: Checklist
|
|
8728
|
+
createdAt: DateTimeISO
|
|
8729
|
+
creator: User
|
|
8730
|
+
id: ID!
|
|
8731
|
+
manager: ManagerOutput
|
|
8732
|
+
project: Project
|
|
8733
|
+
status: String
|
|
8734
|
+
task: Task
|
|
8735
|
+
taskCode: String!
|
|
8736
|
+
updatedAt: DateTimeISO
|
|
8737
|
+
updater: User
|
|
8738
|
+
}
|
|
8739
|
+
|
|
8740
|
+
input TaskChecklistInputType {
|
|
8741
|
+
constructionDetailType: String
|
|
8742
|
+
constructionType: String
|
|
8743
|
+
inspectionDrawingType: String
|
|
8744
|
+
inspectionParts: [String!]
|
|
8745
|
+
location: String
|
|
8746
|
+
name: String!
|
|
8747
|
+
projectId: String
|
|
8748
|
+
taskCode: String
|
|
8749
|
+
}
|
|
8750
|
+
|
|
8264
8751
|
type TaskList {
|
|
8265
8752
|
"""작업 리스트 항목들"""
|
|
8266
8753
|
items: [Task!]!
|
|
@@ -8452,15 +8939,23 @@ input ThemePatch {
|
|
|
8452
8939
|
value: Object
|
|
8453
8940
|
}
|
|
8454
8941
|
|
|
8455
|
-
input
|
|
8942
|
+
input UpdateBuildingInspection {
|
|
8456
8943
|
drawingMarker: String
|
|
8457
8944
|
id: String!
|
|
8945
|
+
memo: String
|
|
8458
8946
|
}
|
|
8459
8947
|
|
|
8460
8948
|
input UpdateBuildingInspectionSubmitType {
|
|
8461
8949
|
checklist: ChecklistSubmitInputType!
|
|
8462
8950
|
checklistItem: [ChecklistItemSubmitInputType!]!
|
|
8463
8951
|
id: String!
|
|
8952
|
+
memo: String
|
|
8953
|
+
}
|
|
8954
|
+
|
|
8955
|
+
input UpdateTaskChecklistSubmitType {
|
|
8956
|
+
checklist: ChecklistSubmitInputType!
|
|
8957
|
+
checklistId: String!
|
|
8958
|
+
checklistItem: [ChecklistItemSubmitInputType!]!
|
|
8464
8959
|
}
|
|
8465
8960
|
|
|
8466
8961
|
"""The `Upload` scalar type represents a file upload."""
|