@operato/scene-timer 1.2.46 → 1.2.53

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 (39) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/assets/favicon.ico +0 -0
  3. package/assets/images/spinner.png +0 -0
  4. package/dist/duetimer.d.ts +2 -0
  5. package/dist/duetimer.js +37 -11
  6. package/dist/duetimer.js.map +1 -1
  7. package/dist/index.d.ts +1 -1
  8. package/dist/templates/duetimer.d.ts +0 -1
  9. package/dist/templates/duetimer.js +0 -1
  10. package/dist/templates/duetimer.js.map +1 -1
  11. package/dist/templates/index.d.ts +0 -1
  12. package/dist/templates/timer.d.ts +0 -1
  13. package/dist/templates/timer.js +0 -1
  14. package/dist/templates/timer.js.map +1 -1
  15. package/dist/timer.d.ts +2 -0
  16. package/dist/timer.js +45 -10
  17. package/dist/timer.js.map +1 -1
  18. package/helps/scene/component/duetimer.ko.md +16 -6
  19. package/helps/scene/component/duetimer.md +16 -4
  20. package/helps/scene/component/duetimer.zh.md +20 -6
  21. package/helps/scene/component/timer.ko.md +22 -9
  22. package/helps/scene/component/timer.md +19 -4
  23. package/helps/scene/component/timer.zh.md +20 -5
  24. package/package.json +2 -2
  25. package/schema.gql +1064 -42
  26. package/src/duetimer.ts +41 -11
  27. package/src/templates/duetimer.ts +0 -1
  28. package/src/templates/timer.ts +0 -1
  29. package/src/timer.ts +48 -11
  30. package/translations/en.json +4 -2
  31. package/translations/ja.json +13 -0
  32. package/translations/ko.json +6 -4
  33. package/translations/ms.json +11 -9
  34. package/translations/zh.json +4 -2
  35. package/tsconfig.tsbuildinfo +1 -1
  36. package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +0 -15
  37. package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +0 -15
  38. package/logs/application-2023-06-05-13.log +0 -6
  39. package/logs/connections-2023-06-05-13.log +0 -41
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,61 @@ input BoardPatch {
202
324
  thumbnail: String
203
325
  }
204
326
 
327
+ """Entity for BoardTemplate"""
328
+ type BoardTemplate {
329
+ createdAt: Timestamp
330
+ creator: User
331
+ description: String
332
+ domain: Domain
333
+ id: ID!
334
+ model: String
335
+ name: String
336
+ state: String
337
+ thumbnail: String
338
+ updatedAt: Timestamp
339
+ updater: User
340
+ version: Float
341
+ }
342
+
343
+ type BoardTemplateList {
344
+ items: [BoardTemplate!]!
345
+ total: Int!
346
+ }
347
+
348
+ input BoardTemplatePatch {
349
+ cuFlag: String
350
+ description: String
351
+ id: ID
352
+ model: String!
353
+ name: String
354
+ state: BoardTemplateStatus
355
+ thumbnail: String
356
+ }
357
+
358
+ """state enumeration of a boardTemplate"""
359
+ enum BoardTemplateStatus {
360
+ DRAFT
361
+ RELEASED
362
+ }
363
+
364
+ input ChatCompletionInput {
365
+ content: String!
366
+ }
367
+
368
+ type ChatCompletionOutput {
369
+ message: String
370
+ }
371
+
372
+ input CodeDecipherInput {
373
+ code: String!
374
+ language: String
375
+ system: String
376
+ }
377
+
378
+ type CodeDecipherOutput {
379
+ message: String
380
+ }
381
+
205
382
  """Entity for CommonCode"""
206
383
  type CommonCode {
207
384
  createdAt: Timestamp
@@ -311,6 +488,57 @@ type ConnectorType {
311
488
  taskPrefixes: [String!]
312
489
  }
313
490
 
491
+ """Entity for Contact"""
492
+ type Contact {
493
+ address: String
494
+ company: String
495
+ createdAt: Timestamp
496
+ creator: User
497
+ deletedAt: Timestamp
498
+ department: String
499
+ domain: Domain
500
+ email: String
501
+ id: ID!
502
+ items: [ContactItem!]
503
+ name: String
504
+ note: String
505
+ phone: String
506
+ profile: Profile
507
+ updatedAt: Timestamp
508
+ updater: User
509
+ }
510
+
511
+ type ContactItem {
512
+ label: String!
513
+ type: String!
514
+ value: String!
515
+ }
516
+
517
+ input ContactItemPatch {
518
+ label: String!
519
+ type: String!
520
+ value: String!
521
+ }
522
+
523
+ type ContactList {
524
+ items: [Contact!]!
525
+ total: Int!
526
+ }
527
+
528
+ input ContactPatch {
529
+ address: String
530
+ company: String
531
+ cuFlag: String
532
+ department: String
533
+ email: String
534
+ id: ID
535
+ items: [ContactItemPatch!]
536
+ name: String
537
+ note: String
538
+ phone: String
539
+ profile: ProfileInput
540
+ }
541
+
314
542
  type Data {
315
543
  """Data delivered by subscription"""
316
544
  data: Object
@@ -325,9 +553,58 @@ type Data {
325
553
  """Date custom scalar type"""
326
554
  scalar Date
327
555
 
556
+ """Entity for Department"""
557
+ type Department {
558
+ active: Boolean
559
+ children: [Department!]!
560
+ controlNo: String!
561
+ createdAt: Timestamp
562
+ creator: User
563
+ deletedAt: Timestamp
564
+ description: String
565
+ domain: Domain
566
+ extension: String
567
+ id: ID!
568
+ manager: Employee
569
+ members: [Employee!]!
570
+ name: String
571
+ parent: Department
572
+ picture: String
573
+ state: String
574
+ updatedAt: Timestamp
575
+ updater: User
576
+ version: Float
577
+ }
578
+
579
+ type DepartmentList {
580
+ items: [Department!]!
581
+ total: Int!
582
+ }
583
+
584
+ input DepartmentPatch {
585
+ active: Boolean
586
+ controlNo: String
587
+ cuFlag: String
588
+ description: String
589
+ id: ID
590
+ manager: ObjectRefForEmployee
591
+ name: String
592
+ parent: ObjectRef
593
+ picture: Upload
594
+ state: DepartmentStatus
595
+ }
596
+
597
+ """state enumeration of a department"""
598
+ enum DepartmentStatus {
599
+ STATUS_A
600
+ STATUS_B
601
+ }
602
+
328
603
  type Domain {
604
+ attributes: Object
329
605
  brandImage: String
330
606
  brandName: String
607
+ children: Domain
331
608
  contentImage: String
332
609
  createdAt: Timestamp
333
610
  description: String
@@ -335,7 +612,8 @@ type Domain {
335
612
  id: ID!
336
613
  name: String!
337
614
  owner: String
338
- ownerUser: User!
615
+ ownerUser: User
616
+ parent: Domain
339
617
  subdomain: String
340
618
  systemFlag: Boolean
341
619
  theme: String
@@ -359,12 +637,15 @@ type DomainList {
359
637
  }
360
638
 
361
639
  input DomainPatch {
640
+ attributes: Object
362
641
  brandImage: String
363
642
  brandName: String
364
643
  contentImage: String
365
644
  description: String
366
645
  id: String
367
646
  name: String
647
+ owner: String
648
+ parent: ObjectRef
368
649
  subdomain: String
369
650
  systemFlag: Boolean
370
651
  theme: String
@@ -377,6 +658,72 @@ input DomainUserRoleInput {
377
658
  users: [NewUserByDomainWizardInput!]!
378
659
  }
379
660
 
661
+ """Entity for Employee"""
662
+ type Employee {
663
+ active: Boolean
664
+ address: String!
665
+ alias: String
666
+ approvalLines: [ApprovalLine!]!
667
+ contact: Contact
668
+ controlNo: String!
669
+ createdAt: Timestamp
670
+ creator: User
671
+ deletedAt: Timestamp
672
+ department: Department
673
+ domain: Domain
674
+ email: String
675
+ extension: String
676
+ hiredOn: String
677
+ id: ID!
678
+ jobPosition: String
679
+ jobResponsibility: String
680
+ manages: [Department!]!
681
+ name: String
682
+ note: String
683
+ phone: String
684
+ photo: String
685
+ profile: Profile
686
+ retiredAt: String
687
+ supervises: [Employee!]!
688
+ supervisor: Employee
689
+ type: String
690
+ updatedAt: Timestamp
691
+ updater: User
692
+ user: User
693
+ version: Float
694
+ }
695
+
696
+ type EmployeeList {
697
+ items: [Employee!]!
698
+ total: Int!
699
+ }
700
+
701
+ input EmployeePatch {
702
+ active: Boolean
703
+ alias: String
704
+ controlNo: String
705
+ cuFlag: String
706
+ department: ObjectRef
707
+ hiredOn: String
708
+ id: ID
709
+ jobPosition: String
710
+ jobResponsibility: String
711
+ name: String
712
+ note: String
713
+ photo: Upload
714
+ retiredAt: String
715
+ supervisor: ObjectRefForEmployee
716
+ type: EmployeeType
717
+ user: ObjectRefForUser
718
+ }
719
+
720
+ """type enumeration of a employee"""
721
+ enum EmployeeType {
722
+ FULLTIME
723
+ PARTTIME
724
+ TEMPORARY
725
+ }
726
+
380
727
  """Entity for Entity"""
381
728
  type Entity {
382
729
  active: Boolean
@@ -641,6 +988,22 @@ input GroupPatch {
641
988
  name: String
642
989
  }
643
990
 
991
+ input ImageCompletionInput {
992
+ count: Float!
993
+ description: String!
994
+ size: String!
995
+ }
996
+
997
+ type ImageCompletionOutput {
998
+ images: String
999
+ }
1000
+
1001
+ enum InheritedValueType {
1002
+ Include
1003
+ None
1004
+ Only
1005
+ }
1006
+
644
1007
  type Invitation {
645
1008
  createdAt: Timestamp
646
1009
  creator: User
@@ -680,6 +1043,11 @@ type LoginHistory {
680
1043
  id: ID!
681
1044
  }
682
1045
 
1046
+ type LoginHistoryList {
1047
+ items: [LoginHistory!]!
1048
+ total: Int!
1049
+ }
1050
+
683
1051
  """Entity for Menu"""
684
1052
  type Menu {
685
1053
  buttons: [MenuButton!]!
@@ -1040,6 +1408,9 @@ input MenuPatch {
1040
1408
  type Mutation {
1041
1409
  """To activate user"""
1042
1410
  activateUser(userId: String!): Boolean!
1411
+
1412
+ """To attach a contact on Employee"""
1413
+ attachContact(contactId: String!, id: String!): Employee!
1043
1414
  cancelInvitation(email: String!, reference: String!, type: String!): Boolean!
1044
1415
 
1045
1416
  """To connect a connection"""
@@ -1053,12 +1424,21 @@ type Mutation {
1053
1424
 
1054
1425
  """To create new application"""
1055
1426
  createApplication(application: NewApplication!): Application!
1427
+
1428
+ """To create new ApprovalLine"""
1429
+ createApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1056
1430
  createAttachment(attachment: NewAttachment!): Attachment!
1057
1431
  createAttachments(attachments: [NewAttachment!]!): [Attachment!]!
1058
1432
 
1433
+ """To create new AttributeSet"""
1434
+ createAttributeSet(attribute: NewAttributeSet!): AttributeSet!
1435
+
1059
1436
  """To create new Board"""
1060
1437
  createBoard(board: NewBoard!): Board!
1061
1438
 
1439
+ """To create new BoardTemplate"""
1440
+ createBoardTemplate(boardTemplate: NewBoardTemplate!): BoardTemplate!
1441
+
1062
1442
  """To create new CommonCode"""
1063
1443
  createCommonCode(commonCode: NewCommonCode!): CommonCode!
1064
1444
 
@@ -1068,9 +1448,18 @@ type Mutation {
1068
1448
  """To create new connection"""
1069
1449
  createConnection(connection: NewConnection!): Connection!
1070
1450
 
1451
+ """To create new Contact"""
1452
+ createContact(contact: NewContact!): Contact!
1453
+
1454
+ """To create new Department"""
1455
+ createDepartment(department: NewDepartment!): Department!
1456
+
1071
1457
  """To create domain (Only superuser is granted this privilege.)"""
1072
1458
  createDomain(domainInput: DomainPatch!): Domain!
1073
1459
 
1460
+ """To create new Employee"""
1461
+ createEmployee(employee: NewEmployee!): Employee!
1462
+
1074
1463
  """To create new Entity"""
1075
1464
  createEntity(entity: NewEntity!): Entity!
1076
1465
 
@@ -1104,6 +1493,15 @@ type Mutation {
1104
1493
  """To create new MenuDetailColumn"""
1105
1494
  createMenuDetailColumn(menuDetailColumn: NewMenuDetailColumn!): MenuDetailColumn!
1106
1495
 
1496
+ """To create new ApprovalLine for current user"""
1497
+ createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1498
+
1499
+ """To create new Notification"""
1500
+ createNotification(notification: NewNotification!): Notification!
1501
+
1502
+ """To create new NotificationRule"""
1503
+ createNotificationRule(notificationRule: NewNotificationRule!): NotificationRule!
1504
+
1107
1505
  """To create new Oauth2Client"""
1108
1506
  createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
1109
1507
 
@@ -1113,6 +1511,9 @@ type Mutation {
1113
1511
  """To create new PlayGroup"""
1114
1512
  createPlayGroup(playGroup: NewPlayGroup!): PlayGroup!
1115
1513
 
1514
+ """To create new PrinterDevice"""
1515
+ createPrinterDevice(printerDevice: NewPrinterDevice!): PrinterDevice!
1516
+
1116
1517
  """To create new privilege"""
1117
1518
  createPrivilege(privilege: NewPrivilege!): Privilege!
1118
1519
 
@@ -1128,6 +1529,9 @@ type Mutation {
1128
1529
  """To create new Terminology"""
1129
1530
  createTerminology(terminology: NewTerminology!): Terminology!
1130
1531
 
1532
+ """To create new Theme"""
1533
+ createTheme(theme: NewTheme!): Theme!
1534
+
1131
1535
  """To create new user"""
1132
1536
  createUser(user: NewUser!): User!
1133
1537
  deleteAppBinding(id: String!): Boolean!
@@ -1137,12 +1541,27 @@ type Mutation {
1137
1541
 
1138
1542
  """To delete application"""
1139
1543
  deleteApplication(id: String!): Boolean!
1544
+
1545
+ """To delete ApprovalLine"""
1546
+ deleteApprovalLine(id: String!): Boolean!
1547
+
1548
+ """To delete multiple ApprovalLines"""
1549
+ deleteApprovalLines(ids: [String!]!): Boolean!
1140
1550
  deleteAttachment(id: String!): Boolean!
1141
1551
  deleteAttachmentsByRef(refBys: [String!]!): Boolean!
1142
1552
 
1553
+ """To delete AttributeSet"""
1554
+ deleteAttributeSet(id: String!): Boolean!
1555
+
1556
+ """To delete multiple AttributeSets"""
1557
+ deleteAttributeSets(ids: [String!]!): Boolean!
1558
+
1143
1559
  """To delete Board"""
1144
1560
  deleteBoard(id: String!): Boolean!
1145
1561
 
1562
+ """To delete BoardTemplate"""
1563
+ deleteBoardTemplate(id: String!): Boolean!
1564
+
1146
1565
  """To delete CommonCode"""
1147
1566
  deleteCommonCode(id: String!): Boolean!
1148
1567
 
@@ -1161,6 +1580,18 @@ type Mutation {
1161
1580
  """To delete multiple connections"""
1162
1581
  deleteConnections(names: [String!]!): Boolean!
1163
1582
 
1583
+ """To delete Contact"""
1584
+ deleteContact(id: String!): Boolean!
1585
+
1586
+ """To delete multiple Contacts"""
1587
+ deleteContacts(ids: [String!]!): Boolean!
1588
+
1589
+ """To delete Department"""
1590
+ deleteDepartment(id: String!): Boolean!
1591
+
1592
+ """To delete multiple Departments"""
1593
+ deleteDepartments(ids: [String!]!): Boolean!
1594
+
1164
1595
  """To delete domain (Only superuser is granted this privilege.)"""
1165
1596
  deleteDomain(name: String!): Domain!
1166
1597
 
@@ -1170,6 +1601,12 @@ type Mutation {
1170
1601
  """To delete multiple domains (Only superuser is granted this privilege.)"""
1171
1602
  deleteDomains(names: [String!]!): Boolean!
1172
1603
 
1604
+ """To delete Employee"""
1605
+ deleteEmployee(id: String!): Boolean!
1606
+
1607
+ """To delete multiple Employees"""
1608
+ deleteEmployees(ids: [String!]!): Boolean!
1609
+
1173
1610
  """To delete multiple Entities"""
1174
1611
  deleteEntities(ids: [String!]!): Boolean!
1175
1612
 
@@ -1227,6 +1664,24 @@ type Mutation {
1227
1664
  """To delete multiple Menus"""
1228
1665
  deleteMenus(ids: [String!]!): Boolean!
1229
1666
 
1667
+ """To delete ApprovalLine for current user"""
1668
+ deleteMyApprovalLine(id: String!): Boolean!
1669
+
1670
+ """To delete multiple ApprovalLines for current user"""
1671
+ deleteMyApprovalLines(ids: [String!]!): Boolean!
1672
+
1673
+ """To delete Notification"""
1674
+ deleteNotification(id: String!): Boolean!
1675
+
1676
+ """To delete NotificationRule"""
1677
+ deleteNotificationRule(id: String!): Boolean!
1678
+
1679
+ """To delete multiple NotificationRules"""
1680
+ deleteNotificationRules(ids: [String!]!): Boolean!
1681
+
1682
+ """To delete multiple Notificationes"""
1683
+ deleteNotificationes(ids: [String!]!): Boolean!
1684
+
1230
1685
  """To delete Oauth2Client"""
1231
1686
  deleteOauth2Client(id: String!): Boolean!
1232
1687
 
@@ -1245,6 +1700,12 @@ type Mutation {
1245
1700
  """To delete PlayGroup"""
1246
1701
  deletePlayGroup(id: String!): Boolean!
1247
1702
 
1703
+ """To delete PrinterDevice"""
1704
+ deletePrinterDevice(id: String!): Boolean!
1705
+
1706
+ """To delete multiple printerDevices"""
1707
+ deletePrinterDevices(ids: [String!]!): Boolean!
1708
+
1248
1709
  """To delete privilege"""
1249
1710
  deletePrivilege(category: String!, name: String!): Boolean!
1250
1711
 
@@ -1275,12 +1736,21 @@ type Mutation {
1275
1736
  """To delete Terminology"""
1276
1737
  deleteTerminology(id: String!): Boolean!
1277
1738
 
1739
+ """To delete Theme"""
1740
+ deleteTheme(id: String!): Boolean!
1741
+
1742
+ """To delete multiple Themes"""
1743
+ deleteThemes(ids: [String!]!): Boolean!
1744
+
1278
1745
  """To delete a user"""
1279
1746
  deleteUser(email: String!): Boolean!
1280
1747
 
1281
1748
  """To delete some users"""
1282
1749
  deleteUsers(emails: [String!]!): Boolean!
1283
1750
 
1751
+ """To detach a contact from Employee"""
1752
+ detachContact(id: String!): Employee!
1753
+
1284
1754
  """To disconnect a connection"""
1285
1755
  disconnectConnection(name: String!): Connection!
1286
1756
  domainRegister(domainInput: DomainGeneratorInput!): Domain!
@@ -1293,12 +1763,27 @@ type Mutation {
1293
1763
  getOauth2AuthUrl(id: String!): String!
1294
1764
  grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
1295
1765
 
1766
+ """To import multiple ApprovalLines"""
1767
+ importApprovalLines(approvalLines: [ApprovalLinePatch!]!): Boolean!
1768
+
1769
+ """To import multiple AttributeSets"""
1770
+ importAttributeSets(attributes: [AttributeSetPatch!]!): Boolean!
1771
+
1296
1772
  """To import multiple CommonCodeDetails"""
1297
1773
  importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
1298
1774
 
1299
1775
  """To import multiple CommonCodes"""
1300
1776
  importCommonCodes(commonCodes: [CommonCodePatch!]!): Boolean!
1301
1777
 
1778
+ """To import multiple Contacts"""
1779
+ importContacts(contacts: [ContactPatch!]!): Boolean!
1780
+
1781
+ """To import multiple Departments"""
1782
+ importDepartments(departments: [DepartmentPatch!]!): Boolean!
1783
+
1784
+ """To import multiple Employees"""
1785
+ importEmployees(employees: [EmployeePatch!]!): Boolean!
1786
+
1302
1787
  """To import multiple MenuButtons"""
1303
1788
  importMenuButtons(menuButtons: [MenuButtonPatch!]!): Boolean!
1304
1789
 
@@ -1317,6 +1802,9 @@ type Mutation {
1317
1802
  """To import multiple Menus"""
1318
1803
  importMenus(menus: [MenuPatch!]!): Boolean!
1319
1804
 
1805
+ """To import multiple NotificationRules"""
1806
+ importNotificationRules(notificationRules: [NotificationRulePatch!]!): Boolean!
1807
+
1320
1808
  """To import multiple Oauth2Clients"""
1321
1809
  importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
1322
1810
 
@@ -1326,6 +1814,9 @@ type Mutation {
1326
1814
  """To import multiple Terminologies"""
1327
1815
  importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
1328
1816
 
1817
+ """To import multiple Themes"""
1818
+ importThemes(themes: [ThemePatch!]!): Boolean!
1819
+
1329
1820
  """To inactivate user"""
1330
1821
  inactivateUser(userId: String!): Boolean!
1331
1822
  inviteCustomer(customerDomainName: String!): Boolean!
@@ -1379,11 +1870,20 @@ type Mutation {
1379
1870
  transferOwner(email: String!): Boolean!
1380
1871
  updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
1381
1872
  updateApplication(id: String!, patch: ApplicationPatch!): Application!
1873
+
1874
+ """To modify ApprovalLine information"""
1875
+ updateApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
1382
1876
  updateAttachment(id: String!, patch: AttachmentPatch!): Attachment!
1383
1877
 
1878
+ """To modify AttributeSet information"""
1879
+ updateAttributeSet(id: String!, patch: AttributeSetPatch!): AttributeSet!
1880
+
1384
1881
  """To modify Board information"""
1385
1882
  updateBoard(id: String!, patch: BoardPatch!): Board!
1386
1883
 
1884
+ """To modify BoardTemplate information"""
1885
+ updateBoardTemplate(id: String!, patch: BoardTemplatePatch!): BoardTemplate!
1886
+
1387
1887
  """To modify CommonCode information"""
1388
1888
  updateCommonCode(name: String!, patch: CommonCodePatch!): CommonCode!
1389
1889
 
@@ -1393,12 +1893,21 @@ type Mutation {
1393
1893
  """To modify connection information"""
1394
1894
  updateConnection(name: String!, patch: ConnectionPatch!): Connection!
1395
1895
 
1896
+ """To modify Contact information"""
1897
+ updateContact(id: String!, patch: ContactPatch!): Contact!
1898
+
1899
+ """To modify Department information"""
1900
+ updateDepartment(id: String!, patch: DepartmentPatch!): Department!
1901
+
1396
1902
  """To update domain (Only superuser is granted this privilege.)"""
1397
1903
  updateDomain(name: String!, patch: DomainPatch!): Domain!
1398
1904
 
1399
1905
  """To update multiple domains"""
1400
1906
  updateDomains(patches: [DomainPatch!]!): Boolean!
1401
1907
 
1908
+ """To modify Employee information"""
1909
+ updateEmployee(id: String!, patch: EmployeePatch!): Employee!
1910
+
1402
1911
  """To modify Entity' information"""
1403
1912
  updateEntity(id: String!, patch: EntityPatch!): Entity!
1404
1913
 
@@ -1429,6 +1938,12 @@ type Mutation {
1429
1938
  """To modify MenuDetailColumn information"""
1430
1939
  updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
1431
1940
 
1941
+ """To modify multiple ApprovalLines' information"""
1942
+ updateMultipleApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
1943
+
1944
+ """To modify multiple AttributeSets' information"""
1945
+ updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
1946
+
1432
1947
  """To modify multiple CommonCodes' information"""
1433
1948
  updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
1434
1949
 
@@ -1438,6 +1953,15 @@ type Mutation {
1438
1953
  """To modify multiple connections' information"""
1439
1954
  updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
1440
1955
 
1956
+ """To modify multiple Contacts' information"""
1957
+ updateMultipleContact(patches: [ContactPatch!]!): [Contact!]!
1958
+
1959
+ """To modify multiple Departments' information"""
1960
+ updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
1961
+
1962
+ """To modify multiple Employees' information"""
1963
+ updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
1964
+
1441
1965
  """To modify multiple Entitys' information"""
1442
1966
  updateMultipleEntity(patches: [EntityPatch!]!): [Entity!]!
1443
1967
 
@@ -1447,12 +1971,24 @@ type Mutation {
1447
1971
  """To modify multiple Menus' information"""
1448
1972
  updateMultipleMenu(patches: [MenuPatch!]!): [Menu!]!
1449
1973
 
1974
+ """To modify multiple ApprovalLines' information for current user"""
1975
+ updateMultipleMyApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
1976
+
1977
+ """To modify multiple Notificationes' information"""
1978
+ updateMultipleNotification(patches: [NotificationPatch!]!): [Notification!]!
1979
+
1980
+ """To modify multiple NotificationRules' information"""
1981
+ updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
1982
+
1450
1983
  """To modify multiple PartnerSettings' information"""
1451
1984
  updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
1452
1985
 
1453
1986
  """To modify multiple PayloadLogs' information"""
1454
1987
  updateMultiplePayloadLog(patches: [PayloadLogPatch!]!): [PayloadLog!]!
1455
1988
 
1989
+ """To modify multiple PrinterDevices' information"""
1990
+ updateMultiplePrinterDevice(patches: [PrinterDevicePatch!]!): [PrinterDevice!]!
1991
+
1456
1992
  """To modify multiple scenarios' information"""
1457
1993
  updateMultipleScenario(patches: [ScenarioPatch!]!): [Scenario!]!
1458
1994
 
@@ -1465,9 +2001,21 @@ type Mutation {
1465
2001
  """To modify multiple Terminologies' information"""
1466
2002
  updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
1467
2003
 
2004
+ """To modify multiple Themes' information"""
2005
+ updateMultipleTheme(patches: [ThemePatch!]!): [Theme!]!
2006
+
1468
2007
  """To modify multiple users information"""
1469
2008
  updateMultipleUser(patches: [UserPatch!]!): [User!]!
1470
2009
 
2010
+ """To modify ApprovalLine information for current user"""
2011
+ updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
2012
+
2013
+ """To modify Notification information"""
2014
+ updateNotification(id: String!, patch: NotificationPatch!): Notification!
2015
+
2016
+ """To modify NotificationRule information"""
2017
+ updateNotificationRule(id: String!, patch: NotificationRulePatch!): NotificationRule!
2018
+
1471
2019
  """To modify Oauth2Client information"""
1472
2020
  updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
1473
2021
 
@@ -1477,6 +2025,9 @@ type Mutation {
1477
2025
  """To modify PlayGroup information"""
1478
2026
  updatePlayGroup(id: String!, patch: PlayGroupPatch!): PlayGroup!
1479
2027
 
2028
+ """To modify PrinterDevice information"""
2029
+ updatePrinterDevice(id: String!, patch: PrinterDevicePatch!): PrinterDevice!
2030
+
1480
2031
  """To modify privilege information"""
1481
2032
  updatePrivilege(category: String!, name: String!, patch: PrivilegePatch!): Privilege!
1482
2033
 
@@ -1498,6 +2049,9 @@ type Mutation {
1498
2049
  """To modify Terminology information"""
1499
2050
  updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
1500
2051
 
2052
+ """To modify Theme information"""
2053
+ updateTheme(id: String!, patch: ThemePatch!): Theme!
2054
+
1501
2055
  """To modify user information"""
1502
2056
  updateUser(email: String!, patch: UserPatch!): User!
1503
2057
 
@@ -1525,6 +2079,14 @@ input NewApplication {
1525
2079
  webhook: String
1526
2080
  }
1527
2081
 
2082
+ input NewApprovalLine {
2083
+ description: String
2084
+ model: Object
2085
+ name: String!
2086
+ owner: ObjectRefApprovalLineOwnerType!
2087
+ ownerType: ApprovalLineOwnerType!
2088
+ }
2089
+
1528
2090
  input NewAttachment {
1529
2091
  category: String
1530
2092
  description: String
@@ -1533,6 +2095,13 @@ input NewAttachment {
1533
2095
  refType: String
1534
2096
  }
1535
2097
 
2098
+ input NewAttributeSet {
2099
+ active: Boolean
2100
+ description: String
2101
+ entity: String!
2102
+ items: [AttributeSetItemPatch!]
2103
+ }
2104
+
1536
2105
  input NewBoard {
1537
2106
  description: String
1538
2107
  groupId: String
@@ -1541,6 +2110,14 @@ input NewBoard {
1541
2110
  thumbnail: String
1542
2111
  }
1543
2112
 
2113
+ input NewBoardTemplate {
2114
+ description: String
2115
+ model: String!
2116
+ name: String!
2117
+ state: BoardTemplateStatus
2118
+ thumbnail: String
2119
+ }
2120
+
1544
2121
  input NewCommonCode {
1545
2122
  description: String
1546
2123
  details: [String!]
@@ -1562,6 +2139,48 @@ input NewConnection {
1562
2139
  type: String
1563
2140
  }
1564
2141
 
2142
+ input NewContact {
2143
+ address: String
2144
+ company: String
2145
+ department: String
2146
+ email: String
2147
+ items: [ContactItemPatch!]
2148
+ name: String!
2149
+ note: String
2150
+ phone: String
2151
+ profile: ProfileInput
2152
+ }
2153
+
2154
+ input NewDepartment {
2155
+ active: Boolean
2156
+ controlNo: String!
2157
+ description: String
2158
+ extension: String
2159
+ manager: ObjectRefForEmployee
2160
+ name: String!
2161
+ parent: ObjectRef
2162
+ picture: Upload
2163
+ state: DepartmentStatus
2164
+ }
2165
+
2166
+ input NewEmployee {
2167
+ active: Boolean
2168
+ alias: String
2169
+ controlNo: String!
2170
+ department: ObjectRef
2171
+ extension: String
2172
+ hiredOn: String
2173
+ jobPosition: String
2174
+ jobResponsibility: String
2175
+ name: String!
2176
+ note: String
2177
+ photo: Upload
2178
+ retiredAt: String
2179
+ supervisor: ObjectRefForEmployee
2180
+ type: EmployeeType
2181
+ user: ObjectRefForUser
2182
+ }
2183
+
1565
2184
  input NewEntity {
1566
2185
  active: Boolean
1567
2186
  association: String
@@ -1779,6 +2398,29 @@ input NewMenuDetailColumn {
1779
2398
  virtualField: Boolean
1780
2399
  }
1781
2400
 
2401
+ input NewNotification {
2402
+ body: String
2403
+ image: String
2404
+ ownerId: String
2405
+ property: Object
2406
+ subject: String
2407
+ timestamp: Timestamp
2408
+ title: String
2409
+ type: String
2410
+ url: String
2411
+ }
2412
+
2413
+ input NewNotificationRule {
2414
+ active: Boolean
2415
+ body: String
2416
+ description: String
2417
+ name: String!
2418
+ state: NotificationRuleStatus
2419
+ thumbnail: Upload
2420
+ title: String
2421
+ url: String
2422
+ }
2423
+
1782
2424
  input NewOauth2Client {
1783
2425
  accessToken: String
1784
2426
  accessTokenUrl: String
@@ -1810,6 +2452,24 @@ input NewPlayGroup {
1810
2452
  name: String!
1811
2453
  }
1812
2454
 
2455
+ input NewPrinterDevice {
2456
+ activeFlag: Boolean
2457
+ defaultFlag: Boolean
2458
+ description: String!
2459
+ dpi: Int
2460
+ jobCategory: String
2461
+ jobClass: String
2462
+ jobType: String
2463
+ name: String!
2464
+ note: String
2465
+ printerDriver: String
2466
+ printerIp: String
2467
+ printerPort: Int
2468
+ serviceUrl: String
2469
+ status: String
2470
+ type: String
2471
+ }
2472
+
1813
2473
  input NewPrivilege {
1814
2474
  category: String!
1815
2475
  description: String
@@ -1848,6 +2508,14 @@ input NewTerminology {
1848
2508
  name: String!
1849
2509
  }
1850
2510
 
2511
+ input NewTheme {
2512
+ active: Boolean
2513
+ description: String
2514
+ name: String!
2515
+ type: String
2516
+ value: Object
2517
+ }
2518
+
1851
2519
  input NewUser {
1852
2520
  description: String
1853
2521
  email: String!
@@ -1866,18 +2534,89 @@ input NewUserByDomainWizardInput {
1866
2534
  roles: [NewRole!]!
1867
2535
  }
1868
2536
 
2537
+ """Entity for Notification"""
1869
2538
  type Notification {
1870
- body: String!
2539
+ body: String
2540
+ createdAt: Timestamp
2541
+ creator: User
1871
2542
  domain: Domain
2543
+ id: ID!
1872
2544
  image: String
1873
- property: Any
2545
+ owner: User
2546
+ property: Object
2547
+ state: String
1874
2548
  subject: String
1875
2549
  timestamp: Date
1876
- title: String!
2550
+ title: String
1877
2551
  type: String
2552
+ updatedAt: Timestamp
2553
+ updater: User
1878
2554
  url: String
1879
2555
  }
1880
2556
 
2557
+ type NotificationList {
2558
+ items: [Notification!]!
2559
+ total: Int!
2560
+ }
2561
+
2562
+ input NotificationPatch {
2563
+ cuFlag: String
2564
+ id: ID
2565
+ state: NotificationStatus
2566
+ }
2567
+
2568
+ """Entity for NotificationRule"""
2569
+ type NotificationRule {
2570
+ body: String
2571
+ channels: String
2572
+ createdAt: Timestamp
2573
+ creator: User
2574
+ deletedAt: Timestamp
2575
+ description: String
2576
+ domain: Domain
2577
+ id: ID!
2578
+ name: String
2579
+
2580
+ """notification recipients."""
2581
+ recipients: [RecipientItem!]
2582
+ state: String
2583
+ thumbnail: String
2584
+ title: String
2585
+ updatedAt: Timestamp
2586
+ updater: User
2587
+ url: String
2588
+ version: Float
2589
+ }
2590
+
2591
+ type NotificationRuleList {
2592
+ items: [NotificationRule!]!
2593
+ total: Int!
2594
+ }
2595
+
2596
+ input NotificationRulePatch {
2597
+ body: String
2598
+ cuFlag: String
2599
+ description: String
2600
+ id: ID
2601
+ name: String
2602
+ state: NotificationRuleStatus
2603
+ thumbnail: Upload
2604
+ title: String
2605
+ url: String
2606
+ }
2607
+
2608
+ """state enumeration of a notificationRule"""
2609
+ enum NotificationRuleStatus {
2610
+ DRAFT
2611
+ RELEASED
2612
+ }
2613
+
2614
+ """state enumeration of a notification"""
2615
+ enum NotificationStatus {
2616
+ NOTREAD
2617
+ READ
2618
+ }
2619
+
1881
2620
  """Entity for Oauth2Client"""
1882
2621
  type Oauth2Client {
1883
2622
  accessToken: String
@@ -1949,6 +2688,73 @@ input ObjectRef {
1949
2688
  name: String
1950
2689
  }
1951
2690
 
2691
+ input ObjectRefApprovalLineOwnerType {
2692
+ controlNo: String
2693
+
2694
+ """Field description"""
2695
+ description: String
2696
+
2697
+ """Field id"""
2698
+ id: ID!
2699
+
2700
+ """Field name"""
2701
+ name: String
2702
+ }
2703
+
2704
+ input ObjectRefForEmployee {
2705
+ active: Boolean
2706
+ alias: String
2707
+ controlNo: String
2708
+
2709
+ """Field description"""
2710
+ description: String
2711
+ email: String
2712
+ hiredOn: String
2713
+
2714
+ """Field id"""
2715
+ id: ID!
2716
+ jobPosition: String
2717
+
2718
+ """Field name"""
2719
+ name: String
2720
+ photo: String
2721
+ }
2722
+
2723
+ input ObjectRefForUser {
2724
+ """Field description"""
2725
+ description: String
2726
+ email: String
2727
+
2728
+ """Field id"""
2729
+ id: ID!
2730
+
2731
+ """Field name"""
2732
+ name: String
2733
+ }
2734
+
2735
+ type OrgMemberTarget {
2736
+ controlNo: String
2737
+
2738
+ """Field description"""
2739
+ description: String
2740
+
2741
+ """Field id"""
2742
+ id: ID!
2743
+
2744
+ """Field name"""
2745
+ name: String
2746
+ }
2747
+
2748
+ """type enumeration of a approval line item"""
2749
+ enum OrgMemberTargetType {
2750
+ Department
2751
+ Employee
2752
+ MyDepartment
2753
+ MySupervisor
2754
+ Myself
2755
+ Role
2756
+ }
2757
+
1952
2758
  input Pagination {
1953
2759
  limit: Int
1954
2760
  page: Int
@@ -2058,6 +2864,56 @@ input PlayGroupPatch {
2058
2864
  name: String
2059
2865
  }
2060
2866
 
2867
+ """Entity for PrinterDevice"""
2868
+ type PrinterDevice {
2869
+ activeFlag: Boolean
2870
+ createdAt: Timestamp
2871
+ creator: User
2872
+ defaultFlag: Boolean
2873
+ description: String!
2874
+ domain: Domain!
2875
+ dpi: Int
2876
+ id: ID!
2877
+ jobCategory: String
2878
+ jobClass: String
2879
+ jobType: String
2880
+ name: String!
2881
+ note: String
2882
+ printerDriver: String
2883
+ printerIp: String
2884
+ printerPort: Int
2885
+ serviceUrl: String
2886
+ status: String
2887
+ type: String!
2888
+ updatedAt: Timestamp
2889
+ updater: User
2890
+ }
2891
+
2892
+ type PrinterDeviceList {
2893
+ items: [PrinterDevice!]!
2894
+ total: Int!
2895
+ }
2896
+
2897
+ input PrinterDevicePatch {
2898
+ activeFlag: Boolean
2899
+ cuFlag: String!
2900
+ defaultFlag: Boolean
2901
+ description: String
2902
+ dpi: Int
2903
+ id: ID
2904
+ jobCategory: String
2905
+ jobClass: String
2906
+ jobType: String
2907
+ name: String
2908
+ note: String
2909
+ printerDriver: String
2910
+ printerIp: String
2911
+ printerPort: Int
2912
+ serviceUrl: String
2913
+ status: String
2914
+ type: String
2915
+ }
2916
+
2061
2917
  type Privilege {
2062
2918
  category: String
2063
2919
  createdAt: Timestamp
@@ -2083,6 +2939,23 @@ input PrivilegePatch {
2083
2939
  roles: [ObjectRef!]
2084
2940
  }
2085
2941
 
2942
+ """Object type for Profile"""
2943
+ type Profile {
2944
+ left: Float
2945
+ picture: String
2946
+ top: Float
2947
+ zoom: Float
2948
+ }
2949
+
2950
+ """Input type for Profile"""
2951
+ input ProfileInput {
2952
+ file: Upload
2953
+ left: Float
2954
+ picture: String
2955
+ top: Float
2956
+ zoom: Float
2957
+ }
2958
+
2086
2959
  type PropertySpec {
2087
2960
  label: String!
2088
2961
  name: String!
@@ -2092,34 +2965,69 @@ type PropertySpec {
2092
2965
  }
2093
2966
 
2094
2967
  type Query {
2968
+ APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
2095
2969
  appBinding(id: String!): AppBinding!
2096
- appBindings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AppBindingList!
2970
+ appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
2097
2971
 
2098
2972
  """ To fetch appliance"""
2099
2973
  appliance(id: String!): Appliance!
2100
2974
 
2101
2975
  """To fetch multiple appliance"""
2102
- appliances(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApplianceList!
2976
+ appliances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
2103
2977
 
2104
2978
  """To fetch application"""
2105
2979
  application(id: String!): Application!
2106
2980
 
2107
2981
  """To fetch multiple application"""
2108
- applications(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApplicationList!
2982
+ applications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplicationList!
2983
+
2984
+ """To fetch a approval line"""
2985
+ approvalLine(id: String!): ApprovalLine
2986
+
2987
+ """To fetch referable approval lines for the user"""
2988
+ approvalLineReferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
2989
+
2990
+ """To fetch multiple approval lines"""
2991
+ approvalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
2109
2992
  attachment(id: String!): Attachment!
2110
- attachments(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AttachmentList!
2993
+ attachments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttachmentList!
2994
+
2995
+ """To fetch a AttributeSet"""
2996
+ attributeSet(id: String!): AttributeSet
2997
+
2998
+ """To fetch a AttributeSet by Entity name"""
2999
+ attributeSetByEntity(entity: String!): AttributeSet
3000
+
3001
+ """To fetch multiple AttributeSets"""
3002
+ attributeSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttributeSetList!
2111
3003
 
2112
3004
  """To fetch a board"""
2113
3005
  board(id: String!): Board!
2114
3006
 
3007
+ """To fetch a Board Model by name"""
3008
+ boardByName(name: String!): Board
3009
+
2115
3010
  """Board Usage Permissions"""
2116
3011
  boardPermissions: [String!]!
2117
3012
 
3013
+ """To fetch a BoardTemplate"""
3014
+ boardTemplate(id: String!): BoardTemplate
3015
+
3016
+ """To fetch a BoardTemplate by name"""
3017
+ boardTemplateByName(name: String!): BoardTemplate
3018
+
3019
+ """To fetch multiple BoardTemplates"""
3020
+ boardTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
3021
+
3022
+ """To fetch BoardTemplates created by me"""
3023
+ boardTemplatesCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
3024
+
2118
3025
  """To fetch multiple Boards"""
2119
- boards(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardList!
3026
+ boards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
2120
3027
 
2121
3028
  """To fetch Boards created by me"""
2122
- boardsCreatedByMe(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardList!
3029
+ boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
3030
+ chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
2123
3031
 
2124
3032
  """To check if system would provide default password to create new user"""
2125
3033
  checkDefaultPassword: Boolean!
@@ -2136,6 +3044,9 @@ type Query {
2136
3044
  """..."""
2137
3045
  checkUserExistence(email: String!): Boolean!
2138
3046
 
3047
+ """To fetch common approval lines"""
3048
+ commonApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
3049
+
2139
3050
  """To fetch a CommonCode"""
2140
3051
  commonCode(name: String!): CommonCode
2141
3052
 
@@ -2143,32 +3054,55 @@ type Query {
2143
3054
  commonCodeDetail(id: String!): CommonCodeDetail!
2144
3055
 
2145
3056
  """To fetch multiple CommonCodeDetails"""
2146
- commonCodeDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): CommonCodeDetailList!
3057
+ commonCodeDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeDetailList!
2147
3058
 
2148
3059
  """To fetch multiple CommonCodes"""
2149
- commonCodes(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): CommonCodeList!
3060
+ commonCodes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeList!
2150
3061
 
2151
3062
  """To fetch a connector"""
2152
3063
  connection(name: String!): ConnectorType!
2153
3064
 
2154
3065
  """To fetch multiple connections"""
2155
- connections(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ConnectionList!
3066
+ connections(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ConnectionList!
2156
3067
 
2157
3068
  """To fetch the connector from a connection"""
2158
3069
  connectorByConnection(connectionName: String!): ConnectorType!
2159
3070
 
2160
3071
  """To fetch multiple connector"""
2161
3072
  connectors: ConnectorList!
3073
+
3074
+ """To fetch a Contact"""
3075
+ contact(id: String!): Contact
3076
+
3077
+ """To fetch multiple Contacts"""
3078
+ contacts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ContactList!
2162
3079
  customers: [Domain!]!
3080
+ decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
3081
+ decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
3082
+
3083
+ """To fetch a Department"""
3084
+ department(id: String!): Department
3085
+
3086
+ """To fetch a Root Department"""
3087
+ departmentRoot: Department
3088
+
3089
+ """To fetch multiple Departments"""
3090
+ departments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DepartmentList!
2163
3091
 
2164
3092
  """To fetch domain"""
2165
3093
  domain(id: String!): Domain!
2166
3094
 
2167
3095
  """To fetch all domains (Only superuser is granted this privilege.)"""
2168
- domains(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DomainList!
3096
+ domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
3097
+
3098
+ """To fetch a Employee"""
3099
+ employee(id: String!): Employee
3100
+
3101
+ """To fetch multiple Employees"""
3102
+ employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
2169
3103
 
2170
3104
  """To fetch multiple Entities"""
2171
- entities(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EntityList!
3105
+ entities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityList!
2172
3106
 
2173
3107
  """To fetch a Entity"""
2174
3108
  entity(id: String!): Entity!
@@ -2177,7 +3111,7 @@ type Query {
2177
3111
  entityColumn(id: String!): EntityColumn!
2178
3112
 
2179
3113
  """To fetch multiple EntityColumns"""
2180
- entityColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EntityColumnList!
3114
+ entityColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityColumnList!
2181
3115
 
2182
3116
  """To fetch a EntityMetadata"""
2183
3117
  entityMetadata(name: String!): EntityMetadata!
@@ -2186,10 +3120,10 @@ type Query {
2186
3120
  favorite(id: String!): Favorite!
2187
3121
 
2188
3122
  """To fetch multiple BoardFavorites"""
2189
- favoriteBoards(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardFavoriteList!
3123
+ favoriteBoards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardFavoriteList!
2190
3124
 
2191
3125
  """To fetch multiple Favorites"""
2192
- favorites(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): FavoriteList!
3126
+ favorites(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FavoriteList!
2193
3127
 
2194
3128
  """To fetch the state of a connection"""
2195
3129
  fetchConnectionState(name: String!): ConnectionState!
@@ -2198,10 +3132,7 @@ type Query {
2198
3132
  font(id: String!): Font!
2199
3133
 
2200
3134
  """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
3135
+ fonts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FontList!
2205
3136
  grantedRoles: [GrantedRole!]!
2206
3137
  grantingRoles(customerId: String!): [GrantedRole!]!
2207
3138
 
@@ -2209,13 +3140,18 @@ type Query {
2209
3140
  group(id: String!): Group
2210
3141
 
2211
3142
  """To fetch multiple Groups"""
2212
- groups(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): GroupList!
3143
+ groups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): GroupList!
2213
3144
 
2214
3145
  """To query whether I have the given permission"""
2215
3146
  hasPrivilege(category: String!, name: String!): Boolean!
3147
+ i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
3148
+ imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
2216
3149
  invitation(email: String!, reference: String!, type: String!): Invitation!
2217
3150
  invitations(reference: String!, type: String!): InvitationList!
2218
3151
 
3152
+ """To fetch multiple LoginHistories"""
3153
+ loginHistories(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): LoginHistoryList!
3154
+
2219
3155
  """To fetch a Menu"""
2220
3156
  menu(id: String!): Menu!
2221
3157
 
@@ -2223,7 +3159,7 @@ type Query {
2223
3159
  menuButton(id: String!): MenuButton!
2224
3160
 
2225
3161
  """To fetch multiple MenuButtons"""
2226
- menuButtons(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuButtonList!
3162
+ menuButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuButtonList!
2227
3163
 
2228
3164
  """To fetch a Menu by routing"""
2229
3165
  menuByRouting(routing: String!): Menu!
@@ -2232,7 +3168,7 @@ type Query {
2232
3168
  menuColumn(id: String!): MenuColumn!
2233
3169
 
2234
3170
  """To fetch multiple MenuColumns"""
2235
- menuColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuColumnList!
3171
+ menuColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuColumnList!
2236
3172
 
2237
3173
  """To fetch a MenuDetail"""
2238
3174
  menuDetail(id: String!): MenuDetail!
@@ -2241,32 +3177,50 @@ type Query {
2241
3177
  menuDetailButton(id: String!): MenuDetailButton!
2242
3178
 
2243
3179
  """To fetch multiple MenuDetailButtons"""
2244
- menuDetailButtons(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailButtonList!
3180
+ menuDetailButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailButtonList!
2245
3181
 
2246
3182
  """To fetch a MenuDetailColumn"""
2247
3183
  menuDetailColumn(id: String!): MenuDetailColumn!
2248
3184
 
2249
3185
  """To fetch multiple MenuDetailColumns"""
2250
- menuDetailColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailColumnList!
3186
+ menuDetailColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailColumnList!
2251
3187
 
2252
3188
  """To fetch multiple MenuDetails"""
2253
- menuDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailList!
3189
+ menuDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailList!
2254
3190
 
2255
3191
  """To fetch multiple Menus"""
2256
- menus(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuList!
3192
+ menus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
3193
+
3194
+ """To fetch approval lines only for to the user"""
3195
+ myApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
2257
3196
 
2258
3197
  """To fetch current user's Favorites"""
2259
3198
  myFavorites: [Favorite!]!
2260
3199
  myLoginHistories(limit: Float!): [LoginHistory!]!
2261
3200
 
3201
+ """To fetch my notifications"""
3202
+ myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3203
+
2262
3204
  """To fetch roles of current user"""
2263
3205
  myRoles: [Role!]!
2264
3206
 
3207
+ """To fetch a Notification"""
3208
+ notification(id: String!): Notification
3209
+
3210
+ """To fetch a NotificationRule"""
3211
+ notificationRule(id: String!): NotificationRule
3212
+
3213
+ """To fetch multiple NotificationRules"""
3214
+ notificationRules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationRuleList!
3215
+
3216
+ """To fetch multiple Notificationes"""
3217
+ notificationes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3218
+
2265
3219
  """To fetch a Oauth2Client"""
2266
3220
  oauth2Client(id: String!): Oauth2Client
2267
3221
 
2268
3222
  """To fetch multiple Oauth2Clients"""
2269
- oauth2Clients(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
3223
+ oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
2270
3224
 
2271
3225
  """To fetch specific domain's CommonCodes by given name"""
2272
3226
  partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
@@ -2276,25 +3230,31 @@ type Query {
2276
3230
 
2277
3231
  """To fetch multiple PartnerSettings"""
2278
3232
  partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
2279
- partners(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PartnerList!
3233
+ partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
2280
3234
 
2281
3235
  """To fetch a PayloadLog"""
2282
3236
  payloadLog(id: String!): PayloadLog!
2283
3237
 
2284
3238
  """To fetch multiple PayloadLogs"""
2285
- payloadLogs(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
3239
+ payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
2286
3240
 
2287
3241
  """To fetch a PlayGroup"""
2288
3242
  playGroup(id: String!): PlayGroup
2289
3243
 
2290
3244
  """To fetch multiple PlayGroups"""
2291
- playGroups(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
3245
+ playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
3246
+
3247
+ """To fetch a PrinterDevice"""
3248
+ printerDevice(id: String!): PrinterDevice!
3249
+
3250
+ """To fetch multiple PrinterDevices"""
3251
+ printerDevices(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrinterDeviceList!
2292
3252
 
2293
3253
  """To fetch privilege"""
2294
3254
  privilege(category: String!, name: String!): Privilege!
2295
3255
 
2296
3256
  """To fetch multiple privileges"""
2297
- privileges(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
3257
+ privileges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
2298
3258
 
2299
3259
  """To fetch role"""
2300
3260
  role(name: String!): Role!
@@ -2306,7 +3266,7 @@ type Query {
2306
3266
  rolePrivileges(roleId: String!): [RolePrivilege!]!
2307
3267
 
2308
3268
  """To fetch multiple users"""
2309
- roles(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): RoleList!
3269
+ roles(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): RoleList!
2310
3270
 
2311
3271
  """To fetch a scenario"""
2312
3272
  scenario(id: String!): Scenario!
@@ -2315,23 +3275,23 @@ type Query {
2315
3275
  scenarioInstance(instanceName: String!): ScenarioInstance!
2316
3276
 
2317
3277
  """To fetch multiple scenario instances"""
2318
- scenarioInstances(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ScenarioInstanceList!
3278
+ scenarioInstances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioInstanceList!
2319
3279
 
2320
3280
  """To fetch multiple scenarios"""
2321
- scenarios(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ScenarioList!
2322
- searchCustomers(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DomainList!
3281
+ scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
3282
+ searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
2323
3283
 
2324
3284
  """To fetch a Setting"""
2325
3285
  setting(name: String!, partnerDomainId: String): Setting!
2326
3286
 
2327
3287
  """To fetch multiple Settings"""
2328
- settings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): SettingList!
3288
+ settings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): SettingList!
2329
3289
 
2330
3290
  """To fetch a step"""
2331
3291
  step(name: String!): Step!
2332
3292
 
2333
3293
  """To fetch multiple steps"""
2334
- steps(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): StepList!
3294
+ steps(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StepList!
2335
3295
 
2336
3296
  """To fetch a task-type"""
2337
3297
  taskType(name: String!): TaskType!
@@ -2343,11 +3303,17 @@ type Query {
2343
3303
  taskTypesByConnection(connectionName: String!): TaskTypeList!
2344
3304
 
2345
3305
  """To fetch multiple Terminologies"""
2346
- terminologies(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): TerminologyList!
3306
+ terminologies(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TerminologyList!
2347
3307
 
2348
3308
  """To fetch a Terminology"""
2349
3309
  terminology(id: String!): Terminology!
2350
3310
 
3311
+ """To fetch a Theme"""
3312
+ theme(id: String!): Theme
3313
+
3314
+ """To fetch multiple Themes"""
3315
+ themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
3316
+
2351
3317
  """To fetch user"""
2352
3318
  user(email: String!): User!
2353
3319
 
@@ -2358,10 +3324,16 @@ type Query {
2358
3324
  userRoles(userId: String!): [UserRole!]!
2359
3325
 
2360
3326
  """To fetch multiple users"""
2361
- users(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): UserList!
3327
+ users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
2362
3328
  vendors: [Domain!]!
2363
3329
  }
2364
3330
 
3331
+ type RecipientItem {
3332
+ recipient: OrgMemberTarget
3333
+ type: OrgMemberTargetType
3334
+ value: String
3335
+ }
3336
+
2365
3337
  type Role {
2366
3338
  createdAt: Timestamp
2367
3339
  creator: User
@@ -2398,6 +3370,7 @@ type RolePrivilege {
2398
3370
  }
2399
3371
 
2400
3372
  type Scenario {
3373
+ """[will be deprecated] automatically be started when this server start"""
2401
3374
  active: Boolean
2402
3375
  createdAt: Timestamp
2403
3376
  creator: User
@@ -2406,6 +3379,9 @@ type Scenario {
2406
3379
  id: ID!
2407
3380
  instances: [ScenarioInstance!]
2408
3381
  name: String!
3382
+
3383
+ """accessible and executable system-wide"""
3384
+ public: Boolean
2409
3385
  schedule: String
2410
3386
  scheduleId: String
2411
3387
  state: String
@@ -2422,6 +3398,7 @@ type ScenarioInstance {
2422
3398
  instanceName: String
2423
3399
  message: String
2424
3400
  progress: ScenarioInstanceProgress
3401
+ result: Object
2425
3402
  root: ScenarioInstance
2426
3403
  scenarioName: String
2427
3404
  state: String
@@ -2532,6 +3509,11 @@ type Step {
2532
3509
  log: Boolean
2533
3510
  name: String!
2534
3511
  params: String
3512
+
3513
+ """
3514
+ a boolean attribute indicating the inclusion status of an element in the result
3515
+ """
3516
+ result: Boolean
2535
3517
  scenario: Scenario
2536
3518
  sequence: Float
2537
3519
  skip: Boolean
@@ -2553,6 +3535,7 @@ input StepPatch {
2553
3535
  log: Boolean
2554
3536
  name: String
2555
3537
  params: String
3538
+ result: Boolean
2556
3539
  sequence: Int
2557
3540
  skip: Boolean
2558
3541
  task: String
@@ -2611,6 +3594,37 @@ input TerminologyPatch {
2611
3594
  name: String
2612
3595
  }
2613
3596
 
3597
+ """Entity for Theme"""
3598
+ type Theme {
3599
+ active: Boolean
3600
+ createdAt: Timestamp
3601
+ creator: User
3602
+ deletedAt: Timestamp
3603
+ description: String
3604
+ domain: Domain
3605
+ id: ID!
3606
+ name: String
3607
+ type: String
3608
+ updatedAt: Timestamp
3609
+ updater: User
3610
+ value: Object
3611
+ }
3612
+
3613
+ type ThemeList {
3614
+ items: [Theme!]!
3615
+ total: Int!
3616
+ }
3617
+
3618
+ input ThemePatch {
3619
+ active: Boolean
3620
+ cuFlag: String
3621
+ description: String
3622
+ id: ID
3623
+ name: String
3624
+ type: String
3625
+ value: Object
3626
+ }
3627
+
2614
3628
  """
2615
3629
  The javascript `Date` as integer. Type represents date and time as number of milliseconds from start of UNIX epoch.
2616
3630
  """
@@ -2665,4 +3679,12 @@ type UserRole {
2665
3679
  description: String
2666
3680
  id: String
2667
3681
  name: String
3682
+ }
3683
+
3684
+ input i18nCompletionInput {
3685
+ json: String!
3686
+ }
3687
+
3688
+ type i18nCompletionOutput {
3689
+ message: String
2668
3690
  }