@things-factory/operato-board 6.2.51 → 6.2.54

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-board",
3
- "version": "6.2.51",
3
+ "version": "6.2.54",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -88,41 +88,41 @@
88
88
  "@operato/shell": "^1.0.1",
89
89
  "@operato/styles": "^1.0.0",
90
90
  "@operato/utils": "^1.0.1",
91
- "@things-factory/apptool-ui": "^6.2.51",
92
- "@things-factory/auth-azure-ad": "^6.2.51",
93
- "@things-factory/auth-google": "^6.2.51",
94
- "@things-factory/auth-ui": "^6.2.51",
95
- "@things-factory/board-service": "^6.2.51",
96
- "@things-factory/board-ui": "^6.2.51",
97
- "@things-factory/context-ui": "^6.2.51",
98
- "@things-factory/export-ui": "^6.2.51",
99
- "@things-factory/fav-base": "^6.2.51",
100
- "@things-factory/font-base": "^6.2.51",
91
+ "@things-factory/apptool-ui": "^6.2.54",
92
+ "@things-factory/auth-azure-ad": "^6.2.54",
93
+ "@things-factory/auth-google": "^6.2.54",
94
+ "@things-factory/auth-ui": "^6.2.54",
95
+ "@things-factory/board-service": "^6.2.54",
96
+ "@things-factory/board-ui": "^6.2.54",
97
+ "@things-factory/context-ui": "^6.2.52",
98
+ "@things-factory/export-ui": "^6.2.52",
99
+ "@things-factory/fav-base": "^6.2.54",
100
+ "@things-factory/font-base": "^6.2.54",
101
101
  "@things-factory/form-ui": "^6.2.33",
102
- "@things-factory/help": "^6.2.51",
103
- "@things-factory/i18n-base": "^6.2.51",
104
- "@things-factory/import-ui": "^6.2.51",
105
- "@things-factory/integration-base": "^6.2.51",
106
- "@things-factory/integration-msgraph": "^6.2.51",
107
- "@things-factory/integration-notification": "^6.2.51",
108
- "@things-factory/integration-openai": "^6.2.51",
109
- "@things-factory/integration-ui": "^6.2.51",
110
- "@things-factory/more-ui": "^6.2.51",
111
- "@things-factory/notification": "^6.2.51",
112
- "@things-factory/oauth2-client": "^6.2.51",
113
- "@things-factory/offline-ui": "^6.2.51",
102
+ "@things-factory/help": "^6.2.52",
103
+ "@things-factory/i18n-base": "^6.2.52",
104
+ "@things-factory/import-ui": "^6.2.52",
105
+ "@things-factory/integration-base": "^6.2.54",
106
+ "@things-factory/integration-msgraph": "^6.2.54",
107
+ "@things-factory/integration-notification": "^6.2.54",
108
+ "@things-factory/integration-openai": "^6.2.54",
109
+ "@things-factory/integration-ui": "^6.2.54",
110
+ "@things-factory/more-ui": "^6.2.52",
111
+ "@things-factory/notification": "^6.2.54",
112
+ "@things-factory/oauth2-client": "^6.2.54",
113
+ "@things-factory/offline-ui": "^6.2.52",
114
114
  "@things-factory/pdf": "^6.2.48",
115
- "@things-factory/print-service": "^6.2.51",
116
- "@things-factory/print-ui": "^6.2.51",
117
- "@things-factory/resource-ui": "^6.2.51",
115
+ "@things-factory/print-service": "^6.2.52",
116
+ "@things-factory/print-ui": "^6.2.54",
117
+ "@things-factory/resource-ui": "^6.2.54",
118
118
  "@things-factory/scene-google-map": "^6.2.33",
119
- "@things-factory/setting-ui": "^6.2.51",
120
- "@things-factory/shell": "^6.2.51",
121
- "@things-factory/system": "^6.2.51"
119
+ "@things-factory/setting-ui": "^6.2.54",
120
+ "@things-factory/shell": "^6.2.52",
121
+ "@things-factory/system": "^6.2.52"
122
122
  },
123
123
  "devDependencies": {
124
- "@things-factory/board-test": "^6.2.51",
124
+ "@things-factory/board-test": "^6.2.54",
125
125
  "@things-factory/builder": "^6.2.33"
126
126
  },
127
- "gitHead": "365e8ae6475eede1a4fd51460c24569d13de14b6"
127
+ "gitHead": "db6b9a9109a090c4dd705058949fce624f15b0ef"
128
128
  }
package/schema.graphql CHANGED
@@ -3105,6 +3105,7 @@ type Privilege {
3105
3105
  description: String
3106
3106
  id: ID!
3107
3107
  name: String!
3108
+ privilege: String!
3108
3109
  roles: [Role!]
3109
3110
  updatedAt: DateTimeISO
3110
3111
  updater: User
@@ -3114,7 +3115,6 @@ input PrivilegeInput {
3114
3115
  category: String
3115
3116
  owner: Boolean
3116
3117
  privilege: String
3117
- protected: Boolean
3118
3118
  super: Boolean
3119
3119
  }
3120
3120
 
@@ -3127,7 +3127,6 @@ type PrivilegeObject {
3127
3127
  category: String
3128
3128
  owner: Boolean
3129
3129
  privilege: String
3130
- protected: Boolean
3131
3130
  super: Boolean
3132
3131
  }
3133
3132
 
@@ -3216,9 +3215,6 @@ type Query {
3216
3215
  """To fetch a Board Model by name"""
3217
3216
  boardByName(name: String!): Board
3218
3217
 
3219
- """Board Usage Permissions"""
3220
- boardPermissions: [String!]!
3221
-
3222
3218
  """To fetch the latest Board published"""
3223
3219
  boardPublished(id: String!): BoardHistory!
3224
3220
 
@@ -3308,7 +3304,7 @@ type Query {
3308
3304
  domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
3309
3305
 
3310
3306
  """To fetch domains with given privilege for user"""
3311
- domainsWithPrivilege(category: String!, name: String!): [Domain!]!
3307
+ domainsWithPrivilege(category: String!, privilege: String!): [Domain!]!
3312
3308
 
3313
3309
  """To fetch a Employee"""
3314
3310
  employee(id: String!): Employee
@@ -3358,7 +3354,7 @@ type Query {
3358
3354
  groups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): GroupList!
3359
3355
 
3360
3356
  """To query whether I have the given permission"""
3361
- hasPrivilege(category: String!, name: String!): Boolean!
3357
+ hasPrivilege(category: String!, privilege: String!): Boolean!
3362
3358
  i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
3363
3359
  imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
3364
3360
 
@@ -3474,9 +3470,6 @@ type Query {
3474
3470
  """To fetch multiple PrinterDevices"""
3475
3471
  printerDevices(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrinterDeviceList!
3476
3472
 
3477
- """To fetch privilege"""
3478
- privilege(category: String!, name: String!): Privilege!
3479
-
3480
3473
  """To fetch multiple privileges"""
3481
3474
  privileges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
3482
3475