From 72e780ce448218a170a278daf87dcb6a00a65302 Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Tue, 28 Apr 2026 19:46:53 +0000 Subject: [PATCH] feat: Sync with Seam API via eab12db3f758659f7d752a16a09fc1a89653505a --- 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 f3f33555..c15859ee 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -50170,6 +50170,16 @@ export default { type: 'string', }, }, + { + in: 'query', + name: 'space_id', + schema: { + description: + 'ID of the space by which you want to filter connected accounts.', + format: 'uuid', + type: 'string', + }, + }, { in: 'query', name: 'search', @@ -50281,6 +50291,12 @@ export default { minLength: 1, type: 'string', }, + space_id: { + description: + 'ID of the space by which you want to filter connected accounts.', + format: 'uuid', + type: 'string', + }, user_identifier_key: { description: 'Your user ID for the user by which you want to filter connected accounts.', diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index 22d71e3f..b272a6ec 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -36138,6 +36138,8 @@ export type Routes = { | undefined /** Customer key by which you want to filter connected accounts. */ customer_key?: string | undefined + /** ID of the space by which you want to filter connected accounts. */ + space_id?: string | undefined /** String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`. */ search?: string | undefined /** Maximum number of records to return per page. */