@dssp/dssp 1.0.0-alpha.8 → 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 +545 -44
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 {
|
|
@@ -1155,6 +1264,7 @@ type ChatCompletionOutput {
|
|
|
1155
1264
|
type Checklist {
|
|
1156
1265
|
buildingInspection: BuildingInspection!
|
|
1157
1266
|
checklistItems: [ChecklistItem!]!
|
|
1267
|
+
checklistReferenceType: String
|
|
1158
1268
|
constructionDetailType: String
|
|
1159
1269
|
constructionInspectionDate: DateTimeISO
|
|
1160
1270
|
constructionType: String
|
|
@@ -1165,8 +1275,17 @@ type Checklist {
|
|
|
1165
1275
|
id: ID!
|
|
1166
1276
|
inspectionDrawingType: String
|
|
1167
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
|
|
1168
1286
|
location: String
|
|
1169
1287
|
name: String
|
|
1288
|
+
nameListAttachment: Attachment
|
|
1170
1289
|
|
|
1171
1290
|
"""총괄 시공 책임자"""
|
|
1172
1291
|
overallConstructor: User
|
|
@@ -1177,7 +1296,6 @@ type Checklist {
|
|
|
1177
1296
|
overallSupervisorySignature: String
|
|
1178
1297
|
projectType: String
|
|
1179
1298
|
supervisorInspectionDate: DateTimeISO
|
|
1180
|
-
task: Task!
|
|
1181
1299
|
|
|
1182
1300
|
"""공종별 시공 관리자"""
|
|
1183
1301
|
taskConstructor: User
|
|
@@ -1190,19 +1308,71 @@ type Checklist {
|
|
|
1190
1308
|
updater: User
|
|
1191
1309
|
}
|
|
1192
1310
|
|
|
1311
|
+
"""Entity for ChecklistHistory"""
|
|
1312
|
+
type ChecklistHistory {
|
|
1313
|
+
buildingInspectionHistory: BuildingInspectionHistory!
|
|
1314
|
+
checklistItemHistories: [ChecklistItemHistory!]!
|
|
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
|
+
|
|
1193
1363
|
input ChecklistInputType {
|
|
1194
1364
|
constructionDetailType: String
|
|
1195
1365
|
constructionType: String
|
|
1196
1366
|
inspectionDrawingType: String
|
|
1197
1367
|
inspectionParts: [String!]
|
|
1198
|
-
location: String
|
|
1368
|
+
location: String
|
|
1199
1369
|
name: String!
|
|
1200
1370
|
}
|
|
1201
1371
|
|
|
1202
1372
|
type ChecklistItem {
|
|
1203
1373
|
checklist: Checklist
|
|
1204
1374
|
checklistItemAttachmentCount: Float!
|
|
1205
|
-
checklistItemAttachments: [Attachment!]!
|
|
1375
|
+
checklistItemAttachments(description: String): [Attachment!]!
|
|
1206
1376
|
checklistItemCommentCount: Float!
|
|
1207
1377
|
checklistItemComments: [ChecklistItemComment!]!
|
|
1208
1378
|
constructionConfirmStatus: String
|
|
@@ -1236,6 +1406,33 @@ input ChecklistItemCommentPatch {
|
|
|
1236
1406
|
id: ID
|
|
1237
1407
|
}
|
|
1238
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
|
+
|
|
1239
1436
|
input ChecklistItemInputType {
|
|
1240
1437
|
detailType: String!
|
|
1241
1438
|
inspctionCriteria: String
|
|
@@ -1259,16 +1456,12 @@ type ChecklistList {
|
|
|
1259
1456
|
total: Int!
|
|
1260
1457
|
}
|
|
1261
1458
|
|
|
1262
|
-
input ChecklistPatch {
|
|
1263
|
-
active: Boolean
|
|
1264
|
-
cuFlag: String
|
|
1265
|
-
description: String
|
|
1266
|
-
id: ID
|
|
1267
|
-
name: String
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
1459
|
input ChecklistSubmitInputType {
|
|
1271
1460
|
id: String!
|
|
1461
|
+
inspectionRequestMemo: String
|
|
1462
|
+
inspectionResultMemo: String
|
|
1463
|
+
inspectionResultStatus: String
|
|
1464
|
+
inspectionResultType: String
|
|
1272
1465
|
overallConstructorSignature: String
|
|
1273
1466
|
overallSupervisorySignature: String
|
|
1274
1467
|
taskConstructorSignature: String
|
|
@@ -1420,9 +1613,7 @@ input CommonCodePatch {
|
|
|
1420
1613
|
|
|
1421
1614
|
"""Represents a configured connection to an external system or service."""
|
|
1422
1615
|
type Connection {
|
|
1423
|
-
"""
|
|
1424
|
-
Indicates whether the connection is currently active and should be maintained.
|
|
1425
|
-
"""
|
|
1616
|
+
"""Whether to automatically connect when the application starts"""
|
|
1426
1617
|
active: Boolean
|
|
1427
1618
|
|
|
1428
1619
|
"""The timestamp when the connection was created."""
|
|
@@ -1449,6 +1640,11 @@ type Connection {
|
|
|
1449
1640
|
"""The name of the connection."""
|
|
1450
1641
|
name: String!
|
|
1451
1642
|
|
|
1643
|
+
"""
|
|
1644
|
+
When true, connection is created on-demand when needed and cleaned up after use.
|
|
1645
|
+
"""
|
|
1646
|
+
onDemand: Boolean
|
|
1647
|
+
|
|
1452
1648
|
"""A key-value map of parameters for the connection."""
|
|
1453
1649
|
params: Object
|
|
1454
1650
|
|
|
@@ -1476,7 +1672,7 @@ type ConnectionList {
|
|
|
1476
1672
|
|
|
1477
1673
|
"""Input for updating (patching) an existing connection."""
|
|
1478
1674
|
input ConnectionPatch {
|
|
1479
|
-
"""
|
|
1675
|
+
"""Whether to automatically connect when the application starts"""
|
|
1480
1676
|
active: Boolean
|
|
1481
1677
|
|
|
1482
1678
|
"""
|
|
@@ -1499,6 +1695,11 @@ input ConnectionPatch {
|
|
|
1499
1695
|
"""The new name for the connection."""
|
|
1500
1696
|
name: String
|
|
1501
1697
|
|
|
1698
|
+
"""
|
|
1699
|
+
When true, connection is created on-demand when needed and cleaned up after use.
|
|
1700
|
+
"""
|
|
1701
|
+
onDemand: Boolean
|
|
1702
|
+
|
|
1502
1703
|
"""The new parameters for the connection."""
|
|
1503
1704
|
params: Object
|
|
1504
1705
|
|
|
@@ -1523,6 +1724,11 @@ type ConnectionState {
|
|
|
1523
1724
|
"""The name of the connection."""
|
|
1524
1725
|
name: String
|
|
1525
1726
|
|
|
1727
|
+
"""
|
|
1728
|
+
When true, connection is created on-demand when needed and cleaned up after use.
|
|
1729
|
+
"""
|
|
1730
|
+
onDemand: Boolean
|
|
1731
|
+
|
|
1526
1732
|
"""The current status of the connection."""
|
|
1527
1733
|
state: String
|
|
1528
1734
|
|
|
@@ -1776,6 +1982,9 @@ type Domain {
|
|
|
1776
1982
|
"""A description of the domain."""
|
|
1777
1983
|
description: String
|
|
1778
1984
|
|
|
1985
|
+
"""The environment variables associated with the domain."""
|
|
1986
|
+
envVars: [EnvVar!]
|
|
1987
|
+
|
|
1779
1988
|
"""The external type of the domain, if applicable."""
|
|
1780
1989
|
extType: String
|
|
1781
1990
|
|
|
@@ -2221,6 +2430,68 @@ type EntityRelationMetadata {
|
|
|
2221
2430
|
relationType: Boolean
|
|
2222
2431
|
}
|
|
2223
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
|
+
|
|
2224
2495
|
"""Entity for Favorite"""
|
|
2225
2496
|
type Favorite {
|
|
2226
2497
|
createdAt: DateTimeISO
|
|
@@ -3038,8 +3309,8 @@ type Mutation {
|
|
|
3038
3309
|
"""To create Building Inspection information"""
|
|
3039
3310
|
createBuildingInspection(patch: NewBuildingInspection!): BuildingInspection!
|
|
3040
3311
|
|
|
3041
|
-
"""
|
|
3042
|
-
|
|
3312
|
+
"""Create Daily Worklog by projectId+date"""
|
|
3313
|
+
createBuildingInspectionDailyWorklog(patch: BuildingInspectionDailyWorklogNew!): BuildingInspectionDailyWorklog!
|
|
3043
3314
|
|
|
3044
3315
|
"""To create new ChecklistItemComment"""
|
|
3045
3316
|
createChecklistItemComment(checklistItemComment: NewChecklistItemComment!): ChecklistItemComment!
|
|
@@ -3081,6 +3352,9 @@ type Mutation {
|
|
|
3081
3352
|
"""To create new EntityColumn"""
|
|
3082
3353
|
createEntityColumn(entityColumn: NewEntityColumn!): EntityColumn!
|
|
3083
3354
|
|
|
3355
|
+
"""To create new EnvVar"""
|
|
3356
|
+
createEnvVar(envVar: NewEnvVar!): EnvVar!
|
|
3357
|
+
|
|
3084
3358
|
"""To create new Favorite"""
|
|
3085
3359
|
createFavorite(favorite: NewFavorite!): Favorite!
|
|
3086
3360
|
|
|
@@ -3171,6 +3445,9 @@ type Mutation {
|
|
|
3171
3445
|
"""To create new Task"""
|
|
3172
3446
|
createTask(task: NewTask!): Task!
|
|
3173
3447
|
|
|
3448
|
+
"""To create Task Checklist information"""
|
|
3449
|
+
createTaskChecklist(patch: NewTaskChecklist!): Boolean!
|
|
3450
|
+
|
|
3174
3451
|
"""To create new TaskResource"""
|
|
3175
3452
|
createTaskResource(taskResource: NewTaskResource!): TaskResource!
|
|
3176
3453
|
|
|
@@ -3268,7 +3545,7 @@ type Mutation {
|
|
|
3268
3545
|
"""To delete multiple ChecklistTypes"""
|
|
3269
3546
|
deleteChecklistTypes(ids: [String!]!): Boolean!
|
|
3270
3547
|
|
|
3271
|
-
"""To
|
|
3548
|
+
"""To create Building Inspection And Checklist information"""
|
|
3272
3549
|
deleteChecklists(ids: [String!]!): Boolean!
|
|
3273
3550
|
|
|
3274
3551
|
"""To delete CommonCode"""
|
|
@@ -3359,6 +3636,12 @@ type Mutation {
|
|
|
3359
3636
|
"""To delete multiple EntityColumns"""
|
|
3360
3637
|
deleteEntityColumns(ids: [String!]!): Boolean!
|
|
3361
3638
|
|
|
3639
|
+
"""To delete EnvVar"""
|
|
3640
|
+
deleteEnvVar(id: String!): Boolean!
|
|
3641
|
+
|
|
3642
|
+
"""To delete multiple EnvVars"""
|
|
3643
|
+
deleteEnvVars(ids: [String!]!): Boolean!
|
|
3644
|
+
|
|
3362
3645
|
"""To delete Favorite"""
|
|
3363
3646
|
deleteFavorite(routing: String!): Boolean!
|
|
3364
3647
|
|
|
@@ -3776,7 +4059,7 @@ type Mutation {
|
|
|
3776
4059
|
singleUpload(file: Upload!): Attachment!
|
|
3777
4060
|
|
|
3778
4061
|
"""Starts a new scenario instance, which will run in the background."""
|
|
3779
|
-
startScenario(instanceName: String, scenarioName: String!, variables: Object):
|
|
4062
|
+
startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceStartResult!
|
|
3780
4063
|
|
|
3781
4064
|
"""Starts the schedule for a specific scenario, if one is defined."""
|
|
3782
4065
|
startScenarioSchedule(scenarioId: String!): Scenario!
|
|
@@ -3842,13 +4125,13 @@ type Mutation {
|
|
|
3842
4125
|
updateBuildingComplex(id: String!, patch: BuildingComplexPatch!): BuildingComplex!
|
|
3843
4126
|
|
|
3844
4127
|
"""To update Building Inspection information"""
|
|
3845
|
-
updateBuildingInspection(patch:
|
|
4128
|
+
updateBuildingInspection(patch: UpdateBuildingInspection!): BuildingInspection!
|
|
3846
4129
|
|
|
3847
4130
|
"""To create Building Inspection And Checklist information"""
|
|
3848
4131
|
updateBuildingInspectionChecklist(buildingInspection: UpdateBuildingInspectionSubmitType!): Boolean!
|
|
3849
4132
|
|
|
3850
|
-
"""
|
|
3851
|
-
|
|
4133
|
+
"""Update Daily Worklog"""
|
|
4134
|
+
updateBuildingInspectionDailyWorklog(patch: BuildingInspectionDailyWorklogPatch!): BuildingInspectionDailyWorklog!
|
|
3852
4135
|
|
|
3853
4136
|
"""To modify ChecklistItemComment information"""
|
|
3854
4137
|
updateChecklistItemComment(id: String!, patch: ChecklistItemCommentPatch!): ChecklistItemComment!
|
|
@@ -3888,6 +4171,9 @@ type Mutation {
|
|
|
3888
4171
|
"""To modify EntityColumn information"""
|
|
3889
4172
|
updateEntityColumn(id: String!, patch: EntityColumnPatch!): EntityColumn!
|
|
3890
4173
|
|
|
4174
|
+
"""To modify EnvVar information"""
|
|
4175
|
+
updateEnvVar(envVar: EnvVarPatch!, id: String!): EnvVar!
|
|
4176
|
+
|
|
3891
4177
|
"""To modify Font information"""
|
|
3892
4178
|
updateFont(id: String!, patch: FontPatch!): Font!
|
|
3893
4179
|
|
|
@@ -3936,9 +4222,6 @@ type Mutation {
|
|
|
3936
4222
|
"""To modify multiple Buildings' information"""
|
|
3937
4223
|
updateMultipleBuilding(patches: [BuildingPatch!]!): [Building!]!
|
|
3938
4224
|
|
|
3939
|
-
"""To modify multiple Checklists' information"""
|
|
3940
|
-
updateMultipleChecklist(patches: [ChecklistPatch!]!): [Checklist!]!
|
|
3941
|
-
|
|
3942
4225
|
"""To modify multiple ChecklistTemplates' information"""
|
|
3943
4226
|
updateMultipleChecklistTemplate(patches: [ChecklistTemplatePatch!]!): [ChecklistTemplate!]!
|
|
3944
4227
|
|
|
@@ -3983,6 +4266,9 @@ type Mutation {
|
|
|
3983
4266
|
"""To modify multiple Entitys' information"""
|
|
3984
4267
|
updateMultipleEntityColumn(patches: [EntityColumnPatch!]!): [EntityColumn!]!
|
|
3985
4268
|
|
|
4269
|
+
"""To modify multiple EnvVars' information"""
|
|
4270
|
+
updateMultipleEnvVars(patches: [EnvVarPatch!]!): [EnvVar!]!
|
|
4271
|
+
|
|
3986
4272
|
"""To modify multiple InspectionDrawingTypes' information"""
|
|
3987
4273
|
updateMultipleInspectionDrawingType(patches: [InspectionDrawingTypePatch!]!): [InspectionDrawingType!]!
|
|
3988
4274
|
|
|
@@ -4099,9 +4385,12 @@ type Mutation {
|
|
|
4099
4385
|
"""To modify privilege information"""
|
|
4100
4386
|
updatePrivilege(category: String!, name: String!, patch: PrivilegePatch!): Privilege!
|
|
4101
4387
|
|
|
4102
|
-
"""프로젝트 업데이트"""
|
|
4388
|
+
"""프로젝트 업데이트 (중복 사용 금지)"""
|
|
4103
4389
|
updateProject(project: ProjectPatch!): Project!
|
|
4104
4390
|
|
|
4391
|
+
"""프로젝트 완료 1단계 업데이트"""
|
|
4392
|
+
updateProjectCompleteStep1(project: ProjectCompleteStep1Patch!): Project!
|
|
4393
|
+
|
|
4105
4394
|
"""프로젝트 도면 업데이트"""
|
|
4106
4395
|
updateProjectPlan(project: ProjectPatch!): Project!
|
|
4107
4396
|
|
|
@@ -4143,6 +4432,9 @@ type Mutation {
|
|
|
4143
4432
|
"""To modify Task information"""
|
|
4144
4433
|
updateTask(id: String!, patch: TaskPatch!): Task!
|
|
4145
4434
|
|
|
4435
|
+
"""To update Task Checklist information"""
|
|
4436
|
+
updateTaskChecklist(taskChecklist: UpdateTaskChecklistSubmitType!): Boolean!
|
|
4437
|
+
|
|
4146
4438
|
"""To modify TaskResource information"""
|
|
4147
4439
|
updateTaskResource(id: String!, patch: TaskResourcePatch!): TaskResource!
|
|
4148
4440
|
|
|
@@ -4339,7 +4631,7 @@ input NewBoardTemplate {
|
|
|
4339
4631
|
}
|
|
4340
4632
|
|
|
4341
4633
|
input NewBuildingInspection {
|
|
4342
|
-
buildingLevelId: String
|
|
4634
|
+
buildingLevelId: String
|
|
4343
4635
|
cellX: Float
|
|
4344
4636
|
cellY: Float
|
|
4345
4637
|
checklist: ChecklistInputType!
|
|
@@ -4347,13 +4639,6 @@ input NewBuildingInspection {
|
|
|
4347
4639
|
managerId: String
|
|
4348
4640
|
}
|
|
4349
4641
|
|
|
4350
|
-
input NewChecklist {
|
|
4351
|
-
active: Boolean
|
|
4352
|
-
description: String
|
|
4353
|
-
name: String!
|
|
4354
|
-
params: String
|
|
4355
|
-
}
|
|
4356
|
-
|
|
4357
4642
|
input NewChecklistItemComment {
|
|
4358
4643
|
checklistItemId: String
|
|
4359
4644
|
comment: String
|
|
@@ -4375,6 +4660,9 @@ input NewCommonCodeDetail {
|
|
|
4375
4660
|
|
|
4376
4661
|
"""Input for creating a new connection."""
|
|
4377
4662
|
input NewConnection {
|
|
4663
|
+
"""Whether to automatically connect when the application starts"""
|
|
4664
|
+
active: Boolean
|
|
4665
|
+
|
|
4378
4666
|
"""A detailed description for the new connection."""
|
|
4379
4667
|
description: String
|
|
4380
4668
|
|
|
@@ -4387,6 +4675,11 @@ input NewConnection {
|
|
|
4387
4675
|
"""The name for the new connection."""
|
|
4388
4676
|
name: String!
|
|
4389
4677
|
|
|
4678
|
+
"""
|
|
4679
|
+
When true, connection is created on-demand when needed and cleaned up after use.
|
|
4680
|
+
"""
|
|
4681
|
+
onDemand: Boolean
|
|
4682
|
+
|
|
4390
4683
|
"""A key-value map of parameters for the new connection."""
|
|
4391
4684
|
params: Object
|
|
4392
4685
|
|
|
@@ -4510,6 +4803,21 @@ input NewEntityColumn {
|
|
|
4510
4803
|
virtualField: Boolean
|
|
4511
4804
|
}
|
|
4512
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
|
+
|
|
4513
4821
|
input NewFavorite {
|
|
4514
4822
|
routing: String!
|
|
4515
4823
|
}
|
|
@@ -4842,6 +5150,9 @@ input NewScenario {
|
|
|
4842
5150
|
"""A detailed description for the new scenario."""
|
|
4843
5151
|
description: String
|
|
4844
5152
|
|
|
5153
|
+
"""Iteration for scenario execution: SELF, CHILDREN, or SELF & CHILDREN."""
|
|
5154
|
+
iteration: String
|
|
5155
|
+
|
|
4845
5156
|
"""The name of the new scenario."""
|
|
4846
5157
|
name: String!
|
|
4847
5158
|
|
|
@@ -4939,6 +5250,12 @@ input NewTask {
|
|
|
4939
5250
|
project: ObjectRefForProject
|
|
4940
5251
|
}
|
|
4941
5252
|
|
|
5253
|
+
input NewTaskChecklist {
|
|
5254
|
+
checklist: TaskChecklistInputType!
|
|
5255
|
+
checklistItem: [ChecklistItemInputType!]!
|
|
5256
|
+
managerId: String
|
|
5257
|
+
}
|
|
5258
|
+
|
|
4942
5259
|
input NewTaskResource {
|
|
4943
5260
|
quantity: Float!
|
|
4944
5261
|
resourceId: ID!
|
|
@@ -5334,6 +5651,7 @@ type PDFDrawing {
|
|
|
5334
5651
|
type PDFDrawingLink {
|
|
5335
5652
|
box: String
|
|
5336
5653
|
data: PDFDrawingLinkData
|
|
5654
|
+
dwgId: String
|
|
5337
5655
|
id: String
|
|
5338
5656
|
story: String
|
|
5339
5657
|
symbol: String
|
|
@@ -5739,18 +6057,24 @@ input ProfileInput {
|
|
|
5739
6057
|
|
|
5740
6058
|
"""프로젝트"""
|
|
5741
6059
|
type Project {
|
|
6060
|
+
actualEndDate: String
|
|
6061
|
+
actualStartDate: String
|
|
5742
6062
|
buildingComplex: BuildingComplex
|
|
5743
6063
|
createdAt: DateTimeISO
|
|
5744
6064
|
creator: User
|
|
5745
6065
|
deletedAt: DateTimeISO
|
|
6066
|
+
documentNaming: String
|
|
5746
6067
|
domain: Domain
|
|
5747
6068
|
endDate: String
|
|
6069
|
+
geoGroup: String
|
|
5748
6070
|
id: ID!
|
|
6071
|
+
inputType: String
|
|
5749
6072
|
inspPassRate: Float
|
|
5750
6073
|
kpi: Float
|
|
5751
6074
|
mainPhoto: Attachment
|
|
5752
6075
|
name: String!
|
|
5753
|
-
|
|
6076
|
+
postalCode: String
|
|
6077
|
+
projectType: String
|
|
5754
6078
|
robotCount: Float
|
|
5755
6079
|
robotProgressRate: Float
|
|
5756
6080
|
rootTasks: [Task!]
|
|
@@ -5765,6 +6089,20 @@ type Project {
|
|
|
5765
6089
|
weeklyProgress: Float
|
|
5766
6090
|
}
|
|
5767
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
|
+
|
|
5768
6106
|
type ProjectList {
|
|
5769
6107
|
"""프로젝트 리스트 항목들"""
|
|
5770
6108
|
items: [Project!]!
|
|
@@ -5773,10 +6111,22 @@ type ProjectList {
|
|
|
5773
6111
|
total: Int!
|
|
5774
6112
|
}
|
|
5775
6113
|
|
|
6114
|
+
type ProjectManagerOutput {
|
|
6115
|
+
id: ID
|
|
6116
|
+
name: String
|
|
6117
|
+
phone: String
|
|
6118
|
+
position: String
|
|
6119
|
+
updatedAt: String
|
|
6120
|
+
userId: ID!
|
|
6121
|
+
}
|
|
6122
|
+
|
|
5776
6123
|
input ProjectPatch {
|
|
5777
6124
|
"""연관된 건물 복합체 정보 (선택 사항)"""
|
|
5778
6125
|
buildingComplex: BuildingComplexPatch
|
|
5779
6126
|
|
|
6127
|
+
"""프로젝트 문서 네이밍"""
|
|
6128
|
+
documentNaming: String
|
|
6129
|
+
|
|
5780
6130
|
"""프로젝트 준공일정"""
|
|
5781
6131
|
endDate: String
|
|
5782
6132
|
|
|
@@ -5827,7 +6177,6 @@ type ProjectReport {
|
|
|
5827
6177
|
id: ID!
|
|
5828
6178
|
name: String
|
|
5829
6179
|
params: String
|
|
5830
|
-
project: Project!
|
|
5831
6180
|
state: String
|
|
5832
6181
|
supervisor: Supervisor!
|
|
5833
6182
|
thumbnail: String
|
|
@@ -5877,8 +6226,15 @@ type PropertySpec {
|
|
|
5877
6226
|
"""CSS styles to be applied to the input field."""
|
|
5878
6227
|
styles: Object
|
|
5879
6228
|
|
|
5880
|
-
"""
|
|
6229
|
+
"""
|
|
6230
|
+
The data type of the property (e.g., text, number, boolean, select, password).
|
|
6231
|
+
"""
|
|
5881
6232
|
type: String!
|
|
6233
|
+
|
|
6234
|
+
"""
|
|
6235
|
+
Whether this property should use Domain attributes for secure storage instead of direct params.
|
|
6236
|
+
"""
|
|
6237
|
+
useDomainAttribute: Boolean
|
|
5882
6238
|
}
|
|
5883
6239
|
|
|
5884
6240
|
type Query {
|
|
@@ -6139,10 +6495,29 @@ type Query {
|
|
|
6139
6495
|
|
|
6140
6496
|
"""To fetch a BuildingInspection"""
|
|
6141
6497
|
buildingInspection(id: String!): BuildingInspection
|
|
6498
|
+
buildingInspectionDailyWorklogByProjectIdAndDate(date: String!, projectId: String!): BuildingInspectionDailyWorklog
|
|
6142
6499
|
|
|
6143
6500
|
"""To fetch a BuildingInspection Summary"""
|
|
6144
6501
|
buildingInspectionDateSummaryOfLevelAndPeriod(buildingLevelId: String!, endDate: String!, startDate: String!): [BuildingInspectionSummary!]
|
|
6145
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
|
+
|
|
6146
6521
|
"""To fetch a BuildingInspection Summary"""
|
|
6147
6522
|
buildingInspectionSummaryOfBuildingLevel(buildingLevelId: String!): BuildingInspectionSummary
|
|
6148
6523
|
|
|
@@ -6201,12 +6576,48 @@ type Query {
|
|
|
6201
6576
|
"""To fetch a Checklist"""
|
|
6202
6577
|
checklist(id: String!): Checklist
|
|
6203
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
|
+
|
|
6204
6597
|
"""To fetch a ChecklistItem"""
|
|
6205
6598
|
checklistItem(id: String!): ChecklistItem
|
|
6206
6599
|
|
|
6207
6600
|
"""To fetch multiple ChecklistItemComments"""
|
|
6208
6601
|
checklistItemComments(checklistItemId: String!, pagination: Pagination!): [ChecklistItemComment!]!
|
|
6209
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
|
+
|
|
6210
6621
|
"""To fetch multiple ChecklistItems"""
|
|
6211
6622
|
checklistItems(
|
|
6212
6623
|
"""An array of filter conditions to apply to the list query."""
|
|
@@ -6416,6 +6827,7 @@ type Query {
|
|
|
6416
6827
|
sortings: [Sorting!]
|
|
6417
6828
|
): ContactList!
|
|
6418
6829
|
customers: [Domain!]!
|
|
6830
|
+
dailyWorklogDatesOfProject(endDate: String!, projectId: String!, startDate: String!): [BuildingInspectionDailyWorklog!]!
|
|
6419
6831
|
decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
|
|
6420
6832
|
decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
|
|
6421
6833
|
|
|
@@ -6575,6 +6987,20 @@ type Query {
|
|
|
6575
6987
|
|
|
6576
6988
|
"""To fetch a EntityMetadata"""
|
|
6577
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!
|
|
6578
7004
|
|
|
6579
7005
|
"""To fetch a Favorite"""
|
|
6580
7006
|
favorite(id: String!): Favorite!
|
|
@@ -7357,6 +7783,9 @@ type Query {
|
|
|
7357
7783
|
"""Fetch a single Task by its ID"""
|
|
7358
7784
|
task(id: String!): Task
|
|
7359
7785
|
|
|
7786
|
+
"""Fetch a single TaskChecklistBinding by its ID"""
|
|
7787
|
+
taskChecklistBinding(id: String!): TaskChecklistBinding
|
|
7788
|
+
|
|
7360
7789
|
"""To fetch a TaskResource"""
|
|
7361
7790
|
taskResource(id: String!): TaskResource
|
|
7362
7791
|
|
|
@@ -7630,7 +8059,7 @@ type RoomFinishDetail {
|
|
|
7630
8059
|
"""Represents a sequence of steps designed to automate a task or process."""
|
|
7631
8060
|
type Scenario {
|
|
7632
8061
|
"""
|
|
7633
|
-
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.
|
|
7634
8063
|
"""
|
|
7635
8064
|
active: Boolean
|
|
7636
8065
|
connectionNames: [Connection!]!
|
|
@@ -7651,6 +8080,9 @@ type Scenario {
|
|
|
7651
8080
|
id: ID!
|
|
7652
8081
|
instances: [ScenarioInstance!]
|
|
7653
8082
|
|
|
8083
|
+
"""Iteration for scenario execution: SELF, CHILDREN, or SELF & CHILDREN."""
|
|
8084
|
+
iteration: String
|
|
8085
|
+
|
|
7654
8086
|
"""The name of the scenario."""
|
|
7655
8087
|
name: String!
|
|
7656
8088
|
|
|
@@ -7780,6 +8212,18 @@ type ScenarioInstanceRunResult {
|
|
|
7780
8212
|
variables: Object
|
|
7781
8213
|
}
|
|
7782
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
|
+
|
|
7783
8227
|
"""
|
|
7784
8228
|
Represents the complete state of a scenario instance at a point in time.
|
|
7785
8229
|
"""
|
|
@@ -7832,7 +8276,9 @@ type ScenarioList {
|
|
|
7832
8276
|
|
|
7833
8277
|
"""Input for updating (patching) an existing scenario."""
|
|
7834
8278
|
input ScenarioPatch {
|
|
7835
|
-
"""
|
|
8279
|
+
"""
|
|
8280
|
+
Indicates if the scenario should be automatically started when the server starts.
|
|
8281
|
+
"""
|
|
7836
8282
|
active: Boolean
|
|
7837
8283
|
|
|
7838
8284
|
"""
|
|
@@ -7846,6 +8292,11 @@ input ScenarioPatch {
|
|
|
7846
8292
|
"""The unique identifier of the scenario to update."""
|
|
7847
8293
|
id: ID
|
|
7848
8294
|
|
|
8295
|
+
"""
|
|
8296
|
+
The new iteration for scenario execution: SELF, CHILDREN, or SELF & CHILDREN.
|
|
8297
|
+
"""
|
|
8298
|
+
iteration: String
|
|
8299
|
+
|
|
7849
8300
|
"""The new name for the scenario."""
|
|
7850
8301
|
name: String
|
|
7851
8302
|
|
|
@@ -7905,6 +8356,21 @@ input SettingPatch {
|
|
|
7905
8356
|
value: String
|
|
7906
8357
|
}
|
|
7907
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
|
+
|
|
7908
8374
|
"""Input type for specifying sorting options in a list query."""
|
|
7909
8375
|
input Sorting {
|
|
7910
8376
|
"""Set to true for descending order. Default is false (ascending)."""
|
|
@@ -8249,12 +8715,39 @@ type Task {
|
|
|
8249
8715
|
startDate: DateTimeISO
|
|
8250
8716
|
style: String
|
|
8251
8717
|
tags: Object
|
|
8718
|
+
taskChecklistBinding: TaskChecklistBinding
|
|
8252
8719
|
taskResources: [TaskResource!]
|
|
8253
8720
|
type: String
|
|
8254
8721
|
updatedAt: DateTimeISO
|
|
8255
8722
|
updater: User
|
|
8256
8723
|
}
|
|
8257
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
|
+
|
|
8258
8751
|
type TaskList {
|
|
8259
8752
|
"""작업 리스트 항목들"""
|
|
8260
8753
|
items: [Task!]!
|
|
@@ -8446,15 +8939,23 @@ input ThemePatch {
|
|
|
8446
8939
|
value: Object
|
|
8447
8940
|
}
|
|
8448
8941
|
|
|
8449
|
-
input
|
|
8942
|
+
input UpdateBuildingInspection {
|
|
8450
8943
|
drawingMarker: String
|
|
8451
8944
|
id: String!
|
|
8945
|
+
memo: String
|
|
8452
8946
|
}
|
|
8453
8947
|
|
|
8454
8948
|
input UpdateBuildingInspectionSubmitType {
|
|
8455
8949
|
checklist: ChecklistSubmitInputType!
|
|
8456
8950
|
checklistItem: [ChecklistItemSubmitInputType!]!
|
|
8457
8951
|
id: String!
|
|
8952
|
+
memo: String
|
|
8953
|
+
}
|
|
8954
|
+
|
|
8955
|
+
input UpdateTaskChecklistSubmitType {
|
|
8956
|
+
checklist: ChecklistSubmitInputType!
|
|
8957
|
+
checklistId: String!
|
|
8958
|
+
checklistItem: [ChecklistItemSubmitInputType!]!
|
|
8458
8959
|
}
|
|
8459
8960
|
|
|
8460
8961
|
"""The `Upload` scalar type represents a file upload."""
|