From 6092244df8bc4356d4b0183012285464594dc823 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Apr 2025 19:42:23 +0000 Subject: [PATCH 1/2] feat(deps): bump the seam group with 2 updates Bumps the seam group with 2 updates: [@seamapi/http](https://github.com/seamapi/javascript-http) and [@seamapi/types](https://github.com/seamapi/types). Updates `@seamapi/http` from 1.27.0 to 1.28.0 - [Release notes](https://github.com/seamapi/javascript-http/releases) - [Changelog](https://github.com/seamapi/javascript-http/blob/main/.releaserc.json) - [Commits](https://github.com/seamapi/javascript-http/compare/v1.27.0...v1.28.0) Updates `@seamapi/types` from 1.374.0 to 1.375.0 - [Release notes](https://github.com/seamapi/types/releases) - [Changelog](https://github.com/seamapi/types/blob/main/.releaserc.json) - [Commits](https://github.com/seamapi/types/compare/v1.374.0...v1.375.0) --- updated-dependencies: - dependency-name: "@seamapi/http" dependency-version: 1.28.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: seam - dependency-name: "@seamapi/types" dependency-version: 1.375.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: seam ... Signed-off-by: dependabot[bot] --- package-lock.json | 16 ++++++++-------- package.json | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9893775..345ce79 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,8 +9,8 @@ "version": "1.69.0", "license": "MIT", "dependencies": { - "@seamapi/http": "1.27.0", - "@seamapi/types": "1.374.0", + "@seamapi/http": "1.28.0", + "@seamapi/types": "1.375.0", "@seamapi/webhook": "1.1.1", "zod": "^3.21.4" }, @@ -1115,9 +1115,9 @@ "peer": true }, "node_modules/@seamapi/http": { - "version": "1.27.0", - "resolved": "https://registry.npmjs.org/@seamapi/http/-/http-1.27.0.tgz", - "integrity": "sha512-qBOm26NFH5YHW7vOgvQwzmNklSMZyPUnuOIb9Dfa6SDaHbgOOFxPkkbUSqWNKKyHDHegI5jN2/O1SRkcK0dVAQ==", + "version": "1.28.0", + "resolved": "https://registry.npmjs.org/@seamapi/http/-/http-1.28.0.tgz", + "integrity": "sha512-EP73nhEvbdtk/jMhRpYG/dCXLC14IdHMKns1baZwcwsR+hYdYqlaZB5GbATK/o9LNtopo5G8tGuEKVH9NKvBYg==", "license": "MIT", "dependencies": { "@seamapi/url-search-params-serializer": "^1.2.0", @@ -1139,9 +1139,9 @@ } }, "node_modules/@seamapi/types": { - "version": "1.374.0", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.374.0.tgz", - "integrity": "sha512-UGHEblbkbTjgpbXDCx293ZLWx1n2hb6Mui0hH1MjcliCiOKOydo6zqWde4Atj+DzUiLJDhsUOu9Vgm9hcC4EQw==", + "version": "1.375.0", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.375.0.tgz", + "integrity": "sha512-RNyVpjayduPNmfzOp/kM/SVuOqvcWTd1L0fxrKnmdAfnbSkrAbcY62NzSfFdgnqtJvBCC9O1qv8HIrkU+MVROA==", "license": "MIT", "engines": { "node": ">=18.12.0", diff --git a/package.json b/package.json index ac2644f..c98a99d 100644 --- a/package.json +++ b/package.json @@ -65,8 +65,8 @@ "npm": ">= 9.0.0" }, "dependencies": { - "@seamapi/http": "1.27.0", - "@seamapi/types": "1.374.0", + "@seamapi/http": "1.28.0", + "@seamapi/types": "1.375.0", "@seamapi/webhook": "1.1.1", "zod": "^3.21.4" }, From 6404c63753e38507e11e591e2b862bdfab26c4ed Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Fri, 4 Apr 2025 19:42:45 +0000 Subject: [PATCH 2/2] ci: Generate code --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 98c4e4f..0dda0ea 100644 --- a/README.md +++ b/README.md @@ -185,8 +185,10 @@ A workspace ID must be provided when using this method and all requests will be scoped to that workspace. ```ts -// Pass as an option to the constructor +// Set the `SEAM_PERSONAL_ACCESS_TOKEN` and `SEAM_WORKSPACE_ID` environment variables +const seam = new Seam() +// Pass as an option to the constructor const seam = new Seam({ personalAccessToken: 'your-personal-access-token', workspaceId: 'your-workspace-id', @@ -418,6 +420,9 @@ A Personal Access Token is scoped to a Seam Console user. Obtain one from the Seam Console. ```ts +// Set the `SEAM_PERSONAL_ACCESS_TOKEN` environment variable +const seam = new SeamMultiWorkspace() + // Pass as an option to the constructor const seam = new SeamMultiWorkspace({ personalAccessToken: 'your-personal-access-token',