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
20 changes: 15 additions & 5 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38185,17 +38185,24 @@ export default {
{
in: 'query',
name: 'access_grant_id',
required: true,
schema: {
description: 'ID of Access Grant to list access methods for.',
format: 'uuid',
type: 'string',
},
},
{
in: 'query',
name: 'access_grant_key',
schema: {
description: 'Key of Access Grant to list access methods for.',
minLength: 1,
type: 'string',
},
},
{
in: 'query',
name: 'device_id',
required: false,
schema: {
description:
'ID of the device for which you want to retrieve all access methods.',
Expand All @@ -38206,7 +38213,6 @@ export default {
{
in: 'query',
name: 'acs_entrance_id',
required: false,
schema: {
description:
'ID of the entrance for which you want to retrieve all access methods.',
Expand All @@ -38217,7 +38223,6 @@ export default {
{
in: 'query',
name: 'space_id',
required: false,
schema: {
description:
'ID of the space for which you want to retrieve all access methods.',
Expand Down Expand Up @@ -38278,6 +38283,12 @@ export default {
format: 'uuid',
type: 'string',
},
access_grant_key: {
description:
'Key of Access Grant to list access methods for.',
minLength: 1,
type: 'string',
},
acs_entrance_id: {
description:
'ID of the entrance for which you want to retrieve all access methods.',
Expand All @@ -38297,7 +38308,6 @@ export default {
type: 'string',
},
},
required: ['access_grant_id'],
type: 'object',
},
},
Expand Down
4 changes: 3 additions & 1 deletion src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19219,7 +19219,9 @@ export type Routes = {
jsonBody: {}
commonParams: {
/** ID of Access Grant to list access methods for. */
access_grant_id: string
access_grant_id?: string | undefined
/** Key of Access Grant to list access methods for. */
access_grant_key?: string | undefined
/** ID of the device for which you want to retrieve all access methods. */
device_id?: string | undefined
/** ID of the entrance for which you want to retrieve all access methods. */
Expand Down
Loading