@loopstack/hub-client 0.10.0 → 0.10.1

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @loopstack/hub-client
2
2
 
3
+ ## 0.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Add local dev mode
8
+
3
9
  ## 0.10.0
4
10
 
5
11
  ### Minor Changes
package/api.ts CHANGED
@@ -228,6 +228,12 @@ export interface UserDto {
228
228
  * @memberof UserDto
229
229
  */
230
230
  'roles': Array<string>;
231
+ /**
232
+ * Whether the user has access
233
+ * @type {boolean}
234
+ * @memberof UserDto
235
+ */
236
+ 'hasAccess': boolean;
231
237
  /**
232
238
  * User settings and preferences
233
239
  * @type {UserSettingsDto}
package/dist/api.d.ts CHANGED
@@ -215,6 +215,12 @@ export interface UserDto {
215
215
  * @memberof UserDto
216
216
  */
217
217
  'roles': Array<string>;
218
+ /**
219
+ * Whether the user has access
220
+ * @type {boolean}
221
+ * @memberof UserDto
222
+ */
223
+ 'hasAccess': boolean;
218
224
  /**
219
225
  * User settings and preferences
220
226
  * @type {UserSettingsDto}
package/dist/esm/api.d.ts CHANGED
@@ -215,6 +215,12 @@ export interface UserDto {
215
215
  * @memberof UserDto
216
216
  */
217
217
  'roles': Array<string>;
218
+ /**
219
+ * Whether the user has access
220
+ * @type {boolean}
221
+ * @memberof UserDto
222
+ */
223
+ 'hasAccess': boolean;
218
224
  /**
219
225
  * User settings and preferences
220
226
  * @type {UserSettingsDto}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loopstack/hub-client",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "OpenAPI client for @loopstack/hub-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {