@things-factory/operato-dataset 6.2.119 → 6.2.121

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 +7 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-dataset",
3
- "version": "6.2.119",
3
+ "version": "6.2.121",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -61,40 +61,40 @@
61
61
  "@operato/scene-table": "^1.0.0",
62
62
  "@operato/scene-timer": "^1.0.0",
63
63
  "@operato/shell": "^1.2.6",
64
- "@things-factory/api": "^6.2.115",
65
- "@things-factory/apptool-base": "^6.2.115",
66
- "@things-factory/apptool-ui": "^6.2.115",
67
- "@things-factory/auth-base": "^6.2.115",
68
- "@things-factory/auth-ui": "^6.2.115",
69
- "@things-factory/board-service": "^6.2.118",
70
- "@things-factory/board-ui": "^6.2.119",
71
- "@things-factory/ccp": "^6.2.118",
72
- "@things-factory/context-ui": "^6.2.115",
73
- "@things-factory/dashboard": "^6.2.119",
74
- "@things-factory/dataset": "^6.2.118",
75
- "@things-factory/export-ui": "^6.2.115",
76
- "@things-factory/help": "^6.2.115",
77
- "@things-factory/i18n-base": "^6.2.115",
78
- "@things-factory/integration-base": "^6.2.118",
79
- "@things-factory/integration-msgraph": "^6.2.118",
80
- "@things-factory/integration-ui": "^6.2.118",
81
- "@things-factory/lite-menu": "^6.2.119",
82
- "@things-factory/more-base": "^6.2.115",
83
- "@things-factory/more-ui": "^6.2.115",
84
- "@things-factory/notification": "^6.2.115",
85
- "@things-factory/oauth2-client": "^6.2.115",
86
- "@things-factory/organization": "^6.2.115",
87
- "@things-factory/qc": "^6.2.118",
88
- "@things-factory/resource-ui": "^6.2.115",
89
- "@things-factory/setting-base": "^6.2.115",
90
- "@things-factory/setting-ui": "^6.2.115",
91
- "@things-factory/shell": "^6.2.115",
92
- "@things-factory/system": "^6.2.115",
93
- "@things-factory/work-shift": "^6.2.115",
94
- "@things-factory/worklist": "^6.2.118"
64
+ "@things-factory/api": "^6.2.121",
65
+ "@things-factory/apptool-base": "^6.2.121",
66
+ "@things-factory/apptool-ui": "^6.2.121",
67
+ "@things-factory/auth-base": "^6.2.121",
68
+ "@things-factory/auth-ui": "^6.2.121",
69
+ "@things-factory/board-service": "^6.2.121",
70
+ "@things-factory/board-ui": "^6.2.121",
71
+ "@things-factory/ccp": "^6.2.121",
72
+ "@things-factory/context-ui": "^6.2.121",
73
+ "@things-factory/dashboard": "^6.2.121",
74
+ "@things-factory/dataset": "^6.2.121",
75
+ "@things-factory/export-ui": "^6.2.121",
76
+ "@things-factory/help": "^6.2.121",
77
+ "@things-factory/i18n-base": "^6.2.121",
78
+ "@things-factory/integration-base": "^6.2.121",
79
+ "@things-factory/integration-msgraph": "^6.2.121",
80
+ "@things-factory/integration-ui": "^6.2.121",
81
+ "@things-factory/lite-menu": "^6.2.121",
82
+ "@things-factory/more-base": "^6.2.121",
83
+ "@things-factory/more-ui": "^6.2.121",
84
+ "@things-factory/notification": "^6.2.121",
85
+ "@things-factory/oauth2-client": "^6.2.121",
86
+ "@things-factory/organization": "^6.2.121",
87
+ "@things-factory/qc": "^6.2.121",
88
+ "@things-factory/resource-ui": "^6.2.121",
89
+ "@things-factory/setting-base": "^6.2.121",
90
+ "@things-factory/setting-ui": "^6.2.121",
91
+ "@things-factory/shell": "^6.2.121",
92
+ "@things-factory/system": "^6.2.121",
93
+ "@things-factory/work-shift": "^6.2.121",
94
+ "@things-factory/worklist": "^6.2.121"
95
95
  },
96
96
  "devDependencies": {
97
97
  "@things-factory/builder": "^6.2.115"
98
98
  },
99
- "gitHead": "4beba1e0d0a423e3c5437789f1276fd5e7b8a108"
99
+ "gitHead": "69cf96b129842591e03dece330e7a7c605c6b3e2"
100
100
  }
package/schema.graphql CHANGED
@@ -1380,6 +1380,11 @@ type DataSensor {
1380
1380
  createdAt: DateTimeISO
1381
1381
  creator: User
1382
1382
  dataSet: DataSet
1383
+
1384
+ """
1385
+ The decoder scenario that automatically executes based on the trigger of raw data collection
1386
+ """
1387
+ decoder: Scenario
1383
1388
  description: String
1384
1389
  deviceId: String
1385
1390
  domain: Domain
@@ -1405,6 +1410,7 @@ input DataSensorPatch {
1405
1410
  brand: String
1406
1411
  cuFlag: String!
1407
1412
  dataSet: ObjectRef
1413
+ decoder: ObjectRef
1408
1414
  description: String
1409
1415
  deviceId: String
1410
1416
  id: ID
@@ -3843,6 +3849,7 @@ input NewDataSensor {
3843
3849
  appliance: ObjectRef
3844
3850
  brand: String
3845
3851
  dataSet: ObjectRef
3852
+ decoder: ObjectRef
3846
3853
  description: String
3847
3854
  deviceId: String
3848
3855
  model: String
@@ -5154,9 +5161,6 @@ type Query {
5154
5161
  """To fetch my notifications"""
5155
5162
  myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
5156
5163
 
5157
- """To fetch current users privileges for current domain"""
5158
- myPrivileges: [Privilege!]!
5159
-
5160
5164
  """To fetch roles of current user"""
5161
5165
  myRoles: [Role!]!
5162
5166