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

Commit 33e482b

Browse files
Merge pull request #47 from tensorlakeai/feat/analytics-api
chore: fix analytics api
2 parents 0b1f9c8 + 31f5312 commit 33e482b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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.65",
3+
"version": "0.0.66",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ class IndexifyClient {
459459
extractionGraph: string;
460460
}): Promise<ExtractionGraphAnalytics> {
461461
const response = await this.client.get(
462-
`namespaces/${namespace}/extraction_graphs/${extractionGraph}/analytics`
462+
`/extraction_graphs/${extractionGraph}/analytics`
463463
);
464464

465465
return response.data;

0 commit comments

Comments
 (0)