@dssp/dcsp 1.0.0-alpha.64 → 1.0.0-alpha.66

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
@@ -3,15 +3,6 @@
3
3
  # !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
4
4
  # -----------------------------------------------
5
5
 
6
- input APIDocCompletionInput {
7
- code: String!
8
- language: String
9
- }
10
-
11
- type APIDocCompletionOutput {
12
- message: String
13
- }
14
-
15
6
  """Represents a pair of access and refresh tokens."""
16
7
  type AccessToken {
17
8
  """The access token for API authentication."""
@@ -1514,6 +1505,7 @@ type BuildingInspection {
1514
1505
  creator: User
1515
1506
  deletedAt: DateTimeISO
1516
1507
  drawingMarker: String
1508
+ failCount: Float
1517
1509
  id: ID!
1518
1510
  manager: ProjectManagerOutput
1519
1511
  memo: String
@@ -1582,6 +1574,7 @@ type BuildingInspectionHistory {
1582
1574
  createdAt: DateTimeISO
1583
1575
  creator: User
1584
1576
  drawingMarker: String
1577
+ failCount: Float
1585
1578
  id: ID!
1586
1579
  loggedAt: DateTimeISO
1587
1580
  manager: ProjectManagerOutput
@@ -1611,6 +1604,9 @@ type BuildingInspectionSummary {
1611
1604
  """검측 통과 수"""
1612
1605
  pass: Int!
1613
1606
 
1607
+ """재검측 대기 수 (failCount > 0 인 WAIT/OVERALL_WAIT)"""
1608
+ reWait: Int
1609
+
1614
1610
  """검측 요청 수"""
1615
1611
  request: Int!
1616
1612
 
@@ -1645,6 +1641,9 @@ input BuildingInspectionsOfBuildingLevel {
1645
1641
  input BuildingInspectionsOfProject {
1646
1642
  limit: Float
1647
1643
  projectId: String!
1644
+
1645
+ """상태 필터 (WAIT, REQUEST, FAIL, RE_WAIT, PASS)"""
1646
+ statusFilter: String
1648
1647
  }
1649
1648
 
1650
1649
  """층 정보"""
@@ -1692,14 +1691,6 @@ input BuildingPatch {
1692
1691
  name: String
1693
1692
  }
1694
1693
 
1695
- input ChatCompletionInput {
1696
- content: String!
1697
- }
1698
-
1699
- type ChatCompletionOutput {
1700
- message: String
1701
- }
1702
-
1703
1694
  type Checklist {
1704
1695
  buildingInspection: BuildingInspection!
1705
1696
  checklistAttachments(description: String): [Attachment!]!
@@ -1989,16 +1980,6 @@ input ChecklistTypePatch {
1989
1980
  mainType: String
1990
1981
  }
1991
1982
 
1992
- input CodeDecipherInput {
1993
- code: String!
1994
- language: String
1995
- system: String
1996
- }
1997
-
1998
- type CodeDecipherOutput {
1999
- message: String
2000
- }
2001
-
2002
1983
  """Entity for CommonCode"""
2003
1984
  type CommonCode {
2004
1985
  createdAt: DateTimeISO
@@ -2502,15 +2483,18 @@ input DataItemPatch {
2502
2483
 
2503
2484
  """type enumeration of a data-item"""
2504
2485
  enum DataItemType {
2486
+ audio
2505
2487
  boolean
2506
2488
  date
2507
2489
  datetime
2508
2490
  file
2491
+ image
2509
2492
  number
2510
2493
  radio
2511
2494
  select
2512
2495
  signature
2513
2496
  text
2497
+ video
2514
2498
  }
2515
2499
 
2516
2500
  """
@@ -4100,16 +4084,6 @@ input GroupPatch {
4100
4084
  name: String
4101
4085
  }
4102
4086
 
4103
- input ImageCompletionInput {
4104
- count: Float!
4105
- description: String!
4106
- size: String!
4107
- }
4108
-
4109
- type ImageCompletionOutput {
4110
- images: String
4111
- }
4112
-
4113
4087
  """
4114
4088
  Enumeration for inherited value types: None, Only, or Include. Used to specify how values are inherited in queries or filters.
4115
4089
  """
@@ -5109,7 +5083,7 @@ type KpiValue {
5109
5083
  periodType: KpiPeriodType!
5110
5084
 
5111
5085
  """
5112
- Performance score calculated from KPI value using scoreFormula or grades lookup table. Range: 0-1.
5086
+ Performance score calculated from KPI value using scoreFormula or grades lookup table.
5113
5087
  """
5114
5088
  score: Float
5115
5089
 
@@ -5200,6 +5174,11 @@ input KpiValuePatch {
5200
5174
  version: Int
5201
5175
  }
5202
5176
 
5177
+ type KpiValuesObject {
5178
+ kpiName: String!
5179
+ value: Float!
5180
+ }
5181
+
5203
5182
  """Visualization type for KPI display (CARD, GAUGE, PROGRESS, etc.)"""
5204
5183
  enum KpiVizType {
5205
5184
  BADGE
@@ -9482,6 +9461,7 @@ input ProfileInput {
9482
9461
  """프로젝트"""
9483
9462
  type Project {
9484
9463
  buildingComplex: BuildingComplex
9464
+ buildingUsage: String
9485
9465
  completeReport: Attachment
9486
9466
  createdAt: DateTimeISO
9487
9467
  creator: User
@@ -9494,6 +9474,7 @@ type Project {
9494
9474
  inputType: String
9495
9475
  inspPassRate: Float
9496
9476
  kpi: Float
9477
+ kpiValues: [KpiValuesObject!]!
9497
9478
  mainPhoto: Attachment
9498
9479
  name: String!
9499
9480
  postalCode: String
@@ -9502,6 +9483,7 @@ type Project {
9502
9483
  robotProgressRate: Float
9503
9484
  rootTasks: [Task!]
9504
9485
  scheduleTable: Attachment
9486
+ sectorType: String
9505
9487
  startDate: String
9506
9488
  state: String!
9507
9489
  structuralSafetyRate: Float
@@ -9533,6 +9515,9 @@ input ProjectPatch {
9533
9515
  """연관된 건물 복합체 정보 (선택 사항)"""
9534
9516
  buildingComplex: BuildingComplexPatch
9535
9517
 
9518
+ """건물 용도 (RESIDENTIAL: 주거, NON_RESIDENTIAL: 비주거)"""
9519
+ buildingUsage: String
9520
+
9536
9521
  """프로젝트 문서 네이밍"""
9537
9522
  documentNaming: String
9538
9523
 
@@ -9560,6 +9545,9 @@ input ProjectPatch {
9560
9545
  """로봇 작업 진행율 (%)"""
9561
9546
  robotProgressRate: Float
9562
9547
 
9548
+ """발주 유형 (PUBLIC: 공공, PRIVATE: 민간)"""
9549
+ sectorType: String
9550
+
9563
9551
  """프로젝트 착공일정"""
9564
9552
  startDate: String
9565
9553
 
@@ -9647,8 +9635,6 @@ type PropertySpec {
9647
9635
  }
9648
9636
 
9649
9637
  type Query {
9650
- APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
9651
-
9652
9638
  """To fetch a ActionPlan"""
9653
9639
  actionPlan(id: String!): ActionPlan
9654
9640
 
@@ -9997,8 +9983,14 @@ type Query {
9997
9983
  sortings: [Sorting!]
9998
9984
  ): AuthProviderList!
9999
9985
 
10000
- """Finds a single board by its ID."""
10001
- board(id: String!): Board!
9986
+ """
9987
+ Finds a single board by its ID. If cachedUpdatedAt matches, model is omitted.
9988
+ """
9989
+ board(
9990
+ """Client cache timestamp — if matches, model field is omitted"""
9991
+ cachedUpdatedAt: String
9992
+ id: String!
9993
+ ): Board!
10002
9994
 
10003
9995
  """Finds a single board by its name."""
10004
9996
  boardByName(name: String!): Board
@@ -10075,6 +10067,11 @@ type Query {
10075
10067
  sortings: [Sorting!]
10076
10068
  ): BoardList!
10077
10069
 
10070
+ """
10071
+ Retrieves boards that have been updated or soft-deleted since the given timestamp.
10072
+ """
10073
+ boardsUpdatedSince(since: DateTimeISO!): [Board!]!
10074
+
10078
10075
  """To fetch a building"""
10079
10076
  building(id: String!): Building
10080
10077
 
@@ -10135,7 +10132,6 @@ type Query {
10135
10132
 
10136
10133
  """To fetch a building level"""
10137
10134
  buildingLevel(id: String!): BuildingLevel
10138
- chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
10139
10135
 
10140
10136
  """
10141
10137
  Checks if the system is configured to provide a default password for new users.
@@ -10775,8 +10771,6 @@ type Query {
10775
10771
  """Sorting options for the list query."""
10776
10772
  sortings: [Sorting!]
10777
10773
  ): [DynamicDataSummary!]!
10778
- decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
10779
- decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
10780
10774
 
10781
10775
  """To fetch a Department"""
10782
10776
  department(id: String!): Department
@@ -11058,8 +11052,6 @@ type Query {
11058
11052
 
11059
11053
  """To query whether I have the given permission"""
11060
11054
  hasPrivilege(category: String!, privilege: String!): Boolean!
11061
- i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
11062
- imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
11063
11055
 
11064
11056
  """BuildingInspection By ChecklistItemId"""
11065
11057
  inspectionByChecklistItemId: BuildingInspection!
@@ -13491,12 +13483,4 @@ input WorkerTypePatch {
13491
13483
  description: String
13492
13484
  id: ID
13493
13485
  name: String
13494
- }
13495
-
13496
- input i18nCompletionInput {
13497
- json: String!
13498
- }
13499
-
13500
- type i18nCompletionOutput {
13501
- message: String
13502
13486
  }
@@ -69,7 +69,6 @@
69
69
  </noscript>
70
70
  <!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
71
71
  <script src="/node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
72
- <script src="/node_modules/web-animations-js/web-animations-next.min.js"></script>
73
72
  <!-- Built with love using PWA Starter Kit -->
74
73
 
75
74
  <script src="<%- elementScript %>"></script>
@@ -63,7 +63,6 @@
63
63
  <noscript> Please enable JavaScript to view this website. </noscript>
64
64
  <!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
65
65
  <script src="/node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
66
- <script src="/node_modules/web-animations-js/web-animations-next.min.js"></script>
67
66
  <!-- Built with love using PWA Starter Kit -->
68
67
 
69
68
  <script src="/public/home.js"></script>