@things-factory/operato-dataset 6.2.0 → 6.2.2
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/dist-client/bootstrap.js +47 -32
- package/dist-client/bootstrap.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -6
- package/schema.graphql +170 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-dataset",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.2",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
"@operato/scene-gauge": "^1.0.0",
|
|
53
53
|
"@operato/scene-grist": "^1.0.0",
|
|
54
54
|
"@operato/scene-half-roundrect": "^1.0.0",
|
|
55
|
+
"@operato/scene-image-slider": "^1.0.0",
|
|
55
56
|
"@operato/scene-integration": "^1.0.0",
|
|
56
57
|
"@operato/scene-news-ticker": "^1.0.0",
|
|
57
58
|
"@operato/scene-progressbar": "^1.0.0",
|
|
@@ -64,7 +65,7 @@
|
|
|
64
65
|
"@things-factory/apptool-base": "^6.2.0",
|
|
65
66
|
"@things-factory/apptool-ui": "^6.2.0",
|
|
66
67
|
"@things-factory/auth-base": "^6.2.0",
|
|
67
|
-
"@things-factory/auth-ui": "^6.2.
|
|
68
|
+
"@things-factory/auth-ui": "^6.2.1",
|
|
68
69
|
"@things-factory/board-service": "^6.2.0",
|
|
69
70
|
"@things-factory/board-ui": "^6.2.0",
|
|
70
71
|
"@things-factory/ccp": "^6.2.0",
|
|
@@ -80,11 +81,11 @@
|
|
|
80
81
|
"@things-factory/lite-menu": "^6.2.0",
|
|
81
82
|
"@things-factory/more-base": "^6.2.0",
|
|
82
83
|
"@things-factory/more-ui": "^6.2.0",
|
|
83
|
-
"@things-factory/notification": "^6.2.
|
|
84
|
+
"@things-factory/notification": "^6.2.1",
|
|
84
85
|
"@things-factory/oauth2-client": "^6.2.0",
|
|
85
86
|
"@things-factory/organization": "^6.2.0",
|
|
86
87
|
"@things-factory/qc": "^6.2.0",
|
|
87
|
-
"@things-factory/resource-ui": "^6.2.
|
|
88
|
+
"@things-factory/resource-ui": "^6.2.1",
|
|
88
89
|
"@things-factory/setting-base": "^6.2.0",
|
|
89
90
|
"@things-factory/setting-ui": "^6.2.0",
|
|
90
91
|
"@things-factory/shell": "^6.2.0",
|
|
@@ -93,7 +94,7 @@
|
|
|
93
94
|
"@things-factory/worklist": "^6.2.0"
|
|
94
95
|
},
|
|
95
96
|
"devDependencies": {
|
|
96
|
-
"@things-factory/builder": "^6.2.
|
|
97
|
+
"@things-factory/builder": "^6.2.2"
|
|
97
98
|
},
|
|
98
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "6876e3c31d769ea706cf587b5cba2d7b10607618"
|
|
99
100
|
}
|
package/schema.graphql
CHANGED
|
@@ -455,6 +455,7 @@ type AppBinding {
|
|
|
455
455
|
updatedAt: DateTimeISO
|
|
456
456
|
updater: User!
|
|
457
457
|
userType: String
|
|
458
|
+
usersAuthProviders: [UsersAuthProviders!]
|
|
458
459
|
}
|
|
459
460
|
|
|
460
461
|
type AppBindingList {
|
|
@@ -696,6 +697,62 @@ input AttributeSetPatch {
|
|
|
696
697
|
items: [AttributeSetItemPatch!]
|
|
697
698
|
}
|
|
698
699
|
|
|
700
|
+
"""Entity for AuthProvider"""
|
|
701
|
+
type AuthProvider {
|
|
702
|
+
active: Boolean
|
|
703
|
+
clientId: String
|
|
704
|
+
clientSecret: String
|
|
705
|
+
createdAt: DateTimeISO
|
|
706
|
+
creator: User
|
|
707
|
+
domain: Domain
|
|
708
|
+
id: ID!
|
|
709
|
+
params: Object
|
|
710
|
+
privateKey: String
|
|
711
|
+
state: String
|
|
712
|
+
tenantId: String
|
|
713
|
+
type: String
|
|
714
|
+
updatedAt: DateTimeISO
|
|
715
|
+
updater: User
|
|
716
|
+
usersAuthProviders: [UsersAuthProviders!]
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
type AuthProviderList {
|
|
720
|
+
items: [AuthProvider!]!
|
|
721
|
+
total: Int!
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
type AuthProviderParameterSpec {
|
|
725
|
+
label: String!
|
|
726
|
+
name: String!
|
|
727
|
+
placeholder: String
|
|
728
|
+
property: Object
|
|
729
|
+
type: String!
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
input AuthProviderPatch {
|
|
733
|
+
active: Boolean
|
|
734
|
+
clientId: String
|
|
735
|
+
clientSecret: String
|
|
736
|
+
cuFlag: String
|
|
737
|
+
id: ID
|
|
738
|
+
params: Object
|
|
739
|
+
privateKey: String
|
|
740
|
+
tenantId: String
|
|
741
|
+
type: String
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
type AuthProviderType {
|
|
745
|
+
description: String
|
|
746
|
+
help: String
|
|
747
|
+
parameterSpec: [AuthProviderParameterSpec!]
|
|
748
|
+
type: String!
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
type AuthProviderTypeList {
|
|
752
|
+
items: [AuthProviderType!]!
|
|
753
|
+
total: Int!
|
|
754
|
+
}
|
|
755
|
+
|
|
699
756
|
"""Entity for Visualization Board"""
|
|
700
757
|
type Board {
|
|
701
758
|
createdAt: DateTimeISO
|
|
@@ -715,6 +772,30 @@ type Board {
|
|
|
715
772
|
version: Float
|
|
716
773
|
}
|
|
717
774
|
|
|
775
|
+
type BoardFavorite {
|
|
776
|
+
createdAt: DateTimeISO
|
|
777
|
+
creator: User
|
|
778
|
+
deletedAt: DateTimeISO
|
|
779
|
+
description: String
|
|
780
|
+
domain: Domain
|
|
781
|
+
favoriteId: String
|
|
782
|
+
group: Group
|
|
783
|
+
id: ID
|
|
784
|
+
model: String
|
|
785
|
+
name: String!
|
|
786
|
+
playGroups: [PlayGroup!]
|
|
787
|
+
state: String
|
|
788
|
+
thumbnail: String
|
|
789
|
+
updatedAt: DateTimeISO
|
|
790
|
+
updater: User
|
|
791
|
+
version: Float
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
type BoardFavoriteList {
|
|
795
|
+
items: [BoardFavorite!]!
|
|
796
|
+
total: Int!
|
|
797
|
+
}
|
|
798
|
+
|
|
718
799
|
"""History Entity of Board"""
|
|
719
800
|
type BoardHistory {
|
|
720
801
|
createdAt: DateTimeISO
|
|
@@ -1809,6 +1890,23 @@ type EntityRelationMetadata {
|
|
|
1809
1890
|
relationType: Boolean
|
|
1810
1891
|
}
|
|
1811
1892
|
|
|
1893
|
+
"""Entity for Favorite"""
|
|
1894
|
+
type Favorite {
|
|
1895
|
+
createdAt: DateTimeISO
|
|
1896
|
+
creator: User
|
|
1897
|
+
domain: Domain!
|
|
1898
|
+
id: ID!
|
|
1899
|
+
routing: String!
|
|
1900
|
+
updatedAt: DateTimeISO
|
|
1901
|
+
updater: User
|
|
1902
|
+
user: User!
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
type FavoriteList {
|
|
1906
|
+
items: [Favorite!]!
|
|
1907
|
+
total: Int!
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1812
1910
|
input Filter {
|
|
1813
1911
|
name: String!
|
|
1814
1912
|
operator: String!
|
|
@@ -2428,6 +2526,9 @@ type Mutation {
|
|
|
2428
2526
|
"""To create new AttributeSet"""
|
|
2429
2527
|
createAttributeSet(attribute: NewAttributeSet!): AttributeSet!
|
|
2430
2528
|
|
|
2529
|
+
"""To create new AuthProvider"""
|
|
2530
|
+
createAuthProvider(authProvider: NewAuthProvider!): AuthProvider!
|
|
2531
|
+
|
|
2431
2532
|
"""To create new Board"""
|
|
2432
2533
|
createBoard(board: NewBoard!): Board!
|
|
2433
2534
|
|
|
@@ -2479,6 +2580,9 @@ type Mutation {
|
|
|
2479
2580
|
"""To create new EntityColumn"""
|
|
2480
2581
|
createEntityColumn(entityColumn: NewEntityColumn!): EntityColumn!
|
|
2481
2582
|
|
|
2583
|
+
"""To create new Favorite"""
|
|
2584
|
+
createFavorite(favorite: NewFavorite!): Favorite!
|
|
2585
|
+
|
|
2482
2586
|
"""To create new Font"""
|
|
2483
2587
|
createFont(font: NewFont!): Font!
|
|
2484
2588
|
|
|
@@ -2590,6 +2694,10 @@ type Mutation {
|
|
|
2590
2694
|
"""To delete multiple AttributeSets"""
|
|
2591
2695
|
deleteAttributeSets(ids: [String!]!): Boolean!
|
|
2592
2696
|
|
|
2697
|
+
"""To delete AuthProvider"""
|
|
2698
|
+
deleteAuthProvider(id: String!): Boolean!
|
|
2699
|
+
deleteAuthProviders(ids: [String!]!): Boolean!
|
|
2700
|
+
|
|
2593
2701
|
"""To delete Board"""
|
|
2594
2702
|
deleteBoard(id: String!): Boolean!
|
|
2595
2703
|
|
|
@@ -2683,6 +2791,9 @@ type Mutation {
|
|
|
2683
2791
|
"""To delete multiple EntityColumns"""
|
|
2684
2792
|
deleteEntityColumns(ids: [String!]!): Boolean!
|
|
2685
2793
|
|
|
2794
|
+
"""To delete Favorite"""
|
|
2795
|
+
deleteFavorite(routing: String!): Boolean!
|
|
2796
|
+
|
|
2686
2797
|
"""To delete Font"""
|
|
2687
2798
|
deleteFont(id: String!): Boolean!
|
|
2688
2799
|
|
|
@@ -3022,6 +3133,9 @@ type Mutation {
|
|
|
3022
3133
|
"""To submit a ActivityThread"""
|
|
3023
3134
|
submitActivityThread(id: String!, output: Object, reason: String): ActivityThread!
|
|
3024
3135
|
|
|
3136
|
+
"""To synchronize auth-providers users"""
|
|
3137
|
+
synchronizeAuthProviderUsers(id: String!): Boolean!
|
|
3138
|
+
|
|
3025
3139
|
"""
|
|
3026
3140
|
To synchronize privilege master from graphql directives. Only superuser is permitted.
|
|
3027
3141
|
"""
|
|
@@ -3049,6 +3163,9 @@ type Mutation {
|
|
|
3049
3163
|
"""To modify AttributeSet information"""
|
|
3050
3164
|
updateAttributeSet(id: String!, patch: AttributeSetPatch!): AttributeSet!
|
|
3051
3165
|
|
|
3166
|
+
"""To modify AuthProvider information"""
|
|
3167
|
+
updateAuthProvider(id: String!, patch: AuthProviderPatch!): AuthProvider!
|
|
3168
|
+
|
|
3052
3169
|
"""To modify Board information"""
|
|
3053
3170
|
updateBoard(id: String!, patch: BoardPatch!): Board!
|
|
3054
3171
|
|
|
@@ -3088,7 +3205,7 @@ type Mutation {
|
|
|
3088
3205
|
"""To update domain (Only superuser is granted this privilege.)"""
|
|
3089
3206
|
updateDomain(name: String!, patch: DomainPatch!): Domain!
|
|
3090
3207
|
|
|
3091
|
-
"""To update multiple domains
|
|
3208
|
+
"""To update multiple domains"""
|
|
3092
3209
|
updateDomains(patches: [DomainPatch!]!): Boolean!
|
|
3093
3210
|
|
|
3094
3211
|
"""To modify Employee information"""
|
|
@@ -3138,6 +3255,7 @@ type Mutation {
|
|
|
3138
3255
|
|
|
3139
3256
|
"""To modify multiple AttributeSets' information"""
|
|
3140
3257
|
updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
|
|
3258
|
+
updateMultipleAuthProvider(patches: [AuthProviderPatch!]!): [AuthProvider!]!
|
|
3141
3259
|
|
|
3142
3260
|
"""To modify multiple CommonCodes' information"""
|
|
3143
3261
|
updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
|
|
@@ -3359,6 +3477,16 @@ input NewAttributeSet {
|
|
|
3359
3477
|
items: [AttributeSetItemPatch!]
|
|
3360
3478
|
}
|
|
3361
3479
|
|
|
3480
|
+
input NewAuthProvider {
|
|
3481
|
+
active: Boolean
|
|
3482
|
+
clientId: String
|
|
3483
|
+
clientSecret: String
|
|
3484
|
+
params: Object
|
|
3485
|
+
privateKey: String
|
|
3486
|
+
tenantId: String
|
|
3487
|
+
type: String!
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3362
3490
|
input NewBoard {
|
|
3363
3491
|
description: String
|
|
3364
3492
|
groupId: String
|
|
@@ -3583,6 +3711,10 @@ input NewEntityColumn {
|
|
|
3583
3711
|
virtualField: Boolean
|
|
3584
3712
|
}
|
|
3585
3713
|
|
|
3714
|
+
input NewFavorite {
|
|
3715
|
+
routing: String!
|
|
3716
|
+
}
|
|
3717
|
+
|
|
3586
3718
|
input NewFont {
|
|
3587
3719
|
active: Boolean
|
|
3588
3720
|
files: [Upload!]
|
|
@@ -4407,12 +4539,24 @@ type Query {
|
|
|
4407
4539
|
"""To fetch multiple AttributeSets"""
|
|
4408
4540
|
attributeSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttributeSetList!
|
|
4409
4541
|
|
|
4410
|
-
"""To fetch a
|
|
4542
|
+
"""To fetch a AuthProvider"""
|
|
4543
|
+
authProvider(id: String!): AuthProvider
|
|
4544
|
+
|
|
4545
|
+
"""To fetch a AuthProvider"""
|
|
4546
|
+
authProviderTypes: AuthProviderTypeList
|
|
4547
|
+
|
|
4548
|
+
"""To fetch multiple AuthProviders"""
|
|
4549
|
+
authProviders(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AuthProviderList!
|
|
4550
|
+
|
|
4551
|
+
"""To fetch a board"""
|
|
4411
4552
|
board(id: String!): Board!
|
|
4412
4553
|
|
|
4413
4554
|
"""To fetch a Board Model by name"""
|
|
4414
4555
|
boardByName(name: String!): Board
|
|
4415
4556
|
|
|
4557
|
+
"""Board Usage Permissions"""
|
|
4558
|
+
boardPermissions: [String!]!
|
|
4559
|
+
|
|
4416
4560
|
"""To fetch the latest Board published"""
|
|
4417
4561
|
boardPublished(id: String!): BoardHistory!
|
|
4418
4562
|
|
|
@@ -4621,6 +4765,15 @@ type Query {
|
|
|
4621
4765
|
"""To fetch a EntityMetadata"""
|
|
4622
4766
|
entityMetadata(name: String!): EntityMetadata!
|
|
4623
4767
|
|
|
4768
|
+
"""To fetch a Favorite"""
|
|
4769
|
+
favorite(id: String!): Favorite!
|
|
4770
|
+
|
|
4771
|
+
"""To fetch multiple BoardFavorites"""
|
|
4772
|
+
favoriteBoards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardFavoriteList!
|
|
4773
|
+
|
|
4774
|
+
"""To fetch multiple Favorites"""
|
|
4775
|
+
favorites(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FavoriteList!
|
|
4776
|
+
|
|
4624
4777
|
"""To fetch the state of a connection"""
|
|
4625
4778
|
fetchConnectionState(name: String!): ConnectionState!
|
|
4626
4779
|
|
|
@@ -4707,6 +4860,9 @@ type Query {
|
|
|
4707
4860
|
|
|
4708
4861
|
"""To fetch approval lines only for to the user"""
|
|
4709
4862
|
myApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
4863
|
+
|
|
4864
|
+
"""To fetch current user's Favorites"""
|
|
4865
|
+
myFavorites: [Favorite!]!
|
|
4710
4866
|
myLoginHistories(limit: Float!): [LoginHistory!]!
|
|
4711
4867
|
|
|
4712
4868
|
"""To fetch my notifications"""
|
|
@@ -5192,6 +5348,7 @@ type User {
|
|
|
5192
5348
|
updatedAt: DateTimeISO
|
|
5193
5349
|
updater: User
|
|
5194
5350
|
userType: String
|
|
5351
|
+
usersAuthProviders: [UsersAuthProviders!]
|
|
5195
5352
|
}
|
|
5196
5353
|
|
|
5197
5354
|
type UserList {
|
|
@@ -5219,6 +5376,17 @@ type UserRole {
|
|
|
5219
5376
|
name: String
|
|
5220
5377
|
}
|
|
5221
5378
|
|
|
5379
|
+
"""Entity for UsersAuthProviders"""
|
|
5380
|
+
type UsersAuthProviders {
|
|
5381
|
+
authProvider: AuthProvider
|
|
5382
|
+
createdAt: DateTimeISO
|
|
5383
|
+
domain: Domain
|
|
5384
|
+
id: ID!
|
|
5385
|
+
ssoId: String
|
|
5386
|
+
updatedAt: DateTimeISO
|
|
5387
|
+
user: User
|
|
5388
|
+
}
|
|
5389
|
+
|
|
5222
5390
|
"""Entity for WorkShift"""
|
|
5223
5391
|
type WorkShift {
|
|
5224
5392
|
createdAt: DateTimeISO
|