@digipair/skill-cron 0.90.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 +22 -8
- package/rollup.config.cjs +28 -0
- package/src/lib/skill-cron.spec.ts +7 -0
- package/src/lib/skill-cron.ts +235 -0
- package/tsconfig.json +13 -0
- package/tsconfig.lib.json +19 -0
- package/index.cjs.d.ts +0 -1
- package/index.cjs.js +0 -10582
- package/index.esm.js +0 -10568
- package/libs/skill-cron/src/lib/skill-cron.d.ts +0 -16
- /package/{index.d.ts → src/index.d.ts} +0 -0
- /package/{libs/skill-cron/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,16 +0,0 @@
|
|
1
|
-
import { PinsSettings } from '@digipair/engine';
|
2
|
-
export declare const initialize: (launcher: Function) => Promise<void>;
|
3
|
-
export declare const start: (path: string) => Promise<void>;
|
4
|
-
export declare const crons: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any[]>;
|
5
|
-
export declare const addCron: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<{
|
6
|
-
id: string;
|
7
|
-
time: any;
|
8
|
-
digipair: any;
|
9
|
-
reasoning: any;
|
10
|
-
enabled: boolean;
|
11
|
-
}>;
|
12
|
-
export declare const deleteCron: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<{
|
13
|
-
id: any;
|
14
|
-
}>;
|
15
|
-
export declare const enableCron: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
16
|
-
export declare const disableCron: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|