@things-factory/operato-board 7.0.8 → 7.0.10

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 +33 -33
  2. package/schema.graphql +19 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-board",
3
- "version": "7.0.8",
3
+ "version": "7.0.10",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -91,45 +91,45 @@
91
91
  "@operato/shell": "^7.0.0",
92
92
  "@operato/styles": "^7.0.0",
93
93
  "@operato/utils": "^7.0.0",
94
- "@things-factory/apptool-ui": "^7.0.6",
95
- "@things-factory/auth-azure-ad": "^7.0.6",
96
- "@things-factory/auth-google": "^7.0.6",
97
- "@things-factory/auth-ui": "^7.0.8",
98
- "@things-factory/board-service": "^7.0.7",
99
- "@things-factory/board-ui": "^7.0.7",
100
- "@things-factory/context-ui": "^7.0.6",
101
- "@things-factory/export-ui": "^7.0.6",
102
- "@things-factory/fav-base": "^7.0.6",
103
- "@things-factory/font-base": "^7.0.6",
94
+ "@things-factory/apptool-ui": "^7.0.10",
95
+ "@things-factory/auth-azure-ad": "^7.0.10",
96
+ "@things-factory/auth-google": "^7.0.10",
97
+ "@things-factory/auth-ui": "^7.0.10",
98
+ "@things-factory/board-service": "^7.0.10",
99
+ "@things-factory/board-ui": "^7.0.10",
100
+ "@things-factory/context-ui": "^7.0.10",
101
+ "@things-factory/export-ui": "^7.0.10",
102
+ "@things-factory/fav-base": "^7.0.10",
103
+ "@things-factory/font-base": "^7.0.10",
104
104
  "@things-factory/form-ui": "^7.0.0",
105
- "@things-factory/help": "^7.0.6",
106
- "@things-factory/i18n-base": "^7.0.6",
107
- "@things-factory/import-ui": "^7.0.6",
108
- "@things-factory/integration-base": "^7.0.7",
109
- "@things-factory/integration-email": "^7.0.7",
110
- "@things-factory/integration-influxdb": "^7.0.7",
111
- "@things-factory/integration-msgraph": "^7.0.7",
112
- "@things-factory/integration-notification": "^7.0.7",
113
- "@things-factory/integration-openai": "^7.0.7",
114
- "@things-factory/integration-ui": "^7.0.7",
115
- "@things-factory/more-ui": "^7.0.6",
116
- "@things-factory/notification": "^7.0.7",
117
- "@things-factory/oauth2-client": "^7.0.7",
118
- "@things-factory/offline-ui": "^7.0.6",
105
+ "@things-factory/help": "^7.0.10",
106
+ "@things-factory/i18n-base": "^7.0.10",
107
+ "@things-factory/import-ui": "^7.0.10",
108
+ "@things-factory/integration-base": "^7.0.10",
109
+ "@things-factory/integration-email": "^7.0.10",
110
+ "@things-factory/integration-influxdb": "^7.0.10",
111
+ "@things-factory/integration-msgraph": "^7.0.10",
112
+ "@things-factory/integration-notification": "^7.0.10",
113
+ "@things-factory/integration-openai": "^7.0.10",
114
+ "@things-factory/integration-ui": "^7.0.10",
115
+ "@things-factory/more-ui": "^7.0.10",
116
+ "@things-factory/notification": "^7.0.10",
117
+ "@things-factory/oauth2-client": "^7.0.10",
118
+ "@things-factory/offline-ui": "^7.0.10",
119
119
  "@things-factory/pdf": "^7.0.0",
120
- "@things-factory/print-service": "^7.0.6",
121
- "@things-factory/print-ui": "^7.0.6",
122
- "@things-factory/resource-ui": "^7.0.8",
123
- "@things-factory/setting-ui": "^7.0.7",
124
- "@things-factory/shell": "^7.0.6",
125
- "@things-factory/system": "^7.0.6"
120
+ "@things-factory/print-service": "^7.0.10",
121
+ "@things-factory/print-ui": "^7.0.10",
122
+ "@things-factory/resource-ui": "^7.0.10",
123
+ "@things-factory/setting-ui": "^7.0.10",
124
+ "@things-factory/shell": "^7.0.10",
125
+ "@things-factory/system": "^7.0.10"
126
126
  },
127
127
  "devDependencies": {
128
- "@things-factory/board-test": "^7.0.7",
128
+ "@things-factory/board-test": "^7.0.10",
129
129
  "@things-factory/builder": "^7.0.5"
130
130
  },
131
131
  "resolutions": {
132
132
  "passport": "^0.7.0"
133
133
  },
134
- "gitHead": "d6da72d456978c0b044fbcbaf235f8d21f628aab"
134
+ "gitHead": "9da4e145880a6d637db60f03116d5bbfdb6f4cfc"
135
135
  }
package/schema.graphql CHANGED
@@ -2692,11 +2692,16 @@ input NewSetting {
2692
2692
 
2693
2693
  input NewStateRegister {
2694
2694
  description: String
2695
+ group: String
2695
2696
  name: String!
2697
+
2698
+ """스테이트가 숫자형인 경우 자릿수 정보"""
2699
+ place: String
2696
2700
  refBy: String
2697
2701
  state: Object
2698
2702
  ttl: Int
2699
2703
  type: String
2704
+ unit: String
2700
2705
  }
2701
2706
 
2702
2707
  input NewTerminology {
@@ -3773,15 +3778,24 @@ type StateRegister {
3773
3778
  creator: User
3774
3779
  description: String
3775
3780
  domain: Domain!
3781
+ group: String
3776
3782
  id: ID!
3777
3783
  name: String
3784
+
3785
+ """스테이트가 숫자형인 경우 자릿수 정보"""
3786
+ place: String
3778
3787
  refBy: String
3788
+
3789
+ """현재 상태값"""
3779
3790
  state: Object
3780
3791
  ttl: Int
3781
3792
  type: String
3793
+ unit: String
3782
3794
  updatedAt: DateTimeISO
3783
3795
  updater: User
3784
3796
  writer: User
3797
+
3798
+ """스테이트가 기록된 시간"""
3785
3799
  wroteAt: DateTimeISO
3786
3800
  }
3787
3801
 
@@ -3793,12 +3807,17 @@ type StateRegisterList {
3793
3807
  input StateRegisterPatch {
3794
3808
  cuFlag: String
3795
3809
  description: String
3810
+ group: String
3796
3811
  id: ID
3797
3812
  name: String
3813
+
3814
+ """스테이트가 숫자형인 경우 자릿수 정보"""
3815
+ place: String
3798
3816
  refBy: String
3799
3817
  state: Object
3800
3818
  ttl: Int
3801
3819
  type: String
3820
+ unit: String
3802
3821
  }
3803
3822
 
3804
3823
  type Step {