Skip to content

Commit

Permalink
feat: Add assa_abloy_vostio_metadata (#1239)
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot authored Nov 4, 2024
1 parent fbf99d4 commit 278bebc
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8030,6 +8030,19 @@ export default {
items: { format: 'uuid', type: 'string' },
type: 'array',
},
assa_abloy_vostio_metadata: {
description:
'Vostio-specific metadata for the new credential.',
properties: {
join_all_guest_acs_entrances: { type: 'boolean' },
override_all_guest_acs_entrances: { type: 'boolean' },
override_guest_acs_entrance_ids: {
items: { format: 'uuid', type: 'string' },
type: 'array',
},
},
type: 'object',
},
code: {
description:
'Access (PIN) code for the new credential. There may be manufacturer-specific code restrictions. For details, see the applicable [device or system integration guide](https://docs.seam.co/latest/device-and-system-integration-guides/overview).',
Expand Down
8 changes: 8 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4673,6 +4673,14 @@ export interface Routes {
joiner_acs_credential_ids?: string[] | undefined
}
| undefined
/** Vostio-specific metadata for the new credential. */
assa_abloy_vostio_metadata?:
| {
override_all_guest_acs_entrances?: boolean | undefined
join_all_guest_acs_entrances?: boolean | undefined
override_guest_acs_entrance_ids?: string[] | undefined
}
| undefined
/** Date and time at which the validity of the new credential starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
starts_at?: string | undefined
/** Date and time at which the validity of the new credential ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
Expand Down

0 comments on commit 278bebc

Please sign in to comment.