@dssp/dssp 1.0.0-alpha.51 → 1.0.0-alpha.52

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/schema.graphql +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dssp/dssp",
3
- "version": "1.0.0-alpha.51",
3
+ "version": "1.0.0-alpha.52",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -40,8 +40,8 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@dssp/building-complex": "^1.0.0-alpha.50",
43
- "@dssp/project": "^1.0.0-alpha.51",
44
- "@dssp/supervision": "^1.0.0-alpha.51",
43
+ "@dssp/project": "^1.0.0-alpha.52",
44
+ "@dssp/supervision": "^1.0.0-alpha.52",
45
45
  "@material/web": "^2.1.0",
46
46
  "@operato/chart": "^9.0.0",
47
47
  "@operato/gantt": "^9.0.0",
@@ -75,5 +75,5 @@
75
75
  "devDependencies": {
76
76
  "@things-factory/builder": "^9.0.0"
77
77
  },
78
- "gitHead": "9d2f797951e910a975cbc50bc3e6ba300554bd08"
78
+ "gitHead": "d0c51e9657908cc4a4543e49f5095d4235efd835"
79
79
  }
package/schema.graphql CHANGED
@@ -1929,6 +1929,7 @@ type ChecklistTemplateItem {
1929
1929
  detailTypeName: String!
1930
1930
  id: ID!
1931
1931
  inspctionCriteria: String
1932
+ inspctionCriteriaText: String
1932
1933
  mainType: String!
1933
1934
  name: String!
1934
1935
  sequence: Int
@@ -1948,6 +1949,7 @@ input ChecklistTemplateItemPatch {
1948
1949
  detailType: String
1949
1950
  id: ID
1950
1951
  inspctionCriteria: String
1952
+ inspctionCriteriaText: String
1951
1953
  mainType: String
1952
1954
  name: String
1953
1955
  sequence: Int
@@ -10412,6 +10414,9 @@ type Query {
10412
10414
  """Sorting options for the list query."""
10413
10415
  sortings: [Sorting!]
10414
10416
  ): ContactList!
10417
+
10418
+ """프로젝트 타입 조회"""
10419
+ currentProjectType: String!
10415
10420
  customers: [Domain!]!
10416
10421
  dailyWorklogDatesOfProject(endDate: String!, projectId: String!, startDate: String!): [BuildingInspectionDailyWorklog!]!
10417
10422