From 05e0f2ef4c4b001a003db7e9397ce7bf42f9b77f Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Fri, 27 Oct 2023 09:52:57 -0700 Subject: [PATCH] feat: Add description to one param (#227) --- src/lib/seam/connect/openapi.ts | 28 ++++++++++++++++++++++++---- src/lib/seam/connect/route-types.ts | 4 ++++ 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index aa631f7a..e2b237b8 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -5044,7 +5044,12 @@ export default { schema: { properties: { connect_webview_id: { format: 'uuid', type: 'string' }, - connected_account_id: { format: 'uuid', type: 'string' }, + connected_account_id: { + description: + 'List all devices owned by this connected account', + format: 'uuid', + type: 'string', + }, connected_account_ids: { items: { format: 'uuid', type: 'string' }, minItems: 1, @@ -5349,7 +5354,12 @@ export default { schema: { properties: { connect_webview_id: { format: 'uuid', type: 'string' }, - connected_account_id: { format: 'uuid', type: 'string' }, + connected_account_id: { + description: + 'List all devices owned by this connected account', + format: 'uuid', + type: 'string', + }, connected_account_ids: { items: { format: 'uuid', type: 'string' }, minItems: 1, @@ -6146,7 +6156,12 @@ export default { schema: { properties: { connect_webview_id: { format: 'uuid', type: 'string' }, - connected_account_id: { format: 'uuid', type: 'string' }, + connected_account_id: { + description: + 'List all devices owned by this connected account', + format: 'uuid', + type: 'string', + }, connected_account_ids: { items: { format: 'uuid', type: 'string' }, minItems: 1, @@ -7492,7 +7507,12 @@ export default { schema: { properties: { connect_webview_id: { format: 'uuid', type: 'string' }, - connected_account_id: { format: 'uuid', type: 'string' }, + connected_account_id: { + description: + 'List all devices owned by this connected account', + format: 'uuid', + type: 'string', + }, connected_account_ids: { items: { format: 'uuid', type: 'string' }, minItems: 1, diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index 03892bee..d2c35075 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -1956,6 +1956,7 @@ export interface Routes { queryParams: {} jsonBody: {} commonParams: { + /** List all devices owned by this connected account */ connected_account_id?: string | undefined connected_account_ids?: string[] | undefined connect_webview_id?: string | undefined @@ -2742,6 +2743,7 @@ export interface Routes { queryParams: {} jsonBody: {} commonParams: { + /** List all devices owned by this connected account */ connected_account_id?: string | undefined connected_account_ids?: string[] | undefined connect_webview_id?: string | undefined @@ -3187,6 +3189,7 @@ export interface Routes { queryParams: {} jsonBody: {} commonParams: { + /** List all devices owned by this connected account */ connected_account_id?: string | undefined connected_account_ids?: string[] | undefined connect_webview_id?: string | undefined @@ -4350,6 +4353,7 @@ export interface Routes { queryParams: {} jsonBody: {} commonParams: { + /** List all devices owned by this connected account */ connected_account_id?: string | undefined connected_account_ids?: string[] | undefined connect_webview_id?: string | undefined