From 62b5251e31a65c4ca8bbd02c8a9611e4172f6fc0 Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Thu, 20 Aug 2026 01:43:09 +0000 Subject: [PATCH] feat: Update to @seamapi/types@1.1030.0 --- package-lock.json | 8 ++++---- package.json | 2 +- src/lib/resources/workspace.ts | 3 ++- src/lib/routes/workspaces/workspaces.ts | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1fce6b63..39f827a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "@seamapi/blueprint": "^1.8.0", "@seamapi/fake-seam-connect": "^2.0.4", "@seamapi/smith": "^1.1.0", - "@seamapi/types": "1.1029.0", + "@seamapi/types": "1.1030.0", "@types/jsonwebtoken": "^9.0.6", "@types/node": "^24.10.9", "ava": "^8.0.1", @@ -1133,9 +1133,9 @@ } }, "node_modules/@seamapi/types": { - "version": "1.1029.0", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.1029.0.tgz", - "integrity": "sha512-QpV38/nEX+LmyInIWpVieHhUs+WrEfutdK8jDxYxgsFIyc6FO2ou6nrzeywDsaY6RweqkJDnSV4zz+AaxgtdQQ==", + "version": "1.1030.0", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.1030.0.tgz", + "integrity": "sha512-AP9cwDn0ueJ7R+/mocmHQ8GxiMcuyDw2bMz/yd+WN2+FEaj4dzdLiFMG8wu+1b0T3LnCeVfOYOD00iKElAZ5sg==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index cfb5a662..b86ccc06 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "@seamapi/blueprint": "^1.8.0", "@seamapi/fake-seam-connect": "^2.0.4", "@seamapi/smith": "^1.1.0", - "@seamapi/types": "1.1029.0", + "@seamapi/types": "1.1030.0", "@types/jsonwebtoken": "^9.0.6", "@types/node": "^24.10.9", "ava": "^8.0.1", diff --git a/src/lib/resources/workspace.ts b/src/lib/resources/workspace.ts index 4a8dc54e..62df3046 100644 --- a/src/lib/resources/workspace.ts +++ b/src/lib/resources/workspace.ts @@ -9,11 +9,12 @@ export type Workspace = { /** * Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). + * @deprecated Use `connect_partner_name` instead. */ company_name: string /** - * @deprecated Use `company_name` instead. + * Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */ connect_partner_name: string | null diff --git a/src/lib/routes/workspaces/workspaces.ts b/src/lib/routes/workspaces/workspaces.ts index 4a8efac5..0fa4b559 100644 --- a/src/lib/routes/workspaces/workspaces.ts +++ b/src/lib/routes/workspaces/workspaces.ts @@ -263,11 +263,11 @@ export class SeamHttpWorkspaces { export type WorkspacesCreateParameters = { /** * Company name for the new workspace. + * @deprecated Use `connect_partner_name` instead. */ company_name?: string | undefined /** * Connect partner name for the new workspace. - * @deprecated Use `company_name` instead. */ connect_partner_name?: string | null | undefined /**