From c77c6245bfd5a0f247176bb08cd4c09c57ba2849 Mon Sep 17 00:00:00 2001 From: skyflow-bharti Date: Tue, 23 Jun 2026 22:48:21 +0530 Subject: [PATCH 1/2] SK-2868 dependency upgrades --- src/utils/jwt-utils/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/jwt-utils/index.ts b/src/utils/jwt-utils/index.ts index 8dc9195..aebbab4 100644 --- a/src/utils/jwt-utils/index.ts +++ b/src/utils/jwt-utils/index.ts @@ -9,6 +9,7 @@ function isExpired(token: string) { return true; } let isJwtExpired = false; + const decoded: JwtPayload = jwtDecode(token); const currentTime = (new Date().getTime() / 1000); const expiryTime = decoded.exp; From c582d50ffdd1cd3ae0dd306422f32a4aa579b47b Mon Sep 17 00:00:00 2001 From: skyflow-bharti Date: Tue, 23 Jun 2026 17:19:04 +0000 Subject: [PATCH 2/2] [AUTOMATED] Private Release 2.1.1-dev.c77c624 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a7dc3b0..d6c88d5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "skyflow-node", - "version": "2.1.1", + "version": "2.1.1-dev.c77c624", "description": "Skyflow SDK for Node.js", "main": "./lib/index.js", "module": "./lib/index.js",