From a3a8ef343f5d3fdded12cc0bfc028e2b78fad456 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Feb 2026 17:58:36 +0000 Subject: [PATCH 1/2] Bump knip from 5.83.0 to 5.83.1 Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) from 5.83.0 to 5.83.1. - [Release notes](https://github.com/webpro-nl/knip/releases) - [Commits](https://github.com/webpro-nl/knip/commits/knip@5.83.1/packages/knip) --- updated-dependencies: - dependency-name: knip dependency-version: 5.83.1 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 38c70845..048ff8a7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -31,7 +31,7 @@ "eslint-plugin-sonarjs": "^3.0.7", "eslint-plugin-unicorn": "^63.0.0", "jscpd": "^4.0.8", - "knip": "^5.83.0", + "knip": "^5.83.1", "prettier": "^3.8.1", "prettier-plugin-packagejson": "^3.0.0", "prettier-plugin-tailwindcss": "^0.7.2", @@ -11454,9 +11454,9 @@ } }, "node_modules/knip": { - "version": "5.83.0", - "resolved": "https://registry.npmjs.org/knip/-/knip-5.83.0.tgz", - "integrity": "sha512-FfmaHMntpZB13B1oJQMSs1hTOZxd0TOn+FYB3oWEI02XlxTW3RH4H7d8z5Us3g0ziHCYyl7z0B1xi8ENP3QEKA==", + "version": "5.83.1", + "resolved": "https://registry.npmjs.org/knip/-/knip-5.83.1.tgz", + "integrity": "sha512-av3ZG/Nui6S/BNL8Tmj12yGxYfTnwWnslouW97m40him7o8MwiMjZBY9TPvlEWUci45aVId0/HbgTwSKIDGpMw==", "dev": true, "funding": [ { diff --git a/package.json b/package.json index e413a110..a7bf5ea5 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "eslint-plugin-sonarjs": "^3.0.7", "eslint-plugin-unicorn": "^63.0.0", "jscpd": "^4.0.8", - "knip": "^5.83.0", + "knip": "^5.83.1", "prettier": "^3.8.1", "prettier-plugin-packagejson": "^3.0.0", "prettier-plugin-tailwindcss": "^0.7.2", From 66f1d87af30cca4d3773af3774af7b03daf01c80 Mon Sep 17 00:00:00 2001 From: James Martinez Date: Thu, 12 Feb 2026 12:57:12 -0600 Subject: [PATCH 2/2] knip --- packages/openworkflow/client.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/openworkflow/client.ts b/packages/openworkflow/client.ts index 6a80e902..fa62919e 100644 --- a/packages/openworkflow/client.ts +++ b/packages/openworkflow/client.ts @@ -164,7 +164,7 @@ export class OpenWorkflow { * `client.defineWorkflow` and provides the `.run()` method for scheduling * workflow runs. */ -export class RunnableWorkflow { +class RunnableWorkflow { private readonly ow: OpenWorkflow; readonly workflow: Workflow; @@ -255,7 +255,7 @@ export interface WorkflowRunHandleResultOptions { * Represents a started workflow run and provides methods to await its result. * Returned from `workflowDef.run()`. */ -export class WorkflowRunHandle { +class WorkflowRunHandle { private backend: Backend; readonly workflowRun: WorkflowRun; private resultPollIntervalMs: number;