@operato/scene-manufacturing 8.0.0-alpha.1 → 8.0.0-alpha.8

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
@@ -133,7 +133,7 @@ type ApprovalLine {
133
133
  createdAt: DateTimeISO
134
134
  creator: User
135
135
  description: String
136
- domain: Domain
136
+ domain: Domain!
137
137
  id: ID!
138
138
  model: [ApprovalLineItem!]
139
139
  name: String
@@ -201,6 +201,7 @@ type Attachment {
201
201
  refBy: String
202
202
  refType: String
203
203
  size: String!
204
+ tags: Object
204
205
  updatedAt: DateTimeISO!
205
206
  updater: User
206
207
  }
@@ -219,6 +220,7 @@ input AttachmentPatch {
219
220
  name: String
220
221
  refBy: String
221
222
  refType: String
223
+ tags: Object
222
224
  }
223
225
 
224
226
  """Entity for AttributeSet"""
@@ -283,11 +285,10 @@ type AuthProvider {
283
285
  clientSecret: String
284
286
  createdAt: DateTimeISO
285
287
  creator: User
286
- domain: Domain
288
+ domain: Domain!
287
289
  id: ID!
288
290
  params: Object
289
291
  privateKey: String
290
- state: String
291
292
  tenantId: String
292
293
  type: String
293
294
  updatedAt: DateTimeISO
@@ -305,6 +306,7 @@ type AuthProviderParameterSpec {
305
306
  name: String!
306
307
  placeholder: String
307
308
  property: Object
309
+ styles: Object
308
310
  type: String!
309
311
  }
310
312
 
@@ -411,7 +413,7 @@ type BoardTemplate {
411
413
  createdAt: DateTimeISO
412
414
  creator: User
413
415
  description: String
414
- domain: Domain
416
+ domain: Domain!
415
417
  id: ID!
416
418
  mine: Boolean!
417
419
  model: String
@@ -462,7 +464,7 @@ type CommonCode {
462
464
  creator: User
463
465
  description: String
464
466
  details: [CommonCodeDetail!]!
465
- domain: Domain
467
+ domain: Domain!
466
468
  id: ID!
467
469
  name: String!
468
470
  updatedAt: DateTimeISO
@@ -475,8 +477,9 @@ type CommonCodeDetail {
475
477
  createdAt: DateTimeISO
476
478
  creator: User
477
479
  description: String
478
- domain: Domain
480
+ domain: Domain!
479
481
  id: ID!
482
+ labels: Object
480
483
  name: String!
481
484
  rank: Float
482
485
  updatedAt: DateTimeISO
@@ -493,6 +496,7 @@ input CommonCodeDetailPatch {
493
496
  cuFlag: String
494
497
  description: String
495
498
  id: ID
499
+ labels: Object
496
500
  name: String
497
501
  rank: Float
498
502
  }
@@ -516,6 +520,7 @@ type Connection {
516
520
  creator: User
517
521
  description: String
518
522
  domain: Domain
523
+ edge: Appliance
519
524
  endpoint: String
520
525
  id: ID!
521
526
  name: String!
@@ -535,6 +540,7 @@ input ConnectionPatch {
535
540
  active: Boolean
536
541
  cuFlag: String
537
542
  description: String
543
+ edge: ObjectRef
538
544
  endpoint: String
539
545
  id: ID
540
546
  name: String
@@ -544,7 +550,8 @@ input ConnectionPatch {
544
550
 
545
551
  type ConnectionState {
546
552
  description: String
547
- domain: Domain
553
+ domain: Domain!
554
+ edge: Appliance
548
555
  id: String
549
556
  name: String
550
557
  state: String
@@ -573,7 +580,7 @@ type Contact {
573
580
  creator: User
574
581
  deletedAt: DateTimeISO
575
582
  department: String
576
- domain: Domain
583
+ domain: Domain!
577
584
  email: EmailAddress
578
585
  id: ID!
579
586
  items: [ContactItem!]
@@ -644,7 +651,7 @@ type Department {
644
651
  creator: User
645
652
  deletedAt: DateTimeISO
646
653
  description: String
647
- domain: Domain
654
+ domain: Domain!
648
655
  extension: String
649
656
  id: ID!
650
657
  manager: Employee
@@ -742,19 +749,23 @@ scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/in
742
749
  """Entity for Employee"""
743
750
  type Employee {
744
751
  active: Boolean
745
- address: String!
752
+ address: String
746
753
  alias: String
747
754
  approvalLines: [ApprovalLine!]!
755
+ bankAccount: String
756
+ bankName: String
748
757
  contact: Contact
749
758
  controlNo: String!
750
759
  createdAt: DateTimeISO
751
760
  creator: User
752
761
  deletedAt: DateTimeISO
753
762
  department: Department
754
- domain: Domain
763
+ domain: Domain!
755
764
  email: EmailAddress
765
+ emergencyContact: String
766
+ emergencyContactPhone: String
756
767
  extension: String
757
- hiredOn: String
768
+ hiredOn: DateTimeISO
758
769
  id: ID!
759
770
  jobPosition: String
760
771
  jobResponsibility: String
@@ -764,7 +775,7 @@ type Employee {
764
775
  phone: String
765
776
  photo: String
766
777
  profile: Profile
767
- retiredAt: String
778
+ retiredOn: DateTimeISO
768
779
  supervises: [Employee!]!
769
780
  supervisor: Employee
770
781
  type: String
@@ -782,17 +793,22 @@ type EmployeeList {
782
793
  input EmployeePatch {
783
794
  active: Boolean
784
795
  alias: String
796
+ bankAccount: String
797
+ bankName: String
798
+ contact: ObjectRefForContact
785
799
  controlNo: String
786
800
  cuFlag: String
787
- department: ObjectRef
788
- hiredOn: String
801
+ department: ObjectRefForDepartment
802
+ emergencyContact: String
803
+ emergencyContactPhone: String
804
+ hiredOn: DateTimeISO
789
805
  id: ID
790
806
  jobPosition: String
791
807
  jobResponsibility: String
792
808
  name: String
793
809
  note: String
794
810
  photo: Upload
795
- retiredAt: String
811
+ retiredOn: DateTimeISO
796
812
  supervisor: ObjectRefForEmployee
797
813
  type: EmployeeType
798
814
  user: ObjectRefForUser
@@ -817,7 +833,7 @@ type Entity {
817
833
  dataProp: String
818
834
  delStrategy: String
819
835
  description: String
820
- domain: Domain
836
+ domain: Domain!
821
837
  extEntity: Boolean
822
838
  fixedColumns: Float
823
839
  id: ID!
@@ -842,7 +858,7 @@ type EntityColumn {
842
858
  creator: User
843
859
  defVal: String
844
860
  description: String
845
- domain: Domain
861
+ domain: Domain!
846
862
  entity: Entity!
847
863
  formEditor: String
848
864
  formFormat: String
@@ -1015,7 +1031,7 @@ type Font {
1015
1031
  active: Boolean!
1016
1032
  createdAt: DateTimeISO
1017
1033
  creator: User
1018
- domain: Domain
1034
+ domain: Domain!
1019
1035
  files: [Attachment!]
1020
1036
  id: ID!
1021
1037
  name: String!
@@ -1138,14 +1154,14 @@ type LoginHistoryList {
1138
1154
  type Menu {
1139
1155
  buttons: [MenuButton!]!
1140
1156
  category: String
1141
- children: [Menu!]!
1157
+ children(permittedOnly: Boolean! = false): [Menu!]!
1142
1158
  columns: [MenuColumn!]!
1143
1159
  createdAt: DateTimeISO
1144
1160
  creator: User
1145
1161
  description: String
1146
1162
  detailFormId: String
1147
1163
  detailLayout: String
1148
- domain: Domain
1164
+ domain: Domain!
1149
1165
  fixedColumns: Float
1150
1166
  gridSaveUrl: String
1151
1167
  hiddenFlag: Boolean
@@ -1178,7 +1194,7 @@ type MenuButton {
1178
1194
  auth: String
1179
1195
  createdAt: DateTimeISO
1180
1196
  creator: User
1181
- domain: Domain
1197
+ domain: Domain!
1182
1198
  icon: String
1183
1199
  id: ID!
1184
1200
  logic: String
@@ -1213,7 +1229,7 @@ type MenuColumn {
1213
1229
  creator: User
1214
1230
  defVal: String
1215
1231
  description: String
1216
- domain: Domain
1232
+ domain: Domain!
1217
1233
  extField: Boolean
1218
1234
  formEditor: String
1219
1235
  formFormat: String
@@ -1302,7 +1318,7 @@ type MenuDetail {
1302
1318
  creator: User
1303
1319
  customView: String
1304
1320
  dataProp: String
1305
- domain: Domain
1321
+ domain: Domain!
1306
1322
  entityId: String
1307
1323
  id: ID!
1308
1324
  masterField: String
@@ -1319,7 +1335,7 @@ type MenuDetail {
1319
1335
  type MenuDetailButton {
1320
1336
  createdAt: DateTimeISO
1321
1337
  creator: User
1322
- domain: Domain
1338
+ domain: Domain!
1323
1339
  icon: String
1324
1340
  id: ID!
1325
1341
  logic: String
@@ -1353,7 +1369,7 @@ type MenuDetailColumn {
1353
1369
  creator: User
1354
1370
  defVal: String
1355
1371
  description: String
1356
- domain: Domain
1372
+ domain: Domain!
1357
1373
  extField: Boolean
1358
1374
  formEditor: String
1359
1375
  formFormat: String
@@ -1495,10 +1511,15 @@ type Mutation {
1495
1511
  """To activate user"""
1496
1512
  activateUser(userId: String!): Boolean!
1497
1513
 
1498
- """To attach a contact on Employee"""
1514
+ """
1515
+ Attaches an existing contact to an employee. The contact is identified by its ID and the employee is identified by their ID.
1516
+ """
1499
1517
  attachContact(contactId: String!, id: String!): Employee!
1500
1518
  cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
1501
1519
 
1520
+ """To clear translations cache"""
1521
+ clearTranslationsCache: Boolean!
1522
+
1502
1523
  """To clone a Board from existing Board"""
1503
1524
  cloneBoard(id: String!, patch: BoardPatch!, targetGroupId: String, targetSubdomain: String!): Board!
1504
1525
 
@@ -1549,7 +1570,9 @@ type Mutation {
1549
1570
  """To create domain (Only superuser is granted this privilege.)"""
1550
1571
  createDomain(domainInput: DomainPatch!): Domain!
1551
1572
 
1552
- """To create new Employee"""
1573
+ """
1574
+ 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.
1575
+ """
1553
1576
  createEmployee(employee: NewEmployee!): Employee!
1554
1577
 
1555
1578
  """To create new Entity"""
@@ -1588,6 +1611,9 @@ type Mutation {
1588
1611
  """To create new ApprovalLine for current user"""
1589
1612
  createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1590
1613
 
1614
+ """To create my new PagePreference"""
1615
+ createMyPagePreference(pagePreference: NewPagePreference!): PagePreference!
1616
+
1591
1617
  """To create new Notification"""
1592
1618
  createNotification(notification: NewNotification!): Notification!
1593
1619
 
@@ -1597,6 +1623,12 @@ type Mutation {
1597
1623
  """To create new Oauth2Client"""
1598
1624
  createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
1599
1625
 
1626
+ """To create new PDFRelease"""
1627
+ createPDFRelease(pdfRelease: NewPDFRelease!): PDFRelease!
1628
+
1629
+ """To create new PDFTemplate"""
1630
+ createPDFTemplate(pdfTemplate: NewPDFTemplate!): PDFTemplate!
1631
+
1600
1632
  """To create new PayloadLog"""
1601
1633
  createPayloadLog(payloadLog: NewPayloadLog!): PayloadLog!
1602
1634
 
@@ -1629,6 +1661,9 @@ type Mutation {
1629
1661
 
1630
1662
  """To create new user"""
1631
1663
  createUser(user: NewUser!): User!
1664
+
1665
+ """To create new UserPreference"""
1666
+ createUserPreference(preference: NewUserPreference!): UserPreference!
1632
1667
  deleteAppBinding(id: String!): Boolean!
1633
1668
 
1634
1669
  """To delete appliance"""
@@ -1643,7 +1678,7 @@ type Mutation {
1643
1678
  """To delete multiple ApprovalLines"""
1644
1679
  deleteApprovalLines(ids: [String!]!): Boolean!
1645
1680
  deleteAttachment(id: String!): Boolean!
1646
- deleteAttachmentsByRef(refBys: [String!]!): Boolean!
1681
+ deleteAttachmentsByRef(refBys: [String!]!, refType: String): Boolean!
1647
1682
 
1648
1683
  """To delete AttributeSet"""
1649
1684
  deleteAttributeSet(id: String!): Boolean!
@@ -1700,10 +1735,14 @@ type Mutation {
1700
1735
  """To delete multiple domains (Only superuser is granted this privilege.)"""
1701
1736
  deleteDomains(names: [String!]!): Boolean!
1702
1737
 
1703
- """To delete Employee"""
1738
+ """
1739
+ Deletes an employee record identified by the given ID. Also deletes any attachments associated with the employee.
1740
+ """
1704
1741
  deleteEmployee(id: String!): Boolean!
1705
1742
 
1706
- """To delete multiple Employees"""
1743
+ """
1744
+ Deletes multiple employee records identified by the given IDs. Also deletes any attachments associated with each employee.
1745
+ """
1707
1746
  deleteEmployees(ids: [String!]!): Boolean!
1708
1747
 
1709
1748
  """To delete multiple Entities"""
@@ -1769,6 +1808,12 @@ type Mutation {
1769
1808
  """To delete multiple ApprovalLines for current user"""
1770
1809
  deleteMyApprovalLines(ids: [String!]!): Boolean!
1771
1810
 
1811
+ """To delete my PagePreference"""
1812
+ deleteMyPagePreference(element: String!, page: String!): Boolean!
1813
+
1814
+ """To delete my preference"""
1815
+ deleteMyUserPreference(element: String!, key: String!): Boolean!
1816
+
1772
1817
  """To delete Notification"""
1773
1818
  deleteNotification(id: String!): Boolean!
1774
1819
 
@@ -1787,6 +1832,24 @@ type Mutation {
1787
1832
  """To delete multiple Oauth2Clients"""
1788
1833
  deleteOauth2Clients(ids: [String!]!): Boolean!
1789
1834
 
1835
+ """To delete PDFRelease"""
1836
+ deletePDFRelease(id: String!): Boolean!
1837
+
1838
+ """To delete multiple PDFReleases"""
1839
+ deletePDFReleases(ids: [String!]!): Boolean!
1840
+
1841
+ """To delete PDFTemplate"""
1842
+ deletePDFTemplate(id: String!): Boolean!
1843
+
1844
+ """To delete multiple PDFTemplates"""
1845
+ deletePDFTemplates(ids: [String!]!): Boolean!
1846
+
1847
+ """To delete PagePreference"""
1848
+ deletePagePreference(id: String!): Boolean!
1849
+
1850
+ """To delete multiple PagePreferences"""
1851
+ deletePagePreferences(ids: [String!]!): Boolean!
1852
+
1790
1853
  """To delete multiple partnerSettings"""
1791
1854
  deletePartnerSettings(ids: [String!]!): Boolean!
1792
1855
 
@@ -1850,10 +1913,18 @@ type Mutation {
1850
1913
  """To delete a user"""
1851
1914
  deleteUser(email: EmailAddress!): Boolean!
1852
1915
 
1916
+ """To delete UserPreference"""
1917
+ deleteUserPreference(id: String!): Boolean!
1918
+
1919
+ """To delete multiple UserPreferences"""
1920
+ deleteUserPreferences(ids: [String!]!): Boolean!
1921
+
1853
1922
  """To delete some users"""
1854
1923
  deleteUsers(emails: [String!]!): Boolean!
1855
1924
 
1856
- """To detach a contact from Employee"""
1925
+ """
1926
+ Detaches an existing contact from an employee. The employee is identified by their ID.
1927
+ """
1857
1928
  detachContact(id: String!): Employee!
1858
1929
 
1859
1930
  """To disconnect a connection"""
@@ -1895,7 +1966,9 @@ type Mutation {
1895
1966
  """To import multiple Departments"""
1896
1967
  importDepartments(departments: [DepartmentPatch!]!): Boolean!
1897
1968
 
1898
- """To import multiple Employees"""
1969
+ """
1970
+ Imports multiple employee records into the system. Each employee record must be provided in the EmployeePatch format.
1971
+ """
1899
1972
  importEmployees(employees: [EmployeePatch!]!): Boolean!
1900
1973
 
1901
1974
  """To import multiple MenuButtons"""
@@ -1922,6 +1995,12 @@ type Mutation {
1922
1995
  """To import multiple Oauth2Clients"""
1923
1996
  importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
1924
1997
 
1998
+ """To import multiple PDFReleases"""
1999
+ importPDFReleases(pdfReleases: [PDFReleasePatch!]!): Boolean!
2000
+
2001
+ """To import multiple PDFTemplates"""
2002
+ importPDFTemplates(pdfTemplates: [PDFTemplatePatch!]!): Boolean!
2003
+
1925
2004
  """To import multiple scenarios"""
1926
2005
  importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
1927
2006
 
@@ -1969,6 +2048,14 @@ type Mutation {
1969
2048
  visibility: String!
1970
2049
  ): BoardTemplate!
1971
2050
 
2051
+ """
2052
+ Registers an existing employee as a system user, granting them access to the system. The employee is identified by their ID.
2053
+ """
2054
+ registerEmployeeAsSystemUser(
2055
+ """Employee Id"""
2056
+ employeeId: String!
2057
+ ): Boolean!
2058
+
1972
2059
  """To release a Board"""
1973
2060
  releaseBoard(id: String!): Board!
1974
2061
  renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
@@ -1985,7 +2072,7 @@ type Mutation {
1985
2072
  """
1986
2073
  To run new scenario instance and will return the result after the scenario stop.
1987
2074
  """
1988
- runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
2075
+ runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceRunResult!
1989
2076
  sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
1990
2077
  singleUpload(file: Upload!): Attachment!
1991
2078
 
@@ -2058,7 +2145,9 @@ type Mutation {
2058
2145
  """To update multiple domains (Only superuser is granted this privilege.)"""
2059
2146
  updateDomains(patches: [DomainPatch!]!): Boolean!
2060
2147
 
2061
- """To modify Employee information"""
2148
+ """
2149
+ 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.
2150
+ """
2062
2151
  updateEmployee(id: String!, patch: EmployeePatch!): Employee!
2063
2152
 
2064
2153
  """To modify Entity' information"""
@@ -2113,7 +2202,9 @@ type Mutation {
2113
2202
  """To modify multiple Departments' information"""
2114
2203
  updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
2115
2204
 
2116
- """To modify multiple Employees' information"""
2205
+ """
2206
+ 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".
2207
+ """
2117
2208
  updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
2118
2209
 
2119
2210
  """To modify multiple Entitys' information"""
@@ -2134,6 +2225,12 @@ type Mutation {
2134
2225
  """To modify multiple NotificationRules' information"""
2135
2226
  updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
2136
2227
 
2228
+ """To modify multiple PDFReleases' information"""
2229
+ updateMultiplePDFRelease(patches: [PDFReleasePatch!]!): [PDFRelease!]!
2230
+
2231
+ """To modify multiple PDFTemplates' information"""
2232
+ updateMultiplePDFTemplate(patches: [PDFTemplatePatch!]!): [PDFTemplate!]!
2233
+
2137
2234
  """To modify multiple PartnerSettings' information"""
2138
2235
  updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
2139
2236
 
@@ -2167,6 +2264,12 @@ type Mutation {
2167
2264
  """To modify ApprovalLine information for current user"""
2168
2265
  updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
2169
2266
 
2267
+ """To create or update my PagePreference"""
2268
+ updateMyPagePreference(element: String!, page: String!, preference: Object!): PagePreference!
2269
+
2270
+ """To create or update my preference"""
2271
+ updateMyUserPreference(key: String!, preference: Object!): UserPreference!
2272
+
2170
2273
  """To modify Notification information"""
2171
2274
  updateNotification(id: String!, patch: NotificationPatch!): Notification!
2172
2275
 
@@ -2176,6 +2279,12 @@ type Mutation {
2176
2279
  """To modify Oauth2Client information"""
2177
2280
  updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
2178
2281
 
2282
+ """To modify PDFRelease information"""
2283
+ updatePDFRelease(id: String!, patch: PDFReleasePatch!): PDFRelease!
2284
+
2285
+ """To modify PDFTemplate information"""
2286
+ updatePDFTemplate(id: String!, patch: PDFTemplatePatch!): PDFTemplate!
2287
+
2179
2288
  """To modify PayloadLog information"""
2180
2289
  updatePayloadLog(id: String!, patch: PayloadLogPatch!): PayloadLog!
2181
2290
 
@@ -2221,6 +2330,9 @@ type Mutation {
2221
2330
  """To modify user information"""
2222
2331
  updateUser(email: EmailAddress!, patch: UserPatch!): User!
2223
2332
 
2333
+ """To modify UserPreference information"""
2334
+ updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
2335
+
2224
2336
  """To update roles for a user"""
2225
2337
  updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
2226
2338
  }
@@ -2259,6 +2371,7 @@ input NewAttachment {
2259
2371
  file: Upload!
2260
2372
  refBy: String
2261
2373
  refType: String
2374
+ tags: Object
2262
2375
  }
2263
2376
 
2264
2377
  input NewAttributeSet {
@@ -2303,12 +2416,14 @@ input NewCommonCode {
2303
2416
  input NewCommonCodeDetail {
2304
2417
  commonCode: ObjectRef!
2305
2418
  description: String
2419
+ labels: Object
2306
2420
  name: String!
2307
2421
  rank: Float!
2308
2422
  }
2309
2423
 
2310
2424
  input NewConnection {
2311
2425
  description: String
2426
+ edge: ObjectRef
2312
2427
  endpoint: String
2313
2428
  name: String!
2314
2429
  params: String
@@ -2341,16 +2456,21 @@ input NewDepartment {
2341
2456
  input NewEmployee {
2342
2457
  active: Boolean
2343
2458
  alias: String
2459
+ bankAccount: String
2460
+ bankName: String
2461
+ contact: ObjectRefForContact
2344
2462
  controlNo: String!
2345
- department: ObjectRef
2463
+ department: ObjectRefForDepartment
2464
+ emergencyContact: String
2465
+ emergencyContactPhone: String
2346
2466
  extension: String
2347
- hiredOn: String
2467
+ hiredOn: DateTimeISO
2348
2468
  jobPosition: String
2349
2469
  jobResponsibility: String
2350
2470
  name: String!
2351
2471
  note: String
2352
2472
  photo: Upload
2353
- retiredAt: String
2473
+ retiredOn: DateTimeISO
2354
2474
  supervisor: ObjectRefForEmployee
2355
2475
  type: EmployeeType
2356
2476
  user: ObjectRefForUser
@@ -2617,6 +2737,35 @@ input NewOauth2Client {
2617
2737
  webhook: String
2618
2738
  }
2619
2739
 
2740
+ input NewPDFRelease {
2741
+ active: Boolean
2742
+ description: String
2743
+ name: String!
2744
+ params: String
2745
+ state: PDFReleaseStatus
2746
+ }
2747
+
2748
+ input NewPDFTemplate {
2749
+ active: Boolean
2750
+ content_template: String
2751
+ cover_template: String
2752
+ description: String
2753
+ footer_template: String
2754
+ header_template: String
2755
+ last_template: String
2756
+ name: String!
2757
+ page_size: String = "A4"
2758
+ state: PDFTemplateStatus
2759
+ watermark: String
2760
+ }
2761
+
2762
+ input NewPagePreference {
2763
+ element: String
2764
+ page: String
2765
+ preference: Object!
2766
+ user: ObjectRef!
2767
+ }
2768
+
2620
2769
  input NewPayloadLog {
2621
2770
  description: String
2622
2771
  name: String!
@@ -2663,9 +2812,10 @@ input NewScenario {
2663
2812
  active: Boolean
2664
2813
  description: String
2665
2814
  name: String!
2666
- privilege: PrivilegeInput
2815
+ role: ObjectRef
2667
2816
  schedule: String
2668
2817
  timezone: String
2818
+ ttl: Float
2669
2819
  type: String
2670
2820
  }
2671
2821
 
@@ -2677,12 +2827,34 @@ input NewSetting {
2677
2827
  }
2678
2828
 
2679
2829
  input NewStateRegister {
2830
+ """Description of the state register"""
2680
2831
  description: String
2832
+
2833
+ """Group name for the state register"""
2834
+ group: String
2835
+
2836
+ """Name of the state register"""
2681
2837
  name: String!
2838
+
2839
+ """Number of decimal places if the state is a number type"""
2840
+ place: String
2841
+
2842
+ """
2843
+ Reference to an external entity or data, used as a flexible foreign key
2844
+ """
2682
2845
  refBy: String
2846
+
2847
+ """Current state value"""
2683
2848
  state: Object
2849
+
2850
+ """Time to live for the state value in seconds"""
2684
2851
  ttl: Int
2852
+
2853
+ """Type of the state"""
2685
2854
  type: String
2855
+
2856
+ """Unit of the state value"""
2857
+ unit: String
2686
2858
  }
2687
2859
 
2688
2860
  input NewTerminology {
@@ -2719,12 +2891,18 @@ input NewUserByDomainWizardInput {
2719
2891
  roles: [NewRole!]!
2720
2892
  }
2721
2893
 
2894
+ input NewUserPreference {
2895
+ key: String!
2896
+ preference: Object!
2897
+ user: ObjectRef!
2898
+ }
2899
+
2722
2900
  """Entity for Notification"""
2723
2901
  type Notification {
2724
2902
  body: String
2725
2903
  createdAt: DateTimeISO
2726
2904
  creator: User
2727
- domain: Domain
2905
+ domain: Domain!
2728
2906
  id: ID!
2729
2907
  image: String
2730
2908
  owner: User
@@ -2758,7 +2936,7 @@ type NotificationRule {
2758
2936
  creator: User
2759
2937
  deletedAt: DateTimeISO
2760
2938
  description: String
2761
- domain: Domain
2939
+ domain: Domain!
2762
2940
  id: ID!
2763
2941
  name: String
2764
2942
 
@@ -2815,7 +2993,7 @@ type Oauth2Client {
2815
2993
  createdAt: DateTimeISO
2816
2994
  creator: User
2817
2995
  description: String
2818
- domain: Domain
2996
+ domain: Domain!
2819
2997
  expires: DateTimeISO
2820
2998
  grantType: String
2821
2999
  icon: String
@@ -2886,6 +3064,34 @@ input ObjectRefApprovalLineOwnerType {
2886
3064
  name: String
2887
3065
  }
2888
3066
 
3067
+ input ObjectRefForContact {
3068
+ address: String
3069
+
3070
+ """Field description"""
3071
+ description: String
3072
+ email: EmailAddress
3073
+
3074
+ """Field id"""
3075
+ id: ID!
3076
+
3077
+ """Field name"""
3078
+ name: String
3079
+ phone: String
3080
+ }
3081
+
3082
+ input ObjectRefForDepartment {
3083
+ controlNo: String
3084
+
3085
+ """Field description"""
3086
+ description: String
3087
+
3088
+ """Field id"""
3089
+ id: ID!
3090
+
3091
+ """Field name"""
3092
+ name: String
3093
+ }
3094
+
2889
3095
  input ObjectRefForEmployee {
2890
3096
  active: Boolean
2891
3097
  alias: String
@@ -2894,7 +3100,7 @@ input ObjectRefForEmployee {
2894
3100
  """Field description"""
2895
3101
  description: String
2896
3102
  email: EmailAddress
2897
- hiredOn: String
3103
+ hiredOn: DateTimeISO
2898
3104
 
2899
3105
  """Field id"""
2900
3106
  id: ID!
@@ -2942,18 +3148,123 @@ enum OrgMemberTargetType {
2942
3148
  Role
2943
3149
  }
2944
3150
 
3151
+ """Entity for PDFRelease"""
3152
+ type PDFRelease {
3153
+ active: Boolean
3154
+ createdAt: DateTimeISO
3155
+ creator: User
3156
+ deletedAt: DateTimeISO
3157
+ description: String
3158
+ domain: Domain
3159
+ filePath: String
3160
+ fileUrl: String
3161
+ id: ID!
3162
+ name: String
3163
+ state: String
3164
+ template: PDFTemplate!
3165
+ templateId: String!
3166
+ updatedAt: DateTimeISO
3167
+ updater: User
3168
+ }
3169
+
3170
+ type PDFReleaseList {
3171
+ items: [PDFRelease!]!
3172
+ total: Int!
3173
+ }
3174
+
3175
+ input PDFReleasePatch {
3176
+ active: Boolean
3177
+ cuFlag: String
3178
+ description: String
3179
+ id: ID
3180
+ name: String
3181
+ state: PDFReleaseStatus
3182
+ }
3183
+
3184
+ """state enumeration of a PDFRelease"""
3185
+ enum PDFReleaseStatus {
3186
+ failed
3187
+ published
3188
+ }
3189
+
3190
+ """Entity for PDFTemplate"""
3191
+ type PDFTemplate {
3192
+ active: Boolean
3193
+ content_template: String
3194
+ cover_template: String
3195
+ createdAt: DateTimeISO
3196
+ creator: User
3197
+ description: String
3198
+ domain: Domain
3199
+ footer_template: String
3200
+ header_template: String
3201
+ id: ID!
3202
+ last_template: String
3203
+ name: String
3204
+ page_size: String
3205
+ state: String
3206
+ updatedAt: DateTimeISO
3207
+ updater: User
3208
+ watermark: String
3209
+ }
3210
+
3211
+ type PDFTemplateList {
3212
+ items: [PDFTemplate!]!
3213
+ total: Int!
3214
+ }
3215
+
3216
+ input PDFTemplatePatch {
3217
+ active: Boolean
3218
+ content_template: String
3219
+ cover_template: String
3220
+ cuFlag: String
3221
+ description: String
3222
+ footer_template: String
3223
+ header_template: String
3224
+ id: ID
3225
+ last_template: String
3226
+ name: String
3227
+ page_size: String = "A4"
3228
+ state: PDFTemplateStatus
3229
+ }
3230
+
3231
+ """state enumeration of a PDF Template"""
3232
+ enum PDFTemplateStatus {
3233
+ draft
3234
+ released
3235
+ }
3236
+
3237
+ """Entity for PagePreference"""
3238
+ type PagePreference {
3239
+ createdAt: DateTimeISO
3240
+ creator: User
3241
+ domain: Domain!
3242
+ element: String
3243
+ id: ID!
3244
+ page: String
3245
+ preference: Object
3246
+ updatedAt: DateTimeISO
3247
+ updater: User
3248
+ user: User!
3249
+ }
3250
+
3251
+ type PagePreferenceList {
3252
+ items: [PagePreference!]!
3253
+ total: Int!
3254
+ }
3255
+
2945
3256
  input Pagination {
2946
3257
  limit: Int
2947
3258
  page: Int
2948
3259
  }
2949
3260
 
2950
3261
  type Partner {
2951
- approvedAt: DateTimeISO!
3262
+ approvedAt: DateTimeISO
2952
3263
  approver: User
2953
3264
  domain: Domain!
2954
3265
  id: ID!
2955
3266
  partnerDomain: Domain!
2956
- requestedAt: DateTimeISO!
3267
+ requestedAt: DateTimeISO
2957
3268
  requester: User
2958
3269
  }
2959
3270
 
@@ -2968,7 +3279,7 @@ type PartnerSetting {
2968
3279
  createdAt: DateTimeISO
2969
3280
  creator: User
2970
3281
  description: String
2971
- domain: Domain
3282
+ domain: Domain!
2972
3283
  id: ID!
2973
3284
  name: String
2974
3285
  partnerDomain: Domain
@@ -2993,11 +3304,23 @@ input PartnerSettingPatch {
2993
3304
  value: String
2994
3305
  }
2995
3306
 
3307
+ type PasswordRule {
3308
+ allowRepeat: Boolean
3309
+ digit: Boolean
3310
+ looseCharacterLength: Float
3311
+ lowerCase: Boolean
3312
+ specialCharacter: Boolean
3313
+ tightCharacterLength: Float
3314
+ upperCase: Boolean
3315
+ useLoosePattern: Boolean
3316
+ useTightPattern: Boolean
3317
+ }
3318
+
2996
3319
  """Entity for PayloadLog"""
2997
3320
  type PayloadLog {
2998
3321
  createdAt: DateTimeISO
2999
3322
  creator: User
3000
- domain: Domain
3323
+ domain: Domain!
3001
3324
  endpoint: String!
3002
3325
  id: ID!
3003
3326
  name: String!
@@ -3114,13 +3437,6 @@ type Privilege {
3114
3437
  updater: User
3115
3438
  }
3116
3439
 
3117
- input PrivilegeInput {
3118
- category: String
3119
- owner: Boolean
3120
- privilege: String
3121
- super: Boolean
3122
- }
3123
-
3124
3440
  type PrivilegeList {
3125
3441
  items: [Privilege!]
3126
3442
  total: Int
@@ -3163,11 +3479,18 @@ type PropertySpec {
3163
3479
  name: String!
3164
3480
  placeholder: String
3165
3481
  property: Object
3482
+ styles: Object
3166
3483
  type: String!
3167
3484
  }
3168
3485
 
3169
3486
  type Query {
3170
3487
  APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
3488
+
3489
+ """To fetch a PDFTemplate"""
3490
+ PDFTemplate(id: String!): PDFTemplate
3491
+
3492
+ """To fetch multiple PDFTemplates"""
3493
+ PDFTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PDFTemplateList!
3171
3494
  appBinding(id: String!): AppBinding!
3172
3495
  appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
3173
3496
 
@@ -3240,19 +3563,25 @@ type Query {
3240
3563
  boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
3241
3564
  chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
3242
3565
 
3243
- """To check if system would provide default password to create new user"""
3566
+ """
3567
+ Checks if the system is configured to provide a default password for new users.
3568
+ """
3244
3569
  checkDefaultPassword: Boolean!
3245
3570
 
3246
- """To check if system would provide default password to create new user"""
3571
+ """
3572
+ Determines whether the system provides a default password when creating a new user.
3573
+ """
3247
3574
  checkResettablePasswordToDefault: Boolean!
3248
3575
 
3249
3576
  """To fetch the preset of role for new user"""
3250
3577
  checkRolePreset: [Role!]!
3251
3578
 
3252
- """To check if current user is belongs to current domain"""
3579
+ """
3580
+ Checks if the current authenticated user belongs to the current domain.
3581
+ """
3253
3582
  checkUserBelongsDomain: Boolean!
3254
3583
 
3255
- """..."""
3584
+ """Checks if a user with the given email address exists in the system."""
3256
3585
  checkUserExistence(email: EmailAddress!): Boolean!
3257
3586
 
3258
3587
  """To fetch common approval lines"""
@@ -3309,10 +3638,17 @@ type Query {
3309
3638
  """To fetch domains with given privilege for user"""
3310
3639
  domainsWithPrivilege(category: String!, privilege: String!): [Domain!]!
3311
3640
 
3312
- """To fetch a Employee"""
3641
+ """To fetch multiple appliance"""
3642
+ edges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
3643
+
3644
+ """
3645
+ Fetches a specific employee by their unique ID. Returns the employee object if found, or null if not found.
3646
+ """
3313
3647
  employee(id: String!): Employee
3314
3648
 
3315
- """To fetch multiple Employees"""
3649
+ """
3650
+ Fetches a list of employees based on provided query parameters. Supports searching by name, control number, and alias.
3651
+ """
3316
3652
  employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
3317
3653
 
3318
3654
  """To fetch multiple Entities"""
@@ -3415,12 +3751,30 @@ type Query {
3415
3751
  myFavorites: [Favorite!]!
3416
3752
  myLoginHistories(limit: Float!): [LoginHistory!]!
3417
3753
 
3754
+ """To fetch my own Menus"""
3755
+ myMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
3756
+
3418
3757
  """To fetch my notifications"""
3419
3758
  myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3420
3759
 
3760
+ """To fetch a User's own PagePreference"""
3761
+ myPageAllPreferences(page: String!): [PagePreference!]
3762
+
3763
+ """To fetch a User's own PagePreference"""
3764
+ myPagePreference(element: String!, page: String!): PagePreference
3765
+
3766
+ """To fetch multiple PagePreferences"""
3767
+ myPagePreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PagePreferenceList!
3768
+
3421
3769
  """To fetch roles of current user"""
3422
3770
  myRoles: [Role!]!
3423
3771
 
3772
+ """To fetch a User's own UserPreference"""
3773
+ myUserPreference(element: String!, key: String!): UserPreference
3774
+
3775
+ """To fetch multiple UserPreferences"""
3776
+ myUserPreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserPreferenceList!
3777
+
3424
3778
  """To fetch a Notification"""
3425
3779
  notification(id: String!): Notification
3426
3780
 
@@ -3439,6 +3793,9 @@ type Query {
3439
3793
  """To fetch multiple Oauth2Clients"""
3440
3794
  oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
3441
3795
 
3796
+ """To fetch a PagePreference"""
3797
+ pagePreference(id: String!): PagePreference
3798
+
3442
3799
  """To fetch specific domain's CommonCodes by given name"""
3443
3800
  partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
3444
3801
 
@@ -3449,12 +3806,23 @@ type Query {
3449
3806
  partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
3450
3807
  partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
3451
3808
 
3809
+ """
3810
+ Retrieves the current password rule configuration for the system, such as required character types and minimum length.
3811
+ """
3812
+ passwordRule: PasswordRule!
3813
+
3452
3814
  """To fetch a PayloadLog"""
3453
3815
  payloadLog(id: String!): PayloadLog!
3454
3816
 
3455
3817
  """To fetch multiple PayloadLogs"""
3456
3818
  payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
3457
3819
 
3820
+ """To fetch a PDFRelease"""
3821
+ pdfRelease(id: String!): PDFRelease
3822
+
3823
+ """To fetch multiple PDFReleases"""
3824
+ pdfReleases(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PDFReleaseList!
3825
+
3458
3826
  """To fetch a PlayGroup"""
3459
3827
  playGroup(id: String!): PlayGroup
3460
3828
 
@@ -3464,6 +3832,9 @@ type Query {
3464
3832
  """To fetch multiple PlayGroups"""
3465
3833
  playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
3466
3834
 
3835
+ """To fetch a UserPreference"""
3836
+ preference(id: String!): UserPreference
3837
+
3467
3838
  """To fetch a PrinterDevice"""
3468
3839
  printerDevice(id: String!): PrinterDevice!
3469
3840
 
@@ -3543,7 +3914,7 @@ type Query {
3543
3914
  """To fetch multiple Themes"""
3544
3915
  themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
3545
3916
 
3546
- """To fetch user"""
3917
+ """Fetches a user by their email address within the current domain."""
3547
3918
  user(email: EmailAddress!): User!
3548
3919
 
3549
3920
  """To fetch Menus by role"""
@@ -3552,7 +3923,9 @@ type Query {
3552
3923
  """To fetch roles of a user"""
3553
3924
  userRoles(userId: String!): [UserRole!]!
3554
3925
 
3555
- """To fetch multiple users"""
3926
+ """
3927
+ Fetches a list of users based on provided search parameters within the current domain.
3928
+ """
3556
3929
  users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
3557
3930
  vendors: [Domain!]!
3558
3931
  }
@@ -3569,7 +3942,7 @@ type Role {
3569
3942
  description: String
3570
3943
  domain: Domain!
3571
3944
  id: ID!
3572
- name: String!
3945
+ name: String
3573
3946
  privileges: [Privilege!]
3574
3947
  updatedAt: DateTimeISO
3575
3948
  updater: User
@@ -3605,7 +3978,7 @@ type Scenario {
3605
3978
  createdAt: DateTimeISO
3606
3979
  creator: User
3607
3980
  description: String
3608
- domain: Domain
3981
+ domain: Domain!
3609
3982
  id: ID!
3610
3983
  instances: [ScenarioInstance!]
3611
3984
  name: String!
@@ -3614,11 +3987,13 @@ type Scenario {
3614
3987
  """accessible and executable system-wide"""
3615
3988
  public: Boolean
3616
3989
  publishTags: [Connection!]!
3990
+ role: Role
3617
3991
  schedule: String
3618
3992
  scheduleId: String
3619
3993
  state: String
3620
3994
  steps: [Step!]
3621
3995
  timezone: String
3996
+ ttl: Float
3622
3997
  type: String
3623
3998
  updatedAt: DateTimeISO
3624
3999
  updater: User
@@ -3651,6 +4026,17 @@ type ScenarioInstanceProgress {
3651
4026
  steps: Int!
3652
4027
  }
3653
4028
 
4029
+ type ScenarioInstanceRunResult {
4030
+ data: Object
4031
+ instanceName: String
4032
+ message: String
4033
+ result: Object
4034
+ scenarioName: String
4035
+ state: String
4036
+ timestamp: DateTimeISO
4037
+ variables: Object
4038
+ }
4039
+
3654
4040
  type ScenarioInstanceState {
3655
4041
  data: Object
3656
4042
  domain: Domain
@@ -3683,10 +4069,11 @@ input ScenarioPatch {
3683
4069
  description: String
3684
4070
  id: ID
3685
4071
  name: String
3686
- privilege: PrivilegeInput
4072
+ role: ObjectRef
3687
4073
  schedule: String
3688
4074
  steps: [StepPatch!]
3689
4075
  timezone: String
4076
+ ttl: Float
3690
4077
  type: String
3691
4078
  }
3692
4079
 
@@ -3701,7 +4088,7 @@ type Setting {
3701
4088
  createdAt: DateTimeISO
3702
4089
  creator: User
3703
4090
  description: String
3704
- domain: Domain
4091
+ domain: Domain!
3705
4092
  id: ID!
3706
4093
  name: String!
3707
4094
  updatedAt: DateTimeISO
@@ -3735,36 +4122,113 @@ input Sorting {
3735
4122
 
3736
4123
  """Entity for StateRegister"""
3737
4124
  type StateRegister {
4125
+ """Creation time of the state register"""
3738
4126
  createdAt: DateTimeISO
4127
+
4128
+ """User who created the state register"""
3739
4129
  creator: User
4130
+
4131
+ """ID of the user who created the state register"""
4132
+ creatorId: String
4133
+
4134
+ """Description of the state register"""
3740
4135
  description: String
3741
- domain: Domain
4136
+
4137
+ """Associated domain for the state register"""
4138
+ domain: Domain!
4139
+
4140
+ """ID of the associated domain"""
4141
+ domainId: String!
4142
+
4143
+ """Group name for the state register"""
4144
+ group: String
3742
4145
  id: ID!
4146
+
4147
+ """Name of the state register"""
3743
4148
  name: String
4149
+
4150
+ """Number of decimal places if the state is a number type"""
4151
+ place: String
4152
+
4153
+ """
4154
+ Reference to an external entity or data, used as a flexible foreign key
4155
+ """
3744
4156
  refBy: String
4157
+
4158
+ """Current state value"""
3745
4159
  state: Object
4160
+
4161
+ """Time to live for the state value in seconds"""
3746
4162
  ttl: Int
4163
+
4164
+ """Type of the state"""
3747
4165
  type: String
4166
+
4167
+ """Unit of the state value"""
4168
+ unit: String
4169
+
4170
+ """Last update time of the state register"""
3748
4171
  updatedAt: DateTimeISO
4172
+
4173
+ """User who last updated the state register"""
3749
4174
  updater: User
4175
+
4176
+ """ID of the user who last updated the state register"""
4177
+ updaterId: String
4178
+
4179
+ """User who wrote the state"""
3750
4180
  writer: User
4181
+
4182
+ """ID of the user who wrote the state"""
4183
+ writerId: String
4184
+
4185
+ """Time when the state was recorded"""
3751
4186
  wroteAt: DateTimeISO
3752
4187
  }
3753
4188
 
3754
4189
  type StateRegisterList {
4190
+ """List of state registers"""
3755
4191
  items: [StateRegister!]!
4192
+
4193
+ """Total number of state registers"""
3756
4194
  total: Int!
3757
4195
  }
3758
4196
 
3759
4197
  input StateRegisterPatch {
4198
+ """Flag indicating create/update operations"""
3760
4199
  cuFlag: String
4200
+
4201
+ """Description of the state register"""
3761
4202
  description: String
4203
+
4204
+ """Group name for the state register"""
4205
+ group: String
4206
+
4207
+ """ID of the state register"""
3762
4208
  id: ID
4209
+
4210
+ """Name of the state register"""
3763
4211
  name: String
4212
+
4213
+ """Number of decimal places if the state is a number type"""
4214
+ place: String
4215
+
4216
+ """
4217
+ Reference to an external entity or data, used as a flexible foreign key
4218
+ """
3764
4219
  refBy: String
4220
+
4221
+ """Current state value"""
3765
4222
  state: Object
4223
+
4224
+ """Time to live for the state value in seconds"""
3766
4225
  ttl: Int
4226
+
4227
+ """Type of the state"""
3767
4228
  type: String
4229
+
4230
+ """Unit of the state value"""
4231
+ unit: String
3768
4232
  }
3769
4233
 
3770
4234
  type Step {
@@ -3838,6 +4302,7 @@ type TaskTypeList {
3838
4302
  type Terminology {
3839
4303
  category: String!
3840
4304
  createdAt: DateTimeISO
4305
+ creator: User
3841
4306
  description: String
3842
4307
  display: String!
3843
4308
  domain: Domain!
@@ -3845,6 +4310,7 @@ type Terminology {
3845
4310
  locale: String!
3846
4311
  name: String!
3847
4312
  updatedAt: DateTimeISO
4313
+ updater: User
3848
4314
  }
3849
4315
 
3850
4316
  type TerminologyList {
@@ -3853,12 +4319,12 @@ type TerminologyList {
3853
4319
  }
3854
4320
 
3855
4321
  input TerminologyPatch {
3856
- category: String!
4322
+ category: String
3857
4323
  cuFlag: String
3858
4324
  description: String
3859
- display: String!
4325
+ display: String
3860
4326
  id: ID
3861
- locale: String!
4327
+ locale: String
3862
4328
  name: String
3863
4329
  }
3864
4330
 
@@ -3869,7 +4335,7 @@ type Theme {
3869
4335
  creator: User
3870
4336
  deletedAt: DateTimeISO
3871
4337
  description: String
3872
- domain: Domain
4338
+ domain: Domain!
3873
4339
  id: ID!
3874
4340
  name: String
3875
4341
  type: String
@@ -3909,7 +4375,7 @@ type User {
3909
4375
  email: EmailAddress!
3910
4376
  id: ID!
3911
4377
  locale: String
3912
- name: String!
4378
+ name: String
3913
4379
  owner: Boolean
3914
4380
  reference: String
3915
4381
  roles: [Role!]!
@@ -3939,6 +4405,32 @@ input UserPatch {
3939
4405
  userType: String
3940
4406
  }
3941
4407
 
4408
+ """Entity for UserPreference"""
4409
+ type UserPreference {
4410
+ createdAt: DateTimeISO
4411
+ creator: User
4412
+ domain: Domain
4413
+ id: ID!
4414
+ key: String
4415
+ preference: Object
4416
+ updatedAt: DateTimeISO
4417
+ updater: User
4418
+ user: User!
4419
+ }
4420
+
4421
+ type UserPreferenceList {
4422
+ items: [UserPreference!]!
4423
+ total: Int!
4424
+ }
4425
+
4426
+ input UserPreferencePatch {
4427
+ cuFlag: String
4428
+ id: ID
4429
+ key: String!
4430
+ preference: Object!
4431
+ user: ObjectRef!
4432
+ }
4433
+
3942
4434
  type UserRole {
3943
4435
  assigned: Boolean
3944
4436
  description: String
@@ -3950,7 +4442,7 @@ type UserRole {
3950
4442
  type UsersAuthProviders {
3951
4443
  authProvider: AuthProvider
3952
4444
  createdAt: DateTimeISO
3953
- domain: Domain
4445
+ domain: Domain!
3954
4446
  id: ID!
3955
4447
  ssoId: String
3956
4448
  updatedAt: DateTimeISO