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
9 changes: 8 additions & 1 deletion src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54189,7 +54189,14 @@ export default {
},
connector_type: {
description: 'Type of connector to create',
enum: ['mock', 'mews', 'rms', 'cloudbeds', 'smoobu'],
enum: [
'mock',
'mews',
'rms',
'cloudbeds',
'smoobu',
'zonal',
],
type: 'string',
},
customer_key: {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62925,7 +62925,7 @@ export type Routes = {
queryParams: {}
jsonBody: {
/** Type of connector to create */
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu'
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu' | 'zonal'
/** Key identifying the customer */
customer_key?: string | undefined
/** Instance-specific configuration for the connector */
Expand Down