@digipair/skill-cron 0.112.3 → 0.113.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/index.cjs.js +1 -1
- package/index.esm.js +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -10450,7 +10450,7 @@ let CronService = class CronService {
|
|
|
10450
10450
|
continue;
|
|
10451
10451
|
}
|
|
10452
10452
|
const job = new dist.CronJob(plan.time, async ()=>{
|
|
10453
|
-
await this.startTask(path, plan.digipair, plan.reasoning);
|
|
10453
|
+
await this.startTask(path, plan.digipair, plan.reasoning, plan.time, plan.id);
|
|
10454
10454
|
}, null, !!plan.enabled, utcOffset);
|
|
10455
10455
|
if (this.jobs[plan.id]) {
|
|
10456
10456
|
this.jobs[plan.id].stop();
|
package/index.esm.js
CHANGED
|
@@ -10442,7 +10442,7 @@ let CronService = class CronService {
|
|
|
10442
10442
|
continue;
|
|
10443
10443
|
}
|
|
10444
10444
|
const job = new dist.CronJob(plan.time, async ()=>{
|
|
10445
|
-
await this.startTask(path, plan.digipair, plan.reasoning);
|
|
10445
|
+
await this.startTask(path, plan.digipair, plan.reasoning, plan.time, plan.id);
|
|
10446
10446
|
}, null, !!plan.enabled, utcOffset);
|
|
10447
10447
|
if (this.jobs[plan.id]) {
|
|
10448
10448
|
this.jobs[plan.id].stop();
|