@pratik7368patil/anchor-core 0.1.15 → 0.1.18

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.15",
3
+ "version": "0.1.18",
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
@@ -287,6 +287,14 @@ CREATE TABLE IF NOT EXISTS sync_state (
287
287
  history_coverage TEXT,
288
288
  history_limit INTEGER,
289
289
  history_since TEXT,
290
+ graphql_cursor TEXT,
291
+ graphql_cursor_scope TEXT,
292
+ graphql_cursor_scanned_prs INTEGER,
293
+ graphql_cursor_matched_prs INTEGER,
294
+ graphql_cursor_page_size INTEGER,
295
+ graphql_cursor_reset_at TEXT,
296
+ graphql_cursor_reason TEXT,
297
+ graphql_cursor_updated_at TEXT,
290
298
  updated_at TEXT NOT NULL
291
299
  );
292
300