@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 CHANGED
@@ -8,7 +8,6 @@
8
8
  - webServer
9
9
  - tools
10
10
  config:
11
- runtimeEnvironment: development
12
11
  legacyDatabaseEnvironment: production
13
12
  maxPromptChars: 16384
14
13
  listPushIntervalSeconds: 30
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcrays/scheduled-task",
3
- "version": "0.1.4",
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>;