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
16 changes: 16 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73442,6 +73442,16 @@ const openapi: OpenAPISpec = {
name: 'collection_key',
schema: { description: 'Collection key.', type: 'string' },
},
{
in: 'query',
name: 'connected_account_id',
schema: {
description:
'Connected account to scope auto-mapping to. Filters partner resources by the matching connector and limits available devices/entrances to this account.',
format: 'uuid',
type: 'string',
},
},
],
responses: {
200: {
Expand Down Expand Up @@ -73557,6 +73567,12 @@ const openapi: OpenAPISpec = {
description: 'Collection key.',
type: 'string',
},
connected_account_id: {
description:
'Connected account to scope auto-mapping to. Filters partner resources by the matching connector and limits available devices/entrances to this account.',
format: 'uuid',
type: 'string',
},
customer_key: {
description: 'Customer key for which to auto-map spaces.',
type: 'string',
Expand Down
2 changes: 2 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82239,6 +82239,8 @@ export type Routes = {
customer_key?: string | undefined
/** Collection key. */
collection_key?: string | undefined
/** Connected account to scope auto-mapping to. Filters partner resources by the matching connector and limits available devices/entrances to this account. */
connected_account_id?: string | undefined
}
formData: {}
jsonResponse: {
Expand Down
Loading