@hatiolab/things-scene 3.3.14 → 3.3.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/schema.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!
@@ -257,6 +324,61 @@ input BoardPatch {
257
324
  thumbnail: String
258
325
  }
259
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
+
260
382
  """Entity for CommonCode"""
261
383
  type CommonCode {
262
384
  createdAt: Timestamp
@@ -366,6 +488,57 @@ type ConnectorType {
366
488
  taskPrefixes: [String!]
367
489
  }
368
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
+
369
542
  type Data {
370
543
  """Data delivered by subscription"""
371
544
  data: Object
@@ -380,6 +553,53 @@ type Data {
380
553
  """Date custom scalar type"""
381
554
  scalar Date
382
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
+
383
603
  type Domain {
384
604
  attributes: Object
385
605
  brandImage: String
@@ -438,6 +658,64 @@ input DomainUserRoleInput {
438
658
  users: [NewUserByDomainWizardInput!]!
439
659
  }
440
660
 
661
+ """Entity for Employee"""
662
+ type Employee {
663
+ active: Boolean
664
+ address: String!
665
+ approvalLines: [ApprovalLine!]!
666
+ contact: Contact
667
+ controlNo: String!
668
+ createdAt: Timestamp
669
+ creator: User
670
+ deletedAt: Timestamp
671
+ department: Department
672
+ domain: Domain
673
+ email: String
674
+ extension: String
675
+ hiredOn: String
676
+ id: ID!
677
+ manages: [Department!]!
678
+ name: String
679
+ note: String
680
+ phone: String
681
+ photo: String
682
+ profile: Profile
683
+ supervises: [Employee!]!
684
+ supervisor: Employee
685
+ type: String
686
+ updatedAt: Timestamp
687
+ updater: User
688
+ user: User
689
+ version: Float
690
+ }
691
+
692
+ type EmployeeList {
693
+ items: [Employee!]!
694
+ total: Int!
695
+ }
696
+
697
+ input EmployeePatch {
698
+ active: Boolean
699
+ controlNo: String
700
+ cuFlag: String
701
+ department: ObjectRef
702
+ hiredOn: String
703
+ id: ID
704
+ name: String
705
+ note: String
706
+ photo: Upload
707
+ supervisor: ObjectRefForEmployee
708
+ type: EmployeeType
709
+ user: ObjectRefForUser
710
+ }
711
+
712
+ """type enumeration of a employee"""
713
+ enum EmployeeType {
714
+ FULLTIME
715
+ PARTTIME
716
+ TEMPORARY
717
+ }
718
+
441
719
  """Entity for Entity"""
442
720
  type Entity {
443
721
  active: Boolean
@@ -702,6 +980,16 @@ input GroupPatch {
702
980
  name: String
703
981
  }
704
982
 
983
+ input ImageCompletionInput {
984
+ count: Float!
985
+ description: String!
986
+ size: String!
987
+ }
988
+
989
+ type ImageCompletionOutput {
990
+ images: String
991
+ }
992
+
705
993
  enum InheritedValueType {
706
994
  Include
707
995
  None
@@ -1107,6 +1395,9 @@ input MenuPatch {
1107
1395
  type Mutation {
1108
1396
  """To activate user"""
1109
1397
  activateUser(userId: String!): Boolean!
1398
+
1399
+ """To attach a contact on Employee"""
1400
+ attachContact(contactId: String!, id: String!): Employee!
1110
1401
  cancelInvitation(email: String!, reference: String!, type: String!): Boolean!
1111
1402
 
1112
1403
  """To connect a connection"""
@@ -1120,6 +1411,9 @@ type Mutation {
1120
1411
 
1121
1412
  """To create new application"""
1122
1413
  createApplication(application: NewApplication!): Application!
1414
+
1415
+ """To create new ApprovalLine"""
1416
+ createApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1123
1417
  createAttachment(attachment: NewAttachment!): Attachment!
1124
1418
  createAttachments(attachments: [NewAttachment!]!): [Attachment!]!
1125
1419
 
@@ -1129,6 +1423,9 @@ type Mutation {
1129
1423
  """To create new Board"""
1130
1424
  createBoard(board: NewBoard!): Board!
1131
1425
 
1426
+ """To create new BoardTemplate"""
1427
+ createBoardTemplate(boardTemplate: NewBoardTemplate!): BoardTemplate!
1428
+
1132
1429
  """To create new CommonCode"""
1133
1430
  createCommonCode(commonCode: NewCommonCode!): CommonCode!
1134
1431
 
@@ -1138,9 +1435,18 @@ type Mutation {
1138
1435
  """To create new connection"""
1139
1436
  createConnection(connection: NewConnection!): Connection!
1140
1437
 
1438
+ """To create new Contact"""
1439
+ createContact(contact: NewContact!): Contact!
1440
+
1441
+ """To create new Department"""
1442
+ createDepartment(department: NewDepartment!): Department!
1443
+
1141
1444
  """To create domain (Only superuser is granted this privilege.)"""
1142
1445
  createDomain(domainInput: DomainPatch!): Domain!
1143
1446
 
1447
+ """To create new Employee"""
1448
+ createEmployee(employee: NewEmployee!): Employee!
1449
+
1144
1450
  """To create new Entity"""
1145
1451
  createEntity(entity: NewEntity!): Entity!
1146
1452
 
@@ -1174,6 +1480,15 @@ type Mutation {
1174
1480
  """To create new MenuDetailColumn"""
1175
1481
  createMenuDetailColumn(menuDetailColumn: NewMenuDetailColumn!): MenuDetailColumn!
1176
1482
 
1483
+ """To create new ApprovalLine for current user"""
1484
+ createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1485
+
1486
+ """To create new Notification"""
1487
+ createNotification(notification: NewNotification!): Notification!
1488
+
1489
+ """To create new NotificationRule"""
1490
+ createNotificationRule(notificationRule: NewNotificationRule!): NotificationRule!
1491
+
1177
1492
  """To create new Oauth2Client"""
1178
1493
  createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
1179
1494
 
@@ -1198,6 +1513,9 @@ type Mutation {
1198
1513
  """To create new Terminology"""
1199
1514
  createTerminology(terminology: NewTerminology!): Terminology!
1200
1515
 
1516
+ """To create new Theme"""
1517
+ createTheme(theme: NewTheme!): Theme!
1518
+
1201
1519
  """To create new user"""
1202
1520
  createUser(user: NewUser!): User!
1203
1521
  deleteAppBinding(id: String!): Boolean!
@@ -1207,6 +1525,12 @@ type Mutation {
1207
1525
 
1208
1526
  """To delete application"""
1209
1527
  deleteApplication(id: String!): Boolean!
1528
+
1529
+ """To delete ApprovalLine"""
1530
+ deleteApprovalLine(id: String!): Boolean!
1531
+
1532
+ """To delete multiple ApprovalLines"""
1533
+ deleteApprovalLines(ids: [String!]!): Boolean!
1210
1534
  deleteAttachment(id: String!): Boolean!
1211
1535
  deleteAttachmentsByRef(refBys: [String!]!): Boolean!
1212
1536
 
@@ -1219,6 +1543,9 @@ type Mutation {
1219
1543
  """To delete Board"""
1220
1544
  deleteBoard(id: String!): Boolean!
1221
1545
 
1546
+ """To delete BoardTemplate"""
1547
+ deleteBoardTemplate(id: String!): Boolean!
1548
+
1222
1549
  """To delete CommonCode"""
1223
1550
  deleteCommonCode(id: String!): Boolean!
1224
1551
 
@@ -1237,6 +1564,18 @@ type Mutation {
1237
1564
  """To delete multiple connections"""
1238
1565
  deleteConnections(names: [String!]!): Boolean!
1239
1566
 
1567
+ """To delete Contact"""
1568
+ deleteContact(id: String!): Boolean!
1569
+
1570
+ """To delete multiple Contacts"""
1571
+ deleteContacts(ids: [String!]!): Boolean!
1572
+
1573
+ """To delete Department"""
1574
+ deleteDepartment(id: String!): Boolean!
1575
+
1576
+ """To delete multiple Departments"""
1577
+ deleteDepartments(ids: [String!]!): Boolean!
1578
+
1240
1579
  """To delete domain (Only superuser is granted this privilege.)"""
1241
1580
  deleteDomain(name: String!): Domain!
1242
1581
 
@@ -1246,6 +1585,12 @@ type Mutation {
1246
1585
  """To delete multiple domains (Only superuser is granted this privilege.)"""
1247
1586
  deleteDomains(names: [String!]!): Boolean!
1248
1587
 
1588
+ """To delete Employee"""
1589
+ deleteEmployee(id: String!): Boolean!
1590
+
1591
+ """To delete multiple Employees"""
1592
+ deleteEmployees(ids: [String!]!): Boolean!
1593
+
1249
1594
  """To delete multiple Entities"""
1250
1595
  deleteEntities(ids: [String!]!): Boolean!
1251
1596
 
@@ -1303,6 +1648,24 @@ type Mutation {
1303
1648
  """To delete multiple Menus"""
1304
1649
  deleteMenus(ids: [String!]!): Boolean!
1305
1650
 
1651
+ """To delete ApprovalLine for current user"""
1652
+ deleteMyApprovalLine(id: String!): Boolean!
1653
+
1654
+ """To delete multiple ApprovalLines for current user"""
1655
+ deleteMyApprovalLines(ids: [String!]!): Boolean!
1656
+
1657
+ """To delete Notification"""
1658
+ deleteNotification(id: String!): Boolean!
1659
+
1660
+ """To delete NotificationRule"""
1661
+ deleteNotificationRule(id: String!): Boolean!
1662
+
1663
+ """To delete multiple NotificationRules"""
1664
+ deleteNotificationRules(ids: [String!]!): Boolean!
1665
+
1666
+ """To delete multiple Notificationes"""
1667
+ deleteNotificationes(ids: [String!]!): Boolean!
1668
+
1306
1669
  """To delete Oauth2Client"""
1307
1670
  deleteOauth2Client(id: String!): Boolean!
1308
1671
 
@@ -1351,12 +1714,21 @@ type Mutation {
1351
1714
  """To delete Terminology"""
1352
1715
  deleteTerminology(id: String!): Boolean!
1353
1716
 
1717
+ """To delete Theme"""
1718
+ deleteTheme(id: String!): Boolean!
1719
+
1720
+ """To delete multiple Themes"""
1721
+ deleteThemes(ids: [String!]!): Boolean!
1722
+
1354
1723
  """To delete a user"""
1355
1724
  deleteUser(email: String!): Boolean!
1356
1725
 
1357
1726
  """To delete some users"""
1358
1727
  deleteUsers(emails: [String!]!): Boolean!
1359
1728
 
1729
+ """To detach a contact from Employee"""
1730
+ detachContact(id: String!): Employee!
1731
+
1360
1732
  """To disconnect a connection"""
1361
1733
  disconnectConnection(name: String!): Connection!
1362
1734
  domainRegister(domainInput: DomainGeneratorInput!): Domain!
@@ -1369,6 +1741,9 @@ type Mutation {
1369
1741
  getOauth2AuthUrl(id: String!): String!
1370
1742
  grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
1371
1743
 
1744
+ """To import multiple ApprovalLines"""
1745
+ importApprovalLines(approvalLines: [ApprovalLinePatch!]!): Boolean!
1746
+
1372
1747
  """To import multiple AttributeSets"""
1373
1748
  importAttributeSets(attributes: [AttributeSetPatch!]!): Boolean!
1374
1749
 
@@ -1378,6 +1753,15 @@ type Mutation {
1378
1753
  """To import multiple CommonCodes"""
1379
1754
  importCommonCodes(commonCodes: [CommonCodePatch!]!): Boolean!
1380
1755
 
1756
+ """To import multiple Contacts"""
1757
+ importContacts(contacts: [ContactPatch!]!): Boolean!
1758
+
1759
+ """To import multiple Departments"""
1760
+ importDepartments(departments: [DepartmentPatch!]!): Boolean!
1761
+
1762
+ """To import multiple Employees"""
1763
+ importEmployees(employees: [EmployeePatch!]!): Boolean!
1764
+
1381
1765
  """To import multiple MenuButtons"""
1382
1766
  importMenuButtons(menuButtons: [MenuButtonPatch!]!): Boolean!
1383
1767
 
@@ -1396,6 +1780,9 @@ type Mutation {
1396
1780
  """To import multiple Menus"""
1397
1781
  importMenus(menus: [MenuPatch!]!): Boolean!
1398
1782
 
1783
+ """To import multiple NotificationRules"""
1784
+ importNotificationRules(notificationRules: [NotificationRulePatch!]!): Boolean!
1785
+
1399
1786
  """To import multiple Oauth2Clients"""
1400
1787
  importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
1401
1788
 
@@ -1405,6 +1792,9 @@ type Mutation {
1405
1792
  """To import multiple Terminologies"""
1406
1793
  importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
1407
1794
 
1795
+ """To import multiple Themes"""
1796
+ importThemes(themes: [ThemePatch!]!): Boolean!
1797
+
1408
1798
  """To inactivate user"""
1409
1799
  inactivateUser(userId: String!): Boolean!
1410
1800
  inviteCustomer(customerDomainName: String!): Boolean!
@@ -1458,6 +1848,9 @@ type Mutation {
1458
1848
  transferOwner(email: String!): Boolean!
1459
1849
  updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
1460
1850
  updateApplication(id: String!, patch: ApplicationPatch!): Application!
1851
+
1852
+ """To modify ApprovalLine information"""
1853
+ updateApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
1461
1854
  updateAttachment(id: String!, patch: AttachmentPatch!): Attachment!
1462
1855
 
1463
1856
  """To modify AttributeSet information"""
@@ -1466,6 +1859,9 @@ type Mutation {
1466
1859
  """To modify Board information"""
1467
1860
  updateBoard(id: String!, patch: BoardPatch!): Board!
1468
1861
 
1862
+ """To modify BoardTemplate information"""
1863
+ updateBoardTemplate(id: String!, patch: BoardTemplatePatch!): BoardTemplate!
1864
+
1469
1865
  """To modify CommonCode information"""
1470
1866
  updateCommonCode(name: String!, patch: CommonCodePatch!): CommonCode!
1471
1867
 
@@ -1475,12 +1871,21 @@ type Mutation {
1475
1871
  """To modify connection information"""
1476
1872
  updateConnection(name: String!, patch: ConnectionPatch!): Connection!
1477
1873
 
1874
+ """To modify Contact information"""
1875
+ updateContact(id: String!, patch: ContactPatch!): Contact!
1876
+
1877
+ """To modify Department information"""
1878
+ updateDepartment(id: String!, patch: DepartmentPatch!): Department!
1879
+
1478
1880
  """To update domain (Only superuser is granted this privilege.)"""
1479
1881
  updateDomain(name: String!, patch: DomainPatch!): Domain!
1480
1882
 
1481
1883
  """To update multiple domains"""
1482
1884
  updateDomains(patches: [DomainPatch!]!): Boolean!
1483
1885
 
1886
+ """To modify Employee information"""
1887
+ updateEmployee(id: String!, patch: EmployeePatch!): Employee!
1888
+
1484
1889
  """To modify Entity' information"""
1485
1890
  updateEntity(id: String!, patch: EntityPatch!): Entity!
1486
1891
 
@@ -1511,6 +1916,9 @@ type Mutation {
1511
1916
  """To modify MenuDetailColumn information"""
1512
1917
  updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
1513
1918
 
1919
+ """To modify multiple ApprovalLines' information"""
1920
+ updateMultipleApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
1921
+
1514
1922
  """To modify multiple AttributeSets' information"""
1515
1923
  updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
1516
1924
 
@@ -1523,6 +1931,15 @@ type Mutation {
1523
1931
  """To modify multiple connections' information"""
1524
1932
  updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
1525
1933
 
1934
+ """To modify multiple Contacts' information"""
1935
+ updateMultipleContact(patches: [ContactPatch!]!): [Contact!]!
1936
+
1937
+ """To modify multiple Departments' information"""
1938
+ updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
1939
+
1940
+ """To modify multiple Employees' information"""
1941
+ updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
1942
+
1526
1943
  """To modify multiple Entitys' information"""
1527
1944
  updateMultipleEntity(patches: [EntityPatch!]!): [Entity!]!
1528
1945
 
@@ -1532,6 +1949,15 @@ type Mutation {
1532
1949
  """To modify multiple Menus' information"""
1533
1950
  updateMultipleMenu(patches: [MenuPatch!]!): [Menu!]!
1534
1951
 
1952
+ """To modify multiple ApprovalLines' information for current user"""
1953
+ updateMultipleMyApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
1954
+
1955
+ """To modify multiple Notificationes' information"""
1956
+ updateMultipleNotification(patches: [NotificationPatch!]!): [Notification!]!
1957
+
1958
+ """To modify multiple NotificationRules' information"""
1959
+ updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
1960
+
1535
1961
  """To modify multiple PartnerSettings' information"""
1536
1962
  updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
1537
1963
 
@@ -1550,9 +1976,21 @@ type Mutation {
1550
1976
  """To modify multiple Terminologies' information"""
1551
1977
  updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
1552
1978
 
1979
+ """To modify multiple Themes' information"""
1980
+ updateMultipleTheme(patches: [ThemePatch!]!): [Theme!]!
1981
+
1553
1982
  """To modify multiple users information"""
1554
1983
  updateMultipleUser(patches: [UserPatch!]!): [User!]!
1555
1984
 
1985
+ """To modify ApprovalLine information for current user"""
1986
+ updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
1987
+
1988
+ """To modify Notification information"""
1989
+ updateNotification(id: String!, patch: NotificationPatch!): Notification!
1990
+
1991
+ """To modify NotificationRule information"""
1992
+ updateNotificationRule(id: String!, patch: NotificationRulePatch!): NotificationRule!
1993
+
1556
1994
  """To modify Oauth2Client information"""
1557
1995
  updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
1558
1996
 
@@ -1583,6 +2021,9 @@ type Mutation {
1583
2021
  """To modify Terminology information"""
1584
2022
  updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
1585
2023
 
2024
+ """To modify Theme information"""
2025
+ updateTheme(id: String!, patch: ThemePatch!): Theme!
2026
+
1586
2027
  """To modify user information"""
1587
2028
  updateUser(email: String!, patch: UserPatch!): User!
1588
2029
 
@@ -1610,6 +2051,14 @@ input NewApplication {
1610
2051
  webhook: String
1611
2052
  }
1612
2053
 
2054
+ input NewApprovalLine {
2055
+ description: String
2056
+ model: Object
2057
+ name: String!
2058
+ owner: ObjectRefApprovalLineOwnerType!
2059
+ ownerType: ApprovalLineOwnerType!
2060
+ }
2061
+
1613
2062
  input NewAttachment {
1614
2063
  category: String
1615
2064
  description: String
@@ -1633,6 +2082,14 @@ input NewBoard {
1633
2082
  thumbnail: String
1634
2083
  }
1635
2084
 
2085
+ input NewBoardTemplate {
2086
+ description: String
2087
+ model: String!
2088
+ name: String!
2089
+ state: BoardTemplateStatus
2090
+ thumbnail: String
2091
+ }
2092
+
1636
2093
  input NewCommonCode {
1637
2094
  description: String
1638
2095
  details: [String!]
@@ -1654,6 +2111,44 @@ input NewConnection {
1654
2111
  type: String
1655
2112
  }
1656
2113
 
2114
+ input NewContact {
2115
+ address: String
2116
+ company: String
2117
+ department: String
2118
+ email: String
2119
+ items: [ContactItemPatch!]
2120
+ name: String!
2121
+ note: String
2122
+ phone: String
2123
+ profile: ProfileInput
2124
+ }
2125
+
2126
+ input NewDepartment {
2127
+ active: Boolean
2128
+ controlNo: String!
2129
+ description: String
2130
+ extension: String
2131
+ manager: ObjectRefForEmployee
2132
+ name: String!
2133
+ parent: ObjectRef
2134
+ picture: Upload
2135
+ state: DepartmentStatus
2136
+ }
2137
+
2138
+ input NewEmployee {
2139
+ active: Boolean
2140
+ controlNo: String!
2141
+ department: ObjectRef
2142
+ extension: String
2143
+ hiredOn: String
2144
+ name: String!
2145
+ note: String
2146
+ photo: Upload
2147
+ supervisor: ObjectRefForEmployee
2148
+ type: EmployeeType
2149
+ user: ObjectRefForUser
2150
+ }
2151
+
1657
2152
  input NewEntity {
1658
2153
  active: Boolean
1659
2154
  association: String
@@ -1871,6 +2366,29 @@ input NewMenuDetailColumn {
1871
2366
  virtualField: Boolean
1872
2367
  }
1873
2368
 
2369
+ input NewNotification {
2370
+ body: String
2371
+ image: String
2372
+ ownerId: String
2373
+ property: Object
2374
+ subject: String
2375
+ timestamp: Timestamp
2376
+ title: String
2377
+ type: String
2378
+ url: String
2379
+ }
2380
+
2381
+ input NewNotificationRule {
2382
+ active: Boolean
2383
+ body: String
2384
+ description: String
2385
+ name: String!
2386
+ state: NotificationRuleStatus
2387
+ thumbnail: Upload
2388
+ title: String
2389
+ url: String
2390
+ }
2391
+
1874
2392
  input NewOauth2Client {
1875
2393
  accessToken: String
1876
2394
  accessTokenUrl: String
@@ -1940,6 +2458,13 @@ input NewTerminology {
1940
2458
  name: String!
1941
2459
  }
1942
2460
 
2461
+ input NewTheme {
2462
+ description: String
2463
+ name: String!
2464
+ type: String
2465
+ value: Object
2466
+ }
2467
+
1943
2468
  input NewUser {
1944
2469
  description: String
1945
2470
  email: String!
@@ -1958,16 +2483,87 @@ input NewUserByDomainWizardInput {
1958
2483
  roles: [NewRole!]!
1959
2484
  }
1960
2485
 
2486
+ """Entity for Notification"""
1961
2487
  type Notification {
1962
- body: String!
2488
+ body: String
2489
+ createdAt: Timestamp
2490
+ creator: User
1963
2491
  domain: Domain
2492
+ id: ID!
1964
2493
  image: String
1965
- property: Any
2494
+ owner: User
2495
+ property: Object
2496
+ state: String
1966
2497
  subject: String
1967
2498
  timestamp: Date
1968
- title: String!
2499
+ title: String
1969
2500
  type: String
2501
+ updatedAt: Timestamp
2502
+ updater: User
2503
+ url: String
2504
+ }
2505
+
2506
+ type NotificationList {
2507
+ items: [Notification!]!
2508
+ total: Int!
2509
+ }
2510
+
2511
+ input NotificationPatch {
2512
+ cuFlag: String
2513
+ id: ID
2514
+ state: NotificationStatus
2515
+ }
2516
+
2517
+ """Entity for NotificationRule"""
2518
+ type NotificationRule {
2519
+ body: String
2520
+ channels: String
2521
+ createdAt: Timestamp
2522
+ creator: User
2523
+ deletedAt: Timestamp
2524
+ description: String
2525
+ domain: Domain
2526
+ id: ID!
2527
+ name: String
2528
+
2529
+ """notification recipients."""
2530
+ recipients: [RecipientItem!]
2531
+ state: String
2532
+ thumbnail: String
2533
+ title: String
2534
+ updatedAt: Timestamp
2535
+ updater: User
1970
2536
  url: String
2537
+ version: Float
2538
+ }
2539
+
2540
+ type NotificationRuleList {
2541
+ items: [NotificationRule!]!
2542
+ total: Int!
2543
+ }
2544
+
2545
+ input NotificationRulePatch {
2546
+ body: String
2547
+ cuFlag: String
2548
+ description: String
2549
+ id: ID
2550
+ name: String
2551
+ state: NotificationRuleStatus
2552
+ thumbnail: Upload
2553
+ title: String
2554
+ url: String
2555
+ }
2556
+
2557
+ """state enumeration of a notificationRule"""
2558
+ enum NotificationRuleStatus {
2559
+ DRAFT
2560
+ RELEASED
2561
+ }
2562
+
2563
+ """state enumeration of a notification"""
2564
+ enum NotificationStatus {
2565
+ NOTREAD
2566
+ READ
1971
2567
  }
1972
2568
 
1973
2569
  """Entity for Oauth2Client"""
@@ -2041,6 +2637,69 @@ input ObjectRef {
2041
2637
  name: String
2042
2638
  }
2043
2639
 
2640
+ input ObjectRefApprovalLineOwnerType {
2641
+ controlNo: String
2642
+
2643
+ """Field description"""
2644
+ description: String
2645
+
2646
+ """Field id"""
2647
+ id: ID!
2648
+
2649
+ """Field name"""
2650
+ name: String
2651
+ }
2652
+
2653
+ input ObjectRefForEmployee {
2654
+ controlNo: String
2655
+
2656
+ """Field description"""
2657
+ description: String
2658
+ email: String
2659
+
2660
+ """Field id"""
2661
+ id: ID!
2662
+
2663
+ """Field name"""
2664
+ name: String
2665
+ photo: String
2666
+ }
2667
+
2668
+ input ObjectRefForUser {
2669
+ """Field description"""
2670
+ description: String
2671
+ email: String
2672
+
2673
+ """Field id"""
2674
+ id: ID!
2675
+
2676
+ """Field name"""
2677
+ name: String
2678
+ }
2679
+
2680
+ type OrgMemberTarget {
2681
+ controlNo: String
2682
+
2683
+ """Field description"""
2684
+ description: String
2685
+
2686
+ """Field id"""
2687
+ id: ID!
2688
+
2689
+ """Field name"""
2690
+ name: String
2691
+ }
2692
+
2693
+ """type enumeration of a approval line item"""
2694
+ enum OrgMemberTargetType {
2695
+ Department
2696
+ Employee
2697
+ MyDepartment
2698
+ MySupervisor
2699
+ Myself
2700
+ Role
2701
+ }
2702
+
2044
2703
  input Pagination {
2045
2704
  limit: Int
2046
2705
  page: Int
@@ -2175,6 +2834,23 @@ input PrivilegePatch {
2175
2834
  roles: [ObjectRef!]
2176
2835
  }
2177
2836
 
2837
+ """Object type for Profile"""
2838
+ type Profile {
2839
+ left: Float
2840
+ picture: String
2841
+ top: Float
2842
+ zoom: Float
2843
+ }
2844
+
2845
+ """Input type for Profile"""
2846
+ input ProfileInput {
2847
+ file: Upload
2848
+ left: Float
2849
+ picture: String
2850
+ top: Float
2851
+ zoom: Float
2852
+ }
2853
+
2178
2854
  type PropertySpec {
2179
2855
  label: String!
2180
2856
  name: String!
@@ -2184,6 +2860,7 @@ type PropertySpec {
2184
2860
  }
2185
2861
 
2186
2862
  type Query {
2863
+ APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
2187
2864
  appBinding(id: String!): AppBinding!
2188
2865
  appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
2189
2866
 
@@ -2198,6 +2875,15 @@ type Query {
2198
2875
 
2199
2876
  """To fetch multiple application"""
2200
2877
  applications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplicationList!
2878
+
2879
+ """To fetch a approval line"""
2880
+ approvalLine(id: String!): ApprovalLine
2881
+
2882
+ """To fetch referable approval lines for the user"""
2883
+ approvalLineReferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
2884
+
2885
+ """To fetch multiple approval lines"""
2886
+ approvalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
2201
2887
  attachment(id: String!): Attachment!
2202
2888
  attachments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttachmentList!
2203
2889
 
@@ -2219,11 +2905,24 @@ type Query {
2219
2905
  """Board Usage Permissions"""
2220
2906
  boardPermissions: [String!]!
2221
2907
 
2908
+ """To fetch a BoardTemplate"""
2909
+ boardTemplate(id: String!): BoardTemplate
2910
+
2911
+ """To fetch a BoardTemplate by name"""
2912
+ boardTemplateByName(name: String!): BoardTemplate
2913
+
2914
+ """To fetch multiple BoardTemplates"""
2915
+ boardTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
2916
+
2917
+ """To fetch BoardTemplates created by me"""
2918
+ boardTemplatesCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
2919
+
2222
2920
  """To fetch multiple Boards"""
2223
2921
  boards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
2224
2922
 
2225
2923
  """To fetch Boards created by me"""
2226
2924
  boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
2925
+ chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
2227
2926
 
2228
2927
  """To check if system would provide default password to create new user"""
2229
2928
  checkDefaultPassword: Boolean!
@@ -2240,6 +2939,9 @@ type Query {
2240
2939
  """..."""
2241
2940
  checkUserExistence(email: String!): Boolean!
2242
2941
 
2942
+ """To fetch common approval lines"""
2943
+ commonApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
2944
+
2243
2945
  """To fetch a CommonCode"""
2244
2946
  commonCode(name: String!): CommonCode
2245
2947
 
@@ -2263,7 +2965,24 @@ type Query {
2263
2965
 
2264
2966
  """To fetch multiple connector"""
2265
2967
  connectors: ConnectorList!
2968
+
2969
+ """To fetch a Contact"""
2970
+ contact(id: String!): Contact
2971
+
2972
+ """To fetch multiple Contacts"""
2973
+ contacts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ContactList!
2266
2974
  customers: [Domain!]!
2975
+ decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
2976
+ decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
2977
+
2978
+ """To fetch a Department"""
2979
+ department(id: String!): Department
2980
+
2981
+ """To fetch a Root Department"""
2982
+ departmentRoot: Department
2983
+
2984
+ """To fetch multiple Departments"""
2985
+ departments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DepartmentList!
2267
2986
 
2268
2987
  """To fetch domain"""
2269
2988
  domain(id: String!): Domain!
@@ -2271,6 +2990,12 @@ type Query {
2271
2990
  """To fetch all domains (Only superuser is granted this privilege.)"""
2272
2991
  domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
2273
2992
 
2993
+ """To fetch a Employee"""
2994
+ employee(id: String!): Employee
2995
+
2996
+ """To fetch multiple Employees"""
2997
+ employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
2998
+
2274
2999
  """To fetch multiple Entities"""
2275
3000
  entities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityList!
2276
3001
 
@@ -2314,6 +3039,8 @@ type Query {
2314
3039
 
2315
3040
  """To query whether I have the given permission"""
2316
3041
  hasPrivilege(category: String!, name: String!): Boolean!
3042
+ i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
3043
+ imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
2317
3044
  invitation(email: String!, reference: String!, type: String!): Invitation!
2318
3045
  invitations(reference: String!, type: String!): InvitationList!
2319
3046
 
@@ -2356,13 +3083,31 @@ type Query {
2356
3083
  """To fetch multiple Menus"""
2357
3084
  menus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
2358
3085
 
3086
+ """To fetch approval lines only for to the user"""
3087
+ myApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
3088
+
2359
3089
  """To fetch current user's Favorites"""
2360
3090
  myFavorites: [Favorite!]!
2361
3091
  myLoginHistories(limit: Float!): [LoginHistory!]!
2362
3092
 
3093
+ """To fetch my notifications"""
3094
+ myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3095
+
2363
3096
  """To fetch roles of current user"""
2364
3097
  myRoles: [Role!]!
2365
3098
 
3099
+ """To fetch a Notification"""
3100
+ notification(id: String!): Notification
3101
+
3102
+ """To fetch a NotificationRule"""
3103
+ notificationRule(id: String!): NotificationRule
3104
+
3105
+ """To fetch multiple NotificationRules"""
3106
+ notificationRules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationRuleList!
3107
+
3108
+ """To fetch multiple Notificationes"""
3109
+ notificationes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3110
+
2366
3111
  """To fetch a Oauth2Client"""
2367
3112
  oauth2Client(id: String!): Oauth2Client
2368
3113
 
@@ -2449,6 +3194,12 @@ type Query {
2449
3194
  """To fetch a Terminology"""
2450
3195
  terminology(id: String!): Terminology!
2451
3196
 
3197
+ """To fetch a Theme"""
3198
+ theme(id: String!): Theme
3199
+
3200
+ """To fetch multiple Themes"""
3201
+ themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
3202
+
2452
3203
  """To fetch user"""
2453
3204
  user(email: String!): User!
2454
3205
 
@@ -2463,6 +3214,12 @@ type Query {
2463
3214
  vendors: [Domain!]!
2464
3215
  }
2465
3216
 
3217
+ type RecipientItem {
3218
+ recipient: OrgMemberTarget
3219
+ type: OrgMemberTargetType
3220
+ value: String
3221
+ }
3222
+
2466
3223
  type Role {
2467
3224
  createdAt: Timestamp
2468
3225
  creator: User
@@ -2527,6 +3284,7 @@ type ScenarioInstance {
2527
3284
  instanceName: String
2528
3285
  message: String
2529
3286
  progress: ScenarioInstanceProgress
3287
+ result: Object
2530
3288
  root: ScenarioInstance
2531
3289
  scenarioName: String
2532
3290
  state: String
@@ -2637,6 +3395,11 @@ type Step {
2637
3395
  log: Boolean
2638
3396
  name: String!
2639
3397
  params: String
3398
+
3399
+ """
3400
+ a boolean attribute indicating the inclusion status of an element in the result
3401
+ """
3402
+ result: Boolean
2640
3403
  scenario: Scenario
2641
3404
  sequence: Float
2642
3405
  skip: Boolean
@@ -2658,6 +3421,7 @@ input StepPatch {
2658
3421
  log: Boolean
2659
3422
  name: String
2660
3423
  params: String
3424
+ result: Boolean
2661
3425
  sequence: Int
2662
3426
  skip: Boolean
2663
3427
  task: String
@@ -2716,6 +3480,35 @@ input TerminologyPatch {
2716
3480
  name: String
2717
3481
  }
2718
3482
 
3483
+ """Entity for Theme"""
3484
+ type Theme {
3485
+ createdAt: Timestamp
3486
+ creator: User
3487
+ deletedAt: Timestamp
3488
+ description: String
3489
+ domain: Domain
3490
+ id: ID!
3491
+ name: String
3492
+ type: String
3493
+ updatedAt: Timestamp
3494
+ updater: User
3495
+ value: Object
3496
+ }
3497
+
3498
+ type ThemeList {
3499
+ items: [Theme!]!
3500
+ total: Int!
3501
+ }
3502
+
3503
+ input ThemePatch {
3504
+ cuFlag: String
3505
+ description: String
3506
+ id: ID
3507
+ name: String
3508
+ type: String
3509
+ value: Object
3510
+ }
3511
+
2719
3512
  """
2720
3513
  The javascript `Date` as integer. Type represents date and time as number of milliseconds from start of UNIX epoch.
2721
3514
  """
@@ -2770,4 +3563,12 @@ type UserRole {
2770
3563
  description: String
2771
3564
  id: String
2772
3565
  name: String
3566
+ }
3567
+
3568
+ input i18nCompletionInput {
3569
+ json: String!
3570
+ }
3571
+
3572
+ type i18nCompletionOutput {
3573
+ message: String
2773
3574
  }