@pratik7368patil/anchor-core 0.1.29 → 0.1.31

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pratik7368patil/anchor-core",
3
- "version": "0.1.29",
3
+ "version": "0.1.31",
4
4
  "description": "Core local indexing, sanitization, and retrieval engine for Anchor.",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/db/schema.sql CHANGED
@@ -113,7 +113,8 @@ CREATE TABLE IF NOT EXISTS code_index_state (
113
113
  last_indexed_at TEXT NOT NULL,
114
114
  indexed_files INTEGER NOT NULL,
115
115
  code_chunks INTEGER NOT NULL,
116
- skipped_files INTEGER NOT NULL
116
+ skipped_files INTEGER NOT NULL,
117
+ last_indexed_commit TEXT
117
118
  );
118
119
 
119
120
  CREATE TABLE IF NOT EXISTS code_imports (