@things-factory/operato-dataset 9.0.0-beta.34 → 9.0.0-beta.35
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/dist-client/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
- package/schema.graphql +24 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-dataset",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.35",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -68,10 +68,10 @@
|
|
|
68
68
|
"@things-factory/auth-ui": "^9.0.0-beta.34",
|
|
69
69
|
"@things-factory/board-service": "^9.0.0-beta.34",
|
|
70
70
|
"@things-factory/board-ui": "^9.0.0-beta.34",
|
|
71
|
-
"@things-factory/ccp": "^9.0.0-beta.
|
|
71
|
+
"@things-factory/ccp": "^9.0.0-beta.35",
|
|
72
72
|
"@things-factory/context-ui": "^9.0.0-beta.34",
|
|
73
73
|
"@things-factory/dashboard": "^9.0.0-beta.34",
|
|
74
|
-
"@things-factory/dataset": "^9.0.0-beta.
|
|
74
|
+
"@things-factory/dataset": "^9.0.0-beta.35",
|
|
75
75
|
"@things-factory/edge-client": "^9.0.0-beta.34",
|
|
76
76
|
"@things-factory/evaluation": "^9.0.0-beta.34",
|
|
77
77
|
"@things-factory/export-ui": "^9.0.0-beta.34",
|
|
@@ -88,13 +88,13 @@
|
|
|
88
88
|
"@things-factory/notification": "^9.0.0-beta.34",
|
|
89
89
|
"@things-factory/oauth2-client": "^9.0.0-beta.34",
|
|
90
90
|
"@things-factory/organization": "^9.0.0-beta.34",
|
|
91
|
-
"@things-factory/qc": "^9.0.0-beta.
|
|
91
|
+
"@things-factory/qc": "^9.0.0-beta.35",
|
|
92
92
|
"@things-factory/resource-ui": "^9.0.0-beta.34",
|
|
93
93
|
"@things-factory/scheduler": "^9.0.0-beta.34",
|
|
94
94
|
"@things-factory/setting-base": "^9.0.0-beta.34",
|
|
95
95
|
"@things-factory/setting-ui": "^9.0.0-beta.34",
|
|
96
96
|
"@things-factory/shell": "^9.0.0-beta.34",
|
|
97
|
-
"@things-factory/spc": "^9.0.0-beta.
|
|
97
|
+
"@things-factory/spc": "^9.0.0-beta.35",
|
|
98
98
|
"@things-factory/system": "^9.0.0-beta.34",
|
|
99
99
|
"@things-factory/work-shift": "^9.0.0-beta.34",
|
|
100
100
|
"@things-factory/worklist": "^9.0.0-beta.34"
|
|
@@ -102,5 +102,5 @@
|
|
|
102
102
|
"devDependencies": {
|
|
103
103
|
"@things-factory/builder": "^9.0.0-beta.30"
|
|
104
104
|
},
|
|
105
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "fa3f48e49d6ec1b22e433bf06f953860cc239e1d"
|
|
106
106
|
}
|
package/schema.graphql
CHANGED
|
@@ -1159,6 +1159,11 @@ type DataItem {
|
|
|
1159
1159
|
"""
|
|
1160
1160
|
stat: String
|
|
1161
1161
|
|
|
1162
|
+
"""
|
|
1163
|
+
Specifies a secondary grouping identifier for data items with related content, allowing them to be displayed as subgroups within the overall dataset.
|
|
1164
|
+
"""
|
|
1165
|
+
subgroup: String
|
|
1166
|
+
|
|
1162
1167
|
"""
|
|
1163
1168
|
Specifies a key name to be used as a property in a JSON-like object, representing a subfield of a dataset record.
|
|
1164
1169
|
"""
|
|
@@ -1208,6 +1213,11 @@ input DataItemPatch {
|
|
|
1208
1213
|
"""
|
|
1209
1214
|
stat: String
|
|
1210
1215
|
|
|
1216
|
+
"""
|
|
1217
|
+
Specifies a secondary grouping identifier for data items with related content, allowing them to be displayed as subgroups within the overall dataset.
|
|
1218
|
+
"""
|
|
1219
|
+
subgroup: String
|
|
1220
|
+
|
|
1211
1221
|
"""
|
|
1212
1222
|
Specifies a key name to be used as a property in a JSON-like object, representing a subfield of a dataset record.
|
|
1213
1223
|
"""
|
|
@@ -1387,6 +1397,7 @@ type DataSensor {
|
|
|
1387
1397
|
active: Boolean
|
|
1388
1398
|
appliance: Appliance
|
|
1389
1399
|
brand: String
|
|
1400
|
+
capacity: Float
|
|
1390
1401
|
createdAt: DateTimeISO
|
|
1391
1402
|
creator: User
|
|
1392
1403
|
dataSet: DataSet
|
|
@@ -1405,6 +1416,7 @@ type DataSensor {
|
|
|
1405
1416
|
refBy: String
|
|
1406
1417
|
serialNo: String
|
|
1407
1418
|
tag: String
|
|
1419
|
+
unit: String
|
|
1408
1420
|
updatedAt: DateTimeISO
|
|
1409
1421
|
updater: User
|
|
1410
1422
|
}
|
|
@@ -1418,6 +1430,7 @@ input DataSensorPatch {
|
|
|
1418
1430
|
active: Boolean
|
|
1419
1431
|
appliance: ObjectRef
|
|
1420
1432
|
brand: String
|
|
1433
|
+
capacity: Float
|
|
1421
1434
|
cuFlag: String!
|
|
1422
1435
|
dataSet: ObjectRef
|
|
1423
1436
|
decoder: ObjectRef
|
|
@@ -1430,6 +1443,7 @@ input DataSensorPatch {
|
|
|
1430
1443
|
refBy: String
|
|
1431
1444
|
serialNo: String
|
|
1432
1445
|
tag: String
|
|
1446
|
+
unit: String
|
|
1433
1447
|
}
|
|
1434
1448
|
|
|
1435
1449
|
"""Entity for DataSet"""
|
|
@@ -1841,6 +1855,7 @@ input DomainGeneratorInput {
|
|
|
1841
1855
|
|
|
1842
1856
|
input DomainInput {
|
|
1843
1857
|
description: String
|
|
1858
|
+
extType: String
|
|
1844
1859
|
name: String!
|
|
1845
1860
|
}
|
|
1846
1861
|
|
|
@@ -1855,6 +1870,7 @@ input DomainPatch {
|
|
|
1855
1870
|
brandName: String
|
|
1856
1871
|
contentImage: String
|
|
1857
1872
|
description: String
|
|
1873
|
+
extType: String
|
|
1858
1874
|
id: String
|
|
1859
1875
|
name: String
|
|
1860
1876
|
owner: String
|
|
@@ -3504,6 +3520,9 @@ type Mutation {
|
|
|
3504
3520
|
"""To submit a ActivityThread"""
|
|
3505
3521
|
submitActivityThread(id: String!, output: Object, reason: String): ActivityThread!
|
|
3506
3522
|
|
|
3523
|
+
"""To submit ActivityThread List"""
|
|
3524
|
+
submitActivityThreadList(ids: [String!]!): Boolean!
|
|
3525
|
+
|
|
3507
3526
|
"""To synchronize auth-providers users"""
|
|
3508
3527
|
synchronizeAuthProviderUsers(id: String!): Boolean!
|
|
3509
3528
|
|
|
@@ -3988,6 +4007,7 @@ input NewDataSensor {
|
|
|
3988
4007
|
active: Boolean
|
|
3989
4008
|
appliance: ObjectRef
|
|
3990
4009
|
brand: String
|
|
4010
|
+
capacity: Float
|
|
3991
4011
|
dataSet: ObjectRef
|
|
3992
4012
|
decoder: ObjectRef
|
|
3993
4013
|
description: String
|
|
@@ -3998,6 +4018,7 @@ input NewDataSensor {
|
|
|
3998
4018
|
refBy: String
|
|
3999
4019
|
serialNo: String
|
|
4000
4020
|
tag: String
|
|
4021
|
+
unit: String
|
|
4001
4022
|
}
|
|
4002
4023
|
|
|
4003
4024
|
input NewDataSet {
|
|
@@ -5279,6 +5300,9 @@ type Query {
|
|
|
5279
5300
|
"""To fetch domain"""
|
|
5280
5301
|
domain(id: String!): Domain!
|
|
5281
5302
|
|
|
5303
|
+
"""To fetch domain"""
|
|
5304
|
+
domainTypes: [String!]!
|
|
5305
|
+
|
|
5282
5306
|
"""To fetch all domains (Only superuser is granted this privilege.)"""
|
|
5283
5307
|
domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
5284
5308
|
|