@dssp/dkpi 1.0.0-alpha.74 → 1.0.0-alpha.76

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dssp/dkpi",
3
- "version": "1.0.0-alpha.74",
3
+ "version": "1.0.0-alpha.76",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -48,7 +48,7 @@
48
48
  "docker:push": "docker image push hatiolab/dkpi:latest && docker image push hatiolab/dkpi:$npm_package_version"
49
49
  },
50
50
  "dependencies": {
51
- "@dssp/project": "^1.0.0-alpha.74",
51
+ "@dssp/project": "^1.0.0-alpha.76",
52
52
  "@material/web": "^2.4.0",
53
53
  "@operato/chart": "^10.0.0-beta",
54
54
  "@operato/gantt": "^10.0.0-beta",
@@ -105,5 +105,5 @@
105
105
  "devDependencies": {
106
106
  "@things-factory/builder": "^10.0.0-beta"
107
107
  },
108
- "gitHead": "91d3dc0dbc1e5db81c647af9b4c64674aa0eac54"
108
+ "gitHead": "2cdad3871fe43d7e7010bbc4f8d05e9f64d96c2b"
109
109
  }
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
 
@@ -2462,7 +2472,9 @@ type ConstructionChecklistTemplateItem {
2462
2472
  constructionChecklistTemplate: ConstructionChecklistTemplate
2463
2473
  createdAt: DateTimeISO
2464
2474
  creator: User
2475
+ criteriaRequestStatus: CriteriaRequestStatus
2465
2476
  id: ID!
2477
+ inspctionCriteria: String
2466
2478
  mainType: String
2467
2479
  name: String!
2468
2480
  recommendation1: String
@@ -2482,6 +2494,7 @@ type ConstructionChecklistTemplateItemList {
2482
2494
 
2483
2495
  input ConstructionChecklistTemplateItemPatch {
2484
2496
  id: ID
2497
+ inspctionCriteria: String
2485
2498
  mainType: String
2486
2499
  name: String
2487
2500
  recommendation1: String
@@ -2538,6 +2551,7 @@ type ConstructionType {
2538
2551
  domain: Domain
2539
2552
  id: ID!
2540
2553
  name: String
2554
+ projectType: String
2541
2555
  updatedAt: DateTimeISO
2542
2556
  updater: User
2543
2557
  }
@@ -2552,6 +2566,7 @@ input ConstructionTypePatch {
2552
2566
  description: String
2553
2567
  id: ID
2554
2568
  name: String
2569
+ projectType: String
2555
2570
  }
2556
2571
 
2557
2572
  """Entity for Contact"""
@@ -6513,6 +6528,9 @@ type Mutation {
6513
6528
  """프로젝트 생성"""
6514
6529
  createProject(project: NewProject!): Project!
6515
6530
 
6531
+ """프로젝트 체크리스트 생성"""
6532
+ createProjectChecklist(constructionDetailTypeId: String!, constructionTypeId: String!, items: [ProjectChecklistItemInput!]!, name: String!, projectId: String!): ProjectChecklist!
6533
+
6516
6534
  """To create new ProjectReport"""
6517
6535
  createProjectReport(projectReport: NewProjectReport!): ProjectReport!
6518
6536
 
@@ -6972,6 +6990,9 @@ type Mutation {
6972
6990
  """To delete Project"""
6973
6991
  deleteProject(id: String!): Boolean!
6974
6992
 
6993
+ """프로젝트 체크리스트 삭제"""
6994
+ deleteProjectChecklists(ids: [String!]!): Boolean!
6995
+
6975
6996
  """To delete ProjectReport"""
6976
6997
  deleteProjectReport(id: String!): Boolean!
6977
6998
 
@@ -7903,6 +7924,9 @@ type Mutation {
7903
7924
  """프로젝트 업데이트 (중복 사용 금지)"""
7904
7925
  updateProject(project: ProjectPatch!): Project!
7905
7926
 
7927
+ """프로젝트 체크리스트 수정"""
7928
+ updateProjectChecklist(id: String!, items: [ProjectChecklistItemInput!]!, name: String!): ProjectChecklist!
7929
+
7906
7930
  """프로젝트 도면 업데이트"""
7907
7931
  updateProjectPlan(project: ProjectPatch!): Project!
7908
7932
 
@@ -10118,6 +10142,51 @@ type Project {
10118
10142
  weeklyProgress: Float
10119
10143
  }
10120
10144
 
10145
+ type ProjectChecklist {
10146
+ constructionDetailTypeId: String!
10147
+ constructionTypeId: String!
10148
+ createdAt: DateTimeISO
10149
+ creator: User
10150
+ deletedAt: DateTimeISO
10151
+ domain: Domain
10152
+ id: ID!
10153
+ name: String!
10154
+ projectChecklistItems: [ProjectChecklistItem!]
10155
+ projectId: String!
10156
+ updatedAt: DateTimeISO
10157
+ updater: User
10158
+ }
10159
+
10160
+ type ProjectChecklistItem {
10161
+ createdAt: DateTimeISO
10162
+ creator: User
10163
+ id: ID!
10164
+ inspctionCriteria: String
10165
+ mainType: String
10166
+ name: String!
10167
+ projectChecklist: ProjectChecklist
10168
+ sequence: Int
10169
+ updatedAt: DateTimeISO
10170
+ updater: User
10171
+ }
10172
+
10173
+ input ProjectChecklistItemInput {
10174
+ inspctionCriteria: String
10175
+ mainType: String
10176
+ name: String!
10177
+ sequence: Int
10178
+ }
10179
+
10180
+ type ProjectChecklistItemList {
10181
+ items: [ProjectChecklistItem!]!
10182
+ total: Int!
10183
+ }
10184
+
10185
+ type ProjectChecklistList {
10186
+ items: [ProjectChecklist!]!
10187
+ total: Int!
10188
+ }
10189
+
10121
10190
  type ProjectList {
10122
10191
  """프로젝트 리스트 항목들"""
10123
10192
  items: [Project!]!
@@ -12492,6 +12561,36 @@ type Query {
12492
12561
  """To fetch Project"""
12493
12562
  projectByBuildingLevelId(buildingLevelId: String!): Project!
12494
12563
 
12564
+ """프로젝트 체크리스트 아이템 목록"""
12565
+ projectChecklistItems(
12566
+ """An array of filter conditions to apply to the list query."""
12567
+ filters: [Filter!]
12568
+
12569
+ """Inherited value type for the list query."""
12570
+ inherited: InheritedValueType
12571
+
12572
+ """Pagination options for the list query."""
12573
+ pagination: Pagination
12574
+
12575
+ """Sorting options for the list query."""
12576
+ sortings: [Sorting!]
12577
+ ): ProjectChecklistItemList!
12578
+
12579
+ """프로젝트 체크리스트 목록"""
12580
+ projectChecklists(
12581
+ """An array of filter conditions to apply to the list query."""
12582
+ filters: [Filter!]
12583
+
12584
+ """Inherited value type for the list query."""
12585
+ inherited: InheritedValueType
12586
+
12587
+ """Pagination options for the list query."""
12588
+ pagination: Pagination
12589
+
12590
+ """Sorting options for the list query."""
12591
+ sortings: [Sorting!]
12592
+ ): ProjectChecklistList!
12593
+
12495
12594
  """To fetch a ProjectReport"""
12496
12595
  projectReport(id: String!): ProjectReport
12497
12596
 
@@ -13993,6 +14092,7 @@ input UpdateBuildingInspectionSubmitType {
13993
14092
  checklistItem: [ChecklistItemSubmitInputType!]!
13994
14093
  id: String!
13995
14094
  memo: String
14095
+ requestDate: String
13996
14096
  }
13997
14097
 
13998
14098
  input UpdateTaskChecklistSubmitType {