@operato/scene-manufacturing 1.3.21 → 1.3.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/db.sqlite +0 -0
  3. package/dist/tact-timer.d.ts +3 -0
  4. package/dist/tact-timer.js +19 -4
  5. package/dist/tact-timer.js.map +1 -1
  6. package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +9 -19
  7. package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +9 -49
  8. package/logs/{application-2024-07-12-16.log → application-2024-10-12-15.log} +8 -8
  9. package/logs/application-2024-10-12-16.log +105 -0
  10. package/logs/{application-2024-07-12-17.log → application-2024-10-13-01.log} +16 -98
  11. package/logs/connections-2024-10-12-15.log +50 -0
  12. package/logs/connections-2024-10-12-16.log +50 -0
  13. package/logs/connections-2024-10-13-01.log +97 -0
  14. package/package.json +2 -2
  15. package/schema.graphql +548 -59
  16. package/src/tact-timer.ts +23 -4
  17. package/tsconfig.tsbuildinfo +1 -1
  18. package/logs/application-2024-07-11-12.log +0 -23
  19. package/logs/application-2024-07-11-13.log +0 -23
  20. package/logs/application-2024-07-12-19.log +0 -46
  21. package/logs/connections-2024-07-05-08.log +0 -50
  22. package/logs/connections-2024-07-05-12.log +0 -50
  23. package/logs/connections-2024-07-06-01.log +0 -50
  24. package/logs/connections-2024-07-06-03.log +0 -50
  25. package/logs/connections-2024-07-06-11.log +0 -47
  26. package/logs/connections-2024-07-06-12.log +0 -50
  27. package/logs/connections-2024-07-11-12.log +0 -47
  28. package/logs/connections-2024-07-11-13.log +0 -47
  29. package/logs/connections-2024-07-12-16.log +0 -50
  30. package/logs/connections-2024-07-12-17.log +0 -100
  31. package/logs/connections-2024-07-12-19.log +0 -94
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: ObjectRef
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
@@ -1157,6 +1165,7 @@ type Menu {
1157
1165
  name: String
1158
1166
  pagination: Boolean
1159
1167
  parent: Menu
1168
+ privilege: PrivilegeObject
1160
1169
  rank: Float
1161
1170
  resourceId: String
1162
1171
  resourceName: String
@@ -1178,7 +1187,7 @@ type MenuButton {
1178
1187
  auth: String
1179
1188
  createdAt: DateTimeISO
1180
1189
  creator: User
1181
- domain: Domain
1190
+ domain: Domain!
1182
1191
  icon: String
1183
1192
  id: ID!
1184
1193
  logic: String
@@ -1213,7 +1222,7 @@ type MenuColumn {
1213
1222
  creator: User
1214
1223
  defVal: String
1215
1224
  description: String
1216
- domain: Domain
1225
+ domain: Domain!
1217
1226
  extField: Boolean
1218
1227
  formEditor: String
1219
1228
  formFormat: String
@@ -1302,7 +1311,7 @@ type MenuDetail {
1302
1311
  creator: User
1303
1312
  customView: String
1304
1313
  dataProp: String
1305
- domain: Domain
1314
+ domain: Domain!
1306
1315
  entityId: String
1307
1316
  id: ID!
1308
1317
  masterField: String
@@ -1319,7 +1328,7 @@ type MenuDetail {
1319
1328
  type MenuDetailButton {
1320
1329
  createdAt: DateTimeISO
1321
1330
  creator: User
1322
- domain: Domain
1331
+ domain: Domain!
1323
1332
  icon: String
1324
1333
  id: ID!
1325
1334
  logic: String
@@ -1353,7 +1362,7 @@ type MenuDetailColumn {
1353
1362
  creator: User
1354
1363
  defVal: String
1355
1364
  description: String
1356
- domain: Domain
1365
+ domain: Domain!
1357
1366
  extField: Boolean
1358
1367
  formEditor: String
1359
1368
  formFormat: String
@@ -1478,6 +1487,7 @@ input MenuPatch {
1478
1487
  name: String
1479
1488
  pagination: Boolean
1480
1489
  parent: ObjectRef
1490
+ privilege: PrivilegeInput
1481
1491
  rank: Int
1482
1492
  resourceId: String
1483
1493
  resourceName: String
@@ -1495,10 +1505,15 @@ type Mutation {
1495
1505
  """To activate user"""
1496
1506
  activateUser(userId: String!): Boolean!
1497
1507
 
1498
- """To attach a contact on Employee"""
1508
+ """
1509
+ Attaches an existing contact to an employee. The contact is identified by its ID and the employee is identified by their ID.
1510
+ """
1499
1511
  attachContact(contactId: String!, id: String!): Employee!
1500
1512
  cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
1501
1513
 
1514
+ """To clear translations cache"""
1515
+ clearTranslationsCache: Boolean!
1516
+
1502
1517
  """To clone a Board from existing Board"""
1503
1518
  cloneBoard(id: String!, patch: BoardPatch!, targetGroupId: String, targetSubdomain: String!): Board!
1504
1519
 
@@ -1549,7 +1564,9 @@ type Mutation {
1549
1564
  """To create domain (Only superuser is granted this privilege.)"""
1550
1565
  createDomain(domainInput: DomainPatch!): Domain!
1551
1566
 
1552
- """To create new Employee"""
1567
+ """
1568
+ 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.
1569
+ """
1553
1570
  createEmployee(employee: NewEmployee!): Employee!
1554
1571
 
1555
1572
  """To create new Entity"""
@@ -1588,6 +1605,9 @@ type Mutation {
1588
1605
  """To create new ApprovalLine for current user"""
1589
1606
  createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1590
1607
 
1608
+ """To create my new PagePreference"""
1609
+ createMyPagePreference(pagePreference: NewPagePreference!): PagePreference!
1610
+
1591
1611
  """To create new Notification"""
1592
1612
  createNotification(notification: NewNotification!): Notification!
1593
1613
 
@@ -1597,6 +1617,12 @@ type Mutation {
1597
1617
  """To create new Oauth2Client"""
1598
1618
  createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
1599
1619
 
1620
+ """To create new PDFRelease"""
1621
+ createPDFRelease(pdfRelease: NewPDFRelease!): PDFRelease!
1622
+
1623
+ """To create new PDFTemplate"""
1624
+ createPDFTemplate(pdfTemplate: NewPDFTemplate!): PDFTemplate!
1625
+
1600
1626
  """To create new PayloadLog"""
1601
1627
  createPayloadLog(payloadLog: NewPayloadLog!): PayloadLog!
1602
1628
 
@@ -1629,6 +1655,9 @@ type Mutation {
1629
1655
 
1630
1656
  """To create new user"""
1631
1657
  createUser(user: NewUser!): User!
1658
+
1659
+ """To create new UserPreference"""
1660
+ createUserPreference(preference: NewUserPreference!): UserPreference!
1632
1661
  deleteAppBinding(id: String!): Boolean!
1633
1662
 
1634
1663
  """To delete appliance"""
@@ -1643,7 +1672,7 @@ type Mutation {
1643
1672
  """To delete multiple ApprovalLines"""
1644
1673
  deleteApprovalLines(ids: [String!]!): Boolean!
1645
1674
  deleteAttachment(id: String!): Boolean!
1646
- deleteAttachmentsByRef(refBys: [String!]!): Boolean!
1675
+ deleteAttachmentsByRef(refBys: [String!]!, refType: String): Boolean!
1647
1676
 
1648
1677
  """To delete AttributeSet"""
1649
1678
  deleteAttributeSet(id: String!): Boolean!
@@ -1700,10 +1729,14 @@ type Mutation {
1700
1729
  """To delete multiple domains (Only superuser is granted this privilege.)"""
1701
1730
  deleteDomains(names: [String!]!): Boolean!
1702
1731
 
1703
- """To delete Employee"""
1732
+ """
1733
+ Deletes an employee record identified by the given ID. Also deletes any attachments associated with the employee.
1734
+ """
1704
1735
  deleteEmployee(id: String!): Boolean!
1705
1736
 
1706
- """To delete multiple Employees"""
1737
+ """
1738
+ Deletes multiple employee records identified by the given IDs. Also deletes any attachments associated with each employee.
1739
+ """
1707
1740
  deleteEmployees(ids: [String!]!): Boolean!
1708
1741
 
1709
1742
  """To delete multiple Entities"""
@@ -1769,6 +1802,12 @@ type Mutation {
1769
1802
  """To delete multiple ApprovalLines for current user"""
1770
1803
  deleteMyApprovalLines(ids: [String!]!): Boolean!
1771
1804
 
1805
+ """To delete my PagePreference"""
1806
+ deleteMyPagePreference(element: String!, page: String!): Boolean!
1807
+
1808
+ """To delete my preference"""
1809
+ deleteMyUserPreference(element: String!, key: String!): Boolean!
1810
+
1772
1811
  """To delete Notification"""
1773
1812
  deleteNotification(id: String!): Boolean!
1774
1813
 
@@ -1787,6 +1826,24 @@ type Mutation {
1787
1826
  """To delete multiple Oauth2Clients"""
1788
1827
  deleteOauth2Clients(ids: [String!]!): Boolean!
1789
1828
 
1829
+ """To delete PDFRelease"""
1830
+ deletePDFRelease(id: String!): Boolean!
1831
+
1832
+ """To delete multiple PDFReleases"""
1833
+ deletePDFReleases(ids: [String!]!): Boolean!
1834
+
1835
+ """To delete PDFTemplate"""
1836
+ deletePDFTemplate(id: String!): Boolean!
1837
+
1838
+ """To delete multiple PDFTemplates"""
1839
+ deletePDFTemplates(ids: [String!]!): Boolean!
1840
+
1841
+ """To delete PagePreference"""
1842
+ deletePagePreference(id: String!): Boolean!
1843
+
1844
+ """To delete multiple PagePreferences"""
1845
+ deletePagePreferences(ids: [String!]!): Boolean!
1846
+
1790
1847
  """To delete multiple partnerSettings"""
1791
1848
  deletePartnerSettings(ids: [String!]!): Boolean!
1792
1849
 
@@ -1850,10 +1907,18 @@ type Mutation {
1850
1907
  """To delete a user"""
1851
1908
  deleteUser(email: EmailAddress!): Boolean!
1852
1909
 
1910
+ """To delete UserPreference"""
1911
+ deleteUserPreference(id: String!): Boolean!
1912
+
1913
+ """To delete multiple UserPreferences"""
1914
+ deleteUserPreferences(ids: [String!]!): Boolean!
1915
+
1853
1916
  """To delete some users"""
1854
1917
  deleteUsers(emails: [String!]!): Boolean!
1855
1918
 
1856
- """To detach a contact from Employee"""
1919
+ """
1920
+ Detaches an existing contact from an employee. The employee is identified by their ID.
1921
+ """
1857
1922
  detachContact(id: String!): Employee!
1858
1923
 
1859
1924
  """To disconnect a connection"""
@@ -1895,7 +1960,9 @@ type Mutation {
1895
1960
  """To import multiple Departments"""
1896
1961
  importDepartments(departments: [DepartmentPatch!]!): Boolean!
1897
1962
 
1898
- """To import multiple Employees"""
1963
+ """
1964
+ Imports multiple employee records into the system. Each employee record must be provided in the EmployeePatch format.
1965
+ """
1899
1966
  importEmployees(employees: [EmployeePatch!]!): Boolean!
1900
1967
 
1901
1968
  """To import multiple MenuButtons"""
@@ -1922,6 +1989,12 @@ type Mutation {
1922
1989
  """To import multiple Oauth2Clients"""
1923
1990
  importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
1924
1991
 
1992
+ """To import multiple PDFReleases"""
1993
+ importPDFReleases(pdfReleases: [PDFReleasePatch!]!): Boolean!
1994
+
1995
+ """To import multiple PDFTemplates"""
1996
+ importPDFTemplates(pdfTemplates: [PDFTemplatePatch!]!): Boolean!
1997
+
1925
1998
  """To import multiple scenarios"""
1926
1999
  importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
1927
2000
 
@@ -1969,6 +2042,14 @@ type Mutation {
1969
2042
  visibility: String!
1970
2043
  ): BoardTemplate!
1971
2044
 
2045
+ """
2046
+ Registers an existing employee as a system user, granting them access to the system. The employee is identified by their ID.
2047
+ """
2048
+ registerEmployeeAsSystemUser(
2049
+ """Employee Id"""
2050
+ employeeId: String!
2051
+ ): Boolean!
2052
+
1972
2053
  """To release a Board"""
1973
2054
  releaseBoard(id: String!): Board!
1974
2055
  renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
@@ -1985,7 +2066,7 @@ type Mutation {
1985
2066
  """
1986
2067
  To run new scenario instance and will return the result after the scenario stop.
1987
2068
  """
1988
- runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
2069
+ runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceRunResult!
1989
2070
  sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
1990
2071
  singleUpload(file: Upload!): Attachment!
1991
2072
 
@@ -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
- """To modify Employee information"""
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
- """To modify multiple Employees' information"""
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
 
@@ -2221,6 +2324,9 @@ type Mutation {
2221
2324
  """To modify user information"""
2222
2325
  updateUser(email: EmailAddress!, patch: UserPatch!): User!
2223
2326
 
2327
+ """To modify UserPreference information"""
2328
+ updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
2329
+
2224
2330
  """To update roles for a user"""
2225
2331
  updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
2226
2332
  }
@@ -2259,6 +2365,7 @@ input NewAttachment {
2259
2365
  file: Upload!
2260
2366
  refBy: String
2261
2367
  refType: String
2368
+ tags: Object
2262
2369
  }
2263
2370
 
2264
2371
  input NewAttributeSet {
@@ -2303,12 +2410,14 @@ input NewCommonCode {
2303
2410
  input NewCommonCodeDetail {
2304
2411
  commonCode: ObjectRef!
2305
2412
  description: String
2413
+ labels: Object
2306
2414
  name: String!
2307
2415
  rank: Float!
2308
2416
  }
2309
2417
 
2310
2418
  input NewConnection {
2311
2419
  description: String
2420
+ edge: ObjectRef
2312
2421
  endpoint: String
2313
2422
  name: String!
2314
2423
  params: String
@@ -2341,8 +2450,9 @@ input NewDepartment {
2341
2450
  input NewEmployee {
2342
2451
  active: Boolean
2343
2452
  alias: String
2453
+ contact: ObjectRefForContact
2344
2454
  controlNo: String!
2345
- department: ObjectRef
2455
+ department: ObjectRefForDepartment
2346
2456
  extension: String
2347
2457
  hiredOn: String
2348
2458
  jobPosition: String
@@ -2450,6 +2560,7 @@ input NewMenu {
2450
2560
  name: String!
2451
2561
  pagination: Boolean
2452
2562
  parent: ObjectRef
2563
+ privilege: PrivilegeInput
2453
2564
  rank: Int
2454
2565
  resourceId: String
2455
2566
  resourceName: 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!
@@ -2666,6 +2806,7 @@ input NewScenario {
2666
2806
  privilege: PrivilegeInput
2667
2807
  schedule: String
2668
2808
  timezone: String
2809
+ ttl: Float
2669
2810
  type: String
2670
2811
  }
2671
2812
 
@@ -2677,12 +2818,34 @@ input NewSetting {
2677
2818
  }
2678
2819
 
2679
2820
  input NewStateRegister {
2821
+ """Description of the state register"""
2680
2822
  description: String
2823
+
2824
+ """Group name for the state register"""
2825
+ group: String
2826
+
2827
+ """Name of the state register"""
2681
2828
  name: String!
2829
+
2830
+ """Number of decimal places if the state is a number type"""
2831
+ place: String
2832
+
2833
+ """
2834
+ Reference to an external entity or data, used as a flexible foreign key
2835
+ """
2682
2836
  refBy: String
2837
+
2838
+ """Current state value"""
2683
2839
  state: Object
2840
+
2841
+ """Time to live for the state value in seconds"""
2684
2842
  ttl: Int
2843
+
2844
+ """Type of the state"""
2685
2845
  type: String
2846
+
2847
+ """Unit of the state value"""
2848
+ unit: String
2686
2849
  }
2687
2850
 
2688
2851
  input NewTerminology {
@@ -2719,12 +2882,18 @@ input NewUserByDomainWizardInput {
2719
2882
  roles: [NewRole!]!
2720
2883
  }
2721
2884
 
2885
+ input NewUserPreference {
2886
+ key: String!
2887
+ preference: Object!
2888
+ user: ObjectRef!
2889
+ }
2890
+
2722
2891
  """Entity for Notification"""
2723
2892
  type Notification {
2724
2893
  body: String
2725
2894
  createdAt: DateTimeISO
2726
2895
  creator: User
2727
- domain: Domain
2896
+ domain: Domain!
2728
2897
  id: ID!
2729
2898
  image: String
2730
2899
  owner: User
@@ -2758,7 +2927,7 @@ type NotificationRule {
2758
2927
  creator: User
2759
2928
  deletedAt: DateTimeISO
2760
2929
  description: String
2761
- domain: Domain
2930
+ domain: Domain!
2762
2931
  id: ID!
2763
2932
  name: String
2764
2933
 
@@ -2815,7 +2984,7 @@ type Oauth2Client {
2815
2984
  createdAt: DateTimeISO
2816
2985
  creator: User
2817
2986
  description: String
2818
- domain: Domain
2987
+ domain: Domain!
2819
2988
  expires: DateTimeISO
2820
2989
  grantType: String
2821
2990
  icon: String
@@ -2886,6 +3055,34 @@ input ObjectRefApprovalLineOwnerType {
2886
3055
  name: String
2887
3056
  }
2888
3057
 
3058
+ input ObjectRefForContact {
3059
+ address: String
3060
+
3061
+ """Field description"""
3062
+ description: String
3063
+ email: EmailAddress
3064
+
3065
+ """Field id"""
3066
+ id: ID!
3067
+
3068
+ """Field name"""
3069
+ name: String
3070
+ phone: String
3071
+ }
3072
+
3073
+ input ObjectRefForDepartment {
3074
+ controlNo: String
3075
+
3076
+ """Field description"""
3077
+ description: String
3078
+
3079
+ """Field id"""
3080
+ id: ID!
3081
+
3082
+ """Field name"""
3083
+ name: String
3084
+ }
3085
+
2889
3086
  input ObjectRefForEmployee {
2890
3087
  active: Boolean
2891
3088
  alias: String
@@ -2942,18 +3139,123 @@ enum OrgMemberTargetType {
2942
3139
  Role
2943
3140
  }
2944
3141
 
3142
+ """Entity for PDFRelease"""
3143
+ type PDFRelease {
3144
+ active: Boolean
3145
+ createdAt: DateTimeISO
3146
+ creator: User
3147
+ deletedAt: DateTimeISO
3148
+ description: String
3149
+ domain: Domain
3150
+ filePath: String
3151
+ fileUrl: String
3152
+ id: ID!
3153
+ name: String
3154
+ state: String
3155
+ template: PDFTemplate!
3156
+ templateId: String!
3157
+ updatedAt: DateTimeISO
3158
+ updater: User
3159
+ }
3160
+
3161
+ type PDFReleaseList {
3162
+ items: [PDFRelease!]!
3163
+ total: Int!
3164
+ }
3165
+
3166
+ input PDFReleasePatch {
3167
+ active: Boolean
3168
+ cuFlag: String
3169
+ description: String
3170
+ id: ID
3171
+ name: String
3172
+ state: PDFReleaseStatus
3173
+ }
3174
+
3175
+ """state enumeration of a PDFRelease"""
3176
+ enum PDFReleaseStatus {
3177
+ failed
3178
+ published
3179
+ }
3180
+
3181
+ """Entity for PDFTemplate"""
3182
+ type PDFTemplate {
3183
+ active: Boolean
3184
+ content_template: String
3185
+ cover_template: String
3186
+ createdAt: DateTimeISO
3187
+ creator: User
3188
+ description: String
3189
+ domain: Domain
3190
+ footer_template: String
3191
+ header_template: String
3192
+ id: ID!
3193
+ last_template: String
3194
+ name: String
3195
+ page_size: String
3196
+ state: String
3197
+ updatedAt: DateTimeISO
3198
+ updater: User
3199
+ watermark: String
3200
+ }
3201
+
3202
+ type PDFTemplateList {
3203
+ items: [PDFTemplate!]!
3204
+ total: Int!
3205
+ }
3206
+
3207
+ input PDFTemplatePatch {
3208
+ active: Boolean
3209
+ content_template: String
3210
+ cover_template: String
3211
+ cuFlag: String
3212
+ description: String
3213
+ footer_template: String
3214
+ header_template: String
3215
+ id: ID
3216
+ last_template: String
3217
+ name: String
3218
+ page_size: String = "A4"
3219
+ state: PDFTemplateStatus
3220
+ }
3221
+
3222
+ """state enumeration of a PDF Template"""
3223
+ enum PDFTemplateStatus {
3224
+ draft
3225
+ released
3226
+ }
3227
+
3228
+ """Entity for PagePreference"""
3229
+ type PagePreference {
3230
+ createdAt: DateTimeISO
3231
+ creator: User
3232
+ domain: Domain!
3233
+ element: String
3234
+ id: ID!
3235
+ page: String
3236
+ preference: Object
3237
+ updatedAt: DateTimeISO
3238
+ updater: User
3239
+ user: User!
3240
+ }
3241
+
3242
+ type PagePreferenceList {
3243
+ items: [PagePreference!]!
3244
+ total: Int!
3245
+ }
3246
+
2945
3247
  input Pagination {
2946
3248
  limit: Int
2947
3249
  page: Int
2948
3250
  }
2949
3251
 
2950
3252
  type Partner {
2951
- approvedAt: DateTimeISO!
3253
+ approvedAt: DateTimeISO
2952
3254
  approver: User
2953
3255
  domain: Domain!
2954
3256
  id: ID!
2955
3257
  partnerDomain: Domain!
2956
- requestedAt: DateTimeISO!
3258
+ requestedAt: DateTimeISO
2957
3259
  requester: User
2958
3260
  }
2959
3261
 
@@ -2968,7 +3270,7 @@ type PartnerSetting {
2968
3270
  createdAt: DateTimeISO
2969
3271
  creator: User
2970
3272
  description: String
2971
- domain: Domain
3273
+ domain: Domain!
2972
3274
  id: ID!
2973
3275
  name: String
2974
3276
  partnerDomain: Domain
@@ -2993,11 +3295,23 @@ input PartnerSettingPatch {
2993
3295
  value: String
2994
3296
  }
2995
3297
 
3298
+ type PasswordRule {
3299
+ allowRepeat: Boolean
3300
+ digit: Boolean
3301
+ looseCharacterLength: Float
3302
+ lowerCase: Boolean
3303
+ specialCharacter: Boolean
3304
+ tightCharacterLength: Float
3305
+ upperCase: Boolean
3306
+ useLoosePattern: Boolean
3307
+ useTightPattern: Boolean
3308
+ }
3309
+
2996
3310
  """Entity for PayloadLog"""
2997
3311
  type PayloadLog {
2998
3312
  createdAt: DateTimeISO
2999
3313
  creator: User
3000
- domain: Domain
3314
+ domain: Domain!
3001
3315
  endpoint: String!
3002
3316
  id: ID!
3003
3317
  name: String!
@@ -3163,11 +3477,18 @@ type PropertySpec {
3163
3477
  name: String!
3164
3478
  placeholder: String
3165
3479
  property: Object
3480
+ styles: Object
3166
3481
  type: String!
3167
3482
  }
3168
3483
 
3169
3484
  type Query {
3170
3485
  APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
3486
+
3487
+ """To fetch a PDFTemplate"""
3488
+ PDFTemplate(id: String!): PDFTemplate
3489
+
3490
+ """To fetch multiple PDFTemplates"""
3491
+ PDFTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PDFTemplateList!
3171
3492
  appBinding(id: String!): AppBinding!
3172
3493
  appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
3173
3494
 
@@ -3240,19 +3561,25 @@ type Query {
3240
3561
  boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
3241
3562
  chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
3242
3563
 
3243
- """To check if system would provide default password to create new user"""
3564
+ """
3565
+ Checks if the system is configured to provide a default password for new users.
3566
+ """
3244
3567
  checkDefaultPassword: Boolean!
3245
3568
 
3246
- """To check if system would provide default password to create new user"""
3569
+ """
3570
+ Determines whether the system provides a default password when creating a new user.
3571
+ """
3247
3572
  checkResettablePasswordToDefault: Boolean!
3248
3573
 
3249
3574
  """To fetch the preset of role for new user"""
3250
3575
  checkRolePreset: [Role!]!
3251
3576
 
3252
- """To check if current user is belongs to current domain"""
3577
+ """
3578
+ Checks if the current authenticated user belongs to the current domain.
3579
+ """
3253
3580
  checkUserBelongsDomain: Boolean!
3254
3581
 
3255
- """..."""
3582
+ """Checks if a user with the given email address exists in the system."""
3256
3583
  checkUserExistence(email: EmailAddress!): Boolean!
3257
3584
 
3258
3585
  """To fetch common approval lines"""
@@ -3309,10 +3636,17 @@ type Query {
3309
3636
  """To fetch domains with given privilege for user"""
3310
3637
  domainsWithPrivilege(category: String!, privilege: String!): [Domain!]!
3311
3638
 
3312
- """To fetch a Employee"""
3639
+ """To fetch multiple appliance"""
3640
+ edges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
3641
+
3642
+ """
3643
+ Fetches a specific employee by their unique ID. Returns the employee object if found, or null if not found.
3644
+ """
3313
3645
  employee(id: String!): Employee
3314
3646
 
3315
- """To fetch multiple Employees"""
3647
+ """
3648
+ Fetches a list of employees based on provided query parameters. Supports searching by name, control number, and alias.
3649
+ """
3316
3650
  employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
3317
3651
 
3318
3652
  """To fetch multiple Entities"""
@@ -3415,12 +3749,30 @@ type Query {
3415
3749
  myFavorites: [Favorite!]!
3416
3750
  myLoginHistories(limit: Float!): [LoginHistory!]!
3417
3751
 
3752
+ """To fetch my own Menus"""
3753
+ myMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
3754
+
3418
3755
  """To fetch my notifications"""
3419
3756
  myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3420
3757
 
3758
+ """To fetch a User's own PagePreference"""
3759
+ myPageAllPreferences(page: String!): [PagePreference!]
3760
+
3761
+ """To fetch a User's own PagePreference"""
3762
+ myPagePreference(element: String!, page: String!): PagePreference
3763
+
3764
+ """To fetch multiple PagePreferences"""
3765
+ myPagePreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PagePreferenceList!
3766
+
3421
3767
  """To fetch roles of current user"""
3422
3768
  myRoles: [Role!]!
3423
3769
 
3770
+ """To fetch a User's own UserPreference"""
3771
+ myUserPreference(element: String!, key: String!): UserPreference
3772
+
3773
+ """To fetch multiple UserPreferences"""
3774
+ myUserPreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserPreferenceList!
3775
+
3424
3776
  """To fetch a Notification"""
3425
3777
  notification(id: String!): Notification
3426
3778
 
@@ -3439,6 +3791,9 @@ type Query {
3439
3791
  """To fetch multiple Oauth2Clients"""
3440
3792
  oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
3441
3793
 
3794
+ """To fetch a PagePreference"""
3795
+ pagePreference(id: String!): PagePreference
3796
+
3442
3797
  """To fetch specific domain's CommonCodes by given name"""
3443
3798
  partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
3444
3799
 
@@ -3449,12 +3804,23 @@ type Query {
3449
3804
  partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
3450
3805
  partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
3451
3806
 
3807
+ """
3808
+ Retrieves the current password rule configuration for the system, such as required character types and minimum length.
3809
+ """
3810
+ passwordRule: PasswordRule!
3811
+
3452
3812
  """To fetch a PayloadLog"""
3453
3813
  payloadLog(id: String!): PayloadLog!
3454
3814
 
3455
3815
  """To fetch multiple PayloadLogs"""
3456
3816
  payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
3457
3817
 
3818
+ """To fetch a PDFRelease"""
3819
+ pdfRelease(id: String!): PDFRelease
3820
+
3821
+ """To fetch multiple PDFReleases"""
3822
+ pdfReleases(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PDFReleaseList!
3823
+
3458
3824
  """To fetch a PlayGroup"""
3459
3825
  playGroup(id: String!): PlayGroup
3460
3826
 
@@ -3464,6 +3830,9 @@ type Query {
3464
3830
  """To fetch multiple PlayGroups"""
3465
3831
  playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
3466
3832
 
3833
+ """To fetch a UserPreference"""
3834
+ preference(id: String!): UserPreference
3835
+
3467
3836
  """To fetch a PrinterDevice"""
3468
3837
  printerDevice(id: String!): PrinterDevice!
3469
3838
 
@@ -3543,7 +3912,7 @@ type Query {
3543
3912
  """To fetch multiple Themes"""
3544
3913
  themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
3545
3914
 
3546
- """To fetch user"""
3915
+ """Fetches a user by their email address within the current domain."""
3547
3916
  user(email: EmailAddress!): User!
3548
3917
 
3549
3918
  """To fetch Menus by role"""
@@ -3552,7 +3921,9 @@ type Query {
3552
3921
  """To fetch roles of a user"""
3553
3922
  userRoles(userId: String!): [UserRole!]!
3554
3923
 
3555
- """To fetch multiple users"""
3924
+ """
3925
+ Fetches a list of users based on provided search parameters within the current domain.
3926
+ """
3556
3927
  users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
3557
3928
  vendors: [Domain!]!
3558
3929
  }
@@ -3569,7 +3940,7 @@ type Role {
3569
3940
  description: String
3570
3941
  domain: Domain!
3571
3942
  id: ID!
3572
- name: String!
3943
+ name: String
3573
3944
  privileges: [Privilege!]
3574
3945
  updatedAt: DateTimeISO
3575
3946
  updater: User
@@ -3605,7 +3976,7 @@ type Scenario {
3605
3976
  createdAt: DateTimeISO
3606
3977
  creator: User
3607
3978
  description: String
3608
- domain: Domain
3979
+ domain: Domain!
3609
3980
  id: ID!
3610
3981
  instances: [ScenarioInstance!]
3611
3982
  name: String!
@@ -3619,6 +3990,7 @@ type Scenario {
3619
3990
  state: String
3620
3991
  steps: [Step!]
3621
3992
  timezone: String
3993
+ ttl: Float
3622
3994
  type: String
3623
3995
  updatedAt: DateTimeISO
3624
3996
  updater: User
@@ -3651,6 +4023,17 @@ type ScenarioInstanceProgress {
3651
4023
  steps: Int!
3652
4024
  }
3653
4025
 
4026
+ type ScenarioInstanceRunResult {
4027
+ data: Object
4028
+ instanceName: String
4029
+ message: String
4030
+ result: Object
4031
+ scenarioName: String
4032
+ state: String
4033
+ timestamp: DateTimeISO
4034
+ variables: Object
4035
+ }
4036
+
3654
4037
  type ScenarioInstanceState {
3655
4038
  data: Object
3656
4039
  domain: Domain
@@ -3687,6 +4070,7 @@ input ScenarioPatch {
3687
4070
  schedule: String
3688
4071
  steps: [StepPatch!]
3689
4072
  timezone: String
4073
+ ttl: Float
3690
4074
  type: String
3691
4075
  }
3692
4076
 
@@ -3701,7 +4085,7 @@ type Setting {
3701
4085
  createdAt: DateTimeISO
3702
4086
  creator: User
3703
4087
  description: String
3704
- domain: Domain
4088
+ domain: Domain!
3705
4089
  id: ID!
3706
4090
  name: String!
3707
4091
  updatedAt: DateTimeISO
@@ -3735,36 +4119,113 @@ input Sorting {
3735
4119
 
3736
4120
  """Entity for StateRegister"""
3737
4121
  type StateRegister {
4122
+ """Creation time of the state register"""
3738
4123
  createdAt: DateTimeISO
4124
+
4125
+ """User who created the state register"""
3739
4126
  creator: User
4127
+
4128
+ """ID of the user who created the state register"""
4129
+ creatorId: String
4130
+
4131
+ """Description of the state register"""
3740
4132
  description: String
3741
- domain: Domain
4133
+
4134
+ """Associated domain for the state register"""
4135
+ domain: Domain!
4136
+
4137
+ """ID of the associated domain"""
4138
+ domainId: String!
4139
+
4140
+ """Group name for the state register"""
4141
+ group: String
3742
4142
  id: ID!
4143
+
4144
+ """Name of the state register"""
3743
4145
  name: String
4146
+
4147
+ """Number of decimal places if the state is a number type"""
4148
+ place: String
4149
+
4150
+ """
4151
+ Reference to an external entity or data, used as a flexible foreign key
4152
+ """
3744
4153
  refBy: String
4154
+
4155
+ """Current state value"""
3745
4156
  state: Object
4157
+
4158
+ """Time to live for the state value in seconds"""
3746
4159
  ttl: Int
4160
+
4161
+ """Type of the state"""
3747
4162
  type: String
4163
+
4164
+ """Unit of the state value"""
4165
+ unit: String
4166
+
4167
+ """Last update time of the state register"""
3748
4168
  updatedAt: DateTimeISO
4169
+
4170
+ """User who last updated the state register"""
3749
4171
  updater: User
4172
+
4173
+ """ID of the user who last updated the state register"""
4174
+ updaterId: String
4175
+
4176
+ """User who wrote the state"""
3750
4177
  writer: User
4178
+
4179
+ """ID of the user who wrote the state"""
4180
+ writerId: String
4181
+
4182
+ """Time when the state was recorded"""
3751
4183
  wroteAt: DateTimeISO
3752
4184
  }
3753
4185
 
3754
4186
  type StateRegisterList {
4187
+ """List of state registers"""
3755
4188
  items: [StateRegister!]!
4189
+
4190
+ """Total number of state registers"""
3756
4191
  total: Int!
3757
4192
  }
3758
4193
 
3759
4194
  input StateRegisterPatch {
4195
+ """Flag indicating create/update operations"""
3760
4196
  cuFlag: String
4197
+
4198
+ """Description of the state register"""
3761
4199
  description: String
4200
+
4201
+ """Group name for the state register"""
4202
+ group: String
4203
+
4204
+ """ID of the state register"""
3762
4205
  id: ID
4206
+
4207
+ """Name of the state register"""
3763
4208
  name: String
4209
+
4210
+ """Number of decimal places if the state is a number type"""
4211
+ place: String
4212
+
4213
+ """
4214
+ Reference to an external entity or data, used as a flexible foreign key
4215
+ """
3764
4216
  refBy: String
4217
+
4218
+ """Current state value"""
3765
4219
  state: Object
4220
+
4221
+ """Time to live for the state value in seconds"""
3766
4222
  ttl: Int
4223
+
4224
+ """Type of the state"""
3767
4225
  type: String
4226
+
4227
+ """Unit of the state value"""
4228
+ unit: String
3768
4229
  }
3769
4230
 
3770
4231
  type Step {
@@ -3838,6 +4299,7 @@ type TaskTypeList {
3838
4299
  type Terminology {
3839
4300
  category: String!
3840
4301
  createdAt: DateTimeISO
4302
+ creator: User
3841
4303
  description: String
3842
4304
  display: String!
3843
4305
  domain: Domain!
@@ -3845,6 +4307,7 @@ type Terminology {
3845
4307
  locale: String!
3846
4308
  name: String!
3847
4309
  updatedAt: DateTimeISO
4310
+ updater: User
3848
4311
  }
3849
4312
 
3850
4313
  type TerminologyList {
@@ -3853,12 +4316,12 @@ type TerminologyList {
3853
4316
  }
3854
4317
 
3855
4318
  input TerminologyPatch {
3856
- category: String!
4319
+ category: String
3857
4320
  cuFlag: String
3858
4321
  description: String
3859
- display: String!
4322
+ display: String
3860
4323
  id: ID
3861
- locale: String!
4324
+ locale: String
3862
4325
  name: String
3863
4326
  }
3864
4327
 
@@ -3869,7 +4332,7 @@ type Theme {
3869
4332
  creator: User
3870
4333
  deletedAt: DateTimeISO
3871
4334
  description: String
3872
- domain: Domain
4335
+ domain: Domain!
3873
4336
  id: ID!
3874
4337
  name: String
3875
4338
  type: String
@@ -3909,7 +4372,7 @@ type User {
3909
4372
  email: EmailAddress!
3910
4373
  id: ID!
3911
4374
  locale: String
3912
- name: String!
4375
+ name: String
3913
4376
  owner: Boolean
3914
4377
  reference: String
3915
4378
  roles: [Role!]!
@@ -3939,6 +4402,32 @@ input UserPatch {
3939
4402
  userType: String
3940
4403
  }
3941
4404
 
4405
+ """Entity for UserPreference"""
4406
+ type UserPreference {
4407
+ createdAt: DateTimeISO
4408
+ creator: User
4409
+ domain: Domain
4410
+ id: ID!
4411
+ key: String
4412
+ preference: Object
4413
+ updatedAt: DateTimeISO
4414
+ updater: User
4415
+ user: User!
4416
+ }
4417
+
4418
+ type UserPreferenceList {
4419
+ items: [UserPreference!]!
4420
+ total: Int!
4421
+ }
4422
+
4423
+ input UserPreferencePatch {
4424
+ cuFlag: String
4425
+ id: ID
4426
+ key: String!
4427
+ preference: Object!
4428
+ user: ObjectRef!
4429
+ }
4430
+
3942
4431
  type UserRole {
3943
4432
  assigned: Boolean
3944
4433
  description: String
@@ -3950,7 +4439,7 @@ type UserRole {
3950
4439
  type UsersAuthProviders {
3951
4440
  authProvider: AuthProvider
3952
4441
  createdAt: DateTimeISO
3953
- domain: Domain
4442
+ domain: Domain!
3954
4443
  id: ID!
3955
4444
  ssoId: String
3956
4445
  updatedAt: DateTimeISO