@evident-ai/cli 3.4.1-dev.aa71e9a → 3.4.1-dev.bcdc457

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/dist/index.js CHANGED
@@ -1537,6 +1537,12 @@ function buildSessionDbRecoveryActivity(record) {
1537
1537
  metadata: withoutContractFields(record),
1538
1538
  message: "This runner started with a fresh session database because it could not verify where its session history is backed up. Nothing in the backup was changed; check the runner backup configuration and permissions."
1539
1539
  };
1540
+ case "session_db_boot_refused":
1541
+ return {
1542
+ level,
1543
+ metadata: withoutContractFields(record),
1544
+ message: `This runner did not come online because its damaged session database could not be safely separated from its active backup or proven removed. Backed-up session history remains readable at ${record.quarantine_destination ?? "its original location or the quarantine destination named in the boot logs"}; any local session-database files that remain were left in place and nothing opened or wrote them. See the runner boot logs for SESSION-DB-LOCAL-DISCARD-FAILED details.`
1545
+ };
1540
1546
  default:
1541
1547
  return null;
1542
1548
  }
@@ -1550,7 +1556,8 @@ var OUTCOMES = /* @__PURE__ */ new Set([
1550
1556
  "restore_retried",
1551
1557
  "fresh_session_db",
1552
1558
  "history_rolled_back",
1553
- "restore_misconfigured"
1559
+ "restore_misconfigured",
1560
+ "session_db_boot_refused"
1554
1561
  ]);
1555
1562
  var STAGES = /* @__PURE__ */ new Set(["restore", "verify"]);
1556
1563
  var SEVERITIES = /* @__PURE__ */ new Set(["warning", "error"]);