@kemu-io/hs 0.5.2 → 0.5.3

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/cjs/service.d.ts CHANGED
@@ -500,7 +500,7 @@ export type PrivateMethods = {
500
500
  */
501
501
  getEdgeApiKey: () => Promise<string | undefined>;
502
502
  };
503
- export type InternalServiceInstance = KemuService<WidgetState> & PrivateMethods;
503
+ export type InternalServiceInstance<T extends WidgetState = WidgetState> = KemuService<T> & PrivateMethods;
504
504
  declare const _default: KemuServiceConstructor;
505
505
 
506
506
  export {
package/mjs/service.d.ts CHANGED
@@ -500,7 +500,7 @@ export type PrivateMethods = {
500
500
  */
501
501
  getEdgeApiKey: () => Promise<string | undefined>;
502
502
  };
503
- export type InternalServiceInstance = KemuService<WidgetState> & PrivateMethods;
503
+ export type InternalServiceInstance<T extends WidgetState = WidgetState> = KemuService<T> & PrivateMethods;
504
504
  declare const _default: KemuServiceConstructor;
505
505
 
506
506
  export {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kemu-io/hs",
3
3
  "type": "module",
4
- "version": "0.5.2",
4
+ "version": "0.5.3",
5
5
  "description": "Kemu Hub Service - NodeJs library for creating Kemu Services",
6
6
  "author": "Kemu Pty Ltd",
7
7
  "main": "service.js",