@signetai/signet-memory-openclaw 0.150.5 → 0.151.0
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 +26 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10134,6 +10134,24 @@ function up87(db) {
|
|
|
10134
10134
|
ON summary_jobs(agent_id, session_key, boundary_reason)
|
|
10135
10135
|
`);
|
|
10136
10136
|
}
|
|
10137
|
+
function up88(db) {
|
|
10138
|
+
db.exec(`
|
|
10139
|
+
CREATE TABLE IF NOT EXISTS transcript_recovery_files (
|
|
10140
|
+
agent_id TEXT NOT NULL,
|
|
10141
|
+
source_path TEXT NOT NULL,
|
|
10142
|
+
harness TEXT NOT NULL,
|
|
10143
|
+
size_bytes INTEGER NOT NULL,
|
|
10144
|
+
mtime_ms INTEGER NOT NULL,
|
|
10145
|
+
content_sha256 TEXT NOT NULL,
|
|
10146
|
+
session_id TEXT NOT NULL,
|
|
10147
|
+
last_scanned_at TEXT NOT NULL,
|
|
10148
|
+
PRIMARY KEY (agent_id, source_path)
|
|
10149
|
+
);
|
|
10150
|
+
|
|
10151
|
+
CREATE INDEX IF NOT EXISTS idx_transcript_capture_jobs_agent_session_id
|
|
10152
|
+
ON transcript_capture_jobs(agent_id, session_id, status);
|
|
10153
|
+
`);
|
|
10154
|
+
}
|
|
10137
10155
|
var MIGRATIONS = [
|
|
10138
10156
|
{
|
|
10139
10157
|
version: 1,
|
|
@@ -10845,6 +10863,14 @@ var MIGRATIONS = [
|
|
|
10845
10863
|
artifacts: {
|
|
10846
10864
|
columns: [{ table: "summary_jobs", column: "boundary_reason" }]
|
|
10847
10865
|
}
|
|
10866
|
+
},
|
|
10867
|
+
{
|
|
10868
|
+
version: 88,
|
|
10869
|
+
name: "transcript-recovery-files",
|
|
10870
|
+
up: up88,
|
|
10871
|
+
artifacts: {
|
|
10872
|
+
tables: ["transcript_recovery_files"]
|
|
10873
|
+
}
|
|
10848
10874
|
}
|
|
10849
10875
|
];
|
|
10850
10876
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|