Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Feb 11, 2025
1 parent 315a074 commit 419a359
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
53 changes: 53 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19463,6 +19463,59 @@ export default {
'x-response-key': 'bridge',
},
},
'/bridges/list': {
post: {
operationId: 'bridgesListPost',
requestBody: {
content: {
'application/json': { schema: { properties: {}, type: 'object' } },
},
},
responses: {
200: {
content: {
'application/json': {
schema: {
properties: {
bridges: {
items: {
properties: {
bridge_id: { format: 'uuid', type: 'string' },
created_at: { format: 'date-time', type: 'string' },
workspace_id: { format: 'uuid', type: 'string' },
},
required: ['bridge_id', 'workspace_id', 'created_at'],
type: 'object',
'x-route-path': '/bridges',
'x-undocumented': 'Unreleased.',
},
type: 'array',
},
ok: { type: 'boolean' },
},
required: ['bridges', 'ok'],
type: 'object',
},
},
},
description: 'OK',
},
400: { description: 'Bad Request' },
401: { description: 'Unauthorized' },
},
security: [
{ pat_with_workspace: [] },
{ console_session_with_workspace: [] },
{ api_key: [] },
],
summary: '/bridges/list',
tags: [],
'x-fern-sdk-group-name': ['bridges'],
'x-fern-sdk-method-name': 'list',
'x-fern-sdk-return-value': 'bridges',
'x-response-key': 'bridges',
},
},
'/client_sessions/create': {
post: {
operationId: 'clientSessionsCreatePost',
Expand Down
15 changes: 15 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15101,6 +15101,21 @@ export interface Routes {
}
}
}
'/bridges/list': {
route: '/bridges/list'
method: 'GET' | 'POST'
queryParams: {}
jsonBody: {}
commonParams: {}
formData: {}
jsonResponse: {
bridges: Array<{
bridge_id: string
workspace_id: string
created_at: string
}>
}
}
'/client_sessions/create': {
route: '/client_sessions/create'
method: 'POST' | 'PUT'
Expand Down

0 comments on commit 419a359

Please sign in to comment.