@operato/scene-visualizer 8.0.0-alpha.3 → 8.0.0-beta.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.
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
 
@@ -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"""
@@ -287,7 +290,6 @@ type AuthProvider {
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
@@ -748,9 +750,11 @@ scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/in
748
750
  """Entity for Employee"""
749
751
  type Employee {
750
752
  active: Boolean
751
- address: String!
753
+ address: String
752
754
  alias: String
753
755
  approvalLines: [ApprovalLine!]!
756
+ bankAccount: String
757
+ bankName: String
754
758
  contact: Contact
755
759
  controlNo: String!
756
760
  createdAt: DateTimeISO
@@ -759,8 +763,10 @@ type Employee {
759
763
  department: Department
760
764
  domain: Domain!
761
765
  email: EmailAddress
766
+ emergencyContact: String
767
+ emergencyContactPhone: String
762
768
  extension: String
763
- hiredOn: String
769
+ hiredOn: DateTimeISO
764
770
  id: ID!
765
771
  jobPosition: String
766
772
  jobResponsibility: String
@@ -770,7 +776,7 @@ type Employee {
770
776
  phone: String
771
777
  photo: String
772
778
  profile: Profile
773
- retiredAt: String
779
+ retiredOn: DateTimeISO
774
780
  supervises: [Employee!]!
775
781
  supervisor: Employee
776
782
  type: String
@@ -788,17 +794,22 @@ type EmployeeList {
788
794
  input EmployeePatch {
789
795
  active: Boolean
790
796
  alias: String
797
+ bankAccount: String
798
+ bankName: String
799
+ contact: ObjectRefForContact
791
800
  controlNo: String
792
801
  cuFlag: String
793
- department: ObjectRef
794
- hiredOn: String
802
+ department: ObjectRefForDepartment
803
+ emergencyContact: String
804
+ emergencyContactPhone: String
805
+ hiredOn: DateTimeISO
795
806
  id: ID
796
807
  jobPosition: String
797
808
  jobResponsibility: String
798
809
  name: String
799
810
  note: String
800
811
  photo: Upload
801
- retiredAt: String
812
+ retiredOn: DateTimeISO
802
813
  supervisor: ObjectRefForEmployee
803
814
  type: EmployeeType
804
815
  user: ObjectRefForUser
@@ -1163,7 +1174,6 @@ type Menu {
1163
1174
  name: String
1164
1175
  pagination: Boolean
1165
1176
  parent: Menu
1166
- privilege: PrivilegeObject
1167
1177
  rank: Float
1168
1178
  resourceId: String
1169
1179
  resourceName: String
@@ -1485,7 +1495,6 @@ input MenuPatch {
1485
1495
  name: String
1486
1496
  pagination: Boolean
1487
1497
  parent: ObjectRef
1488
- privilege: PrivilegeInput
1489
1498
  rank: Int
1490
1499
  resourceId: String
1491
1500
  resourceName: String
@@ -1501,9 +1510,11 @@ input MenuPatch {
1501
1510
 
1502
1511
  type Mutation {
1503
1512
  """To activate user"""
1504
- activateUser(userId: String!): Boolean!
1513
+ activateUser(username: String!): Boolean!
1505
1514
 
1506
- """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
+ """
1507
1518
  attachContact(contactId: String!, id: String!): Employee!
1508
1519
  cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
1509
1520
 
@@ -1560,7 +1571,9 @@ type Mutation {
1560
1571
  """To create domain (Only superuser is granted this privilege.)"""
1561
1572
  createDomain(domainInput: DomainPatch!): Domain!
1562
1573
 
1563
- """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
+ """
1564
1577
  createEmployee(employee: NewEmployee!): Employee!
1565
1578
 
1566
1579
  """To create new Entity"""
@@ -1599,6 +1612,9 @@ type Mutation {
1599
1612
  """To create new ApprovalLine for current user"""
1600
1613
  createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1601
1614
 
1615
+ """To create my new PagePreference"""
1616
+ createMyPagePreference(pagePreference: NewPagePreference!): PagePreference!
1617
+
1602
1618
  """To create new Notification"""
1603
1619
  createNotification(notification: NewNotification!): Notification!
1604
1620
 
@@ -1608,6 +1624,12 @@ type Mutation {
1608
1624
  """To create new Oauth2Client"""
1609
1625
  createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
1610
1626
 
1627
+ """To create new PDFRelease"""
1628
+ createPDFRelease(pdfRelease: NewPDFRelease!): PDFRelease!
1629
+
1630
+ """To create new PDFTemplate"""
1631
+ createPDFTemplate(pdfTemplate: NewPDFTemplate!): PDFTemplate!
1632
+
1611
1633
  """To create new PayloadLog"""
1612
1634
  createPayloadLog(payloadLog: NewPayloadLog!): PayloadLog!
1613
1635
 
@@ -1640,6 +1662,9 @@ type Mutation {
1640
1662
 
1641
1663
  """To create new user"""
1642
1664
  createUser(user: NewUser!): User!
1665
+
1666
+ """To create new UserPreference"""
1667
+ createUserPreference(preference: NewUserPreference!): UserPreference!
1643
1668
  deleteAppBinding(id: String!): Boolean!
1644
1669
 
1645
1670
  """To delete appliance"""
@@ -1654,7 +1679,7 @@ type Mutation {
1654
1679
  """To delete multiple ApprovalLines"""
1655
1680
  deleteApprovalLines(ids: [String!]!): Boolean!
1656
1681
  deleteAttachment(id: String!): Boolean!
1657
- deleteAttachmentsByRef(refBys: [String!]!): Boolean!
1682
+ deleteAttachmentsByRef(refBys: [String!]!, refType: String): Boolean!
1658
1683
 
1659
1684
  """To delete AttributeSet"""
1660
1685
  deleteAttributeSet(id: String!): Boolean!
@@ -1706,15 +1731,19 @@ type Mutation {
1706
1731
  deleteDomain(name: String!): Domain!
1707
1732
 
1708
1733
  """To delete domain user"""
1709
- deleteDomainUser(email: EmailAddress!): Boolean!
1734
+ deleteDomainUser(username: String!): Boolean!
1710
1735
 
1711
1736
  """To delete multiple domains (Only superuser is granted this privilege.)"""
1712
1737
  deleteDomains(names: [String!]!): Boolean!
1713
1738
 
1714
- """To delete Employee"""
1739
+ """
1740
+ Deletes an employee record identified by the given ID. Also deletes any attachments associated with the employee.
1741
+ """
1715
1742
  deleteEmployee(id: String!): Boolean!
1716
1743
 
1717
- """To delete multiple Employees"""
1744
+ """
1745
+ Deletes multiple employee records identified by the given IDs. Also deletes any attachments associated with each employee.
1746
+ """
1718
1747
  deleteEmployees(ids: [String!]!): Boolean!
1719
1748
 
1720
1749
  """To delete multiple Entities"""
@@ -1780,6 +1809,12 @@ type Mutation {
1780
1809
  """To delete multiple ApprovalLines for current user"""
1781
1810
  deleteMyApprovalLines(ids: [String!]!): Boolean!
1782
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
+
1783
1818
  """To delete Notification"""
1784
1819
  deleteNotification(id: String!): Boolean!
1785
1820
 
@@ -1798,6 +1833,24 @@ type Mutation {
1798
1833
  """To delete multiple Oauth2Clients"""
1799
1834
  deleteOauth2Clients(ids: [String!]!): Boolean!
1800
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
+
1801
1854
  """To delete multiple partnerSettings"""
1802
1855
  deletePartnerSettings(ids: [String!]!): Boolean!
1803
1856
 
@@ -1859,12 +1912,20 @@ type Mutation {
1859
1912
  deleteThemes(ids: [String!]!): Boolean!
1860
1913
 
1861
1914
  """To delete a user"""
1862
- 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!
1863
1922
 
1864
1923
  """To delete some users"""
1865
- deleteUsers(emails: [String!]!): Boolean!
1924
+ deleteUsers(usernames: [String!]!): Boolean!
1866
1925
 
1867
- """To detach a contact from Employee"""
1926
+ """
1927
+ Detaches an existing contact from an employee. The employee is identified by their ID.
1928
+ """
1868
1929
  detachContact(id: String!): Employee!
1869
1930
 
1870
1931
  """To disconnect a connection"""
@@ -1906,7 +1967,9 @@ type Mutation {
1906
1967
  """To import multiple Departments"""
1907
1968
  importDepartments(departments: [DepartmentPatch!]!): Boolean!
1908
1969
 
1909
- """To import multiple Employees"""
1970
+ """
1971
+ Imports multiple employee records into the system. Each employee record must be provided in the EmployeePatch format.
1972
+ """
1910
1973
  importEmployees(employees: [EmployeePatch!]!): Boolean!
1911
1974
 
1912
1975
  """To import multiple MenuButtons"""
@@ -1933,6 +1996,12 @@ type Mutation {
1933
1996
  """To import multiple Oauth2Clients"""
1934
1997
  importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
1935
1998
 
1999
+ """To import multiple PDFReleases"""
2000
+ importPDFReleases(pdfReleases: [PDFReleasePatch!]!): Boolean!
2001
+
2002
+ """To import multiple PDFTemplates"""
2003
+ importPDFTemplates(pdfTemplates: [PDFTemplatePatch!]!): Boolean!
2004
+
1936
2005
  """To import multiple scenarios"""
1937
2006
  importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
1938
2007
 
@@ -1946,11 +2015,11 @@ type Mutation {
1946
2015
  importThemes(themes: [ThemePatch!]!): Boolean!
1947
2016
 
1948
2017
  """To inactivate user"""
1949
- inactivateUser(userId: String!): Boolean!
2018
+ inactivateUser(username: String!): Boolean!
1950
2019
  inviteCustomer(customerDomainName: String!): Boolean!
1951
2020
 
1952
2021
  """To invite new user"""
1953
- inviteUser(email: EmailAddress!): Boolean!
2022
+ inviteUser(username: String!): Boolean!
1954
2023
 
1955
2024
  """To make the board to join the group"""
1956
2025
  joinGroup(boardIds: [String!]!, id: String!): Group!
@@ -1980,6 +2049,15 @@ type Mutation {
1980
2049
  visibility: String!
1981
2050
  ): BoardTemplate!
1982
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
+
1983
2061
  """To release a Board"""
1984
2062
  releaseBoard(id: String!): Board!
1985
2063
  renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
@@ -1988,7 +2066,7 @@ type Mutation {
1988
2066
  reorderPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
1989
2067
 
1990
2068
  """To reset password to default"""
1991
- resetPasswordToDefault(userId: String!): Boolean!
2069
+ resetPasswordToDefault(username: String!): Boolean!
1992
2070
 
1993
2071
  """To revert Board version"""
1994
2072
  revertBoardVersion(id: String!, version: Float!): Board!
@@ -1996,7 +2074,7 @@ type Mutation {
1996
2074
  """
1997
2075
  To run new scenario instance and will return the result after the scenario stop.
1998
2076
  """
1999
- runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
2077
+ runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceRunResult!
2000
2078
  sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
2001
2079
  singleUpload(file: Upload!): Attachment!
2002
2080
 
@@ -2028,7 +2106,8 @@ type Mutation {
2028
2106
  terminateContract(partnerName: String!): Boolean!
2029
2107
 
2030
2108
  """To transfer owner of domain"""
2031
- transferOwner(email: EmailAddress!): Boolean!
2109
+ transferOwner(username: String!): Boolean!
2110
+ unregisterSchedule(handle: ID!): Boolean!
2032
2111
  updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
2033
2112
  updateApplication(id: String!, patch: ApplicationPatch!): Application!
2034
2113
 
@@ -2069,7 +2148,9 @@ type Mutation {
2069
2148
  """To update multiple domains (Only superuser is granted this privilege.)"""
2070
2149
  updateDomains(patches: [DomainPatch!]!): Boolean!
2071
2150
 
2072
- """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
+ """
2073
2154
  updateEmployee(id: String!, patch: EmployeePatch!): Employee!
2074
2155
 
2075
2156
  """To modify Entity' information"""
@@ -2124,7 +2205,9 @@ type Mutation {
2124
2205
  """To modify multiple Departments' information"""
2125
2206
  updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
2126
2207
 
2127
- """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
+ """
2128
2211
  updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
2129
2212
 
2130
2213
  """To modify multiple Entitys' information"""
@@ -2145,6 +2228,12 @@ type Mutation {
2145
2228
  """To modify multiple NotificationRules' information"""
2146
2229
  updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
2147
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
+
2148
2237
  """To modify multiple PartnerSettings' information"""
2149
2238
  updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
2150
2239
 
@@ -2178,6 +2267,12 @@ type Mutation {
2178
2267
  """To modify ApprovalLine information for current user"""
2179
2268
  updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
2180
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
+
2181
2276
  """To modify Notification information"""
2182
2277
  updateNotification(id: String!, patch: NotificationPatch!): Notification!
2183
2278
 
@@ -2187,6 +2282,12 @@ type Mutation {
2187
2282
  """To modify Oauth2Client information"""
2188
2283
  updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
2189
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
+
2190
2291
  """To modify PayloadLog information"""
2191
2292
  updatePayloadLog(id: String!, patch: PayloadLogPatch!): PayloadLog!
2192
2293
 
@@ -2210,6 +2311,7 @@ type Mutation {
2210
2311
 
2211
2312
  """To modify scenario information"""
2212
2313
  updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
2314
+ updateSchedule(schedule: SchedulePatch!): ID!
2213
2315
 
2214
2316
  """To update secure IP list for domain"""
2215
2317
  updateSecureIPList(iplist: Object!): Object
@@ -2232,8 +2334,11 @@ type Mutation {
2232
2334
  """To modify user information"""
2233
2335
  updateUser(email: EmailAddress!, patch: UserPatch!): User!
2234
2336
 
2337
+ """To modify UserPreference information"""
2338
+ updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
2339
+
2235
2340
  """To update roles for a user"""
2236
- updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
2341
+ updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, username: String!): User!
2237
2342
  }
2238
2343
 
2239
2344
  input NewAppliance {
@@ -2270,6 +2375,7 @@ input NewAttachment {
2270
2375
  file: Upload!
2271
2376
  refBy: String
2272
2377
  refType: String
2378
+ tags: Object
2273
2379
  }
2274
2380
 
2275
2381
  input NewAttributeSet {
@@ -2354,16 +2460,21 @@ input NewDepartment {
2354
2460
  input NewEmployee {
2355
2461
  active: Boolean
2356
2462
  alias: String
2463
+ bankAccount: String
2464
+ bankName: String
2465
+ contact: ObjectRefForContact
2357
2466
  controlNo: String!
2358
- department: ObjectRef
2467
+ department: ObjectRefForDepartment
2468
+ emergencyContact: String
2469
+ emergencyContactPhone: String
2359
2470
  extension: String
2360
- hiredOn: String
2471
+ hiredOn: DateTimeISO
2361
2472
  jobPosition: String
2362
2473
  jobResponsibility: String
2363
2474
  name: String!
2364
2475
  note: String
2365
2476
  photo: Upload
2366
- retiredAt: String
2477
+ retiredOn: DateTimeISO
2367
2478
  supervisor: ObjectRefForEmployee
2368
2479
  type: EmployeeType
2369
2480
  user: ObjectRefForUser
@@ -2463,7 +2574,6 @@ input NewMenu {
2463
2574
  name: String!
2464
2575
  pagination: Boolean
2465
2576
  parent: ObjectRef
2466
- privilege: PrivilegeInput
2467
2577
  rank: Int
2468
2578
  resourceId: String
2469
2579
  resourceName: String
@@ -2631,6 +2741,35 @@ input NewOauth2Client {
2631
2741
  webhook: String
2632
2742
  }
2633
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
+
2634
2773
  input NewPayloadLog {
2635
2774
  description: String
2636
2775
  name: String!
@@ -2677,12 +2816,22 @@ input NewScenario {
2677
2816
  active: Boolean
2678
2817
  description: String
2679
2818
  name: String!
2680
- privilege: PrivilegeInput
2819
+ role: ObjectRef
2681
2820
  schedule: String
2682
2821
  timezone: String
2822
+ ttl: Float
2683
2823
  type: String
2684
2824
  }
2685
2825
 
2826
+ input NewSchedule {
2827
+ client: ScheduleClientInput!
2828
+ name: String!
2829
+ schedule: String
2830
+ task: ScheduleTaskInput!
2831
+ timezone: String
2832
+ type: String!
2833
+ }
2834
+
2686
2835
  input NewSetting {
2687
2836
  category: String!
2688
2837
  description: String
@@ -2691,12 +2840,34 @@ input NewSetting {
2691
2840
  }
2692
2841
 
2693
2842
  input NewStateRegister {
2843
+ """Description of the state register"""
2694
2844
  description: String
2845
+
2846
+ """Group name for the state register"""
2847
+ group: String
2848
+
2849
+ """Name of the state register"""
2695
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
+ """
2696
2858
  refBy: String
2859
+
2860
+ """Current state value"""
2697
2861
  state: Object
2862
+
2863
+ """Time to live for the state value in seconds"""
2698
2864
  ttl: Int
2865
+
2866
+ """Type of the state"""
2699
2867
  type: String
2868
+
2869
+ """Unit of the state value"""
2870
+ unit: String
2700
2871
  }
2701
2872
 
2702
2873
  input NewTerminology {
@@ -2722,6 +2893,7 @@ input NewUser {
2722
2893
  password: String
2723
2894
  roles: [ObjectRef!]
2724
2895
  userType: String
2896
+ username: String!
2725
2897
  }
2726
2898
 
2727
2899
  input NewUserByDomainWizardInput {
@@ -2733,6 +2905,12 @@ input NewUserByDomainWizardInput {
2733
2905
  roles: [NewRole!]!
2734
2906
  }
2735
2907
 
2908
+ input NewUserPreference {
2909
+ key: String!
2910
+ preference: Object!
2911
+ user: ObjectRef!
2912
+ }
2913
+
2736
2914
  """Entity for Notification"""
2737
2915
  type Notification {
2738
2916
  body: String
@@ -2900,6 +3078,34 @@ input ObjectRefApprovalLineOwnerType {
2900
3078
  name: String
2901
3079
  }
2902
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
+
2903
3109
  input ObjectRefForEmployee {
2904
3110
  active: Boolean
2905
3111
  alias: String
@@ -2908,7 +3114,7 @@ input ObjectRefForEmployee {
2908
3114
  """Field description"""
2909
3115
  description: String
2910
3116
  email: EmailAddress
2911
- hiredOn: String
3117
+ hiredOn: DateTimeISO
2912
3118
 
2913
3119
  """Field id"""
2914
3120
  id: ID!
@@ -2956,18 +3162,123 @@ enum OrgMemberTargetType {
2956
3162
  Role
2957
3163
  }
2958
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
+
2959
3270
  input Pagination {
2960
3271
  limit: Int
2961
3272
  page: Int
2962
3273
  }
2963
3274
 
2964
3275
  type Partner {
2965
- approvedAt: DateTimeISO!
3276
+ approvedAt: DateTimeISO
2966
3277
  approver: User
2967
3278
  domain: Domain!
2968
3279
  id: ID!
2969
3280
  partnerDomain: Domain!
2970
- requestedAt: DateTimeISO!
3281
+ requestedAt: DateTimeISO
2971
3282
  requester: User
2972
3283
  }
2973
3284
 
@@ -3007,6 +3318,18 @@ input PartnerSettingPatch {
3007
3318
  value: String
3008
3319
  }
3009
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
+
3010
3333
  """Entity for PayloadLog"""
3011
3334
  type PayloadLog {
3012
3335
  createdAt: DateTimeISO
@@ -3128,13 +3451,6 @@ type Privilege {
3128
3451
  updater: User
3129
3452
  }
3130
3453
 
3131
- input PrivilegeInput {
3132
- category: String
3133
- owner: Boolean
3134
- privilege: String
3135
- super: Boolean
3136
- }
3137
-
3138
3454
  type PrivilegeList {
3139
3455
  items: [Privilege!]
3140
3456
  total: Int
@@ -3183,6 +3499,12 @@ type PropertySpec {
3183
3499
 
3184
3500
  type Query {
3185
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!
3186
3508
  appBinding(id: String!): AppBinding!
3187
3509
  appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
3188
3510
 
@@ -3255,19 +3577,25 @@ type Query {
3255
3577
  boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
3256
3578
  chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
3257
3579
 
3258
- """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
+ """
3259
3583
  checkDefaultPassword: Boolean!
3260
3584
 
3261
- """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
+ """
3262
3588
  checkResettablePasswordToDefault: Boolean!
3263
3589
 
3264
3590
  """To fetch the preset of role for new user"""
3265
3591
  checkRolePreset: [Role!]!
3266
3592
 
3267
- """To check if current user is belongs to current domain"""
3593
+ """
3594
+ Checks if the current authenticated user belongs to the current domain.
3595
+ """
3268
3596
  checkUserBelongsDomain: Boolean!
3269
3597
 
3270
- """..."""
3598
+ """Checks if a user with the given email address exists in the system."""
3271
3599
  checkUserExistence(email: EmailAddress!): Boolean!
3272
3600
 
3273
3601
  """To fetch common approval lines"""
@@ -3327,10 +3655,14 @@ type Query {
3327
3655
  """To fetch multiple appliance"""
3328
3656
  edges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
3329
3657
 
3330
- """To fetch a Employee"""
3658
+ """
3659
+ Fetches a specific employee by their unique ID. Returns the employee object if found, or null if not found.
3660
+ """
3331
3661
  employee(id: String!): Employee
3332
3662
 
3333
- """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
+ """
3334
3666
  employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
3335
3667
 
3336
3668
  """To fetch multiple Entities"""
@@ -3439,9 +3771,24 @@ type Query {
3439
3771
  """To fetch my notifications"""
3440
3772
  myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3441
3773
 
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!
3782
+
3442
3783
  """To fetch roles of current user"""
3443
3784
  myRoles: [Role!]!
3444
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
+
3445
3792
  """To fetch a Notification"""
3446
3793
  notification(id: String!): Notification
3447
3794
 
@@ -3460,6 +3807,9 @@ type Query {
3460
3807
  """To fetch multiple Oauth2Clients"""
3461
3808
  oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
3462
3809
 
3810
+ """To fetch a PagePreference"""
3811
+ pagePreference(id: String!): PagePreference
3812
+
3463
3813
  """To fetch specific domain's CommonCodes by given name"""
3464
3814
  partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
3465
3815
 
@@ -3470,12 +3820,23 @@ type Query {
3470
3820
  partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
3471
3821
  partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
3472
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
+
3473
3828
  """To fetch a PayloadLog"""
3474
3829
  payloadLog(id: String!): PayloadLog!
3475
3830
 
3476
3831
  """To fetch multiple PayloadLogs"""
3477
3832
  payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
3478
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
+
3479
3840
  """To fetch a PlayGroup"""
3480
3841
  playGroup(id: String!): PlayGroup
3481
3842
 
@@ -3485,6 +3846,9 @@ type Query {
3485
3846
  """To fetch multiple PlayGroups"""
3486
3847
  playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
3487
3848
 
3849
+ """To fetch a UserPreference"""
3850
+ preference(id: String!): UserPreference
3851
+
3488
3852
  """To fetch a PrinterDevice"""
3489
3853
  printerDevice(id: String!): PrinterDevice!
3490
3854
 
@@ -3517,6 +3881,10 @@ type Query {
3517
3881
 
3518
3882
  """To fetch multiple scenarios"""
3519
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!
3520
3888
  searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
3521
3889
 
3522
3890
  """To fetch domain"""
@@ -3564,7 +3932,7 @@ type Query {
3564
3932
  """To fetch multiple Themes"""
3565
3933
  themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
3566
3934
 
3567
- """To fetch user"""
3935
+ """Fetches a user by their email address within the current domain."""
3568
3936
  user(email: EmailAddress!): User!
3569
3937
 
3570
3938
  """To fetch Menus by role"""
@@ -3573,7 +3941,9 @@ type Query {
3573
3941
  """To fetch roles of a user"""
3574
3942
  userRoles(userId: String!): [UserRole!]!
3575
3943
 
3576
- """To fetch multiple users"""
3944
+ """
3945
+ Fetches a list of users based on provided search parameters within the current domain.
3946
+ """
3577
3947
  users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
3578
3948
  vendors: [Domain!]!
3579
3949
  }
@@ -3590,7 +3960,7 @@ type Role {
3590
3960
  description: String
3591
3961
  domain: Domain!
3592
3962
  id: ID!
3593
- name: String!
3963
+ name: String
3594
3964
  privileges: [Privilege!]
3595
3965
  updatedAt: DateTimeISO
3596
3966
  updater: User
@@ -3635,11 +4005,13 @@ type Scenario {
3635
4005
  """accessible and executable system-wide"""
3636
4006
  public: Boolean
3637
4007
  publishTags: [Connection!]!
4008
+ role: Role
3638
4009
  schedule: String
3639
4010
  scheduleId: String
3640
4011
  state: String
3641
4012
  steps: [Step!]
3642
4013
  timezone: String
4014
+ ttl: Float
3643
4015
  type: String
3644
4016
  updatedAt: DateTimeISO
3645
4017
  updater: User
@@ -3672,6 +4044,17 @@ type ScenarioInstanceProgress {
3672
4044
  steps: Int!
3673
4045
  }
3674
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
+
3675
4058
  type ScenarioInstanceState {
3676
4059
  data: Object
3677
4060
  domain: Domain
@@ -3704,10 +4087,11 @@ input ScenarioPatch {
3704
4087
  description: String
3705
4088
  id: ID
3706
4089
  name: String
3707
- privilege: PrivilegeInput
4090
+ role: ObjectRef
3708
4091
  schedule: String
3709
4092
  steps: [StepPatch!]
3710
4093
  timezone: String
4094
+ ttl: Float
3711
4095
  type: String
3712
4096
  }
3713
4097
 
@@ -3716,6 +4100,81 @@ type ScenarioQueueState {
3716
4100
  queue: [PendingObject!]!
3717
4101
  }
3718
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
+
3719
4178
  """Entity for Setting"""
3720
4179
  type Setting {
3721
4180
  category: String!
@@ -3756,36 +4215,113 @@ input Sorting {
3756
4215
 
3757
4216
  """Entity for StateRegister"""
3758
4217
  type StateRegister {
4218
+ """Creation time of the state register"""
3759
4219
  createdAt: DateTimeISO
4220
+
4221
+ """User who created the state register"""
3760
4222
  creator: User
4223
+
4224
+ """ID of the user who created the state register"""
4225
+ creatorId: String
4226
+
4227
+ """Description of the state register"""
3761
4228
  description: String
4229
+
4230
+ """Associated domain for the state register"""
3762
4231
  domain: Domain!
4232
+
4233
+ """ID of the associated domain"""
4234
+ domainId: String!
4235
+
4236
+ """Group name for the state register"""
4237
+ group: String
3763
4238
  id: ID!
4239
+
4240
+ """Name of the state register"""
3764
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
+ """
3765
4249
  refBy: String
4250
+
4251
+ """Current state value"""
3766
4252
  state: Object
4253
+
4254
+ """Time to live for the state value in seconds"""
3767
4255
  ttl: Int
4256
+
4257
+ """Type of the state"""
3768
4258
  type: String
4259
+
4260
+ """Unit of the state value"""
4261
+ unit: String
4262
+
4263
+ """Last update time of the state register"""
3769
4264
  updatedAt: DateTimeISO
4265
+
4266
+ """User who last updated the state register"""
3770
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"""
3771
4273
  writer: User
4274
+
4275
+ """ID of the user who wrote the state"""
4276
+ writerId: String
4277
+
4278
+ """Time when the state was recorded"""
3772
4279
  wroteAt: DateTimeISO
3773
4280
  }
3774
4281
 
3775
4282
  type StateRegisterList {
4283
+ """List of state registers"""
3776
4284
  items: [StateRegister!]!
4285
+
4286
+ """Total number of state registers"""
3777
4287
  total: Int!
3778
4288
  }
3779
4289
 
3780
4290
  input StateRegisterPatch {
4291
+ """Flag indicating create/update operations"""
3781
4292
  cuFlag: String
4293
+
4294
+ """Description of the state register"""
3782
4295
  description: String
4296
+
4297
+ """Group name for the state register"""
4298
+ group: String
4299
+
4300
+ """ID of the state register"""
3783
4301
  id: ID
4302
+
4303
+ """Name of the state register"""
3784
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
+ """
3785
4312
  refBy: String
4313
+
4314
+ """Current state value"""
3786
4315
  state: Object
4316
+
4317
+ """Time to live for the state value in seconds"""
3787
4318
  ttl: Int
4319
+
4320
+ """Type of the state"""
3788
4321
  type: String
4322
+
4323
+ """Unit of the state value"""
4324
+ unit: String
3789
4325
  }
3790
4326
 
3791
4327
  type Step {
@@ -3859,6 +4395,7 @@ type TaskTypeList {
3859
4395
  type Terminology {
3860
4396
  category: String!
3861
4397
  createdAt: DateTimeISO
4398
+ creator: User
3862
4399
  description: String
3863
4400
  display: String!
3864
4401
  domain: Domain!
@@ -3866,6 +4403,7 @@ type Terminology {
3866
4403
  locale: String!
3867
4404
  name: String!
3868
4405
  updatedAt: DateTimeISO
4406
+ updater: User
3869
4407
  }
3870
4408
 
3871
4409
  type TerminologyList {
@@ -3874,12 +4412,12 @@ type TerminologyList {
3874
4412
  }
3875
4413
 
3876
4414
  input TerminologyPatch {
3877
- category: String!
4415
+ category: String
3878
4416
  cuFlag: String
3879
4417
  description: String
3880
- display: String!
4418
+ display: String
3881
4419
  id: ID
3882
- locale: String!
4420
+ locale: String
3883
4421
  name: String
3884
4422
  }
3885
4423
 
@@ -3930,7 +4468,7 @@ type User {
3930
4468
  email: EmailAddress!
3931
4469
  id: ID!
3932
4470
  locale: String
3933
- name: String!
4471
+ name: String
3934
4472
  owner: Boolean
3935
4473
  reference: String
3936
4474
  roles: [Role!]!
@@ -3939,6 +4477,7 @@ type User {
3939
4477
  updatedAt: DateTimeISO
3940
4478
  updater: User
3941
4479
  userType: String
4480
+ username: String
3942
4481
  usersAuthProviders: [UsersAuthProviders!]
3943
4482
  }
3944
4483
 
@@ -3960,6 +4499,32 @@ input UserPatch {
3960
4499
  userType: String
3961
4500
  }
3962
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
+
3963
4528
  type UserRole {
3964
4529
  assigned: Boolean
3965
4530
  description: String