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
22 changes: 22 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72025,6 +72025,12 @@ const openapi: OpenAPISpec = {
items: { format: 'uuid', type: 'string' },
type: 'array',
},
connected_account_ids: {
description:
'IDs of connected accounts (third-party accounts) to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account a space came from.',
items: { format: 'uuid', type: 'string' },
type: 'array',
},
device_ids: {
description:
'IDs of the devices that you want to add to the new space.',
Expand Down Expand Up @@ -73631,6 +73637,10 @@ const openapi: OpenAPISpec = {
},
type: 'array',
},
connected_account_ids: {
items: { format: 'uuid', type: 'string' },
type: 'array',
},
devices: {
items: {
properties: {
Expand Down Expand Up @@ -73664,6 +73674,7 @@ const openapi: OpenAPISpec = {
'partner_resource_key',
'devices',
'acs_entrances',
'connected_account_ids',
],
type: 'object',
},
Expand Down Expand Up @@ -73761,6 +73772,10 @@ const openapi: OpenAPISpec = {
},
type: 'array',
},
connected_account_ids: {
items: { format: 'uuid', type: 'string' },
type: 'array',
},
devices: {
items: {
properties: {
Expand Down Expand Up @@ -73794,6 +73809,7 @@ const openapi: OpenAPISpec = {
'partner_resource_key',
'devices',
'acs_entrances',
'connected_account_ids',
],
type: 'object',
},
Expand Down Expand Up @@ -74196,6 +74212,12 @@ const openapi: OpenAPISpec = {
items: { format: 'uuid', type: 'string' },
type: 'array',
},
connected_account_ids: {
description:
'IDs of connected accounts to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account(s) a space came from.',
items: { format: 'uuid', type: 'string' },
type: 'array',
},
customer_data: {
description:
'Reservation/stay-related defaults for the space.',
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 @@ -81295,6 +81295,8 @@ export type Routes = {
device_ids?: string[] | undefined
/** IDs of the entrances that you want to add to the new space. */
acs_entrance_ids?: string[] | undefined
/** IDs of connected accounts (third-party accounts) to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account a space came from. */
connected_account_ids?: string[] | undefined
/** Space key of the parent space for this space. */
parent_space_key?: string | undefined
/** Name of the parent space for this space. */
Expand Down Expand Up @@ -82497,6 +82499,7 @@ export type Routes = {
needs_review?: boolean | undefined
is_draft?: boolean | undefined
is_common_area?: boolean | undefined
connected_account_ids: string[]
}[]
}
maxDuration: undefined
Expand Down Expand Up @@ -82559,6 +82562,8 @@ export type Routes = {
device_ids?: string[] | undefined
/** IDs of the entrances that you want to add to the new space. */
acs_entrance_ids?: string[] | undefined
/** IDs of connected accounts to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account(s) a space came from. */
connected_account_ids?: string[] | undefined
/** Customer key for which you want to create the space. */
customer_key?: string | undefined
/** Reservation/stay-related defaults for the space. */
Expand Down
Loading