@operato/scene-table 1.2.50 → 1.2.58
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/CHANGELOG.md +9 -0
- package/dist/data-list/data-list.d.ts +1 -1
- package/dist/data-list/data-list.js +2 -1
- package/dist/data-list/data-list.js.map +1 -1
- package/dist/helper-functions.d.ts +2 -1
- package/dist/helper-functions.js +2 -2
- package/dist/helper-functions.js.map +1 -1
- package/dist/table-cell.d.ts +1 -0
- package/dist/table-cell.js +8 -0
- package/dist/table-cell.js.map +1 -1
- package/dist/table.d.ts +1 -1
- package/dist/table.js +2 -1
- package/dist/table.js.map +1 -1
- package/package.json +2 -2
- package/schema.gql +932 -3
- package/src/data-list/data-list.ts +2 -1
- package/src/helper-functions.ts +4 -3
- package/src/table-cell.ts +11 -0
- package/src/table.ts +2 -1
- package/tsconfig.tsbuildinfo +1 -1
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!
|
|
@@ -211,6 +278,7 @@ input AttributeSetPatch {
|
|
|
211
278
|
type Board {
|
|
212
279
|
createdAt: Timestamp
|
|
213
280
|
creator: User
|
|
281
|
+
deletedAt: Timestamp
|
|
214
282
|
description: String
|
|
215
283
|
domain: Domain
|
|
216
284
|
group: Group
|
|
@@ -221,11 +289,13 @@ type Board {
|
|
|
221
289
|
thumbnail: String
|
|
222
290
|
updatedAt: Timestamp
|
|
223
291
|
updater: User
|
|
292
|
+
version: Float
|
|
224
293
|
}
|
|
225
294
|
|
|
226
295
|
type BoardFavorite {
|
|
227
296
|
createdAt: Timestamp
|
|
228
297
|
creator: User
|
|
298
|
+
deletedAt: Timestamp
|
|
229
299
|
description: String
|
|
230
300
|
domain: Domain
|
|
231
301
|
favoriteId: String
|
|
@@ -237,6 +307,7 @@ type BoardFavorite {
|
|
|
237
307
|
thumbnail: String
|
|
238
308
|
updatedAt: Timestamp
|
|
239
309
|
updater: User
|
|
310
|
+
version: Float
|
|
240
311
|
}
|
|
241
312
|
|
|
242
313
|
type BoardFavoriteList {
|
|
@@ -257,6 +328,61 @@ input BoardPatch {
|
|
|
257
328
|
thumbnail: String
|
|
258
329
|
}
|
|
259
330
|
|
|
331
|
+
"""Entity for BoardTemplate"""
|
|
332
|
+
type BoardTemplate {
|
|
333
|
+
createdAt: Timestamp
|
|
334
|
+
creator: User
|
|
335
|
+
description: String
|
|
336
|
+
domain: Domain
|
|
337
|
+
id: ID!
|
|
338
|
+
model: String
|
|
339
|
+
name: String
|
|
340
|
+
state: String
|
|
341
|
+
thumbnail: String
|
|
342
|
+
updatedAt: Timestamp
|
|
343
|
+
updater: User
|
|
344
|
+
version: Float
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
type BoardTemplateList {
|
|
348
|
+
items: [BoardTemplate!]!
|
|
349
|
+
total: Int!
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
input BoardTemplatePatch {
|
|
353
|
+
cuFlag: String
|
|
354
|
+
description: String
|
|
355
|
+
id: ID
|
|
356
|
+
model: String!
|
|
357
|
+
name: String
|
|
358
|
+
state: BoardTemplateStatus
|
|
359
|
+
thumbnail: String
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
"""state enumeration of a boardTemplate"""
|
|
363
|
+
enum BoardTemplateStatus {
|
|
364
|
+
DRAFT
|
|
365
|
+
RELEASED
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
input ChatCompletionInput {
|
|
369
|
+
content: String!
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
type ChatCompletionOutput {
|
|
373
|
+
message: String
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
input CodeDecipherInput {
|
|
377
|
+
code: String!
|
|
378
|
+
language: String
|
|
379
|
+
system: String
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
type CodeDecipherOutput {
|
|
383
|
+
message: String
|
|
384
|
+
}
|
|
385
|
+
|
|
260
386
|
"""Entity for CommonCode"""
|
|
261
387
|
type CommonCode {
|
|
262
388
|
createdAt: Timestamp
|
|
@@ -366,6 +492,57 @@ type ConnectorType {
|
|
|
366
492
|
taskPrefixes: [String!]
|
|
367
493
|
}
|
|
368
494
|
|
|
495
|
+
"""Entity for Contact"""
|
|
496
|
+
type Contact {
|
|
497
|
+
address: String
|
|
498
|
+
company: String
|
|
499
|
+
createdAt: Timestamp
|
|
500
|
+
creator: User
|
|
501
|
+
deletedAt: Timestamp
|
|
502
|
+
department: String
|
|
503
|
+
domain: Domain
|
|
504
|
+
email: String
|
|
505
|
+
id: ID!
|
|
506
|
+
items: [ContactItem!]
|
|
507
|
+
name: String
|
|
508
|
+
note: String
|
|
509
|
+
phone: String
|
|
510
|
+
profile: Profile
|
|
511
|
+
updatedAt: Timestamp
|
|
512
|
+
updater: User
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
type ContactItem {
|
|
516
|
+
label: String!
|
|
517
|
+
type: String!
|
|
518
|
+
value: String!
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
input ContactItemPatch {
|
|
522
|
+
label: String!
|
|
523
|
+
type: String!
|
|
524
|
+
value: String!
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
type ContactList {
|
|
528
|
+
items: [Contact!]!
|
|
529
|
+
total: Int!
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
input ContactPatch {
|
|
533
|
+
address: String
|
|
534
|
+
company: String
|
|
535
|
+
cuFlag: String
|
|
536
|
+
department: String
|
|
537
|
+
email: String
|
|
538
|
+
id: ID
|
|
539
|
+
items: [ContactItemPatch!]
|
|
540
|
+
name: String
|
|
541
|
+
note: String
|
|
542
|
+
phone: String
|
|
543
|
+
profile: ProfileInput
|
|
544
|
+
}
|
|
545
|
+
|
|
369
546
|
type Data {
|
|
370
547
|
"""Data delivered by subscription"""
|
|
371
548
|
data: Object
|
|
@@ -380,6 +557,53 @@ type Data {
|
|
|
380
557
|
"""Date custom scalar type"""
|
|
381
558
|
scalar Date
|
|
382
559
|
|
|
560
|
+
"""Entity for Department"""
|
|
561
|
+
type Department {
|
|
562
|
+
active: Boolean
|
|
563
|
+
children: [Department!]!
|
|
564
|
+
controlNo: String!
|
|
565
|
+
createdAt: Timestamp
|
|
566
|
+
creator: User
|
|
567
|
+
deletedAt: Timestamp
|
|
568
|
+
description: String
|
|
569
|
+
domain: Domain
|
|
570
|
+
extension: String
|
|
571
|
+
id: ID!
|
|
572
|
+
manager: Employee
|
|
573
|
+
members: [Employee!]!
|
|
574
|
+
name: String
|
|
575
|
+
parent: Department
|
|
576
|
+
picture: String
|
|
577
|
+
state: String
|
|
578
|
+
updatedAt: Timestamp
|
|
579
|
+
updater: User
|
|
580
|
+
version: Float
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
type DepartmentList {
|
|
584
|
+
items: [Department!]!
|
|
585
|
+
total: Int!
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
input DepartmentPatch {
|
|
589
|
+
active: Boolean
|
|
590
|
+
controlNo: String
|
|
591
|
+
cuFlag: String
|
|
592
|
+
description: String
|
|
593
|
+
id: ID
|
|
594
|
+
manager: ObjectRefForEmployee
|
|
595
|
+
name: String
|
|
596
|
+
parent: ObjectRef
|
|
597
|
+
picture: Upload
|
|
598
|
+
state: DepartmentStatus
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
"""state enumeration of a department"""
|
|
602
|
+
enum DepartmentStatus {
|
|
603
|
+
STATUS_A
|
|
604
|
+
STATUS_B
|
|
605
|
+
}
|
|
606
|
+
|
|
383
607
|
type Domain {
|
|
384
608
|
attributes: Object
|
|
385
609
|
brandImage: String
|
|
@@ -438,6 +662,72 @@ input DomainUserRoleInput {
|
|
|
438
662
|
users: [NewUserByDomainWizardInput!]!
|
|
439
663
|
}
|
|
440
664
|
|
|
665
|
+
"""Entity for Employee"""
|
|
666
|
+
type Employee {
|
|
667
|
+
active: Boolean
|
|
668
|
+
address: String!
|
|
669
|
+
alias: String
|
|
670
|
+
approvalLines: [ApprovalLine!]!
|
|
671
|
+
contact: Contact
|
|
672
|
+
controlNo: String!
|
|
673
|
+
createdAt: Timestamp
|
|
674
|
+
creator: User
|
|
675
|
+
deletedAt: Timestamp
|
|
676
|
+
department: Department
|
|
677
|
+
domain: Domain
|
|
678
|
+
email: String
|
|
679
|
+
extension: String
|
|
680
|
+
hiredOn: String
|
|
681
|
+
id: ID!
|
|
682
|
+
jobPosition: String
|
|
683
|
+
jobResponsibility: String
|
|
684
|
+
manages: [Department!]!
|
|
685
|
+
name: String
|
|
686
|
+
note: String
|
|
687
|
+
phone: String
|
|
688
|
+
photo: String
|
|
689
|
+
profile: Profile
|
|
690
|
+
retiredAt: String
|
|
691
|
+
supervises: [Employee!]!
|
|
692
|
+
supervisor: Employee
|
|
693
|
+
type: String
|
|
694
|
+
updatedAt: Timestamp
|
|
695
|
+
updater: User
|
|
696
|
+
user: User
|
|
697
|
+
version: Float
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
type EmployeeList {
|
|
701
|
+
items: [Employee!]!
|
|
702
|
+
total: Int!
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
input EmployeePatch {
|
|
706
|
+
active: Boolean
|
|
707
|
+
alias: String
|
|
708
|
+
controlNo: String
|
|
709
|
+
cuFlag: String
|
|
710
|
+
department: ObjectRef
|
|
711
|
+
hiredOn: String
|
|
712
|
+
id: ID
|
|
713
|
+
jobPosition: String
|
|
714
|
+
jobResponsibility: String
|
|
715
|
+
name: String
|
|
716
|
+
note: String
|
|
717
|
+
photo: Upload
|
|
718
|
+
retiredAt: String
|
|
719
|
+
supervisor: ObjectRefForEmployee
|
|
720
|
+
type: EmployeeType
|
|
721
|
+
user: ObjectRefForUser
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
"""type enumeration of a employee"""
|
|
725
|
+
enum EmployeeType {
|
|
726
|
+
FULLTIME
|
|
727
|
+
PARTTIME
|
|
728
|
+
TEMPORARY
|
|
729
|
+
}
|
|
730
|
+
|
|
441
731
|
"""Entity for Entity"""
|
|
442
732
|
type Entity {
|
|
443
733
|
active: Boolean
|
|
@@ -702,6 +992,16 @@ input GroupPatch {
|
|
|
702
992
|
name: String
|
|
703
993
|
}
|
|
704
994
|
|
|
995
|
+
input ImageCompletionInput {
|
|
996
|
+
count: Float!
|
|
997
|
+
description: String!
|
|
998
|
+
size: String!
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
type ImageCompletionOutput {
|
|
1002
|
+
images: String
|
|
1003
|
+
}
|
|
1004
|
+
|
|
705
1005
|
enum InheritedValueType {
|
|
706
1006
|
Include
|
|
707
1007
|
None
|
|
@@ -747,6 +1047,11 @@ type LoginHistory {
|
|
|
747
1047
|
id: ID!
|
|
748
1048
|
}
|
|
749
1049
|
|
|
1050
|
+
type LoginHistoryList {
|
|
1051
|
+
items: [LoginHistory!]!
|
|
1052
|
+
total: Int!
|
|
1053
|
+
}
|
|
1054
|
+
|
|
750
1055
|
"""Entity for Menu"""
|
|
751
1056
|
type Menu {
|
|
752
1057
|
buttons: [MenuButton!]!
|
|
@@ -1107,8 +1412,14 @@ input MenuPatch {
|
|
|
1107
1412
|
type Mutation {
|
|
1108
1413
|
"""To activate user"""
|
|
1109
1414
|
activateUser(userId: String!): Boolean!
|
|
1415
|
+
|
|
1416
|
+
"""To attach a contact on Employee"""
|
|
1417
|
+
attachContact(contactId: String!, id: String!): Employee!
|
|
1110
1418
|
cancelInvitation(email: String!, reference: String!, type: String!): Boolean!
|
|
1111
1419
|
|
|
1420
|
+
"""To clone a Board from existing Board"""
|
|
1421
|
+
cloneBoard(id: String!, patch: BoardPatch!): Board!
|
|
1422
|
+
|
|
1112
1423
|
"""To connect a connection"""
|
|
1113
1424
|
connectConnection(name: String!): Connection!
|
|
1114
1425
|
|
|
@@ -1120,6 +1431,9 @@ type Mutation {
|
|
|
1120
1431
|
|
|
1121
1432
|
"""To create new application"""
|
|
1122
1433
|
createApplication(application: NewApplication!): Application!
|
|
1434
|
+
|
|
1435
|
+
"""To create new ApprovalLine"""
|
|
1436
|
+
createApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
|
|
1123
1437
|
createAttachment(attachment: NewAttachment!): Attachment!
|
|
1124
1438
|
createAttachments(attachments: [NewAttachment!]!): [Attachment!]!
|
|
1125
1439
|
|
|
@@ -1129,6 +1443,9 @@ type Mutation {
|
|
|
1129
1443
|
"""To create new Board"""
|
|
1130
1444
|
createBoard(board: NewBoard!): Board!
|
|
1131
1445
|
|
|
1446
|
+
"""To create new BoardTemplate"""
|
|
1447
|
+
createBoardTemplate(boardTemplate: NewBoardTemplate!): BoardTemplate!
|
|
1448
|
+
|
|
1132
1449
|
"""To create new CommonCode"""
|
|
1133
1450
|
createCommonCode(commonCode: NewCommonCode!): CommonCode!
|
|
1134
1451
|
|
|
@@ -1138,9 +1455,18 @@ type Mutation {
|
|
|
1138
1455
|
"""To create new connection"""
|
|
1139
1456
|
createConnection(connection: NewConnection!): Connection!
|
|
1140
1457
|
|
|
1458
|
+
"""To create new Contact"""
|
|
1459
|
+
createContact(contact: NewContact!): Contact!
|
|
1460
|
+
|
|
1461
|
+
"""To create new Department"""
|
|
1462
|
+
createDepartment(department: NewDepartment!): Department!
|
|
1463
|
+
|
|
1141
1464
|
"""To create domain (Only superuser is granted this privilege.)"""
|
|
1142
1465
|
createDomain(domainInput: DomainPatch!): Domain!
|
|
1143
1466
|
|
|
1467
|
+
"""To create new Employee"""
|
|
1468
|
+
createEmployee(employee: NewEmployee!): Employee!
|
|
1469
|
+
|
|
1144
1470
|
"""To create new Entity"""
|
|
1145
1471
|
createEntity(entity: NewEntity!): Entity!
|
|
1146
1472
|
|
|
@@ -1174,6 +1500,15 @@ type Mutation {
|
|
|
1174
1500
|
"""To create new MenuDetailColumn"""
|
|
1175
1501
|
createMenuDetailColumn(menuDetailColumn: NewMenuDetailColumn!): MenuDetailColumn!
|
|
1176
1502
|
|
|
1503
|
+
"""To create new ApprovalLine for current user"""
|
|
1504
|
+
createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
|
|
1505
|
+
|
|
1506
|
+
"""To create new Notification"""
|
|
1507
|
+
createNotification(notification: NewNotification!): Notification!
|
|
1508
|
+
|
|
1509
|
+
"""To create new NotificationRule"""
|
|
1510
|
+
createNotificationRule(notificationRule: NewNotificationRule!): NotificationRule!
|
|
1511
|
+
|
|
1177
1512
|
"""To create new Oauth2Client"""
|
|
1178
1513
|
createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
|
|
1179
1514
|
|
|
@@ -1183,6 +1518,9 @@ type Mutation {
|
|
|
1183
1518
|
"""To create new PlayGroup"""
|
|
1184
1519
|
createPlayGroup(playGroup: NewPlayGroup!): PlayGroup!
|
|
1185
1520
|
|
|
1521
|
+
"""To create new PrinterDevice"""
|
|
1522
|
+
createPrinterDevice(printerDevice: NewPrinterDevice!): PrinterDevice!
|
|
1523
|
+
|
|
1186
1524
|
"""To create new privilege"""
|
|
1187
1525
|
createPrivilege(privilege: NewPrivilege!): Privilege!
|
|
1188
1526
|
|
|
@@ -1198,6 +1536,9 @@ type Mutation {
|
|
|
1198
1536
|
"""To create new Terminology"""
|
|
1199
1537
|
createTerminology(terminology: NewTerminology!): Terminology!
|
|
1200
1538
|
|
|
1539
|
+
"""To create new Theme"""
|
|
1540
|
+
createTheme(theme: NewTheme!): Theme!
|
|
1541
|
+
|
|
1201
1542
|
"""To create new user"""
|
|
1202
1543
|
createUser(user: NewUser!): User!
|
|
1203
1544
|
deleteAppBinding(id: String!): Boolean!
|
|
@@ -1207,6 +1548,12 @@ type Mutation {
|
|
|
1207
1548
|
|
|
1208
1549
|
"""To delete application"""
|
|
1209
1550
|
deleteApplication(id: String!): Boolean!
|
|
1551
|
+
|
|
1552
|
+
"""To delete ApprovalLine"""
|
|
1553
|
+
deleteApprovalLine(id: String!): Boolean!
|
|
1554
|
+
|
|
1555
|
+
"""To delete multiple ApprovalLines"""
|
|
1556
|
+
deleteApprovalLines(ids: [String!]!): Boolean!
|
|
1210
1557
|
deleteAttachment(id: String!): Boolean!
|
|
1211
1558
|
deleteAttachmentsByRef(refBys: [String!]!): Boolean!
|
|
1212
1559
|
|
|
@@ -1219,6 +1566,9 @@ type Mutation {
|
|
|
1219
1566
|
"""To delete Board"""
|
|
1220
1567
|
deleteBoard(id: String!): Boolean!
|
|
1221
1568
|
|
|
1569
|
+
"""To delete BoardTemplate"""
|
|
1570
|
+
deleteBoardTemplate(id: String!): Boolean!
|
|
1571
|
+
|
|
1222
1572
|
"""To delete CommonCode"""
|
|
1223
1573
|
deleteCommonCode(id: String!): Boolean!
|
|
1224
1574
|
|
|
@@ -1237,6 +1587,18 @@ type Mutation {
|
|
|
1237
1587
|
"""To delete multiple connections"""
|
|
1238
1588
|
deleteConnections(names: [String!]!): Boolean!
|
|
1239
1589
|
|
|
1590
|
+
"""To delete Contact"""
|
|
1591
|
+
deleteContact(id: String!): Boolean!
|
|
1592
|
+
|
|
1593
|
+
"""To delete multiple Contacts"""
|
|
1594
|
+
deleteContacts(ids: [String!]!): Boolean!
|
|
1595
|
+
|
|
1596
|
+
"""To delete Department"""
|
|
1597
|
+
deleteDepartment(id: String!): Boolean!
|
|
1598
|
+
|
|
1599
|
+
"""To delete multiple Departments"""
|
|
1600
|
+
deleteDepartments(ids: [String!]!): Boolean!
|
|
1601
|
+
|
|
1240
1602
|
"""To delete domain (Only superuser is granted this privilege.)"""
|
|
1241
1603
|
deleteDomain(name: String!): Domain!
|
|
1242
1604
|
|
|
@@ -1246,6 +1608,12 @@ type Mutation {
|
|
|
1246
1608
|
"""To delete multiple domains (Only superuser is granted this privilege.)"""
|
|
1247
1609
|
deleteDomains(names: [String!]!): Boolean!
|
|
1248
1610
|
|
|
1611
|
+
"""To delete Employee"""
|
|
1612
|
+
deleteEmployee(id: String!): Boolean!
|
|
1613
|
+
|
|
1614
|
+
"""To delete multiple Employees"""
|
|
1615
|
+
deleteEmployees(ids: [String!]!): Boolean!
|
|
1616
|
+
|
|
1249
1617
|
"""To delete multiple Entities"""
|
|
1250
1618
|
deleteEntities(ids: [String!]!): Boolean!
|
|
1251
1619
|
|
|
@@ -1303,6 +1671,24 @@ type Mutation {
|
|
|
1303
1671
|
"""To delete multiple Menus"""
|
|
1304
1672
|
deleteMenus(ids: [String!]!): Boolean!
|
|
1305
1673
|
|
|
1674
|
+
"""To delete ApprovalLine for current user"""
|
|
1675
|
+
deleteMyApprovalLine(id: String!): Boolean!
|
|
1676
|
+
|
|
1677
|
+
"""To delete multiple ApprovalLines for current user"""
|
|
1678
|
+
deleteMyApprovalLines(ids: [String!]!): Boolean!
|
|
1679
|
+
|
|
1680
|
+
"""To delete Notification"""
|
|
1681
|
+
deleteNotification(id: String!): Boolean!
|
|
1682
|
+
|
|
1683
|
+
"""To delete NotificationRule"""
|
|
1684
|
+
deleteNotificationRule(id: String!): Boolean!
|
|
1685
|
+
|
|
1686
|
+
"""To delete multiple NotificationRules"""
|
|
1687
|
+
deleteNotificationRules(ids: [String!]!): Boolean!
|
|
1688
|
+
|
|
1689
|
+
"""To delete multiple Notificationes"""
|
|
1690
|
+
deleteNotificationes(ids: [String!]!): Boolean!
|
|
1691
|
+
|
|
1306
1692
|
"""To delete Oauth2Client"""
|
|
1307
1693
|
deleteOauth2Client(id: String!): Boolean!
|
|
1308
1694
|
|
|
@@ -1321,6 +1707,12 @@ type Mutation {
|
|
|
1321
1707
|
"""To delete PlayGroup"""
|
|
1322
1708
|
deletePlayGroup(id: String!): Boolean!
|
|
1323
1709
|
|
|
1710
|
+
"""To delete PrinterDevice"""
|
|
1711
|
+
deletePrinterDevice(id: String!): Boolean!
|
|
1712
|
+
|
|
1713
|
+
"""To delete multiple printerDevices"""
|
|
1714
|
+
deletePrinterDevices(ids: [String!]!): Boolean!
|
|
1715
|
+
|
|
1324
1716
|
"""To delete privilege"""
|
|
1325
1717
|
deletePrivilege(category: String!, name: String!): Boolean!
|
|
1326
1718
|
|
|
@@ -1351,12 +1743,21 @@ type Mutation {
|
|
|
1351
1743
|
"""To delete Terminology"""
|
|
1352
1744
|
deleteTerminology(id: String!): Boolean!
|
|
1353
1745
|
|
|
1746
|
+
"""To delete Theme"""
|
|
1747
|
+
deleteTheme(id: String!): Boolean!
|
|
1748
|
+
|
|
1749
|
+
"""To delete multiple Themes"""
|
|
1750
|
+
deleteThemes(ids: [String!]!): Boolean!
|
|
1751
|
+
|
|
1354
1752
|
"""To delete a user"""
|
|
1355
1753
|
deleteUser(email: String!): Boolean!
|
|
1356
1754
|
|
|
1357
1755
|
"""To delete some users"""
|
|
1358
1756
|
deleteUsers(emails: [String!]!): Boolean!
|
|
1359
1757
|
|
|
1758
|
+
"""To detach a contact from Employee"""
|
|
1759
|
+
detachContact(id: String!): Employee!
|
|
1760
|
+
|
|
1360
1761
|
"""To disconnect a connection"""
|
|
1361
1762
|
disconnectConnection(name: String!): Connection!
|
|
1362
1763
|
domainRegister(domainInput: DomainGeneratorInput!): Domain!
|
|
@@ -1369,6 +1770,9 @@ type Mutation {
|
|
|
1369
1770
|
getOauth2AuthUrl(id: String!): String!
|
|
1370
1771
|
grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
|
|
1371
1772
|
|
|
1773
|
+
"""To import multiple ApprovalLines"""
|
|
1774
|
+
importApprovalLines(approvalLines: [ApprovalLinePatch!]!): Boolean!
|
|
1775
|
+
|
|
1372
1776
|
"""To import multiple AttributeSets"""
|
|
1373
1777
|
importAttributeSets(attributes: [AttributeSetPatch!]!): Boolean!
|
|
1374
1778
|
|
|
@@ -1378,6 +1782,15 @@ type Mutation {
|
|
|
1378
1782
|
"""To import multiple CommonCodes"""
|
|
1379
1783
|
importCommonCodes(commonCodes: [CommonCodePatch!]!): Boolean!
|
|
1380
1784
|
|
|
1785
|
+
"""To import multiple Contacts"""
|
|
1786
|
+
importContacts(contacts: [ContactPatch!]!): Boolean!
|
|
1787
|
+
|
|
1788
|
+
"""To import multiple Departments"""
|
|
1789
|
+
importDepartments(departments: [DepartmentPatch!]!): Boolean!
|
|
1790
|
+
|
|
1791
|
+
"""To import multiple Employees"""
|
|
1792
|
+
importEmployees(employees: [EmployeePatch!]!): Boolean!
|
|
1793
|
+
|
|
1381
1794
|
"""To import multiple MenuButtons"""
|
|
1382
1795
|
importMenuButtons(menuButtons: [MenuButtonPatch!]!): Boolean!
|
|
1383
1796
|
|
|
@@ -1396,6 +1809,9 @@ type Mutation {
|
|
|
1396
1809
|
"""To import multiple Menus"""
|
|
1397
1810
|
importMenus(menus: [MenuPatch!]!): Boolean!
|
|
1398
1811
|
|
|
1812
|
+
"""To import multiple NotificationRules"""
|
|
1813
|
+
importNotificationRules(notificationRules: [NotificationRulePatch!]!): Boolean!
|
|
1814
|
+
|
|
1399
1815
|
"""To import multiple Oauth2Clients"""
|
|
1400
1816
|
importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
|
|
1401
1817
|
|
|
@@ -1405,6 +1821,9 @@ type Mutation {
|
|
|
1405
1821
|
"""To import multiple Terminologies"""
|
|
1406
1822
|
importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
|
|
1407
1823
|
|
|
1824
|
+
"""To import multiple Themes"""
|
|
1825
|
+
importThemes(themes: [ThemePatch!]!): Boolean!
|
|
1826
|
+
|
|
1408
1827
|
"""To inactivate user"""
|
|
1409
1828
|
inactivateUser(userId: String!): Boolean!
|
|
1410
1829
|
inviteCustomer(customerDomainName: String!): Boolean!
|
|
@@ -1458,6 +1877,9 @@ type Mutation {
|
|
|
1458
1877
|
transferOwner(email: String!): Boolean!
|
|
1459
1878
|
updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
|
|
1460
1879
|
updateApplication(id: String!, patch: ApplicationPatch!): Application!
|
|
1880
|
+
|
|
1881
|
+
"""To modify ApprovalLine information"""
|
|
1882
|
+
updateApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
|
|
1461
1883
|
updateAttachment(id: String!, patch: AttachmentPatch!): Attachment!
|
|
1462
1884
|
|
|
1463
1885
|
"""To modify AttributeSet information"""
|
|
@@ -1466,6 +1888,9 @@ type Mutation {
|
|
|
1466
1888
|
"""To modify Board information"""
|
|
1467
1889
|
updateBoard(id: String!, patch: BoardPatch!): Board!
|
|
1468
1890
|
|
|
1891
|
+
"""To modify BoardTemplate information"""
|
|
1892
|
+
updateBoardTemplate(id: String!, patch: BoardTemplatePatch!): BoardTemplate!
|
|
1893
|
+
|
|
1469
1894
|
"""To modify CommonCode information"""
|
|
1470
1895
|
updateCommonCode(name: String!, patch: CommonCodePatch!): CommonCode!
|
|
1471
1896
|
|
|
@@ -1475,12 +1900,21 @@ type Mutation {
|
|
|
1475
1900
|
"""To modify connection information"""
|
|
1476
1901
|
updateConnection(name: String!, patch: ConnectionPatch!): Connection!
|
|
1477
1902
|
|
|
1903
|
+
"""To modify Contact information"""
|
|
1904
|
+
updateContact(id: String!, patch: ContactPatch!): Contact!
|
|
1905
|
+
|
|
1906
|
+
"""To modify Department information"""
|
|
1907
|
+
updateDepartment(id: String!, patch: DepartmentPatch!): Department!
|
|
1908
|
+
|
|
1478
1909
|
"""To update domain (Only superuser is granted this privilege.)"""
|
|
1479
1910
|
updateDomain(name: String!, patch: DomainPatch!): Domain!
|
|
1480
1911
|
|
|
1481
1912
|
"""To update multiple domains"""
|
|
1482
1913
|
updateDomains(patches: [DomainPatch!]!): Boolean!
|
|
1483
1914
|
|
|
1915
|
+
"""To modify Employee information"""
|
|
1916
|
+
updateEmployee(id: String!, patch: EmployeePatch!): Employee!
|
|
1917
|
+
|
|
1484
1918
|
"""To modify Entity' information"""
|
|
1485
1919
|
updateEntity(id: String!, patch: EntityPatch!): Entity!
|
|
1486
1920
|
|
|
@@ -1511,6 +1945,9 @@ type Mutation {
|
|
|
1511
1945
|
"""To modify MenuDetailColumn information"""
|
|
1512
1946
|
updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
|
|
1513
1947
|
|
|
1948
|
+
"""To modify multiple ApprovalLines' information"""
|
|
1949
|
+
updateMultipleApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
|
|
1950
|
+
|
|
1514
1951
|
"""To modify multiple AttributeSets' information"""
|
|
1515
1952
|
updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
|
|
1516
1953
|
|
|
@@ -1523,6 +1960,15 @@ type Mutation {
|
|
|
1523
1960
|
"""To modify multiple connections' information"""
|
|
1524
1961
|
updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
|
|
1525
1962
|
|
|
1963
|
+
"""To modify multiple Contacts' information"""
|
|
1964
|
+
updateMultipleContact(patches: [ContactPatch!]!): [Contact!]!
|
|
1965
|
+
|
|
1966
|
+
"""To modify multiple Departments' information"""
|
|
1967
|
+
updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
|
|
1968
|
+
|
|
1969
|
+
"""To modify multiple Employees' information"""
|
|
1970
|
+
updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
|
|
1971
|
+
|
|
1526
1972
|
"""To modify multiple Entitys' information"""
|
|
1527
1973
|
updateMultipleEntity(patches: [EntityPatch!]!): [Entity!]!
|
|
1528
1974
|
|
|
@@ -1532,12 +1978,24 @@ type Mutation {
|
|
|
1532
1978
|
"""To modify multiple Menus' information"""
|
|
1533
1979
|
updateMultipleMenu(patches: [MenuPatch!]!): [Menu!]!
|
|
1534
1980
|
|
|
1981
|
+
"""To modify multiple ApprovalLines' information for current user"""
|
|
1982
|
+
updateMultipleMyApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
|
|
1983
|
+
|
|
1984
|
+
"""To modify multiple Notificationes' information"""
|
|
1985
|
+
updateMultipleNotification(patches: [NotificationPatch!]!): [Notification!]!
|
|
1986
|
+
|
|
1987
|
+
"""To modify multiple NotificationRules' information"""
|
|
1988
|
+
updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
|
|
1989
|
+
|
|
1535
1990
|
"""To modify multiple PartnerSettings' information"""
|
|
1536
1991
|
updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
|
|
1537
1992
|
|
|
1538
1993
|
"""To modify multiple PayloadLogs' information"""
|
|
1539
1994
|
updateMultiplePayloadLog(patches: [PayloadLogPatch!]!): [PayloadLog!]!
|
|
1540
1995
|
|
|
1996
|
+
"""To modify multiple PrinterDevices' information"""
|
|
1997
|
+
updateMultiplePrinterDevice(patches: [PrinterDevicePatch!]!): [PrinterDevice!]!
|
|
1998
|
+
|
|
1541
1999
|
"""To modify multiple scenarios' information"""
|
|
1542
2000
|
updateMultipleScenario(patches: [ScenarioPatch!]!): [Scenario!]!
|
|
1543
2001
|
|
|
@@ -1550,9 +2008,21 @@ type Mutation {
|
|
|
1550
2008
|
"""To modify multiple Terminologies' information"""
|
|
1551
2009
|
updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
|
|
1552
2010
|
|
|
2011
|
+
"""To modify multiple Themes' information"""
|
|
2012
|
+
updateMultipleTheme(patches: [ThemePatch!]!): [Theme!]!
|
|
2013
|
+
|
|
1553
2014
|
"""To modify multiple users information"""
|
|
1554
2015
|
updateMultipleUser(patches: [UserPatch!]!): [User!]!
|
|
1555
2016
|
|
|
2017
|
+
"""To modify ApprovalLine information for current user"""
|
|
2018
|
+
updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
|
|
2019
|
+
|
|
2020
|
+
"""To modify Notification information"""
|
|
2021
|
+
updateNotification(id: String!, patch: NotificationPatch!): Notification!
|
|
2022
|
+
|
|
2023
|
+
"""To modify NotificationRule information"""
|
|
2024
|
+
updateNotificationRule(id: String!, patch: NotificationRulePatch!): NotificationRule!
|
|
2025
|
+
|
|
1556
2026
|
"""To modify Oauth2Client information"""
|
|
1557
2027
|
updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
|
|
1558
2028
|
|
|
@@ -1562,6 +2032,9 @@ type Mutation {
|
|
|
1562
2032
|
"""To modify PlayGroup information"""
|
|
1563
2033
|
updatePlayGroup(id: String!, patch: PlayGroupPatch!): PlayGroup!
|
|
1564
2034
|
|
|
2035
|
+
"""To modify PrinterDevice information"""
|
|
2036
|
+
updatePrinterDevice(id: String!, patch: PrinterDevicePatch!): PrinterDevice!
|
|
2037
|
+
|
|
1565
2038
|
"""To modify privilege information"""
|
|
1566
2039
|
updatePrivilege(category: String!, name: String!, patch: PrivilegePatch!): Privilege!
|
|
1567
2040
|
|
|
@@ -1583,6 +2056,9 @@ type Mutation {
|
|
|
1583
2056
|
"""To modify Terminology information"""
|
|
1584
2057
|
updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
|
|
1585
2058
|
|
|
2059
|
+
"""To modify Theme information"""
|
|
2060
|
+
updateTheme(id: String!, patch: ThemePatch!): Theme!
|
|
2061
|
+
|
|
1586
2062
|
"""To modify user information"""
|
|
1587
2063
|
updateUser(email: String!, patch: UserPatch!): User!
|
|
1588
2064
|
|
|
@@ -1610,6 +2086,14 @@ input NewApplication {
|
|
|
1610
2086
|
webhook: String
|
|
1611
2087
|
}
|
|
1612
2088
|
|
|
2089
|
+
input NewApprovalLine {
|
|
2090
|
+
description: String
|
|
2091
|
+
model: Object
|
|
2092
|
+
name: String!
|
|
2093
|
+
owner: ObjectRefApprovalLineOwnerType!
|
|
2094
|
+
ownerType: ApprovalLineOwnerType!
|
|
2095
|
+
}
|
|
2096
|
+
|
|
1613
2097
|
input NewAttachment {
|
|
1614
2098
|
category: String
|
|
1615
2099
|
description: String
|
|
@@ -1633,6 +2117,14 @@ input NewBoard {
|
|
|
1633
2117
|
thumbnail: String
|
|
1634
2118
|
}
|
|
1635
2119
|
|
|
2120
|
+
input NewBoardTemplate {
|
|
2121
|
+
description: String
|
|
2122
|
+
model: String!
|
|
2123
|
+
name: String!
|
|
2124
|
+
state: BoardTemplateStatus
|
|
2125
|
+
thumbnail: String
|
|
2126
|
+
}
|
|
2127
|
+
|
|
1636
2128
|
input NewCommonCode {
|
|
1637
2129
|
description: String
|
|
1638
2130
|
details: [String!]
|
|
@@ -1654,6 +2146,48 @@ input NewConnection {
|
|
|
1654
2146
|
type: String
|
|
1655
2147
|
}
|
|
1656
2148
|
|
|
2149
|
+
input NewContact {
|
|
2150
|
+
address: String
|
|
2151
|
+
company: String
|
|
2152
|
+
department: String
|
|
2153
|
+
email: String
|
|
2154
|
+
items: [ContactItemPatch!]
|
|
2155
|
+
name: String!
|
|
2156
|
+
note: String
|
|
2157
|
+
phone: String
|
|
2158
|
+
profile: ProfileInput
|
|
2159
|
+
}
|
|
2160
|
+
|
|
2161
|
+
input NewDepartment {
|
|
2162
|
+
active: Boolean
|
|
2163
|
+
controlNo: String!
|
|
2164
|
+
description: String
|
|
2165
|
+
extension: String
|
|
2166
|
+
manager: ObjectRefForEmployee
|
|
2167
|
+
name: String!
|
|
2168
|
+
parent: ObjectRef
|
|
2169
|
+
picture: Upload
|
|
2170
|
+
state: DepartmentStatus
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2173
|
+
input NewEmployee {
|
|
2174
|
+
active: Boolean
|
|
2175
|
+
alias: String
|
|
2176
|
+
controlNo: String!
|
|
2177
|
+
department: ObjectRef
|
|
2178
|
+
extension: String
|
|
2179
|
+
hiredOn: String
|
|
2180
|
+
jobPosition: String
|
|
2181
|
+
jobResponsibility: String
|
|
2182
|
+
name: String!
|
|
2183
|
+
note: String
|
|
2184
|
+
photo: Upload
|
|
2185
|
+
retiredAt: String
|
|
2186
|
+
supervisor: ObjectRefForEmployee
|
|
2187
|
+
type: EmployeeType
|
|
2188
|
+
user: ObjectRefForUser
|
|
2189
|
+
}
|
|
2190
|
+
|
|
1657
2191
|
input NewEntity {
|
|
1658
2192
|
active: Boolean
|
|
1659
2193
|
association: String
|
|
@@ -1871,6 +2405,29 @@ input NewMenuDetailColumn {
|
|
|
1871
2405
|
virtualField: Boolean
|
|
1872
2406
|
}
|
|
1873
2407
|
|
|
2408
|
+
input NewNotification {
|
|
2409
|
+
body: String
|
|
2410
|
+
image: String
|
|
2411
|
+
ownerId: String
|
|
2412
|
+
property: Object
|
|
2413
|
+
subject: String
|
|
2414
|
+
timestamp: Timestamp
|
|
2415
|
+
title: String
|
|
2416
|
+
type: String
|
|
2417
|
+
url: String
|
|
2418
|
+
}
|
|
2419
|
+
|
|
2420
|
+
input NewNotificationRule {
|
|
2421
|
+
active: Boolean
|
|
2422
|
+
body: String
|
|
2423
|
+
description: String
|
|
2424
|
+
name: String!
|
|
2425
|
+
state: NotificationRuleStatus
|
|
2426
|
+
thumbnail: Upload
|
|
2427
|
+
title: String
|
|
2428
|
+
url: String
|
|
2429
|
+
}
|
|
2430
|
+
|
|
1874
2431
|
input NewOauth2Client {
|
|
1875
2432
|
accessToken: String
|
|
1876
2433
|
accessTokenUrl: String
|
|
@@ -1902,6 +2459,24 @@ input NewPlayGroup {
|
|
|
1902
2459
|
name: String!
|
|
1903
2460
|
}
|
|
1904
2461
|
|
|
2462
|
+
input NewPrinterDevice {
|
|
2463
|
+
activeFlag: Boolean
|
|
2464
|
+
defaultFlag: Boolean
|
|
2465
|
+
description: String!
|
|
2466
|
+
dpi: Int
|
|
2467
|
+
jobCategory: String
|
|
2468
|
+
jobClass: String
|
|
2469
|
+
jobType: String
|
|
2470
|
+
name: String!
|
|
2471
|
+
note: String
|
|
2472
|
+
printerDriver: String
|
|
2473
|
+
printerIp: String
|
|
2474
|
+
printerPort: Int
|
|
2475
|
+
serviceUrl: String
|
|
2476
|
+
status: String
|
|
2477
|
+
type: String
|
|
2478
|
+
}
|
|
2479
|
+
|
|
1905
2480
|
input NewPrivilege {
|
|
1906
2481
|
category: String!
|
|
1907
2482
|
description: String
|
|
@@ -1940,6 +2515,14 @@ input NewTerminology {
|
|
|
1940
2515
|
name: String!
|
|
1941
2516
|
}
|
|
1942
2517
|
|
|
2518
|
+
input NewTheme {
|
|
2519
|
+
active: Boolean
|
|
2520
|
+
description: String
|
|
2521
|
+
name: String!
|
|
2522
|
+
type: String
|
|
2523
|
+
value: Object
|
|
2524
|
+
}
|
|
2525
|
+
|
|
1943
2526
|
input NewUser {
|
|
1944
2527
|
description: String
|
|
1945
2528
|
email: String!
|
|
@@ -1958,18 +2541,89 @@ input NewUserByDomainWizardInput {
|
|
|
1958
2541
|
roles: [NewRole!]!
|
|
1959
2542
|
}
|
|
1960
2543
|
|
|
2544
|
+
"""Entity for Notification"""
|
|
1961
2545
|
type Notification {
|
|
1962
|
-
body: String
|
|
2546
|
+
body: String
|
|
2547
|
+
createdAt: Timestamp
|
|
2548
|
+
creator: User
|
|
1963
2549
|
domain: Domain
|
|
2550
|
+
id: ID!
|
|
1964
2551
|
image: String
|
|
1965
|
-
|
|
2552
|
+
owner: User
|
|
2553
|
+
property: Object
|
|
2554
|
+
state: String
|
|
1966
2555
|
subject: String
|
|
1967
2556
|
timestamp: Date
|
|
1968
|
-
title: String
|
|
2557
|
+
title: String
|
|
1969
2558
|
type: String
|
|
2559
|
+
updatedAt: Timestamp
|
|
2560
|
+
updater: User
|
|
1970
2561
|
url: String
|
|
1971
2562
|
}
|
|
1972
2563
|
|
|
2564
|
+
type NotificationList {
|
|
2565
|
+
items: [Notification!]!
|
|
2566
|
+
total: Int!
|
|
2567
|
+
}
|
|
2568
|
+
|
|
2569
|
+
input NotificationPatch {
|
|
2570
|
+
cuFlag: String
|
|
2571
|
+
id: ID
|
|
2572
|
+
state: NotificationStatus
|
|
2573
|
+
}
|
|
2574
|
+
|
|
2575
|
+
"""Entity for NotificationRule"""
|
|
2576
|
+
type NotificationRule {
|
|
2577
|
+
body: String
|
|
2578
|
+
channels: String
|
|
2579
|
+
createdAt: Timestamp
|
|
2580
|
+
creator: User
|
|
2581
|
+
deletedAt: Timestamp
|
|
2582
|
+
description: String
|
|
2583
|
+
domain: Domain
|
|
2584
|
+
id: ID!
|
|
2585
|
+
name: String
|
|
2586
|
+
|
|
2587
|
+
"""notification recipients."""
|
|
2588
|
+
recipients: [RecipientItem!]
|
|
2589
|
+
state: String
|
|
2590
|
+
thumbnail: String
|
|
2591
|
+
title: String
|
|
2592
|
+
updatedAt: Timestamp
|
|
2593
|
+
updater: User
|
|
2594
|
+
url: String
|
|
2595
|
+
version: Float
|
|
2596
|
+
}
|
|
2597
|
+
|
|
2598
|
+
type NotificationRuleList {
|
|
2599
|
+
items: [NotificationRule!]!
|
|
2600
|
+
total: Int!
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2603
|
+
input NotificationRulePatch {
|
|
2604
|
+
body: String
|
|
2605
|
+
cuFlag: String
|
|
2606
|
+
description: String
|
|
2607
|
+
id: ID
|
|
2608
|
+
name: String
|
|
2609
|
+
state: NotificationRuleStatus
|
|
2610
|
+
thumbnail: Upload
|
|
2611
|
+
title: String
|
|
2612
|
+
url: String
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2615
|
+
"""state enumeration of a notificationRule"""
|
|
2616
|
+
enum NotificationRuleStatus {
|
|
2617
|
+
DRAFT
|
|
2618
|
+
RELEASED
|
|
2619
|
+
}
|
|
2620
|
+
|
|
2621
|
+
"""state enumeration of a notification"""
|
|
2622
|
+
enum NotificationStatus {
|
|
2623
|
+
NOTREAD
|
|
2624
|
+
READ
|
|
2625
|
+
}
|
|
2626
|
+
|
|
1973
2627
|
"""Entity for Oauth2Client"""
|
|
1974
2628
|
type Oauth2Client {
|
|
1975
2629
|
accessToken: String
|
|
@@ -2041,6 +2695,73 @@ input ObjectRef {
|
|
|
2041
2695
|
name: String
|
|
2042
2696
|
}
|
|
2043
2697
|
|
|
2698
|
+
input ObjectRefApprovalLineOwnerType {
|
|
2699
|
+
controlNo: String
|
|
2700
|
+
|
|
2701
|
+
"""Field description"""
|
|
2702
|
+
description: String
|
|
2703
|
+
|
|
2704
|
+
"""Field id"""
|
|
2705
|
+
id: ID!
|
|
2706
|
+
|
|
2707
|
+
"""Field name"""
|
|
2708
|
+
name: String
|
|
2709
|
+
}
|
|
2710
|
+
|
|
2711
|
+
input ObjectRefForEmployee {
|
|
2712
|
+
active: Boolean
|
|
2713
|
+
alias: String
|
|
2714
|
+
controlNo: String
|
|
2715
|
+
|
|
2716
|
+
"""Field description"""
|
|
2717
|
+
description: String
|
|
2718
|
+
email: String
|
|
2719
|
+
hiredOn: String
|
|
2720
|
+
|
|
2721
|
+
"""Field id"""
|
|
2722
|
+
id: ID!
|
|
2723
|
+
jobPosition: String
|
|
2724
|
+
|
|
2725
|
+
"""Field name"""
|
|
2726
|
+
name: String
|
|
2727
|
+
photo: String
|
|
2728
|
+
}
|
|
2729
|
+
|
|
2730
|
+
input ObjectRefForUser {
|
|
2731
|
+
"""Field description"""
|
|
2732
|
+
description: String
|
|
2733
|
+
email: String
|
|
2734
|
+
|
|
2735
|
+
"""Field id"""
|
|
2736
|
+
id: ID!
|
|
2737
|
+
|
|
2738
|
+
"""Field name"""
|
|
2739
|
+
name: String
|
|
2740
|
+
}
|
|
2741
|
+
|
|
2742
|
+
type OrgMemberTarget {
|
|
2743
|
+
controlNo: String
|
|
2744
|
+
|
|
2745
|
+
"""Field description"""
|
|
2746
|
+
description: String
|
|
2747
|
+
|
|
2748
|
+
"""Field id"""
|
|
2749
|
+
id: ID!
|
|
2750
|
+
|
|
2751
|
+
"""Field name"""
|
|
2752
|
+
name: String
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2755
|
+
"""type enumeration of a approval line item"""
|
|
2756
|
+
enum OrgMemberTargetType {
|
|
2757
|
+
Department
|
|
2758
|
+
Employee
|
|
2759
|
+
MyDepartment
|
|
2760
|
+
MySupervisor
|
|
2761
|
+
Myself
|
|
2762
|
+
Role
|
|
2763
|
+
}
|
|
2764
|
+
|
|
2044
2765
|
input Pagination {
|
|
2045
2766
|
limit: Int
|
|
2046
2767
|
page: Int
|
|
@@ -2150,6 +2871,56 @@ input PlayGroupPatch {
|
|
|
2150
2871
|
name: String
|
|
2151
2872
|
}
|
|
2152
2873
|
|
|
2874
|
+
"""Entity for PrinterDevice"""
|
|
2875
|
+
type PrinterDevice {
|
|
2876
|
+
activeFlag: Boolean
|
|
2877
|
+
createdAt: Timestamp
|
|
2878
|
+
creator: User
|
|
2879
|
+
defaultFlag: Boolean
|
|
2880
|
+
description: String!
|
|
2881
|
+
domain: Domain!
|
|
2882
|
+
dpi: Int
|
|
2883
|
+
id: ID!
|
|
2884
|
+
jobCategory: String
|
|
2885
|
+
jobClass: String
|
|
2886
|
+
jobType: String
|
|
2887
|
+
name: String!
|
|
2888
|
+
note: String
|
|
2889
|
+
printerDriver: String
|
|
2890
|
+
printerIp: String
|
|
2891
|
+
printerPort: Int
|
|
2892
|
+
serviceUrl: String
|
|
2893
|
+
status: String
|
|
2894
|
+
type: String!
|
|
2895
|
+
updatedAt: Timestamp
|
|
2896
|
+
updater: User
|
|
2897
|
+
}
|
|
2898
|
+
|
|
2899
|
+
type PrinterDeviceList {
|
|
2900
|
+
items: [PrinterDevice!]!
|
|
2901
|
+
total: Int!
|
|
2902
|
+
}
|
|
2903
|
+
|
|
2904
|
+
input PrinterDevicePatch {
|
|
2905
|
+
activeFlag: Boolean
|
|
2906
|
+
cuFlag: String!
|
|
2907
|
+
defaultFlag: Boolean
|
|
2908
|
+
description: String
|
|
2909
|
+
dpi: Int
|
|
2910
|
+
id: ID
|
|
2911
|
+
jobCategory: String
|
|
2912
|
+
jobClass: String
|
|
2913
|
+
jobType: String
|
|
2914
|
+
name: String
|
|
2915
|
+
note: String
|
|
2916
|
+
printerDriver: String
|
|
2917
|
+
printerIp: String
|
|
2918
|
+
printerPort: Int
|
|
2919
|
+
serviceUrl: String
|
|
2920
|
+
status: String
|
|
2921
|
+
type: String
|
|
2922
|
+
}
|
|
2923
|
+
|
|
2153
2924
|
type Privilege {
|
|
2154
2925
|
category: String
|
|
2155
2926
|
createdAt: Timestamp
|
|
@@ -2175,6 +2946,23 @@ input PrivilegePatch {
|
|
|
2175
2946
|
roles: [ObjectRef!]
|
|
2176
2947
|
}
|
|
2177
2948
|
|
|
2949
|
+
"""Object type for Profile"""
|
|
2950
|
+
type Profile {
|
|
2951
|
+
left: Float
|
|
2952
|
+
picture: String
|
|
2953
|
+
top: Float
|
|
2954
|
+
zoom: Float
|
|
2955
|
+
}
|
|
2956
|
+
|
|
2957
|
+
"""Input type for Profile"""
|
|
2958
|
+
input ProfileInput {
|
|
2959
|
+
file: Upload
|
|
2960
|
+
left: Float
|
|
2961
|
+
picture: String
|
|
2962
|
+
top: Float
|
|
2963
|
+
zoom: Float
|
|
2964
|
+
}
|
|
2965
|
+
|
|
2178
2966
|
type PropertySpec {
|
|
2179
2967
|
label: String!
|
|
2180
2968
|
name: String!
|
|
@@ -2184,6 +2972,7 @@ type PropertySpec {
|
|
|
2184
2972
|
}
|
|
2185
2973
|
|
|
2186
2974
|
type Query {
|
|
2975
|
+
APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
|
|
2187
2976
|
appBinding(id: String!): AppBinding!
|
|
2188
2977
|
appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
|
|
2189
2978
|
|
|
@@ -2198,6 +2987,15 @@ type Query {
|
|
|
2198
2987
|
|
|
2199
2988
|
"""To fetch multiple application"""
|
|
2200
2989
|
applications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplicationList!
|
|
2990
|
+
|
|
2991
|
+
"""To fetch a approval line"""
|
|
2992
|
+
approvalLine(id: String!): ApprovalLine
|
|
2993
|
+
|
|
2994
|
+
"""To fetch referable approval lines for the user"""
|
|
2995
|
+
approvalLineReferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
2996
|
+
|
|
2997
|
+
"""To fetch multiple approval lines"""
|
|
2998
|
+
approvalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
2201
2999
|
attachment(id: String!): Attachment!
|
|
2202
3000
|
attachments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttachmentList!
|
|
2203
3001
|
|
|
@@ -2219,11 +3017,24 @@ type Query {
|
|
|
2219
3017
|
"""Board Usage Permissions"""
|
|
2220
3018
|
boardPermissions: [String!]!
|
|
2221
3019
|
|
|
3020
|
+
"""To fetch a BoardTemplate"""
|
|
3021
|
+
boardTemplate(id: String!): BoardTemplate
|
|
3022
|
+
|
|
3023
|
+
"""To fetch a BoardTemplate by name"""
|
|
3024
|
+
boardTemplateByName(name: String!): BoardTemplate
|
|
3025
|
+
|
|
3026
|
+
"""To fetch multiple BoardTemplates"""
|
|
3027
|
+
boardTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
|
|
3028
|
+
|
|
3029
|
+
"""To fetch BoardTemplates created by me"""
|
|
3030
|
+
boardTemplatesCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
|
|
3031
|
+
|
|
2222
3032
|
"""To fetch multiple Boards"""
|
|
2223
3033
|
boards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
|
|
2224
3034
|
|
|
2225
3035
|
"""To fetch Boards created by me"""
|
|
2226
3036
|
boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
|
|
3037
|
+
chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
|
|
2227
3038
|
|
|
2228
3039
|
"""To check if system would provide default password to create new user"""
|
|
2229
3040
|
checkDefaultPassword: Boolean!
|
|
@@ -2240,6 +3051,9 @@ type Query {
|
|
|
2240
3051
|
"""..."""
|
|
2241
3052
|
checkUserExistence(email: String!): Boolean!
|
|
2242
3053
|
|
|
3054
|
+
"""To fetch common approval lines"""
|
|
3055
|
+
commonApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
3056
|
+
|
|
2243
3057
|
"""To fetch a CommonCode"""
|
|
2244
3058
|
commonCode(name: String!): CommonCode
|
|
2245
3059
|
|
|
@@ -2263,7 +3077,24 @@ type Query {
|
|
|
2263
3077
|
|
|
2264
3078
|
"""To fetch multiple connector"""
|
|
2265
3079
|
connectors: ConnectorList!
|
|
3080
|
+
|
|
3081
|
+
"""To fetch a Contact"""
|
|
3082
|
+
contact(id: String!): Contact
|
|
3083
|
+
|
|
3084
|
+
"""To fetch multiple Contacts"""
|
|
3085
|
+
contacts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ContactList!
|
|
2266
3086
|
customers: [Domain!]!
|
|
3087
|
+
decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
|
|
3088
|
+
decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
|
|
3089
|
+
|
|
3090
|
+
"""To fetch a Department"""
|
|
3091
|
+
department(id: String!): Department
|
|
3092
|
+
|
|
3093
|
+
"""To fetch a Root Department"""
|
|
3094
|
+
departmentRoot: Department
|
|
3095
|
+
|
|
3096
|
+
"""To fetch multiple Departments"""
|
|
3097
|
+
departments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DepartmentList!
|
|
2267
3098
|
|
|
2268
3099
|
"""To fetch domain"""
|
|
2269
3100
|
domain(id: String!): Domain!
|
|
@@ -2271,6 +3102,12 @@ type Query {
|
|
|
2271
3102
|
"""To fetch all domains (Only superuser is granted this privilege.)"""
|
|
2272
3103
|
domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
2273
3104
|
|
|
3105
|
+
"""To fetch a Employee"""
|
|
3106
|
+
employee(id: String!): Employee
|
|
3107
|
+
|
|
3108
|
+
"""To fetch multiple Employees"""
|
|
3109
|
+
employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
|
|
3110
|
+
|
|
2274
3111
|
"""To fetch multiple Entities"""
|
|
2275
3112
|
entities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityList!
|
|
2276
3113
|
|
|
@@ -2314,9 +3151,17 @@ type Query {
|
|
|
2314
3151
|
|
|
2315
3152
|
"""To query whether I have the given permission"""
|
|
2316
3153
|
hasPrivilege(category: String!, name: String!): Boolean!
|
|
3154
|
+
i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
|
|
3155
|
+
imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
|
|
3156
|
+
|
|
3157
|
+
"""To fetch integration Analyses"""
|
|
3158
|
+
integrationAnalysis: Object!
|
|
2317
3159
|
invitation(email: String!, reference: String!, type: String!): Invitation!
|
|
2318
3160
|
invitations(reference: String!, type: String!): InvitationList!
|
|
2319
3161
|
|
|
3162
|
+
"""To fetch multiple LoginHistories"""
|
|
3163
|
+
loginHistories(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): LoginHistoryList!
|
|
3164
|
+
|
|
2320
3165
|
"""To fetch a Menu"""
|
|
2321
3166
|
menu(id: String!): Menu!
|
|
2322
3167
|
|
|
@@ -2356,13 +3201,31 @@ type Query {
|
|
|
2356
3201
|
"""To fetch multiple Menus"""
|
|
2357
3202
|
menus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
|
|
2358
3203
|
|
|
3204
|
+
"""To fetch approval lines only for to the user"""
|
|
3205
|
+
myApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
3206
|
+
|
|
2359
3207
|
"""To fetch current user's Favorites"""
|
|
2360
3208
|
myFavorites: [Favorite!]!
|
|
2361
3209
|
myLoginHistories(limit: Float!): [LoginHistory!]!
|
|
2362
3210
|
|
|
3211
|
+
"""To fetch my notifications"""
|
|
3212
|
+
myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
|
|
3213
|
+
|
|
2363
3214
|
"""To fetch roles of current user"""
|
|
2364
3215
|
myRoles: [Role!]!
|
|
2365
3216
|
|
|
3217
|
+
"""To fetch a Notification"""
|
|
3218
|
+
notification(id: String!): Notification
|
|
3219
|
+
|
|
3220
|
+
"""To fetch a NotificationRule"""
|
|
3221
|
+
notificationRule(id: String!): NotificationRule
|
|
3222
|
+
|
|
3223
|
+
"""To fetch multiple NotificationRules"""
|
|
3224
|
+
notificationRules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationRuleList!
|
|
3225
|
+
|
|
3226
|
+
"""To fetch multiple Notificationes"""
|
|
3227
|
+
notificationes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
|
|
3228
|
+
|
|
2366
3229
|
"""To fetch a Oauth2Client"""
|
|
2367
3230
|
oauth2Client(id: String!): Oauth2Client
|
|
2368
3231
|
|
|
@@ -2391,6 +3254,12 @@ type Query {
|
|
|
2391
3254
|
"""To fetch multiple PlayGroups"""
|
|
2392
3255
|
playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
|
|
2393
3256
|
|
|
3257
|
+
"""To fetch a PrinterDevice"""
|
|
3258
|
+
printerDevice(id: String!): PrinterDevice!
|
|
3259
|
+
|
|
3260
|
+
"""To fetch multiple PrinterDevices"""
|
|
3261
|
+
printerDevices(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrinterDeviceList!
|
|
3262
|
+
|
|
2394
3263
|
"""To fetch privilege"""
|
|
2395
3264
|
privilege(category: String!, name: String!): Privilege!
|
|
2396
3265
|
|
|
@@ -2449,6 +3318,12 @@ type Query {
|
|
|
2449
3318
|
"""To fetch a Terminology"""
|
|
2450
3319
|
terminology(id: String!): Terminology!
|
|
2451
3320
|
|
|
3321
|
+
"""To fetch a Theme"""
|
|
3322
|
+
theme(id: String!): Theme
|
|
3323
|
+
|
|
3324
|
+
"""To fetch multiple Themes"""
|
|
3325
|
+
themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
|
|
3326
|
+
|
|
2452
3327
|
"""To fetch user"""
|
|
2453
3328
|
user(email: String!): User!
|
|
2454
3329
|
|
|
@@ -2463,6 +3338,12 @@ type Query {
|
|
|
2463
3338
|
vendors: [Domain!]!
|
|
2464
3339
|
}
|
|
2465
3340
|
|
|
3341
|
+
type RecipientItem {
|
|
3342
|
+
recipient: OrgMemberTarget
|
|
3343
|
+
type: OrgMemberTargetType
|
|
3344
|
+
value: String
|
|
3345
|
+
}
|
|
3346
|
+
|
|
2466
3347
|
type Role {
|
|
2467
3348
|
createdAt: Timestamp
|
|
2468
3349
|
creator: User
|
|
@@ -2501,6 +3382,7 @@ type RolePrivilege {
|
|
|
2501
3382
|
type Scenario {
|
|
2502
3383
|
"""[will be deprecated] automatically be started when this server start"""
|
|
2503
3384
|
active: Boolean
|
|
3385
|
+
connectionNames: [Connection!]!
|
|
2504
3386
|
createdAt: Timestamp
|
|
2505
3387
|
creator: User
|
|
2506
3388
|
description: String
|
|
@@ -2511,6 +3393,7 @@ type Scenario {
|
|
|
2511
3393
|
|
|
2512
3394
|
"""accessible and executable system-wide"""
|
|
2513
3395
|
public: Boolean
|
|
3396
|
+
publishTags: [Connection!]!
|
|
2514
3397
|
schedule: String
|
|
2515
3398
|
scheduleId: String
|
|
2516
3399
|
state: String
|
|
@@ -2527,6 +3410,7 @@ type ScenarioInstance {
|
|
|
2527
3410
|
instanceName: String
|
|
2528
3411
|
message: String
|
|
2529
3412
|
progress: ScenarioInstanceProgress
|
|
3413
|
+
result: Object
|
|
2530
3414
|
root: ScenarioInstance
|
|
2531
3415
|
scenarioName: String
|
|
2532
3416
|
state: String
|
|
@@ -2637,6 +3521,11 @@ type Step {
|
|
|
2637
3521
|
log: Boolean
|
|
2638
3522
|
name: String!
|
|
2639
3523
|
params: String
|
|
3524
|
+
|
|
3525
|
+
"""
|
|
3526
|
+
a boolean attribute indicating the inclusion status of an element in the result
|
|
3527
|
+
"""
|
|
3528
|
+
result: Boolean
|
|
2640
3529
|
scenario: Scenario
|
|
2641
3530
|
sequence: Float
|
|
2642
3531
|
skip: Boolean
|
|
@@ -2658,6 +3547,7 @@ input StepPatch {
|
|
|
2658
3547
|
log: Boolean
|
|
2659
3548
|
name: String
|
|
2660
3549
|
params: String
|
|
3550
|
+
result: Boolean
|
|
2661
3551
|
sequence: Int
|
|
2662
3552
|
skip: Boolean
|
|
2663
3553
|
task: String
|
|
@@ -2716,6 +3606,37 @@ input TerminologyPatch {
|
|
|
2716
3606
|
name: String
|
|
2717
3607
|
}
|
|
2718
3608
|
|
|
3609
|
+
"""Entity for Theme"""
|
|
3610
|
+
type Theme {
|
|
3611
|
+
active: Boolean
|
|
3612
|
+
createdAt: Timestamp
|
|
3613
|
+
creator: User
|
|
3614
|
+
deletedAt: Timestamp
|
|
3615
|
+
description: String
|
|
3616
|
+
domain: Domain
|
|
3617
|
+
id: ID!
|
|
3618
|
+
name: String
|
|
3619
|
+
type: String
|
|
3620
|
+
updatedAt: Timestamp
|
|
3621
|
+
updater: User
|
|
3622
|
+
value: Object
|
|
3623
|
+
}
|
|
3624
|
+
|
|
3625
|
+
type ThemeList {
|
|
3626
|
+
items: [Theme!]!
|
|
3627
|
+
total: Int!
|
|
3628
|
+
}
|
|
3629
|
+
|
|
3630
|
+
input ThemePatch {
|
|
3631
|
+
active: Boolean
|
|
3632
|
+
cuFlag: String
|
|
3633
|
+
description: String
|
|
3634
|
+
id: ID
|
|
3635
|
+
name: String
|
|
3636
|
+
type: String
|
|
3637
|
+
value: Object
|
|
3638
|
+
}
|
|
3639
|
+
|
|
2719
3640
|
"""
|
|
2720
3641
|
The javascript `Date` as integer. Type represents date and time as number of milliseconds from start of UNIX epoch.
|
|
2721
3642
|
"""
|
|
@@ -2770,4 +3691,12 @@ type UserRole {
|
|
|
2770
3691
|
description: String
|
|
2771
3692
|
id: String
|
|
2772
3693
|
name: String
|
|
3694
|
+
}
|
|
3695
|
+
|
|
3696
|
+
input i18nCompletionInput {
|
|
3697
|
+
json: String!
|
|
3698
|
+
}
|
|
3699
|
+
|
|
3700
|
+
type i18nCompletionOutput {
|
|
3701
|
+
message: String
|
|
2773
3702
|
}
|