From 8004aba7121aa754d03ece5c8421774441d4307a Mon Sep 17 00:00:00 2001 From: Adithya Krishna Date: Thu, 1 Aug 2024 18:10:53 +0530 Subject: [PATCH 1/2] chore: fix analytics api Signed-off-by: Adithya Krishna --- src/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.ts b/src/client.ts index 8332397..b88d5dc 100644 --- a/src/client.ts +++ b/src/client.ts @@ -459,7 +459,7 @@ class IndexifyClient { extractionGraph: string; }): Promise { const response = await this.client.get( - `namespaces/${namespace}/extraction_graphs/${extractionGraph}/analytics` + `/extraction_graphs/${extractionGraph}/analytics` ); return response.data; From 31f5312c649b65673272bd050e1ebc6a323ffae4 Mon Sep 17 00:00:00 2001 From: Adithya Krishna Date: Thu, 1 Aug 2024 18:11:19 +0530 Subject: [PATCH 2/2] chore: fix analytics api Signed-off-by: Adithya Krishna --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 33be8f2..0d62fe8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "getindexify", - "version": "0.0.65", + "version": "0.0.66", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "getindexify", - "version": "0.0.65", + "version": "0.0.66", "license": "ISC", "dependencies": { "axios": "^1.7.2", diff --git a/package.json b/package.json index 389cbee..e1df8ad 100644 --- a/package.json +++ b/package.json @@ -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",