@things-factory/reference-app 6.2.79 → 6.2.81
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-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +25 -25
- package/schema.graphql +327 -45
package/schema.graphql
CHANGED
|
@@ -441,7 +441,7 @@ type AppBinding {
|
|
|
441
441
|
creator: User!
|
|
442
442
|
description: String
|
|
443
443
|
domains: [Domain!]!
|
|
444
|
-
email:
|
|
444
|
+
email: EmailAddress!
|
|
445
445
|
id: ID!
|
|
446
446
|
locale: String
|
|
447
447
|
name: String!
|
|
@@ -504,7 +504,7 @@ type Application {
|
|
|
504
504
|
creator: User
|
|
505
505
|
description: String
|
|
506
506
|
domain: Domain!
|
|
507
|
-
email:
|
|
507
|
+
email: EmailAddress!
|
|
508
508
|
icon: String
|
|
509
509
|
id: ID!
|
|
510
510
|
name: String!
|
|
@@ -524,7 +524,7 @@ type ApplicationList {
|
|
|
524
524
|
|
|
525
525
|
input ApplicationPatch {
|
|
526
526
|
description: String
|
|
527
|
-
email:
|
|
527
|
+
email: EmailAddress
|
|
528
528
|
icon: String
|
|
529
529
|
name: String
|
|
530
530
|
redirectUrl: String
|
|
@@ -1124,7 +1124,7 @@ type Contact {
|
|
|
1124
1124
|
deletedAt: DateTimeISO
|
|
1125
1125
|
department: String
|
|
1126
1126
|
domain: Domain
|
|
1127
|
-
email:
|
|
1127
|
+
email: EmailAddress
|
|
1128
1128
|
id: ID!
|
|
1129
1129
|
items: [ContactItem!]
|
|
1130
1130
|
name: String
|
|
@@ -1157,7 +1157,7 @@ input ContactPatch {
|
|
|
1157
1157
|
company: String
|
|
1158
1158
|
cuFlag: String
|
|
1159
1159
|
department: String
|
|
1160
|
-
email:
|
|
1160
|
+
email: EmailAddress
|
|
1161
1161
|
id: ID
|
|
1162
1162
|
items: [ContactItemPatch!]
|
|
1163
1163
|
name: String
|
|
@@ -1262,38 +1262,90 @@ input DataArchivePatch {
|
|
|
1262
1262
|
|
|
1263
1263
|
"""Entity for DataItem"""
|
|
1264
1264
|
type DataItem {
|
|
1265
|
+
"""Indicates if the data item is active"""
|
|
1265
1266
|
active: Boolean
|
|
1267
|
+
|
|
1268
|
+
"""A description of the data item"""
|
|
1266
1269
|
description: String
|
|
1270
|
+
|
|
1271
|
+
"""
|
|
1272
|
+
Specifies a grouping identifier for data items with related content, allowing them to be displayed as subgroups within the overall dataset.
|
|
1273
|
+
"""
|
|
1274
|
+
group: String
|
|
1275
|
+
|
|
1276
|
+
"""Indicates if the data item is hidden"""
|
|
1267
1277
|
hidden: Boolean
|
|
1278
|
+
|
|
1279
|
+
"""The name of the data item"""
|
|
1268
1280
|
name: String!
|
|
1281
|
+
|
|
1282
|
+
"""Options associated with the data item type"""
|
|
1269
1283
|
options: Object
|
|
1284
|
+
|
|
1285
|
+
"""The maximum number of data values allowed for this field"""
|
|
1270
1286
|
quota: Int
|
|
1287
|
+
|
|
1288
|
+
"""Specifies the valid ranges and parameters for this data item."""
|
|
1271
1289
|
spec: Object
|
|
1272
1290
|
|
|
1273
1291
|
"""
|
|
1274
1292
|
The grouping logic for data summarization in the given field during periodic task deadlines.
|
|
1275
1293
|
"""
|
|
1276
1294
|
stat: String
|
|
1295
|
+
|
|
1296
|
+
"""
|
|
1297
|
+
Specifies a key name to be used as a property in a JSON-like object, representing a subfield of a dataset record.
|
|
1298
|
+
"""
|
|
1277
1299
|
tag: String
|
|
1300
|
+
|
|
1301
|
+
"""The type of the data item"""
|
|
1278
1302
|
type: String
|
|
1303
|
+
|
|
1304
|
+
"""The unit of measurement for the data item"""
|
|
1279
1305
|
unit: String
|
|
1280
1306
|
}
|
|
1281
1307
|
|
|
1282
1308
|
input DataItemPatch {
|
|
1309
|
+
"""Indicates if the data item is active"""
|
|
1283
1310
|
active: Boolean
|
|
1311
|
+
|
|
1312
|
+
"""A description of the data item"""
|
|
1284
1313
|
description: String
|
|
1314
|
+
|
|
1315
|
+
"""
|
|
1316
|
+
Specifies a grouping identifier for data items with related content, allowing them to be displayed as subgroups within the overall dataset.
|
|
1317
|
+
"""
|
|
1318
|
+
group: String
|
|
1319
|
+
|
|
1320
|
+
"""Indicates if the data item is hidden"""
|
|
1285
1321
|
hidden: Boolean
|
|
1322
|
+
|
|
1323
|
+
"""The name of the data item"""
|
|
1286
1324
|
name: String
|
|
1325
|
+
|
|
1326
|
+
"""Options associated with the data item type"""
|
|
1287
1327
|
options: Object
|
|
1328
|
+
|
|
1329
|
+
"""The maximum number of data values allowed for this field"""
|
|
1288
1330
|
quota: Int
|
|
1331
|
+
|
|
1332
|
+
"""Specifies the valid ranges and parameters for this data item."""
|
|
1289
1333
|
spec: Object
|
|
1290
1334
|
|
|
1291
1335
|
"""
|
|
1292
1336
|
The grouping logic for data summarization in the given field during periodic task deadlines.
|
|
1293
1337
|
"""
|
|
1294
1338
|
stat: String
|
|
1339
|
+
|
|
1340
|
+
"""
|
|
1341
|
+
Specifies a key name to be used as a property in a JSON-like object, representing a subfield of a dataset record.
|
|
1342
|
+
"""
|
|
1295
1343
|
tag: String
|
|
1344
|
+
|
|
1345
|
+
"""The type of the data item"""
|
|
1296
1346
|
type: DataItemType
|
|
1347
|
+
|
|
1348
|
+
"""The unit of measurement for the data item"""
|
|
1297
1349
|
unit: String
|
|
1298
1350
|
}
|
|
1299
1351
|
|
|
@@ -1503,66 +1555,160 @@ input DataSensorPatch {
|
|
|
1503
1555
|
|
|
1504
1556
|
"""Entity for DataSet"""
|
|
1505
1557
|
type DataSet {
|
|
1558
|
+
"""Indicates whether the dataset is currently active or in use."""
|
|
1506
1559
|
active: Boolean
|
|
1507
|
-
|
|
1508
|
-
"""Approval line for handling OOC issues for that dataset"""
|
|
1509
|
-
approvalLine: [ApprovalLineItem!]
|
|
1560
|
+
approvalLine: [ApprovalLineItem!]!
|
|
1510
1561
|
|
|
1511
1562
|
"""Who to contact for OOC issues"""
|
|
1512
1563
|
assignees: [AssigneeItem!]
|
|
1564
|
+
|
|
1565
|
+
"""The date and time the dataset was created"""
|
|
1513
1566
|
createdAt: DateTimeISO
|
|
1567
|
+
|
|
1568
|
+
"""The user who created the dataset"""
|
|
1514
1569
|
creator: User
|
|
1570
|
+
|
|
1571
|
+
"""Data items for the dataset"""
|
|
1515
1572
|
dataItems: [DataItem!]
|
|
1573
|
+
|
|
1574
|
+
"""The key set used for this dataset"""
|
|
1516
1575
|
dataKeySet: DataKeySet
|
|
1576
|
+
|
|
1577
|
+
"""A description of the dataset"""
|
|
1517
1578
|
description: String
|
|
1579
|
+
|
|
1580
|
+
"""The domain to which the dataset belongs"""
|
|
1518
1581
|
domain: Domain
|
|
1519
1582
|
entryBoard: Board
|
|
1520
1583
|
|
|
1521
1584
|
"""The person responsible for manually entering the data for that dataset"""
|
|
1522
1585
|
entryRole: Role
|
|
1586
|
+
|
|
1587
|
+
"""
|
|
1588
|
+
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.
|
|
1589
|
+
"""
|
|
1523
1590
|
entryType: String
|
|
1591
|
+
|
|
1592
|
+
"""
|
|
1593
|
+
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.
|
|
1594
|
+
"""
|
|
1524
1595
|
entryView: String
|
|
1596
|
+
|
|
1597
|
+
"""The unique identifier of the dataset"""
|
|
1525
1598
|
id: ID!
|
|
1526
1599
|
latestCollectedAt: DateTimeISO
|
|
1527
1600
|
monitorBoard: Board
|
|
1601
|
+
|
|
1602
|
+
"""
|
|
1603
|
+
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.
|
|
1604
|
+
"""
|
|
1528
1605
|
monitorType: String
|
|
1606
|
+
|
|
1607
|
+
"""
|
|
1608
|
+
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.
|
|
1609
|
+
"""
|
|
1529
1610
|
monitorView: String
|
|
1611
|
+
|
|
1612
|
+
"""The name of the dataset"""
|
|
1530
1613
|
name: String!
|
|
1531
1614
|
nextSchedule: DateTimeISO
|
|
1532
1615
|
nextSummarySchedule: DateTimeISO
|
|
1616
|
+
|
|
1617
|
+
"""Scenario for handling normal data-sample occurance for that dataset"""
|
|
1618
|
+
normalScenario: Scenario
|
|
1619
|
+
|
|
1620
|
+
"""
|
|
1621
|
+
Approval line for handling abnormal data occurance issues for that dataset
|
|
1622
|
+
"""
|
|
1623
|
+
outlierApprovalLine: [ApprovalLineItem!]
|
|
1624
|
+
|
|
1625
|
+
"""
|
|
1626
|
+
Scenario for handling abnormal data-sample occurance issues for that dataset
|
|
1627
|
+
"""
|
|
1628
|
+
outlierScenario: Scenario
|
|
1629
|
+
|
|
1630
|
+
"""
|
|
1631
|
+
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.
|
|
1632
|
+
"""
|
|
1533
1633
|
partitionKeys: Object
|
|
1534
1634
|
prevSchedule: DateTimeISO
|
|
1635
|
+
|
|
1636
|
+
"""The report template of the dataset"""
|
|
1535
1637
|
reportTemplate: String
|
|
1638
|
+
|
|
1639
|
+
"""
|
|
1640
|
+
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.
|
|
1641
|
+
"""
|
|
1536
1642
|
reportType: String
|
|
1643
|
+
|
|
1644
|
+
"""
|
|
1645
|
+
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.
|
|
1646
|
+
"""
|
|
1537
1647
|
reportView: String
|
|
1648
|
+
|
|
1649
|
+
"""Indicates if the dataset requires review"""
|
|
1650
|
+
requiresReview: Boolean
|
|
1651
|
+
|
|
1652
|
+
"""Approval line for confrim of the dataset"""
|
|
1653
|
+
reviewApprovalLine: [ApprovalLineItem!]
|
|
1654
|
+
|
|
1655
|
+
"""The schedule of the dataset"""
|
|
1538
1656
|
schedule: String
|
|
1657
|
+
|
|
1658
|
+
"""The schedule ID of the dataset"""
|
|
1539
1659
|
scheduleId: String
|
|
1540
1660
|
status: DataSetState!
|
|
1661
|
+
|
|
1662
|
+
"""The summary period of the dataset"""
|
|
1541
1663
|
summaryPeriod: String
|
|
1664
|
+
|
|
1665
|
+
"""The summary schedule of the dataset"""
|
|
1542
1666
|
summarySchedule: String
|
|
1667
|
+
|
|
1668
|
+
"""The summary schedule ID of the dataset"""
|
|
1543
1669
|
summaryScheduleId: String
|
|
1544
1670
|
|
|
1545
1671
|
"""The final authority on issues related to that dataset."""
|
|
1546
1672
|
supervisoryRole: Role
|
|
1673
|
+
|
|
1674
|
+
"""A tag name of data to be published when a data sample created"""
|
|
1675
|
+
tag: String
|
|
1676
|
+
|
|
1677
|
+
"""The timezone of the dataset"""
|
|
1547
1678
|
timezone: String
|
|
1679
|
+
|
|
1680
|
+
"""The type of the dataset"""
|
|
1548
1681
|
type: String
|
|
1682
|
+
|
|
1683
|
+
"""The date and time the dataset was last updated"""
|
|
1549
1684
|
updatedAt: DateTimeISO
|
|
1685
|
+
|
|
1686
|
+
"""The user who last updated the dataset"""
|
|
1550
1687
|
updater: User
|
|
1688
|
+
|
|
1689
|
+
"""
|
|
1690
|
+
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.
|
|
1691
|
+
"""
|
|
1551
1692
|
useCase: String
|
|
1693
|
+
|
|
1694
|
+
"""The version of the dataset"""
|
|
1552
1695
|
version: Float
|
|
1553
1696
|
}
|
|
1554
1697
|
|
|
1555
1698
|
"""Entity for DataSetHistory"""
|
|
1556
1699
|
type DataSetHistory {
|
|
1557
1700
|
active: Boolean
|
|
1701
|
+
assignees: [AssigneeItem!]
|
|
1558
1702
|
createdAt: DateTimeISO
|
|
1559
1703
|
creator: User
|
|
1560
1704
|
dataItems: [DataItem!]
|
|
1561
1705
|
dataKeySet: DataKeySet
|
|
1706
|
+
dataKeySetId: String
|
|
1562
1707
|
description: String
|
|
1563
1708
|
domain: Domain
|
|
1564
1709
|
entryBoard: Board
|
|
1565
|
-
entryRole: Role
|
|
1710
|
+
entryRole: Role!
|
|
1711
|
+
entryRoleId: String
|
|
1566
1712
|
entryType: String
|
|
1567
1713
|
entryView: String
|
|
1568
1714
|
id: ID!
|
|
@@ -1570,12 +1716,23 @@ type DataSetHistory {
|
|
|
1570
1716
|
monitorType: String
|
|
1571
1717
|
monitorView: String
|
|
1572
1718
|
name: String!
|
|
1719
|
+
normalScenarioId: String
|
|
1720
|
+
outlierApprovalLine: [ApprovalLineItem!]
|
|
1721
|
+
outlierScenarioId: String
|
|
1573
1722
|
partitionKeys: Object
|
|
1574
1723
|
reportTemplate: String
|
|
1575
1724
|
reportType: String
|
|
1576
1725
|
reportView: String
|
|
1726
|
+
requiresReview: Boolean
|
|
1727
|
+
reviewApprovalLine: [ApprovalLineItem!]
|
|
1577
1728
|
schedule: String
|
|
1578
|
-
|
|
1729
|
+
scheduleId: String
|
|
1730
|
+
summaryPeriod: String
|
|
1731
|
+
summarySchedule: String
|
|
1732
|
+
summaryScheduleId: String
|
|
1733
|
+
supervisoryRole: Role!
|
|
1734
|
+
supervisoryRoleId: String
|
|
1735
|
+
tag: String
|
|
1579
1736
|
timestamp: User!
|
|
1580
1737
|
timezone: String
|
|
1581
1738
|
type: String
|
|
@@ -1597,7 +1754,6 @@ type DataSetList {
|
|
|
1597
1754
|
|
|
1598
1755
|
input DataSetPatch {
|
|
1599
1756
|
active: Boolean
|
|
1600
|
-
approvalLine: Object
|
|
1601
1757
|
assignees: Object
|
|
1602
1758
|
cuFlag: String!
|
|
1603
1759
|
dataItems: [DataItemPatch!]
|
|
@@ -1610,13 +1766,21 @@ input DataSetPatch {
|
|
|
1610
1766
|
monitorType: String
|
|
1611
1767
|
monitorView: String
|
|
1612
1768
|
name: String
|
|
1769
|
+
normalScenario: ObjectRef
|
|
1770
|
+
outlierApprovalLine: Object
|
|
1771
|
+
outlierScenario: ObjectRef
|
|
1613
1772
|
partitionKeys: Object
|
|
1614
1773
|
reportTemplate: Upload
|
|
1615
1774
|
reportType: String
|
|
1616
1775
|
reportView: String
|
|
1776
|
+
requiresReview: Boolean
|
|
1777
|
+
reviewApprovalLine: Object
|
|
1617
1778
|
schedule: String
|
|
1618
1779
|
summaryPeriod: String
|
|
1619
1780
|
supervisoryRole: ObjectRef
|
|
1781
|
+
|
|
1782
|
+
"""A tag name of data to be published when a data sample created"""
|
|
1783
|
+
tag: String
|
|
1620
1784
|
timezone: String
|
|
1621
1785
|
type: String
|
|
1622
1786
|
useCase: String
|
|
@@ -1698,7 +1862,7 @@ scalar DateTimeISO
|
|
|
1698
1862
|
"""Entity for Department"""
|
|
1699
1863
|
type Department {
|
|
1700
1864
|
active: Boolean
|
|
1701
|
-
children: [Department!]!
|
|
1865
|
+
children(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): [Department!]!
|
|
1702
1866
|
controlNo: String!
|
|
1703
1867
|
createdAt: DateTimeISO
|
|
1704
1868
|
creator: User
|
|
@@ -1749,9 +1913,11 @@ type Domain {
|
|
|
1749
1913
|
children: Domain
|
|
1750
1914
|
contentImage: String
|
|
1751
1915
|
createdAt: DateTimeISO
|
|
1916
|
+
deletedAt: DateTimeISO
|
|
1752
1917
|
description: String
|
|
1753
1918
|
extType: String
|
|
1754
1919
|
id: ID!
|
|
1920
|
+
iplist: Object
|
|
1755
1921
|
name: String!
|
|
1756
1922
|
owner: String
|
|
1757
1923
|
ownerUser: User
|
|
@@ -1820,6 +1986,11 @@ type DynamicDataSummary {
|
|
|
1820
1986
|
period: String
|
|
1821
1987
|
}
|
|
1822
1988
|
|
|
1989
|
+
"""
|
|
1990
|
+
A field whose value conforms to the standard internet email address format as specified in HTML Spec: https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address.
|
|
1991
|
+
"""
|
|
1992
|
+
scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address")
|
|
1993
|
+
|
|
1823
1994
|
"""Entity for Employee"""
|
|
1824
1995
|
type Employee {
|
|
1825
1996
|
active: Boolean
|
|
@@ -1833,7 +2004,7 @@ type Employee {
|
|
|
1833
2004
|
deletedAt: DateTimeISO
|
|
1834
2005
|
department: Department
|
|
1835
2006
|
domain: Domain
|
|
1836
|
-
email:
|
|
2007
|
+
email: EmailAddress
|
|
1837
2008
|
extension: String
|
|
1838
2009
|
hiredOn: String
|
|
1839
2010
|
id: ID!
|
|
@@ -2204,7 +2375,7 @@ type InstallableActivityList {
|
|
|
2204
2375
|
type Invitation {
|
|
2205
2376
|
createdAt: DateTimeISO
|
|
2206
2377
|
creator: User
|
|
2207
|
-
email:
|
|
2378
|
+
email: EmailAddress!
|
|
2208
2379
|
id: ID!
|
|
2209
2380
|
reference: String!
|
|
2210
2381
|
token: String!
|
|
@@ -2218,6 +2389,11 @@ type InvitationList {
|
|
|
2218
2389
|
total: Int
|
|
2219
2390
|
}
|
|
2220
2391
|
|
|
2392
|
+
"""
|
|
2393
|
+
A field whose value is a JSON Web Token (JWT): https://jwt.io/introduction.
|
|
2394
|
+
"""
|
|
2395
|
+
scalar JWT
|
|
2396
|
+
|
|
2221
2397
|
"""Entity for LiteMenu"""
|
|
2222
2398
|
type LiteMenu {
|
|
2223
2399
|
active: Boolean
|
|
@@ -2231,6 +2407,7 @@ type LiteMenu {
|
|
|
2231
2407
|
id: ID!
|
|
2232
2408
|
name: String!
|
|
2233
2409
|
parent: String
|
|
2410
|
+
privilege: PrivilegeObject
|
|
2234
2411
|
rank: Int
|
|
2235
2412
|
type: String
|
|
2236
2413
|
updatedAt: DateTimeISO
|
|
@@ -2250,6 +2427,7 @@ input LiteMenuPatch {
|
|
|
2250
2427
|
icon: String
|
|
2251
2428
|
name: String
|
|
2252
2429
|
parent: String
|
|
2430
|
+
privilege: PrivilegeInput
|
|
2253
2431
|
rank: Int
|
|
2254
2432
|
type: String
|
|
2255
2433
|
value: String
|
|
@@ -2666,7 +2844,7 @@ type Mutation {
|
|
|
2666
2844
|
|
|
2667
2845
|
"""To attach a contact on Employee"""
|
|
2668
2846
|
attachContact(contactId: String!, id: String!): Employee!
|
|
2669
|
-
cancelInvitation(email:
|
|
2847
|
+
cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
|
|
2670
2848
|
|
|
2671
2849
|
"""To clone a Board from existing Board"""
|
|
2672
2850
|
cloneBoard(id: String!, patch: BoardPatch!, targetGroupId: String, targetSubdomain: String!): Board!
|
|
@@ -2844,6 +3022,9 @@ type Mutation {
|
|
|
2844
3022
|
"""To create new Setting"""
|
|
2845
3023
|
createSetting(setting: NewSetting!): Setting!
|
|
2846
3024
|
|
|
3025
|
+
"""To create new StateRegister"""
|
|
3026
|
+
createStateRegister(stateRegister: NewStateRegister!): StateRegister!
|
|
3027
|
+
|
|
2847
3028
|
"""To create new Terminology"""
|
|
2848
3029
|
createTerminology(terminology: NewTerminology!): Terminology!
|
|
2849
3030
|
|
|
@@ -2974,7 +3155,7 @@ type Mutation {
|
|
|
2974
3155
|
deleteDomain(name: String!): Domain!
|
|
2975
3156
|
|
|
2976
3157
|
"""To delete domain user"""
|
|
2977
|
-
deleteDomainUser(email:
|
|
3158
|
+
deleteDomainUser(email: EmailAddress!): Boolean!
|
|
2978
3159
|
|
|
2979
3160
|
"""To delete multiple domains (Only superuser is granted this privilege.)"""
|
|
2980
3161
|
deleteDomains(names: [String!]!): Boolean!
|
|
@@ -3156,6 +3337,12 @@ type Mutation {
|
|
|
3156
3337
|
"""To delete multiple settings"""
|
|
3157
3338
|
deleteSettings(names: [String!]!): Boolean!
|
|
3158
3339
|
|
|
3340
|
+
"""To delete StateRegister"""
|
|
3341
|
+
deleteStateRegister(id: String!): Boolean!
|
|
3342
|
+
|
|
3343
|
+
"""To delete multiple StateRegisters"""
|
|
3344
|
+
deleteStateRegisters(ids: [String!]!): Boolean!
|
|
3345
|
+
|
|
3159
3346
|
"""To delete multiple steps"""
|
|
3160
3347
|
deleteSteps(ids: [String!]!): Boolean!
|
|
3161
3348
|
|
|
@@ -3172,7 +3359,7 @@ type Mutation {
|
|
|
3172
3359
|
deleteThemes(ids: [String!]!): Boolean!
|
|
3173
3360
|
|
|
3174
3361
|
"""To delete a user"""
|
|
3175
|
-
deleteUser(email:
|
|
3362
|
+
deleteUser(email: EmailAddress!): Boolean!
|
|
3176
3363
|
|
|
3177
3364
|
"""To delete some users"""
|
|
3178
3365
|
deleteUsers(emails: [String!]!): Boolean!
|
|
@@ -3291,6 +3478,9 @@ type Mutation {
|
|
|
3291
3478
|
"""To import multiple scenarios"""
|
|
3292
3479
|
importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
|
|
3293
3480
|
|
|
3481
|
+
"""To import multiple StateRegisters"""
|
|
3482
|
+
importStateRegisters(stateRegisters: [StateRegisterPatch!]!): Boolean!
|
|
3483
|
+
|
|
3294
3484
|
"""To import multiple Terminologies"""
|
|
3295
3485
|
importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
|
|
3296
3486
|
|
|
@@ -3302,7 +3492,7 @@ type Mutation {
|
|
|
3302
3492
|
inviteCustomer(customerDomainName: String!): Boolean!
|
|
3303
3493
|
|
|
3304
3494
|
"""To invite new user"""
|
|
3305
|
-
inviteUser(email:
|
|
3495
|
+
inviteUser(email: EmailAddress!): Boolean!
|
|
3306
3496
|
|
|
3307
3497
|
"""To issue standard ActivityInstance"""
|
|
3308
3498
|
issueActivityInstance(activityInstance: ActivityInstanceIssue!): ActivityInstance!
|
|
@@ -3380,7 +3570,7 @@ type Mutation {
|
|
|
3380
3570
|
|
|
3381
3571
|
"""To save ActivityThread information"""
|
|
3382
3572
|
saveActivityThread(id: String!, save: ActivityThreadSave!): ActivityThread!
|
|
3383
|
-
sendInvitation(email:
|
|
3573
|
+
sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
|
|
3384
3574
|
singleUpload(file: Upload!): Attachment!
|
|
3385
3575
|
|
|
3386
3576
|
"""To start posting activity based on the schedule of the given activity"""
|
|
@@ -3429,7 +3619,7 @@ type Mutation {
|
|
|
3429
3619
|
terminateContract(partnerName: String!): Boolean!
|
|
3430
3620
|
|
|
3431
3621
|
"""To transfer owner of domain"""
|
|
3432
|
-
transferOwner(email:
|
|
3622
|
+
transferOwner(email: EmailAddress!): Boolean!
|
|
3433
3623
|
undeleteProducts(ids: [String!]!): Boolean!
|
|
3434
3624
|
|
|
3435
3625
|
"""To modify Activity information"""
|
|
@@ -3498,7 +3688,7 @@ type Mutation {
|
|
|
3498
3688
|
"""To update domain (Only superuser is granted this privilege.)"""
|
|
3499
3689
|
updateDomain(name: String!, patch: DomainPatch!): Domain!
|
|
3500
3690
|
|
|
3501
|
-
"""To update multiple domains"""
|
|
3691
|
+
"""To update multiple domains (Only superuser is granted this privilege.)"""
|
|
3502
3692
|
updateDomains(patches: [DomainPatch!]!): Boolean!
|
|
3503
3693
|
|
|
3504
3694
|
"""To modify Employee information"""
|
|
@@ -3637,6 +3827,9 @@ type Mutation {
|
|
|
3637
3827
|
"""To modify multiple Settings' information"""
|
|
3638
3828
|
updateMultipleSetting(patches: [SettingPatch!]!): [Setting!]!
|
|
3639
3829
|
|
|
3830
|
+
"""To modify multiple StateRegisters' information"""
|
|
3831
|
+
updateMultipleStateRegister(patches: [StateRegisterPatch!]!): [StateRegister!]!
|
|
3832
|
+
|
|
3640
3833
|
"""To modify multiple steps' in a scenario"""
|
|
3641
3834
|
updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]!
|
|
3642
3835
|
|
|
@@ -3709,9 +3902,18 @@ type Mutation {
|
|
|
3709
3902
|
"""To modify scenario information"""
|
|
3710
3903
|
updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
|
|
3711
3904
|
|
|
3905
|
+
"""To update secure IP list for domain"""
|
|
3906
|
+
updateSecureIPList(iplist: Object!): Object
|
|
3907
|
+
|
|
3712
3908
|
"""To modify Setting information"""
|
|
3713
3909
|
updateSetting(name: String!, patch: SettingPatch!): Setting!
|
|
3714
3910
|
|
|
3911
|
+
"""To modify StateRegister information"""
|
|
3912
|
+
updateStateRegister(id: String!, patch: StateRegisterPatch!): StateRegister!
|
|
3913
|
+
|
|
3914
|
+
"""To update state of StateRegister by name"""
|
|
3915
|
+
updateStateRegisterByName(name: String!, state: Object!): StateRegister!
|
|
3916
|
+
|
|
3715
3917
|
"""To modify Terminology information"""
|
|
3716
3918
|
updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
|
|
3717
3919
|
|
|
@@ -3719,7 +3921,7 @@ type Mutation {
|
|
|
3719
3921
|
updateTheme(id: String!, patch: ThemePatch!): Theme!
|
|
3720
3922
|
|
|
3721
3923
|
"""To modify user information"""
|
|
3722
|
-
updateUser(email:
|
|
3924
|
+
updateUser(email: EmailAddress!, patch: UserPatch!): User!
|
|
3723
3925
|
|
|
3724
3926
|
"""To update roles for a user"""
|
|
3725
3927
|
updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
|
|
@@ -3784,7 +3986,7 @@ input NewAppliance {
|
|
|
3784
3986
|
|
|
3785
3987
|
input NewApplication {
|
|
3786
3988
|
description: String
|
|
3787
|
-
email:
|
|
3989
|
+
email: EmailAddress
|
|
3788
3990
|
icon: String
|
|
3789
3991
|
name: String!
|
|
3790
3992
|
redirectUrl: String
|
|
@@ -3898,7 +4100,7 @@ input NewContact {
|
|
|
3898
4100
|
address: String
|
|
3899
4101
|
company: String
|
|
3900
4102
|
department: String
|
|
3901
|
-
email:
|
|
4103
|
+
email: EmailAddress
|
|
3902
4104
|
items: [ContactItemPatch!]
|
|
3903
4105
|
name: String!
|
|
3904
4106
|
note: String
|
|
@@ -3991,7 +4193,6 @@ input NewDataSensor {
|
|
|
3991
4193
|
|
|
3992
4194
|
input NewDataSet {
|
|
3993
4195
|
active: Boolean
|
|
3994
|
-
approvalLine: Object
|
|
3995
4196
|
assignees: Object
|
|
3996
4197
|
dataItems: [DataItemPatch!]
|
|
3997
4198
|
dataKeySet: ObjectRef
|
|
@@ -4002,13 +4203,21 @@ input NewDataSet {
|
|
|
4002
4203
|
monitorType: String
|
|
4003
4204
|
monitorView: String
|
|
4004
4205
|
name: String!
|
|
4206
|
+
normalScenario: ObjectRef
|
|
4207
|
+
outlierApprovalLine: Object
|
|
4208
|
+
outlierScenario: ObjectRef
|
|
4005
4209
|
partitionKeys: Object
|
|
4006
4210
|
reportTemplate: Upload
|
|
4007
4211
|
reportType: String
|
|
4008
4212
|
reportView: String
|
|
4213
|
+
requiresReview: Boolean
|
|
4214
|
+
reviewApprovalLine: Object
|
|
4009
4215
|
schedule: String
|
|
4010
4216
|
summaryPeriod: String
|
|
4011
4217
|
supervisoryRole: ObjectRef
|
|
4218
|
+
|
|
4219
|
+
"""A tag name of data to be published when a data sample created"""
|
|
4220
|
+
tag: String
|
|
4012
4221
|
timezone: String
|
|
4013
4222
|
type: String
|
|
4014
4223
|
useCase: String
|
|
@@ -4127,6 +4336,7 @@ input NewLiteMenu {
|
|
|
4127
4336
|
icon: String
|
|
4128
4337
|
name: String!
|
|
4129
4338
|
parent: String
|
|
4339
|
+
privilege: PrivilegeInput
|
|
4130
4340
|
rank: Int
|
|
4131
4341
|
type: String
|
|
4132
4342
|
value: String
|
|
@@ -4308,7 +4518,7 @@ input NewOauth2Client {
|
|
|
4308
4518
|
description: String
|
|
4309
4519
|
grantType: String
|
|
4310
4520
|
icon: String
|
|
4311
|
-
jwtToken:
|
|
4521
|
+
jwtToken: JWT
|
|
4312
4522
|
name: String!
|
|
4313
4523
|
password: String
|
|
4314
4524
|
refreshToken: String
|
|
@@ -4482,6 +4692,7 @@ input NewScenario {
|
|
|
4482
4692
|
active: Boolean
|
|
4483
4693
|
description: String
|
|
4484
4694
|
name: String!
|
|
4695
|
+
privilege: PrivilegeInput
|
|
4485
4696
|
schedule: String
|
|
4486
4697
|
timezone: String
|
|
4487
4698
|
type: String
|
|
@@ -4494,6 +4705,15 @@ input NewSetting {
|
|
|
4494
4705
|
value: String
|
|
4495
4706
|
}
|
|
4496
4707
|
|
|
4708
|
+
input NewStateRegister {
|
|
4709
|
+
description: String
|
|
4710
|
+
name: String!
|
|
4711
|
+
refBy: String
|
|
4712
|
+
state: Object
|
|
4713
|
+
ttl: Int
|
|
4714
|
+
type: String
|
|
4715
|
+
}
|
|
4716
|
+
|
|
4497
4717
|
input NewTerminology {
|
|
4498
4718
|
category: String!
|
|
4499
4719
|
description: String
|
|
@@ -4512,7 +4732,7 @@ input NewTheme {
|
|
|
4512
4732
|
|
|
4513
4733
|
input NewUser {
|
|
4514
4734
|
description: String
|
|
4515
|
-
email:
|
|
4735
|
+
email: EmailAddress!
|
|
4516
4736
|
name: String!
|
|
4517
4737
|
password: String
|
|
4518
4738
|
roles: [ObjectRef!]
|
|
@@ -4520,7 +4740,7 @@ input NewUser {
|
|
|
4520
4740
|
}
|
|
4521
4741
|
|
|
4522
4742
|
input NewUserByDomainWizardInput {
|
|
4523
|
-
email:
|
|
4743
|
+
email: EmailAddress!
|
|
4524
4744
|
isInvitee: Boolean
|
|
4525
4745
|
name: String!
|
|
4526
4746
|
owner: Boolean!
|
|
@@ -4636,7 +4856,7 @@ type Oauth2Client {
|
|
|
4636
4856
|
grantType: String
|
|
4637
4857
|
icon: String
|
|
4638
4858
|
id: ID!
|
|
4639
|
-
jwtToken:
|
|
4859
|
+
jwtToken: JWT
|
|
4640
4860
|
name: String!
|
|
4641
4861
|
password: String
|
|
4642
4862
|
refreshToken: String
|
|
@@ -4666,7 +4886,7 @@ input Oauth2ClientPatch {
|
|
|
4666
4886
|
description: String
|
|
4667
4887
|
grantType: String
|
|
4668
4888
|
icon: String
|
|
4669
|
-
jwtToken:
|
|
4889
|
+
jwtToken: JWT
|
|
4670
4890
|
name: String
|
|
4671
4891
|
password: String
|
|
4672
4892
|
refreshToken: String
|
|
@@ -4709,22 +4929,24 @@ input ObjectRefForEmployee {
|
|
|
4709
4929
|
|
|
4710
4930
|
"""Field description"""
|
|
4711
4931
|
description: String
|
|
4712
|
-
email:
|
|
4932
|
+
email: EmailAddress
|
|
4713
4933
|
hiredOn: String
|
|
4714
4934
|
|
|
4715
4935
|
"""Field id"""
|
|
4716
4936
|
id: ID!
|
|
4717
4937
|
jobPosition: String
|
|
4938
|
+
jobResponsibility: String
|
|
4718
4939
|
|
|
4719
4940
|
"""Field name"""
|
|
4720
4941
|
name: String
|
|
4721
4942
|
photo: String
|
|
4943
|
+
type: EmployeeType
|
|
4722
4944
|
}
|
|
4723
4945
|
|
|
4724
4946
|
input ObjectRefForUser {
|
|
4725
4947
|
"""Field description"""
|
|
4726
4948
|
description: String
|
|
4727
|
-
email:
|
|
4949
|
+
email: EmailAddress
|
|
4728
4950
|
|
|
4729
4951
|
"""Field id"""
|
|
4730
4952
|
id: ID!
|
|
@@ -4956,16 +5178,31 @@ type Privilege {
|
|
|
4956
5178
|
description: String
|
|
4957
5179
|
id: ID!
|
|
4958
5180
|
name: String!
|
|
5181
|
+
privilege: String!
|
|
4959
5182
|
roles: [Role!]
|
|
4960
5183
|
updatedAt: DateTimeISO
|
|
4961
5184
|
updater: User
|
|
4962
5185
|
}
|
|
4963
5186
|
|
|
5187
|
+
input PrivilegeInput {
|
|
5188
|
+
category: String
|
|
5189
|
+
owner: Boolean
|
|
5190
|
+
privilege: String
|
|
5191
|
+
super: Boolean
|
|
5192
|
+
}
|
|
5193
|
+
|
|
4964
5194
|
type PrivilegeList {
|
|
4965
5195
|
items: [Privilege!]
|
|
4966
5196
|
total: Int
|
|
4967
5197
|
}
|
|
4968
5198
|
|
|
5199
|
+
type PrivilegeObject {
|
|
5200
|
+
category: String
|
|
5201
|
+
owner: Boolean
|
|
5202
|
+
privilege: String
|
|
5203
|
+
super: Boolean
|
|
5204
|
+
}
|
|
5205
|
+
|
|
4969
5206
|
input PrivilegePatch {
|
|
4970
5207
|
category: String
|
|
4971
5208
|
description: String
|
|
@@ -5593,9 +5830,6 @@ type Query {
|
|
|
5593
5830
|
"""To fetch a Board Model by name"""
|
|
5594
5831
|
boardByName(name: String!): Board
|
|
5595
5832
|
|
|
5596
|
-
"""Board Usage Permissions"""
|
|
5597
|
-
boardPermissions: [String!]!
|
|
5598
|
-
|
|
5599
5833
|
"""To fetch the latest Board published"""
|
|
5600
5834
|
boardPublished(id: String!): BoardHistory!
|
|
5601
5835
|
|
|
@@ -5636,7 +5870,7 @@ type Query {
|
|
|
5636
5870
|
checkUserBelongsDomain: Boolean!
|
|
5637
5871
|
|
|
5638
5872
|
"""..."""
|
|
5639
|
-
checkUserExistence(email:
|
|
5873
|
+
checkUserExistence(email: EmailAddress!): Boolean!
|
|
5640
5874
|
|
|
5641
5875
|
"""To fetch common approval lines"""
|
|
5642
5876
|
commonApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
@@ -5781,7 +6015,7 @@ type Query {
|
|
|
5781
6015
|
domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
5782
6016
|
|
|
5783
6017
|
"""To fetch domains with given privilege for user"""
|
|
5784
|
-
domainsWithPrivilege(category: String!,
|
|
6018
|
+
domainsWithPrivilege(category: String!, privilege: String!): [Domain!]!
|
|
5785
6019
|
|
|
5786
6020
|
"""To fetch the tasks(ActivityThreads) which has done by me"""
|
|
5787
6021
|
doneList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
|
|
@@ -5840,7 +6074,7 @@ type Query {
|
|
|
5840
6074
|
groups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): GroupList!
|
|
5841
6075
|
|
|
5842
6076
|
"""To query whether I have the given permission"""
|
|
5843
|
-
hasPrivilege(category: String!,
|
|
6077
|
+
hasPrivilege(category: String!, privilege: String!): Boolean!
|
|
5844
6078
|
i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
|
|
5845
6079
|
imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
|
|
5846
6080
|
|
|
@@ -5852,7 +6086,7 @@ type Query {
|
|
|
5852
6086
|
|
|
5853
6087
|
"""To fetch integration Analyses"""
|
|
5854
6088
|
integrationAnalysis: Object!
|
|
5855
|
-
invitation(email:
|
|
6089
|
+
invitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
|
|
5856
6090
|
invitations(reference: String!, type: String!): InvitationList!
|
|
5857
6091
|
|
|
5858
6092
|
"""To fetch a LiteMenu"""
|
|
@@ -5911,6 +6145,9 @@ type Query {
|
|
|
5911
6145
|
|
|
5912
6146
|
"""To fetch current user's Favorites"""
|
|
5913
6147
|
myFavorites: [Favorite!]!
|
|
6148
|
+
|
|
6149
|
+
"""To fetch my own LiteMenus"""
|
|
6150
|
+
myLiteMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): LiteMenuList!
|
|
5914
6151
|
myLoginHistories(limit: Float!): [LoginHistory!]!
|
|
5915
6152
|
|
|
5916
6153
|
"""To fetch my notifications"""
|
|
@@ -5988,9 +6225,6 @@ type Query {
|
|
|
5988
6225
|
"""To fetch multiple PrinterDevices"""
|
|
5989
6226
|
printerDevices(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrinterDeviceList!
|
|
5990
6227
|
|
|
5991
|
-
"""To fetch privilege"""
|
|
5992
|
-
privilege(category: String!, name: String!): Privilege!
|
|
5993
|
-
|
|
5994
6228
|
"""To fetch multiple privileges"""
|
|
5995
6229
|
privileges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
|
|
5996
6230
|
product(sku: String!): Product!
|
|
@@ -6061,6 +6295,9 @@ type Query {
|
|
|
6061
6295
|
scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
|
|
6062
6296
|
searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
6063
6297
|
|
|
6298
|
+
"""To fetch domain"""
|
|
6299
|
+
secureIPList: Object
|
|
6300
|
+
|
|
6064
6301
|
"""To fetch a Setting"""
|
|
6065
6302
|
setting(name: String!, partnerDomainId: String): Setting!
|
|
6066
6303
|
|
|
@@ -6070,6 +6307,15 @@ type Query {
|
|
|
6070
6307
|
"""To fetch the list of activities I can start"""
|
|
6071
6308
|
startableActivities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityList!
|
|
6072
6309
|
|
|
6310
|
+
"""To fetch a StateRegister"""
|
|
6311
|
+
stateRegister(id: String!): StateRegister
|
|
6312
|
+
|
|
6313
|
+
"""To fetch a StateRegister by name"""
|
|
6314
|
+
stateRegisterByName(name: String!): StateRegister
|
|
6315
|
+
|
|
6316
|
+
"""To fetch multiple StateRegisters"""
|
|
6317
|
+
stateRegisters(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StateRegisterList!
|
|
6318
|
+
|
|
6073
6319
|
"""To fetch a step"""
|
|
6074
6320
|
step(name: String!): Step!
|
|
6075
6321
|
|
|
@@ -6104,7 +6350,7 @@ type Query {
|
|
|
6104
6350
|
todoList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
|
|
6105
6351
|
|
|
6106
6352
|
"""To fetch user"""
|
|
6107
|
-
user(email:
|
|
6353
|
+
user(email: EmailAddress!): User!
|
|
6108
6354
|
userBizplaces(email: String!): [Bizplace!]!
|
|
6109
6355
|
|
|
6110
6356
|
"""To fetch Menus by role"""
|
|
@@ -6237,6 +6483,7 @@ type Scenario {
|
|
|
6237
6483
|
id: ID!
|
|
6238
6484
|
instances: [ScenarioInstance!]
|
|
6239
6485
|
name: String!
|
|
6486
|
+
privilege: PrivilegeObject
|
|
6240
6487
|
|
|
6241
6488
|
"""accessible and executable system-wide"""
|
|
6242
6489
|
public: Boolean
|
|
@@ -6310,6 +6557,7 @@ input ScenarioPatch {
|
|
|
6310
6557
|
description: String
|
|
6311
6558
|
id: ID
|
|
6312
6559
|
name: String
|
|
6560
|
+
privilege: PrivilegeInput
|
|
6313
6561
|
schedule: String
|
|
6314
6562
|
steps: [StepPatch!]
|
|
6315
6563
|
timezone: String
|
|
@@ -6359,6 +6607,40 @@ input Sorting {
|
|
|
6359
6607
|
name: String!
|
|
6360
6608
|
}
|
|
6361
6609
|
|
|
6610
|
+
"""Entity for StateRegister"""
|
|
6611
|
+
type StateRegister {
|
|
6612
|
+
createdAt: DateTimeISO
|
|
6613
|
+
creator: User
|
|
6614
|
+
description: String
|
|
6615
|
+
domain: Domain
|
|
6616
|
+
id: ID!
|
|
6617
|
+
name: String
|
|
6618
|
+
refBy: String
|
|
6619
|
+
state: Object
|
|
6620
|
+
ttl: Int
|
|
6621
|
+
type: String
|
|
6622
|
+
updatedAt: DateTimeISO
|
|
6623
|
+
updater: User
|
|
6624
|
+
writer: User
|
|
6625
|
+
wroteAt: DateTimeISO
|
|
6626
|
+
}
|
|
6627
|
+
|
|
6628
|
+
type StateRegisterList {
|
|
6629
|
+
items: [StateRegister!]!
|
|
6630
|
+
total: Int!
|
|
6631
|
+
}
|
|
6632
|
+
|
|
6633
|
+
input StateRegisterPatch {
|
|
6634
|
+
cuFlag: String
|
|
6635
|
+
description: String
|
|
6636
|
+
id: ID
|
|
6637
|
+
name: String
|
|
6638
|
+
refBy: String
|
|
6639
|
+
state: Object
|
|
6640
|
+
ttl: Int
|
|
6641
|
+
type: String
|
|
6642
|
+
}
|
|
6643
|
+
|
|
6362
6644
|
type Step {
|
|
6363
6645
|
connection: String
|
|
6364
6646
|
createdAt: DateTimeISO
|
|
@@ -6502,7 +6784,7 @@ type User {
|
|
|
6502
6784
|
creator: User
|
|
6503
6785
|
description: String
|
|
6504
6786
|
domains: [Domain!]!
|
|
6505
|
-
email:
|
|
6787
|
+
email: EmailAddress!
|
|
6506
6788
|
id: ID!
|
|
6507
6789
|
locale: String
|
|
6508
6790
|
name: String!
|
|
@@ -6526,7 +6808,7 @@ input UserPatch {
|
|
|
6526
6808
|
cuFlag: String
|
|
6527
6809
|
description: String
|
|
6528
6810
|
domains: [ObjectRef!]
|
|
6529
|
-
email:
|
|
6811
|
+
email: EmailAddress
|
|
6530
6812
|
id: ID
|
|
6531
6813
|
name: String
|
|
6532
6814
|
password: String
|