@things-factory/operato-board 6.2.17 → 6.2.20

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.17",
3
+ "version": "6.2.20",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -87,42 +87,42 @@
87
87
  "@operato/shell": "^1.0.1",
88
88
  "@operato/styles": "^1.0.0",
89
89
  "@operato/utils": "^1.0.1",
90
- "@things-factory/apptool-ui": "^6.2.15",
91
- "@things-factory/auth-azure-ad": "^6.2.15",
92
- "@things-factory/auth-google": "^6.2.15",
93
- "@things-factory/auth-ui": "^6.2.15",
94
- "@things-factory/board-service": "^6.2.16",
95
- "@things-factory/board-ui": "^6.2.17",
90
+ "@things-factory/apptool-ui": "^6.2.19",
91
+ "@things-factory/auth-azure-ad": "^6.2.19",
92
+ "@things-factory/auth-google": "^6.2.19",
93
+ "@things-factory/auth-ui": "^6.2.19",
94
+ "@things-factory/board-service": "^6.2.20",
95
+ "@things-factory/board-ui": "^6.2.19",
96
96
  "@things-factory/context-ui": "^6.2.15",
97
97
  "@things-factory/export-ui": "^6.2.15",
98
- "@things-factory/fav-base": "^6.2.15",
99
- "@things-factory/font-base": "^6.2.15",
98
+ "@things-factory/fav-base": "^6.2.19",
99
+ "@things-factory/font-base": "^6.2.19",
100
100
  "@things-factory/form-ui": "^6.2.0",
101
101
  "@things-factory/help": "^6.2.15",
102
102
  "@things-factory/i18n-base": "^6.2.15",
103
103
  "@things-factory/import-ui": "^6.2.15",
104
- "@things-factory/integration-base": "^6.2.15",
105
- "@things-factory/integration-msgraph": "^6.2.15",
106
- "@things-factory/integration-notification": "^6.2.15",
107
- "@things-factory/integration-openai": "^6.2.15",
108
- "@things-factory/integration-ui": "^6.2.15",
104
+ "@things-factory/integration-base": "^6.2.19",
105
+ "@things-factory/integration-msgraph": "^6.2.19",
106
+ "@things-factory/integration-notification": "^6.2.19",
107
+ "@things-factory/integration-openai": "^6.2.19",
108
+ "@things-factory/integration-ui": "^6.2.19",
109
109
  "@things-factory/more-ui": "^6.2.15",
110
- "@things-factory/notification": "^6.2.15",
111
- "@things-factory/oauth2-client": "^6.2.15",
110
+ "@things-factory/notification": "^6.2.19",
111
+ "@things-factory/oauth2-client": "^6.2.19",
112
112
  "@things-factory/offline-ui": "^6.2.15",
113
113
  "@things-factory/operato-license-checker": "^3.1.0",
114
114
  "@things-factory/pdf": "^6.2.0",
115
115
  "@things-factory/print-service": "^6.2.15",
116
- "@things-factory/print-ui": "^6.2.15",
117
- "@things-factory/resource-ui": "^6.2.15",
116
+ "@things-factory/print-ui": "^6.2.19",
117
+ "@things-factory/resource-ui": "^6.2.19",
118
118
  "@things-factory/scene-google-map": "^6.2.0",
119
- "@things-factory/setting-ui": "^6.2.15",
119
+ "@things-factory/setting-ui": "^6.2.19",
120
120
  "@things-factory/shell": "^6.2.15",
121
121
  "@things-factory/system-ui": "^6.2.15"
122
122
  },
123
123
  "devDependencies": {
124
- "@things-factory/board-test": "^6.2.16",
124
+ "@things-factory/board-test": "^6.2.20",
125
125
  "@things-factory/builder": "^6.2.2"
126
126
  },
127
- "gitHead": "697d8559b48297b0206f449f2d18108f485e0ca5"
127
+ "gitHead": "ae266d40ea265fcc96e53e5264ed17d1b9a7185f"
128
128
  }
package/schema.graphql CHANGED
@@ -2636,6 +2636,7 @@ input NewScenario {
2636
2636
  active: Boolean
2637
2637
  description: String
2638
2638
  name: String!
2639
+ privilege: PrivilegeInput
2639
2640
  schedule: String
2640
2641
  timezone: String
2641
2642
  type: String
@@ -3074,11 +3075,25 @@ type Privilege {
3074
3075
  updater: User
3075
3076
  }
3076
3077
 
3078
+ input PrivilegeInput {
3079
+ category: String
3080
+ owner: Boolean
3081
+ privilege: String
3082
+ super: Boolean
3083
+ }
3084
+
3077
3085
  type PrivilegeList {
3078
3086
  items: [Privilege!]
3079
3087
  total: Int
3080
3088
  }
3081
3089
 
3090
+ type PrivilegeObject {
3091
+ category: String
3092
+ owner: Boolean
3093
+ privilege: String
3094
+ super: Boolean
3095
+ }
3096
+
3082
3097
  input PrivilegePatch {
3083
3098
  category: String
3084
3099
  description: String
@@ -3552,6 +3567,7 @@ type Scenario {
3552
3567
  id: ID!
3553
3568
  instances: [ScenarioInstance!]
3554
3569
  name: String!
3570
+ privilege: PrivilegeObject
3555
3571
 
3556
3572
  """accessible and executable system-wide"""
3557
3573
  public: Boolean
@@ -3625,6 +3641,7 @@ input ScenarioPatch {
3625
3641
  description: String
3626
3642
  id: ID
3627
3643
  name: String
3644
+ privilege: PrivilegeInput
3628
3645
  schedule: String
3629
3646
  steps: [StepPatch!]
3630
3647
  timezone: String