Skip to content
This repository was archived by the owner on Mar 28, 2025. It is now read-only.

Commit e1f2652

Browse files
authored
add outcome filter (#39)
1 parent 901bd3c commit e1f2652

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "getindexify",
3-
"version": "0.0.47",
3+
"version": "0.0.48",
44
"description": "This is the TypeScript client for interacting with the Indexify service.",
55
"main": "./dist/index.js",
66
"module": "./dist/index.mjs",

src/client.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -336,20 +336,23 @@ class IndexifyClient {
336336
extractionPolicyId,
337337
startId,
338338
limit,
339+
outcome,
339340
returnTotal = false,
340341
}: {
341342
contentId?: string;
342343
extractionPolicyId?: string;
343344
startId?: string;
344345
limit?: number;
345-
returnTotal: boolean;
346+
outcome?: "Unknown" | "Success" | "Failed";
347+
returnTotal?: boolean;
346348
}): Promise<{ tasks: ITask[]; total?: number }> {
347349
const resp = await this.client.get("tasks", {
348350
params: {
349351
content_id: contentId,
350352
extraction_policy: extractionPolicyId,
351353
start_id: startId,
352354
limit,
355+
outcome,
353356
return_total: returnTotal,
354357
},
355358
});

0 commit comments

Comments
 (0)