@loopstack/hub-client 0.10.0 → 0.11.0

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.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - f1db120: Implement Block Wrapper for Typescript services
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}
@@ -247,11 +253,11 @@ export interface UserDto {
247
253
  */
248
254
  'updatedAt': string;
249
255
  /**
250
- *
251
- * @type {Array<Array<WorkerItemDto>>}
256
+ * Associated workers of this user
257
+ * @type {Array<WorkerItemDto>}
252
258
  * @memberof UserDto
253
259
  */
254
- 'workers': Array<Array<WorkerItemDto>>;
260
+ 'workers': Array<WorkerItemDto>;
255
261
  }
256
262
  /**
257
263
  *
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}
@@ -234,11 +240,11 @@ export interface UserDto {
234
240
  */
235
241
  'updatedAt': string;
236
242
  /**
237
- *
238
- * @type {Array<Array<WorkerItemDto>>}
243
+ * Associated workers of this user
244
+ * @type {Array<WorkerItemDto>}
239
245
  * @memberof UserDto
240
246
  */
241
- 'workers': Array<Array<WorkerItemDto>>;
247
+ 'workers': Array<WorkerItemDto>;
242
248
  }
243
249
  /**
244
250
  *
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}
@@ -234,11 +240,11 @@ export interface UserDto {
234
240
  */
235
241
  'updatedAt': string;
236
242
  /**
237
- *
238
- * @type {Array<Array<WorkerItemDto>>}
243
+ * Associated workers of this user
244
+ * @type {Array<WorkerItemDto>}
239
245
  * @memberof UserDto
240
246
  */
241
- 'workers': Array<Array<WorkerItemDto>>;
247
+ 'workers': Array<WorkerItemDto>;
242
248
  }
243
249
  /**
244
250
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loopstack/hub-client",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "description": "OpenAPI client for @loopstack/hub-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {