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 @@ -36557,6 +36557,16 @@ const openapi: OpenAPISpec = {
type: 'string',
},
},
{
in: 'query',
name: 'device_id',
schema: {
description:
'ID of the device by which you want to filter the list of Access Grants.',
format: 'uuid',
type: 'string',
},
},
{
in: 'query',
name: 'location_id',
Expand Down Expand Up @@ -36685,6 +36695,12 @@ const openapi: OpenAPISpec = {
'Customer key for which you want to list access grants.',
type: 'string',
},
device_id: {
description:
'ID of the device by which you want to filter the list of Access Grants.',
format: 'uuid',
type: 'string',
},
limit: {
default: 500,
description:
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 @@ -16234,6 +16234,8 @@ export type Routes = {
acs_system_id?: string | undefined
/** ID of the entrance by which you want to filter the list of Access Grants. */
acs_entrance_id?: string | undefined
/** ID of the device by which you want to filter the list of Access Grants. */
device_id?: string | undefined
/**
* @deprecated Use `space_id`.*/
location_id?: string | undefined
Expand Down
Loading