@dssp/dssp 1.0.0-alpha.88 → 1.0.0-alpha.92

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/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
@@ -2065,9 +2080,11 @@ type ChecklistItem {
2065
2080
  detailType: String!
2066
2081
  id: ID!
2067
2082
  inspctionCriteria: String
2083
+ kcsCriteria: String
2068
2084
  mainType: String!
2069
2085
  name: String
2070
2086
  sequence: Int
2087
+ siteSpecCriteria: String
2071
2088
  supervisoryConfirmStatus: String
2072
2089
  updatedAt: DateTimeISO
2073
2090
  updater: User
@@ -2103,10 +2120,12 @@ type ChecklistItemHistory {
2103
2120
  detailType: String!
2104
2121
  id: ID!
2105
2122
  inspctionCriteria: String
2123
+ kcsCriteria: String
2106
2124
  loggedAt: DateTimeISO
2107
2125
  mainType: String!
2108
2126
  name: String
2109
2127
  sequence: Float
2128
+ siteSpecCriteria: String
2110
2129
  supervisoryConfirmStatus: String
2111
2130
  updater: User
2112
2131
  }
@@ -2119,8 +2138,10 @@ type ChecklistItemHistoryList {
2119
2138
  input ChecklistItemInputType {
2120
2139
  detailType: String!
2121
2140
  inspctionCriteria: String
2141
+ kcsCriteria: String
2122
2142
  mainType: String!
2123
2143
  name: String!
2144
+ siteSpecCriteria: String
2124
2145
  }
2125
2146
 
2126
2147
  type ChecklistItemList {
@@ -2314,6 +2335,11 @@ type Connection {
2314
2335
  """Unique identifier for the connection."""
2315
2336
  id: ID!
2316
2337
 
2338
+ """
2339
+ Inheritance mode for child domains. ISOLATE = per-child instance with isolated session. SHARE = shared parent instance. null = use Connector default (falls back to ISOLATE).
2340
+ """
2341
+ inheritanceMode: ConnectionInheritanceMode
2342
+
2317
2343
  """The name of the connection."""
2318
2344
  name: String!
2319
2345
 
@@ -2338,6 +2364,14 @@ type Connection {
2338
2364
  updater: User
2339
2365
  }
2340
2366
 
2367
+ """
2368
+ Child domain inheritance mode — ISOLATE: per-child instance with isolated session/credentials. SHARE: single parent instance reused by all children.
2369
+ """
2370
+ enum ConnectionInheritanceMode {
2371
+ ISOLATE
2372
+ SHARE
2373
+ }
2374
+
2341
2375
  """A paginated list of connections."""
2342
2376
  type ConnectionList {
2343
2377
  """The list of connection items."""
@@ -2369,6 +2403,11 @@ input ConnectionPatch {
2369
2403
  """The unique identifier of the connection to update."""
2370
2404
  id: ID
2371
2405
 
2406
+ """
2407
+ Inheritance mode for child domains. ISOLATE = per-child instance. SHARE = shared parent instance. null = use connector default.
2408
+ """
2409
+ inheritanceMode: ConnectionInheritanceMode
2410
+
2372
2411
  """The new name for the connection."""
2373
2412
  name: String
2374
2413
 
@@ -2398,6 +2437,11 @@ type ConnectionState {
2398
2437
  """The unique identifier of the connection."""
2399
2438
  id: String
2400
2439
 
2440
+ """
2441
+ Inheritance mode for child domains. ISOLATE = per-child instance. SHARE = shared parent instance. null = use connector default (falls back to ISOLATE).
2442
+ """
2443
+ inheritanceMode: ConnectionInheritanceMode
2444
+
2401
2445
  """The name of the connection."""
2402
2446
  name: String
2403
2447
 
@@ -2445,6 +2489,68 @@ type ConnectorType {
2445
2489
  taskPrefixes: [String!]
2446
2490
  }
2447
2491
 
2492
+ type ConstructionChecklistTemplate {
2493
+ constructionChecklistTemplateItems: [ConstructionChecklistTemplateItem!]
2494
+ constructionDetailTypeId: String!
2495
+ constructionTypeId: String!
2496
+ createdAt: DateTimeISO
2497
+ creator: User
2498
+ deletedAt: DateTimeISO
2499
+ domain: Domain
2500
+ id: ID!
2501
+ updatedAt: DateTimeISO
2502
+ updater: User
2503
+ }
2504
+
2505
+ type ConstructionChecklistTemplateItem {
2506
+ constructionChecklistTemplate: ConstructionChecklistTemplate
2507
+ createdAt: DateTimeISO
2508
+ creator: User
2509
+ criteriaRequestStatus: CriteriaRequestStatus
2510
+ id: ID!
2511
+ inspctionCriteria: String
2512
+ mainType: String
2513
+ name: String!
2514
+ recommendation1: String
2515
+ recommendation2: String
2516
+ recommendation3: String
2517
+ recommendation4: String
2518
+ recommendation5: String
2519
+ sequence: Int
2520
+ updatedAt: DateTimeISO
2521
+ updater: User
2522
+ }
2523
+
2524
+ type ConstructionChecklistTemplateItemList {
2525
+ items: [ConstructionChecklistTemplateItem!]!
2526
+ total: Int!
2527
+ }
2528
+
2529
+ input ConstructionChecklistTemplateItemPatch {
2530
+ id: ID
2531
+ inspctionCriteria: String
2532
+ mainType: String
2533
+ name: String
2534
+ recommendation1: String
2535
+ recommendation2: String
2536
+ recommendation3: String
2537
+ recommendation4: String
2538
+ recommendation5: String
2539
+ sequence: Int
2540
+ }
2541
+
2542
+ type ConstructionChecklistTemplateList {
2543
+ items: [ConstructionChecklistTemplate!]!
2544
+ total: Int!
2545
+ }
2546
+
2547
+ input ConstructionChecklistTemplatePatch {
2548
+ constructionDetailTypeId: String
2549
+ constructionTypeId: String
2550
+ cuFlag: String
2551
+ id: ID
2552
+ }
2553
+
2448
2554
  """세부 공종 타입"""
2449
2555
  type ConstructionDetailType {
2450
2556
  constructionType: ConstructionType
@@ -2479,6 +2585,7 @@ type ConstructionType {
2479
2585
  domain: Domain
2480
2586
  id: ID!
2481
2587
  name: String
2588
+ projectType: String
2482
2589
  updatedAt: DateTimeISO
2483
2590
  updater: User
2484
2591
  }
@@ -2493,6 +2600,7 @@ input ConstructionTypePatch {
2493
2600
  description: String
2494
2601
  id: ID
2495
2602
  name: String
2603
+ projectType: String
2496
2604
  }
2497
2605
 
2498
2606
  """Entity for Contact"""
@@ -4235,6 +4343,22 @@ input EnvVarPatch {
4235
4343
  value: String
4236
4344
  }
4237
4345
 
4346
+ """Resolved state of an EnvVar key with ancestor closest-wins lookup."""
4347
+ type EnvVarResolution {
4348
+ """EnvVar id (only when found in any domain)."""
4349
+ envVarId: String
4350
+ hasValue: Boolean!
4351
+ key: String!
4352
+ sourceDomainId: String
4353
+ sourceDomainName: String
4354
+ status: String!
4355
+
4356
+ """
4357
+ Resolved value when found. Client decides masking based on propertySpec type.
4358
+ """
4359
+ value: String
4360
+ }
4361
+
4238
4362
  """Entity for Favorite"""
4239
4363
  type Favorite {
4240
4364
  createdAt: DateTimeISO
@@ -4252,6 +4376,48 @@ type FavoriteList {
4252
4376
  total: Int!
4253
4377
  }
4254
4378
 
4379
+ """Entity for FieldDocument"""
4380
+ type FieldDocument {
4381
+ aiSummary: String
4382
+ aiSummaryStatus: FieldDocumentSummaryStatus
4383
+ code: String!
4384
+ createdAt: DateTimeISO
4385
+ creator: User
4386
+ deletedAt: DateTimeISO
4387
+ domain: Domain
4388
+
4389
+ """파일 크기"""
4390
+ fileSize: String
4391
+
4392
+ """첨부파일 fullpath"""
4393
+ fullpath: String
4394
+ id: ID
4395
+ isFavorite: Boolean
4396
+ name: String!
4397
+ projectId: String!
4398
+ sourceRefId: String
4399
+ sourceType: String
4400
+ updatedAt: DateTimeISO
4401
+ updater: User
4402
+ }
4403
+
4404
+ type FieldDocumentCodeCount {
4405
+ code: String!
4406
+ count: Int!
4407
+ }
4408
+
4409
+ type FieldDocumentList {
4410
+ items: [FieldDocument!]!
4411
+ total: Int!
4412
+ }
4413
+
4414
+ """AI 문서 요약 요청 상태"""
4415
+ enum FieldDocumentSummaryStatus {
4416
+ FAIL
4417
+ REQUEST
4418
+ SUCCESS
4419
+ }
4420
+
4255
4421
  """Input type for specifying a filter condition in a list query."""
4256
4422
  input Filter {
4257
4423
  """The field name to apply the filter on."""
@@ -6303,6 +6469,12 @@ type Mutation {
6303
6469
  """To create new Favorite"""
6304
6470
  createFavorite(favorite: NewFavorite!): Favorite!
6305
6471
 
6472
+ """현장 문서 생성"""
6473
+ createFieldDocument(patch: NewFieldDocument!): FieldDocument!
6474
+
6475
+ """현장 문서 다건 생성"""
6476
+ createFieldDocuments(patches: [NewFieldDocument!]!): [FieldDocument!]!
6477
+
6306
6478
  """To create new Font"""
6307
6479
  createFont(font: NewFont!): Font!
6308
6480
 
@@ -6408,6 +6580,9 @@ type Mutation {
6408
6580
  """프로젝트 생성"""
6409
6581
  createProject(project: NewProject!): Project!
6410
6582
 
6583
+ """프로젝트 체크리스트 생성"""
6584
+ createProjectChecklist(constructionDetailTypeId: String!, constructionTypeId: String!, items: [ProjectChecklistItemInput!]!, name: String!, projectId: String!, siteSpecPdfUrl: String): ProjectChecklist!
6585
+
6411
6586
  """To create new ProjectReport"""
6412
6587
  createProjectReport(projectReport: NewProjectReport!): ProjectReport!
6413
6588
 
@@ -6574,6 +6749,12 @@ type Mutation {
6574
6749
  """Deletes multiple connections by their names."""
6575
6750
  deleteConnections(names: [String!]!): Boolean!
6576
6751
 
6752
+ """공종 체크리스트 템플릿 아이템 삭제"""
6753
+ deleteConstructionChecklistTemplateItems(ids: [String!]!): Boolean!
6754
+
6755
+ """공종 기반 체크리스트 템플릿 삭제"""
6756
+ deleteConstructionChecklistTemplates(ids: [String!]!): Boolean!
6757
+
6577
6758
  """To delete multiple ConstructionDetailTypes"""
6578
6759
  deleteConstructionDetailTypes(ids: [String!]!): Boolean!
6579
6760
 
@@ -6699,6 +6880,9 @@ type Mutation {
6699
6880
  """To delete Favorite"""
6700
6881
  deleteFavorite(routing: String!): Boolean!
6701
6882
 
6883
+ """현장 문서 삭제"""
6884
+ deleteFieldDocuments(ids: [String!]!): Boolean!
6885
+
6702
6886
  """To delete Font"""
6703
6887
  deleteFont(id: String!): Boolean!
6704
6888
 
@@ -6861,6 +7045,9 @@ type Mutation {
6861
7045
  """To delete Project"""
6862
7046
  deleteProject(id: String!): Boolean!
6863
7047
 
7048
+ """프로젝트 체크리스트 삭제"""
7049
+ deleteProjectChecklists(ids: [String!]!): Boolean!
7050
+
6864
7051
  """To delete ProjectReport"""
6865
7052
  deleteProjectReport(id: String!): Boolean!
6866
7053
 
@@ -7185,6 +7372,9 @@ type Mutation {
7185
7372
  완료된 ImportSession 의 결과 boardModel 을 새 Board entity 로 영속화한다. 검수 단계 (사용자/AI 가 import 결과를 확인 후 명시적으로 호출) 에서 사용. Board.state="draft" 로 생성되므로 release mutation 으로 별도 발행 필요.
7186
7373
  """
7187
7374
  materializeImportSession(input: MaterializeImportSessionInput!): Board!
7375
+
7376
+ """문서 폴더 이동"""
7377
+ moveFieldDocuments(ids: [String!]!, targetCode: String!): Boolean!
7188
7378
  multipleUpload(files: [Upload!]!): [Attachment!]!
7189
7379
 
7190
7380
  """
@@ -7360,6 +7550,9 @@ type Mutation {
7360
7550
  synchronizePrivilegeMaster(privilege: NewPrivilege!): Boolean!
7361
7551
  terminateContract(partnerName: String!): Boolean!
7362
7552
 
7553
+ """즐겨찾기 토글"""
7554
+ toggleFieldDocumentFavorite(id: String!): FieldDocument!
7555
+
7363
7556
  """
7364
7557
  Transfers domain ownership to another user. Use this mutation to assign the owner role to a different user within the domain.
7365
7558
  """
@@ -7579,6 +7772,12 @@ type Mutation {
7579
7772
  """Updates multiple connections at once."""
7580
7773
  updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
7581
7774
 
7775
+ """공종 기반 체크리스트 템플릿 생성/수정"""
7776
+ updateMultipleConstructionChecklistTemplate(patches: [ConstructionChecklistTemplatePatch!]!): [ConstructionChecklistTemplate!]!
7777
+
7778
+ """공종 체크리스트 템플릿 아이템 일괄 저장"""
7779
+ updateMultipleConstructionChecklistTemplateItems(constructionChecklistTemplateId: String!, patches: [ConstructionChecklistTemplateItemPatch!]!): [ConstructionChecklistTemplateItem!]!
7780
+
7582
7781
  """To modify multiple ConstructionDetailTypes' information"""
7583
7782
  updateMultipleConstructionDetailType(constructionTypeId: String!, patches: [ConstructionDetailTypePatch!]!): [ConstructionDetailType!]!
7584
7783
 
@@ -7774,6 +7973,9 @@ type Mutation {
7774
7973
  """프로젝트 업데이트 (중복 사용 금지)"""
7775
7974
  updateProject(project: ProjectPatch!): Project!
7776
7975
 
7976
+ """프로젝트 체크리스트 수정"""
7977
+ updateProjectChecklist(id: String!, items: [ProjectChecklistItemInput!]!, name: String!, siteSpecPdfUrl: String): ProjectChecklist!
7978
+
7777
7979
  """프로젝트 도면 업데이트"""
7778
7980
  updateProjectPlan(project: ProjectPatch!): Project!
7779
7981
 
@@ -7857,6 +8059,9 @@ type Mutation {
7857
8059
 
7858
8060
  """프로젝트 공정표 업로드"""
7859
8061
  uploadProjectScheduleTable(param: UploadProjectScheduleTable!): Boolean!
8062
+
8063
+ """공종+세부공종 조합으로 find-or-create"""
8064
+ upsertConstructionChecklistTemplate(constructionDetailTypeId: String!, constructionTypeId: String!): ConstructionChecklistTemplate!
7860
8065
  }
7861
8066
 
7862
8067
  input NewActionPlan {
@@ -8102,6 +8307,11 @@ input NewConnection {
8102
8307
  """The endpoint URL or address for the new connection."""
8103
8308
  endpoint: String
8104
8309
 
8310
+ """
8311
+ Inheritance mode for child domains. ISOLATE = per-child instance. SHARE = shared parent instance. null = use connector default.
8312
+ """
8313
+ inheritanceMode: ConnectionInheritanceMode
8314
+
8105
8315
  """The name for the new connection."""
8106
8316
  name: String!
8107
8317
 
@@ -8412,6 +8622,15 @@ input NewFavorite {
8412
8622
  routing: String!
8413
8623
  }
8414
8624
 
8625
+ input NewFieldDocument {
8626
+ code: String!
8627
+ file: Upload
8628
+ name: String!
8629
+ projectId: String!
8630
+ sourceRefId: String
8631
+ sourceType: String
8632
+ }
8633
+
8415
8634
  input NewFont {
8416
8635
  active: Boolean
8417
8636
  files: [Upload!]
@@ -9973,6 +10192,7 @@ type Project {
9973
10192
  rootTasks: [Task!]
9974
10193
  scheduleTable: Attachment
9975
10194
  sectorType: String
10195
+ siteSpecPdfUrl: String
9976
10196
  startDate: String
9977
10197
  state: String!
9978
10198
  structuralSafetyRate: Float
@@ -9986,6 +10206,53 @@ type Project {
9986
10206
  weeklyProgress: Float
9987
10207
  }
9988
10208
 
10209
+ type ProjectChecklist {
10210
+ constructionDetailTypeId: String!
10211
+ constructionTypeId: String!
10212
+ createdAt: DateTimeISO
10213
+ creator: User
10214
+ deletedAt: DateTimeISO
10215
+ domain: Domain
10216
+ id: ID!
10217
+ name: String!
10218
+ projectChecklistItems: [ProjectChecklistItem!]
10219
+ projectId: String!
10220
+ updatedAt: DateTimeISO
10221
+ updater: User
10222
+ }
10223
+
10224
+ type ProjectChecklistItem {
10225
+ createdAt: DateTimeISO
10226
+ creator: User
10227
+ id: ID!
10228
+ inspctionCriteria: String
10229
+ kcsCriteria: String
10230
+ mainType: String
10231
+ name: String!
10232
+ projectChecklist: ProjectChecklist
10233
+ sequence: Int
10234
+ siteSpecCriteria: String
10235
+ updatedAt: DateTimeISO
10236
+ updater: User
10237
+ }
10238
+
10239
+ input ProjectChecklistItemInput {
10240
+ inspctionCriteria: String
10241
+ mainType: String
10242
+ name: String!
10243
+ sequence: Int
10244
+ }
10245
+
10246
+ type ProjectChecklistItemList {
10247
+ items: [ProjectChecklistItem!]!
10248
+ total: Int!
10249
+ }
10250
+
10251
+ type ProjectChecklistList {
10252
+ items: [ProjectChecklist!]!
10253
+ total: Int!
10254
+ }
10255
+
9989
10256
  type ProjectList {
9990
10257
  """프로젝트 리스트 항목들"""
9991
10258
  items: [Project!]!
@@ -10016,6 +10283,9 @@ input ProjectPatch {
10016
10283
  """프로젝트 준공일정"""
10017
10284
  endDate: String
10018
10285
 
10286
+ """지역 구분 코드 (시군구 식별, 통계 그룹핑용)"""
10287
+ geoGroup: String
10288
+
10019
10289
  """수정할 프로젝트의 ID"""
10020
10290
  id: String!
10021
10291
 
@@ -10029,7 +10299,10 @@ input ProjectPatch {
10029
10299
  mainPhotoUpload: Upload
10030
10300
 
10031
10301
  """프로젝트 이름"""
10032
- name: String!
10302
+ name: String
10303
+
10304
+ """우편 코드 (5자리)"""
10305
+ postalCode: String
10033
10306
 
10034
10307
  """로봇 작업 대수"""
10035
10308
  robotCount: Int
@@ -10040,9 +10313,15 @@ input ProjectPatch {
10040
10313
  """발주 유형 (PUBLIC: 공공, PRIVATE: 민간)"""
10041
10314
  sectorType: String
10042
10315
 
10316
+ """현장 시방서 PDF URL (https 전체 URL)"""
10317
+ siteSpecPdfUrl: String
10318
+
10043
10319
  """프로젝트 착공일정"""
10044
10320
  startDate: String
10045
10321
 
10322
+ """프로젝트 상태 (ONGOING/COMPLETED)"""
10323
+ state: ProjectState
10324
+
10046
10325
  """구조 안전도 (%)"""
10047
10326
  structuralSafetyRate: Float
10048
10327
 
@@ -10094,6 +10373,12 @@ enum ProjectReportStatus {
10094
10373
  STATUS_B
10095
10374
  }
10096
10375
 
10376
+ """프로젝트 상태 (ONGOING=10 진행중, COMPLETED=20 완료)"""
10377
+ enum ProjectState {
10378
+ COMPLETED
10379
+ ONGOING
10380
+ }
10381
+
10097
10382
  """
10098
10383
  Describes a single property for a component or a step, used for UI rendering and configuration.
10099
10384
  """
@@ -10574,9 +10859,15 @@ type Query {
10574
10859
  buildingInspection(id: String!): BuildingInspection
10575
10860
  buildingInspectionDailyWorklogByProjectIdAndDate(date: String!, projectId: String!): BuildingInspectionDailyWorklog
10576
10861
 
10862
+ """To fetch BuildingInspection Date Summary of Building"""
10863
+ buildingInspectionDateSummaryOfBuilding(buildingId: String!, endDate: String!, startDate: String!): [BuildingInspectionSummary!]
10864
+
10577
10865
  """To fetch a BuildingInspection Summary"""
10578
10866
  buildingInspectionDateSummaryOfLevelAndPeriod(buildingLevelId: String!, endDate: String!, startDate: String!): [BuildingInspectionSummary!]
10579
10867
 
10868
+ """To fetch BuildingInspection Date Summary of Project"""
10869
+ buildingInspectionDateSummaryOfProject(endDate: String!, projectId: String!, startDate: String!): [BuildingInspectionSummary!]
10870
+
10580
10871
  """To fetch multiple BuildingInspections"""
10581
10872
  buildingInspectionHistories(
10582
10873
  """An array of filter conditions to apply to the list query."""
@@ -10595,6 +10886,9 @@ type Query {
10595
10886
  """To fetch a BuildingInspectionHistory"""
10596
10887
  buildingInspectionHistory(id: String!): BuildingInspectionHistory
10597
10888
 
10889
+ """To fetch BuildingInspection Summary of Building"""
10890
+ buildingInspectionSummaryOfBuilding(buildingId: String!): BuildingInspectionSummary
10891
+
10598
10892
  """To fetch a BuildingInspection Summary"""
10599
10893
  buildingInspectionSummaryOfBuildingLevel(buildingLevelId: String!): BuildingInspectionSummary
10600
10894
 
@@ -10616,6 +10910,9 @@ type Query {
10616
10910
  sortings: [Sorting!]
10617
10911
  ): BuildingInspectionList!
10618
10912
 
10913
+ """To fetch BuildingInspections of Building"""
10914
+ buildingInspectionsOfBuilding(params: BuildingInspectionsOfBuilding!): BuildingInspectionList!
10915
+
10619
10916
  """To fetch multiple BuildingInspections"""
10620
10917
  buildingInspectionsOfBuildingLevel(params: BuildingInspectionsOfBuildingLevel!): BuildingInspectionList!
10621
10918
 
@@ -10874,6 +11171,36 @@ type Query {
10874
11171
  """Fetches a list of all available connector types."""
10875
11172
  connectors: ConnectorList!
10876
11173
 
11174
+ """공종 체크리스트 템플릿 아이템 목록"""
11175
+ constructionChecklistTemplateItems(
11176
+ """An array of filter conditions to apply to the list query."""
11177
+ filters: [Filter!]
11178
+
11179
+ """Inherited value type for the list query."""
11180
+ inherited: InheritedValueType
11181
+
11182
+ """Pagination options for the list query."""
11183
+ pagination: Pagination
11184
+
11185
+ """Sorting options for the list query."""
11186
+ sortings: [Sorting!]
11187
+ ): ConstructionChecklistTemplateItemList!
11188
+
11189
+ """공종 기반 체크리스트 템플릿 목록"""
11190
+ constructionChecklistTemplates(
11191
+ """An array of filter conditions to apply to the list query."""
11192
+ filters: [Filter!]
11193
+
11194
+ """Inherited value type for the list query."""
11195
+ inherited: InheritedValueType
11196
+
11197
+ """Pagination options for the list query."""
11198
+ pagination: Pagination
11199
+
11200
+ """Sorting options for the list query."""
11201
+ sortings: [Sorting!]
11202
+ ): ConstructionChecklistTemplateList!
11203
+
10877
11204
  """To fetch multiple ConstructionDetailTypes"""
10878
11205
  constructionDetailTypes(
10879
11206
  """An array of filter conditions to apply to the list query."""
@@ -10925,6 +11252,9 @@ type Query {
10925
11252
  sortings: [Sorting!]
10926
11253
  ): ContactList!
10927
11254
 
11255
+ """현재 테넌트 컨텍스트(extType=project)의 프로젝트. subdomain(=Project.code) 으로 조회."""
11256
+ currentProject: Project
11257
+
10928
11258
  """프로젝트 타입 조회"""
10929
11259
  currentProjectType: String!
10930
11260
  customers: [Domain!]!
@@ -11486,6 +11816,11 @@ type Query {
11486
11816
  """To fetch a EntityMetadata"""
11487
11817
  entityMetadata(name: String!): EntityMetadata!
11488
11818
  envVar(id: String!): EnvVar
11819
+
11820
+ """
11821
+ Resolves a batch of EnvVar keys with ancestor closest-wins inheritance.
11822
+ """
11823
+ envVarResolutions(keys: [String!]!): [EnvVarResolution!]!
11489
11824
  envVars(
11490
11825
  """An array of filter conditions to apply to the list query."""
11491
11826
  filters: [Filter!]
@@ -11536,6 +11871,15 @@ type Query {
11536
11871
  """Fetches the current state of a single connection by its name."""
11537
11872
  fetchConnectionState(name: String!): ConnectionState!
11538
11873
 
11874
+ """단건 문서 상세 조회"""
11875
+ fieldDocument(id: String!): FieldDocument
11876
+
11877
+ """프로젝트별 분류 코드당 문서 수"""
11878
+ fieldDocumentCountsByProject(projectId: String!): [FieldDocumentCodeCount!]!
11879
+
11880
+ """소분류 코드별 문서 목록 조회"""
11881
+ fieldDocumentsByCode(code: String!, projectId: String!): FieldDocumentList!
11882
+
11539
11883
  """To fetch a Font"""
11540
11884
  font(id: String!): Font!
11541
11885
 
@@ -11856,6 +12200,23 @@ type Query {
11856
12200
  rootId: String
11857
12201
  ): [Kpi!]!
11858
12202
 
12203
+ """
12204
+ Fetch latest-version KpiValues only — one row per (domain, kpi, valueDate, kpiOrgScope).
12205
+ """
12206
+ latestKpiValues(
12207
+ """An array of filter conditions to apply to the list query."""
12208
+ filters: [Filter!]
12209
+
12210
+ """Inherited value type for the list query."""
12211
+ inherited: InheritedValueType
12212
+
12213
+ """Pagination options for the list query."""
12214
+ pagination: Pagination
12215
+
12216
+ """Sorting options for the list query."""
12217
+ sortings: [Sorting!]
12218
+ ): KpiValueList!
12219
+
11859
12220
  """To fetch a LiteMenu"""
11860
12221
  liteMenu(id: String!): LiteMenu!
11861
12222
 
@@ -12304,6 +12665,36 @@ type Query {
12304
12665
  """To fetch Project"""
12305
12666
  projectByBuildingLevelId(buildingLevelId: String!): Project!
12306
12667
 
12668
+ """프로젝트 체크리스트 아이템 목록"""
12669
+ projectChecklistItems(
12670
+ """An array of filter conditions to apply to the list query."""
12671
+ filters: [Filter!]
12672
+
12673
+ """Inherited value type for the list query."""
12674
+ inherited: InheritedValueType
12675
+
12676
+ """Pagination options for the list query."""
12677
+ pagination: Pagination
12678
+
12679
+ """Sorting options for the list query."""
12680
+ sortings: [Sorting!]
12681
+ ): ProjectChecklistItemList!
12682
+
12683
+ """프로젝트 체크리스트 목록"""
12684
+ projectChecklists(
12685
+ """An array of filter conditions to apply to the list query."""
12686
+ filters: [Filter!]
12687
+
12688
+ """Inherited value type for the list query."""
12689
+ inherited: InheritedValueType
12690
+
12691
+ """Pagination options for the list query."""
12692
+ pagination: Pagination
12693
+
12694
+ """Sorting options for the list query."""
12695
+ sortings: [Sorting!]
12696
+ ): ProjectChecklistList!
12697
+
12307
12698
  """To fetch a ProjectReport"""
12308
12699
  projectReport(id: String!): ProjectReport
12309
12700
 
@@ -13796,6 +14187,7 @@ input UpdateBuildingInspectionSubmitType {
13796
14187
  checklistItem: [ChecklistItemSubmitInputType!]!
13797
14188
  id: String!
13798
14189
  memo: String
14190
+ requestDate: String
13799
14191
  }
13800
14192
 
13801
14193
  input UpdateTaskChecklistSubmitType {