@dcrays/scheduled-task 0.1.4 → 0.1.6-beta.1
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/cordis.patch.yml +0 -1
- package/package.json +2 -2
- package/plugin/index.d.ts +1 -1
- package/plugin/index.js +344 -89
- package/src/cron.js +3 -1
- package/src/manager.d.ts +14 -0
- package/src/manager.js +166 -64
- package/src/openclaw-sqlite.d.ts +2 -0
- package/src/openclaw-sqlite.js +3 -3
- package/src/output.d.ts +2 -0
- package/src/output.js +26 -0
- package/src/repository.d.ts +3 -0
- package/src/repository.js +28 -0
- package/src/runtime-environment.d.ts +15 -2
- package/src/runtime-environment.js +117 -7
package/cordis.patch.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcrays/scheduled-task",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6-beta.1",
|
|
4
4
|
"description": "Persistent client-facing cron automation service for DeepSeek Harness",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "plugin/index.js",
|
|
@@ -44,4 +44,4 @@
|
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
}
|
|
47
|
-
}
|
|
47
|
+
}
|
package/plugin/index.d.ts
CHANGED
|
@@ -9,7 +9,6 @@ export declare const inject: string[];
|
|
|
9
9
|
export interface Config {
|
|
10
10
|
databaseFile?: string;
|
|
11
11
|
openclawSqlite?: string;
|
|
12
|
-
runtimeEnvironment?: string;
|
|
13
12
|
legacyDatabaseEnvironment?: string;
|
|
14
13
|
maxPromptChars: number;
|
|
15
14
|
listPushIntervalSeconds: number;
|
|
@@ -47,6 +46,7 @@ export declare class CronAutomationService extends Service {
|
|
|
47
46
|
private pendingPushReason;
|
|
48
47
|
private pushQueued;
|
|
49
48
|
private stopping;
|
|
49
|
+
private readonly recordedEnvironment;
|
|
50
50
|
private readonly runtimeEnvironment;
|
|
51
51
|
constructor(owner: Context, config: Config);
|
|
52
52
|
start(): Promise<void>;
|