From ab96c3f9b3d1b0238d618a4d80989ef4f62f830c Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Thu, 20 Aug 2026 20:15:19 +0000 Subject: [PATCH] feat: Sync with Seam API via a77db0b12b2817b9ac0e7c0c1bbd975c3f023c15 --- src/lib/seam/connect/openapi.ts | 49 +++++++++++------------------ src/lib/seam/connect/route-types.ts | 8 ++--- 2 files changed, 23 insertions(+), 34 deletions(-) diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index 88d76eff..a26a0451 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -67858,23 +67858,18 @@ const openapi: OpenAPISpec = { delete: { description: 'Deletes a site.', operationId: 'seamConsoleV1SitesDeleteDelete', - requestBody: { - content: { - 'application/json': { - schema: { - properties: { - site_id: { - description: 'ID of the site that you want to delete.', - format: 'uuid', - type: 'string', - }, - }, - required: ['site_id'], - type: 'object', - }, + parameters: [ + { + in: 'query', + name: 'site_id', + required: true, + schema: { + description: 'ID of the site that you want to delete.', + format: 'uuid', + type: 'string', }, }, - }, + ], responses: { '200': { content: { @@ -79718,23 +79713,17 @@ const openapi: OpenAPISpec = { '/seam/instant_key/v1/preview/get': { get: { operationId: 'seamInstantKeyV1PreviewGetGet', - requestBody: { - content: { - 'application/json': { - schema: { - properties: { - instant_key_url: { - description: - 'The short code of the instant key to preview.', - type: 'string', - }, - }, - required: ['instant_key_url'], - type: 'object', - }, + parameters: [ + { + in: 'query', + name: 'instant_key_url', + required: true, + schema: { + description: 'The short code of the instant key to preview.', + type: 'string', }, }, - }, + ], responses: { '200': { content: { diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index 49d8c369..1ab1e0e2 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -95956,11 +95956,11 @@ export type Routes = { route: '/seam/console/v1/sites/delete' method: 'DELETE' | 'POST' queryParams: {} - jsonBody: { + jsonBody: {} + commonParams: { /** ID of the site that you want to delete. */ site_id: string } - commonParams: {} formData: {} jsonResponse: {} maxDuration: undefined @@ -105410,11 +105410,11 @@ export type Routes = { route: '/seam/instant_key/v1/preview/get' method: 'GET' | 'POST' queryParams: {} - jsonBody: { + jsonBody: {} + commonParams: { /** The short code of the instant key to preview. */ instant_key_url: string } - commonParams: {} formData: {} jsonResponse: { /** Represents a preview of an Instant Key with hotel, guest, and access information. */