@arbidocs/sdk 0.3.48 → 0.3.49

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.
@@ -425,10 +425,11 @@ declare function connectWithReconnect(options: ReconnectOptions): Promise<Reconn
425
425
  * Document statuses that mean processing is finished (success or otherwise).
426
426
  *
427
427
  * Anything in this set should cause `--watch` loops to stop tracking the doc:
428
- * - `completed` — happy path, content extracted and indexed
429
- * - `failed` — processing errored
430
- * - `empty` — parser found no extractable content (e.g. blank scan)
431
- * - `skipped` server skipped (duplicate, unsupported, quota, etc.)
428
+ * - `completed` — happy path, content extracted and indexed
429
+ * - `failed` — processing errored
430
+ * - `empty` — parser found no extractable content (e.g. blank scan)
431
+ * - `low-content` parser extracted only 1-2 chunks (minimal content)
432
+ * - `skipped` — server skipped (duplicate, unsupported, quota, etc.)
432
433
  *
433
434
  * Treating anything else as terminal will leave watchers hung when the parser
434
435
  * legitimately bails out on degenerate input (we hit this on the bench script
@@ -425,10 +425,11 @@ declare function connectWithReconnect(options: ReconnectOptions): Promise<Reconn
425
425
  * Document statuses that mean processing is finished (success or otherwise).
426
426
  *
427
427
  * Anything in this set should cause `--watch` loops to stop tracking the doc:
428
- * - `completed` — happy path, content extracted and indexed
429
- * - `failed` — processing errored
430
- * - `empty` — parser found no extractable content (e.g. blank scan)
431
- * - `skipped` server skipped (duplicate, unsupported, quota, etc.)
428
+ * - `completed` — happy path, content extracted and indexed
429
+ * - `failed` — processing errored
430
+ * - `empty` — parser found no extractable content (e.g. blank scan)
431
+ * - `low-content` parser extracted only 1-2 chunks (minimal content)
432
+ * - `skipped` — server skipped (duplicate, unsupported, quota, etc.)
432
433
  *
433
434
  * Treating anything else as terminal will leave watchers hung when the parser
434
435
  * legitimately bails out on degenerate input (we hit this on the bench script