From e00cba70abed3e33e3a66f0dfe74bb8cbb22b9b6 Mon Sep 17 00:00:00 2001 From: Moshe Grunwald Date: Fri, 5 Dec 2025 12:25:17 -0500 Subject: [PATCH 1/2] fix: project id override Pipedream JWT access tokens do not have the project id encoded in it. It should use the project id passed in during client config --- src/wrapper/Pipedream.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wrapper/Pipedream.ts b/src/wrapper/Pipedream.ts index df3084d..6d6198d 100644 --- a/src/wrapper/Pipedream.ts +++ b/src/wrapper/Pipedream.ts @@ -78,7 +78,6 @@ export class Pipedream extends PipedreamClient { if ("tokenProvider" in opts) { clientOpts.tokenProvider = opts.tokenProvider; - clientOpts.projectId = ""; } else { const { clientId = process.env.PIPEDREAM_CLIENT_ID, clientSecret = process.env.PIPEDREAM_CLIENT_SECRET } = opts || {}; From 04d17f26e121a300b2a5e15fb9662150b29f0fe9 Mon Sep 17 00:00:00 2001 From: Jay Vercellone Date: Fri, 5 Dec 2025 14:27:33 -0300 Subject: [PATCH 2/2] Bump patch version --- package.json | 2 +- src/version.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 5e38a67..fd1f118 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/sdk", - "version": "2.3.1", + "version": "2.3.2", "private": false, "repository": "github:PipedreamHQ/pipedream-sdk-typescript", "type": "commonjs", diff --git a/src/version.ts b/src/version.ts index 3ddcc81..7812a79 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const SDK_VERSION = "2.3.1"; +export const SDK_VERSION = "2.3.2";