@operato/scene-visualizer 2.0.0-alpha.0 → 2.0.0-alpha.12
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 +88 -0
- package/cache/translations/system/en.json +1 -0
- package/cache/translations/system/ko.json +1 -0
- package/db.sqlite +0 -0
- package/dist/editors/property-editor-gltf-info.d.ts +2 -0
- package/dist/editors/property-editor-gltf-info.js +9 -6
- package/dist/editors/property-editor-gltf-info.js.map +1 -1
- package/dist/stock.js +1 -1
- package/dist/stock.js.map +1 -1
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +3 -3
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +3 -3
- package/logs/application-2024-05-11-18.log +6 -0
- package/logs/connections-2024-05-11-18.log +50 -0
- package/package.json +7 -6
- package/schema.graphql +95 -74
- package/src/editors/property-editor-gltf-info.ts +9 -6
- package/src/stock.ts +1 -1
- package/translations/en.json +14 -0
- package/translations/ja.json +31 -0
- package/translations/ko.json +22 -8
- package/translations/ms.json +23 -9
- package/translations/zh.json +25 -11
- package/tsconfig.tsbuildinfo +1 -1
- package/logs/application-2024-01-01-20.log +0 -7
- package/logs/connections-2024-01-01-20.log +0 -41
package/schema.graphql
CHANGED
|
@@ -26,7 +26,7 @@ type AppBinding {
|
|
|
26
26
|
creator: User!
|
|
27
27
|
description: String
|
|
28
28
|
domains: [Domain!]!
|
|
29
|
-
email:
|
|
29
|
+
email: EmailAddress!
|
|
30
30
|
id: ID!
|
|
31
31
|
locale: String
|
|
32
32
|
name: String!
|
|
@@ -89,7 +89,7 @@ type Application {
|
|
|
89
89
|
creator: User
|
|
90
90
|
description: String
|
|
91
91
|
domain: Domain!
|
|
92
|
-
email:
|
|
92
|
+
email: EmailAddress!
|
|
93
93
|
icon: String
|
|
94
94
|
id: ID!
|
|
95
95
|
name: String!
|
|
@@ -109,7 +109,7 @@ type ApplicationList {
|
|
|
109
109
|
|
|
110
110
|
input ApplicationPatch {
|
|
111
111
|
description: String
|
|
112
|
-
email:
|
|
112
|
+
email: EmailAddress
|
|
113
113
|
icon: String
|
|
114
114
|
name: String
|
|
115
115
|
redirectUrl: String
|
|
@@ -133,7 +133,7 @@ type ApprovalLine {
|
|
|
133
133
|
createdAt: DateTimeISO
|
|
134
134
|
creator: User
|
|
135
135
|
description: String
|
|
136
|
-
domain: Domain
|
|
136
|
+
domain: Domain!
|
|
137
137
|
id: ID!
|
|
138
138
|
model: [ApprovalLineItem!]
|
|
139
139
|
name: String
|
|
@@ -283,7 +283,7 @@ type AuthProvider {
|
|
|
283
283
|
clientSecret: String
|
|
284
284
|
createdAt: DateTimeISO
|
|
285
285
|
creator: User
|
|
286
|
-
domain: Domain
|
|
286
|
+
domain: Domain!
|
|
287
287
|
id: ID!
|
|
288
288
|
params: Object
|
|
289
289
|
privateKey: String
|
|
@@ -305,6 +305,7 @@ type AuthProviderParameterSpec {
|
|
|
305
305
|
name: String!
|
|
306
306
|
placeholder: String
|
|
307
307
|
property: Object
|
|
308
|
+
styles: Object
|
|
308
309
|
type: String!
|
|
309
310
|
}
|
|
310
311
|
|
|
@@ -411,7 +412,7 @@ type BoardTemplate {
|
|
|
411
412
|
createdAt: DateTimeISO
|
|
412
413
|
creator: User
|
|
413
414
|
description: String
|
|
414
|
-
domain: Domain
|
|
415
|
+
domain: Domain!
|
|
415
416
|
id: ID!
|
|
416
417
|
mine: Boolean!
|
|
417
418
|
model: String
|
|
@@ -462,7 +463,7 @@ type CommonCode {
|
|
|
462
463
|
creator: User
|
|
463
464
|
description: String
|
|
464
465
|
details: [CommonCodeDetail!]!
|
|
465
|
-
domain: Domain
|
|
466
|
+
domain: Domain!
|
|
466
467
|
id: ID!
|
|
467
468
|
name: String!
|
|
468
469
|
updatedAt: DateTimeISO
|
|
@@ -475,8 +476,9 @@ type CommonCodeDetail {
|
|
|
475
476
|
createdAt: DateTimeISO
|
|
476
477
|
creator: User
|
|
477
478
|
description: String
|
|
478
|
-
domain: Domain
|
|
479
|
+
domain: Domain!
|
|
479
480
|
id: ID!
|
|
481
|
+
labels: Object
|
|
480
482
|
name: String!
|
|
481
483
|
rank: Float
|
|
482
484
|
updatedAt: DateTimeISO
|
|
@@ -493,6 +495,7 @@ input CommonCodeDetailPatch {
|
|
|
493
495
|
cuFlag: String
|
|
494
496
|
description: String
|
|
495
497
|
id: ID
|
|
498
|
+
labels: Object
|
|
496
499
|
name: String
|
|
497
500
|
rank: Float
|
|
498
501
|
}
|
|
@@ -516,6 +519,7 @@ type Connection {
|
|
|
516
519
|
creator: User
|
|
517
520
|
description: String
|
|
518
521
|
domain: Domain
|
|
522
|
+
edge: Appliance
|
|
519
523
|
endpoint: String
|
|
520
524
|
id: ID!
|
|
521
525
|
name: String!
|
|
@@ -535,6 +539,7 @@ input ConnectionPatch {
|
|
|
535
539
|
active: Boolean
|
|
536
540
|
cuFlag: String
|
|
537
541
|
description: String
|
|
542
|
+
edge: ObjectRef
|
|
538
543
|
endpoint: String
|
|
539
544
|
id: ID
|
|
540
545
|
name: String
|
|
@@ -544,7 +549,8 @@ input ConnectionPatch {
|
|
|
544
549
|
|
|
545
550
|
type ConnectionState {
|
|
546
551
|
description: String
|
|
547
|
-
domain: Domain
|
|
552
|
+
domain: Domain!
|
|
553
|
+
edge: Appliance
|
|
548
554
|
id: String
|
|
549
555
|
name: String
|
|
550
556
|
state: String
|
|
@@ -573,8 +579,8 @@ type Contact {
|
|
|
573
579
|
creator: User
|
|
574
580
|
deletedAt: DateTimeISO
|
|
575
581
|
department: String
|
|
576
|
-
domain: Domain
|
|
577
|
-
email:
|
|
582
|
+
domain: Domain!
|
|
583
|
+
email: EmailAddress
|
|
578
584
|
id: ID!
|
|
579
585
|
items: [ContactItem!]
|
|
580
586
|
name: String
|
|
@@ -607,7 +613,7 @@ input ContactPatch {
|
|
|
607
613
|
company: String
|
|
608
614
|
cuFlag: String
|
|
609
615
|
department: String
|
|
610
|
-
email:
|
|
616
|
+
email: EmailAddress
|
|
611
617
|
id: ID
|
|
612
618
|
items: [ContactItemPatch!]
|
|
613
619
|
name: String
|
|
@@ -638,13 +644,13 @@ scalar DateTimeISO
|
|
|
638
644
|
"""Entity for Department"""
|
|
639
645
|
type Department {
|
|
640
646
|
active: Boolean
|
|
641
|
-
children: [Department!]!
|
|
647
|
+
children(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): [Department!]!
|
|
642
648
|
controlNo: String!
|
|
643
649
|
createdAt: DateTimeISO
|
|
644
650
|
creator: User
|
|
645
651
|
deletedAt: DateTimeISO
|
|
646
652
|
description: String
|
|
647
|
-
domain: Domain
|
|
653
|
+
domain: Domain!
|
|
648
654
|
extension: String
|
|
649
655
|
id: ID!
|
|
650
656
|
manager: Employee
|
|
@@ -652,7 +658,6 @@ type Department {
|
|
|
652
658
|
name: String
|
|
653
659
|
parent: Department
|
|
654
660
|
picture: String
|
|
655
|
-
state: String
|
|
656
661
|
updatedAt: DateTimeISO
|
|
657
662
|
updater: User
|
|
658
663
|
version: Float
|
|
@@ -673,13 +678,6 @@ input DepartmentPatch {
|
|
|
673
678
|
name: String
|
|
674
679
|
parent: ObjectRef
|
|
675
680
|
picture: Upload
|
|
676
|
-
state: DepartmentStatus
|
|
677
|
-
}
|
|
678
|
-
|
|
679
|
-
"""state enumeration of a department"""
|
|
680
|
-
enum DepartmentStatus {
|
|
681
|
-
STATUS_A
|
|
682
|
-
STATUS_B
|
|
683
681
|
}
|
|
684
682
|
|
|
685
683
|
type Domain {
|
|
@@ -742,6 +740,11 @@ input DomainUserRoleInput {
|
|
|
742
740
|
users: [NewUserByDomainWizardInput!]!
|
|
743
741
|
}
|
|
744
742
|
|
|
743
|
+
"""
|
|
744
|
+
A field whose value conforms to the standard internet email address format as specified in HTML Spec: https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address.
|
|
745
|
+
"""
|
|
746
|
+
scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address")
|
|
747
|
+
|
|
745
748
|
"""Entity for Employee"""
|
|
746
749
|
type Employee {
|
|
747
750
|
active: Boolean
|
|
@@ -754,8 +757,8 @@ type Employee {
|
|
|
754
757
|
creator: User
|
|
755
758
|
deletedAt: DateTimeISO
|
|
756
759
|
department: Department
|
|
757
|
-
domain: Domain
|
|
758
|
-
email:
|
|
760
|
+
domain: Domain!
|
|
761
|
+
email: EmailAddress
|
|
759
762
|
extension: String
|
|
760
763
|
hiredOn: String
|
|
761
764
|
id: ID!
|
|
@@ -820,7 +823,7 @@ type Entity {
|
|
|
820
823
|
dataProp: String
|
|
821
824
|
delStrategy: String
|
|
822
825
|
description: String
|
|
823
|
-
domain: Domain
|
|
826
|
+
domain: Domain!
|
|
824
827
|
extEntity: Boolean
|
|
825
828
|
fixedColumns: Float
|
|
826
829
|
id: ID!
|
|
@@ -845,7 +848,7 @@ type EntityColumn {
|
|
|
845
848
|
creator: User
|
|
846
849
|
defVal: String
|
|
847
850
|
description: String
|
|
848
|
-
domain: Domain
|
|
851
|
+
domain: Domain!
|
|
849
852
|
entity: Entity!
|
|
850
853
|
formEditor: String
|
|
851
854
|
formFormat: String
|
|
@@ -1018,7 +1021,7 @@ type Font {
|
|
|
1018
1021
|
active: Boolean!
|
|
1019
1022
|
createdAt: DateTimeISO
|
|
1020
1023
|
creator: User
|
|
1021
|
-
domain: Domain
|
|
1024
|
+
domain: Domain!
|
|
1022
1025
|
files: [Attachment!]
|
|
1023
1026
|
id: ID!
|
|
1024
1027
|
name: String!
|
|
@@ -1091,7 +1094,7 @@ enum InheritedValueType {
|
|
|
1091
1094
|
type Invitation {
|
|
1092
1095
|
createdAt: DateTimeISO
|
|
1093
1096
|
creator: User
|
|
1094
|
-
email:
|
|
1097
|
+
email: EmailAddress!
|
|
1095
1098
|
id: ID!
|
|
1096
1099
|
reference: String!
|
|
1097
1100
|
token: String!
|
|
@@ -1105,6 +1108,11 @@ type InvitationList {
|
|
|
1105
1108
|
total: Int
|
|
1106
1109
|
}
|
|
1107
1110
|
|
|
1111
|
+
"""
|
|
1112
|
+
A field whose value is a JSON Web Token (JWT): https://jwt.io/introduction.
|
|
1113
|
+
"""
|
|
1114
|
+
scalar JWT
|
|
1115
|
+
|
|
1108
1116
|
type Log {
|
|
1109
1117
|
"""log level (error, warning, info, ..)"""
|
|
1110
1118
|
level: String!
|
|
@@ -1136,14 +1144,14 @@ type LoginHistoryList {
|
|
|
1136
1144
|
type Menu {
|
|
1137
1145
|
buttons: [MenuButton!]!
|
|
1138
1146
|
category: String
|
|
1139
|
-
children: [Menu!]!
|
|
1147
|
+
children(permittedOnly: Boolean! = false): [Menu!]!
|
|
1140
1148
|
columns: [MenuColumn!]!
|
|
1141
1149
|
createdAt: DateTimeISO
|
|
1142
1150
|
creator: User
|
|
1143
1151
|
description: String
|
|
1144
1152
|
detailFormId: String
|
|
1145
1153
|
detailLayout: String
|
|
1146
|
-
domain: Domain
|
|
1154
|
+
domain: Domain!
|
|
1147
1155
|
fixedColumns: Float
|
|
1148
1156
|
gridSaveUrl: String
|
|
1149
1157
|
hiddenFlag: Boolean
|
|
@@ -1155,6 +1163,7 @@ type Menu {
|
|
|
1155
1163
|
name: String
|
|
1156
1164
|
pagination: Boolean
|
|
1157
1165
|
parent: Menu
|
|
1166
|
+
privilege: PrivilegeObject
|
|
1158
1167
|
rank: Float
|
|
1159
1168
|
resourceId: String
|
|
1160
1169
|
resourceName: String
|
|
@@ -1176,7 +1185,7 @@ type MenuButton {
|
|
|
1176
1185
|
auth: String
|
|
1177
1186
|
createdAt: DateTimeISO
|
|
1178
1187
|
creator: User
|
|
1179
|
-
domain: Domain
|
|
1188
|
+
domain: Domain!
|
|
1180
1189
|
icon: String
|
|
1181
1190
|
id: ID!
|
|
1182
1191
|
logic: String
|
|
@@ -1211,7 +1220,7 @@ type MenuColumn {
|
|
|
1211
1220
|
creator: User
|
|
1212
1221
|
defVal: String
|
|
1213
1222
|
description: String
|
|
1214
|
-
domain: Domain
|
|
1223
|
+
domain: Domain!
|
|
1215
1224
|
extField: Boolean
|
|
1216
1225
|
formEditor: String
|
|
1217
1226
|
formFormat: String
|
|
@@ -1300,7 +1309,7 @@ type MenuDetail {
|
|
|
1300
1309
|
creator: User
|
|
1301
1310
|
customView: String
|
|
1302
1311
|
dataProp: String
|
|
1303
|
-
domain: Domain
|
|
1312
|
+
domain: Domain!
|
|
1304
1313
|
entityId: String
|
|
1305
1314
|
id: ID!
|
|
1306
1315
|
masterField: String
|
|
@@ -1317,7 +1326,7 @@ type MenuDetail {
|
|
|
1317
1326
|
type MenuDetailButton {
|
|
1318
1327
|
createdAt: DateTimeISO
|
|
1319
1328
|
creator: User
|
|
1320
|
-
domain: Domain
|
|
1329
|
+
domain: Domain!
|
|
1321
1330
|
icon: String
|
|
1322
1331
|
id: ID!
|
|
1323
1332
|
logic: String
|
|
@@ -1351,7 +1360,7 @@ type MenuDetailColumn {
|
|
|
1351
1360
|
creator: User
|
|
1352
1361
|
defVal: String
|
|
1353
1362
|
description: String
|
|
1354
|
-
domain: Domain
|
|
1363
|
+
domain: Domain!
|
|
1355
1364
|
extField: Boolean
|
|
1356
1365
|
formEditor: String
|
|
1357
1366
|
formFormat: String
|
|
@@ -1476,6 +1485,7 @@ input MenuPatch {
|
|
|
1476
1485
|
name: String
|
|
1477
1486
|
pagination: Boolean
|
|
1478
1487
|
parent: ObjectRef
|
|
1488
|
+
privilege: PrivilegeInput
|
|
1479
1489
|
rank: Int
|
|
1480
1490
|
resourceId: String
|
|
1481
1491
|
resourceName: String
|
|
@@ -1495,7 +1505,10 @@ type Mutation {
|
|
|
1495
1505
|
|
|
1496
1506
|
"""To attach a contact on Employee"""
|
|
1497
1507
|
attachContact(contactId: String!, id: String!): Employee!
|
|
1498
|
-
cancelInvitation(email:
|
|
1508
|
+
cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
|
|
1509
|
+
|
|
1510
|
+
"""To clear translations cache"""
|
|
1511
|
+
clearTranslationsCache: Boolean!
|
|
1499
1512
|
|
|
1500
1513
|
"""To clone a Board from existing Board"""
|
|
1501
1514
|
cloneBoard(id: String!, patch: BoardPatch!, targetGroupId: String, targetSubdomain: String!): Board!
|
|
@@ -1693,7 +1706,7 @@ type Mutation {
|
|
|
1693
1706
|
deleteDomain(name: String!): Domain!
|
|
1694
1707
|
|
|
1695
1708
|
"""To delete domain user"""
|
|
1696
|
-
deleteDomainUser(email:
|
|
1709
|
+
deleteDomainUser(email: EmailAddress!): Boolean!
|
|
1697
1710
|
|
|
1698
1711
|
"""To delete multiple domains (Only superuser is granted this privilege.)"""
|
|
1699
1712
|
deleteDomains(names: [String!]!): Boolean!
|
|
@@ -1846,7 +1859,7 @@ type Mutation {
|
|
|
1846
1859
|
deleteThemes(ids: [String!]!): Boolean!
|
|
1847
1860
|
|
|
1848
1861
|
"""To delete a user"""
|
|
1849
|
-
deleteUser(email:
|
|
1862
|
+
deleteUser(email: EmailAddress!): Boolean!
|
|
1850
1863
|
|
|
1851
1864
|
"""To delete some users"""
|
|
1852
1865
|
deleteUsers(emails: [String!]!): Boolean!
|
|
@@ -1937,7 +1950,7 @@ type Mutation {
|
|
|
1937
1950
|
inviteCustomer(customerDomainName: String!): Boolean!
|
|
1938
1951
|
|
|
1939
1952
|
"""To invite new user"""
|
|
1940
|
-
inviteUser(email:
|
|
1953
|
+
inviteUser(email: EmailAddress!): Boolean!
|
|
1941
1954
|
|
|
1942
1955
|
"""To make the board to join the group"""
|
|
1943
1956
|
joinGroup(boardIds: [String!]!, id: String!): Group!
|
|
@@ -1984,7 +1997,7 @@ type Mutation {
|
|
|
1984
1997
|
To run new scenario instance and will return the result after the scenario stop.
|
|
1985
1998
|
"""
|
|
1986
1999
|
runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
|
|
1987
|
-
sendInvitation(email:
|
|
2000
|
+
sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
|
|
1988
2001
|
singleUpload(file: Upload!): Attachment!
|
|
1989
2002
|
|
|
1990
2003
|
"""To start new scenario instance"""
|
|
@@ -2015,7 +2028,7 @@ type Mutation {
|
|
|
2015
2028
|
terminateContract(partnerName: String!): Boolean!
|
|
2016
2029
|
|
|
2017
2030
|
"""To transfer owner of domain"""
|
|
2018
|
-
transferOwner(email:
|
|
2031
|
+
transferOwner(email: EmailAddress!): Boolean!
|
|
2019
2032
|
updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
|
|
2020
2033
|
updateApplication(id: String!, patch: ApplicationPatch!): Application!
|
|
2021
2034
|
|
|
@@ -2217,7 +2230,7 @@ type Mutation {
|
|
|
2217
2230
|
updateTheme(id: String!, patch: ThemePatch!): Theme!
|
|
2218
2231
|
|
|
2219
2232
|
"""To modify user information"""
|
|
2220
|
-
updateUser(email:
|
|
2233
|
+
updateUser(email: EmailAddress!, patch: UserPatch!): User!
|
|
2221
2234
|
|
|
2222
2235
|
"""To update roles for a user"""
|
|
2223
2236
|
updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
|
|
@@ -2234,7 +2247,7 @@ input NewAppliance {
|
|
|
2234
2247
|
|
|
2235
2248
|
input NewApplication {
|
|
2236
2249
|
description: String
|
|
2237
|
-
email:
|
|
2250
|
+
email: EmailAddress
|
|
2238
2251
|
icon: String
|
|
2239
2252
|
name: String!
|
|
2240
2253
|
redirectUrl: String
|
|
@@ -2301,12 +2314,14 @@ input NewCommonCode {
|
|
|
2301
2314
|
input NewCommonCodeDetail {
|
|
2302
2315
|
commonCode: ObjectRef!
|
|
2303
2316
|
description: String
|
|
2317
|
+
labels: Object
|
|
2304
2318
|
name: String!
|
|
2305
2319
|
rank: Float!
|
|
2306
2320
|
}
|
|
2307
2321
|
|
|
2308
2322
|
input NewConnection {
|
|
2309
2323
|
description: String
|
|
2324
|
+
edge: ObjectRef
|
|
2310
2325
|
endpoint: String
|
|
2311
2326
|
name: String!
|
|
2312
2327
|
params: String
|
|
@@ -2317,7 +2332,7 @@ input NewContact {
|
|
|
2317
2332
|
address: String
|
|
2318
2333
|
company: String
|
|
2319
2334
|
department: String
|
|
2320
|
-
email:
|
|
2335
|
+
email: EmailAddress
|
|
2321
2336
|
items: [ContactItemPatch!]
|
|
2322
2337
|
name: String!
|
|
2323
2338
|
note: String
|
|
@@ -2334,7 +2349,6 @@ input NewDepartment {
|
|
|
2334
2349
|
name: String!
|
|
2335
2350
|
parent: ObjectRef
|
|
2336
2351
|
picture: Upload
|
|
2337
|
-
state: DepartmentStatus
|
|
2338
2352
|
}
|
|
2339
2353
|
|
|
2340
2354
|
input NewEmployee {
|
|
@@ -2449,6 +2463,7 @@ input NewMenu {
|
|
|
2449
2463
|
name: String!
|
|
2450
2464
|
pagination: Boolean
|
|
2451
2465
|
parent: ObjectRef
|
|
2466
|
+
privilege: PrivilegeInput
|
|
2452
2467
|
rank: Int
|
|
2453
2468
|
resourceId: String
|
|
2454
2469
|
resourceName: String
|
|
@@ -2607,7 +2622,7 @@ input NewOauth2Client {
|
|
|
2607
2622
|
description: String
|
|
2608
2623
|
grantType: String
|
|
2609
2624
|
icon: String
|
|
2610
|
-
jwtToken:
|
|
2625
|
+
jwtToken: JWT
|
|
2611
2626
|
name: String!
|
|
2612
2627
|
password: String
|
|
2613
2628
|
refreshToken: String
|
|
@@ -2702,7 +2717,7 @@ input NewTheme {
|
|
|
2702
2717
|
|
|
2703
2718
|
input NewUser {
|
|
2704
2719
|
description: String
|
|
2705
|
-
email:
|
|
2720
|
+
email: EmailAddress!
|
|
2706
2721
|
name: String!
|
|
2707
2722
|
password: String
|
|
2708
2723
|
roles: [ObjectRef!]
|
|
@@ -2710,7 +2725,7 @@ input NewUser {
|
|
|
2710
2725
|
}
|
|
2711
2726
|
|
|
2712
2727
|
input NewUserByDomainWizardInput {
|
|
2713
|
-
email:
|
|
2728
|
+
email: EmailAddress!
|
|
2714
2729
|
isInvitee: Boolean
|
|
2715
2730
|
name: String!
|
|
2716
2731
|
owner: Boolean!
|
|
@@ -2723,7 +2738,7 @@ type Notification {
|
|
|
2723
2738
|
body: String
|
|
2724
2739
|
createdAt: DateTimeISO
|
|
2725
2740
|
creator: User
|
|
2726
|
-
domain: Domain
|
|
2741
|
+
domain: Domain!
|
|
2727
2742
|
id: ID!
|
|
2728
2743
|
image: String
|
|
2729
2744
|
owner: User
|
|
@@ -2757,7 +2772,7 @@ type NotificationRule {
|
|
|
2757
2772
|
creator: User
|
|
2758
2773
|
deletedAt: DateTimeISO
|
|
2759
2774
|
description: String
|
|
2760
|
-
domain: Domain
|
|
2775
|
+
domain: Domain!
|
|
2761
2776
|
id: ID!
|
|
2762
2777
|
name: String
|
|
2763
2778
|
|
|
@@ -2814,12 +2829,12 @@ type Oauth2Client {
|
|
|
2814
2829
|
createdAt: DateTimeISO
|
|
2815
2830
|
creator: User
|
|
2816
2831
|
description: String
|
|
2817
|
-
domain: Domain
|
|
2832
|
+
domain: Domain!
|
|
2818
2833
|
expires: DateTimeISO
|
|
2819
2834
|
grantType: String
|
|
2820
2835
|
icon: String
|
|
2821
2836
|
id: ID!
|
|
2822
|
-
jwtToken:
|
|
2837
|
+
jwtToken: JWT
|
|
2823
2838
|
name: String!
|
|
2824
2839
|
password: String
|
|
2825
2840
|
refreshToken: String
|
|
@@ -2849,7 +2864,7 @@ input Oauth2ClientPatch {
|
|
|
2849
2864
|
description: String
|
|
2850
2865
|
grantType: String
|
|
2851
2866
|
icon: String
|
|
2852
|
-
jwtToken:
|
|
2867
|
+
jwtToken: JWT
|
|
2853
2868
|
name: String
|
|
2854
2869
|
password: String
|
|
2855
2870
|
refreshToken: String
|
|
@@ -2892,22 +2907,24 @@ input ObjectRefForEmployee {
|
|
|
2892
2907
|
|
|
2893
2908
|
"""Field description"""
|
|
2894
2909
|
description: String
|
|
2895
|
-
email:
|
|
2910
|
+
email: EmailAddress
|
|
2896
2911
|
hiredOn: String
|
|
2897
2912
|
|
|
2898
2913
|
"""Field id"""
|
|
2899
2914
|
id: ID!
|
|
2900
2915
|
jobPosition: String
|
|
2916
|
+
jobResponsibility: String
|
|
2901
2917
|
|
|
2902
2918
|
"""Field name"""
|
|
2903
2919
|
name: String
|
|
2904
2920
|
photo: String
|
|
2921
|
+
type: EmployeeType
|
|
2905
2922
|
}
|
|
2906
2923
|
|
|
2907
2924
|
input ObjectRefForUser {
|
|
2908
2925
|
"""Field description"""
|
|
2909
2926
|
description: String
|
|
2910
|
-
email:
|
|
2927
|
+
email: EmailAddress
|
|
2911
2928
|
|
|
2912
2929
|
"""Field id"""
|
|
2913
2930
|
id: ID!
|
|
@@ -2965,7 +2982,7 @@ type PartnerSetting {
|
|
|
2965
2982
|
createdAt: DateTimeISO
|
|
2966
2983
|
creator: User
|
|
2967
2984
|
description: String
|
|
2968
|
-
domain: Domain
|
|
2985
|
+
domain: Domain!
|
|
2969
2986
|
id: ID!
|
|
2970
2987
|
name: String
|
|
2971
2988
|
partnerDomain: Domain
|
|
@@ -2994,7 +3011,7 @@ input PartnerSettingPatch {
|
|
|
2994
3011
|
type PayloadLog {
|
|
2995
3012
|
createdAt: DateTimeISO
|
|
2996
3013
|
creator: User
|
|
2997
|
-
domain: Domain
|
|
3014
|
+
domain: Domain!
|
|
2998
3015
|
endpoint: String!
|
|
2999
3016
|
id: ID!
|
|
3000
3017
|
name: String!
|
|
@@ -3160,6 +3177,7 @@ type PropertySpec {
|
|
|
3160
3177
|
name: String!
|
|
3161
3178
|
placeholder: String
|
|
3162
3179
|
property: Object
|
|
3180
|
+
styles: Object
|
|
3163
3181
|
type: String!
|
|
3164
3182
|
}
|
|
3165
3183
|
|
|
@@ -3250,7 +3268,7 @@ type Query {
|
|
|
3250
3268
|
checkUserBelongsDomain: Boolean!
|
|
3251
3269
|
|
|
3252
3270
|
"""..."""
|
|
3253
|
-
checkUserExistence(email:
|
|
3271
|
+
checkUserExistence(email: EmailAddress!): Boolean!
|
|
3254
3272
|
|
|
3255
3273
|
"""To fetch common approval lines"""
|
|
3256
3274
|
commonApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
@@ -3291,8 +3309,8 @@ type Query {
|
|
|
3291
3309
|
"""To fetch a Department"""
|
|
3292
3310
|
department(id: String!): Department
|
|
3293
3311
|
|
|
3294
|
-
"""To fetch a Root
|
|
3295
|
-
|
|
3312
|
+
"""To fetch a Root Departments"""
|
|
3313
|
+
departmentRoots(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DepartmentList
|
|
3296
3314
|
|
|
3297
3315
|
"""To fetch multiple Departments"""
|
|
3298
3316
|
departments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DepartmentList!
|
|
@@ -3306,6 +3324,9 @@ type Query {
|
|
|
3306
3324
|
"""To fetch domains with given privilege for user"""
|
|
3307
3325
|
domainsWithPrivilege(category: String!, privilege: String!): [Domain!]!
|
|
3308
3326
|
|
|
3327
|
+
"""To fetch multiple appliance"""
|
|
3328
|
+
edges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
|
|
3329
|
+
|
|
3309
3330
|
"""To fetch a Employee"""
|
|
3310
3331
|
employee(id: String!): Employee
|
|
3311
3332
|
|
|
@@ -3360,7 +3381,7 @@ type Query {
|
|
|
3360
3381
|
|
|
3361
3382
|
"""To fetch integration Analyses"""
|
|
3362
3383
|
integrationAnalysis: Object!
|
|
3363
|
-
invitation(email:
|
|
3384
|
+
invitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
|
|
3364
3385
|
invitations(reference: String!, type: String!): InvitationList!
|
|
3365
3386
|
|
|
3366
3387
|
"""To fetch multiple LoginHistories"""
|
|
@@ -3412,12 +3433,12 @@ type Query {
|
|
|
3412
3433
|
myFavorites: [Favorite!]!
|
|
3413
3434
|
myLoginHistories(limit: Float!): [LoginHistory!]!
|
|
3414
3435
|
|
|
3436
|
+
"""To fetch my own Menus"""
|
|
3437
|
+
myMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
|
|
3438
|
+
|
|
3415
3439
|
"""To fetch my notifications"""
|
|
3416
3440
|
myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
|
|
3417
3441
|
|
|
3418
|
-
"""To fetch current users privileges for current domain"""
|
|
3419
|
-
myPrivileges: [Privilege!]!
|
|
3420
|
-
|
|
3421
3442
|
"""To fetch roles of current user"""
|
|
3422
3443
|
myRoles: [Role!]!
|
|
3423
3444
|
|
|
@@ -3544,7 +3565,7 @@ type Query {
|
|
|
3544
3565
|
themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
|
|
3545
3566
|
|
|
3546
3567
|
"""To fetch user"""
|
|
3547
|
-
user(email:
|
|
3568
|
+
user(email: EmailAddress!): User!
|
|
3548
3569
|
|
|
3549
3570
|
"""To fetch Menus by role"""
|
|
3550
3571
|
userMenus: [Menu!]!
|
|
@@ -3605,7 +3626,7 @@ type Scenario {
|
|
|
3605
3626
|
createdAt: DateTimeISO
|
|
3606
3627
|
creator: User
|
|
3607
3628
|
description: String
|
|
3608
|
-
domain: Domain
|
|
3629
|
+
domain: Domain!
|
|
3609
3630
|
id: ID!
|
|
3610
3631
|
instances: [ScenarioInstance!]
|
|
3611
3632
|
name: String!
|
|
@@ -3701,7 +3722,7 @@ type Setting {
|
|
|
3701
3722
|
createdAt: DateTimeISO
|
|
3702
3723
|
creator: User
|
|
3703
3724
|
description: String
|
|
3704
|
-
domain: Domain
|
|
3725
|
+
domain: Domain!
|
|
3705
3726
|
id: ID!
|
|
3706
3727
|
name: String!
|
|
3707
3728
|
updatedAt: DateTimeISO
|
|
@@ -3738,7 +3759,7 @@ type StateRegister {
|
|
|
3738
3759
|
createdAt: DateTimeISO
|
|
3739
3760
|
creator: User
|
|
3740
3761
|
description: String
|
|
3741
|
-
domain: Domain
|
|
3762
|
+
domain: Domain!
|
|
3742
3763
|
id: ID!
|
|
3743
3764
|
name: String
|
|
3744
3765
|
refBy: String
|
|
@@ -3779,7 +3800,7 @@ type Step {
|
|
|
3779
3800
|
params: String
|
|
3780
3801
|
|
|
3781
3802
|
"""
|
|
3782
|
-
|
|
3803
|
+
A boolean attribute indicating the inclusion status of an element in the result
|
|
3783
3804
|
"""
|
|
3784
3805
|
result: Boolean
|
|
3785
3806
|
scenario: Scenario
|
|
@@ -3840,7 +3861,7 @@ type Terminology {
|
|
|
3840
3861
|
createdAt: DateTimeISO
|
|
3841
3862
|
description: String
|
|
3842
3863
|
display: String!
|
|
3843
|
-
domain: Domain
|
|
3864
|
+
domain: Domain!
|
|
3844
3865
|
id: ID!
|
|
3845
3866
|
locale: String!
|
|
3846
3867
|
name: String!
|
|
@@ -3869,7 +3890,7 @@ type Theme {
|
|
|
3869
3890
|
creator: User
|
|
3870
3891
|
deletedAt: DateTimeISO
|
|
3871
3892
|
description: String
|
|
3872
|
-
domain: Domain
|
|
3893
|
+
domain: Domain!
|
|
3873
3894
|
id: ID!
|
|
3874
3895
|
name: String
|
|
3875
3896
|
type: String
|
|
@@ -3906,7 +3927,7 @@ type User {
|
|
|
3906
3927
|
creator: User
|
|
3907
3928
|
description: String
|
|
3908
3929
|
domains: [Domain!]!
|
|
3909
|
-
email:
|
|
3930
|
+
email: EmailAddress!
|
|
3910
3931
|
id: ID!
|
|
3911
3932
|
locale: String
|
|
3912
3933
|
name: String!
|
|
@@ -3930,7 +3951,7 @@ input UserPatch {
|
|
|
3930
3951
|
cuFlag: String
|
|
3931
3952
|
description: String
|
|
3932
3953
|
domains: [ObjectRef!]
|
|
3933
|
-
email:
|
|
3954
|
+
email: EmailAddress
|
|
3934
3955
|
id: ID
|
|
3935
3956
|
name: String
|
|
3936
3957
|
password: String
|
|
@@ -3950,7 +3971,7 @@ type UserRole {
|
|
|
3950
3971
|
type UsersAuthProviders {
|
|
3951
3972
|
authProvider: AuthProvider
|
|
3952
3973
|
createdAt: DateTimeISO
|
|
3953
|
-
domain: Domain
|
|
3974
|
+
domain: Domain!
|
|
3954
3975
|
id: ID!
|
|
3955
3976
|
ssoId: String
|
|
3956
3977
|
updatedAt: DateTimeISO
|