@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.
Files changed (27) hide show
  1. package/dist/connect.cjs +315 -186
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +484 -341
  4. package/dist/index.cjs +315 -186
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +31 -0
  7. package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +31 -0
  8. package/lib/seam/connect/models/access-grants/access-grant.js +6 -1
  9. package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
  10. package/lib/seam/connect/models/bridges/bridge-client-session.js +14 -8
  11. package/lib/seam/connect/models/bridges/bridge-client-session.js.map +1 -1
  12. package/lib/seam/connect/models/devices/device.d.ts +103 -0
  13. package/lib/seam/connect/models/devices/device.js +55 -16
  14. package/lib/seam/connect/models/devices/device.js.map +1 -1
  15. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -0
  16. package/lib/seam/connect/models/user-identities/user-identity.js +7 -4
  17. package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
  18. package/lib/seam/connect/openapi.js +196 -122
  19. package/lib/seam/connect/openapi.js.map +1 -1
  20. package/lib/seam/connect/route-types.d.ts +341 -341
  21. package/package.json +2 -2
  22. package/src/lib/seam/connect/models/access-grants/access-grant.ts +6 -1
  23. package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +17 -8
  24. package/src/lib/seam/connect/models/devices/device.ts +69 -33
  25. package/src/lib/seam/connect/models/user-identities/user-identity.ts +22 -21
  26. package/src/lib/seam/connect/openapi.ts +225 -148
  27. package/src/lib/seam/connect/route-types.ts +372 -372
@@ -1890,6 +1890,17 @@ export type Routes = {
1890
1890
  error_code: 'salto_ks_subscription_limit_exceeded';
1891
1891
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
1892
1892
  is_connected_account_error: true;
1893
+ } | {
1894
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
1895
+ message: string;
1896
+ /** Indicates that the error is not a device error. */
1897
+ is_device_error: false;
1898
+ /** Date and time at which Seam created the error. */
1899
+ created_at: string;
1900
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1901
+ error_code: 'dormakaba_sites_disconnected';
1902
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
1903
+ is_connected_account_error: true;
1893
1904
  } | {
1894
1905
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
1895
1906
  message: string;
@@ -2009,17 +2020,6 @@ export type Routes = {
2009
2020
  is_bridge_error?: boolean | undefined;
2010
2021
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2011
2022
  error_code: 'bridge_disconnected';
2012
- } | {
2013
- /** Date and time at which Seam created the error. */
2014
- created_at: string;
2015
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
2016
- message: string;
2017
- /** Indicates whether the error is related specifically to the connected account. */
2018
- is_connected_account_error?: boolean | undefined;
2019
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
2020
- is_bridge_error?: boolean | undefined;
2021
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2022
- error_code: 'dormakaba_sites_disconnected';
2023
2023
  })[];
2024
2024
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
2025
2025
  warnings: ({
@@ -2446,6 +2446,17 @@ export type Routes = {
2446
2446
  error_code: 'salto_ks_subscription_limit_exceeded';
2447
2447
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
2448
2448
  is_connected_account_error: true;
2449
+ } | {
2450
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
2451
+ message: string;
2452
+ /** Indicates that the error is not a device error. */
2453
+ is_device_error: false;
2454
+ /** Date and time at which Seam created the error. */
2455
+ created_at: string;
2456
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2457
+ error_code: 'dormakaba_sites_disconnected';
2458
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
2459
+ is_connected_account_error: true;
2449
2460
  } | {
2450
2461
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
2451
2462
  message: string;
@@ -2565,17 +2576,6 @@ export type Routes = {
2565
2576
  is_bridge_error?: boolean | undefined;
2566
2577
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2567
2578
  error_code: 'bridge_disconnected';
2568
- } | {
2569
- /** Date and time at which Seam created the error. */
2570
- created_at: string;
2571
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
2572
- message: string;
2573
- /** Indicates whether the error is related specifically to the connected account. */
2574
- is_connected_account_error?: boolean | undefined;
2575
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
2576
- is_bridge_error?: boolean | undefined;
2577
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2578
- error_code: 'dormakaba_sites_disconnected';
2579
2579
  })[];
2580
2580
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
2581
2581
  warnings: ({
@@ -4690,6 +4690,17 @@ export type Routes = {
4690
4690
  error_code: 'salto_ks_subscription_limit_exceeded';
4691
4691
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
4692
4692
  is_connected_account_error: true;
4693
+ } | {
4694
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
4695
+ message: string;
4696
+ /** Indicates that the error is not a device error. */
4697
+ is_device_error: false;
4698
+ /** Date and time at which Seam created the error. */
4699
+ created_at: string;
4700
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4701
+ error_code: 'dormakaba_sites_disconnected';
4702
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
4703
+ is_connected_account_error: true;
4693
4704
  } | {
4694
4705
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
4695
4706
  message: string;
@@ -4809,17 +4820,6 @@ export type Routes = {
4809
4820
  is_bridge_error?: boolean | undefined;
4810
4821
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4811
4822
  error_code: 'bridge_disconnected';
4812
- } | {
4813
- /** Date and time at which Seam created the error. */
4814
- created_at: string;
4815
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
4816
- message: string;
4817
- /** Indicates whether the error is related specifically to the connected account. */
4818
- is_connected_account_error?: boolean | undefined;
4819
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
4820
- is_bridge_error?: boolean | undefined;
4821
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4822
- error_code: 'dormakaba_sites_disconnected';
4823
4823
  })[];
4824
4824
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
4825
4825
  warnings: ({
@@ -5292,6 +5292,17 @@ export type Routes = {
5292
5292
  error_code: 'salto_ks_subscription_limit_exceeded';
5293
5293
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
5294
5294
  is_connected_account_error: true;
5295
+ } | {
5296
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5297
+ message: string;
5298
+ /** Indicates that the error is not a device error. */
5299
+ is_device_error: false;
5300
+ /** Date and time at which Seam created the error. */
5301
+ created_at: string;
5302
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5303
+ error_code: 'dormakaba_sites_disconnected';
5304
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
5305
+ is_connected_account_error: true;
5295
5306
  } | {
5296
5307
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5297
5308
  message: string;
@@ -5411,17 +5422,6 @@ export type Routes = {
5411
5422
  is_bridge_error?: boolean | undefined;
5412
5423
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5413
5424
  error_code: 'bridge_disconnected';
5414
- } | {
5415
- /** Date and time at which Seam created the error. */
5416
- created_at: string;
5417
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5418
- message: string;
5419
- /** Indicates whether the error is related specifically to the connected account. */
5420
- is_connected_account_error?: boolean | undefined;
5421
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
5422
- is_bridge_error?: boolean | undefined;
5423
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5424
- error_code: 'dormakaba_sites_disconnected';
5425
5425
  })[];
5426
5426
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
5427
5427
  warnings: ({
@@ -5839,6 +5839,17 @@ export type Routes = {
5839
5839
  error_code: 'salto_ks_subscription_limit_exceeded';
5840
5840
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
5841
5841
  is_connected_account_error: true;
5842
+ } | {
5843
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5844
+ message: string;
5845
+ /** Indicates that the error is not a device error. */
5846
+ is_device_error: false;
5847
+ /** Date and time at which Seam created the error. */
5848
+ created_at: string;
5849
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5850
+ error_code: 'dormakaba_sites_disconnected';
5851
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
5852
+ is_connected_account_error: true;
5842
5853
  } | {
5843
5854
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5844
5855
  message: string;
@@ -5958,17 +5969,6 @@ export type Routes = {
5958
5969
  is_bridge_error?: boolean | undefined;
5959
5970
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5960
5971
  error_code: 'bridge_disconnected';
5961
- } | {
5962
- /** Date and time at which Seam created the error. */
5963
- created_at: string;
5964
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
5965
- message: string;
5966
- /** Indicates whether the error is related specifically to the connected account. */
5967
- is_connected_account_error?: boolean | undefined;
5968
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
5969
- is_bridge_error?: boolean | undefined;
5970
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5971
- error_code: 'dormakaba_sites_disconnected';
5972
5972
  })[];
5973
5973
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
5974
5974
  warnings: ({
@@ -6363,6 +6363,17 @@ export type Routes = {
6363
6363
  error_code: 'salto_ks_subscription_limit_exceeded';
6364
6364
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
6365
6365
  is_connected_account_error: true;
6366
+ } | {
6367
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6368
+ message: string;
6369
+ /** Indicates that the error is not a device error. */
6370
+ is_device_error: false;
6371
+ /** Date and time at which Seam created the error. */
6372
+ created_at: string;
6373
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6374
+ error_code: 'dormakaba_sites_disconnected';
6375
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
6376
+ is_connected_account_error: true;
6366
6377
  } | {
6367
6378
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6368
6379
  message: string;
@@ -6482,17 +6493,6 @@ export type Routes = {
6482
6493
  is_bridge_error?: boolean | undefined;
6483
6494
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6484
6495
  error_code: 'bridge_disconnected';
6485
- } | {
6486
- /** Date and time at which Seam created the error. */
6487
- created_at: string;
6488
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6489
- message: string;
6490
- /** Indicates whether the error is related specifically to the connected account. */
6491
- is_connected_account_error?: boolean | undefined;
6492
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
6493
- is_bridge_error?: boolean | undefined;
6494
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6495
- error_code: 'dormakaba_sites_disconnected';
6496
6496
  })[];
6497
6497
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
6498
6498
  warnings: ({
@@ -6920,6 +6920,17 @@ export type Routes = {
6920
6920
  error_code: 'salto_ks_subscription_limit_exceeded';
6921
6921
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
6922
6922
  is_connected_account_error: true;
6923
+ } | {
6924
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6925
+ message: string;
6926
+ /** Indicates that the error is not a device error. */
6927
+ is_device_error: false;
6928
+ /** Date and time at which Seam created the error. */
6929
+ created_at: string;
6930
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6931
+ error_code: 'dormakaba_sites_disconnected';
6932
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
6933
+ is_connected_account_error: true;
6923
6934
  } | {
6924
6935
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6925
6936
  message: string;
@@ -7039,17 +7050,6 @@ export type Routes = {
7039
7050
  is_bridge_error?: boolean | undefined;
7040
7051
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
7041
7052
  error_code: 'bridge_disconnected';
7042
- } | {
7043
- /** Date and time at which Seam created the error. */
7044
- created_at: string;
7045
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
7046
- message: string;
7047
- /** Indicates whether the error is related specifically to the connected account. */
7048
- is_connected_account_error?: boolean | undefined;
7049
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
7050
- is_bridge_error?: boolean | undefined;
7051
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
7052
- error_code: 'dormakaba_sites_disconnected';
7053
7053
  })[];
7054
7054
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
7055
7055
  warnings: ({
@@ -9073,6 +9073,17 @@ export type Routes = {
9073
9073
  error_code: 'salto_ks_subscription_limit_exceeded';
9074
9074
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
9075
9075
  is_connected_account_error: true;
9076
+ } | {
9077
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9078
+ message: string;
9079
+ /** Indicates that the error is not a device error. */
9080
+ is_device_error: false;
9081
+ /** Date and time at which Seam created the error. */
9082
+ created_at: string;
9083
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
9084
+ error_code: 'dormakaba_sites_disconnected';
9085
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
9086
+ is_connected_account_error: true;
9076
9087
  } | {
9077
9088
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9078
9089
  message: string;
@@ -9192,17 +9203,6 @@ export type Routes = {
9192
9203
  is_bridge_error?: boolean | undefined;
9193
9204
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
9194
9205
  error_code: 'bridge_disconnected';
9195
- } | {
9196
- /** Date and time at which Seam created the error. */
9197
- created_at: string;
9198
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9199
- message: string;
9200
- /** Indicates whether the error is related specifically to the connected account. */
9201
- is_connected_account_error?: boolean | undefined;
9202
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
9203
- is_bridge_error?: boolean | undefined;
9204
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
9205
- error_code: 'dormakaba_sites_disconnected';
9206
9206
  })[];
9207
9207
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
9208
9208
  warnings: ({
@@ -9516,6 +9516,17 @@ export type Routes = {
9516
9516
  error_code: 'salto_ks_subscription_limit_exceeded';
9517
9517
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
9518
9518
  is_connected_account_error: true;
9519
+ } | {
9520
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9521
+ message: string;
9522
+ /** Indicates that the error is not a device error. */
9523
+ is_device_error: false;
9524
+ /** Date and time at which Seam created the error. */
9525
+ created_at: string;
9526
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
9527
+ error_code: 'dormakaba_sites_disconnected';
9528
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
9529
+ is_connected_account_error: true;
9519
9530
  } | {
9520
9531
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9521
9532
  message: string;
@@ -9635,17 +9646,6 @@ export type Routes = {
9635
9646
  is_bridge_error?: boolean | undefined;
9636
9647
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
9637
9648
  error_code: 'bridge_disconnected';
9638
- } | {
9639
- /** Date and time at which Seam created the error. */
9640
- created_at: string;
9641
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9642
- message: string;
9643
- /** Indicates whether the error is related specifically to the connected account. */
9644
- is_connected_account_error?: boolean | undefined;
9645
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
9646
- is_bridge_error?: boolean | undefined;
9647
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
9648
- error_code: 'dormakaba_sites_disconnected';
9649
9649
  })[];
9650
9650
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
9651
9651
  warnings: ({
@@ -13077,6 +13077,17 @@ export type Routes = {
13077
13077
  error_code: 'salto_ks_subscription_limit_exceeded';
13078
13078
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
13079
13079
  is_connected_account_error: true;
13080
+ } | {
13081
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
13082
+ message: string;
13083
+ /** Indicates that the error is not a device error. */
13084
+ is_device_error: false;
13085
+ /** Date and time at which Seam created the error. */
13086
+ created_at: string;
13087
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13088
+ error_code: 'dormakaba_sites_disconnected';
13089
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
13090
+ is_connected_account_error: true;
13080
13091
  } | {
13081
13092
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
13082
13093
  message: string;
@@ -13196,17 +13207,6 @@ export type Routes = {
13196
13207
  is_bridge_error?: boolean | undefined;
13197
13208
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13198
13209
  error_code: 'bridge_disconnected';
13199
- } | {
13200
- /** Date and time at which Seam created the error. */
13201
- created_at: string;
13202
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
13203
- message: string;
13204
- /** Indicates whether the error is related specifically to the connected account. */
13205
- is_connected_account_error?: boolean | undefined;
13206
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
13207
- is_bridge_error?: boolean | undefined;
13208
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13209
- error_code: 'dormakaba_sites_disconnected';
13210
13210
  })[];
13211
13211
  /** 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. */
13212
13212
  warnings: ({
@@ -19725,6 +19725,17 @@ export type Routes = {
19725
19725
  error_code: 'salto_ks_subscription_limit_exceeded';
19726
19726
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
19727
19727
  is_connected_account_error: true;
19728
+ } | {
19729
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
19730
+ message: string;
19731
+ /** Indicates that the error is not a device error. */
19732
+ is_device_error: false;
19733
+ /** Date and time at which Seam created the error. */
19734
+ created_at: string;
19735
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19736
+ error_code: 'dormakaba_sites_disconnected';
19737
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
19738
+ is_connected_account_error: true;
19728
19739
  } | {
19729
19740
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
19730
19741
  message: string;
@@ -19844,17 +19855,6 @@ export type Routes = {
19844
19855
  is_bridge_error?: boolean | undefined;
19845
19856
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19846
19857
  error_code: 'bridge_disconnected';
19847
- } | {
19848
- /** Date and time at which Seam created the error. */
19849
- created_at: string;
19850
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
19851
- message: string;
19852
- /** Indicates whether the error is related specifically to the connected account. */
19853
- is_connected_account_error?: boolean | undefined;
19854
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
19855
- is_bridge_error?: boolean | undefined;
19856
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19857
- error_code: 'dormakaba_sites_disconnected';
19858
19858
  })[];
19859
19859
  /** 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. */
19860
19860
  warnings: ({
@@ -42145,6 +42145,17 @@ export type Routes = {
42145
42145
  error_code: 'salto_ks_subscription_limit_exceeded';
42146
42146
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
42147
42147
  is_connected_account_error: true;
42148
+ } | {
42149
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
42150
+ message: string;
42151
+ /** Indicates that the error is not a device error. */
42152
+ is_device_error: false;
42153
+ /** Date and time at which Seam created the error. */
42154
+ created_at: string;
42155
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
42156
+ error_code: 'dormakaba_sites_disconnected';
42157
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
42158
+ is_connected_account_error: true;
42148
42159
  } | {
42149
42160
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
42150
42161
  message: string;
@@ -42264,17 +42275,6 @@ export type Routes = {
42264
42275
  is_bridge_error?: boolean | undefined;
42265
42276
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
42266
42277
  error_code: 'bridge_disconnected';
42267
- } | {
42268
- /** Date and time at which Seam created the error. */
42269
- created_at: string;
42270
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
42271
- message: string;
42272
- /** Indicates whether the error is related specifically to the connected account. */
42273
- is_connected_account_error?: boolean | undefined;
42274
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
42275
- is_bridge_error?: boolean | undefined;
42276
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
42277
- error_code: 'dormakaba_sites_disconnected';
42278
42278
  })[];
42279
42279
  /** 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. */
42280
42280
  warnings: ({
@@ -43587,6 +43587,17 @@ export type Routes = {
43587
43587
  error_code: 'salto_ks_subscription_limit_exceeded';
43588
43588
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
43589
43589
  is_connected_account_error: true;
43590
+ } | {
43591
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
43592
+ message: string;
43593
+ /** Indicates that the error is not a device error. */
43594
+ is_device_error: false;
43595
+ /** Date and time at which Seam created the error. */
43596
+ created_at: string;
43597
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
43598
+ error_code: 'dormakaba_sites_disconnected';
43599
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
43600
+ is_connected_account_error: true;
43590
43601
  } | {
43591
43602
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
43592
43603
  message: string;
@@ -43706,17 +43717,6 @@ export type Routes = {
43706
43717
  is_bridge_error?: boolean | undefined;
43707
43718
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
43708
43719
  error_code: 'bridge_disconnected';
43709
- } | {
43710
- /** Date and time at which Seam created the error. */
43711
- created_at: string;
43712
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
43713
- message: string;
43714
- /** Indicates whether the error is related specifically to the connected account. */
43715
- is_connected_account_error?: boolean | undefined;
43716
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
43717
- is_bridge_error?: boolean | undefined;
43718
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
43719
- error_code: 'dormakaba_sites_disconnected';
43720
43720
  })[];
43721
43721
  /** 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. */
43722
43722
  warnings: ({
@@ -44222,6 +44222,17 @@ export type Routes = {
44222
44222
  error_code: 'salto_ks_subscription_limit_exceeded';
44223
44223
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
44224
44224
  is_connected_account_error: true;
44225
+ } | {
44226
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
44227
+ message: string;
44228
+ /** Indicates that the error is not a device error. */
44229
+ is_device_error: false;
44230
+ /** Date and time at which Seam created the error. */
44231
+ created_at: string;
44232
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
44233
+ error_code: 'dormakaba_sites_disconnected';
44234
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
44235
+ is_connected_account_error: true;
44225
44236
  } | {
44226
44237
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
44227
44238
  message: string;
@@ -44341,17 +44352,6 @@ export type Routes = {
44341
44352
  is_bridge_error?: boolean | undefined;
44342
44353
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
44343
44354
  error_code: 'bridge_disconnected';
44344
- } | {
44345
- /** Date and time at which Seam created the error. */
44346
- created_at: string;
44347
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
44348
- message: string;
44349
- /** Indicates whether the error is related specifically to the connected account. */
44350
- is_connected_account_error?: boolean | undefined;
44351
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
44352
- is_bridge_error?: boolean | undefined;
44353
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
44354
- error_code: 'dormakaba_sites_disconnected';
44355
44355
  })[];
44356
44356
  /** 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. */
44357
44357
  warnings: ({
@@ -44759,6 +44759,17 @@ export type Routes = {
44759
44759
  error_code: 'salto_ks_subscription_limit_exceeded';
44760
44760
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
44761
44761
  is_connected_account_error: true;
44762
+ } | {
44763
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
44764
+ message: string;
44765
+ /** Indicates that the error is not a device error. */
44766
+ is_device_error: false;
44767
+ /** Date and time at which Seam created the error. */
44768
+ created_at: string;
44769
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
44770
+ error_code: 'dormakaba_sites_disconnected';
44771
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
44772
+ is_connected_account_error: true;
44762
44773
  } | {
44763
44774
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
44764
44775
  message: string;
@@ -44878,17 +44889,6 @@ export type Routes = {
44878
44889
  is_bridge_error?: boolean | undefined;
44879
44890
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
44880
44891
  error_code: 'bridge_disconnected';
44881
- } | {
44882
- /** Date and time at which Seam created the error. */
44883
- created_at: string;
44884
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
44885
- message: string;
44886
- /** Indicates whether the error is related specifically to the connected account. */
44887
- is_connected_account_error?: boolean | undefined;
44888
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
44889
- is_bridge_error?: boolean | undefined;
44890
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
44891
- error_code: 'dormakaba_sites_disconnected';
44892
44892
  })[];
44893
44893
  /** 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. */
44894
44894
  warnings: ({
@@ -54080,6 +54080,17 @@ export type Routes = {
54080
54080
  error_code: 'salto_ks_subscription_limit_exceeded';
54081
54081
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
54082
54082
  is_connected_account_error: true;
54083
+ } | {
54084
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
54085
+ message: string;
54086
+ /** Indicates that the error is not a device error. */
54087
+ is_device_error: false;
54088
+ /** Date and time at which Seam created the error. */
54089
+ created_at: string;
54090
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
54091
+ error_code: 'dormakaba_sites_disconnected';
54092
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
54093
+ is_connected_account_error: true;
54083
54094
  } | {
54084
54095
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
54085
54096
  message: string;
@@ -54199,17 +54210,6 @@ export type Routes = {
54199
54210
  is_bridge_error?: boolean | undefined;
54200
54211
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
54201
54212
  error_code: 'bridge_disconnected';
54202
- } | {
54203
- /** Date and time at which Seam created the error. */
54204
- created_at: string;
54205
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
54206
- message: string;
54207
- /** Indicates whether the error is related specifically to the connected account. */
54208
- is_connected_account_error?: boolean | undefined;
54209
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
54210
- is_bridge_error?: boolean | undefined;
54211
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
54212
- error_code: 'dormakaba_sites_disconnected';
54213
54213
  })[];
54214
54214
  /** 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. */
54215
54215
  warnings: ({
@@ -55472,6 +55472,17 @@ export type Routes = {
55472
55472
  error_code: 'salto_ks_subscription_limit_exceeded';
55473
55473
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
55474
55474
  is_connected_account_error: true;
55475
+ } | {
55476
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55477
+ message: string;
55478
+ /** Indicates that the error is not a device error. */
55479
+ is_device_error: false;
55480
+ /** Date and time at which Seam created the error. */
55481
+ created_at: string;
55482
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55483
+ error_code: 'dormakaba_sites_disconnected';
55484
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
55485
+ is_connected_account_error: true;
55475
55486
  } | {
55476
55487
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55477
55488
  message: string;
@@ -55591,17 +55602,6 @@ export type Routes = {
55591
55602
  is_bridge_error?: boolean | undefined;
55592
55603
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55593
55604
  error_code: 'bridge_disconnected';
55594
- } | {
55595
- /** Date and time at which Seam created the error. */
55596
- created_at: string;
55597
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55598
- message: string;
55599
- /** Indicates whether the error is related specifically to the connected account. */
55600
- is_connected_account_error?: boolean | undefined;
55601
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
55602
- is_bridge_error?: boolean | undefined;
55603
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
55604
- error_code: 'dormakaba_sites_disconnected';
55605
55605
  })[];
55606
55606
  /** 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. */
55607
55607
  warnings: ({
@@ -56914,6 +56914,17 @@ export type Routes = {
56914
56914
  error_code: 'salto_ks_subscription_limit_exceeded';
56915
56915
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
56916
56916
  is_connected_account_error: true;
56917
+ } | {
56918
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56919
+ message: string;
56920
+ /** Indicates that the error is not a device error. */
56921
+ is_device_error: false;
56922
+ /** Date and time at which Seam created the error. */
56923
+ created_at: string;
56924
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
56925
+ error_code: 'dormakaba_sites_disconnected';
56926
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
56927
+ is_connected_account_error: true;
56917
56928
  } | {
56918
56929
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56919
56930
  message: string;
@@ -57033,17 +57044,6 @@ export type Routes = {
57033
57044
  is_bridge_error?: boolean | undefined;
57034
57045
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
57035
57046
  error_code: 'bridge_disconnected';
57036
- } | {
57037
- /** Date and time at which Seam created the error. */
57038
- created_at: string;
57039
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57040
- message: string;
57041
- /** Indicates whether the error is related specifically to the connected account. */
57042
- is_connected_account_error?: boolean | undefined;
57043
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
57044
- is_bridge_error?: boolean | undefined;
57045
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
57046
- error_code: 'dormakaba_sites_disconnected';
57047
57047
  })[];
57048
57048
  /** 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. */
57049
57049
  warnings: ({
@@ -58305,6 +58305,17 @@ export type Routes = {
58305
58305
  error_code: 'salto_ks_subscription_limit_exceeded';
58306
58306
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
58307
58307
  is_connected_account_error: true;
58308
+ } | {
58309
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
58310
+ message: string;
58311
+ /** Indicates that the error is not a device error. */
58312
+ is_device_error: false;
58313
+ /** Date and time at which Seam created the error. */
58314
+ created_at: string;
58315
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
58316
+ error_code: 'dormakaba_sites_disconnected';
58317
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
58318
+ is_connected_account_error: true;
58308
58319
  } | {
58309
58320
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
58310
58321
  message: string;
@@ -58424,17 +58435,6 @@ export type Routes = {
58424
58435
  is_bridge_error?: boolean | undefined;
58425
58436
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
58426
58437
  error_code: 'bridge_disconnected';
58427
- } | {
58428
- /** Date and time at which Seam created the error. */
58429
- created_at: string;
58430
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
58431
- message: string;
58432
- /** Indicates whether the error is related specifically to the connected account. */
58433
- is_connected_account_error?: boolean | undefined;
58434
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
58435
- is_bridge_error?: boolean | undefined;
58436
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
58437
- error_code: 'dormakaba_sites_disconnected';
58438
58438
  })[];
58439
58439
  /** 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. */
58440
58440
  warnings: ({
@@ -66473,6 +66473,17 @@ export type Routes = {
66473
66473
  error_code: 'salto_ks_subscription_limit_exceeded';
66474
66474
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
66475
66475
  is_connected_account_error: true;
66476
+ } | {
66477
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
66478
+ message: string;
66479
+ /** Indicates that the error is not a device error. */
66480
+ is_device_error: false;
66481
+ /** Date and time at which Seam created the error. */
66482
+ created_at: string;
66483
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
66484
+ error_code: 'dormakaba_sites_disconnected';
66485
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
66486
+ is_connected_account_error: true;
66476
66487
  } | {
66477
66488
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
66478
66489
  message: string;
@@ -66592,17 +66603,6 @@ export type Routes = {
66592
66603
  is_bridge_error?: boolean | undefined;
66593
66604
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
66594
66605
  error_code: 'bridge_disconnected';
66595
- } | {
66596
- /** Date and time at which Seam created the error. */
66597
- created_at: string;
66598
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
66599
- message: string;
66600
- /** Indicates whether the error is related specifically to the connected account. */
66601
- is_connected_account_error?: boolean | undefined;
66602
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
66603
- is_bridge_error?: boolean | undefined;
66604
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
66605
- error_code: 'dormakaba_sites_disconnected';
66606
66606
  })[];
66607
66607
  /** 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. */
66608
66608
  warnings: ({
@@ -67864,6 +67864,17 @@ export type Routes = {
67864
67864
  error_code: 'salto_ks_subscription_limit_exceeded';
67865
67865
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
67866
67866
  is_connected_account_error: true;
67867
+ } | {
67868
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67869
+ message: string;
67870
+ /** Indicates that the error is not a device error. */
67871
+ is_device_error: false;
67872
+ /** Date and time at which Seam created the error. */
67873
+ created_at: string;
67874
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
67875
+ error_code: 'dormakaba_sites_disconnected';
67876
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
67877
+ is_connected_account_error: true;
67867
67878
  } | {
67868
67879
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67869
67880
  message: string;
@@ -67983,17 +67994,6 @@ export type Routes = {
67983
67994
  is_bridge_error?: boolean | undefined;
67984
67995
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
67985
67996
  error_code: 'bridge_disconnected';
67986
- } | {
67987
- /** Date and time at which Seam created the error. */
67988
- created_at: string;
67989
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67990
- message: string;
67991
- /** Indicates whether the error is related specifically to the connected account. */
67992
- is_connected_account_error?: boolean | undefined;
67993
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
67994
- is_bridge_error?: boolean | undefined;
67995
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
67996
- error_code: 'dormakaba_sites_disconnected';
67997
67997
  })[];
67998
67998
  /** 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. */
67999
67999
  warnings: ({
@@ -83316,6 +83316,17 @@ export type Routes = {
83316
83316
  error_code: 'salto_ks_subscription_limit_exceeded';
83317
83317
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
83318
83318
  is_connected_account_error: true;
83319
+ } | {
83320
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
83321
+ message: string;
83322
+ /** Indicates that the error is not a device error. */
83323
+ is_device_error: false;
83324
+ /** Date and time at which Seam created the error. */
83325
+ created_at: string;
83326
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
83327
+ error_code: 'dormakaba_sites_disconnected';
83328
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
83329
+ is_connected_account_error: true;
83319
83330
  } | {
83320
83331
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
83321
83332
  message: string;
@@ -83435,17 +83446,6 @@ export type Routes = {
83435
83446
  is_bridge_error?: boolean | undefined;
83436
83447
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
83437
83448
  error_code: 'bridge_disconnected';
83438
- } | {
83439
- /** Date and time at which Seam created the error. */
83440
- created_at: string;
83441
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
83442
- message: string;
83443
- /** Indicates whether the error is related specifically to the connected account. */
83444
- is_connected_account_error?: boolean | undefined;
83445
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
83446
- is_bridge_error?: boolean | undefined;
83447
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
83448
- error_code: 'dormakaba_sites_disconnected';
83449
83449
  })[];
83450
83450
  /** 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. */
83451
83451
  warnings: ({
@@ -90715,6 +90715,17 @@ export type Routes = {
90715
90715
  error_code: 'salto_ks_subscription_limit_exceeded';
90716
90716
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
90717
90717
  is_connected_account_error: true;
90718
+ } | {
90719
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
90720
+ message: string;
90721
+ /** Indicates that the error is not a device error. */
90722
+ is_device_error: false;
90723
+ /** Date and time at which Seam created the error. */
90724
+ created_at: string;
90725
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
90726
+ error_code: 'dormakaba_sites_disconnected';
90727
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
90728
+ is_connected_account_error: true;
90718
90729
  } | {
90719
90730
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
90720
90731
  message: string;
@@ -90834,17 +90845,6 @@ export type Routes = {
90834
90845
  is_bridge_error?: boolean | undefined;
90835
90846
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
90836
90847
  error_code: 'bridge_disconnected';
90837
- } | {
90838
- /** Date and time at which Seam created the error. */
90839
- created_at: string;
90840
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
90841
- message: string;
90842
- /** Indicates whether the error is related specifically to the connected account. */
90843
- is_connected_account_error?: boolean | undefined;
90844
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
90845
- is_bridge_error?: boolean | undefined;
90846
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
90847
- error_code: 'dormakaba_sites_disconnected';
90848
90848
  })[];
90849
90849
  /** 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. */
90850
90850
  warnings: ({
@@ -95533,6 +95533,17 @@ export type Routes = {
95533
95533
  error_code: 'salto_ks_subscription_limit_exceeded';
95534
95534
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
95535
95535
  is_connected_account_error: true;
95536
+ } | {
95537
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
95538
+ message: string;
95539
+ /** Indicates that the error is not a device error. */
95540
+ is_device_error: false;
95541
+ /** Date and time at which Seam created the error. */
95542
+ created_at: string;
95543
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
95544
+ error_code: 'dormakaba_sites_disconnected';
95545
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
95546
+ is_connected_account_error: true;
95536
95547
  } | {
95537
95548
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
95538
95549
  message: string;
@@ -95652,17 +95663,6 @@ export type Routes = {
95652
95663
  is_bridge_error?: boolean | undefined;
95653
95664
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
95654
95665
  error_code: 'bridge_disconnected';
95655
- } | {
95656
- /** Date and time at which Seam created the error. */
95657
- created_at: string;
95658
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
95659
- message: string;
95660
- /** Indicates whether the error is related specifically to the connected account. */
95661
- is_connected_account_error?: boolean | undefined;
95662
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
95663
- is_bridge_error?: boolean | undefined;
95664
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
95665
- error_code: 'dormakaba_sites_disconnected';
95666
95666
  })[];
95667
95667
  /** 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. */
95668
95668
  warnings: ({
@@ -96924,6 +96924,17 @@ export type Routes = {
96924
96924
  error_code: 'salto_ks_subscription_limit_exceeded';
96925
96925
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
96926
96926
  is_connected_account_error: true;
96927
+ } | {
96928
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
96929
+ message: string;
96930
+ /** Indicates that the error is not a device error. */
96931
+ is_device_error: false;
96932
+ /** Date and time at which Seam created the error. */
96933
+ created_at: string;
96934
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
96935
+ error_code: 'dormakaba_sites_disconnected';
96936
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
96937
+ is_connected_account_error: true;
96927
96938
  } | {
96928
96939
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
96929
96940
  message: string;
@@ -97043,17 +97054,6 @@ export type Routes = {
97043
97054
  is_bridge_error?: boolean | undefined;
97044
97055
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
97045
97056
  error_code: 'bridge_disconnected';
97046
- } | {
97047
- /** Date and time at which Seam created the error. */
97048
- created_at: string;
97049
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
97050
- message: string;
97051
- /** Indicates whether the error is related specifically to the connected account. */
97052
- is_connected_account_error?: boolean | undefined;
97053
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
97054
- is_bridge_error?: boolean | undefined;
97055
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
97056
- error_code: 'dormakaba_sites_disconnected';
97057
97057
  })[];
97058
97058
  /** 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. */
97059
97059
  warnings: ({
@@ -106031,6 +106031,17 @@ export type Routes = {
106031
106031
  error_code: 'salto_ks_subscription_limit_exceeded';
106032
106032
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
106033
106033
  is_connected_account_error: true;
106034
+ } | {
106035
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
106036
+ message: string;
106037
+ /** Indicates that the error is not a device error. */
106038
+ is_device_error: false;
106039
+ /** Date and time at which Seam created the error. */
106040
+ created_at: string;
106041
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
106042
+ error_code: 'dormakaba_sites_disconnected';
106043
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
106044
+ is_connected_account_error: true;
106034
106045
  } | {
106035
106046
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
106036
106047
  message: string;
@@ -106150,17 +106161,6 @@ export type Routes = {
106150
106161
  is_bridge_error?: boolean | undefined;
106151
106162
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
106152
106163
  error_code: 'bridge_disconnected';
106153
- } | {
106154
- /** Date and time at which Seam created the error. */
106155
- created_at: string;
106156
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
106157
- message: string;
106158
- /** Indicates whether the error is related specifically to the connected account. */
106159
- is_connected_account_error?: boolean | undefined;
106160
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
106161
- is_bridge_error?: boolean | undefined;
106162
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
106163
- error_code: 'dormakaba_sites_disconnected';
106164
106164
  })[];
106165
106165
  /** 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. */
106166
106166
  warnings: ({
@@ -107424,6 +107424,17 @@ export type Routes = {
107424
107424
  error_code: 'salto_ks_subscription_limit_exceeded';
107425
107425
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
107426
107426
  is_connected_account_error: true;
107427
+ } | {
107428
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
107429
+ message: string;
107430
+ /** Indicates that the error is not a device error. */
107431
+ is_device_error: false;
107432
+ /** Date and time at which Seam created the error. */
107433
+ created_at: string;
107434
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
107435
+ error_code: 'dormakaba_sites_disconnected';
107436
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
107437
+ is_connected_account_error: true;
107427
107438
  } | {
107428
107439
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
107429
107440
  message: string;
@@ -107543,17 +107554,6 @@ export type Routes = {
107543
107554
  is_bridge_error?: boolean | undefined;
107544
107555
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
107545
107556
  error_code: 'bridge_disconnected';
107546
- } | {
107547
- /** Date and time at which Seam created the error. */
107548
- created_at: string;
107549
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
107550
- message: string;
107551
- /** Indicates whether the error is related specifically to the connected account. */
107552
- is_connected_account_error?: boolean | undefined;
107553
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
107554
- is_bridge_error?: boolean | undefined;
107555
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
107556
- error_code: 'dormakaba_sites_disconnected';
107557
107557
  })[];
107558
107558
  /** 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. */
107559
107559
  warnings: ({
@@ -110072,6 +110072,17 @@ export type Routes = {
110072
110072
  error_code: 'salto_ks_subscription_limit_exceeded';
110073
110073
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
110074
110074
  is_connected_account_error: true;
110075
+ } | {
110076
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
110077
+ message: string;
110078
+ /** Indicates that the error is not a device error. */
110079
+ is_device_error: false;
110080
+ /** Date and time at which Seam created the error. */
110081
+ created_at: string;
110082
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
110083
+ error_code: 'dormakaba_sites_disconnected';
110084
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
110085
+ is_connected_account_error: true;
110075
110086
  } | {
110076
110087
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
110077
110088
  message: string;
@@ -110191,17 +110202,6 @@ export type Routes = {
110191
110202
  is_bridge_error?: boolean | undefined;
110192
110203
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
110193
110204
  error_code: 'bridge_disconnected';
110194
- } | {
110195
- /** Date and time at which Seam created the error. */
110196
- created_at: string;
110197
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
110198
- message: string;
110199
- /** Indicates whether the error is related specifically to the connected account. */
110200
- is_connected_account_error?: boolean | undefined;
110201
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
110202
- is_bridge_error?: boolean | undefined;
110203
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
110204
- error_code: 'dormakaba_sites_disconnected';
110205
110205
  })[];
110206
110206
  /** 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. */
110207
110207
  warnings: ({
@@ -113374,6 +113374,17 @@ export type Routes = {
113374
113374
  error_code: 'salto_ks_subscription_limit_exceeded';
113375
113375
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
113376
113376
  is_connected_account_error: true;
113377
+ } | {
113378
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
113379
+ message: string;
113380
+ /** Indicates that the error is not a device error. */
113381
+ is_device_error: false;
113382
+ /** Date and time at which Seam created the error. */
113383
+ created_at: string;
113384
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
113385
+ error_code: 'dormakaba_sites_disconnected';
113386
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
113387
+ is_connected_account_error: true;
113377
113388
  } | {
113378
113389
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
113379
113390
  message: string;
@@ -113493,17 +113504,6 @@ export type Routes = {
113493
113504
  is_bridge_error?: boolean | undefined;
113494
113505
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
113495
113506
  error_code: 'bridge_disconnected';
113496
- } | {
113497
- /** Date and time at which Seam created the error. */
113498
- created_at: string;
113499
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
113500
- message: string;
113501
- /** Indicates whether the error is related specifically to the connected account. */
113502
- is_connected_account_error?: boolean | undefined;
113503
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
113504
- is_bridge_error?: boolean | undefined;
113505
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
113506
- error_code: 'dormakaba_sites_disconnected';
113507
113507
  })[];
113508
113508
  /** 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. */
113509
113509
  warnings: ({
@@ -117796,6 +117796,17 @@ export type Routes = {
117796
117796
  error_code: 'salto_ks_subscription_limit_exceeded';
117797
117797
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
117798
117798
  is_connected_account_error: true;
117799
+ } | {
117800
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
117801
+ message: string;
117802
+ /** Indicates that the error is not a device error. */
117803
+ is_device_error: false;
117804
+ /** Date and time at which Seam created the error. */
117805
+ created_at: string;
117806
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
117807
+ error_code: 'dormakaba_sites_disconnected';
117808
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
117809
+ is_connected_account_error: true;
117799
117810
  } | {
117800
117811
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
117801
117812
  message: string;
@@ -117915,17 +117926,6 @@ export type Routes = {
117915
117926
  is_bridge_error?: boolean | undefined;
117916
117927
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
117917
117928
  error_code: 'bridge_disconnected';
117918
- } | {
117919
- /** Date and time at which Seam created the error. */
117920
- created_at: string;
117921
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
117922
- message: string;
117923
- /** Indicates whether the error is related specifically to the connected account. */
117924
- is_connected_account_error?: boolean | undefined;
117925
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
117926
- is_bridge_error?: boolean | undefined;
117927
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
117928
- error_code: 'dormakaba_sites_disconnected';
117929
117929
  })[];
117930
117930
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
117931
117931
  warnings: ({
@@ -118223,6 +118223,17 @@ export type Routes = {
118223
118223
  error_code: 'salto_ks_subscription_limit_exceeded';
118224
118224
  /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
118225
118225
  is_connected_account_error: true;
118226
+ } | {
118227
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
118228
+ message: string;
118229
+ /** Indicates that the error is not a device error. */
118230
+ is_device_error: false;
118231
+ /** Date and time at which Seam created the error. */
118232
+ created_at: string;
118233
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
118234
+ error_code: 'dormakaba_sites_disconnected';
118235
+ /** Indicates that the error is a [connected account](https://docs.seam.co/api/connected_accounts) error. */
118236
+ is_connected_account_error: true;
118226
118237
  } | {
118227
118238
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
118228
118239
  message: string;
@@ -118342,17 +118353,6 @@ export type Routes = {
118342
118353
  is_bridge_error?: boolean | undefined;
118343
118354
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
118344
118355
  error_code: 'bridge_disconnected';
118345
- } | {
118346
- /** Date and time at which Seam created the error. */
118347
- created_at: string;
118348
- /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
118349
- message: string;
118350
- /** Indicates whether the error is related specifically to the connected account. */
118351
- is_connected_account_error?: boolean | undefined;
118352
- /** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge). */
118353
- is_bridge_error?: boolean | undefined;
118354
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
118355
- error_code: 'dormakaba_sites_disconnected';
118356
118356
  })[];
118357
118357
  /** Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). */
118358
118358
  warnings: ({