@things-factory/operato-dataset 6.2.59 → 6.2.62
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/package.json +5 -5
- package/schema.graphql +138 -11
- package/things-factory.config.js +1 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-dataset",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.62",
|
|
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": "^6.2.54",
|
|
69
69
|
"@things-factory/board-service": "^6.2.58",
|
|
70
70
|
"@things-factory/board-ui": "^6.2.58",
|
|
71
|
-
"@things-factory/ccp": "^6.2.
|
|
71
|
+
"@things-factory/ccp": "^6.2.62",
|
|
72
72
|
"@things-factory/context-ui": "^6.2.52",
|
|
73
73
|
"@things-factory/dashboard": "^6.2.58",
|
|
74
|
-
"@things-factory/dataset": "^6.2.
|
|
74
|
+
"@things-factory/dataset": "^6.2.62",
|
|
75
75
|
"@things-factory/export-ui": "^6.2.52",
|
|
76
76
|
"@things-factory/help": "^6.2.52",
|
|
77
77
|
"@things-factory/i18n-base": "^6.2.52",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"@things-factory/notification": "^6.2.54",
|
|
85
85
|
"@things-factory/oauth2-client": "^6.2.54",
|
|
86
86
|
"@things-factory/organization": "^6.2.54",
|
|
87
|
-
"@things-factory/qc": "^6.2.
|
|
87
|
+
"@things-factory/qc": "^6.2.62",
|
|
88
88
|
"@things-factory/resource-ui": "^6.2.54",
|
|
89
89
|
"@things-factory/setting-base": "^6.2.54",
|
|
90
90
|
"@things-factory/setting-ui": "^6.2.54",
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
"devDependencies": {
|
|
97
97
|
"@things-factory/builder": "^6.2.33"
|
|
98
98
|
},
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "150f0261ffcaaafad825e36fc0cd0aeb0325e73c"
|
|
100
100
|
}
|
package/schema.graphql
CHANGED
|
@@ -1085,38 +1085,90 @@ input DataArchivePatch {
|
|
|
1085
1085
|
|
|
1086
1086
|
"""Entity for DataItem"""
|
|
1087
1087
|
type DataItem {
|
|
1088
|
+
"""Indicates if the data item is active"""
|
|
1088
1089
|
active: Boolean
|
|
1090
|
+
|
|
1091
|
+
"""A description of the data item"""
|
|
1089
1092
|
description: String
|
|
1093
|
+
|
|
1094
|
+
"""
|
|
1095
|
+
Specifies a grouping identifier for data items with related content, allowing them to be displayed as subgroups within the overall dataset.
|
|
1096
|
+
"""
|
|
1097
|
+
group: String
|
|
1098
|
+
|
|
1099
|
+
"""Indicates if the data item is hidden"""
|
|
1090
1100
|
hidden: Boolean
|
|
1101
|
+
|
|
1102
|
+
"""The name of the data item"""
|
|
1091
1103
|
name: String!
|
|
1104
|
+
|
|
1105
|
+
"""Options associated with the data item type"""
|
|
1092
1106
|
options: Object
|
|
1107
|
+
|
|
1108
|
+
"""The maximum number of data values allowed for this field"""
|
|
1093
1109
|
quota: Int
|
|
1110
|
+
|
|
1111
|
+
"""Specifies the valid ranges and parameters for this data item."""
|
|
1094
1112
|
spec: Object
|
|
1095
1113
|
|
|
1096
1114
|
"""
|
|
1097
1115
|
The grouping logic for data summarization in the given field during periodic task deadlines.
|
|
1098
1116
|
"""
|
|
1099
1117
|
stat: String
|
|
1118
|
+
|
|
1119
|
+
"""
|
|
1120
|
+
Specifies a key name to be used as a property in a JSON-like object, representing a subfield of a dataset record.
|
|
1121
|
+
"""
|
|
1100
1122
|
tag: String
|
|
1123
|
+
|
|
1124
|
+
"""The type of the data item"""
|
|
1101
1125
|
type: String
|
|
1126
|
+
|
|
1127
|
+
"""The unit of measurement for the data item"""
|
|
1102
1128
|
unit: String
|
|
1103
1129
|
}
|
|
1104
1130
|
|
|
1105
1131
|
input DataItemPatch {
|
|
1132
|
+
"""Indicates if the data item is active"""
|
|
1106
1133
|
active: Boolean
|
|
1134
|
+
|
|
1135
|
+
"""A description of the data item"""
|
|
1107
1136
|
description: String
|
|
1137
|
+
|
|
1138
|
+
"""
|
|
1139
|
+
Specifies a grouping identifier for data items with related content, allowing them to be displayed as subgroups within the overall dataset.
|
|
1140
|
+
"""
|
|
1141
|
+
group: String
|
|
1142
|
+
|
|
1143
|
+
"""Indicates if the data item is hidden"""
|
|
1108
1144
|
hidden: Boolean
|
|
1145
|
+
|
|
1146
|
+
"""The name of the data item"""
|
|
1109
1147
|
name: String
|
|
1148
|
+
|
|
1149
|
+
"""Options associated with the data item type"""
|
|
1110
1150
|
options: Object
|
|
1151
|
+
|
|
1152
|
+
"""The maximum number of data values allowed for this field"""
|
|
1111
1153
|
quota: Int
|
|
1154
|
+
|
|
1155
|
+
"""Specifies the valid ranges and parameters for this data item."""
|
|
1112
1156
|
spec: Object
|
|
1113
1157
|
|
|
1114
1158
|
"""
|
|
1115
1159
|
The grouping logic for data summarization in the given field during periodic task deadlines.
|
|
1116
1160
|
"""
|
|
1117
1161
|
stat: String
|
|
1162
|
+
|
|
1163
|
+
"""
|
|
1164
|
+
Specifies a key name to be used as a property in a JSON-like object, representing a subfield of a dataset record.
|
|
1165
|
+
"""
|
|
1118
1166
|
tag: String
|
|
1167
|
+
|
|
1168
|
+
"""The type of the data item"""
|
|
1119
1169
|
type: DataItemType
|
|
1170
|
+
|
|
1171
|
+
"""The unit of measurement for the data item"""
|
|
1120
1172
|
unit: String
|
|
1121
1173
|
}
|
|
1122
1174
|
|
|
@@ -1321,57 +1373,132 @@ input DataSensorPatch {
|
|
|
1321
1373
|
|
|
1322
1374
|
"""Entity for DataSet"""
|
|
1323
1375
|
type DataSet {
|
|
1376
|
+
"""Indicates whether the dataset is currently active or in use."""
|
|
1324
1377
|
active: Boolean
|
|
1325
1378
|
approvalLine: [ApprovalLineItem!]!
|
|
1326
1379
|
|
|
1327
1380
|
"""Who to contact for OOC issues"""
|
|
1328
1381
|
assignees: [AssigneeItem!]
|
|
1382
|
+
|
|
1383
|
+
"""The date and time the dataset was created"""
|
|
1329
1384
|
createdAt: DateTimeISO
|
|
1385
|
+
|
|
1386
|
+
"""The user who created the dataset"""
|
|
1330
1387
|
creator: User
|
|
1388
|
+
|
|
1389
|
+
"""Data items for the dataset"""
|
|
1331
1390
|
dataItems: [DataItem!]
|
|
1391
|
+
|
|
1392
|
+
"""The key set used for this dataset"""
|
|
1332
1393
|
dataKeySet: DataKeySet
|
|
1394
|
+
|
|
1395
|
+
"""A description of the dataset"""
|
|
1333
1396
|
description: String
|
|
1397
|
+
|
|
1398
|
+
"""The domain to which the dataset belongs"""
|
|
1334
1399
|
domain: Domain
|
|
1335
1400
|
entryBoard: Board
|
|
1336
1401
|
|
|
1337
1402
|
"""The person responsible for manually entering the data for that dataset"""
|
|
1338
1403
|
entryRole: Role
|
|
1404
|
+
|
|
1405
|
+
"""
|
|
1406
|
+
Specifies the method of data entry for the dataset. If set to "generated", data entry screens are automatically generated based on the defined data items. For other types, specific entry screens are configured for each type and specified in the "entryView" field.
|
|
1407
|
+
"""
|
|
1339
1408
|
entryType: String
|
|
1409
|
+
|
|
1410
|
+
"""
|
|
1411
|
+
Specifies the custom data entry screen or view for the dataset. When "entryType" is not "generated", this field indicates the screen to be used for data entry. When "entryType" is "generated", this field may not apply.
|
|
1412
|
+
"""
|
|
1340
1413
|
entryView: String
|
|
1414
|
+
|
|
1415
|
+
"""The unique identifier of the dataset"""
|
|
1341
1416
|
id: ID!
|
|
1342
1417
|
latestCollectedAt: DateTimeISO
|
|
1343
1418
|
monitorBoard: Board
|
|
1419
|
+
|
|
1420
|
+
"""
|
|
1421
|
+
Specifies the method of data monitoring for the dataset. If set to "generated", monitoring screens are automatically generated based on the dataset configuration. For other types, specific monitoring screens are configured for each type and specified in the "monitorView" field.
|
|
1422
|
+
"""
|
|
1344
1423
|
monitorType: String
|
|
1424
|
+
|
|
1425
|
+
"""
|
|
1426
|
+
Specifies the custom data monitoring screen or view for the dataset. When "monitorType" is not "generated", this field indicates the screen to be used for data monitoring. When "monitorType" is "generated", this field may not apply.
|
|
1427
|
+
"""
|
|
1345
1428
|
monitorView: String
|
|
1429
|
+
|
|
1430
|
+
"""The name of the dataset"""
|
|
1346
1431
|
name: String!
|
|
1347
1432
|
nextSchedule: DateTimeISO
|
|
1348
1433
|
nextSummarySchedule: DateTimeISO
|
|
1349
1434
|
|
|
1350
|
-
"""
|
|
1435
|
+
"""
|
|
1436
|
+
Approval line for handling abnormal data occurance issues for that dataset
|
|
1437
|
+
"""
|
|
1351
1438
|
outlierApprovalLine: [ApprovalLineItem!]
|
|
1439
|
+
|
|
1440
|
+
"""
|
|
1441
|
+
Specifies the partition keys used to distribute and organize the dataset's data. Partition keys are properties or attributes that determine how data is logically grouped, stored, and retrieved. They enable efficient data management and querying by allowing data to be organized into smaller, manageable partitions or segments.
|
|
1442
|
+
"""
|
|
1352
1443
|
partitionKeys: Object
|
|
1353
1444
|
prevSchedule: DateTimeISO
|
|
1445
|
+
|
|
1446
|
+
"""The report template of the dataset"""
|
|
1354
1447
|
reportTemplate: String
|
|
1448
|
+
|
|
1449
|
+
"""
|
|
1450
|
+
Specifies the method of reporting for the dataset. If set to "generated", report templates are automatically generated based on the dataset configuration. For other types, specific report templates are configured for each type and specified in the "reportView" field.
|
|
1451
|
+
"""
|
|
1355
1452
|
reportType: String
|
|
1453
|
+
|
|
1454
|
+
"""
|
|
1455
|
+
Specifies the custom report template or view for the dataset. When "reportType" is not "generated", this field indicates the report template or view to be used for reporting. When "reportType" is "generated", this field may not apply.
|
|
1456
|
+
"""
|
|
1356
1457
|
reportView: String
|
|
1458
|
+
|
|
1459
|
+
"""Indicates if the dataset requires review"""
|
|
1357
1460
|
requiresReview: Boolean
|
|
1358
1461
|
|
|
1359
1462
|
"""Approval line for confrim of the dataset"""
|
|
1360
1463
|
reviewApprovalLine: [ApprovalLineItem!]
|
|
1464
|
+
|
|
1465
|
+
"""The schedule of the dataset"""
|
|
1361
1466
|
schedule: String
|
|
1467
|
+
|
|
1468
|
+
"""The schedule ID of the dataset"""
|
|
1362
1469
|
scheduleId: String
|
|
1363
1470
|
status: DataSetState!
|
|
1471
|
+
|
|
1472
|
+
"""The summary period of the dataset"""
|
|
1364
1473
|
summaryPeriod: String
|
|
1474
|
+
|
|
1475
|
+
"""The summary schedule of the dataset"""
|
|
1365
1476
|
summarySchedule: String
|
|
1477
|
+
|
|
1478
|
+
"""The summary schedule ID of the dataset"""
|
|
1366
1479
|
summaryScheduleId: String
|
|
1367
1480
|
|
|
1368
1481
|
"""The final authority on issues related to that dataset."""
|
|
1369
1482
|
supervisoryRole: Role
|
|
1483
|
+
|
|
1484
|
+
"""The timezone of the dataset"""
|
|
1370
1485
|
timezone: String
|
|
1486
|
+
|
|
1487
|
+
"""The type of the dataset"""
|
|
1371
1488
|
type: String
|
|
1489
|
+
|
|
1490
|
+
"""The date and time the dataset was last updated"""
|
|
1372
1491
|
updatedAt: DateTimeISO
|
|
1492
|
+
|
|
1493
|
+
"""The user who last updated the dataset"""
|
|
1373
1494
|
updater: User
|
|
1495
|
+
|
|
1496
|
+
"""
|
|
1497
|
+
Specifies the intended purpose or role of the dataset within the system. It helps users understand why the dataset was created and guides the specification of data items accordingly. Common use case options may include "QA," "CCP," "SPC," and others.
|
|
1498
|
+
"""
|
|
1374
1499
|
useCase: String
|
|
1500
|
+
|
|
1501
|
+
"""The version of the dataset"""
|
|
1375
1502
|
version: Float
|
|
1376
1503
|
}
|
|
1377
1504
|
|
|
@@ -1578,6 +1705,7 @@ type Domain {
|
|
|
1578
1705
|
description: String
|
|
1579
1706
|
extType: String
|
|
1580
1707
|
id: ID!
|
|
1708
|
+
iplist: Object
|
|
1581
1709
|
name: String!
|
|
1582
1710
|
owner: String
|
|
1583
1711
|
ownerUser: User
|
|
@@ -3406,6 +3534,9 @@ type Mutation {
|
|
|
3406
3534
|
"""To modify scenario information"""
|
|
3407
3535
|
updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
|
|
3408
3536
|
|
|
3537
|
+
"""To update secure IP list for domain"""
|
|
3538
|
+
updateSecureIPList(iplist: Object!): Object
|
|
3539
|
+
|
|
3409
3540
|
"""To modify Setting information"""
|
|
3410
3541
|
updateSetting(name: String!, patch: SettingPatch!): Setting!
|
|
3411
3542
|
|
|
@@ -4459,6 +4590,7 @@ type Privilege {
|
|
|
4459
4590
|
description: String
|
|
4460
4591
|
id: ID!
|
|
4461
4592
|
name: String!
|
|
4593
|
+
privilege: String!
|
|
4462
4594
|
roles: [Role!]
|
|
4463
4595
|
updatedAt: DateTimeISO
|
|
4464
4596
|
updater: User
|
|
@@ -4468,7 +4600,6 @@ input PrivilegeInput {
|
|
|
4468
4600
|
category: String
|
|
4469
4601
|
owner: Boolean
|
|
4470
4602
|
privilege: String
|
|
4471
|
-
protected: Boolean
|
|
4472
4603
|
super: Boolean
|
|
4473
4604
|
}
|
|
4474
4605
|
|
|
@@ -4481,7 +4612,6 @@ type PrivilegeObject {
|
|
|
4481
4612
|
category: String
|
|
4482
4613
|
owner: Boolean
|
|
4483
4614
|
privilege: String
|
|
4484
|
-
protected: Boolean
|
|
4485
4615
|
super: Boolean
|
|
4486
4616
|
}
|
|
4487
4617
|
|
|
@@ -4624,9 +4754,6 @@ type Query {
|
|
|
4624
4754
|
"""To fetch a Board Model by name"""
|
|
4625
4755
|
boardByName(name: String!): Board
|
|
4626
4756
|
|
|
4627
|
-
"""Board Usage Permissions"""
|
|
4628
|
-
boardPermissions: [String!]!
|
|
4629
|
-
|
|
4630
4757
|
"""To fetch the latest Board published"""
|
|
4631
4758
|
boardPublished(id: String!): BoardHistory!
|
|
4632
4759
|
|
|
@@ -4803,7 +4930,7 @@ type Query {
|
|
|
4803
4930
|
domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
4804
4931
|
|
|
4805
4932
|
"""To fetch domains with given privilege for user"""
|
|
4806
|
-
domainsWithPrivilege(category: String!,
|
|
4933
|
+
domainsWithPrivilege(category: String!, privilege: String!): [Domain!]!
|
|
4807
4934
|
|
|
4808
4935
|
"""To fetch the tasks(ActivityThreads) which has done by me"""
|
|
4809
4936
|
doneList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
|
|
@@ -4862,7 +4989,7 @@ type Query {
|
|
|
4862
4989
|
groups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): GroupList!
|
|
4863
4990
|
|
|
4864
4991
|
"""To query whether I have the given permission"""
|
|
4865
|
-
hasPrivilege(category: String!,
|
|
4992
|
+
hasPrivilege(category: String!, privilege: String!): Boolean!
|
|
4866
4993
|
i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
|
|
4867
4994
|
imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
|
|
4868
4995
|
|
|
@@ -4996,9 +5123,6 @@ type Query {
|
|
|
4996
5123
|
"""To fetch multiple PrinterDevices"""
|
|
4997
5124
|
printerDevices(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrinterDeviceList!
|
|
4998
5125
|
|
|
4999
|
-
"""To fetch privilege"""
|
|
5000
|
-
privilege(category: String!, name: String!): Privilege!
|
|
5001
|
-
|
|
5002
5126
|
"""To fetch multiple privileges"""
|
|
5003
5127
|
privileges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
|
|
5004
5128
|
|
|
@@ -5030,6 +5154,9 @@ type Query {
|
|
|
5030
5154
|
scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
|
|
5031
5155
|
searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
5032
5156
|
|
|
5157
|
+
"""To fetch domain"""
|
|
5158
|
+
secureIPList: Object
|
|
5159
|
+
|
|
5033
5160
|
"""To fetch a Setting"""
|
|
5034
5161
|
setting(name: String!, partnerDomainId: String): Setting!
|
|
5035
5162
|
|