@seamapi/types 1.344.1 → 1.344.3

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 (40) hide show
  1. package/dist/connect.cjs +1781 -1992
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +532 -633
  4. package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +33 -28
  5. package/lib/seam/connect/models/access-codes/managed-access-code.js +15 -3
  6. package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
  7. package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +21 -26
  8. package/lib/seam/connect/models/acs/acs-credential.d.ts +2 -2
  9. package/lib/seam/connect/models/acs/acs-credential.js +1 -1
  10. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  11. package/lib/seam/connect/models/acs/acs-system.d.ts +2 -2
  12. package/lib/seam/connect/models/acs/acs-system.js +2 -2
  13. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  14. package/lib/seam/connect/models/acs/acs-user.d.ts +5 -5
  15. package/lib/seam/connect/models/acs/acs-user.js +2 -2
  16. package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
  17. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +4 -4
  18. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +2 -2
  19. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +2 -2
  20. package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +4 -4
  21. package/lib/seam/connect/models/connected-accounts/connected-account.js +6 -3
  22. package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
  23. package/lib/seam/connect/models/devices/device.d.ts +6 -40
  24. package/lib/seam/connect/models/devices/device.js +6 -11
  25. package/lib/seam/connect/models/devices/device.js.map +1 -1
  26. package/lib/seam/connect/models/devices/phone.d.ts +4 -25
  27. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +4 -25
  28. package/lib/seam/connect/openapi.d.ts +271 -223
  29. package/lib/seam/connect/openapi.js +1495 -1720
  30. package/lib/seam/connect/openapi.js.map +1 -1
  31. package/lib/seam/connect/route-types.d.ts +181 -275
  32. package/package.json +1 -1
  33. package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +18 -3
  34. package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -1
  35. package/src/lib/seam/connect/models/acs/acs-system.ts +2 -2
  36. package/src/lib/seam/connect/models/acs/acs-user.ts +2 -2
  37. package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +6 -3
  38. package/src/lib/seam/connect/models/devices/device.ts +8 -12
  39. package/src/lib/seam/connect/openapi.ts +1599 -1832
  40. package/src/lib/seam/connect/route-types.ts +3261 -3494
@@ -901,7 +901,7 @@ export interface Routes {
901
901
  /** Date and time at which the access code was created. */
902
902
  created_at: string;
903
903
  /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
904
- errors: Array<({
904
+ errors: Array<{
905
905
  message: string;
906
906
  is_access_code_error: true;
907
907
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -996,7 +996,7 @@ export interface Routes {
996
996
  is_access_code_error: true;
997
997
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
998
998
  error_code: 'hubitat_no_free_positions_available';
999
- }) | ({
999
+ } | {
1000
1000
  message: string;
1001
1001
  is_device_error: true;
1002
1002
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -1006,11 +1006,6 @@ export interface Routes {
1006
1006
  is_device_error: true;
1007
1007
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1008
1008
  error_code: 'device_removed';
1009
- } | {
1010
- message: string;
1011
- is_device_error: true;
1012
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1013
- error_code: 'account_disconnected';
1014
1009
  } | {
1015
1010
  message: string;
1016
1011
  is_device_error: true;
@@ -1061,17 +1056,17 @@ export interface Routes {
1061
1056
  is_device_error: true;
1062
1057
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1063
1058
  error_code: 'subscription_required';
1064
- }) | ({
1059
+ } | {
1065
1060
  message: string;
1066
1061
  is_connected_account_error: true;
1067
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1062
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1068
1063
  error_code: 'account_disconnected';
1069
1064
  } | {
1070
1065
  message: string;
1071
1066
  is_connected_account_error: true;
1072
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1067
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1073
1068
  error_code: 'invalid_credentials';
1074
- })>;
1069
+ }>;
1075
1070
  /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
1076
1071
  warnings: Array<{
1077
1072
  message: string;
@@ -1085,6 +1080,10 @@ export interface Routes {
1085
1080
  message: string;
1086
1081
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1087
1082
  warning_code: 'schlage_creation_outage';
1083
+ } | {
1084
+ message: string;
1085
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1086
+ warning_code: 'salto_office_mode';
1088
1087
  } | {
1089
1088
  message: string;
1090
1089
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
@@ -1184,7 +1183,7 @@ export interface Routes {
1184
1183
  /** Date and time at which the access code was created. */
1185
1184
  created_at: string;
1186
1185
  /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
1187
- errors: Array<({
1186
+ errors: Array<{
1188
1187
  message: string;
1189
1188
  is_access_code_error: true;
1190
1189
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -1279,7 +1278,7 @@ export interface Routes {
1279
1278
  is_access_code_error: true;
1280
1279
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1281
1280
  error_code: 'hubitat_no_free_positions_available';
1282
- }) | ({
1281
+ } | {
1283
1282
  message: string;
1284
1283
  is_device_error: true;
1285
1284
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -1289,11 +1288,6 @@ export interface Routes {
1289
1288
  is_device_error: true;
1290
1289
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1291
1290
  error_code: 'device_removed';
1292
- } | {
1293
- message: string;
1294
- is_device_error: true;
1295
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1296
- error_code: 'account_disconnected';
1297
1291
  } | {
1298
1292
  message: string;
1299
1293
  is_device_error: true;
@@ -1344,17 +1338,17 @@ export interface Routes {
1344
1338
  is_device_error: true;
1345
1339
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1346
1340
  error_code: 'subscription_required';
1347
- }) | ({
1341
+ } | {
1348
1342
  message: string;
1349
1343
  is_connected_account_error: true;
1350
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1344
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1351
1345
  error_code: 'account_disconnected';
1352
1346
  } | {
1353
1347
  message: string;
1354
1348
  is_connected_account_error: true;
1355
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1349
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1356
1350
  error_code: 'invalid_credentials';
1357
- })>;
1351
+ }>;
1358
1352
  /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
1359
1353
  warnings: Array<{
1360
1354
  message: string;
@@ -1368,6 +1362,10 @@ export interface Routes {
1368
1362
  message: string;
1369
1363
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1370
1364
  warning_code: 'schlage_creation_outage';
1365
+ } | {
1366
+ message: string;
1367
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1368
+ warning_code: 'salto_office_mode';
1371
1369
  } | {
1372
1370
  message: string;
1373
1371
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
@@ -2340,7 +2338,7 @@ export interface Routes {
2340
2338
  /** Date and time at which the access code was created. */
2341
2339
  created_at: string;
2342
2340
  /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
2343
- errors: Array<({
2341
+ errors: Array<{
2344
2342
  message: string;
2345
2343
  is_access_code_error: true;
2346
2344
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -2435,7 +2433,7 @@ export interface Routes {
2435
2433
  is_access_code_error: true;
2436
2434
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2437
2435
  error_code: 'hubitat_no_free_positions_available';
2438
- }) | ({
2436
+ } | {
2439
2437
  message: string;
2440
2438
  is_device_error: true;
2441
2439
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -2445,11 +2443,6 @@ export interface Routes {
2445
2443
  is_device_error: true;
2446
2444
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2447
2445
  error_code: 'device_removed';
2448
- } | {
2449
- message: string;
2450
- is_device_error: true;
2451
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2452
- error_code: 'account_disconnected';
2453
2446
  } | {
2454
2447
  message: string;
2455
2448
  is_device_error: true;
@@ -2500,17 +2493,17 @@ export interface Routes {
2500
2493
  is_device_error: true;
2501
2494
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2502
2495
  error_code: 'subscription_required';
2503
- }) | ({
2496
+ } | {
2504
2497
  message: string;
2505
2498
  is_connected_account_error: true;
2506
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2499
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2507
2500
  error_code: 'account_disconnected';
2508
2501
  } | {
2509
2502
  message: string;
2510
2503
  is_connected_account_error: true;
2511
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2504
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2512
2505
  error_code: 'invalid_credentials';
2513
- })>;
2506
+ }>;
2514
2507
  /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
2515
2508
  warnings: Array<{
2516
2509
  message: string;
@@ -2524,6 +2517,10 @@ export interface Routes {
2524
2517
  message: string;
2525
2518
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2526
2519
  warning_code: 'schlage_creation_outage';
2520
+ } | {
2521
+ message: string;
2522
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2523
+ warning_code: 'salto_office_mode';
2527
2524
  } | {
2528
2525
  message: string;
2529
2526
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
@@ -2610,7 +2607,7 @@ export interface Routes {
2610
2607
  /** Date and time at which the access code was created. */
2611
2608
  created_at: string;
2612
2609
  /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
2613
- errors: Array<({
2610
+ errors: Array<{
2614
2611
  message: string;
2615
2612
  is_access_code_error: true;
2616
2613
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -2705,7 +2702,7 @@ export interface Routes {
2705
2702
  is_access_code_error: true;
2706
2703
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2707
2704
  error_code: 'hubitat_no_free_positions_available';
2708
- }) | ({
2705
+ } | {
2709
2706
  message: string;
2710
2707
  is_device_error: true;
2711
2708
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -2715,11 +2712,6 @@ export interface Routes {
2715
2712
  is_device_error: true;
2716
2713
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2717
2714
  error_code: 'device_removed';
2718
- } | {
2719
- message: string;
2720
- is_device_error: true;
2721
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2722
- error_code: 'account_disconnected';
2723
2715
  } | {
2724
2716
  message: string;
2725
2717
  is_device_error: true;
@@ -2770,17 +2762,17 @@ export interface Routes {
2770
2762
  is_device_error: true;
2771
2763
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2772
2764
  error_code: 'subscription_required';
2773
- }) | ({
2765
+ } | {
2774
2766
  message: string;
2775
2767
  is_connected_account_error: true;
2776
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2768
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2777
2769
  error_code: 'account_disconnected';
2778
2770
  } | {
2779
2771
  message: string;
2780
2772
  is_connected_account_error: true;
2781
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2773
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2782
2774
  error_code: 'invalid_credentials';
2783
- })>;
2775
+ }>;
2784
2776
  /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
2785
2777
  warnings: Array<{
2786
2778
  message: string;
@@ -2794,6 +2786,10 @@ export interface Routes {
2794
2786
  message: string;
2795
2787
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2796
2788
  warning_code: 'schlage_creation_outage';
2789
+ } | {
2790
+ message: string;
2791
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2792
+ warning_code: 'salto_office_mode';
2797
2793
  } | {
2798
2794
  message: string;
2799
2795
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
@@ -2879,7 +2875,7 @@ export interface Routes {
2879
2875
  /** Date and time at which the access code was created. */
2880
2876
  created_at: string;
2881
2877
  /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
2882
- errors: Array<({
2878
+ errors: Array<{
2883
2879
  message: string;
2884
2880
  is_access_code_error: true;
2885
2881
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -2974,7 +2970,7 @@ export interface Routes {
2974
2970
  is_access_code_error: true;
2975
2971
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2976
2972
  error_code: 'hubitat_no_free_positions_available';
2977
- }) | ({
2973
+ } | {
2978
2974
  message: string;
2979
2975
  is_device_error: true;
2980
2976
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -2984,11 +2980,6 @@ export interface Routes {
2984
2980
  is_device_error: true;
2985
2981
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2986
2982
  error_code: 'device_removed';
2987
- } | {
2988
- message: string;
2989
- is_device_error: true;
2990
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2991
- error_code: 'account_disconnected';
2992
2983
  } | {
2993
2984
  message: string;
2994
2985
  is_device_error: true;
@@ -3039,17 +3030,17 @@ export interface Routes {
3039
3030
  is_device_error: true;
3040
3031
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3041
3032
  error_code: 'subscription_required';
3042
- }) | ({
3033
+ } | {
3043
3034
  message: string;
3044
3035
  is_connected_account_error: true;
3045
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3036
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3046
3037
  error_code: 'account_disconnected';
3047
3038
  } | {
3048
3039
  message: string;
3049
3040
  is_connected_account_error: true;
3050
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3041
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3051
3042
  error_code: 'invalid_credentials';
3052
- })>;
3043
+ }>;
3053
3044
  /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
3054
3045
  warnings: Array<{
3055
3046
  message: string;
@@ -3063,6 +3054,10 @@ export interface Routes {
3063
3054
  message: string;
3064
3055
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3065
3056
  warning_code: 'schlage_creation_outage';
3057
+ } | {
3058
+ message: string;
3059
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3060
+ warning_code: 'salto_office_mode';
3066
3061
  } | {
3067
3062
  message: string;
3068
3063
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
@@ -3136,7 +3131,7 @@ export interface Routes {
3136
3131
  /** Date and time at which the access code was created. */
3137
3132
  created_at: string;
3138
3133
  /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
3139
- errors: Array<({
3134
+ errors: Array<{
3140
3135
  message: string;
3141
3136
  is_access_code_error: true;
3142
3137
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -3231,7 +3226,7 @@ export interface Routes {
3231
3226
  is_access_code_error: true;
3232
3227
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3233
3228
  error_code: 'hubitat_no_free_positions_available';
3234
- }) | ({
3229
+ } | {
3235
3230
  message: string;
3236
3231
  is_device_error: true;
3237
3232
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -3241,11 +3236,6 @@ export interface Routes {
3241
3236
  is_device_error: true;
3242
3237
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3243
3238
  error_code: 'device_removed';
3244
- } | {
3245
- message: string;
3246
- is_device_error: true;
3247
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3248
- error_code: 'account_disconnected';
3249
3239
  } | {
3250
3240
  message: string;
3251
3241
  is_device_error: true;
@@ -3296,17 +3286,17 @@ export interface Routes {
3296
3286
  is_device_error: true;
3297
3287
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3298
3288
  error_code: 'subscription_required';
3299
- }) | ({
3289
+ } | {
3300
3290
  message: string;
3301
3291
  is_connected_account_error: true;
3302
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3292
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3303
3293
  error_code: 'account_disconnected';
3304
3294
  } | {
3305
3295
  message: string;
3306
3296
  is_connected_account_error: true;
3307
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3297
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3308
3298
  error_code: 'invalid_credentials';
3309
- })>;
3299
+ }>;
3310
3300
  /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
3311
3301
  warnings: Array<{
3312
3302
  message: string;
@@ -3320,6 +3310,10 @@ export interface Routes {
3320
3310
  message: string;
3321
3311
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3322
3312
  warning_code: 'schlage_creation_outage';
3313
+ } | {
3314
+ message: string;
3315
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3316
+ warning_code: 'salto_office_mode';
3323
3317
  } | {
3324
3318
  message: string;
3325
3319
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
@@ -3401,7 +3395,7 @@ export interface Routes {
3401
3395
  /** Date and time at which the access code was created. */
3402
3396
  created_at: string;
3403
3397
  /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
3404
- errors: Array<({
3398
+ errors: Array<{
3405
3399
  message: string;
3406
3400
  is_access_code_error: true;
3407
3401
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -3496,7 +3490,7 @@ export interface Routes {
3496
3490
  is_access_code_error: true;
3497
3491
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3498
3492
  error_code: 'hubitat_no_free_positions_available';
3499
- }) | ({
3493
+ } | {
3500
3494
  message: string;
3501
3495
  is_device_error: true;
3502
3496
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -3506,11 +3500,6 @@ export interface Routes {
3506
3500
  is_device_error: true;
3507
3501
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3508
3502
  error_code: 'device_removed';
3509
- } | {
3510
- message: string;
3511
- is_device_error: true;
3512
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3513
- error_code: 'account_disconnected';
3514
3503
  } | {
3515
3504
  message: string;
3516
3505
  is_device_error: true;
@@ -3561,17 +3550,17 @@ export interface Routes {
3561
3550
  is_device_error: true;
3562
3551
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3563
3552
  error_code: 'subscription_required';
3564
- }) | ({
3553
+ } | {
3565
3554
  message: string;
3566
3555
  is_connected_account_error: true;
3567
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3556
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3568
3557
  error_code: 'account_disconnected';
3569
3558
  } | {
3570
3559
  message: string;
3571
3560
  is_connected_account_error: true;
3572
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3561
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3573
3562
  error_code: 'invalid_credentials';
3574
- })>;
3563
+ }>;
3575
3564
  /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
3576
3565
  warnings: Array<{
3577
3566
  message: string;
@@ -3585,6 +3574,10 @@ export interface Routes {
3585
3574
  message: string;
3586
3575
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3587
3576
  warning_code: 'schlage_creation_outage';
3577
+ } | {
3578
+ message: string;
3579
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3580
+ warning_code: 'salto_office_mode';
3588
3581
  } | {
3589
3582
  message: string;
3590
3583
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
@@ -4533,7 +4526,7 @@ export interface Routes {
4533
4526
  /** Date and time at which the access code was created. */
4534
4527
  created_at: string;
4535
4528
  /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
4536
- errors: Array<({
4529
+ errors: Array<{
4537
4530
  message: string;
4538
4531
  is_access_code_error: true;
4539
4532
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -4628,7 +4621,7 @@ export interface Routes {
4628
4621
  is_access_code_error: true;
4629
4622
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4630
4623
  error_code: 'hubitat_no_free_positions_available';
4631
- }) | ({
4624
+ } | {
4632
4625
  message: string;
4633
4626
  is_device_error: true;
4634
4627
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -4638,11 +4631,6 @@ export interface Routes {
4638
4631
  is_device_error: true;
4639
4632
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4640
4633
  error_code: 'device_removed';
4641
- } | {
4642
- message: string;
4643
- is_device_error: true;
4644
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4645
- error_code: 'account_disconnected';
4646
4634
  } | {
4647
4635
  message: string;
4648
4636
  is_device_error: true;
@@ -4693,17 +4681,17 @@ export interface Routes {
4693
4681
  is_device_error: true;
4694
4682
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4695
4683
  error_code: 'subscription_required';
4696
- }) | ({
4684
+ } | {
4697
4685
  message: string;
4698
4686
  is_connected_account_error: true;
4699
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4687
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4700
4688
  error_code: 'account_disconnected';
4701
4689
  } | {
4702
4690
  message: string;
4703
4691
  is_connected_account_error: true;
4704
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4692
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4705
4693
  error_code: 'invalid_credentials';
4706
- })>;
4694
+ }>;
4707
4695
  /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
4708
4696
  warnings: Array<{
4709
4697
  message: string;
@@ -4717,6 +4705,10 @@ export interface Routes {
4717
4705
  message: string;
4718
4706
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4719
4707
  warning_code: 'schlage_creation_outage';
4708
+ } | {
4709
+ message: string;
4710
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4711
+ warning_code: 'salto_office_mode';
4720
4712
  } | {
4721
4713
  message: string;
4722
4714
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
@@ -4780,7 +4772,7 @@ export interface Routes {
4780
4772
  /** Date and time at which the access code was created. */
4781
4773
  created_at: string;
4782
4774
  /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
4783
- errors: Array<({
4775
+ errors: Array<{
4784
4776
  message: string;
4785
4777
  is_access_code_error: true;
4786
4778
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -4875,7 +4867,7 @@ export interface Routes {
4875
4867
  is_access_code_error: true;
4876
4868
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4877
4869
  error_code: 'hubitat_no_free_positions_available';
4878
- }) | ({
4870
+ } | {
4879
4871
  message: string;
4880
4872
  is_device_error: true;
4881
4873
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -4885,11 +4877,6 @@ export interface Routes {
4885
4877
  is_device_error: true;
4886
4878
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4887
4879
  error_code: 'device_removed';
4888
- } | {
4889
- message: string;
4890
- is_device_error: true;
4891
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4892
- error_code: 'account_disconnected';
4893
4880
  } | {
4894
4881
  message: string;
4895
4882
  is_device_error: true;
@@ -4940,17 +4927,17 @@ export interface Routes {
4940
4927
  is_device_error: true;
4941
4928
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4942
4929
  error_code: 'subscription_required';
4943
- }) | ({
4930
+ } | {
4944
4931
  message: string;
4945
4932
  is_connected_account_error: true;
4946
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4933
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4947
4934
  error_code: 'account_disconnected';
4948
4935
  } | {
4949
4936
  message: string;
4950
4937
  is_connected_account_error: true;
4951
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4938
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4952
4939
  error_code: 'invalid_credentials';
4953
- })>;
4940
+ }>;
4954
4941
  /** Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention. */
4955
4942
  warnings: Array<{
4956
4943
  message: string;
@@ -4964,6 +4951,10 @@ export interface Routes {
4964
4951
  message: string;
4965
4952
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4966
4953
  warning_code: 'schlage_creation_outage';
4954
+ } | {
4955
+ message: string;
4956
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4957
+ warning_code: 'salto_office_mode';
4967
4958
  } | {
4968
4959
  message: string;
4969
4960
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
@@ -12937,12 +12928,12 @@ export interface Routes {
12937
12928
  errors: Array<{
12938
12929
  message: string;
12939
12930
  is_connected_account_error: true;
12940
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
12931
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
12941
12932
  error_code: 'account_disconnected';
12942
12933
  } | {
12943
12934
  message: string;
12944
12935
  is_connected_account_error: true;
12945
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
12936
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
12946
12937
  error_code: 'invalid_credentials';
12947
12938
  }>;
12948
12939
  warnings: Array<{
@@ -12987,12 +12978,12 @@ export interface Routes {
12987
12978
  errors: Array<{
12988
12979
  message: string;
12989
12980
  is_connected_account_error: true;
12990
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
12981
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
12991
12982
  error_code: 'account_disconnected';
12992
12983
  } | {
12993
12984
  message: string;
12994
12985
  is_connected_account_error: true;
12995
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
12986
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
12996
12987
  error_code: 'invalid_credentials';
12997
12988
  }>;
12998
12989
  warnings: Array<{
@@ -13037,12 +13028,12 @@ export interface Routes {
13037
13028
  errors: Array<{
13038
13029
  message: string;
13039
13030
  is_connected_account_error: true;
13040
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
13031
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13041
13032
  error_code: 'account_disconnected';
13042
13033
  } | {
13043
13034
  message: string;
13044
13035
  is_connected_account_error: true;
13045
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
13036
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13046
13037
  error_code: 'invalid_credentials';
13047
13038
  }>;
13048
13039
  warnings: Array<{
@@ -13574,7 +13565,7 @@ export interface Routes {
13574
13565
  /** Unique identifier for the Seam workspace associated with the device. */
13575
13566
  workspace_id: string;
13576
13567
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
13577
- errors: Array<({
13568
+ errors: Array<{
13578
13569
  message: string;
13579
13570
  is_device_error: true;
13580
13571
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -13584,11 +13575,6 @@ export interface Routes {
13584
13575
  is_device_error: true;
13585
13576
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13586
13577
  error_code: 'device_removed';
13587
- } | {
13588
- message: string;
13589
- is_device_error: true;
13590
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13591
- error_code: 'account_disconnected';
13592
13578
  } | {
13593
13579
  message: string;
13594
13580
  is_device_error: true;
@@ -13639,17 +13625,17 @@ export interface Routes {
13639
13625
  is_device_error: true;
13640
13626
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13641
13627
  error_code: 'subscription_required';
13642
- }) | ({
13628
+ } | {
13643
13629
  message: string;
13644
13630
  is_connected_account_error: true;
13645
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
13631
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13646
13632
  error_code: 'account_disconnected';
13647
13633
  } | {
13648
13634
  message: string;
13649
13635
  is_connected_account_error: true;
13650
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
13636
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13651
13637
  error_code: 'invalid_credentials';
13652
- })>;
13638
+ }>;
13653
13639
  /** 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. */
13654
13640
  warnings: Array<{
13655
13641
  message: string;
@@ -14262,7 +14248,7 @@ export interface Routes {
14262
14248
  /** Unique identifier for the Seam workspace associated with the device. */
14263
14249
  workspace_id: string;
14264
14250
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
14265
- errors: Array<({
14251
+ errors: Array<{
14266
14252
  message: string;
14267
14253
  is_device_error: true;
14268
14254
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -14272,11 +14258,6 @@ export interface Routes {
14272
14258
  is_device_error: true;
14273
14259
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14274
14260
  error_code: 'device_removed';
14275
- } | {
14276
- message: string;
14277
- is_device_error: true;
14278
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14279
- error_code: 'account_disconnected';
14280
14261
  } | {
14281
14262
  message: string;
14282
14263
  is_device_error: true;
@@ -14327,17 +14308,17 @@ export interface Routes {
14327
14308
  is_device_error: true;
14328
14309
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14329
14310
  error_code: 'subscription_required';
14330
- }) | ({
14311
+ } | {
14331
14312
  message: string;
14332
14313
  is_connected_account_error: true;
14333
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14314
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14334
14315
  error_code: 'account_disconnected';
14335
14316
  } | {
14336
14317
  message: string;
14337
14318
  is_connected_account_error: true;
14338
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14319
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14339
14320
  error_code: 'invalid_credentials';
14340
- })>;
14321
+ }>;
14341
14322
  /** 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. */
14342
14323
  warnings: Array<{
14343
14324
  message: string;
@@ -14516,7 +14497,7 @@ export interface Routes {
14516
14497
  /** Unique identifier for the Seam workspace associated with the device. */
14517
14498
  workspace_id: string;
14518
14499
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
14519
- errors: Array<({
14500
+ errors: Array<{
14520
14501
  message: string;
14521
14502
  is_device_error: true;
14522
14503
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -14526,11 +14507,6 @@ export interface Routes {
14526
14507
  is_device_error: true;
14527
14508
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14528
14509
  error_code: 'device_removed';
14529
- } | {
14530
- message: string;
14531
- is_device_error: true;
14532
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14533
- error_code: 'account_disconnected';
14534
14510
  } | {
14535
14511
  message: string;
14536
14512
  is_device_error: true;
@@ -14581,17 +14557,17 @@ export interface Routes {
14581
14557
  is_device_error: true;
14582
14558
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14583
14559
  error_code: 'subscription_required';
14584
- }) | ({
14560
+ } | {
14585
14561
  message: string;
14586
14562
  is_connected_account_error: true;
14587
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14563
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14588
14564
  error_code: 'account_disconnected';
14589
14565
  } | {
14590
14566
  message: string;
14591
14567
  is_connected_account_error: true;
14592
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14568
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14593
14569
  error_code: 'invalid_credentials';
14594
- })>;
14570
+ }>;
14595
14571
  /** 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. */
14596
14572
  warnings: Array<{
14597
14573
  message: string;
@@ -14779,7 +14755,7 @@ export interface Routes {
14779
14755
  /** Unique identifier for the Seam workspace associated with the device. */
14780
14756
  workspace_id: string;
14781
14757
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
14782
- errors: Array<({
14758
+ errors: Array<{
14783
14759
  message: string;
14784
14760
  is_device_error: true;
14785
14761
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -14789,11 +14765,6 @@ export interface Routes {
14789
14765
  is_device_error: true;
14790
14766
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14791
14767
  error_code: 'device_removed';
14792
- } | {
14793
- message: string;
14794
- is_device_error: true;
14795
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14796
- error_code: 'account_disconnected';
14797
14768
  } | {
14798
14769
  message: string;
14799
14770
  is_device_error: true;
@@ -14844,17 +14815,17 @@ export interface Routes {
14844
14815
  is_device_error: true;
14845
14816
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14846
14817
  error_code: 'subscription_required';
14847
- }) | ({
14818
+ } | {
14848
14819
  message: string;
14849
14820
  is_connected_account_error: true;
14850
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14821
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14851
14822
  error_code: 'account_disconnected';
14852
14823
  } | {
14853
14824
  message: string;
14854
14825
  is_connected_account_error: true;
14855
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14826
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14856
14827
  error_code: 'invalid_credentials';
14857
- })>;
14828
+ }>;
14858
14829
  /** 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. */
14859
14830
  warnings: Array<{
14860
14831
  message: string;
@@ -17932,7 +17903,7 @@ export interface Routes {
17932
17903
  /** Unique identifier for the Seam workspace associated with the device. */
17933
17904
  workspace_id: string;
17934
17905
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
17935
- errors: Array<({
17906
+ errors: Array<{
17936
17907
  message: string;
17937
17908
  is_device_error: true;
17938
17909
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -17942,11 +17913,6 @@ export interface Routes {
17942
17913
  is_device_error: true;
17943
17914
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
17944
17915
  error_code: 'device_removed';
17945
- } | {
17946
- message: string;
17947
- is_device_error: true;
17948
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
17949
- error_code: 'account_disconnected';
17950
17916
  } | {
17951
17917
  message: string;
17952
17918
  is_device_error: true;
@@ -17997,17 +17963,17 @@ export interface Routes {
17997
17963
  is_device_error: true;
17998
17964
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
17999
17965
  error_code: 'subscription_required';
18000
- }) | ({
17966
+ } | {
18001
17967
  message: string;
18002
17968
  is_connected_account_error: true;
18003
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
17969
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
18004
17970
  error_code: 'account_disconnected';
18005
17971
  } | {
18006
17972
  message: string;
18007
17973
  is_connected_account_error: true;
18008
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
17974
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
18009
17975
  error_code: 'invalid_credentials';
18010
- })>;
17976
+ }>;
18011
17977
  /** 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. */
18012
17978
  warnings: Array<{
18013
17979
  message: string;
@@ -18584,7 +18550,7 @@ export interface Routes {
18584
18550
  /** Unique identifier for the Seam workspace associated with the device. */
18585
18551
  workspace_id: string;
18586
18552
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
18587
- errors: Array<({
18553
+ errors: Array<{
18588
18554
  message: string;
18589
18555
  is_device_error: true;
18590
18556
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -18594,11 +18560,6 @@ export interface Routes {
18594
18560
  is_device_error: true;
18595
18561
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
18596
18562
  error_code: 'device_removed';
18597
- } | {
18598
- message: string;
18599
- is_device_error: true;
18600
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
18601
- error_code: 'account_disconnected';
18602
18563
  } | {
18603
18564
  message: string;
18604
18565
  is_device_error: true;
@@ -18649,17 +18610,17 @@ export interface Routes {
18649
18610
  is_device_error: true;
18650
18611
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
18651
18612
  error_code: 'subscription_required';
18652
- }) | ({
18613
+ } | {
18653
18614
  message: string;
18654
18615
  is_connected_account_error: true;
18655
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
18616
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
18656
18617
  error_code: 'account_disconnected';
18657
18618
  } | {
18658
18619
  message: string;
18659
18620
  is_connected_account_error: true;
18660
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
18621
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
18661
18622
  error_code: 'invalid_credentials';
18662
- })>;
18623
+ }>;
18663
18624
  /** 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. */
18664
18625
  warnings: Array<{
18665
18626
  message: string;
@@ -19272,7 +19233,7 @@ export interface Routes {
19272
19233
  /** Unique identifier for the Seam workspace associated with the device. */
19273
19234
  workspace_id: string;
19274
19235
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
19275
- errors: Array<({
19236
+ errors: Array<{
19276
19237
  message: string;
19277
19238
  is_device_error: true;
19278
19239
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -19282,11 +19243,6 @@ export interface Routes {
19282
19243
  is_device_error: true;
19283
19244
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19284
19245
  error_code: 'device_removed';
19285
- } | {
19286
- message: string;
19287
- is_device_error: true;
19288
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19289
- error_code: 'account_disconnected';
19290
19246
  } | {
19291
19247
  message: string;
19292
19248
  is_device_error: true;
@@ -19337,17 +19293,17 @@ export interface Routes {
19337
19293
  is_device_error: true;
19338
19294
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19339
19295
  error_code: 'subscription_required';
19340
- }) | ({
19296
+ } | {
19341
19297
  message: string;
19342
19298
  is_connected_account_error: true;
19343
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19299
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19344
19300
  error_code: 'account_disconnected';
19345
19301
  } | {
19346
19302
  message: string;
19347
19303
  is_connected_account_error: true;
19348
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19304
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19349
19305
  error_code: 'invalid_credentials';
19350
- })>;
19306
+ }>;
19351
19307
  /** 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. */
19352
19308
  warnings: Array<{
19353
19309
  message: string;
@@ -19923,7 +19879,7 @@ export interface Routes {
19923
19879
  /** Unique identifier for the Seam workspace associated with the device. */
19924
19880
  workspace_id: string;
19925
19881
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
19926
- errors: Array<({
19882
+ errors: Array<{
19927
19883
  message: string;
19928
19884
  is_device_error: true;
19929
19885
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -19933,11 +19889,6 @@ export interface Routes {
19933
19889
  is_device_error: true;
19934
19890
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19935
19891
  error_code: 'device_removed';
19936
- } | {
19937
- message: string;
19938
- is_device_error: true;
19939
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19940
- error_code: 'account_disconnected';
19941
19892
  } | {
19942
19893
  message: string;
19943
19894
  is_device_error: true;
@@ -19988,17 +19939,17 @@ export interface Routes {
19988
19939
  is_device_error: true;
19989
19940
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19990
19941
  error_code: 'subscription_required';
19991
- }) | ({
19942
+ } | {
19992
19943
  message: string;
19993
19944
  is_connected_account_error: true;
19994
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19945
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19995
19946
  error_code: 'account_disconnected';
19996
19947
  } | {
19997
19948
  message: string;
19998
19949
  is_connected_account_error: true;
19999
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19950
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
20000
19951
  error_code: 'invalid_credentials';
20001
- })>;
19952
+ }>;
20002
19953
  /** 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. */
20003
19954
  warnings: Array<{
20004
19955
  message: string;
@@ -22382,7 +22333,7 @@ export interface Routes {
22382
22333
  /** Unique identifier for the Seam workspace associated with the device. */
22383
22334
  workspace_id: string;
22384
22335
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
22385
- errors: Array<({
22336
+ errors: Array<{
22386
22337
  message: string;
22387
22338
  is_device_error: true;
22388
22339
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -22392,11 +22343,6 @@ export interface Routes {
22392
22343
  is_device_error: true;
22393
22344
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
22394
22345
  error_code: 'device_removed';
22395
- } | {
22396
- message: string;
22397
- is_device_error: true;
22398
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
22399
- error_code: 'account_disconnected';
22400
22346
  } | {
22401
22347
  message: string;
22402
22348
  is_device_error: true;
@@ -22447,17 +22393,17 @@ export interface Routes {
22447
22393
  is_device_error: true;
22448
22394
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
22449
22395
  error_code: 'subscription_required';
22450
- }) | ({
22396
+ } | {
22451
22397
  message: string;
22452
22398
  is_connected_account_error: true;
22453
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22399
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
22454
22400
  error_code: 'account_disconnected';
22455
22401
  } | {
22456
22402
  message: string;
22457
22403
  is_connected_account_error: true;
22458
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22404
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
22459
22405
  error_code: 'invalid_credentials';
22460
- })>;
22406
+ }>;
22461
22407
  /** 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. */
22462
22408
  warnings: Array<{
22463
22409
  message: string;
@@ -23033,7 +22979,7 @@ export interface Routes {
23033
22979
  /** Unique identifier for the Seam workspace associated with the device. */
23034
22980
  workspace_id: string;
23035
22981
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
23036
- errors: Array<({
22982
+ errors: Array<{
23037
22983
  message: string;
23038
22984
  is_device_error: true;
23039
22985
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -23043,11 +22989,6 @@ export interface Routes {
23043
22989
  is_device_error: true;
23044
22990
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
23045
22991
  error_code: 'device_removed';
23046
- } | {
23047
- message: string;
23048
- is_device_error: true;
23049
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
23050
- error_code: 'account_disconnected';
23051
22992
  } | {
23052
22993
  message: string;
23053
22994
  is_device_error: true;
@@ -23098,17 +23039,17 @@ export interface Routes {
23098
23039
  is_device_error: true;
23099
23040
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
23100
23041
  error_code: 'subscription_required';
23101
- }) | ({
23042
+ } | {
23102
23043
  message: string;
23103
23044
  is_connected_account_error: true;
23104
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23045
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
23105
23046
  error_code: 'account_disconnected';
23106
23047
  } | {
23107
23048
  message: string;
23108
23049
  is_connected_account_error: true;
23109
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23050
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
23110
23051
  error_code: 'invalid_credentials';
23111
- })>;
23052
+ }>;
23112
23053
  /** 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. */
23113
23054
  warnings: Array<{
23114
23055
  message: string;
@@ -25929,7 +25870,7 @@ export interface Routes {
25929
25870
  /** Unique identifier for the Seam workspace associated with the device. */
25930
25871
  workspace_id: string;
25931
25872
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
25932
- errors: Array<({
25873
+ errors: Array<{
25933
25874
  message: string;
25934
25875
  is_device_error: true;
25935
25876
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -25939,11 +25880,6 @@ export interface Routes {
25939
25880
  is_device_error: true;
25940
25881
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
25941
25882
  error_code: 'device_removed';
25942
- } | {
25943
- message: string;
25944
- is_device_error: true;
25945
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
25946
- error_code: 'account_disconnected';
25947
25883
  } | {
25948
25884
  message: string;
25949
25885
  is_device_error: true;
@@ -25994,17 +25930,17 @@ export interface Routes {
25994
25930
  is_device_error: true;
25995
25931
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
25996
25932
  error_code: 'subscription_required';
25997
- }) | ({
25933
+ } | {
25998
25934
  message: string;
25999
25935
  is_connected_account_error: true;
26000
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25936
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
26001
25937
  error_code: 'account_disconnected';
26002
25938
  } | {
26003
25939
  message: string;
26004
25940
  is_connected_account_error: true;
26005
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25941
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
26006
25942
  error_code: 'invalid_credentials';
26007
- })>;
25943
+ }>;
26008
25944
  /** 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. */
26009
25945
  warnings: Array<{
26010
25946
  message: string;
@@ -26148,7 +26084,7 @@ export interface Routes {
26148
26084
  /** Unique identifier for the Seam workspace associated with the device. */
26149
26085
  workspace_id: string;
26150
26086
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
26151
- errors: Array<({
26087
+ errors: Array<{
26152
26088
  message: string;
26153
26089
  is_device_error: true;
26154
26090
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -26158,11 +26094,6 @@ export interface Routes {
26158
26094
  is_device_error: true;
26159
26095
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
26160
26096
  error_code: 'device_removed';
26161
- } | {
26162
- message: string;
26163
- is_device_error: true;
26164
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
26165
- error_code: 'account_disconnected';
26166
26097
  } | {
26167
26098
  message: string;
26168
26099
  is_device_error: true;
@@ -26213,17 +26144,17 @@ export interface Routes {
26213
26144
  is_device_error: true;
26214
26145
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
26215
26146
  error_code: 'subscription_required';
26216
- }) | ({
26147
+ } | {
26217
26148
  message: string;
26218
26149
  is_connected_account_error: true;
26219
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26150
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
26220
26151
  error_code: 'account_disconnected';
26221
26152
  } | {
26222
26153
  message: string;
26223
26154
  is_connected_account_error: true;
26224
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26155
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
26225
26156
  error_code: 'invalid_credentials';
26226
- })>;
26157
+ }>;
26227
26158
  /** 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. */
26228
26159
  warnings: Array<{
26229
26160
  message: string;
@@ -28604,7 +28535,7 @@ export interface Routes {
28604
28535
  /** Unique identifier for the Seam workspace associated with the device. */
28605
28536
  workspace_id: string;
28606
28537
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
28607
- errors: Array<({
28538
+ errors: Array<{
28608
28539
  message: string;
28609
28540
  is_device_error: true;
28610
28541
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -28614,11 +28545,6 @@ export interface Routes {
28614
28545
  is_device_error: true;
28615
28546
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
28616
28547
  error_code: 'device_removed';
28617
- } | {
28618
- message: string;
28619
- is_device_error: true;
28620
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
28621
- error_code: 'account_disconnected';
28622
28548
  } | {
28623
28549
  message: string;
28624
28550
  is_device_error: true;
@@ -28669,17 +28595,17 @@ export interface Routes {
28669
28595
  is_device_error: true;
28670
28596
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
28671
28597
  error_code: 'subscription_required';
28672
- }) | ({
28598
+ } | {
28673
28599
  message: string;
28674
28600
  is_connected_account_error: true;
28675
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28601
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
28676
28602
  error_code: 'account_disconnected';
28677
28603
  } | {
28678
28604
  message: string;
28679
28605
  is_connected_account_error: true;
28680
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28606
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
28681
28607
  error_code: 'invalid_credentials';
28682
- })>;
28608
+ }>;
28683
28609
  /** 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. */
28684
28610
  warnings: Array<{
28685
28611
  message: string;
@@ -31044,7 +30970,7 @@ export interface Routes {
31044
30970
  /** Unique identifier for the Seam workspace associated with the device. */
31045
30971
  workspace_id: string;
31046
30972
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
31047
- errors: Array<({
30973
+ errors: Array<{
31048
30974
  message: string;
31049
30975
  is_device_error: true;
31050
30976
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -31054,11 +30980,6 @@ export interface Routes {
31054
30980
  is_device_error: true;
31055
30981
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31056
30982
  error_code: 'device_removed';
31057
- } | {
31058
- message: string;
31059
- is_device_error: true;
31060
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31061
- error_code: 'account_disconnected';
31062
30983
  } | {
31063
30984
  message: string;
31064
30985
  is_device_error: true;
@@ -31109,17 +31030,17 @@ export interface Routes {
31109
31030
  is_device_error: true;
31110
31031
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31111
31032
  error_code: 'subscription_required';
31112
- }) | ({
31033
+ } | {
31113
31034
  message: string;
31114
31035
  is_connected_account_error: true;
31115
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31036
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31116
31037
  error_code: 'account_disconnected';
31117
31038
  } | {
31118
31039
  message: string;
31119
31040
  is_connected_account_error: true;
31120
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31041
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31121
31042
  error_code: 'invalid_credentials';
31122
- })>;
31043
+ }>;
31123
31044
  /** 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. */
31124
31045
  warnings: Array<{
31125
31046
  message: string;
@@ -31695,7 +31616,7 @@ export interface Routes {
31695
31616
  /** Unique identifier for the Seam workspace associated with the device. */
31696
31617
  workspace_id: string;
31697
31618
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
31698
- errors: Array<({
31619
+ errors: Array<{
31699
31620
  message: string;
31700
31621
  is_device_error: true;
31701
31622
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -31705,11 +31626,6 @@ export interface Routes {
31705
31626
  is_device_error: true;
31706
31627
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31707
31628
  error_code: 'device_removed';
31708
- } | {
31709
- message: string;
31710
- is_device_error: true;
31711
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31712
- error_code: 'account_disconnected';
31713
31629
  } | {
31714
31630
  message: string;
31715
31631
  is_device_error: true;
@@ -31760,17 +31676,17 @@ export interface Routes {
31760
31676
  is_device_error: true;
31761
31677
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31762
31678
  error_code: 'subscription_required';
31763
- }) | ({
31679
+ } | {
31764
31680
  message: string;
31765
31681
  is_connected_account_error: true;
31766
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31682
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31767
31683
  error_code: 'account_disconnected';
31768
31684
  } | {
31769
31685
  message: string;
31770
31686
  is_connected_account_error: true;
31771
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31687
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31772
31688
  error_code: 'invalid_credentials';
31773
- })>;
31689
+ }>;
31774
31690
  /** 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. */
31775
31691
  warnings: Array<{
31776
31692
  message: string;
@@ -35520,7 +35436,7 @@ export interface Routes {
35520
35436
  /** Unique identifier for the Seam workspace associated with the device. */
35521
35437
  workspace_id: string;
35522
35438
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
35523
- errors: Array<({
35439
+ errors: Array<{
35524
35440
  message: string;
35525
35441
  is_device_error: true;
35526
35442
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -35530,11 +35446,6 @@ export interface Routes {
35530
35446
  is_device_error: true;
35531
35447
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35532
35448
  error_code: 'device_removed';
35533
- } | {
35534
- message: string;
35535
- is_device_error: true;
35536
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35537
- error_code: 'account_disconnected';
35538
35449
  } | {
35539
35450
  message: string;
35540
35451
  is_device_error: true;
@@ -35585,17 +35496,17 @@ export interface Routes {
35585
35496
  is_device_error: true;
35586
35497
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35587
35498
  error_code: 'subscription_required';
35588
- }) | ({
35499
+ } | {
35589
35500
  message: string;
35590
35501
  is_connected_account_error: true;
35591
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35502
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35592
35503
  error_code: 'account_disconnected';
35593
35504
  } | {
35594
35505
  message: string;
35595
35506
  is_connected_account_error: true;
35596
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35507
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35597
35508
  error_code: 'invalid_credentials';
35598
- })>;
35509
+ }>;
35599
35510
  /** 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. */
35600
35511
  warnings: Array<{
35601
35512
  message: string;
@@ -36173,7 +36084,7 @@ export interface Routes {
36173
36084
  /** Unique identifier for the Seam workspace associated with the device. */
36174
36085
  workspace_id: string;
36175
36086
  /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
36176
- errors: Array<({
36087
+ errors: Array<{
36177
36088
  message: string;
36178
36089
  is_device_error: true;
36179
36090
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -36183,11 +36094,6 @@ export interface Routes {
36183
36094
  is_device_error: true;
36184
36095
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36185
36096
  error_code: 'device_removed';
36186
- } | {
36187
- message: string;
36188
- is_device_error: true;
36189
- /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36190
- error_code: 'account_disconnected';
36191
36097
  } | {
36192
36098
  message: string;
36193
36099
  is_device_error: true;
@@ -36238,17 +36144,17 @@ export interface Routes {
36238
36144
  is_device_error: true;
36239
36145
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36240
36146
  error_code: 'subscription_required';
36241
- }) | ({
36147
+ } | {
36242
36148
  message: string;
36243
36149
  is_connected_account_error: true;
36244
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
36150
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36245
36151
  error_code: 'account_disconnected';
36246
36152
  } | {
36247
36153
  message: string;
36248
36154
  is_connected_account_error: true;
36249
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
36155
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36250
36156
  error_code: 'invalid_credentials';
36251
- })>;
36157
+ }>;
36252
36158
  /** 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. */
36253
36159
  warnings: Array<{
36254
36160
  message: string;