From 278bebc548df7ea27767f8d108030fe8a97be750 Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Mon, 4 Nov 2024 13:01:52 -0800 Subject: [PATCH] feat: Add assa_abloy_vostio_metadata (#1239) --- src/lib/seam/connect/openapi.ts | 13 +++++++++++++ src/lib/seam/connect/route-types.ts | 8 ++++++++ 2 files changed, 21 insertions(+) diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index b405b1cc..bff928fb 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -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).', diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index 5984faeb..58d1d657 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -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`. */