neoagent 3.2.0 → 3.2.1-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.
@@ -1021,7 +1021,7 @@ function interruptStaleAgentRuns(reason = STALE_RUN_INTERRUPTED_ERROR) {
1021
1021
  const staleRunIds = db.prepare(
1022
1022
  `SELECT id
1023
1023
  FROM agent_runs
1024
- WHERE status = 'running'`
1024
+ WHERE status IN ('running', 'pausing', 'paused', 'resuming')`
1025
1025
  ).all().map((row) => row.id);
1026
1026
  const runsResult = db.prepare(
1027
1027
  `UPDATE agent_runs
@@ -1029,7 +1029,7 @@ function interruptStaleAgentRuns(reason = STALE_RUN_INTERRUPTED_ERROR) {
1029
1029
  error = COALESCE(NULLIF(error, ''), ?),
1030
1030
  updated_at = datetime('now'),
1031
1031
  completed_at = COALESCE(completed_at, datetime('now'))
1032
- WHERE status = 'running'`
1032
+ WHERE status IN ('running', 'pausing', 'paused', 'resuming')`
1033
1033
  ).run(normalizedReason);
1034
1034
 
1035
1035
  db.prepare(
@@ -1 +1 @@
1
- bf2c334d1372c0a0b756a03d240a0730
1
+ 93bc60f11ff8c552f052d374db0c2c06
@@ -33,10 +33,10 @@ addEventListener("message", eventListener);
33
33
  if (!window._flutter) {
34
34
  window._flutter = {};
35
35
  }
36
- _flutter.buildConfig = {"engineRevision":"83675ed27633283e7fc296c8bca22e841224c096","builds":[{"compileTarget":"dart2js","renderer":"canvaskit","mainJsPath":"main.dart.js"},{}]};
36
+ _flutter.buildConfig = {"engineRevision":"69c8c61792f04cc809dfef0c910414fb9afc06cd","builds":[{"compileTarget":"dart2js","renderer":"canvaskit","mainJsPath":"main.dart.js"},{}]};
37
37
 
38
38
  _flutter.loader.load({
39
39
  serviceWorkerSettings: {
40
- serviceWorkerVersion: "3308741081" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
40
+ serviceWorkerVersion: "1664863442" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
41
41
  }
42
42
  });