From 4fbe04bb62dcd504f435116f1459604a755c8d26 Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Thu, 2 Jul 2026 22:25:59 +0000 Subject: [PATCH] feat: Sync with Seam API via f9600cae4054d65b63d5f0563ea0f8e08ea4997d --- src/lib/seam/connect/models/devices/device.ts | 102 ++- src/lib/seam/connect/openapi.ts | 350 ++++---- src/lib/seam/connect/route-types.ts | 744 +++++++++--------- 3 files changed, 643 insertions(+), 553 deletions(-) diff --git a/src/lib/seam/connect/models/devices/device.ts b/src/lib/seam/connect/models/devices/device.ts index 670c35aa..2b34ed86 100644 --- a/src/lib/seam/connect/models/devices/device.ts +++ b/src/lib/seam/connect/models/devices/device.ts @@ -244,6 +244,26 @@ const salto_ks_subscription_limit_exceeded = common_device_error.extend({ Indicates that the Salto site user limit has been reached. `) +const dormakaba_sites_disconnected = common_device_error.extend({ + error_code: z + .literal('dormakaba_sites_disconnected') + .describe(error_code_description), + is_connected_account_error: z + .literal(true) + .describe( + 'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.', + ), + is_device_error: z + .literal(false) + .describe('Indicates that the error is not a device error.'), +}).describe(` + --- + resource_type: connected_account + variant_group_key: locks + --- + Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support. + `) + const ttlock_lock_not_paired_to_gateway = common_device_error.extend({ error_code: z .literal('ttlock_lock_not_paired_to_gateway') @@ -252,6 +272,7 @@ const ttlock_lock_not_paired_to_gateway = common_device_error.extend({ --- resource_type: device deprecated: Use \`hub_disconnected\` instead. + variant_group_key: locks --- Indicates that the lock is not paired with a gateway. `) @@ -298,6 +319,7 @@ const lockly_missing_wifi_bridge = common_device_error.extend({ --- resource_type: device deprecated: Use \`hub_disconnected\` instead. + variant_group_key: locks --- Indicates that the Lockly lock is not connected to a Wi-Fi bridge. `) @@ -306,6 +328,7 @@ export const device_error = z .discriminatedUnion('error_code', [ account_disconnected, salto_ks_subscription_limit_exceeded, + dormakaba_sites_disconnected, device_offline, device_removed, hub_disconnected, @@ -337,6 +360,9 @@ export const device_error_map = z.object({ salto_ks_subscription_limit_exceeded: salto_ks_subscription_limit_exceeded .optional() .nullable(), + dormakaba_sites_disconnected: dormakaba_sites_disconnected + .optional() + .nullable(), ttlock_lock_not_paired_to_gateway: ttlock_lock_not_paired_to_gateway .optional() .nullable(), @@ -407,15 +433,18 @@ const salto_ks_privacy_mode = common_device_warning.extend({ Indicates that the Salto KS lock is in Privacy Mode. Access Codes will not unlock doors. `) -const salto_ks_subscription_limit_almost_reached = common_device_warning - .extend({ +const salto_ks_subscription_limit_almost_reached = common_device_warning.extend( + { warning_code: z .literal('salto_ks_subscription_limit_almost_reached') .describe(warning_code_description), - }) - .describe( - 'Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Increase your subscription limit or delete some users from your site.', - ) + }, +).describe(` + --- + variant_group_key: locks + --- + Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Increase your subscription limit or delete some users from your site. + `) const salto_ks_lock_access_code_support_removed = common_device_warning.extend({ warning_code: z @@ -435,6 +464,7 @@ const wyze_device_missing_gateway = common_device_warning.extend({ }).describe(` --- deprecated: Use \`hub_disconnected\` device error instead. + variant_group_key: locks --- Indicates that the Wyze Lock is not connected to a gateway. `) @@ -463,6 +493,9 @@ const ttlock_weak_gateway_signal = common_device_warning.extend({ .literal('ttlock_weak_gateway_signal') .describe(warning_code_description), }).describe(` + --- + variant_group_key: locks + --- Indicates that the gateway signal is weak. `) @@ -512,35 +545,38 @@ const device_has_flaky_connection = common_device_warning }) .describe('Indicates that the device has a flaky connection.') -const lockly_time_zone_not_configured = common_device_warning - .extend({ - warning_code: z - .literal('lockly_time_zone_not_configured') - .describe(warning_code_description), - }) - .describe( - 'Indicates that Seam detected that the Lockly device does not have a time zone configured. Time-bound codes may not work as expected.', - ) +const lockly_time_zone_not_configured = common_device_warning.extend({ + warning_code: z + .literal('lockly_time_zone_not_configured') + .describe(warning_code_description), +}).describe(` + --- + variant_group_key: locks + --- + Indicates that Seam detected that the Lockly device does not have a time zone configured. Time-bound codes may not work as expected. + `) -const ultraloq_time_zone_unknown = common_device_warning - .extend({ - warning_code: z - .literal('ultraloq_time_zone_unknown') - .describe(warning_code_description), - }) - .describe( - 'Indicates that Seam does not know the time zone of the Ultraloq device. Set a time zone to enable time-bound access codes.', - ) +const ultraloq_time_zone_unknown = common_device_warning.extend({ + warning_code: z + .literal('ultraloq_time_zone_unknown') + .describe(warning_code_description), +}).describe(` + --- + variant_group_key: locks + --- + Indicates that Seam does not know the time zone of the Ultraloq device. Set a time zone to enable time-bound access codes. + `) -const two_n_device_missing_timezone = common_device_warning - .extend({ - warning_code: z - .literal('two_n_device_missing_timezone') - .describe(warning_code_description), - }) - .describe( - 'Indicates that the 2N device does not have a time zone configured. Configure a time zone on the device to enable access codes.', - ) +const two_n_device_missing_timezone = common_device_warning.extend({ + warning_code: z + .literal('two_n_device_missing_timezone') + .describe(warning_code_description), +}).describe(` + --- + variant_group_key: locks + --- + Indicates that the 2N device does not have a time zone configured. Configure a time zone on the device to enable access codes. + `) export const unknown_issue_with_phone = common_device_warning.extend({ warning_code: z diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index d6a713a1..60000105 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -617,6 +617,51 @@ const openapi: OpenAPISpec = { 'x-resource-type': 'connected_account', 'x-variant-group-key': 'locks', }, + { + description: + 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.', + properties: { + created_at: { + description: + 'Date and time at which Seam created the error.', + format: 'date-time', + type: 'string', + }, + error_code: { + description: + 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.', + enum: ['dormakaba_sites_disconnected'], + type: 'string', + }, + is_connected_account_error: { + description: + 'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.', + enum: [true], + type: 'boolean', + }, + is_device_error: { + description: + 'Indicates that the error is not a device error.', + enum: [false], + type: 'boolean', + }, + message: { + description: + 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.', + type: 'string', + }, + }, + required: [ + 'message', + 'is_device_error', + 'created_at', + 'error_code', + 'is_connected_account_error', + ], + type: 'object', + 'x-resource-type': 'connected_account', + 'x-variant-group-key': 'locks', + }, { deprecated: true, description: 'Indicates that the device is offline.', @@ -917,6 +962,7 @@ const openapi: OpenAPISpec = { type: 'object', 'x-deprecated': 'Use `hub_disconnected` instead.', 'x-resource-type': 'device', + 'x-variant-group-key': 'locks', }, { description: 'Indicates that device credentials are missing.', @@ -1066,6 +1112,7 @@ const openapi: OpenAPISpec = { type: 'object', 'x-deprecated': 'Use `hub_disconnected` instead.', 'x-resource-type': 'device', + 'x-variant-group-key': 'locks', }, { description: @@ -1103,42 +1150,6 @@ const openapi: OpenAPISpec = { type: 'object', 'x-resource-type': 'connected_account', }, - { - description: - 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.', - properties: { - created_at: { - description: - 'Date and time at which Seam created the error.', - format: 'date-time', - type: 'string', - }, - error_code: { - description: - 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.', - enum: ['dormakaba_sites_disconnected'], - type: 'string', - }, - is_bridge_error: { - description: - 'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).', - type: 'boolean', - }, - is_connected_account_error: { - description: - 'Indicates whether the error is related specifically to the connected account.', - type: 'boolean', - }, - message: { - description: - 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.', - type: 'string', - }, - }, - required: ['created_at', 'message', 'error_code'], - type: 'object', - 'x-resource-type': 'connected_account', - }, ], }, type: 'array', @@ -13223,6 +13234,51 @@ const openapi: OpenAPISpec = { 'x-resource-type': 'connected_account', 'x-variant-group-key': 'locks', }, + { + description: + 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.', + properties: { + created_at: { + description: + 'Date and time at which Seam created the error.', + format: 'date-time', + type: 'string', + }, + error_code: { + description: + 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.', + enum: ['dormakaba_sites_disconnected'], + type: 'string', + }, + is_connected_account_error: { + description: + 'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.', + enum: [true], + type: 'boolean', + }, + is_device_error: { + description: + 'Indicates that the error is not a device error.', + enum: [false], + type: 'boolean', + }, + message: { + description: + 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.', + type: 'string', + }, + }, + required: [ + 'message', + 'is_device_error', + 'created_at', + 'error_code', + 'is_connected_account_error', + ], + type: 'object', + 'x-resource-type': 'connected_account', + 'x-variant-group-key': 'locks', + }, { deprecated: true, description: 'Indicates that the device is offline.', @@ -13523,6 +13579,7 @@ const openapi: OpenAPISpec = { type: 'object', 'x-deprecated': 'Use `hub_disconnected` instead.', 'x-resource-type': 'device', + 'x-variant-group-key': 'locks', }, { description: 'Indicates that device credentials are missing.', @@ -13672,6 +13729,7 @@ const openapi: OpenAPISpec = { type: 'object', 'x-deprecated': 'Use `hub_disconnected` instead.', 'x-resource-type': 'device', + 'x-variant-group-key': 'locks', }, { description: @@ -13709,42 +13767,6 @@ const openapi: OpenAPISpec = { type: 'object', 'x-resource-type': 'connected_account', }, - { - description: - 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.', - properties: { - created_at: { - description: - 'Date and time at which Seam created the error.', - format: 'date-time', - type: 'string', - }, - error_code: { - description: - 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.', - enum: ['dormakaba_sites_disconnected'], - type: 'string', - }, - is_bridge_error: { - description: - 'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).', - type: 'boolean', - }, - is_connected_account_error: { - description: - 'Indicates whether the error is related specifically to the connected account.', - type: 'boolean', - }, - message: { - description: - 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.', - type: 'string', - }, - }, - required: ['created_at', 'message', 'error_code'], - type: 'object', - 'x-resource-type': 'connected_account', - }, ], }, type: 'array', @@ -16577,6 +16599,7 @@ const openapi: OpenAPISpec = { type: 'object', 'x-deprecated': 'Use `hub_disconnected` device error instead.', + 'x-variant-group-key': 'locks', }, { description: @@ -16630,8 +16653,7 @@ const openapi: OpenAPISpec = { 'x-variant-group-key': 'locks', }, { - description: - '\n Indicates that the gateway signal is weak.\n ', + description: 'Indicates that the gateway signal is weak.', properties: { created_at: { description: @@ -16653,6 +16675,7 @@ const openapi: OpenAPISpec = { }, required: ['message', 'created_at', 'warning_code'], type: 'object', + 'x-variant-group-key': 'locks', }, { description: @@ -16857,6 +16880,7 @@ const openapi: OpenAPISpec = { }, required: ['message', 'created_at', 'warning_code'], type: 'object', + 'x-variant-group-key': 'locks', }, { description: @@ -16934,6 +16958,7 @@ const openapi: OpenAPISpec = { }, required: ['message', 'created_at', 'warning_code'], type: 'object', + 'x-variant-group-key': 'locks', }, { description: @@ -16959,6 +16984,7 @@ const openapi: OpenAPISpec = { }, required: ['message', 'created_at', 'warning_code'], type: 'object', + 'x-variant-group-key': 'locks', }, { description: @@ -16984,6 +17010,7 @@ const openapi: OpenAPISpec = { }, required: ['message', 'created_at', 'warning_code'], type: 'object', + 'x-variant-group-key': 'locks', }, { description: @@ -29342,6 +29369,51 @@ const openapi: OpenAPISpec = { 'x-resource-type': 'connected_account', 'x-variant-group-key': 'locks', }, + { + description: + 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.', + properties: { + created_at: { + description: + 'Date and time at which Seam created the error.', + format: 'date-time', + type: 'string', + }, + error_code: { + description: + 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.', + enum: ['dormakaba_sites_disconnected'], + type: 'string', + }, + is_connected_account_error: { + description: + 'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.', + enum: [true], + type: 'boolean', + }, + is_device_error: { + description: + 'Indicates that the error is not a device error.', + enum: [false], + type: 'boolean', + }, + message: { + description: + 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.', + type: 'string', + }, + }, + required: [ + 'message', + 'is_device_error', + 'created_at', + 'error_code', + 'is_connected_account_error', + ], + type: 'object', + 'x-resource-type': 'connected_account', + 'x-variant-group-key': 'locks', + }, { deprecated: true, description: 'Indicates that the device is offline.', @@ -29642,6 +29714,7 @@ const openapi: OpenAPISpec = { type: 'object', 'x-deprecated': 'Use `hub_disconnected` instead.', 'x-resource-type': 'device', + 'x-variant-group-key': 'locks', }, { description: 'Indicates that device credentials are missing.', @@ -29791,6 +29864,7 @@ const openapi: OpenAPISpec = { type: 'object', 'x-deprecated': 'Use `hub_disconnected` instead.', 'x-resource-type': 'device', + 'x-variant-group-key': 'locks', }, { description: @@ -29828,42 +29902,6 @@ const openapi: OpenAPISpec = { type: 'object', 'x-resource-type': 'connected_account', }, - { - description: - 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.', - properties: { - created_at: { - description: - 'Date and time at which Seam created the error.', - format: 'date-time', - type: 'string', - }, - error_code: { - description: - 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.', - enum: ['dormakaba_sites_disconnected'], - type: 'string', - }, - is_bridge_error: { - description: - 'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).', - type: 'boolean', - }, - is_connected_account_error: { - description: - 'Indicates whether the error is related specifically to the connected account.', - type: 'boolean', - }, - message: { - description: - 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.', - type: 'string', - }, - }, - required: ['created_at', 'message', 'error_code'], - type: 'object', - 'x-resource-type': 'connected_account', - }, ], }, type: 'array', @@ -32455,6 +32493,51 @@ const openapi: OpenAPISpec = { 'x-resource-type': 'connected_account', 'x-variant-group-key': 'locks', }, + { + description: + 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.', + properties: { + created_at: { + description: + 'Date and time at which Seam created the error.', + format: 'date-time', + type: 'string', + }, + error_code: { + description: + 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.', + enum: ['dormakaba_sites_disconnected'], + type: 'string', + }, + is_connected_account_error: { + description: + 'Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error.', + enum: [true], + type: 'boolean', + }, + is_device_error: { + description: + 'Indicates that the error is not a device error.', + enum: [false], + type: 'boolean', + }, + message: { + description: + 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.', + type: 'string', + }, + }, + required: [ + 'message', + 'is_device_error', + 'created_at', + 'error_code', + 'is_connected_account_error', + ], + type: 'object', + 'x-resource-type': 'connected_account', + 'x-variant-group-key': 'locks', + }, { deprecated: true, description: 'Indicates that the device is offline.', @@ -32755,6 +32838,7 @@ const openapi: OpenAPISpec = { type: 'object', 'x-deprecated': 'Use `hub_disconnected` instead.', 'x-resource-type': 'device', + 'x-variant-group-key': 'locks', }, { description: 'Indicates that device credentials are missing.', @@ -32904,6 +32988,7 @@ const openapi: OpenAPISpec = { type: 'object', 'x-deprecated': 'Use `hub_disconnected` instead.', 'x-resource-type': 'device', + 'x-variant-group-key': 'locks', }, { description: @@ -32941,42 +33026,6 @@ const openapi: OpenAPISpec = { type: 'object', 'x-resource-type': 'connected_account', }, - { - description: - 'Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.', - properties: { - created_at: { - description: - 'Date and time at which Seam created the error.', - format: 'date-time', - type: 'string', - }, - error_code: { - description: - 'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.', - enum: ['dormakaba_sites_disconnected'], - type: 'string', - }, - is_bridge_error: { - description: - 'Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge).', - type: 'boolean', - }, - is_connected_account_error: { - description: - 'Indicates whether the error is related specifically to the connected account.', - type: 'boolean', - }, - message: { - description: - 'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.', - type: 'string', - }, - }, - required: ['created_at', 'message', 'error_code'], - type: 'object', - 'x-resource-type': 'connected_account', - }, ], }, type: 'array', @@ -33263,6 +33312,7 @@ const openapi: OpenAPISpec = { type: 'object', 'x-deprecated': 'Use `hub_disconnected` device error instead.', + 'x-variant-group-key': 'locks', }, { description: @@ -33316,8 +33366,7 @@ const openapi: OpenAPISpec = { 'x-variant-group-key': 'locks', }, { - description: - '\n Indicates that the gateway signal is weak.\n ', + description: 'Indicates that the gateway signal is weak.', properties: { created_at: { description: @@ -33339,6 +33388,7 @@ const openapi: OpenAPISpec = { }, required: ['message', 'created_at', 'warning_code'], type: 'object', + 'x-variant-group-key': 'locks', }, { description: @@ -33543,6 +33593,7 @@ const openapi: OpenAPISpec = { }, required: ['message', 'created_at', 'warning_code'], type: 'object', + 'x-variant-group-key': 'locks', }, { description: @@ -33620,6 +33671,7 @@ const openapi: OpenAPISpec = { }, required: ['message', 'created_at', 'warning_code'], type: 'object', + 'x-variant-group-key': 'locks', }, { description: @@ -33645,6 +33697,7 @@ const openapi: OpenAPISpec = { }, required: ['message', 'created_at', 'warning_code'], type: 'object', + 'x-variant-group-key': 'locks', }, { description: @@ -33670,6 +33723,7 @@ const openapi: OpenAPISpec = { }, required: ['message', 'created_at', 'warning_code'], type: 'object', + 'x-variant-group-key': 'locks', }, { description: diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index f3e91221..2e1a59cd 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -2173,6 +2173,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -2305,18 +2317,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */ warnings: ( @@ -2784,6 +2784,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -2916,18 +2928,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */ warnings: ( @@ -5349,6 +5349,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -5481,18 +5493,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */ warnings: ( @@ -6047,6 +6047,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -6179,18 +6191,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */ warnings: ( @@ -6649,6 +6649,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -6781,18 +6793,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */ warnings: ( @@ -7228,6 +7228,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -7360,18 +7372,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */ warnings: ( @@ -7840,6 +7840,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -7972,18 +7984,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */ warnings: ( @@ -10307,6 +10307,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -10439,18 +10451,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */ warnings: ( @@ -10798,6 +10798,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -10930,18 +10942,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */ warnings: ( @@ -15033,6 +15033,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -15165,18 +15177,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -22843,6 +22843,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -22975,18 +22987,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -48953,6 +48953,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -49085,18 +49097,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -50917,6 +50917,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -51049,18 +51061,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -53028,6 +53028,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -53160,18 +53172,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -53858,6 +53858,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -53990,18 +54002,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -64784,6 +64784,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -64916,18 +64928,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -66508,6 +66508,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -66640,18 +66652,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -68425,6 +68425,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -68557,18 +68569,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -70148,6 +70148,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -70280,18 +70292,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -79760,6 +79760,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -79892,18 +79904,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -81483,6 +81483,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -81615,18 +81627,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -99533,6 +99533,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -99665,18 +99677,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -108213,6 +108213,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -108345,18 +108357,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -113970,6 +113970,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -114102,18 +114114,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -115693,6 +115693,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -115825,18 +115837,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -126240,6 +126240,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -126372,18 +126384,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -127965,6 +127965,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -128097,18 +128109,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -131135,6 +131135,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -131267,18 +131279,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -135095,6 +135095,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -135227,18 +135239,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Array of warnings associated with the device. Each warning object within the array contains two fields: `warning_code` and `message`. `warning_code` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */ warnings: ( @@ -140122,6 +140122,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -140254,18 +140266,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */ warnings: ( @@ -140599,6 +140599,18 @@ export type Routes = { /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ is_connected_account_error: true } + | { + /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ + message: string + /** Indicates that the error is not a device error. */ + is_device_error: false + /** Date and time at which Seam created the error. */ + created_at: string + /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ + error_code: 'dormakaba_sites_disconnected' + /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */ + is_connected_account_error: true + } | { /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ message: string @@ -140731,18 +140743,6 @@ export type Routes = { /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ error_code: 'bridge_disconnected' } - | { - /** Date and time at which Seam created the error. */ - created_at: string - /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */ - message: string - /** Indicates whether the error is related specifically to the connected account. */ - is_connected_account_error?: boolean | undefined - /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */ - is_bridge_error?: boolean | undefined - /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */ - error_code: 'dormakaba_sites_disconnected' - } )[] /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */ warnings: (