diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index 19bdec40..babfa9fc 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -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', @@ -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: diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index 24f73bc0..e5e8abc9 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -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