Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 19 additions & 30 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67858,23 +67858,18 @@ const openapi: OpenAPISpec = {
delete: {
description: 'Deletes a site.',
operationId: 'seamConsoleV1SitesDeleteDelete',
requestBody: {
content: {
'application/json': {
schema: {
properties: {
site_id: {
description: 'ID of the site that you want to delete.',
format: 'uuid',
type: 'string',
},
},
required: ['site_id'],
type: 'object',
},
parameters: [
{
in: 'query',
name: 'site_id',
required: true,
schema: {
description: 'ID of the site that you want to delete.',
format: 'uuid',
type: 'string',
},
},
},
],
responses: {
'200': {
content: {
Expand Down Expand Up @@ -79718,23 +79713,17 @@ const openapi: OpenAPISpec = {
'/seam/instant_key/v1/preview/get': {
get: {
operationId: 'seamInstantKeyV1PreviewGetGet',
requestBody: {
content: {
'application/json': {
schema: {
properties: {
instant_key_url: {
description:
'The short code of the instant key to preview.',
type: 'string',
},
},
required: ['instant_key_url'],
type: 'object',
},
parameters: [
{
in: 'query',
name: 'instant_key_url',
required: true,
schema: {
description: 'The short code of the instant key to preview.',
type: 'string',
},
},
},
],
responses: {
'200': {
content: {
Expand Down
8 changes: 4 additions & 4 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95956,11 +95956,11 @@ export type Routes = {
route: '/seam/console/v1/sites/delete'
method: 'DELETE' | 'POST'
queryParams: {}
jsonBody: {
jsonBody: {}
commonParams: {
/** ID of the site that you want to delete. */
site_id: string
}
commonParams: {}
formData: {}
jsonResponse: {}
maxDuration: undefined
Expand Down Expand Up @@ -105410,11 +105410,11 @@ export type Routes = {
route: '/seam/instant_key/v1/preview/get'
method: 'GET' | 'POST'
queryParams: {}
jsonBody: {
jsonBody: {}
commonParams: {
/** The short code of the instant key to preview. */
instant_key_url: string
}
commonParams: {}
formData: {}
jsonResponse: {
/** Represents a preview of an Instant Key with hotel, guest, and access information. */
Expand Down
Loading