From 5dad78c20bf9c4996b969e46f862bcdb65f3d41b Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Tue, 17 Dec 2024 19:37:12 +0000 Subject: [PATCH] Update via seamapi/seam-connect@6370dca8e004859969fb63caf8c06e29abdb1935 --- .../seam/connect/models/acs/acs-credential.ts | 15 + src/lib/seam/connect/models/acs/acs-system.ts | 18 +- .../connect/models/devices/device-provider.ts | 2 +- src/lib/seam/connect/openapi.ts | 216 ++++- src/lib/seam/connect/route-types.ts | 812 +++++++++++++++++- 5 files changed, 1032 insertions(+), 31 deletions(-) diff --git a/src/lib/seam/connect/models/acs/acs-credential.ts b/src/lib/seam/connect/models/acs/acs-credential.ts index 535ad736..16852a50 100644 --- a/src/lib/seam/connect/models/acs/acs-credential.ts +++ b/src/lib/seam/connect/models/acs/acs-credential.ts @@ -70,12 +70,24 @@ const being_deleted = common_acs_credential_warning }) .describe('Indicates that this credential is being deleted.') +const unknown_issue_with_credential = common_acs_credential_warning + .extend({ + warning_code: z + .literal('unknown_issue_with_credential') + .describe(warning_code_description), + }) + .describe( + 'An unknown issue occurred while syncing the state of this credential with the provider. ' + + 'This issue may affect the proper functioning of this credential.', + ) + const acs_credential_warning = z .union([ waiting_to_be_issued, schedule_externally_modified, schedule_modified, being_deleted, + unknown_issue_with_credential, ]) .describe('Warning associated with the `acs_credential`.') @@ -86,6 +98,9 @@ const acs_credential_warning_map = z.object({ .nullable(), schedule_modified: schedule_modified.optional().nullable(), being_deleted: being_deleted.optional().nullable(), + unknown_issue_with_credential: unknown_issue_with_credential + .optional() + .nullable(), }) export type AcsCredentialWarningMap = z.infer diff --git a/src/lib/seam/connect/models/acs/acs-system.ts b/src/lib/seam/connect/models/acs/acs-system.ts index 4ce8b295..bcaa492e 100644 --- a/src/lib/seam/connect/models/acs/acs-system.ts +++ b/src/lib/seam/connect/models/acs/acs-system.ts @@ -45,8 +45,8 @@ export const acs_system_external_type = z.enum([ 'visionline_system', 'assa_abloy_credential_service', 'latch_building', - 'dormakaba_community', - 'legic_connect', + 'dormakaba_community_site', + 'legic_connect_credential_service', 'assa_abloy_vostio', 'assa_abloy_vostio_credential_service', ]) @@ -267,10 +267,18 @@ export const acs_system = z .describe( 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`.', ), - connected_account_ids: z - .array(z.string().uuid()) + connected_account_ids: z.array(z.string().uuid()).describe( + `IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the \`acs_system\`. + --- + deprecated: Use \`connected_account_id\`. + --- + `, + ), + connected_account_id: z + .string() + .uuid() .describe( - 'IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.', + 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.', ), image_url: z .string() diff --git a/src/lib/seam/connect/models/devices/device-provider.ts b/src/lib/seam/connect/models/devices/device-provider.ts index 7d4c849a..6ab02530 100644 --- a/src/lib/seam/connect/models/devices/device-provider.ts +++ b/src/lib/seam/connect/models/devices/device-provider.ts @@ -88,7 +88,6 @@ export const PROVIDER_CATEGORY_MAP = { 'visionline', 'assa_abloy_credential_service', 'latch', - 'assa_abloy_vostio', ], consumer_smartlocks: [ @@ -116,6 +115,7 @@ export const PROVIDER_CATEGORY_MAP = { 'assa_abloy_vostio', 'assa_abloy_vostio_credential_service', 'salto_space', + 'assa_abloy_vostio', ], internal_beta: ALL_DEVICE_PROVIDERS, diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index 8f5306f4..82bfc21c 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -505,6 +505,31 @@ export default { required: ['created_at', 'message', 'warning_code'], type: 'object', }, + { + description: + 'An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.', + properties: { + created_at: { + description: + 'Date and time at which Seam created the warning.', + format: 'date-time', + type: 'string', + }, + message: { + description: + 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.', + type: 'string', + }, + warning_code: { + description: + 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.', + enum: ['unknown_issue_with_credential'], + type: 'string', + }, + }, + required: ['created_at', 'message', 'warning_code'], + type: 'object', + }, ], }, type: 'array', @@ -747,9 +772,15 @@ export default { 'Indicates whether the `acs_system` supports [removing users from access groups](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups#remove-an-acs-user-from-an-access-group). See also [Access Group-based Access Control Systems](https://docs.seam.co/latest/capability-guides/access-systems/understanding-access-control-system-differences#access-group-based-access-control-systems).', type: 'boolean', }, + connected_account_id: { + description: + 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.', + format: 'uuid', + type: 'string', + }, connected_account_ids: { description: - 'IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.', + 'IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.\n---\ndeprecated: Use `connected_account_id`.\n---', items: { format: 'uuid', type: 'string' }, type: 'array', }, @@ -936,8 +967,8 @@ export default { 'visionline_system', 'assa_abloy_credential_service', 'latch_building', - 'dormakaba_community', - 'legic_connect', + 'dormakaba_community_site', + 'legic_connect_credential_service', 'assa_abloy_vostio', 'assa_abloy_vostio_credential_service', ], @@ -985,8 +1016,8 @@ export default { 'visionline_system', 'assa_abloy_credential_service', 'latch_building', - 'dormakaba_community', - 'legic_connect', + 'dormakaba_community_site', + 'legic_connect_credential_service', 'assa_abloy_vostio', 'assa_abloy_vostio_credential_service', ], @@ -1089,6 +1120,7 @@ export default { 'created_at', 'workspace_id', 'connected_account_ids', + 'connected_account_id', 'image_url', 'image_alt_text', 'errors', @@ -1949,6 +1981,35 @@ export default { ], type: 'object', }, + { + description: + 'An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.', + properties: { + created_at: { + description: + 'Date and time at which Seam created the warning.', + format: 'date-time', + type: 'string', + }, + message: { + description: + 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.', + type: 'string', + }, + warning_code: { + description: + 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.', + enum: ['unknown_issue_with_credential'], + type: 'string', + }, + }, + required: [ + 'created_at', + 'message', + 'warning_code', + ], + type: 'object', + }, ], }, type: 'array', @@ -2247,6 +2308,35 @@ export default { ], type: 'object', }, + { + description: + 'An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.', + properties: { + created_at: { + description: + 'Date and time at which Seam created the warning.', + format: 'date-time', + type: 'string', + }, + message: { + description: + 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.', + type: 'string', + }, + warning_code: { + description: + 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.', + enum: ['unknown_issue_with_credential'], + type: 'string', + }, + }, + required: [ + 'created_at', + 'message', + 'warning_code', + ], + type: 'object', + }, ], }, type: 'array', @@ -2678,6 +2768,35 @@ export default { ], type: 'object', }, + { + description: + 'An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.', + properties: { + created_at: { + description: + 'Date and time at which Seam created the warning.', + format: 'date-time', + type: 'string', + }, + message: { + description: + 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.', + type: 'string', + }, + warning_code: { + description: + 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.', + enum: ['unknown_issue_with_credential'], + type: 'string', + }, + }, + required: [ + 'created_at', + 'message', + 'warning_code', + ], + type: 'object', + }, ], }, type: 'array', @@ -2975,6 +3094,35 @@ export default { ], type: 'object', }, + { + description: + 'An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.', + properties: { + created_at: { + description: + 'Date and time at which Seam created the warning.', + format: 'date-time', + type: 'string', + }, + message: { + description: + 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.', + type: 'string', + }, + warning_code: { + description: + 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.', + enum: ['unknown_issue_with_credential'], + type: 'string', + }, + }, + required: [ + 'created_at', + 'message', + 'warning_code', + ], + type: 'object', + }, ], }, type: 'array', @@ -13678,6 +13826,35 @@ export default { ], type: 'object', }, + { + description: + 'An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.', + properties: { + created_at: { + description: + 'Date and time at which Seam created the warning.', + format: 'date-time', + type: 'string', + }, + message: { + description: + 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.', + type: 'string', + }, + warning_code: { + description: + 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.', + enum: ['unknown_issue_with_credential'], + type: 'string', + }, + }, + required: [ + 'created_at', + 'message', + 'warning_code', + ], + type: 'object', + }, ], }, type: 'array', @@ -14079,6 +14256,35 @@ export default { ], type: 'object', }, + { + description: + 'An unknown issue occurred while syncing the state of this credential with the provider. This issue may affect the proper functioning of this credential.', + properties: { + created_at: { + description: + 'Date and time at which Seam created the warning.', + format: 'date-time', + type: 'string', + }, + message: { + description: + 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.', + type: 'string', + }, + warning_code: { + description: + 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.', + enum: ['unknown_issue_with_credential'], + type: 'string', + }, + }, + required: [ + 'created_at', + 'message', + 'warning_code', + ], + type: 'object', + }, ], }, type: 'array', diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index a5ec5640..9018323f 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -207,6 +207,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -313,6 +321,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -466,6 +482,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -572,6 +596,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -1281,6 +1313,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -1387,6 +1427,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -1540,6 +1588,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -1646,6 +1702,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -2585,6 +2649,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -2691,6 +2763,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -2844,6 +2924,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -2950,6 +3038,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -3646,6 +3742,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -3752,6 +3856,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -3905,6 +4017,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -4011,6 +4131,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -4958,6 +5086,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -5115,6 +5251,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -5240,6 +5384,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -5369,6 +5521,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -5507,6 +5667,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -5717,6 +5885,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -5834,6 +6010,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -5964,6 +6148,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -6085,6 +6277,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -6304,6 +6504,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -6410,6 +6618,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -6563,6 +6779,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -6669,6 +6893,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -7265,6 +7497,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -7371,6 +7611,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -7524,6 +7772,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -7630,6 +7886,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -8345,6 +8609,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -8398,8 +8670,8 @@ export interface Routes { | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' - | 'dormakaba_community' - | 'legic_connect' + | 'dormakaba_community_site' + | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' ) @@ -8431,8 +8703,8 @@ export interface Routes { | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' - | 'dormakaba_community' - | 'legic_connect' + | 'dormakaba_community_site' + | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' ) @@ -8450,8 +8722,13 @@ export interface Routes { created_at: string /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */ workspace_id: string - /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */ + /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. + --- + deprecated: Use `connected_account_id`. + --- */ connected_account_ids: string[] + /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */ + connected_account_id: string /** URL for the image that represents the `acs_system`. */ image_url: string /** Alternative text for the `acs_system` image. */ @@ -8565,8 +8842,8 @@ export interface Routes { | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' - | 'dormakaba_community' - | 'legic_connect' + | 'dormakaba_community_site' + | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' ) @@ -8598,8 +8875,8 @@ export interface Routes { | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' - | 'dormakaba_community' - | 'legic_connect' + | 'dormakaba_community_site' + | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' ) @@ -8617,8 +8894,13 @@ export interface Routes { created_at: string /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */ workspace_id: string - /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */ + /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. + --- + deprecated: Use `connected_account_id`. + --- */ connected_account_ids: string[] + /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */ + connected_account_id: string /** URL for the image that represents the `acs_system`. */ image_url: string /** Alternative text for the `acs_system` image. */ @@ -8732,8 +9014,8 @@ export interface Routes { | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' - | 'dormakaba_community' - | 'legic_connect' + | 'dormakaba_community_site' + | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' ) @@ -8765,8 +9047,8 @@ export interface Routes { | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' - | 'dormakaba_community' - | 'legic_connect' + | 'dormakaba_community_site' + | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' ) @@ -8784,8 +9066,13 @@ export interface Routes { created_at: string /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */ workspace_id: string - /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */ + /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. + --- + deprecated: Use `connected_account_id`. + --- */ connected_account_ids: string[] + /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */ + connected_account_id: string /** URL for the image that represents the `acs_system`. */ image_url: string /** Alternative text for the `acs_system` image. */ @@ -9907,6 +10194,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -10013,6 +10308,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -10166,6 +10469,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -10272,6 +10583,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -10822,6 +11141,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -10928,6 +11255,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -11081,6 +11416,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -11187,6 +11530,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -20104,6 +20455,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -20210,6 +20569,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -20363,6 +20730,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -20469,6 +20844,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -21020,6 +21403,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -21126,6 +21517,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -21279,6 +21678,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -21385,6 +21792,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -23563,6 +23978,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -23669,6 +24092,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -23822,6 +24253,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -23928,6 +24367,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -24489,6 +24936,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -24595,6 +25050,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -24748,6 +25211,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -24854,6 +25325,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -25454,6 +25933,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -25560,6 +26047,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -25713,6 +26208,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -25819,6 +26322,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -26578,6 +27089,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -26684,6 +27203,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -26837,6 +27364,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -26943,6 +27478,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -27500,6 +28043,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -27606,6 +28157,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -27759,6 +28318,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -27865,6 +28432,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -29184,6 +29759,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -29290,6 +29873,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -29443,6 +30034,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -29549,6 +30148,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -30110,6 +30717,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -30216,6 +30831,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -30369,6 +30992,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -30475,6 +31106,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -32616,6 +33255,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -32722,6 +33369,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -32875,6 +33530,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -32981,6 +33644,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -33709,6 +34380,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -33815,6 +34494,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -33968,6 +34655,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -34074,6 +34769,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -34658,6 +35361,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -34764,6 +35475,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -34917,6 +35636,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -35023,6 +35750,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -37109,8 +37844,8 @@ export interface Routes { | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' - | 'dormakaba_community' - | 'legic_connect' + | 'dormakaba_community_site' + | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' ) @@ -37142,8 +37877,8 @@ export interface Routes { | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' - | 'dormakaba_community' - | 'legic_connect' + | 'dormakaba_community_site' + | 'legic_connect_credential_service' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' ) @@ -37161,8 +37896,13 @@ export interface Routes { created_at: string /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */ workspace_id: string - /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */ + /** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. + --- + deprecated: Use `connected_account_id`. + --- */ connected_account_ids: string[] + /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`. */ + connected_account_id: string /** URL for the image that represents the `acs_system`. */ image_url: string /** Alternative text for the `acs_system` image. */ @@ -37751,6 +38491,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -37857,6 +38605,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -38010,6 +38766,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined @@ -38116,6 +38880,14 @@ export interface Routes { /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ warning_code: 'being_deleted' } + | { + /** Date and time at which Seam created the warning. */ + created_at: string + /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */ + warning_code: 'unknown_issue_with_credential' + } > /** Indicates whether the 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). */ is_multi_phone_sync_credential?: boolean | undefined