@things-factory/operato-gangsters 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-gangsters",
3
- "version": "6.2.0",
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",
@@ -61,7 +62,7 @@
61
62
  "@operato/scene-timer": "^1.0.0",
62
63
  "@things-factory/api": "^6.2.0",
63
64
  "@things-factory/apptool-ui": "^6.2.0",
64
- "@things-factory/auth-ui": "^6.2.0",
65
+ "@things-factory/auth-ui": "^6.2.1",
65
66
  "@things-factory/board-service": "^6.2.0",
66
67
  "@things-factory/board-ui": "^6.2.0",
67
68
  "@things-factory/context-ui": "^6.2.0",
@@ -73,11 +74,11 @@
73
74
  "@things-factory/integration-ui": "^6.2.0",
74
75
  "@things-factory/lite-menu": "^6.2.0",
75
76
  "@things-factory/more-ui": "^6.2.0",
76
- "@things-factory/notification": "^6.2.0",
77
+ "@things-factory/notification": "^6.2.1",
77
78
  "@things-factory/oauth2-client": "^6.2.0",
78
79
  "@things-factory/organization": "^6.2.0",
79
80
  "@things-factory/print-ui": "^6.2.0",
80
- "@things-factory/resource-ui": "^6.2.0",
81
+ "@things-factory/resource-ui": "^6.2.1",
81
82
  "@things-factory/setting-base": "^6.2.0",
82
83
  "@things-factory/setting-ui": "^6.2.0",
83
84
  "@things-factory/shell": "^6.2.0",
@@ -85,7 +86,7 @@
85
86
  "@things-factory/worklist": "^6.2.0"
86
87
  },
87
88
  "devDependencies": {
88
- "@things-factory/builder": "^6.2.0"
89
+ "@things-factory/builder": "^6.2.2"
89
90
  },
90
- "gitHead": "2a98db1ae602fa3b2c73ffbcdd1cf3262a793d84"
91
+ "gitHead": "6876e3c31d769ea706cf587b5cba2d7b10607618"
91
92
  }
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
@@ -1339,6 +1420,23 @@ type EntityRelationMetadata {
1339
1420
  relationType: Boolean
1340
1421
  }
1341
1422
 
1423
+ """Entity for Favorite"""
1424
+ type Favorite {
1425
+ createdAt: DateTimeISO
1426
+ creator: User
1427
+ domain: Domain!
1428
+ id: ID!
1429
+ routing: String!
1430
+ updatedAt: DateTimeISO
1431
+ updater: User
1432
+ user: User!
1433
+ }
1434
+
1435
+ type FavoriteList {
1436
+ items: [Favorite!]!
1437
+ total: Int!
1438
+ }
1439
+
1342
1440
  input Filter {
1343
1441
  name: String!
1344
1442
  operator: String!
@@ -1952,6 +2050,9 @@ type Mutation {
1952
2050
  """To create new AttributeSet"""
1953
2051
  createAttributeSet(attribute: NewAttributeSet!): AttributeSet!
1954
2052
 
2053
+ """To create new AuthProvider"""
2054
+ createAuthProvider(authProvider: NewAuthProvider!): AuthProvider!
2055
+
1955
2056
  """To create new Board"""
1956
2057
  createBoard(board: NewBoard!): Board!
1957
2058
 
@@ -1985,6 +2086,9 @@ type Mutation {
1985
2086
  """To create new EntityColumn"""
1986
2087
  createEntityColumn(entityColumn: NewEntityColumn!): EntityColumn!
1987
2088
 
2089
+ """To create new Favorite"""
2090
+ createFavorite(favorite: NewFavorite!): Favorite!
2091
+
1988
2092
  """To create new Font"""
1989
2093
  createFont(font: NewFont!): Font!
1990
2094
 
@@ -2096,6 +2200,10 @@ type Mutation {
2096
2200
  """To delete multiple AttributeSets"""
2097
2201
  deleteAttributeSets(ids: [String!]!): Boolean!
2098
2202
 
2203
+ """To delete AuthProvider"""
2204
+ deleteAuthProvider(id: String!): Boolean!
2205
+ deleteAuthProviders(ids: [String!]!): Boolean!
2206
+
2099
2207
  """To delete Board"""
2100
2208
  deleteBoard(id: String!): Boolean!
2101
2209
 
@@ -2165,6 +2273,9 @@ type Mutation {
2165
2273
  """To delete multiple EntityColumns"""
2166
2274
  deleteEntityColumns(ids: [String!]!): Boolean!
2167
2275
 
2276
+ """To delete Favorite"""
2277
+ deleteFavorite(routing: String!): Boolean!
2278
+
2168
2279
  """To delete Font"""
2169
2280
  deleteFont(id: String!): Boolean!
2170
2281
 
@@ -2471,6 +2582,9 @@ type Mutation {
2471
2582
  """To submit a ActivityThread"""
2472
2583
  submitActivityThread(id: String!, output: Object, reason: String): ActivityThread!
2473
2584
 
2585
+ """To synchronize auth-providers users"""
2586
+ synchronizeAuthProviderUsers(id: String!): Boolean!
2587
+
2474
2588
  """
2475
2589
  To synchronize privilege master from graphql directives. Only superuser is permitted.
2476
2590
  """
@@ -2498,6 +2612,9 @@ type Mutation {
2498
2612
  """To modify AttributeSet information"""
2499
2613
  updateAttributeSet(id: String!, patch: AttributeSetPatch!): AttributeSet!
2500
2614
 
2615
+ """To modify AuthProvider information"""
2616
+ updateAuthProvider(id: String!, patch: AuthProviderPatch!): AuthProvider!
2617
+
2501
2618
  """To modify Board information"""
2502
2619
  updateBoard(id: String!, patch: BoardPatch!): Board!
2503
2620
 
@@ -2522,7 +2639,7 @@ type Mutation {
2522
2639
  """To update domain (Only superuser is granted this privilege.)"""
2523
2640
  updateDomain(name: String!, patch: DomainPatch!): Domain!
2524
2641
 
2525
- """To update multiple domains (Only superuser is granted this privilege.)"""
2642
+ """To update multiple domains"""
2526
2643
  updateDomains(patches: [DomainPatch!]!): Boolean!
2527
2644
 
2528
2645
  """To modify Employee information"""
@@ -2572,6 +2689,7 @@ type Mutation {
2572
2689
 
2573
2690
  """To modify multiple AttributeSets' information"""
2574
2691
  updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
2692
+ updateMultipleAuthProvider(patches: [AuthProviderPatch!]!): [AuthProvider!]!
2575
2693
 
2576
2694
  """To modify multiple CommonCodes' information"""
2577
2695
  updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
@@ -2778,6 +2896,16 @@ input NewAttributeSet {
2778
2896
  items: [AttributeSetItemPatch!]
2779
2897
  }
2780
2898
 
2899
+ input NewAuthProvider {
2900
+ active: Boolean
2901
+ clientId: String
2902
+ clientSecret: String
2903
+ params: Object
2904
+ privateKey: String
2905
+ tenantId: String
2906
+ type: String!
2907
+ }
2908
+
2781
2909
  input NewBoard {
2782
2910
  description: String
2783
2911
  groupId: String
@@ -2915,6 +3043,10 @@ input NewEntityColumn {
2915
3043
  virtualField: Boolean
2916
3044
  }
2917
3045
 
3046
+ input NewFavorite {
3047
+ routing: String!
3048
+ }
3049
+
2918
3050
  input NewFont {
2919
3051
  active: Boolean
2920
3052
  files: [Upload!]
@@ -3739,12 +3871,24 @@ type Query {
3739
3871
  """To fetch multiple AttributeSets"""
3740
3872
  attributeSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttributeSetList!
3741
3873
 
3742
- """To fetch a Board"""
3874
+ """To fetch a AuthProvider"""
3875
+ authProvider(id: String!): AuthProvider
3876
+
3877
+ """To fetch a AuthProvider"""
3878
+ authProviderTypes: AuthProviderTypeList
3879
+
3880
+ """To fetch multiple AuthProviders"""
3881
+ authProviders(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AuthProviderList!
3882
+
3883
+ """To fetch a board"""
3743
3884
  board(id: String!): Board!
3744
3885
 
3745
3886
  """To fetch a Board Model by name"""
3746
3887
  boardByName(name: String!): Board
3747
3888
 
3889
+ """Board Usage Permissions"""
3890
+ boardPermissions: [String!]!
3891
+
3748
3892
  """To fetch the latest Board published"""
3749
3893
  boardPublished(id: String!): BoardHistory!
3750
3894
 
@@ -3869,6 +4013,15 @@ type Query {
3869
4013
  """To fetch a EntityMetadata"""
3870
4014
  entityMetadata(name: String!): EntityMetadata!
3871
4015
 
4016
+ """To fetch a Favorite"""
4017
+ favorite(id: String!): Favorite!
4018
+
4019
+ """To fetch multiple BoardFavorites"""
4020
+ favoriteBoards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardFavoriteList!
4021
+
4022
+ """To fetch multiple Favorites"""
4023
+ favorites(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FavoriteList!
4024
+
3872
4025
  """To fetch the state of a connection"""
3873
4026
  fetchConnectionState(name: String!): ConnectionState!
3874
4027
 
@@ -3952,6 +4105,9 @@ type Query {
3952
4105
 
3953
4106
  """To fetch approval lines only for to the user"""
3954
4107
  myApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
4108
+
4109
+ """To fetch current user's Favorites"""
4110
+ myFavorites: [Favorite!]!
3955
4111
  myLoginHistories(limit: Float!): [LoginHistory!]!
3956
4112
 
3957
4113
  """To fetch my notifications"""
@@ -4430,6 +4586,7 @@ type User {
4430
4586
  updatedAt: DateTimeISO
4431
4587
  updater: User
4432
4588
  userType: String
4589
+ usersAuthProviders: [UsersAuthProviders!]
4433
4590
  }
4434
4591
 
4435
4592
  type UserList {
@@ -4457,6 +4614,17 @@ type UserRole {
4457
4614
  name: String
4458
4615
  }
4459
4616
 
4617
+ """Entity for UsersAuthProviders"""
4618
+ type UsersAuthProviders {
4619
+ authProvider: AuthProvider
4620
+ createdAt: DateTimeISO
4621
+ domain: Domain
4622
+ id: ID!
4623
+ ssoId: String
4624
+ updatedAt: DateTimeISO
4625
+ user: User
4626
+ }
4627
+
4460
4628
  input i18nCompletionInput {
4461
4629
  json: String!
4462
4630
  }