@seamapi/types 1.921.0 → 1.923.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +315 -186
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +484 -341
- package/dist/index.cjs +315 -186
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +31 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +31 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +6 -1
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/bridges/bridge-client-session.js +14 -8
- package/lib/seam/connect/models/bridges/bridge-client-session.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +103 -0
- package/lib/seam/connect/models/devices/device.js +55 -16
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -0
- package/lib/seam/connect/models/user-identities/user-identity.js +7 -4
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.js +196 -122
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +341 -341
- package/package.json +2 -2
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +6 -1
- package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +17 -8
- package/src/lib/seam/connect/models/devices/device.ts +69 -33
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +22 -21
- package/src/lib/seam/connect/openapi.ts +225 -148
- package/src/lib/seam/connect/route-types.ts +372 -372
|
@@ -2173,6 +2173,18 @@ export type Routes = {
|
|
|
2173
2173
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
2174
2174
|
is_connected_account_error: true
|
|
2175
2175
|
}
|
|
2176
|
+
| {
|
|
2177
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2178
|
+
message: string
|
|
2179
|
+
/** Indicates that the error is not a device error. */
|
|
2180
|
+
is_device_error: false
|
|
2181
|
+
/** Date and time at which Seam created the error. */
|
|
2182
|
+
created_at: string
|
|
2183
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2184
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
2185
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
2186
|
+
is_connected_account_error: true
|
|
2187
|
+
}
|
|
2176
2188
|
| {
|
|
2177
2189
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2178
2190
|
message: string
|
|
@@ -2305,18 +2317,6 @@ export type Routes = {
|
|
|
2305
2317
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2306
2318
|
error_code: 'bridge_disconnected'
|
|
2307
2319
|
}
|
|
2308
|
-
| {
|
|
2309
|
-
/** Date and time at which Seam created the error. */
|
|
2310
|
-
created_at: string
|
|
2311
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2312
|
-
message: string
|
|
2313
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
2314
|
-
is_connected_account_error?: boolean | undefined
|
|
2315
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
2316
|
-
is_bridge_error?: boolean | undefined
|
|
2317
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2318
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
2319
|
-
}
|
|
2320
2320
|
)[]
|
|
2321
2321
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
2322
2322
|
warnings: (
|
|
@@ -2784,6 +2784,18 @@ export type Routes = {
|
|
|
2784
2784
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
2785
2785
|
is_connected_account_error: true
|
|
2786
2786
|
}
|
|
2787
|
+
| {
|
|
2788
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2789
|
+
message: string
|
|
2790
|
+
/** Indicates that the error is not a device error. */
|
|
2791
|
+
is_device_error: false
|
|
2792
|
+
/** Date and time at which Seam created the error. */
|
|
2793
|
+
created_at: string
|
|
2794
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2795
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
2796
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
2797
|
+
is_connected_account_error: true
|
|
2798
|
+
}
|
|
2787
2799
|
| {
|
|
2788
2800
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2789
2801
|
message: string
|
|
@@ -2916,18 +2928,6 @@ export type Routes = {
|
|
|
2916
2928
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2917
2929
|
error_code: 'bridge_disconnected'
|
|
2918
2930
|
}
|
|
2919
|
-
| {
|
|
2920
|
-
/** Date and time at which Seam created the error. */
|
|
2921
|
-
created_at: string
|
|
2922
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2923
|
-
message: string
|
|
2924
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
2925
|
-
is_connected_account_error?: boolean | undefined
|
|
2926
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
2927
|
-
is_bridge_error?: boolean | undefined
|
|
2928
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2929
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
2930
|
-
}
|
|
2931
2931
|
)[]
|
|
2932
2932
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
2933
2933
|
warnings: (
|
|
@@ -5349,6 +5349,18 @@ export type Routes = {
|
|
|
5349
5349
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
5350
5350
|
is_connected_account_error: true
|
|
5351
5351
|
}
|
|
5352
|
+
| {
|
|
5353
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5354
|
+
message: string
|
|
5355
|
+
/** Indicates that the error is not a device error. */
|
|
5356
|
+
is_device_error: false
|
|
5357
|
+
/** Date and time at which Seam created the error. */
|
|
5358
|
+
created_at: string
|
|
5359
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5360
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
5361
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
5362
|
+
is_connected_account_error: true
|
|
5363
|
+
}
|
|
5352
5364
|
| {
|
|
5353
5365
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5354
5366
|
message: string
|
|
@@ -5481,18 +5493,6 @@ export type Routes = {
|
|
|
5481
5493
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5482
5494
|
error_code: 'bridge_disconnected'
|
|
5483
5495
|
}
|
|
5484
|
-
| {
|
|
5485
|
-
/** Date and time at which Seam created the error. */
|
|
5486
|
-
created_at: string
|
|
5487
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5488
|
-
message: string
|
|
5489
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
5490
|
-
is_connected_account_error?: boolean | undefined
|
|
5491
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
5492
|
-
is_bridge_error?: boolean | undefined
|
|
5493
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5494
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
5495
|
-
}
|
|
5496
5496
|
)[]
|
|
5497
5497
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
5498
5498
|
warnings: (
|
|
@@ -6047,6 +6047,18 @@ export type Routes = {
|
|
|
6047
6047
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6048
6048
|
is_connected_account_error: true
|
|
6049
6049
|
}
|
|
6050
|
+
| {
|
|
6051
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6052
|
+
message: string
|
|
6053
|
+
/** Indicates that the error is not a device error. */
|
|
6054
|
+
is_device_error: false
|
|
6055
|
+
/** Date and time at which Seam created the error. */
|
|
6056
|
+
created_at: string
|
|
6057
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6058
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
6059
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6060
|
+
is_connected_account_error: true
|
|
6061
|
+
}
|
|
6050
6062
|
| {
|
|
6051
6063
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6052
6064
|
message: string
|
|
@@ -6179,18 +6191,6 @@ export type Routes = {
|
|
|
6179
6191
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6180
6192
|
error_code: 'bridge_disconnected'
|
|
6181
6193
|
}
|
|
6182
|
-
| {
|
|
6183
|
-
/** Date and time at which Seam created the error. */
|
|
6184
|
-
created_at: string
|
|
6185
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6186
|
-
message: string
|
|
6187
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
6188
|
-
is_connected_account_error?: boolean | undefined
|
|
6189
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
6190
|
-
is_bridge_error?: boolean | undefined
|
|
6191
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6192
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
6193
|
-
}
|
|
6194
6194
|
)[]
|
|
6195
6195
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
6196
6196
|
warnings: (
|
|
@@ -6649,6 +6649,18 @@ export type Routes = {
|
|
|
6649
6649
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6650
6650
|
is_connected_account_error: true
|
|
6651
6651
|
}
|
|
6652
|
+
| {
|
|
6653
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6654
|
+
message: string
|
|
6655
|
+
/** Indicates that the error is not a device error. */
|
|
6656
|
+
is_device_error: false
|
|
6657
|
+
/** Date and time at which Seam created the error. */
|
|
6658
|
+
created_at: string
|
|
6659
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6660
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
6661
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
6662
|
+
is_connected_account_error: true
|
|
6663
|
+
}
|
|
6652
6664
|
| {
|
|
6653
6665
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6654
6666
|
message: string
|
|
@@ -6781,18 +6793,6 @@ export type Routes = {
|
|
|
6781
6793
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6782
6794
|
error_code: 'bridge_disconnected'
|
|
6783
6795
|
}
|
|
6784
|
-
| {
|
|
6785
|
-
/** Date and time at which Seam created the error. */
|
|
6786
|
-
created_at: string
|
|
6787
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6788
|
-
message: string
|
|
6789
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
6790
|
-
is_connected_account_error?: boolean | undefined
|
|
6791
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
6792
|
-
is_bridge_error?: boolean | undefined
|
|
6793
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6794
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
6795
|
-
}
|
|
6796
6796
|
)[]
|
|
6797
6797
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
6798
6798
|
warnings: (
|
|
@@ -7228,6 +7228,18 @@ export type Routes = {
|
|
|
7228
7228
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
7229
7229
|
is_connected_account_error: true
|
|
7230
7230
|
}
|
|
7231
|
+
| {
|
|
7232
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7233
|
+
message: string
|
|
7234
|
+
/** Indicates that the error is not a device error. */
|
|
7235
|
+
is_device_error: false
|
|
7236
|
+
/** Date and time at which Seam created the error. */
|
|
7237
|
+
created_at: string
|
|
7238
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7239
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
7240
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
7241
|
+
is_connected_account_error: true
|
|
7242
|
+
}
|
|
7231
7243
|
| {
|
|
7232
7244
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7233
7245
|
message: string
|
|
@@ -7360,18 +7372,6 @@ export type Routes = {
|
|
|
7360
7372
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7361
7373
|
error_code: 'bridge_disconnected'
|
|
7362
7374
|
}
|
|
7363
|
-
| {
|
|
7364
|
-
/** Date and time at which Seam created the error. */
|
|
7365
|
-
created_at: string
|
|
7366
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7367
|
-
message: string
|
|
7368
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
7369
|
-
is_connected_account_error?: boolean | undefined
|
|
7370
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
7371
|
-
is_bridge_error?: boolean | undefined
|
|
7372
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7373
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
7374
|
-
}
|
|
7375
7375
|
)[]
|
|
7376
7376
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
7377
7377
|
warnings: (
|
|
@@ -7840,6 +7840,18 @@ export type Routes = {
|
|
|
7840
7840
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
7841
7841
|
is_connected_account_error: true
|
|
7842
7842
|
}
|
|
7843
|
+
| {
|
|
7844
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7845
|
+
message: string
|
|
7846
|
+
/** Indicates that the error is not a device error. */
|
|
7847
|
+
is_device_error: false
|
|
7848
|
+
/** Date and time at which Seam created the error. */
|
|
7849
|
+
created_at: string
|
|
7850
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7851
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
7852
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
7853
|
+
is_connected_account_error: true
|
|
7854
|
+
}
|
|
7843
7855
|
| {
|
|
7844
7856
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7845
7857
|
message: string
|
|
@@ -7972,18 +7984,6 @@ export type Routes = {
|
|
|
7972
7984
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7973
7985
|
error_code: 'bridge_disconnected'
|
|
7974
7986
|
}
|
|
7975
|
-
| {
|
|
7976
|
-
/** Date and time at which Seam created the error. */
|
|
7977
|
-
created_at: string
|
|
7978
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7979
|
-
message: string
|
|
7980
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
7981
|
-
is_connected_account_error?: boolean | undefined
|
|
7982
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
7983
|
-
is_bridge_error?: boolean | undefined
|
|
7984
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7985
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
7986
|
-
}
|
|
7987
7987
|
)[]
|
|
7988
7988
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
7989
7989
|
warnings: (
|
|
@@ -10307,6 +10307,18 @@ export type Routes = {
|
|
|
10307
10307
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
10308
10308
|
is_connected_account_error: true
|
|
10309
10309
|
}
|
|
10310
|
+
| {
|
|
10311
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10312
|
+
message: string
|
|
10313
|
+
/** Indicates that the error is not a device error. */
|
|
10314
|
+
is_device_error: false
|
|
10315
|
+
/** Date and time at which Seam created the error. */
|
|
10316
|
+
created_at: string
|
|
10317
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10318
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
10319
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
10320
|
+
is_connected_account_error: true
|
|
10321
|
+
}
|
|
10310
10322
|
| {
|
|
10311
10323
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10312
10324
|
message: string
|
|
@@ -10439,18 +10451,6 @@ export type Routes = {
|
|
|
10439
10451
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10440
10452
|
error_code: 'bridge_disconnected'
|
|
10441
10453
|
}
|
|
10442
|
-
| {
|
|
10443
|
-
/** Date and time at which Seam created the error. */
|
|
10444
|
-
created_at: string
|
|
10445
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10446
|
-
message: string
|
|
10447
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
10448
|
-
is_connected_account_error?: boolean | undefined
|
|
10449
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
10450
|
-
is_bridge_error?: boolean | undefined
|
|
10451
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10452
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
10453
|
-
}
|
|
10454
10454
|
)[]
|
|
10455
10455
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
10456
10456
|
warnings: (
|
|
@@ -10798,6 +10798,18 @@ export type Routes = {
|
|
|
10798
10798
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
10799
10799
|
is_connected_account_error: true
|
|
10800
10800
|
}
|
|
10801
|
+
| {
|
|
10802
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10803
|
+
message: string
|
|
10804
|
+
/** Indicates that the error is not a device error. */
|
|
10805
|
+
is_device_error: false
|
|
10806
|
+
/** Date and time at which Seam created the error. */
|
|
10807
|
+
created_at: string
|
|
10808
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10809
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
10810
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
10811
|
+
is_connected_account_error: true
|
|
10812
|
+
}
|
|
10801
10813
|
| {
|
|
10802
10814
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10803
10815
|
message: string
|
|
@@ -10930,18 +10942,6 @@ export type Routes = {
|
|
|
10930
10942
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10931
10943
|
error_code: 'bridge_disconnected'
|
|
10932
10944
|
}
|
|
10933
|
-
| {
|
|
10934
|
-
/** Date and time at which Seam created the error. */
|
|
10935
|
-
created_at: string
|
|
10936
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10937
|
-
message: string
|
|
10938
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
10939
|
-
is_connected_account_error?: boolean | undefined
|
|
10940
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
10941
|
-
is_bridge_error?: boolean | undefined
|
|
10942
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10943
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
10944
|
-
}
|
|
10945
10945
|
)[]
|
|
10946
10946
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
10947
10947
|
warnings: (
|
|
@@ -15033,6 +15033,18 @@ export type Routes = {
|
|
|
15033
15033
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
15034
15034
|
is_connected_account_error: true
|
|
15035
15035
|
}
|
|
15036
|
+
| {
|
|
15037
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
15038
|
+
message: string
|
|
15039
|
+
/** Indicates that the error is not a device error. */
|
|
15040
|
+
is_device_error: false
|
|
15041
|
+
/** Date and time at which Seam created the error. */
|
|
15042
|
+
created_at: string
|
|
15043
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15044
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
15045
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
15046
|
+
is_connected_account_error: true
|
|
15047
|
+
}
|
|
15036
15048
|
| {
|
|
15037
15049
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
15038
15050
|
message: string
|
|
@@ -15165,18 +15177,6 @@ export type Routes = {
|
|
|
15165
15177
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15166
15178
|
error_code: 'bridge_disconnected'
|
|
15167
15179
|
}
|
|
15168
|
-
| {
|
|
15169
|
-
/** Date and time at which Seam created the error. */
|
|
15170
|
-
created_at: string
|
|
15171
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
15172
|
-
message: string
|
|
15173
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
15174
|
-
is_connected_account_error?: boolean | undefined
|
|
15175
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
15176
|
-
is_bridge_error?: boolean | undefined
|
|
15177
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15178
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
15179
|
-
}
|
|
15180
15180
|
)[]
|
|
15181
15181
|
/** 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. */
|
|
15182
15182
|
warnings: (
|
|
@@ -22843,6 +22843,18 @@ export type Routes = {
|
|
|
22843
22843
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
22844
22844
|
is_connected_account_error: true
|
|
22845
22845
|
}
|
|
22846
|
+
| {
|
|
22847
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22848
|
+
message: string
|
|
22849
|
+
/** Indicates that the error is not a device error. */
|
|
22850
|
+
is_device_error: false
|
|
22851
|
+
/** Date and time at which Seam created the error. */
|
|
22852
|
+
created_at: string
|
|
22853
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22854
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
22855
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
22856
|
+
is_connected_account_error: true
|
|
22857
|
+
}
|
|
22846
22858
|
| {
|
|
22847
22859
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22848
22860
|
message: string
|
|
@@ -22975,18 +22987,6 @@ export type Routes = {
|
|
|
22975
22987
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22976
22988
|
error_code: 'bridge_disconnected'
|
|
22977
22989
|
}
|
|
22978
|
-
| {
|
|
22979
|
-
/** Date and time at which Seam created the error. */
|
|
22980
|
-
created_at: string
|
|
22981
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22982
|
-
message: string
|
|
22983
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
22984
|
-
is_connected_account_error?: boolean | undefined
|
|
22985
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
22986
|
-
is_bridge_error?: boolean | undefined
|
|
22987
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
22988
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
22989
|
-
}
|
|
22990
22990
|
)[]
|
|
22991
22991
|
/** 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. */
|
|
22992
22992
|
warnings: (
|
|
@@ -48953,6 +48953,18 @@ export type Routes = {
|
|
|
48953
48953
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
48954
48954
|
is_connected_account_error: true
|
|
48955
48955
|
}
|
|
48956
|
+
| {
|
|
48957
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48958
|
+
message: string
|
|
48959
|
+
/** Indicates that the error is not a device error. */
|
|
48960
|
+
is_device_error: false
|
|
48961
|
+
/** Date and time at which Seam created the error. */
|
|
48962
|
+
created_at: string
|
|
48963
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
48964
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
48965
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
48966
|
+
is_connected_account_error: true
|
|
48967
|
+
}
|
|
48956
48968
|
| {
|
|
48957
48969
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48958
48970
|
message: string
|
|
@@ -49085,18 +49097,6 @@ export type Routes = {
|
|
|
49085
49097
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49086
49098
|
error_code: 'bridge_disconnected'
|
|
49087
49099
|
}
|
|
49088
|
-
| {
|
|
49089
|
-
/** Date and time at which Seam created the error. */
|
|
49090
|
-
created_at: string
|
|
49091
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49092
|
-
message: string
|
|
49093
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
49094
|
-
is_connected_account_error?: boolean | undefined
|
|
49095
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
49096
|
-
is_bridge_error?: boolean | undefined
|
|
49097
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
49098
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
49099
|
-
}
|
|
49100
49100
|
)[]
|
|
49101
49101
|
/** 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. */
|
|
49102
49102
|
warnings: (
|
|
@@ -50917,6 +50917,18 @@ export type Routes = {
|
|
|
50917
50917
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
50918
50918
|
is_connected_account_error: true
|
|
50919
50919
|
}
|
|
50920
|
+
| {
|
|
50921
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50922
|
+
message: string
|
|
50923
|
+
/** Indicates that the error is not a device error. */
|
|
50924
|
+
is_device_error: false
|
|
50925
|
+
/** Date and time at which Seam created the error. */
|
|
50926
|
+
created_at: string
|
|
50927
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
50928
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
50929
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
50930
|
+
is_connected_account_error: true
|
|
50931
|
+
}
|
|
50920
50932
|
| {
|
|
50921
50933
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50922
50934
|
message: string
|
|
@@ -51049,18 +51061,6 @@ export type Routes = {
|
|
|
51049
51061
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51050
51062
|
error_code: 'bridge_disconnected'
|
|
51051
51063
|
}
|
|
51052
|
-
| {
|
|
51053
|
-
/** Date and time at which Seam created the error. */
|
|
51054
|
-
created_at: string
|
|
51055
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51056
|
-
message: string
|
|
51057
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
51058
|
-
is_connected_account_error?: boolean | undefined
|
|
51059
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
51060
|
-
is_bridge_error?: boolean | undefined
|
|
51061
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
51062
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
51063
|
-
}
|
|
51064
51064
|
)[]
|
|
51065
51065
|
/** 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. */
|
|
51066
51066
|
warnings: (
|
|
@@ -53028,6 +53028,18 @@ export type Routes = {
|
|
|
53028
53028
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
53029
53029
|
is_connected_account_error: true
|
|
53030
53030
|
}
|
|
53031
|
+
| {
|
|
53032
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53033
|
+
message: string
|
|
53034
|
+
/** Indicates that the error is not a device error. */
|
|
53035
|
+
is_device_error: false
|
|
53036
|
+
/** Date and time at which Seam created the error. */
|
|
53037
|
+
created_at: string
|
|
53038
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
53039
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
53040
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
53041
|
+
is_connected_account_error: true
|
|
53042
|
+
}
|
|
53031
53043
|
| {
|
|
53032
53044
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53033
53045
|
message: string
|
|
@@ -53160,18 +53172,6 @@ export type Routes = {
|
|
|
53160
53172
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
53161
53173
|
error_code: 'bridge_disconnected'
|
|
53162
53174
|
}
|
|
53163
|
-
| {
|
|
53164
|
-
/** Date and time at which Seam created the error. */
|
|
53165
|
-
created_at: string
|
|
53166
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53167
|
-
message: string
|
|
53168
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
53169
|
-
is_connected_account_error?: boolean | undefined
|
|
53170
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
53171
|
-
is_bridge_error?: boolean | undefined
|
|
53172
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
53173
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
53174
|
-
}
|
|
53175
53175
|
)[]
|
|
53176
53176
|
/** 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. */
|
|
53177
53177
|
warnings: (
|
|
@@ -53858,6 +53858,18 @@ export type Routes = {
|
|
|
53858
53858
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
53859
53859
|
is_connected_account_error: true
|
|
53860
53860
|
}
|
|
53861
|
+
| {
|
|
53862
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53863
|
+
message: string
|
|
53864
|
+
/** Indicates that the error is not a device error. */
|
|
53865
|
+
is_device_error: false
|
|
53866
|
+
/** Date and time at which Seam created the error. */
|
|
53867
|
+
created_at: string
|
|
53868
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
53869
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
53870
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
53871
|
+
is_connected_account_error: true
|
|
53872
|
+
}
|
|
53861
53873
|
| {
|
|
53862
53874
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53863
53875
|
message: string
|
|
@@ -53990,18 +54002,6 @@ export type Routes = {
|
|
|
53990
54002
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
53991
54003
|
error_code: 'bridge_disconnected'
|
|
53992
54004
|
}
|
|
53993
|
-
| {
|
|
53994
|
-
/** Date and time at which Seam created the error. */
|
|
53995
|
-
created_at: string
|
|
53996
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53997
|
-
message: string
|
|
53998
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
53999
|
-
is_connected_account_error?: boolean | undefined
|
|
54000
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
54001
|
-
is_bridge_error?: boolean | undefined
|
|
54002
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54003
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
54004
|
-
}
|
|
54005
54005
|
)[]
|
|
54006
54006
|
/** 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. */
|
|
54007
54007
|
warnings: (
|
|
@@ -64784,6 +64784,18 @@ export type Routes = {
|
|
|
64784
64784
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
64785
64785
|
is_connected_account_error: true
|
|
64786
64786
|
}
|
|
64787
|
+
| {
|
|
64788
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64789
|
+
message: string
|
|
64790
|
+
/** Indicates that the error is not a device error. */
|
|
64791
|
+
is_device_error: false
|
|
64792
|
+
/** Date and time at which Seam created the error. */
|
|
64793
|
+
created_at: string
|
|
64794
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
64795
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
64796
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
64797
|
+
is_connected_account_error: true
|
|
64798
|
+
}
|
|
64787
64799
|
| {
|
|
64788
64800
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64789
64801
|
message: string
|
|
@@ -64916,18 +64928,6 @@ export type Routes = {
|
|
|
64916
64928
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
64917
64929
|
error_code: 'bridge_disconnected'
|
|
64918
64930
|
}
|
|
64919
|
-
| {
|
|
64920
|
-
/** Date and time at which Seam created the error. */
|
|
64921
|
-
created_at: string
|
|
64922
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64923
|
-
message: string
|
|
64924
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
64925
|
-
is_connected_account_error?: boolean | undefined
|
|
64926
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
64927
|
-
is_bridge_error?: boolean | undefined
|
|
64928
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
64929
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
64930
|
-
}
|
|
64931
64931
|
)[]
|
|
64932
64932
|
/** 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. */
|
|
64933
64933
|
warnings: (
|
|
@@ -66508,6 +66508,18 @@ export type Routes = {
|
|
|
66508
66508
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
66509
66509
|
is_connected_account_error: true
|
|
66510
66510
|
}
|
|
66511
|
+
| {
|
|
66512
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66513
|
+
message: string
|
|
66514
|
+
/** Indicates that the error is not a device error. */
|
|
66515
|
+
is_device_error: false
|
|
66516
|
+
/** Date and time at which Seam created the error. */
|
|
66517
|
+
created_at: string
|
|
66518
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66519
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
66520
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
66521
|
+
is_connected_account_error: true
|
|
66522
|
+
}
|
|
66511
66523
|
| {
|
|
66512
66524
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66513
66525
|
message: string
|
|
@@ -66640,18 +66652,6 @@ export type Routes = {
|
|
|
66640
66652
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66641
66653
|
error_code: 'bridge_disconnected'
|
|
66642
66654
|
}
|
|
66643
|
-
| {
|
|
66644
|
-
/** Date and time at which Seam created the error. */
|
|
66645
|
-
created_at: string
|
|
66646
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66647
|
-
message: string
|
|
66648
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
66649
|
-
is_connected_account_error?: boolean | undefined
|
|
66650
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
66651
|
-
is_bridge_error?: boolean | undefined
|
|
66652
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66653
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
66654
|
-
}
|
|
66655
66655
|
)[]
|
|
66656
66656
|
/** 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. */
|
|
66657
66657
|
warnings: (
|
|
@@ -68425,6 +68425,18 @@ export type Routes = {
|
|
|
68425
68425
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
68426
68426
|
is_connected_account_error: true
|
|
68427
68427
|
}
|
|
68428
|
+
| {
|
|
68429
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68430
|
+
message: string
|
|
68431
|
+
/** Indicates that the error is not a device error. */
|
|
68432
|
+
is_device_error: false
|
|
68433
|
+
/** Date and time at which Seam created the error. */
|
|
68434
|
+
created_at: string
|
|
68435
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68436
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
68437
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
68438
|
+
is_connected_account_error: true
|
|
68439
|
+
}
|
|
68428
68440
|
| {
|
|
68429
68441
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68430
68442
|
message: string
|
|
@@ -68557,18 +68569,6 @@ export type Routes = {
|
|
|
68557
68569
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68558
68570
|
error_code: 'bridge_disconnected'
|
|
68559
68571
|
}
|
|
68560
|
-
| {
|
|
68561
|
-
/** Date and time at which Seam created the error. */
|
|
68562
|
-
created_at: string
|
|
68563
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68564
|
-
message: string
|
|
68565
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
68566
|
-
is_connected_account_error?: boolean | undefined
|
|
68567
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
68568
|
-
is_bridge_error?: boolean | undefined
|
|
68569
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68570
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
68571
|
-
}
|
|
68572
68572
|
)[]
|
|
68573
68573
|
/** 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. */
|
|
68574
68574
|
warnings: (
|
|
@@ -70148,6 +70148,18 @@ export type Routes = {
|
|
|
70148
70148
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
70149
70149
|
is_connected_account_error: true
|
|
70150
70150
|
}
|
|
70151
|
+
| {
|
|
70152
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70153
|
+
message: string
|
|
70154
|
+
/** Indicates that the error is not a device error. */
|
|
70155
|
+
is_device_error: false
|
|
70156
|
+
/** Date and time at which Seam created the error. */
|
|
70157
|
+
created_at: string
|
|
70158
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70159
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
70160
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
70161
|
+
is_connected_account_error: true
|
|
70162
|
+
}
|
|
70151
70163
|
| {
|
|
70152
70164
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70153
70165
|
message: string
|
|
@@ -70280,18 +70292,6 @@ export type Routes = {
|
|
|
70280
70292
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70281
70293
|
error_code: 'bridge_disconnected'
|
|
70282
70294
|
}
|
|
70283
|
-
| {
|
|
70284
|
-
/** Date and time at which Seam created the error. */
|
|
70285
|
-
created_at: string
|
|
70286
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70287
|
-
message: string
|
|
70288
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
70289
|
-
is_connected_account_error?: boolean | undefined
|
|
70290
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
70291
|
-
is_bridge_error?: boolean | undefined
|
|
70292
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70293
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
70294
|
-
}
|
|
70295
70295
|
)[]
|
|
70296
70296
|
/** 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. */
|
|
70297
70297
|
warnings: (
|
|
@@ -79760,6 +79760,18 @@ export type Routes = {
|
|
|
79760
79760
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
79761
79761
|
is_connected_account_error: true
|
|
79762
79762
|
}
|
|
79763
|
+
| {
|
|
79764
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
79765
|
+
message: string
|
|
79766
|
+
/** Indicates that the error is not a device error. */
|
|
79767
|
+
is_device_error: false
|
|
79768
|
+
/** Date and time at which Seam created the error. */
|
|
79769
|
+
created_at: string
|
|
79770
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79771
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
79772
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
79773
|
+
is_connected_account_error: true
|
|
79774
|
+
}
|
|
79763
79775
|
| {
|
|
79764
79776
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
79765
79777
|
message: string
|
|
@@ -79892,18 +79904,6 @@ export type Routes = {
|
|
|
79892
79904
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79893
79905
|
error_code: 'bridge_disconnected'
|
|
79894
79906
|
}
|
|
79895
|
-
| {
|
|
79896
|
-
/** Date and time at which Seam created the error. */
|
|
79897
|
-
created_at: string
|
|
79898
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
79899
|
-
message: string
|
|
79900
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
79901
|
-
is_connected_account_error?: boolean | undefined
|
|
79902
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
79903
|
-
is_bridge_error?: boolean | undefined
|
|
79904
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79905
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
79906
|
-
}
|
|
79907
79907
|
)[]
|
|
79908
79908
|
/** 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. */
|
|
79909
79909
|
warnings: (
|
|
@@ -81483,6 +81483,18 @@ export type Routes = {
|
|
|
81483
81483
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
81484
81484
|
is_connected_account_error: true
|
|
81485
81485
|
}
|
|
81486
|
+
| {
|
|
81487
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81488
|
+
message: string
|
|
81489
|
+
/** Indicates that the error is not a device error. */
|
|
81490
|
+
is_device_error: false
|
|
81491
|
+
/** Date and time at which Seam created the error. */
|
|
81492
|
+
created_at: string
|
|
81493
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
81494
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
81495
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
81496
|
+
is_connected_account_error: true
|
|
81497
|
+
}
|
|
81486
81498
|
| {
|
|
81487
81499
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81488
81500
|
message: string
|
|
@@ -81615,18 +81627,6 @@ export type Routes = {
|
|
|
81615
81627
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
81616
81628
|
error_code: 'bridge_disconnected'
|
|
81617
81629
|
}
|
|
81618
|
-
| {
|
|
81619
|
-
/** Date and time at which Seam created the error. */
|
|
81620
|
-
created_at: string
|
|
81621
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81622
|
-
message: string
|
|
81623
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
81624
|
-
is_connected_account_error?: boolean | undefined
|
|
81625
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
81626
|
-
is_bridge_error?: boolean | undefined
|
|
81627
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
81628
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
81629
|
-
}
|
|
81630
81630
|
)[]
|
|
81631
81631
|
/** 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. */
|
|
81632
81632
|
warnings: (
|
|
@@ -99533,6 +99533,18 @@ export type Routes = {
|
|
|
99533
99533
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
99534
99534
|
is_connected_account_error: true
|
|
99535
99535
|
}
|
|
99536
|
+
| {
|
|
99537
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99538
|
+
message: string
|
|
99539
|
+
/** Indicates that the error is not a device error. */
|
|
99540
|
+
is_device_error: false
|
|
99541
|
+
/** Date and time at which Seam created the error. */
|
|
99542
|
+
created_at: string
|
|
99543
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99544
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
99545
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
99546
|
+
is_connected_account_error: true
|
|
99547
|
+
}
|
|
99536
99548
|
| {
|
|
99537
99549
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99538
99550
|
message: string
|
|
@@ -99665,18 +99677,6 @@ export type Routes = {
|
|
|
99665
99677
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99666
99678
|
error_code: 'bridge_disconnected'
|
|
99667
99679
|
}
|
|
99668
|
-
| {
|
|
99669
|
-
/** Date and time at which Seam created the error. */
|
|
99670
|
-
created_at: string
|
|
99671
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99672
|
-
message: string
|
|
99673
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
99674
|
-
is_connected_account_error?: boolean | undefined
|
|
99675
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
99676
|
-
is_bridge_error?: boolean | undefined
|
|
99677
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
99678
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
99679
|
-
}
|
|
99680
99680
|
)[]
|
|
99681
99681
|
/** 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. */
|
|
99682
99682
|
warnings: (
|
|
@@ -108213,6 +108213,18 @@ export type Routes = {
|
|
|
108213
108213
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
108214
108214
|
is_connected_account_error: true
|
|
108215
108215
|
}
|
|
108216
|
+
| {
|
|
108217
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108218
|
+
message: string
|
|
108219
|
+
/** Indicates that the error is not a device error. */
|
|
108220
|
+
is_device_error: false
|
|
108221
|
+
/** Date and time at which Seam created the error. */
|
|
108222
|
+
created_at: string
|
|
108223
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108224
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
108225
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
108226
|
+
is_connected_account_error: true
|
|
108227
|
+
}
|
|
108216
108228
|
| {
|
|
108217
108229
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108218
108230
|
message: string
|
|
@@ -108345,18 +108357,6 @@ export type Routes = {
|
|
|
108345
108357
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108346
108358
|
error_code: 'bridge_disconnected'
|
|
108347
108359
|
}
|
|
108348
|
-
| {
|
|
108349
|
-
/** Date and time at which Seam created the error. */
|
|
108350
|
-
created_at: string
|
|
108351
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108352
|
-
message: string
|
|
108353
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
108354
|
-
is_connected_account_error?: boolean | undefined
|
|
108355
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
108356
|
-
is_bridge_error?: boolean | undefined
|
|
108357
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108358
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
108359
|
-
}
|
|
108360
108360
|
)[]
|
|
108361
108361
|
/** 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. */
|
|
108362
108362
|
warnings: (
|
|
@@ -113970,6 +113970,18 @@ export type Routes = {
|
|
|
113970
113970
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
113971
113971
|
is_connected_account_error: true
|
|
113972
113972
|
}
|
|
113973
|
+
| {
|
|
113974
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113975
|
+
message: string
|
|
113976
|
+
/** Indicates that the error is not a device error. */
|
|
113977
|
+
is_device_error: false
|
|
113978
|
+
/** Date and time at which Seam created the error. */
|
|
113979
|
+
created_at: string
|
|
113980
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113981
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
113982
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
113983
|
+
is_connected_account_error: true
|
|
113984
|
+
}
|
|
113973
113985
|
| {
|
|
113974
113986
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113975
113987
|
message: string
|
|
@@ -114102,18 +114114,6 @@ export type Routes = {
|
|
|
114102
114114
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
114103
114115
|
error_code: 'bridge_disconnected'
|
|
114104
114116
|
}
|
|
114105
|
-
| {
|
|
114106
|
-
/** Date and time at which Seam created the error. */
|
|
114107
|
-
created_at: string
|
|
114108
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
114109
|
-
message: string
|
|
114110
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
114111
|
-
is_connected_account_error?: boolean | undefined
|
|
114112
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
114113
|
-
is_bridge_error?: boolean | undefined
|
|
114114
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
114115
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
114116
|
-
}
|
|
114117
114117
|
)[]
|
|
114118
114118
|
/** 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. */
|
|
114119
114119
|
warnings: (
|
|
@@ -115693,6 +115693,18 @@ export type Routes = {
|
|
|
115693
115693
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
115694
115694
|
is_connected_account_error: true
|
|
115695
115695
|
}
|
|
115696
|
+
| {
|
|
115697
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115698
|
+
message: string
|
|
115699
|
+
/** Indicates that the error is not a device error. */
|
|
115700
|
+
is_device_error: false
|
|
115701
|
+
/** Date and time at which Seam created the error. */
|
|
115702
|
+
created_at: string
|
|
115703
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115704
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
115705
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
115706
|
+
is_connected_account_error: true
|
|
115707
|
+
}
|
|
115696
115708
|
| {
|
|
115697
115709
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115698
115710
|
message: string
|
|
@@ -115825,18 +115837,6 @@ export type Routes = {
|
|
|
115825
115837
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115826
115838
|
error_code: 'bridge_disconnected'
|
|
115827
115839
|
}
|
|
115828
|
-
| {
|
|
115829
|
-
/** Date and time at which Seam created the error. */
|
|
115830
|
-
created_at: string
|
|
115831
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115832
|
-
message: string
|
|
115833
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
115834
|
-
is_connected_account_error?: boolean | undefined
|
|
115835
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
115836
|
-
is_bridge_error?: boolean | undefined
|
|
115837
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115838
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
115839
|
-
}
|
|
115840
115840
|
)[]
|
|
115841
115841
|
/** 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. */
|
|
115842
115842
|
warnings: (
|
|
@@ -126240,6 +126240,18 @@ export type Routes = {
|
|
|
126240
126240
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
126241
126241
|
is_connected_account_error: true
|
|
126242
126242
|
}
|
|
126243
|
+
| {
|
|
126244
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
126245
|
+
message: string
|
|
126246
|
+
/** Indicates that the error is not a device error. */
|
|
126247
|
+
is_device_error: false
|
|
126248
|
+
/** Date and time at which Seam created the error. */
|
|
126249
|
+
created_at: string
|
|
126250
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
126251
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
126252
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
126253
|
+
is_connected_account_error: true
|
|
126254
|
+
}
|
|
126243
126255
|
| {
|
|
126244
126256
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
126245
126257
|
message: string
|
|
@@ -126372,18 +126384,6 @@ export type Routes = {
|
|
|
126372
126384
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
126373
126385
|
error_code: 'bridge_disconnected'
|
|
126374
126386
|
}
|
|
126375
|
-
| {
|
|
126376
|
-
/** Date and time at which Seam created the error. */
|
|
126377
|
-
created_at: string
|
|
126378
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
126379
|
-
message: string
|
|
126380
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
126381
|
-
is_connected_account_error?: boolean | undefined
|
|
126382
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
126383
|
-
is_bridge_error?: boolean | undefined
|
|
126384
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
126385
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
126386
|
-
}
|
|
126387
126387
|
)[]
|
|
126388
126388
|
/** 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. */
|
|
126389
126389
|
warnings: (
|
|
@@ -127965,6 +127965,18 @@ export type Routes = {
|
|
|
127965
127965
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
127966
127966
|
is_connected_account_error: true
|
|
127967
127967
|
}
|
|
127968
|
+
| {
|
|
127969
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127970
|
+
message: string
|
|
127971
|
+
/** Indicates that the error is not a device error. */
|
|
127972
|
+
is_device_error: false
|
|
127973
|
+
/** Date and time at which Seam created the error. */
|
|
127974
|
+
created_at: string
|
|
127975
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
127976
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
127977
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
127978
|
+
is_connected_account_error: true
|
|
127979
|
+
}
|
|
127968
127980
|
| {
|
|
127969
127981
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
127970
127982
|
message: string
|
|
@@ -128097,18 +128109,6 @@ export type Routes = {
|
|
|
128097
128109
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
128098
128110
|
error_code: 'bridge_disconnected'
|
|
128099
128111
|
}
|
|
128100
|
-
| {
|
|
128101
|
-
/** Date and time at which Seam created the error. */
|
|
128102
|
-
created_at: string
|
|
128103
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
128104
|
-
message: string
|
|
128105
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
128106
|
-
is_connected_account_error?: boolean | undefined
|
|
128107
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
128108
|
-
is_bridge_error?: boolean | undefined
|
|
128109
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
128110
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
128111
|
-
}
|
|
128112
128112
|
)[]
|
|
128113
128113
|
/** 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. */
|
|
128114
128114
|
warnings: (
|
|
@@ -131135,6 +131135,18 @@ export type Routes = {
|
|
|
131135
131135
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
131136
131136
|
is_connected_account_error: true
|
|
131137
131137
|
}
|
|
131138
|
+
| {
|
|
131139
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131140
|
+
message: string
|
|
131141
|
+
/** Indicates that the error is not a device error. */
|
|
131142
|
+
is_device_error: false
|
|
131143
|
+
/** Date and time at which Seam created the error. */
|
|
131144
|
+
created_at: string
|
|
131145
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
131146
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
131147
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
131148
|
+
is_connected_account_error: true
|
|
131149
|
+
}
|
|
131138
131150
|
| {
|
|
131139
131151
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131140
131152
|
message: string
|
|
@@ -131267,18 +131279,6 @@ export type Routes = {
|
|
|
131267
131279
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
131268
131280
|
error_code: 'bridge_disconnected'
|
|
131269
131281
|
}
|
|
131270
|
-
| {
|
|
131271
|
-
/** Date and time at which Seam created the error. */
|
|
131272
|
-
created_at: string
|
|
131273
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131274
|
-
message: string
|
|
131275
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
131276
|
-
is_connected_account_error?: boolean | undefined
|
|
131277
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
131278
|
-
is_bridge_error?: boolean | undefined
|
|
131279
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
131280
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
131281
|
-
}
|
|
131282
131282
|
)[]
|
|
131283
131283
|
/** 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. */
|
|
131284
131284
|
warnings: (
|
|
@@ -135095,6 +135095,18 @@ export type Routes = {
|
|
|
135095
135095
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
135096
135096
|
is_connected_account_error: true
|
|
135097
135097
|
}
|
|
135098
|
+
| {
|
|
135099
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
135100
|
+
message: string
|
|
135101
|
+
/** Indicates that the error is not a device error. */
|
|
135102
|
+
is_device_error: false
|
|
135103
|
+
/** Date and time at which Seam created the error. */
|
|
135104
|
+
created_at: string
|
|
135105
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
135106
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
135107
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
135108
|
+
is_connected_account_error: true
|
|
135109
|
+
}
|
|
135098
135110
|
| {
|
|
135099
135111
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
135100
135112
|
message: string
|
|
@@ -135227,18 +135239,6 @@ export type Routes = {
|
|
|
135227
135239
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
135228
135240
|
error_code: 'bridge_disconnected'
|
|
135229
135241
|
}
|
|
135230
|
-
| {
|
|
135231
|
-
/** Date and time at which Seam created the error. */
|
|
135232
|
-
created_at: string
|
|
135233
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
135234
|
-
message: string
|
|
135235
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
135236
|
-
is_connected_account_error?: boolean | undefined
|
|
135237
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
135238
|
-
is_bridge_error?: boolean | undefined
|
|
135239
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
135240
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
135241
|
-
}
|
|
135242
135242
|
)[]
|
|
135243
135243
|
/** 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. */
|
|
135244
135244
|
warnings: (
|
|
@@ -140122,6 +140122,18 @@ export type Routes = {
|
|
|
140122
140122
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
140123
140123
|
is_connected_account_error: true
|
|
140124
140124
|
}
|
|
140125
|
+
| {
|
|
140126
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140127
|
+
message: string
|
|
140128
|
+
/** Indicates that the error is not a device error. */
|
|
140129
|
+
is_device_error: false
|
|
140130
|
+
/** Date and time at which Seam created the error. */
|
|
140131
|
+
created_at: string
|
|
140132
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140133
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
140134
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
140135
|
+
is_connected_account_error: true
|
|
140136
|
+
}
|
|
140125
140137
|
| {
|
|
140126
140138
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140127
140139
|
message: string
|
|
@@ -140254,18 +140266,6 @@ export type Routes = {
|
|
|
140254
140266
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140255
140267
|
error_code: 'bridge_disconnected'
|
|
140256
140268
|
}
|
|
140257
|
-
| {
|
|
140258
|
-
/** Date and time at which Seam created the error. */
|
|
140259
|
-
created_at: string
|
|
140260
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140261
|
-
message: string
|
|
140262
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
140263
|
-
is_connected_account_error?: boolean | undefined
|
|
140264
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
140265
|
-
is_bridge_error?: boolean | undefined
|
|
140266
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140267
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
140268
|
-
}
|
|
140269
140269
|
)[]
|
|
140270
140270
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
140271
140271
|
warnings: (
|
|
@@ -140599,6 +140599,18 @@ export type Routes = {
|
|
|
140599
140599
|
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
140600
140600
|
is_connected_account_error: true
|
|
140601
140601
|
}
|
|
140602
|
+
| {
|
|
140603
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140604
|
+
message: string
|
|
140605
|
+
/** Indicates that the error is not a device error. */
|
|
140606
|
+
is_device_error: false
|
|
140607
|
+
/** Date and time at which Seam created the error. */
|
|
140608
|
+
created_at: string
|
|
140609
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140610
|
+
error_code: 'dormakaba_sites_disconnected'
|
|
140611
|
+
/** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
|
|
140612
|
+
is_connected_account_error: true
|
|
140613
|
+
}
|
|
140602
140614
|
| {
|
|
140603
140615
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140604
140616
|
message: string
|
|
@@ -140731,18 +140743,6 @@ export type Routes = {
|
|
|
140731
140743
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140732
140744
|
error_code: 'bridge_disconnected'
|
|
140733
140745
|
}
|
|
140734
|
-
| {
|
|
140735
|
-
/** Date and time at which Seam created the error. */
|
|
140736
|
-
created_at: string
|
|
140737
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
140738
|
-
message: string
|
|
140739
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
140740
|
-
is_connected_account_error?: boolean | undefined
|
|
140741
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
|
|
140742
|
-
is_bridge_error?: boolean | undefined
|
|
140743
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
140744
|
-
error_code: 'dormakaba_sites_disconnected'
|
|
140745
|
-
}
|
|
140746
140746
|
)[]
|
|
140747
140747
|
/** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
|
|
140748
140748
|
warnings: (
|