@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/dist/index.d.ts +75 -2
- package/dist/index.js +713 -134
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/db/schema.sql +2 -1
package/package.json
CHANGED
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 (
|