From 4b1767568489b92f5584a2f9c1767e74a8d7f39d Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 26 Jul 2026 19:29:09 -0500 Subject: [PATCH] chore(deps): upgrade @linqapp/sdk to ^0.31.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CLI pinned ^0.15.1, sixteen minor versions behind. That predates the webhook resource entirely, so `client.webhooks.unwrap()` — the SDK's Standard Webhooks verification helper — was not reachable from the CLI at all. This is the dependency bump only, no behaviour change. Verified: tsc --noEmit clean, build clean, 172 tests pass across 41 files, all 23 SDK call sites typecheck unchanged. Adopting Standard Webhooks in `webhooks listen --forward-to` follows separately so the version bump can be reviewed on its own. --- package-lock.json | 35 ++++++++++++++++++++++++++++++----- package.json | 2 +- 2 files changed, 31 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 43a25ee..a462f30 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,7 @@ "license": "Apache-2.0", "dependencies": { "@inquirer/prompts": "^8.2.0", - "@linqapp/sdk": "^0.15.1", + "@linqapp/sdk": "^0.31.0", "@oclif/core": "^4.8.0", "@oclif/plugin-autocomplete": "^3.2.40", "@oclif/plugin-help": "^6.2.37", @@ -2482,10 +2482,13 @@ "license": "MIT" }, "node_modules/@linqapp/sdk": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/@linqapp/sdk/-/sdk-0.15.1.tgz", - "integrity": "sha512-5/P0xR12J93zQ5MOov9beHxbDE77PBPZkIicUh0CYyF0FJKiRmEVQx108Vub9I7THEQGKLwI4i2Hm0jljc3Qag==", - "license": "Apache-2.0" + "version": "0.31.0", + "resolved": "https://registry.npmjs.org/@linqapp/sdk/-/sdk-0.31.0.tgz", + "integrity": "sha512-skJ/xOOW0CLbOU82dbmO3ZS333De5vGsYia+WpPdV3IcJel2rv0XbvTRH4QBC28TUcw5EZn9sISMAZaZRKGC3g==", + "license": "Apache-2.0", + "dependencies": { + "standardwebhooks": "^1.0.0" + } }, "node_modules/@oclif/core": { "version": "4.8.0", @@ -5554,6 +5557,12 @@ "node": ">=18.0.0" } }, + "node_modules/@stablelib/base64": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@stablelib/base64/-/base64-1.0.1.tgz", + "integrity": "sha512-1bnPQqSxSuc3Ii6MhBysoWCg58j97aUjuCSZrGSmDxNqtytIi0k8utUenAwTZN4V5mXXYGsVUI9zeBqy+jBOSQ==", + "license": "MIT" + }, "node_modules/@standard-schema/spec": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz", @@ -7865,6 +7874,12 @@ "fastest-levenshtein": "^1.0.7" } }, + "node_modules/fast-sha256": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-sha256/-/fast-sha256-1.3.0.tgz", + "integrity": "sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==", + "license": "Unlicense" + }, "node_modules/fast-uri": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz", @@ -13983,6 +13998,16 @@ "dev": true, "license": "MIT" }, + "node_modules/standardwebhooks": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/standardwebhooks/-/standardwebhooks-1.0.0.tgz", + "integrity": "sha512-BbHGOQK9olHPMvQNHWul6MYlrRTAOKn03rOe4A8O3CLWhNf4YHBqq2HJKKC+sfqpxiBY52pNeesD6jIiLDz8jg==", + "license": "MIT", + "dependencies": { + "@stablelib/base64": "^1.0.0", + "fast-sha256": "^1.3.0" + } + }, "node_modules/std-env": { "version": "3.10.0", "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz", diff --git a/package.json b/package.json index e99ee8d..84dff93 100644 --- a/package.json +++ b/package.json @@ -88,7 +88,7 @@ }, "dependencies": { "@inquirer/prompts": "^8.2.0", - "@linqapp/sdk": "^0.15.1", + "@linqapp/sdk": "^0.31.0", "@oclif/core": "^4.8.0", "@oclif/plugin-autocomplete": "^3.2.40", "@oclif/plugin-help": "^6.2.37",