@operato/scene-chartjs 8.0.0-alpha.0 → 8.0.0-alpha.10
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +45 -0
- package/dist/chartjs.d.ts +1 -0
- package/dist/chartjs.js +6 -0
- package/dist/chartjs.js.map +1 -1
- package/dist/ox-chart.d.ts +1 -1
- package/dist/ox-chart.js +8 -2
- package/dist/ox-chart.js.map +1 -1
- package/package.json +5 -5
- package/schema.graphql +639 -68
- package/src/chartjs.ts +6 -0
- package/src/ox-chart.ts +9 -5
- package/tsconfig.tsbuildinfo +1 -1
package/schema.graphql
CHANGED
@@ -29,7 +29,7 @@ type AppBinding {
|
|
29
29
|
email: EmailAddress!
|
30
30
|
id: ID!
|
31
31
|
locale: String
|
32
|
-
name: String
|
32
|
+
name: String
|
33
33
|
owner: Boolean
|
34
34
|
reference: String
|
35
35
|
refreshToken: String
|
@@ -133,7 +133,7 @@ type ApprovalLine {
|
|
133
133
|
createdAt: DateTimeISO
|
134
134
|
creator: User
|
135
135
|
description: String
|
136
|
-
domain: Domain
|
136
|
+
domain: Domain!
|
137
137
|
id: ID!
|
138
138
|
model: [ApprovalLineItem!]
|
139
139
|
name: String
|
@@ -201,6 +201,7 @@ type Attachment {
|
|
201
201
|
refBy: String
|
202
202
|
refType: String
|
203
203
|
size: String!
|
204
|
+
tags: Object
|
204
205
|
updatedAt: DateTimeISO!
|
205
206
|
updater: User
|
206
207
|
}
|
@@ -219,6 +220,7 @@ input AttachmentPatch {
|
|
219
220
|
name: String
|
220
221
|
refBy: String
|
221
222
|
refType: String
|
223
|
+
tags: Object
|
222
224
|
}
|
223
225
|
|
224
226
|
"""Entity for AttributeSet"""
|
@@ -283,11 +285,10 @@ type AuthProvider {
|
|
283
285
|
clientSecret: String
|
284
286
|
createdAt: DateTimeISO
|
285
287
|
creator: User
|
286
|
-
domain: Domain
|
288
|
+
domain: Domain!
|
287
289
|
id: ID!
|
288
290
|
params: Object
|
289
291
|
privateKey: String
|
290
|
-
state: String
|
291
292
|
tenantId: String
|
292
293
|
type: String
|
293
294
|
updatedAt: DateTimeISO
|
@@ -305,6 +306,7 @@ type AuthProviderParameterSpec {
|
|
305
306
|
name: String!
|
306
307
|
placeholder: String
|
307
308
|
property: Object
|
309
|
+
styles: Object
|
308
310
|
type: String!
|
309
311
|
}
|
310
312
|
|
@@ -411,7 +413,7 @@ type BoardTemplate {
|
|
411
413
|
createdAt: DateTimeISO
|
412
414
|
creator: User
|
413
415
|
description: String
|
414
|
-
domain: Domain
|
416
|
+
domain: Domain!
|
415
417
|
id: ID!
|
416
418
|
mine: Boolean!
|
417
419
|
model: String
|
@@ -462,7 +464,7 @@ type CommonCode {
|
|
462
464
|
creator: User
|
463
465
|
description: String
|
464
466
|
details: [CommonCodeDetail!]!
|
465
|
-
domain: Domain
|
467
|
+
domain: Domain!
|
466
468
|
id: ID!
|
467
469
|
name: String!
|
468
470
|
updatedAt: DateTimeISO
|
@@ -475,8 +477,9 @@ type CommonCodeDetail {
|
|
475
477
|
createdAt: DateTimeISO
|
476
478
|
creator: User
|
477
479
|
description: String
|
478
|
-
domain: Domain
|
480
|
+
domain: Domain!
|
479
481
|
id: ID!
|
482
|
+
labels: Object
|
480
483
|
name: String!
|
481
484
|
rank: Float
|
482
485
|
updatedAt: DateTimeISO
|
@@ -493,6 +496,7 @@ input CommonCodeDetailPatch {
|
|
493
496
|
cuFlag: String
|
494
497
|
description: String
|
495
498
|
id: ID
|
499
|
+
labels: Object
|
496
500
|
name: String
|
497
501
|
rank: Float
|
498
502
|
}
|
@@ -516,6 +520,7 @@ type Connection {
|
|
516
520
|
creator: User
|
517
521
|
description: String
|
518
522
|
domain: Domain
|
523
|
+
edge: Appliance
|
519
524
|
endpoint: String
|
520
525
|
id: ID!
|
521
526
|
name: String!
|
@@ -535,6 +540,7 @@ input ConnectionPatch {
|
|
535
540
|
active: Boolean
|
536
541
|
cuFlag: String
|
537
542
|
description: String
|
543
|
+
edge: ObjectRef
|
538
544
|
endpoint: String
|
539
545
|
id: ID
|
540
546
|
name: String
|
@@ -544,7 +550,8 @@ input ConnectionPatch {
|
|
544
550
|
|
545
551
|
type ConnectionState {
|
546
552
|
description: String
|
547
|
-
domain: Domain
|
553
|
+
domain: Domain!
|
554
|
+
edge: Appliance
|
548
555
|
id: String
|
549
556
|
name: String
|
550
557
|
state: String
|
@@ -573,7 +580,7 @@ type Contact {
|
|
573
580
|
creator: User
|
574
581
|
deletedAt: DateTimeISO
|
575
582
|
department: String
|
576
|
-
domain: Domain
|
583
|
+
domain: Domain!
|
577
584
|
email: EmailAddress
|
578
585
|
id: ID!
|
579
586
|
items: [ContactItem!]
|
@@ -644,7 +651,7 @@ type Department {
|
|
644
651
|
creator: User
|
645
652
|
deletedAt: DateTimeISO
|
646
653
|
description: String
|
647
|
-
domain: Domain
|
654
|
+
domain: Domain!
|
648
655
|
extension: String
|
649
656
|
id: ID!
|
650
657
|
manager: Employee
|
@@ -742,7 +749,7 @@ scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/in
|
|
742
749
|
"""Entity for Employee"""
|
743
750
|
type Employee {
|
744
751
|
active: Boolean
|
745
|
-
address: String
|
752
|
+
address: String
|
746
753
|
alias: String
|
747
754
|
approvalLines: [ApprovalLine!]!
|
748
755
|
contact: Contact
|
@@ -751,7 +758,7 @@ type Employee {
|
|
751
758
|
creator: User
|
752
759
|
deletedAt: DateTimeISO
|
753
760
|
department: Department
|
754
|
-
domain: Domain
|
761
|
+
domain: Domain!
|
755
762
|
email: EmailAddress
|
756
763
|
extension: String
|
757
764
|
hiredOn: String
|
@@ -782,9 +789,10 @@ type EmployeeList {
|
|
782
789
|
input EmployeePatch {
|
783
790
|
active: Boolean
|
784
791
|
alias: String
|
792
|
+
contact: ObjectRefForContact
|
785
793
|
controlNo: String
|
786
794
|
cuFlag: String
|
787
|
-
department:
|
795
|
+
department: ObjectRefForDepartment
|
788
796
|
hiredOn: String
|
789
797
|
id: ID
|
790
798
|
jobPosition: String
|
@@ -817,7 +825,7 @@ type Entity {
|
|
817
825
|
dataProp: String
|
818
826
|
delStrategy: String
|
819
827
|
description: String
|
820
|
-
domain: Domain
|
828
|
+
domain: Domain!
|
821
829
|
extEntity: Boolean
|
822
830
|
fixedColumns: Float
|
823
831
|
id: ID!
|
@@ -842,7 +850,7 @@ type EntityColumn {
|
|
842
850
|
creator: User
|
843
851
|
defVal: String
|
844
852
|
description: String
|
845
|
-
domain: Domain
|
853
|
+
domain: Domain!
|
846
854
|
entity: Entity!
|
847
855
|
formEditor: String
|
848
856
|
formFormat: String
|
@@ -1015,7 +1023,7 @@ type Font {
|
|
1015
1023
|
active: Boolean!
|
1016
1024
|
createdAt: DateTimeISO
|
1017
1025
|
creator: User
|
1018
|
-
domain: Domain
|
1026
|
+
domain: Domain!
|
1019
1027
|
files: [Attachment!]
|
1020
1028
|
id: ID!
|
1021
1029
|
name: String!
|
@@ -1138,14 +1146,14 @@ type LoginHistoryList {
|
|
1138
1146
|
type Menu {
|
1139
1147
|
buttons: [MenuButton!]!
|
1140
1148
|
category: String
|
1141
|
-
children: [Menu!]!
|
1149
|
+
children(permittedOnly: Boolean! = false): [Menu!]!
|
1142
1150
|
columns: [MenuColumn!]!
|
1143
1151
|
createdAt: DateTimeISO
|
1144
1152
|
creator: User
|
1145
1153
|
description: String
|
1146
1154
|
detailFormId: String
|
1147
1155
|
detailLayout: String
|
1148
|
-
domain: Domain
|
1156
|
+
domain: Domain!
|
1149
1157
|
fixedColumns: Float
|
1150
1158
|
gridSaveUrl: String
|
1151
1159
|
hiddenFlag: Boolean
|
@@ -1178,7 +1186,7 @@ type MenuButton {
|
|
1178
1186
|
auth: String
|
1179
1187
|
createdAt: DateTimeISO
|
1180
1188
|
creator: User
|
1181
|
-
domain: Domain
|
1189
|
+
domain: Domain!
|
1182
1190
|
icon: String
|
1183
1191
|
id: ID!
|
1184
1192
|
logic: String
|
@@ -1213,7 +1221,7 @@ type MenuColumn {
|
|
1213
1221
|
creator: User
|
1214
1222
|
defVal: String
|
1215
1223
|
description: String
|
1216
|
-
domain: Domain
|
1224
|
+
domain: Domain!
|
1217
1225
|
extField: Boolean
|
1218
1226
|
formEditor: String
|
1219
1227
|
formFormat: String
|
@@ -1302,7 +1310,7 @@ type MenuDetail {
|
|
1302
1310
|
creator: User
|
1303
1311
|
customView: String
|
1304
1312
|
dataProp: String
|
1305
|
-
domain: Domain
|
1313
|
+
domain: Domain!
|
1306
1314
|
entityId: String
|
1307
1315
|
id: ID!
|
1308
1316
|
masterField: String
|
@@ -1319,7 +1327,7 @@ type MenuDetail {
|
|
1319
1327
|
type MenuDetailButton {
|
1320
1328
|
createdAt: DateTimeISO
|
1321
1329
|
creator: User
|
1322
|
-
domain: Domain
|
1330
|
+
domain: Domain!
|
1323
1331
|
icon: String
|
1324
1332
|
id: ID!
|
1325
1333
|
logic: String
|
@@ -1353,7 +1361,7 @@ type MenuDetailColumn {
|
|
1353
1361
|
creator: User
|
1354
1362
|
defVal: String
|
1355
1363
|
description: String
|
1356
|
-
domain: Domain
|
1364
|
+
domain: Domain!
|
1357
1365
|
extField: Boolean
|
1358
1366
|
formEditor: String
|
1359
1367
|
formFormat: String
|
@@ -1495,10 +1503,15 @@ type Mutation {
|
|
1495
1503
|
"""To activate user"""
|
1496
1504
|
activateUser(userId: String!): Boolean!
|
1497
1505
|
|
1498
|
-
"""
|
1506
|
+
"""
|
1507
|
+
Attaches an existing contact to an employee. The contact is identified by its ID and the employee is identified by their ID.
|
1508
|
+
"""
|
1499
1509
|
attachContact(contactId: String!, id: String!): Employee!
|
1500
1510
|
cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
|
1501
1511
|
|
1512
|
+
"""To clear translations cache"""
|
1513
|
+
clearTranslationsCache: Boolean!
|
1514
|
+
|
1502
1515
|
"""To clone a Board from existing Board"""
|
1503
1516
|
cloneBoard(id: String!, patch: BoardPatch!, targetGroupId: String, targetSubdomain: String!): Board!
|
1504
1517
|
|
@@ -1549,7 +1562,9 @@ type Mutation {
|
|
1549
1562
|
"""To create domain (Only superuser is granted this privilege.)"""
|
1550
1563
|
createDomain(domainInput: DomainPatch!): Domain!
|
1551
1564
|
|
1552
|
-
"""
|
1565
|
+
"""
|
1566
|
+
Creates a new employee record with the provided details. Optionally associates the employee with a supervisor, department, and system user. If a photo is provided, it will be attached to the employee record.
|
1567
|
+
"""
|
1553
1568
|
createEmployee(employee: NewEmployee!): Employee!
|
1554
1569
|
|
1555
1570
|
"""To create new Entity"""
|
@@ -1588,6 +1603,9 @@ type Mutation {
|
|
1588
1603
|
"""To create new ApprovalLine for current user"""
|
1589
1604
|
createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
|
1590
1605
|
|
1606
|
+
"""To create my new PagePreference"""
|
1607
|
+
createMyPagePreference(pagePreference: NewPagePreference!): PagePreference!
|
1608
|
+
|
1591
1609
|
"""To create new Notification"""
|
1592
1610
|
createNotification(notification: NewNotification!): Notification!
|
1593
1611
|
|
@@ -1597,6 +1615,12 @@ type Mutation {
|
|
1597
1615
|
"""To create new Oauth2Client"""
|
1598
1616
|
createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
|
1599
1617
|
|
1618
|
+
"""To create new PDFRelease"""
|
1619
|
+
createPDFRelease(pdfRelease: NewPDFRelease!): PDFRelease!
|
1620
|
+
|
1621
|
+
"""To create new PDFTemplate"""
|
1622
|
+
createPDFTemplate(pdfTemplate: NewPDFTemplate!): PDFTemplate!
|
1623
|
+
|
1600
1624
|
"""To create new PayloadLog"""
|
1601
1625
|
createPayloadLog(payloadLog: NewPayloadLog!): PayloadLog!
|
1602
1626
|
|
@@ -1629,6 +1653,9 @@ type Mutation {
|
|
1629
1653
|
|
1630
1654
|
"""To create new user"""
|
1631
1655
|
createUser(user: NewUser!): User!
|
1656
|
+
|
1657
|
+
"""To create new UserPreference"""
|
1658
|
+
createUserPreference(preference: NewUserPreference!): UserPreference!
|
1632
1659
|
deleteAppBinding(id: String!): Boolean!
|
1633
1660
|
|
1634
1661
|
"""To delete appliance"""
|
@@ -1643,7 +1670,7 @@ type Mutation {
|
|
1643
1670
|
"""To delete multiple ApprovalLines"""
|
1644
1671
|
deleteApprovalLines(ids: [String!]!): Boolean!
|
1645
1672
|
deleteAttachment(id: String!): Boolean!
|
1646
|
-
deleteAttachmentsByRef(refBys: [String!]
|
1673
|
+
deleteAttachmentsByRef(refBys: [String!]!, refType: String): Boolean!
|
1647
1674
|
|
1648
1675
|
"""To delete AttributeSet"""
|
1649
1676
|
deleteAttributeSet(id: String!): Boolean!
|
@@ -1700,10 +1727,14 @@ type Mutation {
|
|
1700
1727
|
"""To delete multiple domains (Only superuser is granted this privilege.)"""
|
1701
1728
|
deleteDomains(names: [String!]!): Boolean!
|
1702
1729
|
|
1703
|
-
"""
|
1730
|
+
"""
|
1731
|
+
Deletes an employee record identified by the given ID. Also deletes any attachments associated with the employee.
|
1732
|
+
"""
|
1704
1733
|
deleteEmployee(id: String!): Boolean!
|
1705
1734
|
|
1706
|
-
"""
|
1735
|
+
"""
|
1736
|
+
Deletes multiple employee records identified by the given IDs. Also deletes any attachments associated with each employee.
|
1737
|
+
"""
|
1707
1738
|
deleteEmployees(ids: [String!]!): Boolean!
|
1708
1739
|
|
1709
1740
|
"""To delete multiple Entities"""
|
@@ -1769,6 +1800,12 @@ type Mutation {
|
|
1769
1800
|
"""To delete multiple ApprovalLines for current user"""
|
1770
1801
|
deleteMyApprovalLines(ids: [String!]!): Boolean!
|
1771
1802
|
|
1803
|
+
"""To delete my PagePreference"""
|
1804
|
+
deleteMyPagePreference(element: String!, page: String!): Boolean!
|
1805
|
+
|
1806
|
+
"""To delete my preference"""
|
1807
|
+
deleteMyUserPreference(element: String!, key: String!): Boolean!
|
1808
|
+
|
1772
1809
|
"""To delete Notification"""
|
1773
1810
|
deleteNotification(id: String!): Boolean!
|
1774
1811
|
|
@@ -1787,6 +1824,24 @@ type Mutation {
|
|
1787
1824
|
"""To delete multiple Oauth2Clients"""
|
1788
1825
|
deleteOauth2Clients(ids: [String!]!): Boolean!
|
1789
1826
|
|
1827
|
+
"""To delete PDFRelease"""
|
1828
|
+
deletePDFRelease(id: String!): Boolean!
|
1829
|
+
|
1830
|
+
"""To delete multiple PDFReleases"""
|
1831
|
+
deletePDFReleases(ids: [String!]!): Boolean!
|
1832
|
+
|
1833
|
+
"""To delete PDFTemplate"""
|
1834
|
+
deletePDFTemplate(id: String!): Boolean!
|
1835
|
+
|
1836
|
+
"""To delete multiple PDFTemplates"""
|
1837
|
+
deletePDFTemplates(ids: [String!]!): Boolean!
|
1838
|
+
|
1839
|
+
"""To delete PagePreference"""
|
1840
|
+
deletePagePreference(id: String!): Boolean!
|
1841
|
+
|
1842
|
+
"""To delete multiple PagePreferences"""
|
1843
|
+
deletePagePreferences(ids: [String!]!): Boolean!
|
1844
|
+
|
1790
1845
|
"""To delete multiple partnerSettings"""
|
1791
1846
|
deletePartnerSettings(ids: [String!]!): Boolean!
|
1792
1847
|
|
@@ -1850,10 +1905,18 @@ type Mutation {
|
|
1850
1905
|
"""To delete a user"""
|
1851
1906
|
deleteUser(email: EmailAddress!): Boolean!
|
1852
1907
|
|
1908
|
+
"""To delete UserPreference"""
|
1909
|
+
deleteUserPreference(id: String!): Boolean!
|
1910
|
+
|
1911
|
+
"""To delete multiple UserPreferences"""
|
1912
|
+
deleteUserPreferences(ids: [String!]!): Boolean!
|
1913
|
+
|
1853
1914
|
"""To delete some users"""
|
1854
1915
|
deleteUsers(emails: [String!]!): Boolean!
|
1855
1916
|
|
1856
|
-
"""
|
1917
|
+
"""
|
1918
|
+
Detaches an existing contact from an employee. The employee is identified by their ID.
|
1919
|
+
"""
|
1857
1920
|
detachContact(id: String!): Employee!
|
1858
1921
|
|
1859
1922
|
"""To disconnect a connection"""
|
@@ -1895,7 +1958,9 @@ type Mutation {
|
|
1895
1958
|
"""To import multiple Departments"""
|
1896
1959
|
importDepartments(departments: [DepartmentPatch!]!): Boolean!
|
1897
1960
|
|
1898
|
-
"""
|
1961
|
+
"""
|
1962
|
+
Imports multiple employee records into the system. Each employee record must be provided in the EmployeePatch format.
|
1963
|
+
"""
|
1899
1964
|
importEmployees(employees: [EmployeePatch!]!): Boolean!
|
1900
1965
|
|
1901
1966
|
"""To import multiple MenuButtons"""
|
@@ -1922,6 +1987,12 @@ type Mutation {
|
|
1922
1987
|
"""To import multiple Oauth2Clients"""
|
1923
1988
|
importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
|
1924
1989
|
|
1990
|
+
"""To import multiple PDFReleases"""
|
1991
|
+
importPDFReleases(pdfReleases: [PDFReleasePatch!]!): Boolean!
|
1992
|
+
|
1993
|
+
"""To import multiple PDFTemplates"""
|
1994
|
+
importPDFTemplates(pdfTemplates: [PDFTemplatePatch!]!): Boolean!
|
1995
|
+
|
1925
1996
|
"""To import multiple scenarios"""
|
1926
1997
|
importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
|
1927
1998
|
|
@@ -1969,6 +2040,15 @@ type Mutation {
|
|
1969
2040
|
visibility: String!
|
1970
2041
|
): BoardTemplate!
|
1971
2042
|
|
2043
|
+
"""
|
2044
|
+
Registers an existing employee as a system user, granting them access to the system. The employee is identified by their ID.
|
2045
|
+
"""
|
2046
|
+
registerEmployeeAsSystemUser(
|
2047
|
+
"""Employee Id"""
|
2048
|
+
employeeId: String!
|
2049
|
+
): Boolean!
|
2050
|
+
registerSchedule(schedule: NewSchedule!): ID!
|
2051
|
+
|
1972
2052
|
"""To release a Board"""
|
1973
2053
|
releaseBoard(id: String!): Board!
|
1974
2054
|
renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
|
@@ -1985,7 +2065,7 @@ type Mutation {
|
|
1985
2065
|
"""
|
1986
2066
|
To run new scenario instance and will return the result after the scenario stop.
|
1987
2067
|
"""
|
1988
|
-
runScenario(instanceName: String, scenarioName: String!, variables: Object):
|
2068
|
+
runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceRunResult!
|
1989
2069
|
sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
|
1990
2070
|
singleUpload(file: Upload!): Attachment!
|
1991
2071
|
|
@@ -2018,6 +2098,7 @@ type Mutation {
|
|
2018
2098
|
|
2019
2099
|
"""To transfer owner of domain"""
|
2020
2100
|
transferOwner(email: EmailAddress!): Boolean!
|
2101
|
+
unregisterSchedule(handle: ID!): Boolean!
|
2021
2102
|
updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
|
2022
2103
|
updateApplication(id: String!, patch: ApplicationPatch!): Application!
|
2023
2104
|
|
@@ -2058,7 +2139,9 @@ type Mutation {
|
|
2058
2139
|
"""To update multiple domains (Only superuser is granted this privilege.)"""
|
2059
2140
|
updateDomains(patches: [DomainPatch!]!): Boolean!
|
2060
2141
|
|
2061
|
-
"""
|
2142
|
+
"""
|
2143
|
+
Updates the details of an existing employee identified by the given ID. Optionally updates the supervisor, department, system user, and photo associated with the employee.
|
2144
|
+
"""
|
2062
2145
|
updateEmployee(id: String!, patch: EmployeePatch!): Employee!
|
2063
2146
|
|
2064
2147
|
"""To modify Entity' information"""
|
@@ -2113,7 +2196,9 @@ type Mutation {
|
|
2113
2196
|
"""To modify multiple Departments' information"""
|
2114
2197
|
updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
|
2115
2198
|
|
2116
|
-
"""
|
2199
|
+
"""
|
2200
|
+
Updates or creates multiple employee records based on the provided patches. New employees are created if the "cuFlag" is "+", and existing employees are updated if the "cuFlag" is "M".
|
2201
|
+
"""
|
2117
2202
|
updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
|
2118
2203
|
|
2119
2204
|
"""To modify multiple Entitys' information"""
|
@@ -2134,6 +2219,12 @@ type Mutation {
|
|
2134
2219
|
"""To modify multiple NotificationRules' information"""
|
2135
2220
|
updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
|
2136
2221
|
|
2222
|
+
"""To modify multiple PDFReleases' information"""
|
2223
|
+
updateMultiplePDFRelease(patches: [PDFReleasePatch!]!): [PDFRelease!]!
|
2224
|
+
|
2225
|
+
"""To modify multiple PDFTemplates' information"""
|
2226
|
+
updateMultiplePDFTemplate(patches: [PDFTemplatePatch!]!): [PDFTemplate!]!
|
2227
|
+
|
2137
2228
|
"""To modify multiple PartnerSettings' information"""
|
2138
2229
|
updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
|
2139
2230
|
|
@@ -2167,6 +2258,12 @@ type Mutation {
|
|
2167
2258
|
"""To modify ApprovalLine information for current user"""
|
2168
2259
|
updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
|
2169
2260
|
|
2261
|
+
"""To create or update my PagePreference"""
|
2262
|
+
updateMyPagePreference(element: String!, page: String!, preference: Object!): PagePreference!
|
2263
|
+
|
2264
|
+
"""To create or update my preference"""
|
2265
|
+
updateMyUserPreference(key: String!, preference: Object!): UserPreference!
|
2266
|
+
|
2170
2267
|
"""To modify Notification information"""
|
2171
2268
|
updateNotification(id: String!, patch: NotificationPatch!): Notification!
|
2172
2269
|
|
@@ -2176,6 +2273,12 @@ type Mutation {
|
|
2176
2273
|
"""To modify Oauth2Client information"""
|
2177
2274
|
updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
|
2178
2275
|
|
2276
|
+
"""To modify PDFRelease information"""
|
2277
|
+
updatePDFRelease(id: String!, patch: PDFReleasePatch!): PDFRelease!
|
2278
|
+
|
2279
|
+
"""To modify PDFTemplate information"""
|
2280
|
+
updatePDFTemplate(id: String!, patch: PDFTemplatePatch!): PDFTemplate!
|
2281
|
+
|
2179
2282
|
"""To modify PayloadLog information"""
|
2180
2283
|
updatePayloadLog(id: String!, patch: PayloadLogPatch!): PayloadLog!
|
2181
2284
|
|
@@ -2199,6 +2302,7 @@ type Mutation {
|
|
2199
2302
|
|
2200
2303
|
"""To modify scenario information"""
|
2201
2304
|
updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
|
2305
|
+
updateSchedule(schedule: SchedulePatch!): ID!
|
2202
2306
|
|
2203
2307
|
"""To update secure IP list for domain"""
|
2204
2308
|
updateSecureIPList(iplist: Object!): Object
|
@@ -2221,6 +2325,9 @@ type Mutation {
|
|
2221
2325
|
"""To modify user information"""
|
2222
2326
|
updateUser(email: EmailAddress!, patch: UserPatch!): User!
|
2223
2327
|
|
2328
|
+
"""To modify UserPreference information"""
|
2329
|
+
updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
|
2330
|
+
|
2224
2331
|
"""To update roles for a user"""
|
2225
2332
|
updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
|
2226
2333
|
}
|
@@ -2259,6 +2366,7 @@ input NewAttachment {
|
|
2259
2366
|
file: Upload!
|
2260
2367
|
refBy: String
|
2261
2368
|
refType: String
|
2369
|
+
tags: Object
|
2262
2370
|
}
|
2263
2371
|
|
2264
2372
|
input NewAttributeSet {
|
@@ -2303,12 +2411,14 @@ input NewCommonCode {
|
|
2303
2411
|
input NewCommonCodeDetail {
|
2304
2412
|
commonCode: ObjectRef!
|
2305
2413
|
description: String
|
2414
|
+
labels: Object
|
2306
2415
|
name: String!
|
2307
2416
|
rank: Float!
|
2308
2417
|
}
|
2309
2418
|
|
2310
2419
|
input NewConnection {
|
2311
2420
|
description: String
|
2421
|
+
edge: ObjectRef
|
2312
2422
|
endpoint: String
|
2313
2423
|
name: String!
|
2314
2424
|
params: String
|
@@ -2341,8 +2451,9 @@ input NewDepartment {
|
|
2341
2451
|
input NewEmployee {
|
2342
2452
|
active: Boolean
|
2343
2453
|
alias: String
|
2454
|
+
contact: ObjectRefForContact
|
2344
2455
|
controlNo: String!
|
2345
|
-
department:
|
2456
|
+
department: ObjectRefForDepartment
|
2346
2457
|
extension: String
|
2347
2458
|
hiredOn: String
|
2348
2459
|
jobPosition: String
|
@@ -2617,6 +2728,35 @@ input NewOauth2Client {
|
|
2617
2728
|
webhook: String
|
2618
2729
|
}
|
2619
2730
|
|
2731
|
+
input NewPDFRelease {
|
2732
|
+
active: Boolean
|
2733
|
+
description: String
|
2734
|
+
name: String!
|
2735
|
+
params: String
|
2736
|
+
state: PDFReleaseStatus
|
2737
|
+
}
|
2738
|
+
|
2739
|
+
input NewPDFTemplate {
|
2740
|
+
active: Boolean
|
2741
|
+
content_template: String
|
2742
|
+
cover_template: String
|
2743
|
+
description: String
|
2744
|
+
footer_template: String
|
2745
|
+
header_template: String
|
2746
|
+
last_template: String
|
2747
|
+
name: String!
|
2748
|
+
page_size: String = "A4"
|
2749
|
+
state: PDFTemplateStatus
|
2750
|
+
watermark: String
|
2751
|
+
}
|
2752
|
+
|
2753
|
+
input NewPagePreference {
|
2754
|
+
element: String
|
2755
|
+
page: String
|
2756
|
+
preference: Object!
|
2757
|
+
user: ObjectRef!
|
2758
|
+
}
|
2759
|
+
|
2620
2760
|
input NewPayloadLog {
|
2621
2761
|
description: String
|
2622
2762
|
name: String!
|
@@ -2663,12 +2803,22 @@ input NewScenario {
|
|
2663
2803
|
active: Boolean
|
2664
2804
|
description: String
|
2665
2805
|
name: String!
|
2666
|
-
|
2806
|
+
role: ObjectRef
|
2667
2807
|
schedule: String
|
2668
2808
|
timezone: String
|
2809
|
+
ttl: Float
|
2669
2810
|
type: String
|
2670
2811
|
}
|
2671
2812
|
|
2813
|
+
input NewSchedule {
|
2814
|
+
client: ScheduleClientInput!
|
2815
|
+
name: String!
|
2816
|
+
schedule: String
|
2817
|
+
task: ScheduleTaskInput!
|
2818
|
+
timezone: String
|
2819
|
+
type: String!
|
2820
|
+
}
|
2821
|
+
|
2672
2822
|
input NewSetting {
|
2673
2823
|
category: String!
|
2674
2824
|
description: String
|
@@ -2677,12 +2827,34 @@ input NewSetting {
|
|
2677
2827
|
}
|
2678
2828
|
|
2679
2829
|
input NewStateRegister {
|
2830
|
+
"""Description of the state register"""
|
2680
2831
|
description: String
|
2832
|
+
|
2833
|
+
"""Group name for the state register"""
|
2834
|
+
group: String
|
2835
|
+
|
2836
|
+
"""Name of the state register"""
|
2681
2837
|
name: String!
|
2838
|
+
|
2839
|
+
"""Number of decimal places if the state is a number type"""
|
2840
|
+
place: String
|
2841
|
+
|
2842
|
+
"""
|
2843
|
+
Reference to an external entity or data, used as a flexible foreign key
|
2844
|
+
"""
|
2682
2845
|
refBy: String
|
2846
|
+
|
2847
|
+
"""Current state value"""
|
2683
2848
|
state: Object
|
2849
|
+
|
2850
|
+
"""Time to live for the state value in seconds"""
|
2684
2851
|
ttl: Int
|
2852
|
+
|
2853
|
+
"""Type of the state"""
|
2685
2854
|
type: String
|
2855
|
+
|
2856
|
+
"""Unit of the state value"""
|
2857
|
+
unit: String
|
2686
2858
|
}
|
2687
2859
|
|
2688
2860
|
input NewTerminology {
|
@@ -2719,12 +2891,18 @@ input NewUserByDomainWizardInput {
|
|
2719
2891
|
roles: [NewRole!]!
|
2720
2892
|
}
|
2721
2893
|
|
2894
|
+
input NewUserPreference {
|
2895
|
+
key: String!
|
2896
|
+
preference: Object!
|
2897
|
+
user: ObjectRef!
|
2898
|
+
}
|
2899
|
+
|
2722
2900
|
"""Entity for Notification"""
|
2723
2901
|
type Notification {
|
2724
2902
|
body: String
|
2725
2903
|
createdAt: DateTimeISO
|
2726
2904
|
creator: User
|
2727
|
-
domain: Domain
|
2905
|
+
domain: Domain!
|
2728
2906
|
id: ID!
|
2729
2907
|
image: String
|
2730
2908
|
owner: User
|
@@ -2758,7 +2936,7 @@ type NotificationRule {
|
|
2758
2936
|
creator: User
|
2759
2937
|
deletedAt: DateTimeISO
|
2760
2938
|
description: String
|
2761
|
-
domain: Domain
|
2939
|
+
domain: Domain!
|
2762
2940
|
id: ID!
|
2763
2941
|
name: String
|
2764
2942
|
|
@@ -2815,7 +2993,7 @@ type Oauth2Client {
|
|
2815
2993
|
createdAt: DateTimeISO
|
2816
2994
|
creator: User
|
2817
2995
|
description: String
|
2818
|
-
domain: Domain
|
2996
|
+
domain: Domain!
|
2819
2997
|
expires: DateTimeISO
|
2820
2998
|
grantType: String
|
2821
2999
|
icon: String
|
@@ -2886,6 +3064,34 @@ input ObjectRefApprovalLineOwnerType {
|
|
2886
3064
|
name: String
|
2887
3065
|
}
|
2888
3066
|
|
3067
|
+
input ObjectRefForContact {
|
3068
|
+
address: String
|
3069
|
+
|
3070
|
+
"""Field description"""
|
3071
|
+
description: String
|
3072
|
+
email: EmailAddress
|
3073
|
+
|
3074
|
+
"""Field id"""
|
3075
|
+
id: ID!
|
3076
|
+
|
3077
|
+
"""Field name"""
|
3078
|
+
name: String
|
3079
|
+
phone: String
|
3080
|
+
}
|
3081
|
+
|
3082
|
+
input ObjectRefForDepartment {
|
3083
|
+
controlNo: String
|
3084
|
+
|
3085
|
+
"""Field description"""
|
3086
|
+
description: String
|
3087
|
+
|
3088
|
+
"""Field id"""
|
3089
|
+
id: ID!
|
3090
|
+
|
3091
|
+
"""Field name"""
|
3092
|
+
name: String
|
3093
|
+
}
|
3094
|
+
|
2889
3095
|
input ObjectRefForEmployee {
|
2890
3096
|
active: Boolean
|
2891
3097
|
alias: String
|
@@ -2942,18 +3148,123 @@ enum OrgMemberTargetType {
|
|
2942
3148
|
Role
|
2943
3149
|
}
|
2944
3150
|
|
3151
|
+
"""Entity for PDFRelease"""
|
3152
|
+
type PDFRelease {
|
3153
|
+
active: Boolean
|
3154
|
+
createdAt: DateTimeISO
|
3155
|
+
creator: User
|
3156
|
+
deletedAt: DateTimeISO
|
3157
|
+
description: String
|
3158
|
+
domain: Domain
|
3159
|
+
filePath: String
|
3160
|
+
fileUrl: String
|
3161
|
+
id: ID!
|
3162
|
+
name: String
|
3163
|
+
state: String
|
3164
|
+
template: PDFTemplate!
|
3165
|
+
templateId: String!
|
3166
|
+
updatedAt: DateTimeISO
|
3167
|
+
updater: User
|
3168
|
+
}
|
3169
|
+
|
3170
|
+
type PDFReleaseList {
|
3171
|
+
items: [PDFRelease!]!
|
3172
|
+
total: Int!
|
3173
|
+
}
|
3174
|
+
|
3175
|
+
input PDFReleasePatch {
|
3176
|
+
active: Boolean
|
3177
|
+
cuFlag: String
|
3178
|
+
description: String
|
3179
|
+
id: ID
|
3180
|
+
name: String
|
3181
|
+
state: PDFReleaseStatus
|
3182
|
+
}
|
3183
|
+
|
3184
|
+
"""state enumeration of a PDFRelease"""
|
3185
|
+
enum PDFReleaseStatus {
|
3186
|
+
failed
|
3187
|
+
published
|
3188
|
+
}
|
3189
|
+
|
3190
|
+
"""Entity for PDFTemplate"""
|
3191
|
+
type PDFTemplate {
|
3192
|
+
active: Boolean
|
3193
|
+
content_template: String
|
3194
|
+
cover_template: String
|
3195
|
+
createdAt: DateTimeISO
|
3196
|
+
creator: User
|
3197
|
+
description: String
|
3198
|
+
domain: Domain
|
3199
|
+
footer_template: String
|
3200
|
+
header_template: String
|
3201
|
+
id: ID!
|
3202
|
+
last_template: String
|
3203
|
+
name: String
|
3204
|
+
page_size: String
|
3205
|
+
state: String
|
3206
|
+
updatedAt: DateTimeISO
|
3207
|
+
updater: User
|
3208
|
+
watermark: String
|
3209
|
+
}
|
3210
|
+
|
3211
|
+
type PDFTemplateList {
|
3212
|
+
items: [PDFTemplate!]!
|
3213
|
+
total: Int!
|
3214
|
+
}
|
3215
|
+
|
3216
|
+
input PDFTemplatePatch {
|
3217
|
+
active: Boolean
|
3218
|
+
content_template: String
|
3219
|
+
cover_template: String
|
3220
|
+
cuFlag: String
|
3221
|
+
description: String
|
3222
|
+
footer_template: String
|
3223
|
+
header_template: String
|
3224
|
+
id: ID
|
3225
|
+
last_template: String
|
3226
|
+
name: String
|
3227
|
+
page_size: String = "A4"
|
3228
|
+
state: PDFTemplateStatus
|
3229
|
+
}
|
3230
|
+
|
3231
|
+
"""state enumeration of a PDF Template"""
|
3232
|
+
enum PDFTemplateStatus {
|
3233
|
+
draft
|
3234
|
+
released
|
3235
|
+
}
|
3236
|
+
|
3237
|
+
"""Entity for PagePreference"""
|
3238
|
+
type PagePreference {
|
3239
|
+
createdAt: DateTimeISO
|
3240
|
+
creator: User
|
3241
|
+
domain: Domain!
|
3242
|
+
element: String
|
3243
|
+
id: ID!
|
3244
|
+
page: String
|
3245
|
+
preference: Object
|
3246
|
+
updatedAt: DateTimeISO
|
3247
|
+
updater: User
|
3248
|
+
user: User!
|
3249
|
+
}
|
3250
|
+
|
3251
|
+
type PagePreferenceList {
|
3252
|
+
items: [PagePreference!]!
|
3253
|
+
total: Int!
|
3254
|
+
}
|
3255
|
+
|
2945
3256
|
input Pagination {
|
2946
3257
|
limit: Int
|
2947
3258
|
page: Int
|
2948
3259
|
}
|
2949
3260
|
|
2950
3261
|
type Partner {
|
2951
|
-
approvedAt: DateTimeISO
|
3262
|
+
approvedAt: DateTimeISO
|
2952
3263
|
approver: User
|
2953
3264
|
domain: Domain!
|
2954
3265
|
id: ID!
|
2955
3266
|
partnerDomain: Domain!
|
2956
|
-
requestedAt: DateTimeISO
|
3267
|
+
requestedAt: DateTimeISO
|
2957
3268
|
requester: User
|
2958
3269
|
}
|
2959
3270
|
|
@@ -2968,7 +3279,7 @@ type PartnerSetting {
|
|
2968
3279
|
createdAt: DateTimeISO
|
2969
3280
|
creator: User
|
2970
3281
|
description: String
|
2971
|
-
domain: Domain
|
3282
|
+
domain: Domain!
|
2972
3283
|
id: ID!
|
2973
3284
|
name: String
|
2974
3285
|
partnerDomain: Domain
|
@@ -2993,11 +3304,23 @@ input PartnerSettingPatch {
|
|
2993
3304
|
value: String
|
2994
3305
|
}
|
2995
3306
|
|
3307
|
+
type PasswordRule {
|
3308
|
+
allowRepeat: Boolean
|
3309
|
+
digit: Boolean
|
3310
|
+
looseCharacterLength: Float
|
3311
|
+
lowerCase: Boolean
|
3312
|
+
specialCharacter: Boolean
|
3313
|
+
tightCharacterLength: Float
|
3314
|
+
upperCase: Boolean
|
3315
|
+
useLoosePattern: Boolean
|
3316
|
+
useTightPattern: Boolean
|
3317
|
+
}
|
3318
|
+
|
2996
3319
|
"""Entity for PayloadLog"""
|
2997
3320
|
type PayloadLog {
|
2998
3321
|
createdAt: DateTimeISO
|
2999
3322
|
creator: User
|
3000
|
-
domain: Domain
|
3323
|
+
domain: Domain!
|
3001
3324
|
endpoint: String!
|
3002
3325
|
id: ID!
|
3003
3326
|
name: String!
|
@@ -3114,13 +3437,6 @@ type Privilege {
|
|
3114
3437
|
updater: User
|
3115
3438
|
}
|
3116
3439
|
|
3117
|
-
input PrivilegeInput {
|
3118
|
-
category: String
|
3119
|
-
owner: Boolean
|
3120
|
-
privilege: String
|
3121
|
-
super: Boolean
|
3122
|
-
}
|
3123
|
-
|
3124
3440
|
type PrivilegeList {
|
3125
3441
|
items: [Privilege!]
|
3126
3442
|
total: Int
|
@@ -3163,11 +3479,18 @@ type PropertySpec {
|
|
3163
3479
|
name: String!
|
3164
3480
|
placeholder: String
|
3165
3481
|
property: Object
|
3482
|
+
styles: Object
|
3166
3483
|
type: String!
|
3167
3484
|
}
|
3168
3485
|
|
3169
3486
|
type Query {
|
3170
3487
|
APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
|
3488
|
+
|
3489
|
+
"""To fetch a PDFTemplate"""
|
3490
|
+
PDFTemplate(id: String!): PDFTemplate
|
3491
|
+
|
3492
|
+
"""To fetch multiple PDFTemplates"""
|
3493
|
+
PDFTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PDFTemplateList!
|
3171
3494
|
appBinding(id: String!): AppBinding!
|
3172
3495
|
appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
|
3173
3496
|
|
@@ -3240,19 +3563,25 @@ type Query {
|
|
3240
3563
|
boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
|
3241
3564
|
chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
|
3242
3565
|
|
3243
|
-
"""
|
3566
|
+
"""
|
3567
|
+
Checks if the system is configured to provide a default password for new users.
|
3568
|
+
"""
|
3244
3569
|
checkDefaultPassword: Boolean!
|
3245
3570
|
|
3246
|
-
"""
|
3571
|
+
"""
|
3572
|
+
Determines whether the system provides a default password when creating a new user.
|
3573
|
+
"""
|
3247
3574
|
checkResettablePasswordToDefault: Boolean!
|
3248
3575
|
|
3249
3576
|
"""To fetch the preset of role for new user"""
|
3250
3577
|
checkRolePreset: [Role!]!
|
3251
3578
|
|
3252
|
-
"""
|
3579
|
+
"""
|
3580
|
+
Checks if the current authenticated user belongs to the current domain.
|
3581
|
+
"""
|
3253
3582
|
checkUserBelongsDomain: Boolean!
|
3254
3583
|
|
3255
|
-
"""
|
3584
|
+
"""Checks if a user with the given email address exists in the system."""
|
3256
3585
|
checkUserExistence(email: EmailAddress!): Boolean!
|
3257
3586
|
|
3258
3587
|
"""To fetch common approval lines"""
|
@@ -3309,10 +3638,17 @@ type Query {
|
|
3309
3638
|
"""To fetch domains with given privilege for user"""
|
3310
3639
|
domainsWithPrivilege(category: String!, privilege: String!): [Domain!]!
|
3311
3640
|
|
3312
|
-
"""To fetch
|
3641
|
+
"""To fetch multiple appliance"""
|
3642
|
+
edges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
|
3643
|
+
|
3644
|
+
"""
|
3645
|
+
Fetches a specific employee by their unique ID. Returns the employee object if found, or null if not found.
|
3646
|
+
"""
|
3313
3647
|
employee(id: String!): Employee
|
3314
3648
|
|
3315
|
-
"""
|
3649
|
+
"""
|
3650
|
+
Fetches a list of employees based on provided query parameters. Supports searching by name, control number, and alias.
|
3651
|
+
"""
|
3316
3652
|
employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
|
3317
3653
|
|
3318
3654
|
"""To fetch multiple Entities"""
|
@@ -3415,12 +3751,30 @@ type Query {
|
|
3415
3751
|
myFavorites: [Favorite!]!
|
3416
3752
|
myLoginHistories(limit: Float!): [LoginHistory!]!
|
3417
3753
|
|
3754
|
+
"""To fetch my own Menus"""
|
3755
|
+
myMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
|
3756
|
+
|
3418
3757
|
"""To fetch my notifications"""
|
3419
3758
|
myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
|
3420
3759
|
|
3760
|
+
"""To fetch a User's own PagePreference"""
|
3761
|
+
myPageAllPreferences(page: String!): [PagePreference!]
|
3762
|
+
|
3763
|
+
"""To fetch a User's own PagePreference"""
|
3764
|
+
myPagePreference(element: String!, page: String!): PagePreference
|
3765
|
+
|
3766
|
+
"""To fetch multiple PagePreferences"""
|
3767
|
+
myPagePreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PagePreferenceList!
|
3768
|
+
|
3421
3769
|
"""To fetch roles of current user"""
|
3422
3770
|
myRoles: [Role!]!
|
3423
3771
|
|
3772
|
+
"""To fetch a User's own UserPreference"""
|
3773
|
+
myUserPreference(element: String!, key: String!): UserPreference
|
3774
|
+
|
3775
|
+
"""To fetch multiple UserPreferences"""
|
3776
|
+
myUserPreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserPreferenceList!
|
3777
|
+
|
3424
3778
|
"""To fetch a Notification"""
|
3425
3779
|
notification(id: String!): Notification
|
3426
3780
|
|
@@ -3439,6 +3793,9 @@ type Query {
|
|
3439
3793
|
"""To fetch multiple Oauth2Clients"""
|
3440
3794
|
oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
|
3441
3795
|
|
3796
|
+
"""To fetch a PagePreference"""
|
3797
|
+
pagePreference(id: String!): PagePreference
|
3798
|
+
|
3442
3799
|
"""To fetch specific domain's CommonCodes by given name"""
|
3443
3800
|
partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
|
3444
3801
|
|
@@ -3449,12 +3806,23 @@ type Query {
|
|
3449
3806
|
partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
|
3450
3807
|
partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
|
3451
3808
|
|
3809
|
+
"""
|
3810
|
+
Retrieves the current password rule configuration for the system, such as required character types and minimum length.
|
3811
|
+
"""
|
3812
|
+
passwordRule: PasswordRule!
|
3813
|
+
|
3452
3814
|
"""To fetch a PayloadLog"""
|
3453
3815
|
payloadLog(id: String!): PayloadLog!
|
3454
3816
|
|
3455
3817
|
"""To fetch multiple PayloadLogs"""
|
3456
3818
|
payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
|
3457
3819
|
|
3820
|
+
"""To fetch a PDFRelease"""
|
3821
|
+
pdfRelease(id: String!): PDFRelease
|
3822
|
+
|
3823
|
+
"""To fetch multiple PDFReleases"""
|
3824
|
+
pdfReleases(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PDFReleaseList!
|
3825
|
+
|
3458
3826
|
"""To fetch a PlayGroup"""
|
3459
3827
|
playGroup(id: String!): PlayGroup
|
3460
3828
|
|
@@ -3464,6 +3832,9 @@ type Query {
|
|
3464
3832
|
"""To fetch multiple PlayGroups"""
|
3465
3833
|
playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
|
3466
3834
|
|
3835
|
+
"""To fetch a UserPreference"""
|
3836
|
+
preference(id: String!): UserPreference
|
3837
|
+
|
3467
3838
|
"""To fetch a PrinterDevice"""
|
3468
3839
|
printerDevice(id: String!): PrinterDevice!
|
3469
3840
|
|
@@ -3496,6 +3867,10 @@ type Query {
|
|
3496
3867
|
|
3497
3868
|
"""To fetch multiple scenarios"""
|
3498
3869
|
scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
|
3870
|
+
schedule(id: ID!): Schedule
|
3871
|
+
|
3872
|
+
"""To fetch multiple Schedules"""
|
3873
|
+
schedules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScheduleList!
|
3499
3874
|
searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
3500
3875
|
|
3501
3876
|
"""To fetch domain"""
|
@@ -3543,7 +3918,7 @@ type Query {
|
|
3543
3918
|
"""To fetch multiple Themes"""
|
3544
3919
|
themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
|
3545
3920
|
|
3546
|
-
"""
|
3921
|
+
"""Fetches a user by their email address within the current domain."""
|
3547
3922
|
user(email: EmailAddress!): User!
|
3548
3923
|
|
3549
3924
|
"""To fetch Menus by role"""
|
@@ -3552,7 +3927,9 @@ type Query {
|
|
3552
3927
|
"""To fetch roles of a user"""
|
3553
3928
|
userRoles(userId: String!): [UserRole!]!
|
3554
3929
|
|
3555
|
-
"""
|
3930
|
+
"""
|
3931
|
+
Fetches a list of users based on provided search parameters within the current domain.
|
3932
|
+
"""
|
3556
3933
|
users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
|
3557
3934
|
vendors: [Domain!]!
|
3558
3935
|
}
|
@@ -3569,7 +3946,7 @@ type Role {
|
|
3569
3946
|
description: String
|
3570
3947
|
domain: Domain!
|
3571
3948
|
id: ID!
|
3572
|
-
name: String
|
3949
|
+
name: String
|
3573
3950
|
privileges: [Privilege!]
|
3574
3951
|
updatedAt: DateTimeISO
|
3575
3952
|
updater: User
|
@@ -3605,7 +3982,7 @@ type Scenario {
|
|
3605
3982
|
createdAt: DateTimeISO
|
3606
3983
|
creator: User
|
3607
3984
|
description: String
|
3608
|
-
domain: Domain
|
3985
|
+
domain: Domain!
|
3609
3986
|
id: ID!
|
3610
3987
|
instances: [ScenarioInstance!]
|
3611
3988
|
name: String!
|
@@ -3614,11 +3991,13 @@ type Scenario {
|
|
3614
3991
|
"""accessible and executable system-wide"""
|
3615
3992
|
public: Boolean
|
3616
3993
|
publishTags: [Connection!]!
|
3994
|
+
role: Role
|
3617
3995
|
schedule: String
|
3618
3996
|
scheduleId: String
|
3619
3997
|
state: String
|
3620
3998
|
steps: [Step!]
|
3621
3999
|
timezone: String
|
4000
|
+
ttl: Float
|
3622
4001
|
type: String
|
3623
4002
|
updatedAt: DateTimeISO
|
3624
4003
|
updater: User
|
@@ -3651,6 +4030,17 @@ type ScenarioInstanceProgress {
|
|
3651
4030
|
steps: Int!
|
3652
4031
|
}
|
3653
4032
|
|
4033
|
+
type ScenarioInstanceRunResult {
|
4034
|
+
data: Object
|
4035
|
+
instanceName: String
|
4036
|
+
message: String
|
4037
|
+
result: Object
|
4038
|
+
scenarioName: String
|
4039
|
+
state: String
|
4040
|
+
timestamp: DateTimeISO
|
4041
|
+
variables: Object
|
4042
|
+
}
|
4043
|
+
|
3654
4044
|
type ScenarioInstanceState {
|
3655
4045
|
data: Object
|
3656
4046
|
domain: Domain
|
@@ -3683,10 +4073,11 @@ input ScenarioPatch {
|
|
3683
4073
|
description: String
|
3684
4074
|
id: ID
|
3685
4075
|
name: String
|
3686
|
-
|
4076
|
+
role: ObjectRef
|
3687
4077
|
schedule: String
|
3688
4078
|
steps: [StepPatch!]
|
3689
4079
|
timezone: String
|
4080
|
+
ttl: Float
|
3690
4081
|
type: String
|
3691
4082
|
}
|
3692
4083
|
|
@@ -3695,13 +4086,88 @@ type ScenarioQueueState {
|
|
3695
4086
|
queue: [PendingObject!]!
|
3696
4087
|
}
|
3697
4088
|
|
4089
|
+
type Schedule {
|
4090
|
+
client: ScheduleClient!
|
4091
|
+
id: ID!
|
4092
|
+
name: String
|
4093
|
+
schedule: String
|
4094
|
+
task: ScheduleTask!
|
4095
|
+
timezone: String
|
4096
|
+
type: String!
|
4097
|
+
}
|
4098
|
+
|
4099
|
+
type ScheduleClient {
|
4100
|
+
application: String!
|
4101
|
+
group: String!
|
4102
|
+
key: String!
|
4103
|
+
operation: String!
|
4104
|
+
type: String!
|
4105
|
+
}
|
4106
|
+
|
4107
|
+
input ScheduleClientInput {
|
4108
|
+
application: String!
|
4109
|
+
group: String!
|
4110
|
+
key: String!
|
4111
|
+
operation: String!
|
4112
|
+
type: String!
|
4113
|
+
}
|
4114
|
+
|
4115
|
+
type ScheduleList {
|
4116
|
+
items: [Schedule!]!
|
4117
|
+
total: Int!
|
4118
|
+
}
|
4119
|
+
|
4120
|
+
input SchedulePatch {
|
4121
|
+
client: ScheduleClientInput!
|
4122
|
+
id: String
|
4123
|
+
name: String
|
4124
|
+
schedule: String
|
4125
|
+
task: ScheduleTaskInput!
|
4126
|
+
timezone: String
|
4127
|
+
type: String!
|
4128
|
+
}
|
4129
|
+
|
4130
|
+
type ScheduleTask {
|
4131
|
+
connection: ScheduleTaskConnection!
|
4132
|
+
data: Object!
|
4133
|
+
failed_policy: String!
|
4134
|
+
history_check: Boolean!
|
4135
|
+
max_retry_count: Int!
|
4136
|
+
retry_count: Int!
|
4137
|
+
retry_wait: Int!
|
4138
|
+
type: String!
|
4139
|
+
}
|
4140
|
+
|
4141
|
+
type ScheduleTaskConnection {
|
4142
|
+
headers: Object
|
4143
|
+
host: String
|
4144
|
+
topic: String
|
4145
|
+
}
|
4146
|
+
|
4147
|
+
input ScheduleTaskConnectionInput {
|
4148
|
+
headers: Object
|
4149
|
+
host: String
|
4150
|
+
topic: String
|
4151
|
+
}
|
4152
|
+
|
4153
|
+
input ScheduleTaskInput {
|
4154
|
+
connection: ScheduleTaskConnectionInput!
|
4155
|
+
data: Object!
|
4156
|
+
failed_policy: String!
|
4157
|
+
history_check: Boolean!
|
4158
|
+
max_retry_count: Int!
|
4159
|
+
retry_count: Int!
|
4160
|
+
retry_wait: Int!
|
4161
|
+
type: String!
|
4162
|
+
}
|
4163
|
+
|
3698
4164
|
"""Entity for Setting"""
|
3699
4165
|
type Setting {
|
3700
4166
|
category: String!
|
3701
4167
|
createdAt: DateTimeISO
|
3702
4168
|
creator: User
|
3703
4169
|
description: String
|
3704
|
-
domain: Domain
|
4170
|
+
domain: Domain!
|
3705
4171
|
id: ID!
|
3706
4172
|
name: String!
|
3707
4173
|
updatedAt: DateTimeISO
|
@@ -3735,36 +4201,113 @@ input Sorting {
|
|
3735
4201
|
|
3736
4202
|
"""Entity for StateRegister"""
|
3737
4203
|
type StateRegister {
|
4204
|
+
"""Creation time of the state register"""
|
3738
4205
|
createdAt: DateTimeISO
|
4206
|
+
|
4207
|
+
"""User who created the state register"""
|
3739
4208
|
creator: User
|
4209
|
+
|
4210
|
+
"""ID of the user who created the state register"""
|
4211
|
+
creatorId: String
|
4212
|
+
|
4213
|
+
"""Description of the state register"""
|
3740
4214
|
description: String
|
3741
|
-
|
4215
|
+
|
4216
|
+
"""Associated domain for the state register"""
|
4217
|
+
domain: Domain!
|
4218
|
+
|
4219
|
+
"""ID of the associated domain"""
|
4220
|
+
domainId: String!
|
4221
|
+
|
4222
|
+
"""Group name for the state register"""
|
4223
|
+
group: String
|
3742
4224
|
id: ID!
|
4225
|
+
|
4226
|
+
"""Name of the state register"""
|
3743
4227
|
name: String
|
4228
|
+
|
4229
|
+
"""Number of decimal places if the state is a number type"""
|
4230
|
+
place: String
|
4231
|
+
|
4232
|
+
"""
|
4233
|
+
Reference to an external entity or data, used as a flexible foreign key
|
4234
|
+
"""
|
3744
4235
|
refBy: String
|
4236
|
+
|
4237
|
+
"""Current state value"""
|
3745
4238
|
state: Object
|
4239
|
+
|
4240
|
+
"""Time to live for the state value in seconds"""
|
3746
4241
|
ttl: Int
|
4242
|
+
|
4243
|
+
"""Type of the state"""
|
3747
4244
|
type: String
|
4245
|
+
|
4246
|
+
"""Unit of the state value"""
|
4247
|
+
unit: String
|
4248
|
+
|
4249
|
+
"""Last update time of the state register"""
|
3748
4250
|
updatedAt: DateTimeISO
|
4251
|
+
|
4252
|
+
"""User who last updated the state register"""
|
3749
4253
|
updater: User
|
4254
|
+
|
4255
|
+
"""ID of the user who last updated the state register"""
|
4256
|
+
updaterId: String
|
4257
|
+
|
4258
|
+
"""User who wrote the state"""
|
3750
4259
|
writer: User
|
4260
|
+
|
4261
|
+
"""ID of the user who wrote the state"""
|
4262
|
+
writerId: String
|
4263
|
+
|
4264
|
+
"""Time when the state was recorded"""
|
3751
4265
|
wroteAt: DateTimeISO
|
3752
4266
|
}
|
3753
4267
|
|
3754
4268
|
type StateRegisterList {
|
4269
|
+
"""List of state registers"""
|
3755
4270
|
items: [StateRegister!]!
|
4271
|
+
|
4272
|
+
"""Total number of state registers"""
|
3756
4273
|
total: Int!
|
3757
4274
|
}
|
3758
4275
|
|
3759
4276
|
input StateRegisterPatch {
|
4277
|
+
"""Flag indicating create/update operations"""
|
3760
4278
|
cuFlag: String
|
4279
|
+
|
4280
|
+
"""Description of the state register"""
|
3761
4281
|
description: String
|
4282
|
+
|
4283
|
+
"""Group name for the state register"""
|
4284
|
+
group: String
|
4285
|
+
|
4286
|
+
"""ID of the state register"""
|
3762
4287
|
id: ID
|
4288
|
+
|
4289
|
+
"""Name of the state register"""
|
3763
4290
|
name: String
|
4291
|
+
|
4292
|
+
"""Number of decimal places if the state is a number type"""
|
4293
|
+
place: String
|
4294
|
+
|
4295
|
+
"""
|
4296
|
+
Reference to an external entity or data, used as a flexible foreign key
|
4297
|
+
"""
|
3764
4298
|
refBy: String
|
4299
|
+
|
4300
|
+
"""Current state value"""
|
3765
4301
|
state: Object
|
4302
|
+
|
4303
|
+
"""Time to live for the state value in seconds"""
|
3766
4304
|
ttl: Int
|
4305
|
+
|
4306
|
+
"""Type of the state"""
|
3767
4307
|
type: String
|
4308
|
+
|
4309
|
+
"""Unit of the state value"""
|
4310
|
+
unit: String
|
3768
4311
|
}
|
3769
4312
|
|
3770
4313
|
type Step {
|
@@ -3838,6 +4381,7 @@ type TaskTypeList {
|
|
3838
4381
|
type Terminology {
|
3839
4382
|
category: String!
|
3840
4383
|
createdAt: DateTimeISO
|
4384
|
+
creator: User
|
3841
4385
|
description: String
|
3842
4386
|
display: String!
|
3843
4387
|
domain: Domain!
|
@@ -3845,6 +4389,7 @@ type Terminology {
|
|
3845
4389
|
locale: String!
|
3846
4390
|
name: String!
|
3847
4391
|
updatedAt: DateTimeISO
|
4392
|
+
updater: User
|
3848
4393
|
}
|
3849
4394
|
|
3850
4395
|
type TerminologyList {
|
@@ -3853,12 +4398,12 @@ type TerminologyList {
|
|
3853
4398
|
}
|
3854
4399
|
|
3855
4400
|
input TerminologyPatch {
|
3856
|
-
category: String
|
4401
|
+
category: String
|
3857
4402
|
cuFlag: String
|
3858
4403
|
description: String
|
3859
|
-
display: String
|
4404
|
+
display: String
|
3860
4405
|
id: ID
|
3861
|
-
locale: String
|
4406
|
+
locale: String
|
3862
4407
|
name: String
|
3863
4408
|
}
|
3864
4409
|
|
@@ -3869,7 +4414,7 @@ type Theme {
|
|
3869
4414
|
creator: User
|
3870
4415
|
deletedAt: DateTimeISO
|
3871
4416
|
description: String
|
3872
|
-
domain: Domain
|
4417
|
+
domain: Domain!
|
3873
4418
|
id: ID!
|
3874
4419
|
name: String
|
3875
4420
|
type: String
|
@@ -3909,7 +4454,7 @@ type User {
|
|
3909
4454
|
email: EmailAddress!
|
3910
4455
|
id: ID!
|
3911
4456
|
locale: String
|
3912
|
-
name: String
|
4457
|
+
name: String
|
3913
4458
|
owner: Boolean
|
3914
4459
|
reference: String
|
3915
4460
|
roles: [Role!]!
|
@@ -3939,6 +4484,32 @@ input UserPatch {
|
|
3939
4484
|
userType: String
|
3940
4485
|
}
|
3941
4486
|
|
4487
|
+
"""Entity for UserPreference"""
|
4488
|
+
type UserPreference {
|
4489
|
+
createdAt: DateTimeISO
|
4490
|
+
creator: User
|
4491
|
+
domain: Domain
|
4492
|
+
id: ID!
|
4493
|
+
key: String
|
4494
|
+
preference: Object
|
4495
|
+
updatedAt: DateTimeISO
|
4496
|
+
updater: User
|
4497
|
+
user: User!
|
4498
|
+
}
|
4499
|
+
|
4500
|
+
type UserPreferenceList {
|
4501
|
+
items: [UserPreference!]!
|
4502
|
+
total: Int!
|
4503
|
+
}
|
4504
|
+
|
4505
|
+
input UserPreferencePatch {
|
4506
|
+
cuFlag: String
|
4507
|
+
id: ID
|
4508
|
+
key: String!
|
4509
|
+
preference: Object!
|
4510
|
+
user: ObjectRef!
|
4511
|
+
}
|
4512
|
+
|
3942
4513
|
type UserRole {
|
3943
4514
|
assigned: Boolean
|
3944
4515
|
description: String
|
@@ -3950,7 +4521,7 @@ type UserRole {
|
|
3950
4521
|
type UsersAuthProviders {
|
3951
4522
|
authProvider: AuthProvider
|
3952
4523
|
createdAt: DateTimeISO
|
3953
|
-
domain: Domain
|
4524
|
+
domain: Domain!
|
3954
4525
|
id: ID!
|
3955
4526
|
ssoId: String
|
3956
4527
|
updatedAt: DateTimeISO
|