Skip to content

Commit

Permalink
feat: Add description to one param (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot authored Oct 27, 2023
1 parent d332fb9 commit 05e0f2e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 4 deletions.
28 changes: 24 additions & 4 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down
4 changes: 4 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 05e0f2e

Please sign in to comment.