Skip to content

Commit

Permalink
Merge pull request #47 from tensorlakeai/feat/analytics-api
Browse files Browse the repository at this point in the history
chore: fix analytics api
  • Loading branch information
adithyaakrishna authored Aug 1, 2024
2 parents 0b1f9c8 + 31f5312 commit 33e482b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "getindexify",
"version": "0.0.65",
"version": "0.0.66",
"description": "This is the TypeScript client for interacting with the Indexify service.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ class IndexifyClient {
extractionGraph: string;
}): Promise<ExtractionGraphAnalytics> {
const response = await this.client.get(
`namespaces/${namespace}/extraction_graphs/${extractionGraph}/analytics`
`/extraction_graphs/${extractionGraph}/analytics`
);

return response.data;
Expand Down

0 comments on commit 33e482b

Please sign in to comment.