Resumable, deletion-aware collection and file enumeration (closes #38)
check / check (push) Successful in 24s

Adds collectionsSince/filesSince taking a starting cursor, returning the resumable max-updationTime cursor and a separate list of tombstoned ids; filesSince throws instead of looping when the server reports hasMore without advancing (closes #7). listCollections/listFiles stay as thin, unaffected wrappers.

Model: opus-4-8
This commit was merged in pull request #57.
This commit is contained in:
2026-09-22 12:37:09 +02:00
parent 8f575550af
commit 42a6c17d49
4 changed files with 490 additions and 33 deletions
+7 -1
View File
@@ -1,6 +1,12 @@
export const VERSION = "0.0.0";
export { Client, type LoginOptions, type ClientSnapshot } from "./client.js";
export {
Client,
type LoginOptions,
type ClientSnapshot,
type CollectionsPage,
type FilesPage,
} from "./client.js";
export {
ApiClient,
ApiError,