From fc86e926c64c5b31a9d927f5f3b12d3f982fda1a Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Thu, 26 Dec 2024 23:44:16 +0000 Subject: [PATCH] Update via seamapi/seam-connect@5088ae517fa7203ea7e7ecfbeb0fdba33010c037 --- src/lib/seam/connect/openapi.ts | 9 +++++++++ src/lib/seam/connect/route-types.ts | 7 +++++++ 2 files changed, 16 insertions(+) diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index 1cfa52e7..04130198 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -13070,6 +13070,15 @@ export default { 'Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).', type: 'boolean', }, + salto_space_metadata: { + description: + 'Salto Space-specific metadata for the new credential.', + properties: { + assign_new_key: { type: 'boolean' }, + update_current_key: { type: 'boolean' }, + }, + type: 'object', + }, starts_at: { description: '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.', diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index 3cd21a60..08b9d347 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -5205,6 +5205,13 @@ export interface Routes { override_guest_acs_entrance_ids?: string[] | undefined } | undefined + /** Salto Space-specific metadata for the new credential. */ + salto_space_metadata?: + | { + assign_new_key?: boolean | undefined + update_current_key?: boolean | 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`. */