@operato/scene-visualizer 1.3.14 → 1.4.0

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 (43) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/db.sqlite +0 -0
  3. package/dist/banner.d.ts +0 -1
  4. package/dist/camera.d.ts +0 -1
  5. package/dist/cube.d.ts +0 -1
  6. package/dist/cylinder.d.ts +0 -1
  7. package/dist/desk.d.ts +0 -1
  8. package/dist/editors/property-editor-gltf-info.d.ts +0 -1
  9. package/dist/gltf-object.d.ts +0 -1
  10. package/dist/light.d.ts +0 -1
  11. package/dist/polygon.d.ts +4 -4
  12. package/dist/rack-table-cell.d.ts +0 -1
  13. package/dist/rack-table.d.ts +0 -1
  14. package/dist/sphere.d.ts +0 -1
  15. package/dist/sprite.d.ts +0 -1
  16. package/dist/stock.d.ts +0 -1
  17. package/dist/stock.js +1 -1
  18. package/dist/stock.js.map +1 -1
  19. package/dist/three-container.d.ts +0 -1
  20. package/dist/three-controls.d.ts +0 -1
  21. package/dist/three-layout.d.ts +0 -1
  22. package/dist/three-space.d.ts +0 -1
  23. package/dist/threed/floor/floor.d.ts +0 -1
  24. package/dist/threed/real-object-gltf.d.ts +0 -1
  25. package/dist/threed/real-object.d.ts +0 -1
  26. package/dist/threed/texture/canvas-texture.d.ts +0 -1
  27. package/dist/threed/three-dimensional-container.d.ts +0 -1
  28. package/dist/visualizer.d.ts +0 -1
  29. package/dist/wall.d.ts +0 -1
  30. package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +13 -3
  31. package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +13 -3
  32. package/logs/application-2025-01-07-10.log +106 -0
  33. package/logs/application-2025-01-07-14.log +4 -0
  34. package/logs/application-2025-01-07-15.log +4 -0
  35. package/logs/connections-2025-01-07-10.log +106 -0
  36. package/logs/connections-2025-01-07-14.log +53 -0
  37. package/logs/connections-2025-01-07-15.log +53 -0
  38. package/package.json +2 -2
  39. package/schema.graphql +670 -87
  40. package/src/stock.ts +1 -1
  41. package/tsconfig.tsbuildinfo +1 -1
  42. package/logs/application-2024-02-05-01.log +0 -6
  43. package/logs/connections-2024-02-05-01.log +0 -41
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
@@ -40,6 +40,7 @@ type AppBinding {
40
40
  updatedAt: DateTimeISO
41
41
  updater: User!
42
42
  userType: String
43
+ username: String
43
44
  usersAuthProviders: [UsersAuthProviders!]
44
45
  }
45
46
 
@@ -133,7 +134,7 @@ type ApprovalLine {
133
134
  createdAt: DateTimeISO
134
135
  creator: User
135
136
  description: String
136
- domain: Domain
137
+ domain: Domain!
137
138
  id: ID!
138
139
  model: [ApprovalLineItem!]
139
140
  name: String
@@ -201,6 +202,7 @@ type Attachment {
201
202
  refBy: String
202
203
  refType: String
203
204
  size: String!
205
+ tags: Object
204
206
  updatedAt: DateTimeISO!
205
207
  updater: User
206
208
  }
@@ -219,6 +221,7 @@ input AttachmentPatch {
219
221
  name: String
220
222
  refBy: String
221
223
  refType: String
224
+ tags: Object
222
225
  }
223
226
 
224
227
  """Entity for AttributeSet"""
@@ -283,11 +286,10 @@ type AuthProvider {
283
286
  clientSecret: String
284
287
  createdAt: DateTimeISO
285
288
  creator: User
286
- domain: Domain
289
+ domain: Domain!
287
290
  id: ID!
288
291
  params: Object
289
292
  privateKey: String
290
- state: String
291
293
  tenantId: String
292
294
  type: String
293
295
  updatedAt: DateTimeISO
@@ -305,6 +307,7 @@ type AuthProviderParameterSpec {
305
307
  name: String!
306
308
  placeholder: String
307
309
  property: Object
310
+ styles: Object
308
311
  type: String!
309
312
  }
310
313
 
@@ -411,7 +414,7 @@ type BoardTemplate {
411
414
  createdAt: DateTimeISO
412
415
  creator: User
413
416
  description: String
414
- domain: Domain
417
+ domain: Domain!
415
418
  id: ID!
416
419
  mine: Boolean!
417
420
  model: String
@@ -462,7 +465,7 @@ type CommonCode {
462
465
  creator: User
463
466
  description: String
464
467
  details: [CommonCodeDetail!]!
465
- domain: Domain
468
+ domain: Domain!
466
469
  id: ID!
467
470
  name: String!
468
471
  updatedAt: DateTimeISO
@@ -475,8 +478,9 @@ type CommonCodeDetail {
475
478
  createdAt: DateTimeISO
476
479
  creator: User
477
480
  description: String
478
- domain: Domain
481
+ domain: Domain!
479
482
  id: ID!
483
+ labels: Object
480
484
  name: String!
481
485
  rank: Float
482
486
  updatedAt: DateTimeISO
@@ -493,6 +497,7 @@ input CommonCodeDetailPatch {
493
497
  cuFlag: String
494
498
  description: String
495
499
  id: ID
500
+ labels: Object
496
501
  name: String
497
502
  rank: Float
498
503
  }
@@ -516,6 +521,7 @@ type Connection {
516
521
  creator: User
517
522
  description: String
518
523
  domain: Domain
524
+ edge: Appliance
519
525
  endpoint: String
520
526
  id: ID!
521
527
  name: String!
@@ -535,6 +541,7 @@ input ConnectionPatch {
535
541
  active: Boolean
536
542
  cuFlag: String
537
543
  description: String
544
+ edge: ObjectRef
538
545
  endpoint: String
539
546
  id: ID
540
547
  name: String
@@ -544,7 +551,8 @@ input ConnectionPatch {
544
551
 
545
552
  type ConnectionState {
546
553
  description: String
547
- domain: Domain
554
+ domain: Domain!
555
+ edge: Appliance
548
556
  id: String
549
557
  name: String
550
558
  state: String
@@ -573,7 +581,7 @@ type Contact {
573
581
  creator: User
574
582
  deletedAt: DateTimeISO
575
583
  department: String
576
- domain: Domain
584
+ domain: Domain!
577
585
  email: EmailAddress
578
586
  id: ID!
579
587
  items: [ContactItem!]
@@ -644,7 +652,7 @@ type Department {
644
652
  creator: User
645
653
  deletedAt: DateTimeISO
646
654
  description: String
647
- domain: Domain
655
+ domain: Domain!
648
656
  extension: String
649
657
  id: ID!
650
658
  manager: Employee
@@ -742,19 +750,23 @@ scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/in
742
750
  """Entity for Employee"""
743
751
  type Employee {
744
752
  active: Boolean
745
- address: String!
753
+ address: String
746
754
  alias: String
747
755
  approvalLines: [ApprovalLine!]!
756
+ bankAccount: String
757
+ bankName: String
748
758
  contact: Contact
749
759
  controlNo: String!
750
760
  createdAt: DateTimeISO
751
761
  creator: User
752
762
  deletedAt: DateTimeISO
753
763
  department: Department
754
- domain: Domain
764
+ domain: Domain!
755
765
  email: EmailAddress
766
+ emergencyContact: String
767
+ emergencyContactPhone: String
756
768
  extension: String
757
- hiredOn: String
769
+ hiredOn: DateTimeISO
758
770
  id: ID!
759
771
  jobPosition: String
760
772
  jobResponsibility: String
@@ -764,7 +776,7 @@ type Employee {
764
776
  phone: String
765
777
  photo: String
766
778
  profile: Profile
767
- retiredAt: String
779
+ retiredOn: DateTimeISO
768
780
  supervises: [Employee!]!
769
781
  supervisor: Employee
770
782
  type: String
@@ -782,17 +794,22 @@ type EmployeeList {
782
794
  input EmployeePatch {
783
795
  active: Boolean
784
796
  alias: String
797
+ bankAccount: String
798
+ bankName: String
799
+ contact: ObjectRefForContact
785
800
  controlNo: String
786
801
  cuFlag: String
787
- department: ObjectRef
788
- hiredOn: String
802
+ department: ObjectRefForDepartment
803
+ emergencyContact: String
804
+ emergencyContactPhone: String
805
+ hiredOn: DateTimeISO
789
806
  id: ID
790
807
  jobPosition: String
791
808
  jobResponsibility: String
792
809
  name: String
793
810
  note: String
794
811
  photo: Upload
795
- retiredAt: String
812
+ retiredOn: DateTimeISO
796
813
  supervisor: ObjectRefForEmployee
797
814
  type: EmployeeType
798
815
  user: ObjectRefForUser
@@ -817,7 +834,7 @@ type Entity {
817
834
  dataProp: String
818
835
  delStrategy: String
819
836
  description: String
820
- domain: Domain
837
+ domain: Domain!
821
838
  extEntity: Boolean
822
839
  fixedColumns: Float
823
840
  id: ID!
@@ -842,7 +859,7 @@ type EntityColumn {
842
859
  creator: User
843
860
  defVal: String
844
861
  description: String
845
- domain: Domain
862
+ domain: Domain!
846
863
  entity: Entity!
847
864
  formEditor: String
848
865
  formFormat: String
@@ -1015,7 +1032,7 @@ type Font {
1015
1032
  active: Boolean!
1016
1033
  createdAt: DateTimeISO
1017
1034
  creator: User
1018
- domain: Domain
1035
+ domain: Domain!
1019
1036
  files: [Attachment!]
1020
1037
  id: ID!
1021
1038
  name: String!
@@ -1138,14 +1155,14 @@ type LoginHistoryList {
1138
1155
  type Menu {
1139
1156
  buttons: [MenuButton!]!
1140
1157
  category: String
1141
- children: [Menu!]!
1158
+ children(permittedOnly: Boolean! = false): [Menu!]!
1142
1159
  columns: [MenuColumn!]!
1143
1160
  createdAt: DateTimeISO
1144
1161
  creator: User
1145
1162
  description: String
1146
1163
  detailFormId: String
1147
1164
  detailLayout: String
1148
- domain: Domain
1165
+ domain: Domain!
1149
1166
  fixedColumns: Float
1150
1167
  gridSaveUrl: String
1151
1168
  hiddenFlag: Boolean
@@ -1178,7 +1195,7 @@ type MenuButton {
1178
1195
  auth: String
1179
1196
  createdAt: DateTimeISO
1180
1197
  creator: User
1181
- domain: Domain
1198
+ domain: Domain!
1182
1199
  icon: String
1183
1200
  id: ID!
1184
1201
  logic: String
@@ -1213,7 +1230,7 @@ type MenuColumn {
1213
1230
  creator: User
1214
1231
  defVal: String
1215
1232
  description: String
1216
- domain: Domain
1233
+ domain: Domain!
1217
1234
  extField: Boolean
1218
1235
  formEditor: String
1219
1236
  formFormat: String
@@ -1302,7 +1319,7 @@ type MenuDetail {
1302
1319
  creator: User
1303
1320
  customView: String
1304
1321
  dataProp: String
1305
- domain: Domain
1322
+ domain: Domain!
1306
1323
  entityId: String
1307
1324
  id: ID!
1308
1325
  masterField: String
@@ -1319,7 +1336,7 @@ type MenuDetail {
1319
1336
  type MenuDetailButton {
1320
1337
  createdAt: DateTimeISO
1321
1338
  creator: User
1322
- domain: Domain
1339
+ domain: Domain!
1323
1340
  icon: String
1324
1341
  id: ID!
1325
1342
  logic: String
@@ -1353,7 +1370,7 @@ type MenuDetailColumn {
1353
1370
  creator: User
1354
1371
  defVal: String
1355
1372
  description: String
1356
- domain: Domain
1373
+ domain: Domain!
1357
1374
  extField: Boolean
1358
1375
  formEditor: String
1359
1376
  formFormat: String
@@ -1493,12 +1510,17 @@ input MenuPatch {
1493
1510
 
1494
1511
  type Mutation {
1495
1512
  """To activate user"""
1496
- activateUser(userId: String!): Boolean!
1513
+ activateUser(username: String!): Boolean!
1497
1514
 
1498
- """To attach a contact on Employee"""
1515
+ """
1516
+ Attaches an existing contact to an employee. The contact is identified by its ID and the employee is identified by their ID.
1517
+ """
1499
1518
  attachContact(contactId: String!, id: String!): Employee!
1500
1519
  cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
1501
1520
 
1521
+ """To clear translations cache"""
1522
+ clearTranslationsCache: Boolean!
1523
+
1502
1524
  """To clone a Board from existing Board"""
1503
1525
  cloneBoard(id: String!, patch: BoardPatch!, targetGroupId: String, targetSubdomain: String!): Board!
1504
1526
 
@@ -1549,7 +1571,9 @@ type Mutation {
1549
1571
  """To create domain (Only superuser is granted this privilege.)"""
1550
1572
  createDomain(domainInput: DomainPatch!): Domain!
1551
1573
 
1552
- """To create new Employee"""
1574
+ """
1575
+ 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.
1576
+ """
1553
1577
  createEmployee(employee: NewEmployee!): Employee!
1554
1578
 
1555
1579
  """To create new Entity"""
@@ -1588,6 +1612,9 @@ type Mutation {
1588
1612
  """To create new ApprovalLine for current user"""
1589
1613
  createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1590
1614
 
1615
+ """To create my new PagePreference"""
1616
+ createMyPagePreference(pagePreference: NewPagePreference!): PagePreference!
1617
+
1591
1618
  """To create new Notification"""
1592
1619
  createNotification(notification: NewNotification!): Notification!
1593
1620
 
@@ -1597,6 +1624,12 @@ type Mutation {
1597
1624
  """To create new Oauth2Client"""
1598
1625
  createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
1599
1626
 
1627
+ """To create new PDFRelease"""
1628
+ createPDFRelease(pdfRelease: NewPDFRelease!): PDFRelease!
1629
+
1630
+ """To create new PDFTemplate"""
1631
+ createPDFTemplate(pdfTemplate: NewPDFTemplate!): PDFTemplate!
1632
+
1600
1633
  """To create new PayloadLog"""
1601
1634
  createPayloadLog(payloadLog: NewPayloadLog!): PayloadLog!
1602
1635
 
@@ -1629,6 +1662,9 @@ type Mutation {
1629
1662
 
1630
1663
  """To create new user"""
1631
1664
  createUser(user: NewUser!): User!
1665
+
1666
+ """To create new UserPreference"""
1667
+ createUserPreference(preference: NewUserPreference!): UserPreference!
1632
1668
  deleteAppBinding(id: String!): Boolean!
1633
1669
 
1634
1670
  """To delete appliance"""
@@ -1643,7 +1679,7 @@ type Mutation {
1643
1679
  """To delete multiple ApprovalLines"""
1644
1680
  deleteApprovalLines(ids: [String!]!): Boolean!
1645
1681
  deleteAttachment(id: String!): Boolean!
1646
- deleteAttachmentsByRef(refBys: [String!]!): Boolean!
1682
+ deleteAttachmentsByRef(refBys: [String!]!, refType: String): Boolean!
1647
1683
 
1648
1684
  """To delete AttributeSet"""
1649
1685
  deleteAttributeSet(id: String!): Boolean!
@@ -1695,15 +1731,19 @@ type Mutation {
1695
1731
  deleteDomain(name: String!): Domain!
1696
1732
 
1697
1733
  """To delete domain user"""
1698
- deleteDomainUser(email: EmailAddress!): Boolean!
1734
+ deleteDomainUser(username: String!): Boolean!
1699
1735
 
1700
1736
  """To delete multiple domains (Only superuser is granted this privilege.)"""
1701
1737
  deleteDomains(names: [String!]!): Boolean!
1702
1738
 
1703
- """To delete Employee"""
1739
+ """
1740
+ Deletes an employee record identified by the given ID. Also deletes any attachments associated with the employee.
1741
+ """
1704
1742
  deleteEmployee(id: String!): Boolean!
1705
1743
 
1706
- """To delete multiple Employees"""
1744
+ """
1745
+ Deletes multiple employee records identified by the given IDs. Also deletes any attachments associated with each employee.
1746
+ """
1707
1747
  deleteEmployees(ids: [String!]!): Boolean!
1708
1748
 
1709
1749
  """To delete multiple Entities"""
@@ -1769,6 +1809,12 @@ type Mutation {
1769
1809
  """To delete multiple ApprovalLines for current user"""
1770
1810
  deleteMyApprovalLines(ids: [String!]!): Boolean!
1771
1811
 
1812
+ """To delete my PagePreference"""
1813
+ deleteMyPagePreference(element: String!, page: String!): Boolean!
1814
+
1815
+ """To delete my preference"""
1816
+ deleteMyUserPreference(element: String!, key: String!): Boolean!
1817
+
1772
1818
  """To delete Notification"""
1773
1819
  deleteNotification(id: String!): Boolean!
1774
1820
 
@@ -1787,6 +1833,24 @@ type Mutation {
1787
1833
  """To delete multiple Oauth2Clients"""
1788
1834
  deleteOauth2Clients(ids: [String!]!): Boolean!
1789
1835
 
1836
+ """To delete PDFRelease"""
1837
+ deletePDFRelease(id: String!): Boolean!
1838
+
1839
+ """To delete multiple PDFReleases"""
1840
+ deletePDFReleases(ids: [String!]!): Boolean!
1841
+
1842
+ """To delete PDFTemplate"""
1843
+ deletePDFTemplate(id: String!): Boolean!
1844
+
1845
+ """To delete multiple PDFTemplates"""
1846
+ deletePDFTemplates(ids: [String!]!): Boolean!
1847
+
1848
+ """To delete PagePreference"""
1849
+ deletePagePreference(id: String!): Boolean!
1850
+
1851
+ """To delete multiple PagePreferences"""
1852
+ deletePagePreferences(ids: [String!]!): Boolean!
1853
+
1790
1854
  """To delete multiple partnerSettings"""
1791
1855
  deletePartnerSettings(ids: [String!]!): Boolean!
1792
1856
 
@@ -1848,12 +1912,20 @@ type Mutation {
1848
1912
  deleteThemes(ids: [String!]!): Boolean!
1849
1913
 
1850
1914
  """To delete a user"""
1851
- deleteUser(email: EmailAddress!): Boolean!
1915
+ deleteUser(username: String!): Boolean!
1916
+
1917
+ """To delete UserPreference"""
1918
+ deleteUserPreference(id: String!): Boolean!
1919
+
1920
+ """To delete multiple UserPreferences"""
1921
+ deleteUserPreferences(ids: [String!]!): Boolean!
1852
1922
 
1853
1923
  """To delete some users"""
1854
- deleteUsers(emails: [String!]!): Boolean!
1924
+ deleteUsers(usernames: [String!]!): Boolean!
1855
1925
 
1856
- """To detach a contact from Employee"""
1926
+ """
1927
+ Detaches an existing contact from an employee. The employee is identified by their ID.
1928
+ """
1857
1929
  detachContact(id: String!): Employee!
1858
1930
 
1859
1931
  """To disconnect a connection"""
@@ -1895,7 +1967,9 @@ type Mutation {
1895
1967
  """To import multiple Departments"""
1896
1968
  importDepartments(departments: [DepartmentPatch!]!): Boolean!
1897
1969
 
1898
- """To import multiple Employees"""
1970
+ """
1971
+ Imports multiple employee records into the system. Each employee record must be provided in the EmployeePatch format.
1972
+ """
1899
1973
  importEmployees(employees: [EmployeePatch!]!): Boolean!
1900
1974
 
1901
1975
  """To import multiple MenuButtons"""
@@ -1922,6 +1996,12 @@ type Mutation {
1922
1996
  """To import multiple Oauth2Clients"""
1923
1997
  importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
1924
1998
 
1999
+ """To import multiple PDFReleases"""
2000
+ importPDFReleases(pdfReleases: [PDFReleasePatch!]!): Boolean!
2001
+
2002
+ """To import multiple PDFTemplates"""
2003
+ importPDFTemplates(pdfTemplates: [PDFTemplatePatch!]!): Boolean!
2004
+
1925
2005
  """To import multiple scenarios"""
1926
2006
  importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
1927
2007
 
@@ -1935,11 +2015,11 @@ type Mutation {
1935
2015
  importThemes(themes: [ThemePatch!]!): Boolean!
1936
2016
 
1937
2017
  """To inactivate user"""
1938
- inactivateUser(userId: String!): Boolean!
2018
+ inactivateUser(username: String!): Boolean!
1939
2019
  inviteCustomer(customerDomainName: String!): Boolean!
1940
2020
 
1941
2021
  """To invite new user"""
1942
- inviteUser(email: EmailAddress!): Boolean!
2022
+ inviteUser(username: String!): Boolean!
1943
2023
 
1944
2024
  """To make the board to join the group"""
1945
2025
  joinGroup(boardIds: [String!]!, id: String!): Group!
@@ -1969,6 +2049,15 @@ type Mutation {
1969
2049
  visibility: String!
1970
2050
  ): BoardTemplate!
1971
2051
 
2052
+ """
2053
+ Registers an existing employee as a system user, granting them access to the system. The employee is identified by their ID.
2054
+ """
2055
+ registerEmployeeAsSystemUser(
2056
+ """Employee Id"""
2057
+ employeeId: String!
2058
+ ): Boolean!
2059
+ registerSchedule(schedule: NewSchedule!): ID!
2060
+
1972
2061
  """To release a Board"""
1973
2062
  releaseBoard(id: String!): Board!
1974
2063
  renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
@@ -1977,7 +2066,7 @@ type Mutation {
1977
2066
  reorderPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
1978
2067
 
1979
2068
  """To reset password to default"""
1980
- resetPasswordToDefault(userId: String!): Boolean!
2069
+ resetPasswordToDefault(username: String!): Boolean!
1981
2070
 
1982
2071
  """To revert Board version"""
1983
2072
  revertBoardVersion(id: String!, version: Float!): Board!
@@ -1985,7 +2074,7 @@ type Mutation {
1985
2074
  """
1986
2075
  To run new scenario instance and will return the result after the scenario stop.
1987
2076
  """
1988
- runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
2077
+ runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceRunResult!
1989
2078
  sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
1990
2079
  singleUpload(file: Upload!): Attachment!
1991
2080
 
@@ -2017,7 +2106,8 @@ type Mutation {
2017
2106
  terminateContract(partnerName: String!): Boolean!
2018
2107
 
2019
2108
  """To transfer owner of domain"""
2020
- transferOwner(email: EmailAddress!): Boolean!
2109
+ transferOwner(username: String!): Boolean!
2110
+ unregisterSchedule(handle: ID!): Boolean!
2021
2111
  updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
2022
2112
  updateApplication(id: String!, patch: ApplicationPatch!): Application!
2023
2113
 
@@ -2058,7 +2148,9 @@ type Mutation {
2058
2148
  """To update multiple domains (Only superuser is granted this privilege.)"""
2059
2149
  updateDomains(patches: [DomainPatch!]!): Boolean!
2060
2150
 
2061
- """To modify Employee information"""
2151
+ """
2152
+ 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.
2153
+ """
2062
2154
  updateEmployee(id: String!, patch: EmployeePatch!): Employee!
2063
2155
 
2064
2156
  """To modify Entity' information"""
@@ -2113,7 +2205,9 @@ type Mutation {
2113
2205
  """To modify multiple Departments' information"""
2114
2206
  updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
2115
2207
 
2116
- """To modify multiple Employees' information"""
2208
+ """
2209
+ 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".
2210
+ """
2117
2211
  updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
2118
2212
 
2119
2213
  """To modify multiple Entitys' information"""
@@ -2134,6 +2228,12 @@ type Mutation {
2134
2228
  """To modify multiple NotificationRules' information"""
2135
2229
  updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
2136
2230
 
2231
+ """To modify multiple PDFReleases' information"""
2232
+ updateMultiplePDFRelease(patches: [PDFReleasePatch!]!): [PDFRelease!]!
2233
+
2234
+ """To modify multiple PDFTemplates' information"""
2235
+ updateMultiplePDFTemplate(patches: [PDFTemplatePatch!]!): [PDFTemplate!]!
2236
+
2137
2237
  """To modify multiple PartnerSettings' information"""
2138
2238
  updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
2139
2239
 
@@ -2167,6 +2267,12 @@ type Mutation {
2167
2267
  """To modify ApprovalLine information for current user"""
2168
2268
  updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
2169
2269
 
2270
+ """To create or update my PagePreference"""
2271
+ updateMyPagePreference(element: String!, page: String!, preference: Object!): PagePreference!
2272
+
2273
+ """To create or update my preference"""
2274
+ updateMyUserPreference(key: String!, preference: Object!): UserPreference!
2275
+
2170
2276
  """To modify Notification information"""
2171
2277
  updateNotification(id: String!, patch: NotificationPatch!): Notification!
2172
2278
 
@@ -2176,6 +2282,12 @@ type Mutation {
2176
2282
  """To modify Oauth2Client information"""
2177
2283
  updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
2178
2284
 
2285
+ """To modify PDFRelease information"""
2286
+ updatePDFRelease(id: String!, patch: PDFReleasePatch!): PDFRelease!
2287
+
2288
+ """To modify PDFTemplate information"""
2289
+ updatePDFTemplate(id: String!, patch: PDFTemplatePatch!): PDFTemplate!
2290
+
2179
2291
  """To modify PayloadLog information"""
2180
2292
  updatePayloadLog(id: String!, patch: PayloadLogPatch!): PayloadLog!
2181
2293
 
@@ -2199,6 +2311,7 @@ type Mutation {
2199
2311
 
2200
2312
  """To modify scenario information"""
2201
2313
  updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
2314
+ updateSchedule(schedule: SchedulePatch!): ID!
2202
2315
 
2203
2316
  """To update secure IP list for domain"""
2204
2317
  updateSecureIPList(iplist: Object!): Object
@@ -2221,8 +2334,11 @@ type Mutation {
2221
2334
  """To modify user information"""
2222
2335
  updateUser(email: EmailAddress!, patch: UserPatch!): User!
2223
2336
 
2337
+ """To modify UserPreference information"""
2338
+ updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
2339
+
2224
2340
  """To update roles for a user"""
2225
- updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
2341
+ updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, username: String!): User!
2226
2342
  }
2227
2343
 
2228
2344
  input NewAppliance {
@@ -2259,6 +2375,7 @@ input NewAttachment {
2259
2375
  file: Upload!
2260
2376
  refBy: String
2261
2377
  refType: String
2378
+ tags: Object
2262
2379
  }
2263
2380
 
2264
2381
  input NewAttributeSet {
@@ -2303,12 +2420,14 @@ input NewCommonCode {
2303
2420
  input NewCommonCodeDetail {
2304
2421
  commonCode: ObjectRef!
2305
2422
  description: String
2423
+ labels: Object
2306
2424
  name: String!
2307
2425
  rank: Float!
2308
2426
  }
2309
2427
 
2310
2428
  input NewConnection {
2311
2429
  description: String
2430
+ edge: ObjectRef
2312
2431
  endpoint: String
2313
2432
  name: String!
2314
2433
  params: String
@@ -2341,16 +2460,21 @@ input NewDepartment {
2341
2460
  input NewEmployee {
2342
2461
  active: Boolean
2343
2462
  alias: String
2463
+ bankAccount: String
2464
+ bankName: String
2465
+ contact: ObjectRefForContact
2344
2466
  controlNo: String!
2345
- department: ObjectRef
2467
+ department: ObjectRefForDepartment
2468
+ emergencyContact: String
2469
+ emergencyContactPhone: String
2346
2470
  extension: String
2347
- hiredOn: String
2471
+ hiredOn: DateTimeISO
2348
2472
  jobPosition: String
2349
2473
  jobResponsibility: String
2350
2474
  name: String!
2351
2475
  note: String
2352
2476
  photo: Upload
2353
- retiredAt: String
2477
+ retiredOn: DateTimeISO
2354
2478
  supervisor: ObjectRefForEmployee
2355
2479
  type: EmployeeType
2356
2480
  user: ObjectRefForUser
@@ -2617,6 +2741,35 @@ input NewOauth2Client {
2617
2741
  webhook: String
2618
2742
  }
2619
2743
 
2744
+ input NewPDFRelease {
2745
+ active: Boolean
2746
+ description: String
2747
+ name: String!
2748
+ params: String
2749
+ state: PDFReleaseStatus
2750
+ }
2751
+
2752
+ input NewPDFTemplate {
2753
+ active: Boolean
2754
+ content_template: String
2755
+ cover_template: String
2756
+ description: String
2757
+ footer_template: String
2758
+ header_template: String
2759
+ last_template: String
2760
+ name: String!
2761
+ page_size: String = "A4"
2762
+ state: PDFTemplateStatus
2763
+ watermark: String
2764
+ }
2765
+
2766
+ input NewPagePreference {
2767
+ element: String
2768
+ page: String
2769
+ preference: Object!
2770
+ user: ObjectRef!
2771
+ }
2772
+
2620
2773
  input NewPayloadLog {
2621
2774
  description: String
2622
2775
  name: String!
@@ -2663,12 +2816,22 @@ input NewScenario {
2663
2816
  active: Boolean
2664
2817
  description: String
2665
2818
  name: String!
2666
- privilege: PrivilegeInput
2819
+ role: ObjectRef
2667
2820
  schedule: String
2668
2821
  timezone: String
2822
+ ttl: Float
2669
2823
  type: String
2670
2824
  }
2671
2825
 
2826
+ input NewSchedule {
2827
+ client: ScheduleClientInput!
2828
+ name: String!
2829
+ schedule: String
2830
+ task: ScheduleTaskInput!
2831
+ timezone: String
2832
+ type: String!
2833
+ }
2834
+
2672
2835
  input NewSetting {
2673
2836
  category: String!
2674
2837
  description: String
@@ -2677,12 +2840,34 @@ input NewSetting {
2677
2840
  }
2678
2841
 
2679
2842
  input NewStateRegister {
2843
+ """Description of the state register"""
2680
2844
  description: String
2845
+
2846
+ """Group name for the state register"""
2847
+ group: String
2848
+
2849
+ """Name of the state register"""
2681
2850
  name: String!
2851
+
2852
+ """Number of decimal places if the state is a number type"""
2853
+ place: String
2854
+
2855
+ """
2856
+ Reference to an external entity or data, used as a flexible foreign key
2857
+ """
2682
2858
  refBy: String
2859
+
2860
+ """Current state value"""
2683
2861
  state: Object
2862
+
2863
+ """Time to live for the state value in seconds"""
2684
2864
  ttl: Int
2865
+
2866
+ """Type of the state"""
2685
2867
  type: String
2868
+
2869
+ """Unit of the state value"""
2870
+ unit: String
2686
2871
  }
2687
2872
 
2688
2873
  input NewTerminology {
@@ -2708,6 +2893,7 @@ input NewUser {
2708
2893
  password: String
2709
2894
  roles: [ObjectRef!]
2710
2895
  userType: String
2896
+ username: String!
2711
2897
  }
2712
2898
 
2713
2899
  input NewUserByDomainWizardInput {
@@ -2719,12 +2905,18 @@ input NewUserByDomainWizardInput {
2719
2905
  roles: [NewRole!]!
2720
2906
  }
2721
2907
 
2908
+ input NewUserPreference {
2909
+ key: String!
2910
+ preference: Object!
2911
+ user: ObjectRef!
2912
+ }
2913
+
2722
2914
  """Entity for Notification"""
2723
2915
  type Notification {
2724
2916
  body: String
2725
2917
  createdAt: DateTimeISO
2726
2918
  creator: User
2727
- domain: Domain
2919
+ domain: Domain!
2728
2920
  id: ID!
2729
2921
  image: String
2730
2922
  owner: User
@@ -2758,7 +2950,7 @@ type NotificationRule {
2758
2950
  creator: User
2759
2951
  deletedAt: DateTimeISO
2760
2952
  description: String
2761
- domain: Domain
2953
+ domain: Domain!
2762
2954
  id: ID!
2763
2955
  name: String
2764
2956
 
@@ -2815,7 +3007,7 @@ type Oauth2Client {
2815
3007
  createdAt: DateTimeISO
2816
3008
  creator: User
2817
3009
  description: String
2818
- domain: Domain
3010
+ domain: Domain!
2819
3011
  expires: DateTimeISO
2820
3012
  grantType: String
2821
3013
  icon: String
@@ -2886,6 +3078,34 @@ input ObjectRefApprovalLineOwnerType {
2886
3078
  name: String
2887
3079
  }
2888
3080
 
3081
+ input ObjectRefForContact {
3082
+ address: String
3083
+
3084
+ """Field description"""
3085
+ description: String
3086
+ email: EmailAddress
3087
+
3088
+ """Field id"""
3089
+ id: ID!
3090
+
3091
+ """Field name"""
3092
+ name: String
3093
+ phone: String
3094
+ }
3095
+
3096
+ input ObjectRefForDepartment {
3097
+ controlNo: String
3098
+
3099
+ """Field description"""
3100
+ description: String
3101
+
3102
+ """Field id"""
3103
+ id: ID!
3104
+
3105
+ """Field name"""
3106
+ name: String
3107
+ }
3108
+
2889
3109
  input ObjectRefForEmployee {
2890
3110
  active: Boolean
2891
3111
  alias: String
@@ -2894,7 +3114,7 @@ input ObjectRefForEmployee {
2894
3114
  """Field description"""
2895
3115
  description: String
2896
3116
  email: EmailAddress
2897
- hiredOn: String
3117
+ hiredOn: DateTimeISO
2898
3118
 
2899
3119
  """Field id"""
2900
3120
  id: ID!
@@ -2942,18 +3162,123 @@ enum OrgMemberTargetType {
2942
3162
  Role
2943
3163
  }
2944
3164
 
3165
+ """Entity for PDFRelease"""
3166
+ type PDFRelease {
3167
+ active: Boolean
3168
+ createdAt: DateTimeISO
3169
+ creator: User
3170
+ deletedAt: DateTimeISO
3171
+ description: String
3172
+ domain: Domain
3173
+ filePath: String
3174
+ fileUrl: String
3175
+ id: ID!
3176
+ name: String
3177
+ state: String
3178
+ template: PDFTemplate!
3179
+ templateId: String!
3180
+ updatedAt: DateTimeISO
3181
+ updater: User
3182
+ }
3183
+
3184
+ type PDFReleaseList {
3185
+ items: [PDFRelease!]!
3186
+ total: Int!
3187
+ }
3188
+
3189
+ input PDFReleasePatch {
3190
+ active: Boolean
3191
+ cuFlag: String
3192
+ description: String
3193
+ id: ID
3194
+ name: String
3195
+ state: PDFReleaseStatus
3196
+ }
3197
+
3198
+ """state enumeration of a PDFRelease"""
3199
+ enum PDFReleaseStatus {
3200
+ failed
3201
+ published
3202
+ }
3203
+
3204
+ """Entity for PDFTemplate"""
3205
+ type PDFTemplate {
3206
+ active: Boolean
3207
+ content_template: String
3208
+ cover_template: String
3209
+ createdAt: DateTimeISO
3210
+ creator: User
3211
+ description: String
3212
+ domain: Domain
3213
+ footer_template: String
3214
+ header_template: String
3215
+ id: ID!
3216
+ last_template: String
3217
+ name: String
3218
+ page_size: String
3219
+ state: String
3220
+ updatedAt: DateTimeISO
3221
+ updater: User
3222
+ watermark: String
3223
+ }
3224
+
3225
+ type PDFTemplateList {
3226
+ items: [PDFTemplate!]!
3227
+ total: Int!
3228
+ }
3229
+
3230
+ input PDFTemplatePatch {
3231
+ active: Boolean
3232
+ content_template: String
3233
+ cover_template: String
3234
+ cuFlag: String
3235
+ description: String
3236
+ footer_template: String
3237
+ header_template: String
3238
+ id: ID
3239
+ last_template: String
3240
+ name: String
3241
+ page_size: String = "A4"
3242
+ state: PDFTemplateStatus
3243
+ }
3244
+
3245
+ """state enumeration of a PDF Template"""
3246
+ enum PDFTemplateStatus {
3247
+ draft
3248
+ released
3249
+ }
3250
+
3251
+ """Entity for PagePreference"""
3252
+ type PagePreference {
3253
+ createdAt: DateTimeISO
3254
+ creator: User
3255
+ domain: Domain!
3256
+ element: String
3257
+ id: ID!
3258
+ page: String
3259
+ preference: Object
3260
+ updatedAt: DateTimeISO
3261
+ updater: User
3262
+ user: User!
3263
+ }
3264
+
3265
+ type PagePreferenceList {
3266
+ items: [PagePreference!]!
3267
+ total: Int!
3268
+ }
3269
+
2945
3270
  input Pagination {
2946
3271
  limit: Int
2947
3272
  page: Int
2948
3273
  }
2949
3274
 
2950
3275
  type Partner {
2951
- approvedAt: DateTimeISO!
3276
+ approvedAt: DateTimeISO
2952
3277
  approver: User
2953
3278
  domain: Domain!
2954
3279
  id: ID!
2955
3280
  partnerDomain: Domain!
2956
- requestedAt: DateTimeISO!
3281
+ requestedAt: DateTimeISO
2957
3282
  requester: User
2958
3283
  }
2959
3284
 
@@ -2968,7 +3293,7 @@ type PartnerSetting {
2968
3293
  createdAt: DateTimeISO
2969
3294
  creator: User
2970
3295
  description: String
2971
- domain: Domain
3296
+ domain: Domain!
2972
3297
  id: ID!
2973
3298
  name: String
2974
3299
  partnerDomain: Domain
@@ -2993,11 +3318,23 @@ input PartnerSettingPatch {
2993
3318
  value: String
2994
3319
  }
2995
3320
 
3321
+ type PasswordRule {
3322
+ allowRepeat: Boolean
3323
+ digit: Boolean
3324
+ looseCharacterLength: Float
3325
+ lowerCase: Boolean
3326
+ specialCharacter: Boolean
3327
+ tightCharacterLength: Float
3328
+ upperCase: Boolean
3329
+ useLoosePattern: Boolean
3330
+ useTightPattern: Boolean
3331
+ }
3332
+
2996
3333
  """Entity for PayloadLog"""
2997
3334
  type PayloadLog {
2998
3335
  createdAt: DateTimeISO
2999
3336
  creator: User
3000
- domain: Domain
3337
+ domain: Domain!
3001
3338
  endpoint: String!
3002
3339
  id: ID!
3003
3340
  name: String!
@@ -3114,13 +3451,6 @@ type Privilege {
3114
3451
  updater: User
3115
3452
  }
3116
3453
 
3117
- input PrivilegeInput {
3118
- category: String
3119
- owner: Boolean
3120
- privilege: String
3121
- super: Boolean
3122
- }
3123
-
3124
3454
  type PrivilegeList {
3125
3455
  items: [Privilege!]
3126
3456
  total: Int
@@ -3163,11 +3493,18 @@ type PropertySpec {
3163
3493
  name: String!
3164
3494
  placeholder: String
3165
3495
  property: Object
3496
+ styles: Object
3166
3497
  type: String!
3167
3498
  }
3168
3499
 
3169
3500
  type Query {
3170
3501
  APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
3502
+
3503
+ """To fetch a PDFTemplate"""
3504
+ PDFTemplate(id: String!): PDFTemplate
3505
+
3506
+ """To fetch multiple PDFTemplates"""
3507
+ PDFTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PDFTemplateList!
3171
3508
  appBinding(id: String!): AppBinding!
3172
3509
  appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
3173
3510
 
@@ -3240,19 +3577,25 @@ type Query {
3240
3577
  boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
3241
3578
  chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
3242
3579
 
3243
- """To check if system would provide default password to create new user"""
3580
+ """
3581
+ Checks if the system is configured to provide a default password for new users.
3582
+ """
3244
3583
  checkDefaultPassword: Boolean!
3245
3584
 
3246
- """To check if system would provide default password to create new user"""
3585
+ """
3586
+ Determines whether the system provides a default password when creating a new user.
3587
+ """
3247
3588
  checkResettablePasswordToDefault: Boolean!
3248
3589
 
3249
3590
  """To fetch the preset of role for new user"""
3250
3591
  checkRolePreset: [Role!]!
3251
3592
 
3252
- """To check if current user is belongs to current domain"""
3593
+ """
3594
+ Checks if the current authenticated user belongs to the current domain.
3595
+ """
3253
3596
  checkUserBelongsDomain: Boolean!
3254
3597
 
3255
- """..."""
3598
+ """Checks if a user with the given email address exists in the system."""
3256
3599
  checkUserExistence(email: EmailAddress!): Boolean!
3257
3600
 
3258
3601
  """To fetch common approval lines"""
@@ -3309,10 +3652,17 @@ type Query {
3309
3652
  """To fetch domains with given privilege for user"""
3310
3653
  domainsWithPrivilege(category: String!, privilege: String!): [Domain!]!
3311
3654
 
3312
- """To fetch a Employee"""
3655
+ """To fetch multiple appliance"""
3656
+ edges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
3657
+
3658
+ """
3659
+ Fetches a specific employee by their unique ID. Returns the employee object if found, or null if not found.
3660
+ """
3313
3661
  employee(id: String!): Employee
3314
3662
 
3315
- """To fetch multiple Employees"""
3663
+ """
3664
+ Fetches a list of employees based on provided query parameters. Supports searching by name, control number, and alias.
3665
+ """
3316
3666
  employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
3317
3667
 
3318
3668
  """To fetch multiple Entities"""
@@ -3415,15 +3765,30 @@ type Query {
3415
3765
  myFavorites: [Favorite!]!
3416
3766
  myLoginHistories(limit: Float!): [LoginHistory!]!
3417
3767
 
3768
+ """To fetch my own Menus"""
3769
+ myMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
3770
+
3418
3771
  """To fetch my notifications"""
3419
3772
  myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3420
3773
 
3421
- """To fetch current users privileges for current domain"""
3422
- myPrivileges: [Privilege!]!
3774
+ """To fetch a User's own PagePreference"""
3775
+ myPageAllPreferences(page: String!): [PagePreference!]
3776
+
3777
+ """To fetch a User's own PagePreference"""
3778
+ myPagePreference(element: String!, page: String!): PagePreference
3779
+
3780
+ """To fetch multiple PagePreferences"""
3781
+ myPagePreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PagePreferenceList!
3423
3782
 
3424
3783
  """To fetch roles of current user"""
3425
3784
  myRoles: [Role!]!
3426
3785
 
3786
+ """To fetch a User's own UserPreference"""
3787
+ myUserPreference(element: String!, key: String!): UserPreference
3788
+
3789
+ """To fetch multiple UserPreferences"""
3790
+ myUserPreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserPreferenceList!
3791
+
3427
3792
  """To fetch a Notification"""
3428
3793
  notification(id: String!): Notification
3429
3794
 
@@ -3442,6 +3807,9 @@ type Query {
3442
3807
  """To fetch multiple Oauth2Clients"""
3443
3808
  oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
3444
3809
 
3810
+ """To fetch a PagePreference"""
3811
+ pagePreference(id: String!): PagePreference
3812
+
3445
3813
  """To fetch specific domain's CommonCodes by given name"""
3446
3814
  partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
3447
3815
 
@@ -3452,12 +3820,23 @@ type Query {
3452
3820
  partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
3453
3821
  partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
3454
3822
 
3823
+ """
3824
+ Retrieves the current password rule configuration for the system, such as required character types and minimum length.
3825
+ """
3826
+ passwordRule: PasswordRule!
3827
+
3455
3828
  """To fetch a PayloadLog"""
3456
3829
  payloadLog(id: String!): PayloadLog!
3457
3830
 
3458
3831
  """To fetch multiple PayloadLogs"""
3459
3832
  payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
3460
3833
 
3834
+ """To fetch a PDFRelease"""
3835
+ pdfRelease(id: String!): PDFRelease
3836
+
3837
+ """To fetch multiple PDFReleases"""
3838
+ pdfReleases(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PDFReleaseList!
3839
+
3461
3840
  """To fetch a PlayGroup"""
3462
3841
  playGroup(id: String!): PlayGroup
3463
3842
 
@@ -3467,6 +3846,9 @@ type Query {
3467
3846
  """To fetch multiple PlayGroups"""
3468
3847
  playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
3469
3848
 
3849
+ """To fetch a UserPreference"""
3850
+ preference(id: String!): UserPreference
3851
+
3470
3852
  """To fetch a PrinterDevice"""
3471
3853
  printerDevice(id: String!): PrinterDevice!
3472
3854
 
@@ -3499,6 +3881,10 @@ type Query {
3499
3881
 
3500
3882
  """To fetch multiple scenarios"""
3501
3883
  scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
3884
+ schedule(id: ID!): Schedule
3885
+
3886
+ """To fetch multiple Schedules"""
3887
+ schedules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScheduleList!
3502
3888
  searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
3503
3889
 
3504
3890
  """To fetch domain"""
@@ -3546,7 +3932,7 @@ type Query {
3546
3932
  """To fetch multiple Themes"""
3547
3933
  themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
3548
3934
 
3549
- """To fetch user"""
3935
+ """Fetches a user by their email address within the current domain."""
3550
3936
  user(email: EmailAddress!): User!
3551
3937
 
3552
3938
  """To fetch Menus by role"""
@@ -3555,7 +3941,9 @@ type Query {
3555
3941
  """To fetch roles of a user"""
3556
3942
  userRoles(userId: String!): [UserRole!]!
3557
3943
 
3558
- """To fetch multiple users"""
3944
+ """
3945
+ Fetches a list of users based on provided search parameters within the current domain.
3946
+ """
3559
3947
  users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
3560
3948
  vendors: [Domain!]!
3561
3949
  }
@@ -3572,7 +3960,7 @@ type Role {
3572
3960
  description: String
3573
3961
  domain: Domain!
3574
3962
  id: ID!
3575
- name: String!
3963
+ name: String
3576
3964
  privileges: [Privilege!]
3577
3965
  updatedAt: DateTimeISO
3578
3966
  updater: User
@@ -3608,7 +3996,7 @@ type Scenario {
3608
3996
  createdAt: DateTimeISO
3609
3997
  creator: User
3610
3998
  description: String
3611
- domain: Domain
3999
+ domain: Domain!
3612
4000
  id: ID!
3613
4001
  instances: [ScenarioInstance!]
3614
4002
  name: String!
@@ -3617,11 +4005,13 @@ type Scenario {
3617
4005
  """accessible and executable system-wide"""
3618
4006
  public: Boolean
3619
4007
  publishTags: [Connection!]!
4008
+ role: Role
3620
4009
  schedule: String
3621
4010
  scheduleId: String
3622
4011
  state: String
3623
4012
  steps: [Step!]
3624
4013
  timezone: String
4014
+ ttl: Float
3625
4015
  type: String
3626
4016
  updatedAt: DateTimeISO
3627
4017
  updater: User
@@ -3654,6 +4044,17 @@ type ScenarioInstanceProgress {
3654
4044
  steps: Int!
3655
4045
  }
3656
4046
 
4047
+ type ScenarioInstanceRunResult {
4048
+ data: Object
4049
+ instanceName: String
4050
+ message: String
4051
+ result: Object
4052
+ scenarioName: String
4053
+ state: String
4054
+ timestamp: DateTimeISO
4055
+ variables: Object
4056
+ }
4057
+
3657
4058
  type ScenarioInstanceState {
3658
4059
  data: Object
3659
4060
  domain: Domain
@@ -3686,10 +4087,11 @@ input ScenarioPatch {
3686
4087
  description: String
3687
4088
  id: ID
3688
4089
  name: String
3689
- privilege: PrivilegeInput
4090
+ role: ObjectRef
3690
4091
  schedule: String
3691
4092
  steps: [StepPatch!]
3692
4093
  timezone: String
4094
+ ttl: Float
3693
4095
  type: String
3694
4096
  }
3695
4097
 
@@ -3698,13 +4100,88 @@ type ScenarioQueueState {
3698
4100
  queue: [PendingObject!]!
3699
4101
  }
3700
4102
 
4103
+ type Schedule {
4104
+ client: ScheduleClient!
4105
+ id: ID!
4106
+ name: String
4107
+ schedule: String
4108
+ task: ScheduleTask!
4109
+ timezone: String
4110
+ type: String!
4111
+ }
4112
+
4113
+ type ScheduleClient {
4114
+ application: String!
4115
+ group: String!
4116
+ key: String!
4117
+ operation: String!
4118
+ type: String!
4119
+ }
4120
+
4121
+ input ScheduleClientInput {
4122
+ application: String!
4123
+ group: String!
4124
+ key: String!
4125
+ operation: String!
4126
+ type: String!
4127
+ }
4128
+
4129
+ type ScheduleList {
4130
+ items: [Schedule!]!
4131
+ total: Int!
4132
+ }
4133
+
4134
+ input SchedulePatch {
4135
+ client: ScheduleClientInput!
4136
+ id: String
4137
+ name: String
4138
+ schedule: String
4139
+ task: ScheduleTaskInput!
4140
+ timezone: String
4141
+ type: String!
4142
+ }
4143
+
4144
+ type ScheduleTask {
4145
+ connection: ScheduleTaskConnection!
4146
+ data: Object!
4147
+ failed_policy: String!
4148
+ history_check: Boolean!
4149
+ max_retry_count: Int!
4150
+ retry_count: Int!
4151
+ retry_wait: Int!
4152
+ type: String!
4153
+ }
4154
+
4155
+ type ScheduleTaskConnection {
4156
+ headers: Object
4157
+ host: String
4158
+ topic: String
4159
+ }
4160
+
4161
+ input ScheduleTaskConnectionInput {
4162
+ headers: Object
4163
+ host: String
4164
+ topic: String
4165
+ }
4166
+
4167
+ input ScheduleTaskInput {
4168
+ connection: ScheduleTaskConnectionInput!
4169
+ data: Object!
4170
+ failed_policy: String!
4171
+ history_check: Boolean!
4172
+ max_retry_count: Int!
4173
+ retry_count: Int!
4174
+ retry_wait: Int!
4175
+ type: String!
4176
+ }
4177
+
3701
4178
  """Entity for Setting"""
3702
4179
  type Setting {
3703
4180
  category: String!
3704
4181
  createdAt: DateTimeISO
3705
4182
  creator: User
3706
4183
  description: String
3707
- domain: Domain
4184
+ domain: Domain!
3708
4185
  id: ID!
3709
4186
  name: String!
3710
4187
  updatedAt: DateTimeISO
@@ -3738,36 +4215,113 @@ input Sorting {
3738
4215
 
3739
4216
  """Entity for StateRegister"""
3740
4217
  type StateRegister {
4218
+ """Creation time of the state register"""
3741
4219
  createdAt: DateTimeISO
4220
+
4221
+ """User who created the state register"""
3742
4222
  creator: User
4223
+
4224
+ """ID of the user who created the state register"""
4225
+ creatorId: String
4226
+
4227
+ """Description of the state register"""
3743
4228
  description: String
3744
- domain: Domain
4229
+
4230
+ """Associated domain for the state register"""
4231
+ domain: Domain!
4232
+
4233
+ """ID of the associated domain"""
4234
+ domainId: String!
4235
+
4236
+ """Group name for the state register"""
4237
+ group: String
3745
4238
  id: ID!
4239
+
4240
+ """Name of the state register"""
3746
4241
  name: String
4242
+
4243
+ """Number of decimal places if the state is a number type"""
4244
+ place: String
4245
+
4246
+ """
4247
+ Reference to an external entity or data, used as a flexible foreign key
4248
+ """
3747
4249
  refBy: String
4250
+
4251
+ """Current state value"""
3748
4252
  state: Object
4253
+
4254
+ """Time to live for the state value in seconds"""
3749
4255
  ttl: Int
4256
+
4257
+ """Type of the state"""
3750
4258
  type: String
4259
+
4260
+ """Unit of the state value"""
4261
+ unit: String
4262
+
4263
+ """Last update time of the state register"""
3751
4264
  updatedAt: DateTimeISO
4265
+
4266
+ """User who last updated the state register"""
3752
4267
  updater: User
4268
+
4269
+ """ID of the user who last updated the state register"""
4270
+ updaterId: String
4271
+
4272
+ """User who wrote the state"""
3753
4273
  writer: User
4274
+
4275
+ """ID of the user who wrote the state"""
4276
+ writerId: String
4277
+
4278
+ """Time when the state was recorded"""
3754
4279
  wroteAt: DateTimeISO
3755
4280
  }
3756
4281
 
3757
4282
  type StateRegisterList {
4283
+ """List of state registers"""
3758
4284
  items: [StateRegister!]!
4285
+
4286
+ """Total number of state registers"""
3759
4287
  total: Int!
3760
4288
  }
3761
4289
 
3762
4290
  input StateRegisterPatch {
4291
+ """Flag indicating create/update operations"""
3763
4292
  cuFlag: String
4293
+
4294
+ """Description of the state register"""
3764
4295
  description: String
4296
+
4297
+ """Group name for the state register"""
4298
+ group: String
4299
+
4300
+ """ID of the state register"""
3765
4301
  id: ID
4302
+
4303
+ """Name of the state register"""
3766
4304
  name: String
4305
+
4306
+ """Number of decimal places if the state is a number type"""
4307
+ place: String
4308
+
4309
+ """
4310
+ Reference to an external entity or data, used as a flexible foreign key
4311
+ """
3767
4312
  refBy: String
4313
+
4314
+ """Current state value"""
3768
4315
  state: Object
4316
+
4317
+ """Time to live for the state value in seconds"""
3769
4318
  ttl: Int
4319
+
4320
+ """Type of the state"""
3770
4321
  type: String
4322
+
4323
+ """Unit of the state value"""
4324
+ unit: String
3771
4325
  }
3772
4326
 
3773
4327
  type Step {
@@ -3841,13 +4395,15 @@ type TaskTypeList {
3841
4395
  type Terminology {
3842
4396
  category: String!
3843
4397
  createdAt: DateTimeISO
4398
+ creator: User
3844
4399
  description: String
3845
4400
  display: String!
3846
- domain: Domain
4401
+ domain: Domain!
3847
4402
  id: ID!
3848
4403
  locale: String!
3849
4404
  name: String!
3850
4405
  updatedAt: DateTimeISO
4406
+ updater: User
3851
4407
  }
3852
4408
 
3853
4409
  type TerminologyList {
@@ -3856,12 +4412,12 @@ type TerminologyList {
3856
4412
  }
3857
4413
 
3858
4414
  input TerminologyPatch {
3859
- category: String!
4415
+ category: String
3860
4416
  cuFlag: String
3861
4417
  description: String
3862
- display: String!
4418
+ display: String
3863
4419
  id: ID
3864
- locale: String!
4420
+ locale: String
3865
4421
  name: String
3866
4422
  }
3867
4423
 
@@ -3872,7 +4428,7 @@ type Theme {
3872
4428
  creator: User
3873
4429
  deletedAt: DateTimeISO
3874
4430
  description: String
3875
- domain: Domain
4431
+ domain: Domain!
3876
4432
  id: ID!
3877
4433
  name: String
3878
4434
  type: String
@@ -3912,7 +4468,7 @@ type User {
3912
4468
  email: EmailAddress!
3913
4469
  id: ID!
3914
4470
  locale: String
3915
- name: String!
4471
+ name: String
3916
4472
  owner: Boolean
3917
4473
  reference: String
3918
4474
  roles: [Role!]!
@@ -3921,6 +4477,7 @@ type User {
3921
4477
  updatedAt: DateTimeISO
3922
4478
  updater: User
3923
4479
  userType: String
4480
+ username: String
3924
4481
  usersAuthProviders: [UsersAuthProviders!]
3925
4482
  }
3926
4483
 
@@ -3942,6 +4499,32 @@ input UserPatch {
3942
4499
  userType: String
3943
4500
  }
3944
4501
 
4502
+ """Entity for UserPreference"""
4503
+ type UserPreference {
4504
+ createdAt: DateTimeISO
4505
+ creator: User
4506
+ domain: Domain
4507
+ id: ID!
4508
+ key: String
4509
+ preference: Object
4510
+ updatedAt: DateTimeISO
4511
+ updater: User
4512
+ user: User!
4513
+ }
4514
+
4515
+ type UserPreferenceList {
4516
+ items: [UserPreference!]!
4517
+ total: Int!
4518
+ }
4519
+
4520
+ input UserPreferencePatch {
4521
+ cuFlag: String
4522
+ id: ID
4523
+ key: String!
4524
+ preference: Object!
4525
+ user: ObjectRef!
4526
+ }
4527
+
3945
4528
  type UserRole {
3946
4529
  assigned: Boolean
3947
4530
  description: String
@@ -3953,7 +4536,7 @@ type UserRole {
3953
4536
  type UsersAuthProviders {
3954
4537
  authProvider: AuthProvider
3955
4538
  createdAt: DateTimeISO
3956
- domain: Domain
4539
+ domain: Domain!
3957
4540
  id: ID!
3958
4541
  ssoId: String
3959
4542
  updatedAt: DateTimeISO