@operato/scene-legend 1.2.46 → 1.2.50

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 (28) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/attachments/3c2f6007-c06b-47ca-9508-9bcda9428fd0.svg +425 -0
  3. package/dist/svg.js +3 -3
  4. package/dist/svg.js.map +1 -1
  5. package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +3 -18
  6. package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +3 -8
  7. package/logs/application-2023-07-13-20.log +10 -0
  8. package/logs/connections-2023-07-13-20.log +80 -0
  9. package/logs/system/.144ddb221a51f7e2afac3fe1fc3dcf306a8de9ef-audit.json +3 -8
  10. package/logs/system/scenario-/354/227/220/353/204/210/354/247/200 /353/240/210/354/235/264/354/226/264 /354/203/211/354/203/201-2023-07-13-20.log" +510 -0
  11. package/package.json +2 -2
  12. package/schema.gql +875 -42
  13. package/src/svg.ts +3 -3
  14. package/tsconfig.tsbuildinfo +1 -1
  15. package/dist/editors/property-editor-gltf-info.d.ts +0 -14
  16. package/dist/editors/property-editor-gltf-info.js +0 -130
  17. package/dist/editors/property-editor-gltf-info.js.map +0 -1
  18. package/dist/templates/legend copy.d.ts +0 -18
  19. package/dist/templates/legend copy.js +0 -19
  20. package/dist/templates/legend copy.js.map +0 -1
  21. package/logs/application-2023-05-09-07.log +0 -30
  22. package/logs/application-2023-05-09-08.log +0 -2
  23. package/logs/application-2023-05-09-09.log +0 -12
  24. package/logs/application-2023-05-09-11.log +0 -4
  25. package/logs/connections-2023-05-09-07.log +0 -82
  26. package/logs/connections-2023-05-09-11.log +0 -3
  27. package/logs/system/scenario-/354/227/220/353/204/210/354/247/200 /353/240/210/354/235/264/354/226/264 /354/203/211/354/203/201-2023-05-09-11.log" +0 -165
  28. package/logs/system/scenario-/354/227/220/353/204/210/354/247/200 /353/240/210/354/235/264/354/226/264 /354/203/211/354/203/201-2023-05-09-12.log" +0 -765
package/schema.gql CHANGED
@@ -3,6 +3,15 @@
3
3
  # !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
4
4
  # -----------------------------------------------
5
5
 
6
+ input APIDocCompletionInput {
7
+ code: String!
8
+ language: String
9
+ }
10
+
11
+ type APIDocCompletionOutput {
12
+ message: String
13
+ }
14
+
6
15
  type AccessToken {
7
16
  accesToken: String!
8
17
  refreshToken: String!
@@ -117,6 +126,64 @@ enum ApplicationType {
117
126
  XILNEX
118
127
  }
119
128
 
129
+ """Entity for ApprovalLine"""
130
+ type ApprovalLine {
131
+ createdAt: Timestamp
132
+ creator: User
133
+ description: String
134
+ domain: Domain
135
+ id: ID!
136
+ model: [ApprovalLineItem!]
137
+ name: String
138
+ owner: ApprovalLineOwner
139
+ ownerEmployee: Employee
140
+ ownerType: String
141
+ ownerValue: String
142
+ updatedAt: Timestamp
143
+ updater: User
144
+ }
145
+
146
+ """Entity for approval line item"""
147
+ type ApprovalLineItem {
148
+ approver: OrgMemberTarget
149
+ type: String
150
+ value: String
151
+ }
152
+
153
+ type ApprovalLineList {
154
+ items: [ApprovalLine!]!
155
+ total: Int!
156
+ }
157
+
158
+ type ApprovalLineOwner {
159
+ controlNo: String
160
+
161
+ """Field description"""
162
+ description: String
163
+
164
+ """Field id"""
165
+ id: ID!
166
+
167
+ """Field name"""
168
+ name: String
169
+ }
170
+
171
+ """type enumeration of a approvalLineOwner"""
172
+ enum ApprovalLineOwnerType {
173
+ Common
174
+ Employee
175
+ }
176
+
177
+ input ApprovalLinePatch {
178
+ cuFlag: String
179
+ description: String
180
+ id: ID
181
+ model: Object
182
+ name: String
183
+ owner: ObjectRefApprovalLineOwnerType
184
+ ownerType: ApprovalLineOwnerType
185
+ }
186
+
120
187
  type Attachment {
121
188
  category: String
122
189
  createdAt: Timestamp!
@@ -152,6 +219,61 @@ input AttachmentPatch {
152
219
  refType: String
153
220
  }
154
221
 
222
+ """Entity for AttributeSet"""
223
+ type AttributeSet {
224
+ createdAt: Timestamp
225
+ description: String
226
+ entity: String
227
+ id: ID!
228
+ items: [AttributeSetItem!]
229
+ updatedAt: Timestamp
230
+ }
231
+
232
+ """Entity for AttributeSetItem"""
233
+ type AttributeSetItem {
234
+ active: Boolean
235
+ description: String
236
+ hidden: Boolean
237
+ name: String!
238
+ options: Object
239
+ tag: String
240
+ type: String
241
+ }
242
+
243
+ input AttributeSetItemPatch {
244
+ active: Boolean
245
+ description: String
246
+ hidden: Boolean
247
+ name: String
248
+ options: Object
249
+ tag: String
250
+ type: AttributeSetItemType
251
+ }
252
+
253
+ """type enumeration of a attribute-set-item"""
254
+ enum AttributeSetItemType {
255
+ boolean
256
+ date
257
+ datetime
258
+ file
259
+ number
260
+ select
261
+ text
262
+ }
263
+
264
+ type AttributeSetList {
265
+ items: [AttributeSet!]!
266
+ total: Int!
267
+ }
268
+
269
+ input AttributeSetPatch {
270
+ cuFlag: String
271
+ description: String
272
+ entity: String
273
+ id: ID
274
+ items: [AttributeSetItemPatch!]
275
+ }
276
+
155
277
  """Entity for Visualization Board"""
156
278
  type Board {
157
279
  createdAt: Timestamp
@@ -202,6 +324,24 @@ input BoardPatch {
202
324
  thumbnail: String
203
325
  }
204
326
 
327
+ input ChatCompletionInput {
328
+ content: String!
329
+ }
330
+
331
+ type ChatCompletionOutput {
332
+ message: String
333
+ }
334
+
335
+ input CodeDecipherInput {
336
+ code: String!
337
+ language: String
338
+ system: String
339
+ }
340
+
341
+ type CodeDecipherOutput {
342
+ message: String
343
+ }
344
+
205
345
  """Entity for CommonCode"""
206
346
  type CommonCode {
207
347
  createdAt: Timestamp
@@ -311,6 +451,57 @@ type ConnectorType {
311
451
  taskPrefixes: [String!]
312
452
  }
313
453
 
454
+ """Entity for Contact"""
455
+ type Contact {
456
+ address: String
457
+ company: String
458
+ createdAt: Timestamp
459
+ creator: User
460
+ deletedAt: Timestamp
461
+ department: String
462
+ domain: Domain
463
+ email: String
464
+ id: ID!
465
+ items: [ContactItem!]
466
+ name: String
467
+ note: String
468
+ phone: String
469
+ profile: Profile
470
+ updatedAt: Timestamp
471
+ updater: User
472
+ }
473
+
474
+ type ContactItem {
475
+ label: String!
476
+ type: String!
477
+ value: String!
478
+ }
479
+
480
+ input ContactItemPatch {
481
+ label: String!
482
+ type: String!
483
+ value: String!
484
+ }
485
+
486
+ type ContactList {
487
+ items: [Contact!]!
488
+ total: Int!
489
+ }
490
+
491
+ input ContactPatch {
492
+ address: String
493
+ company: String
494
+ cuFlag: String
495
+ department: String
496
+ email: String
497
+ id: ID
498
+ items: [ContactItemPatch!]
499
+ name: String
500
+ note: String
501
+ phone: String
502
+ profile: ProfileInput
503
+ }
504
+
314
505
  type Data {
315
506
  """Data delivered by subscription"""
316
507
  data: Object
@@ -325,9 +516,58 @@ type Data {
325
516
  """Date custom scalar type"""
326
517
  scalar Date
327
518
 
519
+ """Entity for Department"""
520
+ type Department {
521
+ active: Boolean
522
+ children: [Department!]!
523
+ controlNo: String!
524
+ createdAt: Timestamp
525
+ creator: User
526
+ deletedAt: Timestamp
527
+ description: String
528
+ domain: Domain
529
+ extension: String
530
+ id: ID!
531
+ manager: Employee
532
+ members: [Employee!]!
533
+ name: String
534
+ parent: Department
535
+ picture: String
536
+ state: String
537
+ updatedAt: Timestamp
538
+ updater: User
539
+ version: Float
540
+ }
541
+
542
+ type DepartmentList {
543
+ items: [Department!]!
544
+ total: Int!
545
+ }
546
+
547
+ input DepartmentPatch {
548
+ active: Boolean
549
+ controlNo: String
550
+ cuFlag: String
551
+ description: String
552
+ id: ID
553
+ manager: ObjectRefForEmployee
554
+ name: String
555
+ parent: ObjectRef
556
+ picture: Upload
557
+ state: DepartmentStatus
558
+ }
559
+
560
+ """state enumeration of a department"""
561
+ enum DepartmentStatus {
562
+ STATUS_A
563
+ STATUS_B
564
+ }
565
+
328
566
  type Domain {
567
+ attributes: Object
329
568
  brandImage: String
330
569
  brandName: String
570
+ children: Domain
331
571
  contentImage: String
332
572
  createdAt: Timestamp
333
573
  description: String
@@ -335,7 +575,8 @@ type Domain {
335
575
  id: ID!
336
576
  name: String!
337
577
  owner: String
338
- ownerUser: User!
578
+ ownerUser: User
579
+ parent: Domain
339
580
  subdomain: String
340
581
  systemFlag: Boolean
341
582
  theme: String
@@ -359,12 +600,15 @@ type DomainList {
359
600
  }
360
601
 
361
602
  input DomainPatch {
603
+ attributes: Object
362
604
  brandImage: String
363
605
  brandName: String
364
606
  contentImage: String
365
607
  description: String
366
608
  id: String
367
609
  name: String
610
+ owner: String
611
+ parent: ObjectRef
368
612
  subdomain: String
369
613
  systemFlag: Boolean
370
614
  theme: String
@@ -377,6 +621,64 @@ input DomainUserRoleInput {
377
621
  users: [NewUserByDomainWizardInput!]!
378
622
  }
379
623
 
624
+ """Entity for Employee"""
625
+ type Employee {
626
+ active: Boolean
627
+ address: String!
628
+ approvalLines: [ApprovalLine!]!
629
+ contact: Contact
630
+ controlNo: String!
631
+ createdAt: Timestamp
632
+ creator: User
633
+ deletedAt: Timestamp
634
+ department: Department
635
+ domain: Domain
636
+ email: String
637
+ extension: String
638
+ hiredOn: String
639
+ id: ID!
640
+ manages: [Department!]!
641
+ name: String
642
+ note: String
643
+ phone: String
644
+ photo: String
645
+ profile: Profile
646
+ supervises: [Employee!]!
647
+ supervisor: Employee
648
+ type: String
649
+ updatedAt: Timestamp
650
+ updater: User
651
+ user: User
652
+ version: Float
653
+ }
654
+
655
+ type EmployeeList {
656
+ items: [Employee!]!
657
+ total: Int!
658
+ }
659
+
660
+ input EmployeePatch {
661
+ active: Boolean
662
+ controlNo: String
663
+ cuFlag: String
664
+ department: ObjectRef
665
+ hiredOn: String
666
+ id: ID
667
+ name: String
668
+ note: String
669
+ photo: Upload
670
+ supervisor: ObjectRefForEmployee
671
+ type: EmployeeType
672
+ user: ObjectRefForUser
673
+ }
674
+
675
+ """type enumeration of a employee"""
676
+ enum EmployeeType {
677
+ FULLTIME
678
+ PARTTIME
679
+ TEMPORARY
680
+ }
681
+
380
682
  """Entity for Entity"""
381
683
  type Entity {
382
684
  active: Boolean
@@ -641,6 +943,22 @@ input GroupPatch {
641
943
  name: String
642
944
  }
643
945
 
946
+ input ImageCompletionInput {
947
+ count: Float!
948
+ description: String!
949
+ size: String!
950
+ }
951
+
952
+ type ImageCompletionOutput {
953
+ images: String
954
+ }
955
+
956
+ enum InheritedValueType {
957
+ Include
958
+ None
959
+ Only
960
+ }
961
+
644
962
  type Invitation {
645
963
  createdAt: Timestamp
646
964
  creator: User
@@ -1040,6 +1358,9 @@ input MenuPatch {
1040
1358
  type Mutation {
1041
1359
  """To activate user"""
1042
1360
  activateUser(userId: String!): Boolean!
1361
+
1362
+ """To attach a contact on Employee"""
1363
+ attachContact(contactId: String!, id: String!): Employee!
1043
1364
  cancelInvitation(email: String!, reference: String!, type: String!): Boolean!
1044
1365
 
1045
1366
  """To connect a connection"""
@@ -1053,9 +1374,15 @@ type Mutation {
1053
1374
 
1054
1375
  """To create new application"""
1055
1376
  createApplication(application: NewApplication!): Application!
1377
+
1378
+ """To create new ApprovalLine"""
1379
+ createApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1056
1380
  createAttachment(attachment: NewAttachment!): Attachment!
1057
1381
  createAttachments(attachments: [NewAttachment!]!): [Attachment!]!
1058
1382
 
1383
+ """To create new AttributeSet"""
1384
+ createAttributeSet(attribute: NewAttributeSet!): AttributeSet!
1385
+
1059
1386
  """To create new Board"""
1060
1387
  createBoard(board: NewBoard!): Board!
1061
1388
 
@@ -1068,9 +1395,18 @@ type Mutation {
1068
1395
  """To create new connection"""
1069
1396
  createConnection(connection: NewConnection!): Connection!
1070
1397
 
1398
+ """To create new Contact"""
1399
+ createContact(contact: NewContact!): Contact!
1400
+
1401
+ """To create new Department"""
1402
+ createDepartment(department: NewDepartment!): Department!
1403
+
1071
1404
  """To create domain (Only superuser is granted this privilege.)"""
1072
1405
  createDomain(domainInput: DomainPatch!): Domain!
1073
1406
 
1407
+ """To create new Employee"""
1408
+ createEmployee(employee: NewEmployee!): Employee!
1409
+
1074
1410
  """To create new Entity"""
1075
1411
  createEntity(entity: NewEntity!): Entity!
1076
1412
 
@@ -1104,6 +1440,15 @@ type Mutation {
1104
1440
  """To create new MenuDetailColumn"""
1105
1441
  createMenuDetailColumn(menuDetailColumn: NewMenuDetailColumn!): MenuDetailColumn!
1106
1442
 
1443
+ """To create new ApprovalLine for current user"""
1444
+ createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1445
+
1446
+ """To create new Notification"""
1447
+ createNotification(notification: NewNotification!): Notification!
1448
+
1449
+ """To create new NotificationRule"""
1450
+ createNotificationRule(notificationRule: NewNotificationRule!): NotificationRule!
1451
+
1107
1452
  """To create new Oauth2Client"""
1108
1453
  createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
1109
1454
 
@@ -1128,6 +1473,9 @@ type Mutation {
1128
1473
  """To create new Terminology"""
1129
1474
  createTerminology(terminology: NewTerminology!): Terminology!
1130
1475
 
1476
+ """To create new Theme"""
1477
+ createTheme(theme: NewTheme!): Theme!
1478
+
1131
1479
  """To create new user"""
1132
1480
  createUser(user: NewUser!): User!
1133
1481
  deleteAppBinding(id: String!): Boolean!
@@ -1137,9 +1485,21 @@ type Mutation {
1137
1485
 
1138
1486
  """To delete application"""
1139
1487
  deleteApplication(id: String!): Boolean!
1488
+
1489
+ """To delete ApprovalLine"""
1490
+ deleteApprovalLine(id: String!): Boolean!
1491
+
1492
+ """To delete multiple ApprovalLines"""
1493
+ deleteApprovalLines(ids: [String!]!): Boolean!
1140
1494
  deleteAttachment(id: String!): Boolean!
1141
1495
  deleteAttachmentsByRef(refBys: [String!]!): Boolean!
1142
1496
 
1497
+ """To delete AttributeSet"""
1498
+ deleteAttributeSet(id: String!): Boolean!
1499
+
1500
+ """To delete multiple AttributeSets"""
1501
+ deleteAttributeSets(ids: [String!]!): Boolean!
1502
+
1143
1503
  """To delete Board"""
1144
1504
  deleteBoard(id: String!): Boolean!
1145
1505
 
@@ -1161,6 +1521,18 @@ type Mutation {
1161
1521
  """To delete multiple connections"""
1162
1522
  deleteConnections(names: [String!]!): Boolean!
1163
1523
 
1524
+ """To delete Contact"""
1525
+ deleteContact(id: String!): Boolean!
1526
+
1527
+ """To delete multiple Contacts"""
1528
+ deleteContacts(ids: [String!]!): Boolean!
1529
+
1530
+ """To delete Department"""
1531
+ deleteDepartment(id: String!): Boolean!
1532
+
1533
+ """To delete multiple Departments"""
1534
+ deleteDepartments(ids: [String!]!): Boolean!
1535
+
1164
1536
  """To delete domain (Only superuser is granted this privilege.)"""
1165
1537
  deleteDomain(name: String!): Domain!
1166
1538
 
@@ -1170,6 +1542,12 @@ type Mutation {
1170
1542
  """To delete multiple domains (Only superuser is granted this privilege.)"""
1171
1543
  deleteDomains(names: [String!]!): Boolean!
1172
1544
 
1545
+ """To delete Employee"""
1546
+ deleteEmployee(id: String!): Boolean!
1547
+
1548
+ """To delete multiple Employees"""
1549
+ deleteEmployees(ids: [String!]!): Boolean!
1550
+
1173
1551
  """To delete multiple Entities"""
1174
1552
  deleteEntities(ids: [String!]!): Boolean!
1175
1553
 
@@ -1227,6 +1605,24 @@ type Mutation {
1227
1605
  """To delete multiple Menus"""
1228
1606
  deleteMenus(ids: [String!]!): Boolean!
1229
1607
 
1608
+ """To delete ApprovalLine for current user"""
1609
+ deleteMyApprovalLine(id: String!): Boolean!
1610
+
1611
+ """To delete multiple ApprovalLines for current user"""
1612
+ deleteMyApprovalLines(ids: [String!]!): Boolean!
1613
+
1614
+ """To delete Notification"""
1615
+ deleteNotification(id: String!): Boolean!
1616
+
1617
+ """To delete NotificationRule"""
1618
+ deleteNotificationRule(id: String!): Boolean!
1619
+
1620
+ """To delete multiple NotificationRules"""
1621
+ deleteNotificationRules(ids: [String!]!): Boolean!
1622
+
1623
+ """To delete multiple Notificationes"""
1624
+ deleteNotificationes(ids: [String!]!): Boolean!
1625
+
1230
1626
  """To delete Oauth2Client"""
1231
1627
  deleteOauth2Client(id: String!): Boolean!
1232
1628
 
@@ -1275,12 +1671,21 @@ type Mutation {
1275
1671
  """To delete Terminology"""
1276
1672
  deleteTerminology(id: String!): Boolean!
1277
1673
 
1674
+ """To delete Theme"""
1675
+ deleteTheme(id: String!): Boolean!
1676
+
1677
+ """To delete multiple Themes"""
1678
+ deleteThemes(ids: [String!]!): Boolean!
1679
+
1278
1680
  """To delete a user"""
1279
1681
  deleteUser(email: String!): Boolean!
1280
1682
 
1281
1683
  """To delete some users"""
1282
1684
  deleteUsers(emails: [String!]!): Boolean!
1283
1685
 
1686
+ """To detach a contact from Employee"""
1687
+ detachContact(id: String!): Employee!
1688
+
1284
1689
  """To disconnect a connection"""
1285
1690
  disconnectConnection(name: String!): Connection!
1286
1691
  domainRegister(domainInput: DomainGeneratorInput!): Domain!
@@ -1293,12 +1698,27 @@ type Mutation {
1293
1698
  getOauth2AuthUrl(id: String!): String!
1294
1699
  grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
1295
1700
 
1701
+ """To import multiple ApprovalLines"""
1702
+ importApprovalLines(approvalLines: [ApprovalLinePatch!]!): Boolean!
1703
+
1704
+ """To import multiple AttributeSets"""
1705
+ importAttributeSets(attributes: [AttributeSetPatch!]!): Boolean!
1706
+
1296
1707
  """To import multiple CommonCodeDetails"""
1297
1708
  importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
1298
1709
 
1299
1710
  """To import multiple CommonCodes"""
1300
1711
  importCommonCodes(commonCodes: [CommonCodePatch!]!): Boolean!
1301
1712
 
1713
+ """To import multiple Contacts"""
1714
+ importContacts(contacts: [ContactPatch!]!): Boolean!
1715
+
1716
+ """To import multiple Departments"""
1717
+ importDepartments(departments: [DepartmentPatch!]!): Boolean!
1718
+
1719
+ """To import multiple Employees"""
1720
+ importEmployees(employees: [EmployeePatch!]!): Boolean!
1721
+
1302
1722
  """To import multiple MenuButtons"""
1303
1723
  importMenuButtons(menuButtons: [MenuButtonPatch!]!): Boolean!
1304
1724
 
@@ -1317,6 +1737,9 @@ type Mutation {
1317
1737
  """To import multiple Menus"""
1318
1738
  importMenus(menus: [MenuPatch!]!): Boolean!
1319
1739
 
1740
+ """To import multiple NotificationRules"""
1741
+ importNotificationRules(notificationRules: [NotificationRulePatch!]!): Boolean!
1742
+
1320
1743
  """To import multiple Oauth2Clients"""
1321
1744
  importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
1322
1745
 
@@ -1326,6 +1749,9 @@ type Mutation {
1326
1749
  """To import multiple Terminologies"""
1327
1750
  importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
1328
1751
 
1752
+ """To import multiple Themes"""
1753
+ importThemes(themes: [ThemePatch!]!): Boolean!
1754
+
1329
1755
  """To inactivate user"""
1330
1756
  inactivateUser(userId: String!): Boolean!
1331
1757
  inviteCustomer(customerDomainName: String!): Boolean!
@@ -1379,8 +1805,14 @@ type Mutation {
1379
1805
  transferOwner(email: String!): Boolean!
1380
1806
  updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
1381
1807
  updateApplication(id: String!, patch: ApplicationPatch!): Application!
1808
+
1809
+ """To modify ApprovalLine information"""
1810
+ updateApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
1382
1811
  updateAttachment(id: String!, patch: AttachmentPatch!): Attachment!
1383
1812
 
1813
+ """To modify AttributeSet information"""
1814
+ updateAttributeSet(id: String!, patch: AttributeSetPatch!): AttributeSet!
1815
+
1384
1816
  """To modify Board information"""
1385
1817
  updateBoard(id: String!, patch: BoardPatch!): Board!
1386
1818
 
@@ -1393,12 +1825,21 @@ type Mutation {
1393
1825
  """To modify connection information"""
1394
1826
  updateConnection(name: String!, patch: ConnectionPatch!): Connection!
1395
1827
 
1828
+ """To modify Contact information"""
1829
+ updateContact(id: String!, patch: ContactPatch!): Contact!
1830
+
1831
+ """To modify Department information"""
1832
+ updateDepartment(id: String!, patch: DepartmentPatch!): Department!
1833
+
1396
1834
  """To update domain (Only superuser is granted this privilege.)"""
1397
1835
  updateDomain(name: String!, patch: DomainPatch!): Domain!
1398
1836
 
1399
1837
  """To update multiple domains"""
1400
1838
  updateDomains(patches: [DomainPatch!]!): Boolean!
1401
1839
 
1840
+ """To modify Employee information"""
1841
+ updateEmployee(id: String!, patch: EmployeePatch!): Employee!
1842
+
1402
1843
  """To modify Entity' information"""
1403
1844
  updateEntity(id: String!, patch: EntityPatch!): Entity!
1404
1845
 
@@ -1429,6 +1870,12 @@ type Mutation {
1429
1870
  """To modify MenuDetailColumn information"""
1430
1871
  updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
1431
1872
 
1873
+ """To modify multiple ApprovalLines' information"""
1874
+ updateMultipleApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
1875
+
1876
+ """To modify multiple AttributeSets' information"""
1877
+ updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
1878
+
1432
1879
  """To modify multiple CommonCodes' information"""
1433
1880
  updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
1434
1881
 
@@ -1438,6 +1885,15 @@ type Mutation {
1438
1885
  """To modify multiple connections' information"""
1439
1886
  updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
1440
1887
 
1888
+ """To modify multiple Contacts' information"""
1889
+ updateMultipleContact(patches: [ContactPatch!]!): [Contact!]!
1890
+
1891
+ """To modify multiple Departments' information"""
1892
+ updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
1893
+
1894
+ """To modify multiple Employees' information"""
1895
+ updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
1896
+
1441
1897
  """To modify multiple Entitys' information"""
1442
1898
  updateMultipleEntity(patches: [EntityPatch!]!): [Entity!]!
1443
1899
 
@@ -1447,6 +1903,15 @@ type Mutation {
1447
1903
  """To modify multiple Menus' information"""
1448
1904
  updateMultipleMenu(patches: [MenuPatch!]!): [Menu!]!
1449
1905
 
1906
+ """To modify multiple ApprovalLines' information for current user"""
1907
+ updateMultipleMyApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
1908
+
1909
+ """To modify multiple Notificationes' information"""
1910
+ updateMultipleNotification(patches: [NotificationPatch!]!): [Notification!]!
1911
+
1912
+ """To modify multiple NotificationRules' information"""
1913
+ updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
1914
+
1450
1915
  """To modify multiple PartnerSettings' information"""
1451
1916
  updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
1452
1917
 
@@ -1465,9 +1930,21 @@ type Mutation {
1465
1930
  """To modify multiple Terminologies' information"""
1466
1931
  updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
1467
1932
 
1933
+ """To modify multiple Themes' information"""
1934
+ updateMultipleTheme(patches: [ThemePatch!]!): [Theme!]!
1935
+
1468
1936
  """To modify multiple users information"""
1469
1937
  updateMultipleUser(patches: [UserPatch!]!): [User!]!
1470
1938
 
1939
+ """To modify ApprovalLine information for current user"""
1940
+ updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
1941
+
1942
+ """To modify Notification information"""
1943
+ updateNotification(id: String!, patch: NotificationPatch!): Notification!
1944
+
1945
+ """To modify NotificationRule information"""
1946
+ updateNotificationRule(id: String!, patch: NotificationRulePatch!): NotificationRule!
1947
+
1471
1948
  """To modify Oauth2Client information"""
1472
1949
  updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
1473
1950
 
@@ -1498,6 +1975,9 @@ type Mutation {
1498
1975
  """To modify Terminology information"""
1499
1976
  updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
1500
1977
 
1978
+ """To modify Theme information"""
1979
+ updateTheme(id: String!, patch: ThemePatch!): Theme!
1980
+
1501
1981
  """To modify user information"""
1502
1982
  updateUser(email: String!, patch: UserPatch!): User!
1503
1983
 
@@ -1525,6 +2005,14 @@ input NewApplication {
1525
2005
  webhook: String
1526
2006
  }
1527
2007
 
2008
+ input NewApprovalLine {
2009
+ description: String
2010
+ model: Object
2011
+ name: String!
2012
+ owner: ObjectRefApprovalLineOwnerType!
2013
+ ownerType: ApprovalLineOwnerType!
2014
+ }
2015
+
1528
2016
  input NewAttachment {
1529
2017
  category: String
1530
2018
  description: String
@@ -1533,6 +2021,13 @@ input NewAttachment {
1533
2021
  refType: String
1534
2022
  }
1535
2023
 
2024
+ input NewAttributeSet {
2025
+ active: Boolean
2026
+ description: String
2027
+ entity: String!
2028
+ items: [AttributeSetItemPatch!]
2029
+ }
2030
+
1536
2031
  input NewBoard {
1537
2032
  description: String
1538
2033
  groupId: String
@@ -1562,6 +2057,44 @@ input NewConnection {
1562
2057
  type: String
1563
2058
  }
1564
2059
 
2060
+ input NewContact {
2061
+ address: String
2062
+ company: String
2063
+ department: String
2064
+ email: String
2065
+ items: [ContactItemPatch!]
2066
+ name: String!
2067
+ note: String
2068
+ phone: String
2069
+ profile: ProfileInput
2070
+ }
2071
+
2072
+ input NewDepartment {
2073
+ active: Boolean
2074
+ controlNo: String!
2075
+ description: String
2076
+ extension: String
2077
+ manager: ObjectRefForEmployee
2078
+ name: String!
2079
+ parent: ObjectRef
2080
+ picture: Upload
2081
+ state: DepartmentStatus
2082
+ }
2083
+
2084
+ input NewEmployee {
2085
+ active: Boolean
2086
+ controlNo: String!
2087
+ department: ObjectRef
2088
+ extension: String
2089
+ hiredOn: String
2090
+ name: String!
2091
+ note: String
2092
+ photo: Upload
2093
+ supervisor: ObjectRefForEmployee
2094
+ type: EmployeeType
2095
+ user: ObjectRefForUser
2096
+ }
2097
+
1565
2098
  input NewEntity {
1566
2099
  active: Boolean
1567
2100
  association: String
@@ -1779,6 +2312,29 @@ input NewMenuDetailColumn {
1779
2312
  virtualField: Boolean
1780
2313
  }
1781
2314
 
2315
+ input NewNotification {
2316
+ body: String
2317
+ image: String
2318
+ ownerId: String
2319
+ property: Object
2320
+ subject: String
2321
+ timestamp: Timestamp
2322
+ title: String
2323
+ type: String
2324
+ url: String
2325
+ }
2326
+
2327
+ input NewNotificationRule {
2328
+ active: Boolean
2329
+ body: String
2330
+ description: String
2331
+ name: String!
2332
+ state: NotificationRuleStatus
2333
+ thumbnail: Upload
2334
+ title: String
2335
+ url: String
2336
+ }
2337
+
1782
2338
  input NewOauth2Client {
1783
2339
  accessToken: String
1784
2340
  accessTokenUrl: String
@@ -1848,6 +2404,13 @@ input NewTerminology {
1848
2404
  name: String!
1849
2405
  }
1850
2406
 
2407
+ input NewTheme {
2408
+ description: String
2409
+ name: String!
2410
+ type: String
2411
+ value: Object
2412
+ }
2413
+
1851
2414
  input NewUser {
1852
2415
  description: String
1853
2416
  email: String!
@@ -1866,18 +2429,89 @@ input NewUserByDomainWizardInput {
1866
2429
  roles: [NewRole!]!
1867
2430
  }
1868
2431
 
2432
+ """Entity for Notification"""
1869
2433
  type Notification {
1870
- body: String!
2434
+ body: String
2435
+ createdAt: Timestamp
2436
+ creator: User
1871
2437
  domain: Domain
2438
+ id: ID!
1872
2439
  image: String
1873
- property: Any
2440
+ owner: User
2441
+ property: Object
2442
+ state: String
1874
2443
  subject: String
1875
2444
  timestamp: Date
1876
- title: String!
2445
+ title: String
1877
2446
  type: String
2447
+ updatedAt: Timestamp
2448
+ updater: User
1878
2449
  url: String
1879
2450
  }
1880
2451
 
2452
+ type NotificationList {
2453
+ items: [Notification!]!
2454
+ total: Int!
2455
+ }
2456
+
2457
+ input NotificationPatch {
2458
+ cuFlag: String
2459
+ id: ID
2460
+ state: NotificationStatus
2461
+ }
2462
+
2463
+ """Entity for NotificationRule"""
2464
+ type NotificationRule {
2465
+ body: String
2466
+ channels: String
2467
+ createdAt: Timestamp
2468
+ creator: User
2469
+ deletedAt: Timestamp
2470
+ description: String
2471
+ domain: Domain
2472
+ id: ID!
2473
+ name: String
2474
+
2475
+ """notification recipients."""
2476
+ recipients: [RecipientItem!]
2477
+ state: String
2478
+ thumbnail: String
2479
+ title: String
2480
+ updatedAt: Timestamp
2481
+ updater: User
2482
+ url: String
2483
+ version: Float
2484
+ }
2485
+
2486
+ type NotificationRuleList {
2487
+ items: [NotificationRule!]!
2488
+ total: Int!
2489
+ }
2490
+
2491
+ input NotificationRulePatch {
2492
+ body: String
2493
+ cuFlag: String
2494
+ description: String
2495
+ id: ID
2496
+ name: String
2497
+ state: NotificationRuleStatus
2498
+ thumbnail: Upload
2499
+ title: String
2500
+ url: String
2501
+ }
2502
+
2503
+ """state enumeration of a notificationRule"""
2504
+ enum NotificationRuleStatus {
2505
+ DRAFT
2506
+ RELEASED
2507
+ }
2508
+
2509
+ """state enumeration of a notification"""
2510
+ enum NotificationStatus {
2511
+ NOTREAD
2512
+ READ
2513
+ }
2514
+
1881
2515
  """Entity for Oauth2Client"""
1882
2516
  type Oauth2Client {
1883
2517
  accessToken: String
@@ -1949,6 +2583,69 @@ input ObjectRef {
1949
2583
  name: String
1950
2584
  }
1951
2585
 
2586
+ input ObjectRefApprovalLineOwnerType {
2587
+ controlNo: String
2588
+
2589
+ """Field description"""
2590
+ description: String
2591
+
2592
+ """Field id"""
2593
+ id: ID!
2594
+
2595
+ """Field name"""
2596
+ name: String
2597
+ }
2598
+
2599
+ input ObjectRefForEmployee {
2600
+ controlNo: String
2601
+
2602
+ """Field description"""
2603
+ description: String
2604
+ email: String
2605
+
2606
+ """Field id"""
2607
+ id: ID!
2608
+
2609
+ """Field name"""
2610
+ name: String
2611
+ photo: String
2612
+ }
2613
+
2614
+ input ObjectRefForUser {
2615
+ """Field description"""
2616
+ description: String
2617
+ email: String
2618
+
2619
+ """Field id"""
2620
+ id: ID!
2621
+
2622
+ """Field name"""
2623
+ name: String
2624
+ }
2625
+
2626
+ type OrgMemberTarget {
2627
+ controlNo: String
2628
+
2629
+ """Field description"""
2630
+ description: String
2631
+
2632
+ """Field id"""
2633
+ id: ID!
2634
+
2635
+ """Field name"""
2636
+ name: String
2637
+ }
2638
+
2639
+ """type enumeration of a approval line item"""
2640
+ enum OrgMemberTargetType {
2641
+ Department
2642
+ Employee
2643
+ MyDepartment
2644
+ MySupervisor
2645
+ Myself
2646
+ Role
2647
+ }
2648
+
1952
2649
  input Pagination {
1953
2650
  limit: Int
1954
2651
  page: Int
@@ -2083,6 +2780,23 @@ input PrivilegePatch {
2083
2780
  roles: [ObjectRef!]
2084
2781
  }
2085
2782
 
2783
+ """Object type for Profile"""
2784
+ type Profile {
2785
+ left: Float
2786
+ picture: String
2787
+ top: Float
2788
+ zoom: Float
2789
+ }
2790
+
2791
+ """Input type for Profile"""
2792
+ input ProfileInput {
2793
+ file: Upload
2794
+ left: Float
2795
+ picture: String
2796
+ top: Float
2797
+ zoom: Float
2798
+ }
2799
+
2086
2800
  type PropertySpec {
2087
2801
  label: String!
2088
2802
  name: String!
@@ -2092,34 +2806,57 @@ type PropertySpec {
2092
2806
  }
2093
2807
 
2094
2808
  type Query {
2809
+ APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
2095
2810
  appBinding(id: String!): AppBinding!
2096
- appBindings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AppBindingList!
2811
+ appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
2097
2812
 
2098
2813
  """ To fetch appliance"""
2099
2814
  appliance(id: String!): Appliance!
2100
2815
 
2101
2816
  """To fetch multiple appliance"""
2102
- appliances(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApplianceList!
2817
+ appliances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
2103
2818
 
2104
2819
  """To fetch application"""
2105
2820
  application(id: String!): Application!
2106
2821
 
2107
2822
  """To fetch multiple application"""
2108
- applications(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApplicationList!
2823
+ applications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplicationList!
2824
+
2825
+ """To fetch a approval line"""
2826
+ approvalLine(id: String!): ApprovalLine
2827
+
2828
+ """To fetch referable approval lines for the user"""
2829
+ approvalLineReferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
2830
+
2831
+ """To fetch multiple approval lines"""
2832
+ approvalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
2109
2833
  attachment(id: String!): Attachment!
2110
- attachments(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AttachmentList!
2834
+ attachments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttachmentList!
2835
+
2836
+ """To fetch a AttributeSet"""
2837
+ attributeSet(id: String!): AttributeSet
2838
+
2839
+ """To fetch a AttributeSet by Entity name"""
2840
+ attributeSetByEntity(entity: String!): AttributeSet
2841
+
2842
+ """To fetch multiple AttributeSets"""
2843
+ attributeSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttributeSetList!
2111
2844
 
2112
2845
  """To fetch a board"""
2113
2846
  board(id: String!): Board!
2114
2847
 
2848
+ """To fetch a Board Model by name"""
2849
+ boardByName(name: String!): Board
2850
+
2115
2851
  """Board Usage Permissions"""
2116
2852
  boardPermissions: [String!]!
2117
2853
 
2118
2854
  """To fetch multiple Boards"""
2119
- boards(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardList!
2855
+ boards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
2120
2856
 
2121
2857
  """To fetch Boards created by me"""
2122
- boardsCreatedByMe(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardList!
2858
+ boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
2859
+ chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
2123
2860
 
2124
2861
  """To check if system would provide default password to create new user"""
2125
2862
  checkDefaultPassword: Boolean!
@@ -2136,6 +2873,9 @@ type Query {
2136
2873
  """..."""
2137
2874
  checkUserExistence(email: String!): Boolean!
2138
2875
 
2876
+ """To fetch common approval lines"""
2877
+ commonApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
2878
+
2139
2879
  """To fetch a CommonCode"""
2140
2880
  commonCode(name: String!): CommonCode
2141
2881
 
@@ -2143,32 +2883,55 @@ type Query {
2143
2883
  commonCodeDetail(id: String!): CommonCodeDetail!
2144
2884
 
2145
2885
  """To fetch multiple CommonCodeDetails"""
2146
- commonCodeDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): CommonCodeDetailList!
2886
+ commonCodeDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeDetailList!
2147
2887
 
2148
2888
  """To fetch multiple CommonCodes"""
2149
- commonCodes(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): CommonCodeList!
2889
+ commonCodes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeList!
2150
2890
 
2151
2891
  """To fetch a connector"""
2152
2892
  connection(name: String!): ConnectorType!
2153
2893
 
2154
2894
  """To fetch multiple connections"""
2155
- connections(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ConnectionList!
2895
+ connections(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ConnectionList!
2156
2896
 
2157
2897
  """To fetch the connector from a connection"""
2158
2898
  connectorByConnection(connectionName: String!): ConnectorType!
2159
2899
 
2160
2900
  """To fetch multiple connector"""
2161
2901
  connectors: ConnectorList!
2902
+
2903
+ """To fetch a Contact"""
2904
+ contact(id: String!): Contact
2905
+
2906
+ """To fetch multiple Contacts"""
2907
+ contacts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ContactList!
2162
2908
  customers: [Domain!]!
2909
+ decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
2910
+ decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
2911
+
2912
+ """To fetch a Department"""
2913
+ department(id: String!): Department
2914
+
2915
+ """To fetch a Root Department"""
2916
+ departmentRoot: Department
2917
+
2918
+ """To fetch multiple Departments"""
2919
+ departments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DepartmentList!
2163
2920
 
2164
2921
  """To fetch domain"""
2165
2922
  domain(id: String!): Domain!
2166
2923
 
2167
2924
  """To fetch all domains (Only superuser is granted this privilege.)"""
2168
- domains(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DomainList!
2925
+ domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
2926
+
2927
+ """To fetch a Employee"""
2928
+ employee(id: String!): Employee
2929
+
2930
+ """To fetch multiple Employees"""
2931
+ employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
2169
2932
 
2170
2933
  """To fetch multiple Entities"""
2171
- entities(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EntityList!
2934
+ entities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityList!
2172
2935
 
2173
2936
  """To fetch a Entity"""
2174
2937
  entity(id: String!): Entity!
@@ -2177,7 +2940,7 @@ type Query {
2177
2940
  entityColumn(id: String!): EntityColumn!
2178
2941
 
2179
2942
  """To fetch multiple EntityColumns"""
2180
- entityColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EntityColumnList!
2943
+ entityColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityColumnList!
2181
2944
 
2182
2945
  """To fetch a EntityMetadata"""
2183
2946
  entityMetadata(name: String!): EntityMetadata!
@@ -2186,10 +2949,10 @@ type Query {
2186
2949
  favorite(id: String!): Favorite!
2187
2950
 
2188
2951
  """To fetch multiple BoardFavorites"""
2189
- favoriteBoards(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardFavoriteList!
2952
+ favoriteBoards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardFavoriteList!
2190
2953
 
2191
2954
  """To fetch multiple Favorites"""
2192
- favorites(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): FavoriteList!
2955
+ favorites(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FavoriteList!
2193
2956
 
2194
2957
  """To fetch the state of a connection"""
2195
2958
  fetchConnectionState(name: String!): ConnectionState!
@@ -2198,10 +2961,7 @@ type Query {
2198
2961
  font(id: String!): Font!
2199
2962
 
2200
2963
  """To fetch multiple Fonts"""
2201
- fonts(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): FontList!
2202
-
2203
- """To fetch a Global Board Model"""
2204
- globalBoardByName(name: String!): Board
2964
+ fonts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FontList!
2205
2965
  grantedRoles: [GrantedRole!]!
2206
2966
  grantingRoles(customerId: String!): [GrantedRole!]!
2207
2967
 
@@ -2209,10 +2969,12 @@ type Query {
2209
2969
  group(id: String!): Group
2210
2970
 
2211
2971
  """To fetch multiple Groups"""
2212
- groups(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): GroupList!
2972
+ groups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): GroupList!
2213
2973
 
2214
2974
  """To query whether I have the given permission"""
2215
2975
  hasPrivilege(category: String!, name: String!): Boolean!
2976
+ i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
2977
+ imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
2216
2978
  invitation(email: String!, reference: String!, type: String!): Invitation!
2217
2979
  invitations(reference: String!, type: String!): InvitationList!
2218
2980
 
@@ -2223,7 +2985,7 @@ type Query {
2223
2985
  menuButton(id: String!): MenuButton!
2224
2986
 
2225
2987
  """To fetch multiple MenuButtons"""
2226
- menuButtons(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuButtonList!
2988
+ menuButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuButtonList!
2227
2989
 
2228
2990
  """To fetch a Menu by routing"""
2229
2991
  menuByRouting(routing: String!): Menu!
@@ -2232,7 +2994,7 @@ type Query {
2232
2994
  menuColumn(id: String!): MenuColumn!
2233
2995
 
2234
2996
  """To fetch multiple MenuColumns"""
2235
- menuColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuColumnList!
2997
+ menuColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuColumnList!
2236
2998
 
2237
2999
  """To fetch a MenuDetail"""
2238
3000
  menuDetail(id: String!): MenuDetail!
@@ -2241,32 +3003,50 @@ type Query {
2241
3003
  menuDetailButton(id: String!): MenuDetailButton!
2242
3004
 
2243
3005
  """To fetch multiple MenuDetailButtons"""
2244
- menuDetailButtons(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailButtonList!
3006
+ menuDetailButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailButtonList!
2245
3007
 
2246
3008
  """To fetch a MenuDetailColumn"""
2247
3009
  menuDetailColumn(id: String!): MenuDetailColumn!
2248
3010
 
2249
3011
  """To fetch multiple MenuDetailColumns"""
2250
- menuDetailColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailColumnList!
3012
+ menuDetailColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailColumnList!
2251
3013
 
2252
3014
  """To fetch multiple MenuDetails"""
2253
- menuDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailList!
3015
+ menuDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailList!
2254
3016
 
2255
3017
  """To fetch multiple Menus"""
2256
- menus(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuList!
3018
+ menus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
3019
+
3020
+ """To fetch approval lines only for to the user"""
3021
+ myApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
2257
3022
 
2258
3023
  """To fetch current user's Favorites"""
2259
3024
  myFavorites: [Favorite!]!
2260
3025
  myLoginHistories(limit: Float!): [LoginHistory!]!
2261
3026
 
3027
+ """To fetch my notifications"""
3028
+ myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3029
+
2262
3030
  """To fetch roles of current user"""
2263
3031
  myRoles: [Role!]!
2264
3032
 
3033
+ """To fetch a Notification"""
3034
+ notification(id: String!): Notification
3035
+
3036
+ """To fetch a NotificationRule"""
3037
+ notificationRule(id: String!): NotificationRule
3038
+
3039
+ """To fetch multiple NotificationRules"""
3040
+ notificationRules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationRuleList!
3041
+
3042
+ """To fetch multiple Notificationes"""
3043
+ notificationes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3044
+
2265
3045
  """To fetch a Oauth2Client"""
2266
3046
  oauth2Client(id: String!): Oauth2Client
2267
3047
 
2268
3048
  """To fetch multiple Oauth2Clients"""
2269
- oauth2Clients(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
3049
+ oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
2270
3050
 
2271
3051
  """To fetch specific domain's CommonCodes by given name"""
2272
3052
  partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
@@ -2276,25 +3056,25 @@ type Query {
2276
3056
 
2277
3057
  """To fetch multiple PartnerSettings"""
2278
3058
  partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
2279
- partners(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PartnerList!
3059
+ partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
2280
3060
 
2281
3061
  """To fetch a PayloadLog"""
2282
3062
  payloadLog(id: String!): PayloadLog!
2283
3063
 
2284
3064
  """To fetch multiple PayloadLogs"""
2285
- payloadLogs(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
3065
+ payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
2286
3066
 
2287
3067
  """To fetch a PlayGroup"""
2288
3068
  playGroup(id: String!): PlayGroup
2289
3069
 
2290
3070
  """To fetch multiple PlayGroups"""
2291
- playGroups(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
3071
+ playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
2292
3072
 
2293
3073
  """To fetch privilege"""
2294
3074
  privilege(category: String!, name: String!): Privilege!
2295
3075
 
2296
3076
  """To fetch multiple privileges"""
2297
- privileges(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
3077
+ privileges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
2298
3078
 
2299
3079
  """To fetch role"""
2300
3080
  role(name: String!): Role!
@@ -2306,7 +3086,7 @@ type Query {
2306
3086
  rolePrivileges(roleId: String!): [RolePrivilege!]!
2307
3087
 
2308
3088
  """To fetch multiple users"""
2309
- roles(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): RoleList!
3089
+ roles(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): RoleList!
2310
3090
 
2311
3091
  """To fetch a scenario"""
2312
3092
  scenario(id: String!): Scenario!
@@ -2315,23 +3095,23 @@ type Query {
2315
3095
  scenarioInstance(instanceName: String!): ScenarioInstance!
2316
3096
 
2317
3097
  """To fetch multiple scenario instances"""
2318
- scenarioInstances(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ScenarioInstanceList!
3098
+ scenarioInstances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioInstanceList!
2319
3099
 
2320
3100
  """To fetch multiple scenarios"""
2321
- scenarios(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ScenarioList!
2322
- searchCustomers(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DomainList!
3101
+ scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
3102
+ searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
2323
3103
 
2324
3104
  """To fetch a Setting"""
2325
3105
  setting(name: String!, partnerDomainId: String): Setting!
2326
3106
 
2327
3107
  """To fetch multiple Settings"""
2328
- settings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): SettingList!
3108
+ settings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): SettingList!
2329
3109
 
2330
3110
  """To fetch a step"""
2331
3111
  step(name: String!): Step!
2332
3112
 
2333
3113
  """To fetch multiple steps"""
2334
- steps(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): StepList!
3114
+ steps(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StepList!
2335
3115
 
2336
3116
  """To fetch a task-type"""
2337
3117
  taskType(name: String!): TaskType!
@@ -2343,11 +3123,17 @@ type Query {
2343
3123
  taskTypesByConnection(connectionName: String!): TaskTypeList!
2344
3124
 
2345
3125
  """To fetch multiple Terminologies"""
2346
- terminologies(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): TerminologyList!
3126
+ terminologies(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TerminologyList!
2347
3127
 
2348
3128
  """To fetch a Terminology"""
2349
3129
  terminology(id: String!): Terminology!
2350
3130
 
3131
+ """To fetch a Theme"""
3132
+ theme(id: String!): Theme
3133
+
3134
+ """To fetch multiple Themes"""
3135
+ themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
3136
+
2351
3137
  """To fetch user"""
2352
3138
  user(email: String!): User!
2353
3139
 
@@ -2358,10 +3144,16 @@ type Query {
2358
3144
  userRoles(userId: String!): [UserRole!]!
2359
3145
 
2360
3146
  """To fetch multiple users"""
2361
- users(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): UserList!
3147
+ users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
2362
3148
  vendors: [Domain!]!
2363
3149
  }
2364
3150
 
3151
+ type RecipientItem {
3152
+ recipient: OrgMemberTarget
3153
+ type: OrgMemberTargetType
3154
+ value: String
3155
+ }
3156
+
2365
3157
  type Role {
2366
3158
  createdAt: Timestamp
2367
3159
  creator: User
@@ -2398,6 +3190,7 @@ type RolePrivilege {
2398
3190
  }
2399
3191
 
2400
3192
  type Scenario {
3193
+ """[will be deprecated] automatically be started when this server start"""
2401
3194
  active: Boolean
2402
3195
  createdAt: Timestamp
2403
3196
  creator: User
@@ -2406,6 +3199,9 @@ type Scenario {
2406
3199
  id: ID!
2407
3200
  instances: [ScenarioInstance!]
2408
3201
  name: String!
3202
+
3203
+ """accessible and executable system-wide"""
3204
+ public: Boolean
2409
3205
  schedule: String
2410
3206
  scheduleId: String
2411
3207
  state: String
@@ -2611,6 +3407,35 @@ input TerminologyPatch {
2611
3407
  name: String
2612
3408
  }
2613
3409
 
3410
+ """Entity for Theme"""
3411
+ type Theme {
3412
+ createdAt: Timestamp
3413
+ creator: User
3414
+ deletedAt: Timestamp
3415
+ description: String
3416
+ domain: Domain
3417
+ id: ID!
3418
+ name: String
3419
+ type: String
3420
+ updatedAt: Timestamp
3421
+ updater: User
3422
+ value: Object
3423
+ }
3424
+
3425
+ type ThemeList {
3426
+ items: [Theme!]!
3427
+ total: Int!
3428
+ }
3429
+
3430
+ input ThemePatch {
3431
+ cuFlag: String
3432
+ description: String
3433
+ id: ID
3434
+ name: String
3435
+ type: String
3436
+ value: Object
3437
+ }
3438
+
2614
3439
  """
2615
3440
  The javascript `Date` as integer. Type represents date and time as number of milliseconds from start of UNIX epoch.
2616
3441
  """
@@ -2665,4 +3490,12 @@ type UserRole {
2665
3490
  description: String
2666
3491
  id: String
2667
3492
  name: String
3493
+ }
3494
+
3495
+ input i18nCompletionInput {
3496
+ json: String!
3497
+ }
3498
+
3499
+ type i18nCompletionOutput {
3500
+ message: String
2668
3501
  }