@babav/knowledge-core-client 0.23.1 → 0.23.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babav/knowledge-core-client",
3
- "version": "0.23.1",
3
+ "version": "0.23.2",
4
4
  "description": "TypeScript client for the Babav Knowledge Core API (Deno + Node 18+, zero deps). Includes the babav.visual grammar TYPES at the ./visual subpath (types only; all visual rendering is server-side).",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -491,7 +491,7 @@ export interface DocumentStatusEvent {
491
491
  document_id: string;
492
492
  corpus_id?: string | null;
493
493
  folder_id?: string | null;
494
- status: string; // pending | ingesting | indexed | failed | deleting
494
+ status: string; // pending | ingesting | indexed | failed | deleting | deleted (terminal: row is gone)
495
495
  filename?: string | null;
496
496
  chunk_count?: number | null;
497
497
  error?: string | null;