@hiliosai/sdk 0.2.3 → 0.2.4

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +0 -3
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -686,9 +686,6 @@ interface ServiceSchema<TSettings = unknown, TDatasources = unknown> extends Omi
686
686
  hooks?: ServiceHooks;
687
687
  dependencies?: string | string[];
688
688
  metadata?: Record<string, any>;
689
- created?: (this: ServiceSchema$1<TSettings>) => void | Promise<void>;
690
- started?: (this: ServiceSchema$1<TSettings>) => void | Promise<void>;
691
- stopped?: (this: ServiceSchema$1<TSettings>) => void | Promise<void>;
692
689
  }
693
690
  type ServiceConfig<TSettings = unknown, TDatasourceConstructors extends DatasourceConstructorRegistry = DatasourceConstructorRegistry> = ServiceSchema<TSettings, DatasourceInstanceTypes<TDatasourceConstructors>> & {
694
691
  datasources: TDatasourceConstructors;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiliosai/sdk",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
6
  "main": "./dist/index.js",