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

Commit 7688bde

Browse files
authored
Merge pull request #44 from tensorlakeai/f-ingested-content-id
Added a filter to list extracted content by ingested content id
2 parents cdbe955 + 68b5dc7 commit 7688bde

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "getindexify",
3-
"version": "0.0.62",
3+
"version": "0.0.63",
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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -620,6 +620,7 @@ class IndexifyClient {
620620
namespace: string;
621621
extractionGraph: string;
622622
source?: string;
623+
ingestedContentId?: string;
623624
parentId?: string;
624625
labelsFilter?: string[];
625626
startId?: string;
@@ -643,6 +644,7 @@ class IndexifyClient {
643644
namespace: mergedParams.namespace,
644645
extraction_graph: mergedParams.extractionGraph,
645646
source: mergedParams.source,
647+
ingested_content_id: mergedParams.ingestedContentId,
646648
parent_id: mergedParams.parentId,
647649
labels_filter: mergedParams.labelsFilter,
648650
start_id: mergedParams.startId,

0 commit comments

Comments
 (0)