@digipair/skill-factory 0.89.0 → 0.91.0-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/.swcrc +28 -0
- package/README.md +7 -0
- package/eslint.config.mjs +22 -0
- package/package.json +23 -7
- package/rollup.config.cjs +28 -0
- package/src/handlebars.d.ts +1 -0
- package/src/lib/skill-factory.spec.ts +7 -0
- package/src/lib/skill-factory.ts +85 -0
- package/tsconfig.json +13 -0
- package/tsconfig.lib.json +19 -0
- package/index.cjs.d.ts +0 -1
- package/index.cjs.js +0 -69
- package/index.esm.js +0 -28038
- package/libs/skill-factory/src/lib/skill-factory.d.ts +0 -9
- /package/{index.d.ts → src/index.d.ts} +0 -0
- /package/{libs/skill-factory/src/index.d.ts → src/index.ts} +0 -0
- /package/{schema.fr.json → src/schema.fr.json} +0 -0
- /package/{schema.json → src/schema.json} +0 -0
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { PinsSettings } from '@digipair/engine';
|
|
2
|
-
export declare const initialize: (launcher: Function) => Promise<void>;
|
|
3
|
-
export declare const start: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
4
|
-
export declare const execute: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
5
|
-
export declare const keepAlive: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<void>;
|
|
6
|
-
export declare const stop: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<void>;
|
|
7
|
-
export declare const task: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
8
|
-
export declare const action: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
9
|
-
export declare const trigger: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|