@arbidocs/client 0.3.14 → 0.3.15

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.cts CHANGED
@@ -1360,10 +1360,8 @@ interface paths {
1360
1360
  * Get Response
1361
1361
  * @description Retrieve a response by ID.
1362
1362
  *
1363
- * Returns the current state with progressive event accumulation:
1364
- * - ``in_progress`` with accumulated events if the task is still active
1365
- * - ``completed`` with output and persisted events if in the database
1366
- * - 404 if not found
1363
+ * Reads status directly from the messages table. For in-progress responses,
1364
+ * also checks in-memory event accumulation for progressive polling.
1367
1365
  */
1368
1366
  get: operations['get_response'];
1369
1367
  put?: never;
@@ -3492,6 +3490,11 @@ interface components {
3492
3490
  * @default 0
3493
3491
  */
3494
3492
  tokens: number;
3493
+ /**
3494
+ * Status
3495
+ * @default completed
3496
+ */
3497
+ status: string;
3495
3498
  /** External Id */
3496
3499
  external_id: string;
3497
3500
  /**
@@ -3553,6 +3556,11 @@ interface components {
3553
3556
  * @default 0
3554
3557
  */
3555
3558
  tokens: number;
3559
+ /**
3560
+ * Status
3561
+ * @default completed
3562
+ */
3563
+ status: string;
3556
3564
  /** External Id */
3557
3565
  external_id: string;
3558
3566
  /**
@@ -5733,6 +5741,11 @@ interface components {
5733
5741
  * @default 0
5734
5742
  */
5735
5743
  tokens: number;
5744
+ /**
5745
+ * Status
5746
+ * @default completed
5747
+ */
5748
+ status: string;
5736
5749
  /** External Id */
5737
5750
  external_id: string;
5738
5751
  /**
package/dist/index.d.ts CHANGED
@@ -1360,10 +1360,8 @@ interface paths {
1360
1360
  * Get Response
1361
1361
  * @description Retrieve a response by ID.
1362
1362
  *
1363
- * Returns the current state with progressive event accumulation:
1364
- * - ``in_progress`` with accumulated events if the task is still active
1365
- * - ``completed`` with output and persisted events if in the database
1366
- * - 404 if not found
1363
+ * Reads status directly from the messages table. For in-progress responses,
1364
+ * also checks in-memory event accumulation for progressive polling.
1367
1365
  */
1368
1366
  get: operations['get_response'];
1369
1367
  put?: never;
@@ -3492,6 +3490,11 @@ interface components {
3492
3490
  * @default 0
3493
3491
  */
3494
3492
  tokens: number;
3493
+ /**
3494
+ * Status
3495
+ * @default completed
3496
+ */
3497
+ status: string;
3495
3498
  /** External Id */
3496
3499
  external_id: string;
3497
3500
  /**
@@ -3553,6 +3556,11 @@ interface components {
3553
3556
  * @default 0
3554
3557
  */
3555
3558
  tokens: number;
3559
+ /**
3560
+ * Status
3561
+ * @default completed
3562
+ */
3563
+ status: string;
3556
3564
  /** External Id */
3557
3565
  external_id: string;
3558
3566
  /**
@@ -5733,6 +5741,11 @@ interface components {
5733
5741
  * @default 0
5734
5742
  */
5735
5743
  tokens: number;
5744
+ /**
5745
+ * Status
5746
+ * @default completed
5747
+ */
5748
+ status: string;
5736
5749
  /** External Id */
5737
5750
  external_id: string;
5738
5751
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arbidocs/client",
3
- "version": "0.3.14",
3
+ "version": "0.3.15",
4
4
  "description": "TypeScript SDK for the ARBI API — zero-knowledge auth, E2E encryption, and type-safe REST client",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",