From 4b8d721cc61f28bb3ec1b83dc6e2c3dada2a4fae Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Wed, 20 May 2026 20:32:13 +0000 Subject: [PATCH] feat: Sync with Seam API via ae881137d659bb25963d1dff72fdacabb6abd04e --- src/lib/seam/connect/openapi.ts | 16 ++++++++++++++++ src/lib/seam/connect/route-types.ts | 2 ++ 2 files changed, 18 insertions(+) diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index d8055d93..f4c0a918 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -70837,6 +70837,16 @@ const openapi: OpenAPISpec = { type: 'string', }, }, + { + in: 'query', + name: 'connected_account_id', + schema: { + description: + 'Filter reservations by the connected account whose connector discovered them.', + format: 'uuid', + type: 'string', + }, + }, { in: 'query', name: 'limit', @@ -71159,6 +71169,12 @@ const openapi: OpenAPISpec = { minItems: 2, type: 'array', }, + connected_account_id: { + description: + 'Filter reservations by the connected account whose connector discovered them.', + format: 'uuid', + type: 'string', + }, created_after: { description: 'Timestamp by which to limit returned reservations. Returns reservations created after this timestamp.', diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index ab77a8a3..baf25d6b 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -80978,6 +80978,8 @@ export type Routes = { space_key?: string | undefined /** Filter reservations by space ID (UUID). */ space_id?: string | undefined + /** Filter reservations by the connected account whose connector discovered them. */ + connected_account_id?: string | undefined /** Maximum number of records to return per page. */ limit?: number /** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */