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
3 changes: 2 additions & 1 deletion src/lib/seam/connect/models/devices/device-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export const DEVICE_PROVIDERS = {
RING: 'ring',
ICAL: 'ical',
LODGIFY: 'lodgify',
HOSTAWAY: 'hostaway',
} as const

export type DeviceProviderName =
Expand Down Expand Up @@ -143,7 +144,7 @@ export const PROVIDER_CATEGORY_MAP = {

cameras: ['ring'],

connectors: ['ical', 'lodgify'],
connectors: ['ical', 'lodgify', 'hostaway'],

internal_beta: ALL_DEVICE_PROVIDERS,
} as const satisfies Record<string, readonly DeviceProviderName[]>
Expand Down
7 changes: 7 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15864,6 +15864,7 @@ const openapi: OpenAPISpec = {
'ring',
'ical',
'lodgify',
'hostaway',
],
type: 'string',
},
Expand Down Expand Up @@ -49857,6 +49858,7 @@ const openapi: OpenAPISpec = {
'ring',
'ical',
'lodgify',
'hostaway',
'yale_access',
'hid_cm',
'google_nest',
Expand Down Expand Up @@ -54167,6 +54169,7 @@ const openapi: OpenAPISpec = {
'ring',
'ical',
'lodgify',
'hostaway',
],
type: 'string',
},
Expand Down Expand Up @@ -54683,6 +54686,7 @@ const openapi: OpenAPISpec = {
'ring',
'ical',
'lodgify',
'hostaway',
],
type: 'string',
},
Expand Down Expand Up @@ -56514,6 +56518,7 @@ const openapi: OpenAPISpec = {
'ring',
'ical',
'lodgify',
'hostaway',
],
type: 'string',
},
Expand Down Expand Up @@ -57029,6 +57034,7 @@ const openapi: OpenAPISpec = {
'ring',
'ical',
'lodgify',
'hostaway',
],
type: 'string',
},
Expand Down Expand Up @@ -65719,6 +65725,7 @@ const openapi: OpenAPISpec = {
'zonal',
'ical',
'lodgify',
'hostaway',
],
type: 'string',
},
Expand Down
5 changes: 5 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36085,6 +36085,7 @@ export type Routes = {
| 'ring'
| 'ical'
| 'lodgify'
| 'hostaway'
| 'yale_access'
| 'hid_cm'
| 'google_nest'
Expand Down Expand Up @@ -39803,6 +39804,7 @@ export type Routes = {
| 'ring'
| 'ical'
| 'lodgify'
| 'hostaway'
)
| undefined
/** Array of device IDs for which you want to list devices. */
Expand Down Expand Up @@ -41628,6 +41630,7 @@ export type Routes = {
| 'ring'
| 'ical'
| 'lodgify'
| 'hostaway'
display_name: string
image_url: string
provider_categories: (
Expand Down Expand Up @@ -43341,6 +43344,7 @@ export type Routes = {
| 'ring'
| 'ical'
| 'lodgify'
| 'hostaway'
)
| undefined
/** Array of device IDs for which you want to list devices. */
Expand Down Expand Up @@ -76601,6 +76605,7 @@ export type Routes = {
| 'zonal'
| 'ical'
| 'lodgify'
| 'hostaway'
/** Key identifying the customer */
customer_key?: string | undefined
/** Instance-specific configuration for the connector */
Expand Down
Loading