From 53a372ed1268117f1abe996f7c39c17167a58a2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2026 06:33:55 +0000 Subject: [PATCH 1/2] feat(deps-dev): Bump @seamapi/types in the seam group Bumps the seam group with 1 update: [@seamapi/types](https://github.com/seamapi/types). Updates `@seamapi/types` from 1.818.0 to 1.819.0 - [Release notes](https://github.com/seamapi/types/releases) - [Commits](https://github.com/seamapi/types/compare/v1.818.0...v1.819.0) --- updated-dependencies: - dependency-name: "@seamapi/types" dependency-version: 1.819.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: seam ... 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 0b2c068a..3e06b5b0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "@seamapi/blueprint": "^0.52.2", "@seamapi/fake-seam-connect": "^1.77.0", "@seamapi/smith": "^0.5.2", - "@seamapi/types": "1.818.0", + "@seamapi/types": "1.819.0", "@swc/core": "^1.11.29", "@types/jsonwebtoken": "^9.0.6", "@types/node": "^24.10.9", @@ -1405,9 +1405,9 @@ "license": "MIT" }, "node_modules/@seamapi/types": { - "version": "1.818.0", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.818.0.tgz", - "integrity": "sha512-IML1OBYMJnlK3xLGR/YgLC5HoGDzXbS9Fgj2VZbO7S0GlG6AUoKqAqiIAfDx6SaflzqaaYSDRooadIoJfQM52A==", + "version": "1.819.0", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.819.0.tgz", + "integrity": "sha512-CQTtEL2BzlP290k1wB1D358wmMTXcamhp8E5hSZWs5kbIyU+rk5Pin6az9jx3ediUHltnDsxTWUKs7nxV6wMfg==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index f006e627..06b5cd31 100644 --- a/package.json +++ b/package.json @@ -102,7 +102,7 @@ "@seamapi/blueprint": "^0.52.2", "@seamapi/fake-seam-connect": "^1.77.0", "@seamapi/smith": "^0.5.2", - "@seamapi/types": "1.818.0", + "@seamapi/types": "1.819.0", "@swc/core": "^1.11.29", "@types/jsonwebtoken": "^9.0.6", "@types/node": "^24.10.9", From b74b8beb609c0d6bae3ae531f04e6510a5dc463c Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Thu, 30 Apr 2026 06:34:57 +0000 Subject: [PATCH 2/2] ci: Generate code --- package-lock.json | 2 +- package.json | 2 +- .../connect/routes/seam-http-endpoints.ts | 27 ------------ .../seam/customer/v1/connectors/ical/ical.ts | 41 ------------------- 4 files changed, 2 insertions(+), 70 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3e06b5b0..ae70c0fa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -49,7 +49,7 @@ "npm": ">=10.9.4" }, "peerDependencies": { - "@seamapi/types": "^1.818.0" + "@seamapi/types": "^1.819.0" }, "peerDependenciesMeta": { "@seamapi/types": { diff --git a/package.json b/package.json index 06b5cd31..306be43c 100644 --- a/package.json +++ b/package.json @@ -86,7 +86,7 @@ "npm": ">=10.9.4" }, "peerDependencies": { - "@seamapi/types": "^1.818.0" + "@seamapi/types": "^1.819.0" }, "peerDependenciesMeta": { "@seamapi/types": { diff --git a/src/lib/seam/connect/routes/seam-http-endpoints.ts b/src/lib/seam/connect/routes/seam-http-endpoints.ts index fee3b050..935eeca5 100644 --- a/src/lib/seam/connect/routes/seam-http-endpoints.ts +++ b/src/lib/seam/connect/routes/seam-http-endpoints.ts @@ -648,9 +648,6 @@ import { SeamHttpSeamCustomerV1ConnectorCustomers, } from './seam/customer/v1/connector-customers/index.js' import { - type SeamCustomerV1ConnectorsIcalGenerateConfigOptions, - type SeamCustomerV1ConnectorsIcalGenerateConfigParameters, - type SeamCustomerV1ConnectorsIcalGenerateConfigRequest, type SeamCustomerV1ConnectorsIcalValidateConfigOptions, type SeamCustomerV1ConnectorsIcalValidateConfigParameters, type SeamCustomerV1ConnectorsIcalValidateConfigRequest, @@ -3555,29 +3552,6 @@ export class SeamHttpEndpoints { } } - get '/seam/customer/v1/connectors/ical/generate-config'(): ( - parameters?: SeamCustomerV1ConnectorsIcalGenerateConfigParameters, - options?: SeamCustomerV1ConnectorsIcalGenerateConfigOptions, - ) => SeamCustomerV1ConnectorsIcalGenerateConfigRequest { - const { client, defaults } = this - if (!this.defaults.isUndocumentedApiEnabled) { - throw new Error( - 'Cannot use undocumented API without isUndocumentedApiEnabled', - ) - } - return function seamCustomerV1ConnectorsIcalGenerateConfig( - ...args: Parameters< - SeamHttpSeamCustomerV1ConnectorsIcal['generateConfig'] - > - ): ReturnType { - const seam = SeamHttpSeamCustomerV1ConnectorsIcal.fromClient( - client, - defaults, - ) - return seam.generateConfig(...args) - } - } - get '/seam/customer/v1/connectors/ical/validate-config'(): ( parameters?: SeamCustomerV1ConnectorsIcalValidateConfigParameters, options?: SeamCustomerV1ConnectorsIcalValidateConfigOptions, @@ -5402,7 +5376,6 @@ export type SeamHttpEndpointMutationPaths = | '/seam/customer/v1/connectors/delete' | '/seam/customer/v1/connectors/sync' | '/seam/customer/v1/connectors/update' - | '/seam/customer/v1/connectors/ical/generate-config' | '/seam/customer/v1/connectors/ical/validate-config' | '/seam/customer/v1/customers/automations/update' | '/seam/customer/v1/customers/open_portal' diff --git a/src/lib/seam/connect/routes/seam/customer/v1/connectors/ical/ical.ts b/src/lib/seam/connect/routes/seam/customer/v1/connectors/ical/ical.ts index b244e6a8..7a065bc0 100644 --- a/src/lib/seam/connect/routes/seam/customer/v1/connectors/ical/ical.ts +++ b/src/lib/seam/connect/routes/seam/customer/v1/connectors/ical/ical.ts @@ -171,24 +171,6 @@ export class SeamHttpSeamCustomerV1ConnectorsIcal { await clientSessions.get() } - generateConfig( - parameters?: SeamCustomerV1ConnectorsIcalGenerateConfigParameters, - options: SeamCustomerV1ConnectorsIcalGenerateConfigOptions = {}, - ): SeamCustomerV1ConnectorsIcalGenerateConfigRequest { - if (!this.defaults.isUndocumentedApiEnabled) { - throw new Error( - 'Cannot use undocumented API without isUndocumentedApiEnabled', - ) - } - return new SeamHttpRequest(this, { - pathname: '/seam/customer/v1/connectors/ical/generate-config', - method: 'POST', - body: parameters, - responseKey: 'generated_config', - options, - }) - } - validateConfig( parameters?: SeamCustomerV1ConnectorsIcalValidateConfigParameters, options: SeamCustomerV1ConnectorsIcalValidateConfigOptions = {}, @@ -208,29 +190,6 @@ export class SeamHttpSeamCustomerV1ConnectorsIcal { } } -export type SeamCustomerV1ConnectorsIcalGenerateConfigParameters = - RouteRequestBody<'/seam/customer/v1/connectors/ical/generate-config'> - -/** - * @deprecated Use SeamCustomerV1ConnectorsIcalGenerateConfigParameters instead. - */ -export type SeamCustomerV1ConnectorsIcalGenerateConfigBody = - SeamCustomerV1ConnectorsIcalGenerateConfigParameters - -/** - * @deprecated Use SeamCustomerV1ConnectorsIcalGenerateConfigRequest instead. - */ -export type SeamCustomerV1ConnectorsIcalGenerateConfigResponse = SetNonNullable< - Required> -> - -export type SeamCustomerV1ConnectorsIcalGenerateConfigRequest = SeamHttpRequest< - SeamCustomerV1ConnectorsIcalGenerateConfigResponse, - 'generated_config' -> - -export interface SeamCustomerV1ConnectorsIcalGenerateConfigOptions {} - export type SeamCustomerV1ConnectorsIcalValidateConfigParameters = RouteRequestBody<'/seam/customer/v1/connectors/ical/validate-config'>