@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.
- package/dist/index.d.ts +0 -3
- 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;
|