@seamapi/types 1.344.1 → 1.344.2

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 +1764 -2005
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +454 -633
  4. package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +7 -28
  5. package/lib/seam/connect/models/access-codes/managed-access-code.js +7 -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 +5 -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 +1465 -1716
  30. package/lib/seam/connect/openapi.js.map +1 -1
  31. package/lib/seam/connect/route-types.d.ts +145 -275
  32. package/package.json +1 -1
  33. package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +9 -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 +1566 -1829
  40. package/src/lib/seam/connect/route-types.ts +3216 -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;
@@ -1184,7 +1179,7 @@ export interface Routes {
1184
1179
  /** Date and time at which the access code was created. */
1185
1180
  created_at: string;
1186
1181
  /** 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<({
1182
+ errors: Array<{
1188
1183
  message: string;
1189
1184
  is_access_code_error: true;
1190
1185
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -1279,7 +1274,7 @@ export interface Routes {
1279
1274
  is_access_code_error: true;
1280
1275
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1281
1276
  error_code: 'hubitat_no_free_positions_available';
1282
- }) | ({
1277
+ } | {
1283
1278
  message: string;
1284
1279
  is_device_error: true;
1285
1280
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -1289,11 +1284,6 @@ export interface Routes {
1289
1284
  is_device_error: true;
1290
1285
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1291
1286
  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
1287
  } | {
1298
1288
  message: string;
1299
1289
  is_device_error: true;
@@ -1344,17 +1334,17 @@ export interface Routes {
1344
1334
  is_device_error: true;
1345
1335
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1346
1336
  error_code: 'subscription_required';
1347
- }) | ({
1337
+ } | {
1348
1338
  message: string;
1349
1339
  is_connected_account_error: true;
1350
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1340
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1351
1341
  error_code: 'account_disconnected';
1352
1342
  } | {
1353
1343
  message: string;
1354
1344
  is_connected_account_error: true;
1355
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1345
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1356
1346
  error_code: 'invalid_credentials';
1357
- })>;
1347
+ }>;
1358
1348
  /** 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
1349
  warnings: Array<{
1360
1350
  message: string;
@@ -2340,7 +2330,7 @@ export interface Routes {
2340
2330
  /** Date and time at which the access code was created. */
2341
2331
  created_at: string;
2342
2332
  /** 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<({
2333
+ errors: Array<{
2344
2334
  message: string;
2345
2335
  is_access_code_error: true;
2346
2336
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -2435,7 +2425,7 @@ export interface Routes {
2435
2425
  is_access_code_error: true;
2436
2426
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2437
2427
  error_code: 'hubitat_no_free_positions_available';
2438
- }) | ({
2428
+ } | {
2439
2429
  message: string;
2440
2430
  is_device_error: true;
2441
2431
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -2445,11 +2435,6 @@ export interface Routes {
2445
2435
  is_device_error: true;
2446
2436
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2447
2437
  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
2438
  } | {
2454
2439
  message: string;
2455
2440
  is_device_error: true;
@@ -2500,17 +2485,17 @@ export interface Routes {
2500
2485
  is_device_error: true;
2501
2486
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2502
2487
  error_code: 'subscription_required';
2503
- }) | ({
2488
+ } | {
2504
2489
  message: string;
2505
2490
  is_connected_account_error: true;
2506
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2491
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2507
2492
  error_code: 'account_disconnected';
2508
2493
  } | {
2509
2494
  message: string;
2510
2495
  is_connected_account_error: true;
2511
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2496
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2512
2497
  error_code: 'invalid_credentials';
2513
- })>;
2498
+ }>;
2514
2499
  /** 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
2500
  warnings: Array<{
2516
2501
  message: string;
@@ -2610,7 +2595,7 @@ export interface Routes {
2610
2595
  /** Date and time at which the access code was created. */
2611
2596
  created_at: string;
2612
2597
  /** 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<({
2598
+ errors: Array<{
2614
2599
  message: string;
2615
2600
  is_access_code_error: true;
2616
2601
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -2705,7 +2690,7 @@ export interface Routes {
2705
2690
  is_access_code_error: true;
2706
2691
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2707
2692
  error_code: 'hubitat_no_free_positions_available';
2708
- }) | ({
2693
+ } | {
2709
2694
  message: string;
2710
2695
  is_device_error: true;
2711
2696
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -2715,11 +2700,6 @@ export interface Routes {
2715
2700
  is_device_error: true;
2716
2701
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2717
2702
  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
2703
  } | {
2724
2704
  message: string;
2725
2705
  is_device_error: true;
@@ -2770,17 +2750,17 @@ export interface Routes {
2770
2750
  is_device_error: true;
2771
2751
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2772
2752
  error_code: 'subscription_required';
2773
- }) | ({
2753
+ } | {
2774
2754
  message: string;
2775
2755
  is_connected_account_error: true;
2776
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2756
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2777
2757
  error_code: 'account_disconnected';
2778
2758
  } | {
2779
2759
  message: string;
2780
2760
  is_connected_account_error: true;
2781
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
2761
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2782
2762
  error_code: 'invalid_credentials';
2783
- })>;
2763
+ }>;
2784
2764
  /** 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
2765
  warnings: Array<{
2786
2766
  message: string;
@@ -2879,7 +2859,7 @@ export interface Routes {
2879
2859
  /** Date and time at which the access code was created. */
2880
2860
  created_at: string;
2881
2861
  /** 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<({
2862
+ errors: Array<{
2883
2863
  message: string;
2884
2864
  is_access_code_error: true;
2885
2865
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -2974,7 +2954,7 @@ export interface Routes {
2974
2954
  is_access_code_error: true;
2975
2955
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2976
2956
  error_code: 'hubitat_no_free_positions_available';
2977
- }) | ({
2957
+ } | {
2978
2958
  message: string;
2979
2959
  is_device_error: true;
2980
2960
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -2984,11 +2964,6 @@ export interface Routes {
2984
2964
  is_device_error: true;
2985
2965
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2986
2966
  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
2967
  } | {
2993
2968
  message: string;
2994
2969
  is_device_error: true;
@@ -3039,17 +3014,17 @@ export interface Routes {
3039
3014
  is_device_error: true;
3040
3015
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3041
3016
  error_code: 'subscription_required';
3042
- }) | ({
3017
+ } | {
3043
3018
  message: string;
3044
3019
  is_connected_account_error: true;
3045
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3020
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3046
3021
  error_code: 'account_disconnected';
3047
3022
  } | {
3048
3023
  message: string;
3049
3024
  is_connected_account_error: true;
3050
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3025
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3051
3026
  error_code: 'invalid_credentials';
3052
- })>;
3027
+ }>;
3053
3028
  /** 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
3029
  warnings: Array<{
3055
3030
  message: string;
@@ -3136,7 +3111,7 @@ export interface Routes {
3136
3111
  /** Date and time at which the access code was created. */
3137
3112
  created_at: string;
3138
3113
  /** 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<({
3114
+ errors: Array<{
3140
3115
  message: string;
3141
3116
  is_access_code_error: true;
3142
3117
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -3231,7 +3206,7 @@ export interface Routes {
3231
3206
  is_access_code_error: true;
3232
3207
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3233
3208
  error_code: 'hubitat_no_free_positions_available';
3234
- }) | ({
3209
+ } | {
3235
3210
  message: string;
3236
3211
  is_device_error: true;
3237
3212
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -3241,11 +3216,6 @@ export interface Routes {
3241
3216
  is_device_error: true;
3242
3217
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3243
3218
  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
3219
  } | {
3250
3220
  message: string;
3251
3221
  is_device_error: true;
@@ -3296,17 +3266,17 @@ export interface Routes {
3296
3266
  is_device_error: true;
3297
3267
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3298
3268
  error_code: 'subscription_required';
3299
- }) | ({
3269
+ } | {
3300
3270
  message: string;
3301
3271
  is_connected_account_error: true;
3302
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3272
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3303
3273
  error_code: 'account_disconnected';
3304
3274
  } | {
3305
3275
  message: string;
3306
3276
  is_connected_account_error: true;
3307
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3277
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3308
3278
  error_code: 'invalid_credentials';
3309
- })>;
3279
+ }>;
3310
3280
  /** 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
3281
  warnings: Array<{
3312
3282
  message: string;
@@ -3401,7 +3371,7 @@ export interface Routes {
3401
3371
  /** Date and time at which the access code was created. */
3402
3372
  created_at: string;
3403
3373
  /** 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<({
3374
+ errors: Array<{
3405
3375
  message: string;
3406
3376
  is_access_code_error: true;
3407
3377
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -3496,7 +3466,7 @@ export interface Routes {
3496
3466
  is_access_code_error: true;
3497
3467
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3498
3468
  error_code: 'hubitat_no_free_positions_available';
3499
- }) | ({
3469
+ } | {
3500
3470
  message: string;
3501
3471
  is_device_error: true;
3502
3472
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -3506,11 +3476,6 @@ export interface Routes {
3506
3476
  is_device_error: true;
3507
3477
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3508
3478
  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
3479
  } | {
3515
3480
  message: string;
3516
3481
  is_device_error: true;
@@ -3561,17 +3526,17 @@ export interface Routes {
3561
3526
  is_device_error: true;
3562
3527
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3563
3528
  error_code: 'subscription_required';
3564
- }) | ({
3529
+ } | {
3565
3530
  message: string;
3566
3531
  is_connected_account_error: true;
3567
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3532
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3568
3533
  error_code: 'account_disconnected';
3569
3534
  } | {
3570
3535
  message: string;
3571
3536
  is_connected_account_error: true;
3572
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3537
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3573
3538
  error_code: 'invalid_credentials';
3574
- })>;
3539
+ }>;
3575
3540
  /** 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
3541
  warnings: Array<{
3577
3542
  message: string;
@@ -4533,7 +4498,7 @@ export interface Routes {
4533
4498
  /** Date and time at which the access code was created. */
4534
4499
  created_at: string;
4535
4500
  /** 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<({
4501
+ errors: Array<{
4537
4502
  message: string;
4538
4503
  is_access_code_error: true;
4539
4504
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -4628,7 +4593,7 @@ export interface Routes {
4628
4593
  is_access_code_error: true;
4629
4594
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4630
4595
  error_code: 'hubitat_no_free_positions_available';
4631
- }) | ({
4596
+ } | {
4632
4597
  message: string;
4633
4598
  is_device_error: true;
4634
4599
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -4638,11 +4603,6 @@ export interface Routes {
4638
4603
  is_device_error: true;
4639
4604
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4640
4605
  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
4606
  } | {
4647
4607
  message: string;
4648
4608
  is_device_error: true;
@@ -4693,17 +4653,17 @@ export interface Routes {
4693
4653
  is_device_error: true;
4694
4654
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4695
4655
  error_code: 'subscription_required';
4696
- }) | ({
4656
+ } | {
4697
4657
  message: string;
4698
4658
  is_connected_account_error: true;
4699
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4659
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4700
4660
  error_code: 'account_disconnected';
4701
4661
  } | {
4702
4662
  message: string;
4703
4663
  is_connected_account_error: true;
4704
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4664
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4705
4665
  error_code: 'invalid_credentials';
4706
- })>;
4666
+ }>;
4707
4667
  /** 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
4668
  warnings: Array<{
4709
4669
  message: string;
@@ -4780,7 +4740,7 @@ export interface Routes {
4780
4740
  /** Date and time at which the access code was created. */
4781
4741
  created_at: string;
4782
4742
  /** 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<({
4743
+ errors: Array<{
4784
4744
  message: string;
4785
4745
  is_access_code_error: true;
4786
4746
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -4875,7 +4835,7 @@ export interface Routes {
4875
4835
  is_access_code_error: true;
4876
4836
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4877
4837
  error_code: 'hubitat_no_free_positions_available';
4878
- }) | ({
4838
+ } | {
4879
4839
  message: string;
4880
4840
  is_device_error: true;
4881
4841
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -4885,11 +4845,6 @@ export interface Routes {
4885
4845
  is_device_error: true;
4886
4846
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4887
4847
  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
4848
  } | {
4894
4849
  message: string;
4895
4850
  is_device_error: true;
@@ -4940,17 +4895,17 @@ export interface Routes {
4940
4895
  is_device_error: true;
4941
4896
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4942
4897
  error_code: 'subscription_required';
4943
- }) | ({
4898
+ } | {
4944
4899
  message: string;
4945
4900
  is_connected_account_error: true;
4946
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4901
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4947
4902
  error_code: 'account_disconnected';
4948
4903
  } | {
4949
4904
  message: string;
4950
4905
  is_connected_account_error: true;
4951
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4906
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4952
4907
  error_code: 'invalid_credentials';
4953
- })>;
4908
+ }>;
4954
4909
  /** 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
4910
  warnings: Array<{
4956
4911
  message: string;
@@ -12937,12 +12892,12 @@ export interface Routes {
12937
12892
  errors: Array<{
12938
12893
  message: string;
12939
12894
  is_connected_account_error: true;
12940
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
12895
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
12941
12896
  error_code: 'account_disconnected';
12942
12897
  } | {
12943
12898
  message: string;
12944
12899
  is_connected_account_error: true;
12945
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
12900
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
12946
12901
  error_code: 'invalid_credentials';
12947
12902
  }>;
12948
12903
  warnings: Array<{
@@ -12987,12 +12942,12 @@ export interface Routes {
12987
12942
  errors: Array<{
12988
12943
  message: string;
12989
12944
  is_connected_account_error: true;
12990
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
12945
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
12991
12946
  error_code: 'account_disconnected';
12992
12947
  } | {
12993
12948
  message: string;
12994
12949
  is_connected_account_error: true;
12995
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
12950
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
12996
12951
  error_code: 'invalid_credentials';
12997
12952
  }>;
12998
12953
  warnings: Array<{
@@ -13037,12 +12992,12 @@ export interface Routes {
13037
12992
  errors: Array<{
13038
12993
  message: string;
13039
12994
  is_connected_account_error: true;
13040
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
12995
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13041
12996
  error_code: 'account_disconnected';
13042
12997
  } | {
13043
12998
  message: string;
13044
12999
  is_connected_account_error: true;
13045
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
13000
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13046
13001
  error_code: 'invalid_credentials';
13047
13002
  }>;
13048
13003
  warnings: Array<{
@@ -13574,7 +13529,7 @@ export interface Routes {
13574
13529
  /** Unique identifier for the Seam workspace associated with the device. */
13575
13530
  workspace_id: string;
13576
13531
  /** 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<({
13532
+ errors: Array<{
13578
13533
  message: string;
13579
13534
  is_device_error: true;
13580
13535
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -13584,11 +13539,6 @@ export interface Routes {
13584
13539
  is_device_error: true;
13585
13540
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13586
13541
  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
13542
  } | {
13593
13543
  message: string;
13594
13544
  is_device_error: true;
@@ -13639,17 +13589,17 @@ export interface Routes {
13639
13589
  is_device_error: true;
13640
13590
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13641
13591
  error_code: 'subscription_required';
13642
- }) | ({
13592
+ } | {
13643
13593
  message: string;
13644
13594
  is_connected_account_error: true;
13645
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
13595
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13646
13596
  error_code: 'account_disconnected';
13647
13597
  } | {
13648
13598
  message: string;
13649
13599
  is_connected_account_error: true;
13650
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
13600
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
13651
13601
  error_code: 'invalid_credentials';
13652
- })>;
13602
+ }>;
13653
13603
  /** 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
13604
  warnings: Array<{
13655
13605
  message: string;
@@ -14262,7 +14212,7 @@ export interface Routes {
14262
14212
  /** Unique identifier for the Seam workspace associated with the device. */
14263
14213
  workspace_id: string;
14264
14214
  /** 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<({
14215
+ errors: Array<{
14266
14216
  message: string;
14267
14217
  is_device_error: true;
14268
14218
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -14272,11 +14222,6 @@ export interface Routes {
14272
14222
  is_device_error: true;
14273
14223
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14274
14224
  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
14225
  } | {
14281
14226
  message: string;
14282
14227
  is_device_error: true;
@@ -14327,17 +14272,17 @@ export interface Routes {
14327
14272
  is_device_error: true;
14328
14273
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14329
14274
  error_code: 'subscription_required';
14330
- }) | ({
14275
+ } | {
14331
14276
  message: string;
14332
14277
  is_connected_account_error: true;
14333
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14278
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14334
14279
  error_code: 'account_disconnected';
14335
14280
  } | {
14336
14281
  message: string;
14337
14282
  is_connected_account_error: true;
14338
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14283
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14339
14284
  error_code: 'invalid_credentials';
14340
- })>;
14285
+ }>;
14341
14286
  /** 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
14287
  warnings: Array<{
14343
14288
  message: string;
@@ -14516,7 +14461,7 @@ export interface Routes {
14516
14461
  /** Unique identifier for the Seam workspace associated with the device. */
14517
14462
  workspace_id: string;
14518
14463
  /** 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<({
14464
+ errors: Array<{
14520
14465
  message: string;
14521
14466
  is_device_error: true;
14522
14467
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -14526,11 +14471,6 @@ export interface Routes {
14526
14471
  is_device_error: true;
14527
14472
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14528
14473
  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
14474
  } | {
14535
14475
  message: string;
14536
14476
  is_device_error: true;
@@ -14581,17 +14521,17 @@ export interface Routes {
14581
14521
  is_device_error: true;
14582
14522
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14583
14523
  error_code: 'subscription_required';
14584
- }) | ({
14524
+ } | {
14585
14525
  message: string;
14586
14526
  is_connected_account_error: true;
14587
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14527
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14588
14528
  error_code: 'account_disconnected';
14589
14529
  } | {
14590
14530
  message: string;
14591
14531
  is_connected_account_error: true;
14592
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14532
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14593
14533
  error_code: 'invalid_credentials';
14594
- })>;
14534
+ }>;
14595
14535
  /** 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
14536
  warnings: Array<{
14597
14537
  message: string;
@@ -14779,7 +14719,7 @@ export interface Routes {
14779
14719
  /** Unique identifier for the Seam workspace associated with the device. */
14780
14720
  workspace_id: string;
14781
14721
  /** 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<({
14722
+ errors: Array<{
14783
14723
  message: string;
14784
14724
  is_device_error: true;
14785
14725
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -14789,11 +14729,6 @@ export interface Routes {
14789
14729
  is_device_error: true;
14790
14730
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14791
14731
  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
14732
  } | {
14798
14733
  message: string;
14799
14734
  is_device_error: true;
@@ -14844,17 +14779,17 @@ export interface Routes {
14844
14779
  is_device_error: true;
14845
14780
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14846
14781
  error_code: 'subscription_required';
14847
- }) | ({
14782
+ } | {
14848
14783
  message: string;
14849
14784
  is_connected_account_error: true;
14850
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14785
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14851
14786
  error_code: 'account_disconnected';
14852
14787
  } | {
14853
14788
  message: string;
14854
14789
  is_connected_account_error: true;
14855
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
14790
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
14856
14791
  error_code: 'invalid_credentials';
14857
- })>;
14792
+ }>;
14858
14793
  /** 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
14794
  warnings: Array<{
14860
14795
  message: string;
@@ -17932,7 +17867,7 @@ export interface Routes {
17932
17867
  /** Unique identifier for the Seam workspace associated with the device. */
17933
17868
  workspace_id: string;
17934
17869
  /** 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<({
17870
+ errors: Array<{
17936
17871
  message: string;
17937
17872
  is_device_error: true;
17938
17873
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -17942,11 +17877,6 @@ export interface Routes {
17942
17877
  is_device_error: true;
17943
17878
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
17944
17879
  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
17880
  } | {
17951
17881
  message: string;
17952
17882
  is_device_error: true;
@@ -17997,17 +17927,17 @@ export interface Routes {
17997
17927
  is_device_error: true;
17998
17928
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
17999
17929
  error_code: 'subscription_required';
18000
- }) | ({
17930
+ } | {
18001
17931
  message: string;
18002
17932
  is_connected_account_error: true;
18003
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
17933
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
18004
17934
  error_code: 'account_disconnected';
18005
17935
  } | {
18006
17936
  message: string;
18007
17937
  is_connected_account_error: true;
18008
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
17938
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
18009
17939
  error_code: 'invalid_credentials';
18010
- })>;
17940
+ }>;
18011
17941
  /** 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
17942
  warnings: Array<{
18013
17943
  message: string;
@@ -18584,7 +18514,7 @@ export interface Routes {
18584
18514
  /** Unique identifier for the Seam workspace associated with the device. */
18585
18515
  workspace_id: string;
18586
18516
  /** 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<({
18517
+ errors: Array<{
18588
18518
  message: string;
18589
18519
  is_device_error: true;
18590
18520
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -18594,11 +18524,6 @@ export interface Routes {
18594
18524
  is_device_error: true;
18595
18525
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
18596
18526
  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
18527
  } | {
18603
18528
  message: string;
18604
18529
  is_device_error: true;
@@ -18649,17 +18574,17 @@ export interface Routes {
18649
18574
  is_device_error: true;
18650
18575
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
18651
18576
  error_code: 'subscription_required';
18652
- }) | ({
18577
+ } | {
18653
18578
  message: string;
18654
18579
  is_connected_account_error: true;
18655
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
18580
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
18656
18581
  error_code: 'account_disconnected';
18657
18582
  } | {
18658
18583
  message: string;
18659
18584
  is_connected_account_error: true;
18660
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
18585
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
18661
18586
  error_code: 'invalid_credentials';
18662
- })>;
18587
+ }>;
18663
18588
  /** 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
18589
  warnings: Array<{
18665
18590
  message: string;
@@ -19272,7 +19197,7 @@ export interface Routes {
19272
19197
  /** Unique identifier for the Seam workspace associated with the device. */
19273
19198
  workspace_id: string;
19274
19199
  /** 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<({
19200
+ errors: Array<{
19276
19201
  message: string;
19277
19202
  is_device_error: true;
19278
19203
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -19282,11 +19207,6 @@ export interface Routes {
19282
19207
  is_device_error: true;
19283
19208
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19284
19209
  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
19210
  } | {
19291
19211
  message: string;
19292
19212
  is_device_error: true;
@@ -19337,17 +19257,17 @@ export interface Routes {
19337
19257
  is_device_error: true;
19338
19258
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19339
19259
  error_code: 'subscription_required';
19340
- }) | ({
19260
+ } | {
19341
19261
  message: string;
19342
19262
  is_connected_account_error: true;
19343
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19263
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19344
19264
  error_code: 'account_disconnected';
19345
19265
  } | {
19346
19266
  message: string;
19347
19267
  is_connected_account_error: true;
19348
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19268
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19349
19269
  error_code: 'invalid_credentials';
19350
- })>;
19270
+ }>;
19351
19271
  /** 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
19272
  warnings: Array<{
19353
19273
  message: string;
@@ -19923,7 +19843,7 @@ export interface Routes {
19923
19843
  /** Unique identifier for the Seam workspace associated with the device. */
19924
19844
  workspace_id: string;
19925
19845
  /** 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<({
19846
+ errors: Array<{
19927
19847
  message: string;
19928
19848
  is_device_error: true;
19929
19849
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -19933,11 +19853,6 @@ export interface Routes {
19933
19853
  is_device_error: true;
19934
19854
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19935
19855
  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
19856
  } | {
19942
19857
  message: string;
19943
19858
  is_device_error: true;
@@ -19988,17 +19903,17 @@ export interface Routes {
19988
19903
  is_device_error: true;
19989
19904
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19990
19905
  error_code: 'subscription_required';
19991
- }) | ({
19906
+ } | {
19992
19907
  message: string;
19993
19908
  is_connected_account_error: true;
19994
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19909
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
19995
19910
  error_code: 'account_disconnected';
19996
19911
  } | {
19997
19912
  message: string;
19998
19913
  is_connected_account_error: true;
19999
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
19914
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
20000
19915
  error_code: 'invalid_credentials';
20001
- })>;
19916
+ }>;
20002
19917
  /** 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
19918
  warnings: Array<{
20004
19919
  message: string;
@@ -22382,7 +22297,7 @@ export interface Routes {
22382
22297
  /** Unique identifier for the Seam workspace associated with the device. */
22383
22298
  workspace_id: string;
22384
22299
  /** 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<({
22300
+ errors: Array<{
22386
22301
  message: string;
22387
22302
  is_device_error: true;
22388
22303
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -22392,11 +22307,6 @@ export interface Routes {
22392
22307
  is_device_error: true;
22393
22308
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
22394
22309
  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
22310
  } | {
22401
22311
  message: string;
22402
22312
  is_device_error: true;
@@ -22447,17 +22357,17 @@ export interface Routes {
22447
22357
  is_device_error: true;
22448
22358
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
22449
22359
  error_code: 'subscription_required';
22450
- }) | ({
22360
+ } | {
22451
22361
  message: string;
22452
22362
  is_connected_account_error: true;
22453
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22363
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
22454
22364
  error_code: 'account_disconnected';
22455
22365
  } | {
22456
22366
  message: string;
22457
22367
  is_connected_account_error: true;
22458
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
22368
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
22459
22369
  error_code: 'invalid_credentials';
22460
- })>;
22370
+ }>;
22461
22371
  /** 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
22372
  warnings: Array<{
22463
22373
  message: string;
@@ -23033,7 +22943,7 @@ export interface Routes {
23033
22943
  /** Unique identifier for the Seam workspace associated with the device. */
23034
22944
  workspace_id: string;
23035
22945
  /** 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<({
22946
+ errors: Array<{
23037
22947
  message: string;
23038
22948
  is_device_error: true;
23039
22949
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -23043,11 +22953,6 @@ export interface Routes {
23043
22953
  is_device_error: true;
23044
22954
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
23045
22955
  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
22956
  } | {
23052
22957
  message: string;
23053
22958
  is_device_error: true;
@@ -23098,17 +23003,17 @@ export interface Routes {
23098
23003
  is_device_error: true;
23099
23004
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
23100
23005
  error_code: 'subscription_required';
23101
- }) | ({
23006
+ } | {
23102
23007
  message: string;
23103
23008
  is_connected_account_error: true;
23104
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23009
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
23105
23010
  error_code: 'account_disconnected';
23106
23011
  } | {
23107
23012
  message: string;
23108
23013
  is_connected_account_error: true;
23109
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
23014
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
23110
23015
  error_code: 'invalid_credentials';
23111
- })>;
23016
+ }>;
23112
23017
  /** 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
23018
  warnings: Array<{
23114
23019
  message: string;
@@ -25929,7 +25834,7 @@ export interface Routes {
25929
25834
  /** Unique identifier for the Seam workspace associated with the device. */
25930
25835
  workspace_id: string;
25931
25836
  /** 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<({
25837
+ errors: Array<{
25933
25838
  message: string;
25934
25839
  is_device_error: true;
25935
25840
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -25939,11 +25844,6 @@ export interface Routes {
25939
25844
  is_device_error: true;
25940
25845
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
25941
25846
  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
25847
  } | {
25948
25848
  message: string;
25949
25849
  is_device_error: true;
@@ -25994,17 +25894,17 @@ export interface Routes {
25994
25894
  is_device_error: true;
25995
25895
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
25996
25896
  error_code: 'subscription_required';
25997
- }) | ({
25897
+ } | {
25998
25898
  message: string;
25999
25899
  is_connected_account_error: true;
26000
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25900
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
26001
25901
  error_code: 'account_disconnected';
26002
25902
  } | {
26003
25903
  message: string;
26004
25904
  is_connected_account_error: true;
26005
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
25905
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
26006
25906
  error_code: 'invalid_credentials';
26007
- })>;
25907
+ }>;
26008
25908
  /** 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
25909
  warnings: Array<{
26010
25910
  message: string;
@@ -26148,7 +26048,7 @@ export interface Routes {
26148
26048
  /** Unique identifier for the Seam workspace associated with the device. */
26149
26049
  workspace_id: string;
26150
26050
  /** 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<({
26051
+ errors: Array<{
26152
26052
  message: string;
26153
26053
  is_device_error: true;
26154
26054
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -26158,11 +26058,6 @@ export interface Routes {
26158
26058
  is_device_error: true;
26159
26059
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
26160
26060
  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
26061
  } | {
26167
26062
  message: string;
26168
26063
  is_device_error: true;
@@ -26213,17 +26108,17 @@ export interface Routes {
26213
26108
  is_device_error: true;
26214
26109
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
26215
26110
  error_code: 'subscription_required';
26216
- }) | ({
26111
+ } | {
26217
26112
  message: string;
26218
26113
  is_connected_account_error: true;
26219
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26114
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
26220
26115
  error_code: 'account_disconnected';
26221
26116
  } | {
26222
26117
  message: string;
26223
26118
  is_connected_account_error: true;
26224
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
26119
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
26225
26120
  error_code: 'invalid_credentials';
26226
- })>;
26121
+ }>;
26227
26122
  /** 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
26123
  warnings: Array<{
26229
26124
  message: string;
@@ -28604,7 +28499,7 @@ export interface Routes {
28604
28499
  /** Unique identifier for the Seam workspace associated with the device. */
28605
28500
  workspace_id: string;
28606
28501
  /** 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<({
28502
+ errors: Array<{
28608
28503
  message: string;
28609
28504
  is_device_error: true;
28610
28505
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -28614,11 +28509,6 @@ export interface Routes {
28614
28509
  is_device_error: true;
28615
28510
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
28616
28511
  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
28512
  } | {
28623
28513
  message: string;
28624
28514
  is_device_error: true;
@@ -28669,17 +28559,17 @@ export interface Routes {
28669
28559
  is_device_error: true;
28670
28560
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
28671
28561
  error_code: 'subscription_required';
28672
- }) | ({
28562
+ } | {
28673
28563
  message: string;
28674
28564
  is_connected_account_error: true;
28675
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28565
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
28676
28566
  error_code: 'account_disconnected';
28677
28567
  } | {
28678
28568
  message: string;
28679
28569
  is_connected_account_error: true;
28680
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
28570
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
28681
28571
  error_code: 'invalid_credentials';
28682
- })>;
28572
+ }>;
28683
28573
  /** 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
28574
  warnings: Array<{
28685
28575
  message: string;
@@ -31044,7 +30934,7 @@ export interface Routes {
31044
30934
  /** Unique identifier for the Seam workspace associated with the device. */
31045
30935
  workspace_id: string;
31046
30936
  /** 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<({
30937
+ errors: Array<{
31048
30938
  message: string;
31049
30939
  is_device_error: true;
31050
30940
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -31054,11 +30944,6 @@ export interface Routes {
31054
30944
  is_device_error: true;
31055
30945
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31056
30946
  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
30947
  } | {
31063
30948
  message: string;
31064
30949
  is_device_error: true;
@@ -31109,17 +30994,17 @@ export interface Routes {
31109
30994
  is_device_error: true;
31110
30995
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31111
30996
  error_code: 'subscription_required';
31112
- }) | ({
30997
+ } | {
31113
30998
  message: string;
31114
30999
  is_connected_account_error: true;
31115
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31000
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31116
31001
  error_code: 'account_disconnected';
31117
31002
  } | {
31118
31003
  message: string;
31119
31004
  is_connected_account_error: true;
31120
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31005
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31121
31006
  error_code: 'invalid_credentials';
31122
- })>;
31007
+ }>;
31123
31008
  /** 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
31009
  warnings: Array<{
31125
31010
  message: string;
@@ -31695,7 +31580,7 @@ export interface Routes {
31695
31580
  /** Unique identifier for the Seam workspace associated with the device. */
31696
31581
  workspace_id: string;
31697
31582
  /** 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<({
31583
+ errors: Array<{
31699
31584
  message: string;
31700
31585
  is_device_error: true;
31701
31586
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -31705,11 +31590,6 @@ export interface Routes {
31705
31590
  is_device_error: true;
31706
31591
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31707
31592
  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
31593
  } | {
31714
31594
  message: string;
31715
31595
  is_device_error: true;
@@ -31760,17 +31640,17 @@ export interface Routes {
31760
31640
  is_device_error: true;
31761
31641
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31762
31642
  error_code: 'subscription_required';
31763
- }) | ({
31643
+ } | {
31764
31644
  message: string;
31765
31645
  is_connected_account_error: true;
31766
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31646
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31767
31647
  error_code: 'account_disconnected';
31768
31648
  } | {
31769
31649
  message: string;
31770
31650
  is_connected_account_error: true;
31771
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
31651
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
31772
31652
  error_code: 'invalid_credentials';
31773
- })>;
31653
+ }>;
31774
31654
  /** 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
31655
  warnings: Array<{
31776
31656
  message: string;
@@ -35520,7 +35400,7 @@ export interface Routes {
35520
35400
  /** Unique identifier for the Seam workspace associated with the device. */
35521
35401
  workspace_id: string;
35522
35402
  /** 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<({
35403
+ errors: Array<{
35524
35404
  message: string;
35525
35405
  is_device_error: true;
35526
35406
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -35530,11 +35410,6 @@ export interface Routes {
35530
35410
  is_device_error: true;
35531
35411
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35532
35412
  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
35413
  } | {
35539
35414
  message: string;
35540
35415
  is_device_error: true;
@@ -35585,17 +35460,17 @@ export interface Routes {
35585
35460
  is_device_error: true;
35586
35461
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35587
35462
  error_code: 'subscription_required';
35588
- }) | ({
35463
+ } | {
35589
35464
  message: string;
35590
35465
  is_connected_account_error: true;
35591
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35466
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35592
35467
  error_code: 'account_disconnected';
35593
35468
  } | {
35594
35469
  message: string;
35595
35470
  is_connected_account_error: true;
35596
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
35471
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
35597
35472
  error_code: 'invalid_credentials';
35598
- })>;
35473
+ }>;
35599
35474
  /** 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
35475
  warnings: Array<{
35601
35476
  message: string;
@@ -36173,7 +36048,7 @@ export interface Routes {
36173
36048
  /** Unique identifier for the Seam workspace associated with the device. */
36174
36049
  workspace_id: string;
36175
36050
  /** 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<({
36051
+ errors: Array<{
36177
36052
  message: string;
36178
36053
  is_device_error: true;
36179
36054
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
@@ -36183,11 +36058,6 @@ export interface Routes {
36183
36058
  is_device_error: true;
36184
36059
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36185
36060
  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
36061
  } | {
36192
36062
  message: string;
36193
36063
  is_device_error: true;
@@ -36238,17 +36108,17 @@ export interface Routes {
36238
36108
  is_device_error: true;
36239
36109
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36240
36110
  error_code: 'subscription_required';
36241
- }) | ({
36111
+ } | {
36242
36112
  message: string;
36243
36113
  is_connected_account_error: true;
36244
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
36114
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36245
36115
  error_code: 'account_disconnected';
36246
36116
  } | {
36247
36117
  message: string;
36248
36118
  is_connected_account_error: true;
36249
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
36119
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
36250
36120
  error_code: 'invalid_credentials';
36251
- })>;
36121
+ }>;
36252
36122
  /** 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
36123
  warnings: Array<{
36254
36124
  message: string;