@loopstack/hub-client 0.10.1 → 0.11.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,10 +1,16 @@
1
1
  # @loopstack/hub-client
2
2
 
3
- ## 0.10.1
3
+ ## 0.11.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - Add local dev mode
7
+ - fb1600e: Various fixes and improvements
8
+
9
+ ## 0.11.0
10
+
11
+ ### Minor Changes
12
+
13
+ - f1db120: Implement Block Wrapper for Typescript services
8
14
 
9
15
  ## 0.10.0
10
16
 
package/api.ts CHANGED
@@ -253,11 +253,11 @@ export interface UserDto {
253
253
  */
254
254
  'updatedAt': string;
255
255
  /**
256
- *
257
- * @type {Array<Array<WorkerItemDto>>}
256
+ * Associated workers of this user
257
+ * @type {Array<WorkerItemDto>}
258
258
  * @memberof UserDto
259
259
  */
260
- 'workers': Array<Array<WorkerItemDto>>;
260
+ 'workers': Array<WorkerItemDto>;
261
261
  }
262
262
  /**
263
263
  *
package/dist/api.d.ts CHANGED
@@ -240,11 +240,11 @@ export interface UserDto {
240
240
  */
241
241
  'updatedAt': string;
242
242
  /**
243
- *
244
- * @type {Array<Array<WorkerItemDto>>}
243
+ * Associated workers of this user
244
+ * @type {Array<WorkerItemDto>}
245
245
  * @memberof UserDto
246
246
  */
247
- 'workers': Array<Array<WorkerItemDto>>;
247
+ 'workers': Array<WorkerItemDto>;
248
248
  }
249
249
  /**
250
250
  *
package/dist/esm/api.d.ts CHANGED
@@ -240,11 +240,11 @@ export interface UserDto {
240
240
  */
241
241
  'updatedAt': string;
242
242
  /**
243
- *
244
- * @type {Array<Array<WorkerItemDto>>}
243
+ * Associated workers of this user
244
+ * @type {Array<WorkerItemDto>}
245
245
  * @memberof UserDto
246
246
  */
247
- 'workers': Array<Array<WorkerItemDto>>;
247
+ 'workers': Array<WorkerItemDto>;
248
248
  }
249
249
  /**
250
250
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loopstack/hub-client",
3
- "version": "0.10.1",
3
+ "version": "0.11.1",
4
4
  "description": "OpenAPI client for @loopstack/hub-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {