casedev 0.21.3 → 0.22.0
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/CHANGELOG.md +16 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts.map +1 -1
- package/client.js +3 -2
- package/client.js.map +1 -1
- package/client.mjs +3 -2
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/agent/v1/chat.d.mts +30 -2
- package/resources/agent/v1/chat.d.mts.map +1 -1
- package/resources/agent/v1/chat.d.ts +30 -2
- package/resources/agent/v1/chat.d.ts.map +1 -1
- package/resources/agent/v1/chat.js +27 -1
- package/resources/agent/v1/chat.js.map +1 -1
- package/resources/agent/v1/chat.mjs +27 -1
- package/resources/agent/v1/chat.mjs.map +1 -1
- package/resources/agent/v1/index.d.mts +1 -1
- package/resources/agent/v1/index.d.mts.map +1 -1
- package/resources/agent/v1/index.d.ts +1 -1
- package/resources/agent/v1/index.d.ts.map +1 -1
- package/resources/agent/v1/index.js.map +1 -1
- package/resources/agent/v1/index.mjs.map +1 -1
- package/resources/agent/v1/run.d.mts +25 -0
- package/resources/agent/v1/run.d.mts.map +1 -1
- package/resources/agent/v1/run.d.ts +25 -0
- package/resources/agent/v1/run.d.ts.map +1 -1
- package/resources/agent/v1/v1.d.mts +2 -2
- package/resources/agent/v1/v1.d.mts.map +1 -1
- package/resources/agent/v1/v1.d.ts +2 -2
- package/resources/agent/v1/v1.d.ts.map +1 -1
- package/resources/agent/v1/v1.js.map +1 -1
- package/resources/agent/v1/v1.mjs.map +1 -1
- package/resources/vault/objects.d.mts +12 -0
- package/resources/vault/objects.d.mts.map +1 -1
- package/resources/vault/objects.d.ts +12 -0
- package/resources/vault/objects.d.ts.map +1 -1
- package/resources/vault/vault.d.mts +2 -2
- package/resources/vault/vault.d.ts +2 -2
- package/resources/vault/vault.js +2 -2
- package/resources/vault/vault.mjs +2 -2
- package/src/client.ts +3 -2
- package/src/resources/agent/v1/chat.ts +61 -1
- package/src/resources/agent/v1/index.ts +3 -0
- package/src/resources/agent/v1/run.ts +44 -0
- package/src/resources/agent/v1/v1.ts +6 -0
- package/src/resources/vault/objects.ts +15 -0
- package/src/resources/vault/vault.ts +2 -2
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -383,6 +383,21 @@ export namespace ObjectListResponse {
|
|
|
383
383
|
*/
|
|
384
384
|
ingestionCompletedAt?: string;
|
|
385
385
|
|
|
386
|
+
/**
|
|
387
|
+
* Failure reason when ingestion status is a failed state
|
|
388
|
+
*/
|
|
389
|
+
ingestionError?: string | null;
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* When ingestion processing began
|
|
393
|
+
*/
|
|
394
|
+
ingestionStartedAt?: string | null;
|
|
395
|
+
|
|
396
|
+
/**
|
|
397
|
+
* Durable workflow run ID for the active or last ingestion attempt
|
|
398
|
+
*/
|
|
399
|
+
ingestionWorkflowId?: string | null;
|
|
400
|
+
|
|
386
401
|
/**
|
|
387
402
|
* Custom metadata associated with the document
|
|
388
403
|
*/
|
|
@@ -161,8 +161,8 @@ export class Vault extends APIResource {
|
|
|
161
161
|
|
|
162
162
|
/**
|
|
163
163
|
* Triggers ingestion workflow for a vault object to extract text, generate chunks,
|
|
164
|
-
* and create embeddings. For supported file types (PDF, DOCX, TXT, RTF, XML,
|
|
165
|
-
* audio, video), processing happens asynchronously. ZIP archives are unpacked
|
|
164
|
+
* and create embeddings. For supported file types (PDF, DOCX, PPTX, TXT, RTF, XML,
|
|
165
|
+
* ZIP, audio, video), processing happens asynchronously. ZIP archives are unpacked
|
|
166
166
|
* recursively up to 5 levels, and each extracted file is created as an independent
|
|
167
167
|
* vault object and ingested via the normal pipeline. For unsupported types
|
|
168
168
|
* (images, etc.), the file is marked as completed immediately without text
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.22.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.22.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.22.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.22.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|