@seamapi/types 1.363.1 → 1.365.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/dist/connect.cjs +855 -45
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +2125 -542
  4. package/lib/seam/connect/internal/schemas.d.ts +1 -1
  5. package/lib/seam/connect/internal/schemas.js +1 -1
  6. package/lib/seam/connect/internal/schemas.js.map +1 -1
  7. package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +464 -109
  8. package/lib/seam/connect/models/access-codes/managed-access-code.js +74 -17
  9. package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
  10. package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +156 -26
  11. package/lib/seam/connect/models/acs/acs-access-group.js +1 -2
  12. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  13. package/lib/seam/connect/models/acs/acs-credential.js +1 -2
  14. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  15. package/lib/seam/connect/models/acs/acs-system.d.ts +1 -1
  16. package/lib/seam/connect/models/acs/acs-system.js +2 -2
  17. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  18. package/lib/seam/connect/models/acs/acs-user.d.ts +8 -8
  19. package/lib/seam/connect/models/acs/acs-user.js +1 -2
  20. package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
  21. package/lib/seam/connect/models/connected-accounts/connected-account.js +1 -2
  22. package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
  23. package/lib/seam/connect/models/devices/device.js +1 -2
  24. package/lib/seam/connect/models/devices/device.js.map +1 -1
  25. package/lib/seam/connect/models/index.d.ts +1 -0
  26. package/lib/seam/connect/models/index.js +1 -0
  27. package/lib/seam/connect/models/index.js.map +1 -1
  28. package/lib/seam/connect/models/locations/index.d.ts +1 -0
  29. package/lib/seam/connect/models/locations/index.js +2 -0
  30. package/lib/seam/connect/models/locations/index.js.map +1 -0
  31. package/lib/seam/connect/models/locations/location.d.ts +49 -0
  32. package/lib/seam/connect/models/locations/location.js +25 -0
  33. package/lib/seam/connect/models/locations/location.js.map +1 -0
  34. package/lib/seam/connect/openapi.d.ts +803 -0
  35. package/lib/seam/connect/openapi.js +813 -28
  36. package/lib/seam/connect/openapi.js.map +1 -1
  37. package/lib/seam/connect/route-types.d.ts +494 -54
  38. package/package.json +1 -1
  39. package/src/lib/seam/connect/internal/schemas.ts +2 -0
  40. package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +80 -19
  41. package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -2
  42. package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -2
  43. package/src/lib/seam/connect/models/acs/acs-system.ts +2 -2
  44. package/src/lib/seam/connect/models/acs/acs-user.ts +1 -2
  45. package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +1 -2
  46. package/src/lib/seam/connect/models/devices/device.ts +1 -2
  47. package/src/lib/seam/connect/models/index.ts +1 -0
  48. package/src/lib/seam/connect/models/locations/index.ts +1 -0
  49. package/src/lib/seam/connect/models/locations/location.ts +30 -0
  50. package/src/lib/seam/connect/openapi.ts +838 -32
  51. package/src/lib/seam/connect/route-types.ts +560 -63
@@ -1108,6 +1108,13 @@ export interface Routes {
1108
1108
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1109
1109
  error_code: 'smartthings_failed_to_set_after_multiple_retries'
1110
1110
  }
1111
+ | {
1112
+ message: string
1113
+ is_access_code_error: true
1114
+ created_at?: string | undefined
1115
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1116
+ error_code: 'smartthings_no_free_slots_available'
1117
+ }
1111
1118
  | {
1112
1119
  message: string
1113
1120
  is_access_code_error: true
@@ -1211,7 +1218,14 @@ export interface Routes {
1211
1218
  is_access_code_error: true
1212
1219
  created_at?: string | undefined
1213
1220
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1214
- error_code: 'salto_site_user_not_subscribed'
1221
+ error_code: 'august_lock_temporarily_offline'
1222
+ }
1223
+ | {
1224
+ message: string
1225
+ is_access_code_error: true
1226
+ created_at?: string | undefined
1227
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1228
+ error_code: 'salto_ks_user_not_subscribed'
1215
1229
  }
1216
1230
  | {
1217
1231
  message: string
@@ -1227,6 +1241,27 @@ export interface Routes {
1227
1241
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1228
1242
  error_code: 'hubitat_no_free_positions_available'
1229
1243
  }
1244
+ | {
1245
+ message: string
1246
+ is_access_code_error: true
1247
+ created_at?: string | undefined
1248
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1249
+ error_code: 'wyze_duplicate_code_name'
1250
+ }
1251
+ | {
1252
+ message: string
1253
+ is_access_code_error: true
1254
+ created_at?: string | undefined
1255
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1256
+ error_code: 'wyze_potential_duplicate_code'
1257
+ }
1258
+ | {
1259
+ message: string
1260
+ is_access_code_error: true
1261
+ created_at?: string | undefined
1262
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1263
+ error_code: 'dormakaba_oracode_no_valid_user_level'
1264
+ }
1230
1265
  | {
1231
1266
  message: string
1232
1267
  is_device_error: false
@@ -1349,12 +1384,6 @@ export interface Routes {
1349
1384
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1350
1385
  warning_code: 'schlage_creation_outage'
1351
1386
  }
1352
- | {
1353
- message: string
1354
- created_at?: string | undefined
1355
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1356
- warning_code: 'salto_office_mode'
1357
- }
1358
1387
  | {
1359
1388
  message: string
1360
1389
  created_at?: string | undefined
@@ -1385,6 +1414,12 @@ export interface Routes {
1385
1414
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1386
1415
  warning_code: 'august_device_programming_delay'
1387
1416
  }
1417
+ | {
1418
+ message: string
1419
+ created_at?: string | undefined
1420
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1421
+ warning_code: 'august_lock_temporarily_offline'
1422
+ }
1388
1423
  | {
1389
1424
  message: string
1390
1425
  created_at?: string | undefined
@@ -1489,6 +1524,13 @@ export interface Routes {
1489
1524
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1490
1525
  error_code: 'smartthings_failed_to_set_after_multiple_retries'
1491
1526
  }
1527
+ | {
1528
+ message: string
1529
+ is_access_code_error: true
1530
+ created_at?: string | undefined
1531
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1532
+ error_code: 'smartthings_no_free_slots_available'
1533
+ }
1492
1534
  | {
1493
1535
  message: string
1494
1536
  is_access_code_error: true
@@ -1592,7 +1634,14 @@ export interface Routes {
1592
1634
  is_access_code_error: true
1593
1635
  created_at?: string | undefined
1594
1636
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1595
- error_code: 'salto_site_user_not_subscribed'
1637
+ error_code: 'august_lock_temporarily_offline'
1638
+ }
1639
+ | {
1640
+ message: string
1641
+ is_access_code_error: true
1642
+ created_at?: string | undefined
1643
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1644
+ error_code: 'salto_ks_user_not_subscribed'
1596
1645
  }
1597
1646
  | {
1598
1647
  message: string
@@ -1608,6 +1657,27 @@ export interface Routes {
1608
1657
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1609
1658
  error_code: 'hubitat_no_free_positions_available'
1610
1659
  }
1660
+ | {
1661
+ message: string
1662
+ is_access_code_error: true
1663
+ created_at?: string | undefined
1664
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1665
+ error_code: 'wyze_duplicate_code_name'
1666
+ }
1667
+ | {
1668
+ message: string
1669
+ is_access_code_error: true
1670
+ created_at?: string | undefined
1671
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1672
+ error_code: 'wyze_potential_duplicate_code'
1673
+ }
1674
+ | {
1675
+ message: string
1676
+ is_access_code_error: true
1677
+ created_at?: string | undefined
1678
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1679
+ error_code: 'dormakaba_oracode_no_valid_user_level'
1680
+ }
1611
1681
  | {
1612
1682
  message: string
1613
1683
  is_device_error: false
@@ -1730,12 +1800,6 @@ export interface Routes {
1730
1800
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1731
1801
  warning_code: 'schlage_creation_outage'
1732
1802
  }
1733
- | {
1734
- message: string
1735
- created_at?: string | undefined
1736
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1737
- warning_code: 'salto_office_mode'
1738
- }
1739
1803
  | {
1740
1804
  message: string
1741
1805
  created_at?: string | undefined
@@ -1766,6 +1830,12 @@ export interface Routes {
1766
1830
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
1767
1831
  warning_code: 'august_device_programming_delay'
1768
1832
  }
1833
+ | {
1834
+ message: string
1835
+ created_at?: string | undefined
1836
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
1837
+ warning_code: 'august_lock_temporarily_offline'
1838
+ }
1769
1839
  | {
1770
1840
  message: string
1771
1841
  created_at?: string | undefined
@@ -2935,6 +3005,13 @@ export interface Routes {
2935
3005
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
2936
3006
  error_code: 'smartthings_failed_to_set_after_multiple_retries'
2937
3007
  }
3008
+ | {
3009
+ message: string
3010
+ is_access_code_error: true
3011
+ created_at?: string | undefined
3012
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3013
+ error_code: 'smartthings_no_free_slots_available'
3014
+ }
2938
3015
  | {
2939
3016
  message: string
2940
3017
  is_access_code_error: true
@@ -3038,7 +3115,14 @@ export interface Routes {
3038
3115
  is_access_code_error: true
3039
3116
  created_at?: string | undefined
3040
3117
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3041
- error_code: 'salto_site_user_not_subscribed'
3118
+ error_code: 'august_lock_temporarily_offline'
3119
+ }
3120
+ | {
3121
+ message: string
3122
+ is_access_code_error: true
3123
+ created_at?: string | undefined
3124
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3125
+ error_code: 'salto_ks_user_not_subscribed'
3042
3126
  }
3043
3127
  | {
3044
3128
  message: string
@@ -3054,6 +3138,27 @@ export interface Routes {
3054
3138
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3055
3139
  error_code: 'hubitat_no_free_positions_available'
3056
3140
  }
3141
+ | {
3142
+ message: string
3143
+ is_access_code_error: true
3144
+ created_at?: string | undefined
3145
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3146
+ error_code: 'wyze_duplicate_code_name'
3147
+ }
3148
+ | {
3149
+ message: string
3150
+ is_access_code_error: true
3151
+ created_at?: string | undefined
3152
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3153
+ error_code: 'wyze_potential_duplicate_code'
3154
+ }
3155
+ | {
3156
+ message: string
3157
+ is_access_code_error: true
3158
+ created_at?: string | undefined
3159
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3160
+ error_code: 'dormakaba_oracode_no_valid_user_level'
3161
+ }
3057
3162
  | {
3058
3163
  message: string
3059
3164
  is_device_error: false
@@ -3176,12 +3281,6 @@ export interface Routes {
3176
3281
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3177
3282
  warning_code: 'schlage_creation_outage'
3178
3283
  }
3179
- | {
3180
- message: string
3181
- created_at?: string | undefined
3182
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3183
- warning_code: 'salto_office_mode'
3184
- }
3185
3284
  | {
3186
3285
  message: string
3187
3286
  created_at?: string | undefined
@@ -3212,6 +3311,12 @@ export interface Routes {
3212
3311
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3213
3312
  warning_code: 'august_device_programming_delay'
3214
3313
  }
3314
+ | {
3315
+ message: string
3316
+ created_at?: string | undefined
3317
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3318
+ warning_code: 'august_lock_temporarily_offline'
3319
+ }
3215
3320
  | {
3216
3321
  message: string
3217
3322
  created_at?: string | undefined
@@ -3303,6 +3408,13 @@ export interface Routes {
3303
3408
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3304
3409
  error_code: 'smartthings_failed_to_set_after_multiple_retries'
3305
3410
  }
3411
+ | {
3412
+ message: string
3413
+ is_access_code_error: true
3414
+ created_at?: string | undefined
3415
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3416
+ error_code: 'smartthings_no_free_slots_available'
3417
+ }
3306
3418
  | {
3307
3419
  message: string
3308
3420
  is_access_code_error: true
@@ -3406,7 +3518,14 @@ export interface Routes {
3406
3518
  is_access_code_error: true
3407
3519
  created_at?: string | undefined
3408
3520
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3409
- error_code: 'salto_site_user_not_subscribed'
3521
+ error_code: 'august_lock_temporarily_offline'
3522
+ }
3523
+ | {
3524
+ message: string
3525
+ is_access_code_error: true
3526
+ created_at?: string | undefined
3527
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3528
+ error_code: 'salto_ks_user_not_subscribed'
3410
3529
  }
3411
3530
  | {
3412
3531
  message: string
@@ -3422,6 +3541,27 @@ export interface Routes {
3422
3541
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3423
3542
  error_code: 'hubitat_no_free_positions_available'
3424
3543
  }
3544
+ | {
3545
+ message: string
3546
+ is_access_code_error: true
3547
+ created_at?: string | undefined
3548
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3549
+ error_code: 'wyze_duplicate_code_name'
3550
+ }
3551
+ | {
3552
+ message: string
3553
+ is_access_code_error: true
3554
+ created_at?: string | undefined
3555
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3556
+ error_code: 'wyze_potential_duplicate_code'
3557
+ }
3558
+ | {
3559
+ message: string
3560
+ is_access_code_error: true
3561
+ created_at?: string | undefined
3562
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3563
+ error_code: 'dormakaba_oracode_no_valid_user_level'
3564
+ }
3425
3565
  | {
3426
3566
  message: string
3427
3567
  is_device_error: false
@@ -3544,12 +3684,6 @@ export interface Routes {
3544
3684
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3545
3685
  warning_code: 'schlage_creation_outage'
3546
3686
  }
3547
- | {
3548
- message: string
3549
- created_at?: string | undefined
3550
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3551
- warning_code: 'salto_office_mode'
3552
- }
3553
3687
  | {
3554
3688
  message: string
3555
3689
  created_at?: string | undefined
@@ -3580,6 +3714,12 @@ export interface Routes {
3580
3714
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3581
3715
  warning_code: 'august_device_programming_delay'
3582
3716
  }
3717
+ | {
3718
+ message: string
3719
+ created_at?: string | undefined
3720
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3721
+ warning_code: 'august_lock_temporarily_offline'
3722
+ }
3583
3723
  | {
3584
3724
  message: string
3585
3725
  created_at?: string | undefined
@@ -3670,6 +3810,13 @@ export interface Routes {
3670
3810
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3671
3811
  error_code: 'smartthings_failed_to_set_after_multiple_retries'
3672
3812
  }
3813
+ | {
3814
+ message: string
3815
+ is_access_code_error: true
3816
+ created_at?: string | undefined
3817
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3818
+ error_code: 'smartthings_no_free_slots_available'
3819
+ }
3673
3820
  | {
3674
3821
  message: string
3675
3822
  is_access_code_error: true
@@ -3773,7 +3920,14 @@ export interface Routes {
3773
3920
  is_access_code_error: true
3774
3921
  created_at?: string | undefined
3775
3922
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3776
- error_code: 'salto_site_user_not_subscribed'
3923
+ error_code: 'august_lock_temporarily_offline'
3924
+ }
3925
+ | {
3926
+ message: string
3927
+ is_access_code_error: true
3928
+ created_at?: string | undefined
3929
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3930
+ error_code: 'salto_ks_user_not_subscribed'
3777
3931
  }
3778
3932
  | {
3779
3933
  message: string
@@ -3789,6 +3943,27 @@ export interface Routes {
3789
3943
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3790
3944
  error_code: 'hubitat_no_free_positions_available'
3791
3945
  }
3946
+ | {
3947
+ message: string
3948
+ is_access_code_error: true
3949
+ created_at?: string | undefined
3950
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3951
+ error_code: 'wyze_duplicate_code_name'
3952
+ }
3953
+ | {
3954
+ message: string
3955
+ is_access_code_error: true
3956
+ created_at?: string | undefined
3957
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3958
+ error_code: 'wyze_potential_duplicate_code'
3959
+ }
3960
+ | {
3961
+ message: string
3962
+ is_access_code_error: true
3963
+ created_at?: string | undefined
3964
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
3965
+ error_code: 'dormakaba_oracode_no_valid_user_level'
3966
+ }
3792
3967
  | {
3793
3968
  message: string
3794
3969
  is_device_error: false
@@ -3911,12 +4086,6 @@ export interface Routes {
3911
4086
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3912
4087
  warning_code: 'schlage_creation_outage'
3913
4088
  }
3914
- | {
3915
- message: string
3916
- created_at?: string | undefined
3917
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3918
- warning_code: 'salto_office_mode'
3919
- }
3920
4089
  | {
3921
4090
  message: string
3922
4091
  created_at?: string | undefined
@@ -3947,6 +4116,12 @@ export interface Routes {
3947
4116
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
3948
4117
  warning_code: 'august_device_programming_delay'
3949
4118
  }
4119
+ | {
4120
+ message: string
4121
+ created_at?: string | undefined
4122
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4123
+ warning_code: 'august_lock_temporarily_offline'
4124
+ }
3950
4125
  | {
3951
4126
  message: string
3952
4127
  created_at?: string | undefined
@@ -4025,6 +4200,13 @@ export interface Routes {
4025
4200
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4026
4201
  error_code: 'smartthings_failed_to_set_after_multiple_retries'
4027
4202
  }
4203
+ | {
4204
+ message: string
4205
+ is_access_code_error: true
4206
+ created_at?: string | undefined
4207
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4208
+ error_code: 'smartthings_no_free_slots_available'
4209
+ }
4028
4210
  | {
4029
4211
  message: string
4030
4212
  is_access_code_error: true
@@ -4128,7 +4310,14 @@ export interface Routes {
4128
4310
  is_access_code_error: true
4129
4311
  created_at?: string | undefined
4130
4312
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4131
- error_code: 'salto_site_user_not_subscribed'
4313
+ error_code: 'august_lock_temporarily_offline'
4314
+ }
4315
+ | {
4316
+ message: string
4317
+ is_access_code_error: true
4318
+ created_at?: string | undefined
4319
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4320
+ error_code: 'salto_ks_user_not_subscribed'
4132
4321
  }
4133
4322
  | {
4134
4323
  message: string
@@ -4144,6 +4333,27 @@ export interface Routes {
4144
4333
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4145
4334
  error_code: 'hubitat_no_free_positions_available'
4146
4335
  }
4336
+ | {
4337
+ message: string
4338
+ is_access_code_error: true
4339
+ created_at?: string | undefined
4340
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4341
+ error_code: 'wyze_duplicate_code_name'
4342
+ }
4343
+ | {
4344
+ message: string
4345
+ is_access_code_error: true
4346
+ created_at?: string | undefined
4347
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4348
+ error_code: 'wyze_potential_duplicate_code'
4349
+ }
4350
+ | {
4351
+ message: string
4352
+ is_access_code_error: true
4353
+ created_at?: string | undefined
4354
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4355
+ error_code: 'dormakaba_oracode_no_valid_user_level'
4356
+ }
4147
4357
  | {
4148
4358
  message: string
4149
4359
  is_device_error: false
@@ -4266,12 +4476,6 @@ export interface Routes {
4266
4476
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4267
4477
  warning_code: 'schlage_creation_outage'
4268
4478
  }
4269
- | {
4270
- message: string
4271
- created_at?: string | undefined
4272
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4273
- warning_code: 'salto_office_mode'
4274
- }
4275
4479
  | {
4276
4480
  message: string
4277
4481
  created_at?: string | undefined
@@ -4302,6 +4506,12 @@ export interface Routes {
4302
4506
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4303
4507
  warning_code: 'august_device_programming_delay'
4304
4508
  }
4509
+ | {
4510
+ message: string
4511
+ created_at?: string | undefined
4512
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4513
+ warning_code: 'august_lock_temporarily_offline'
4514
+ }
4305
4515
  | {
4306
4516
  message: string
4307
4517
  created_at?: string | undefined
@@ -4388,6 +4598,13 @@ export interface Routes {
4388
4598
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4389
4599
  error_code: 'smartthings_failed_to_set_after_multiple_retries'
4390
4600
  }
4601
+ | {
4602
+ message: string
4603
+ is_access_code_error: true
4604
+ created_at?: string | undefined
4605
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4606
+ error_code: 'smartthings_no_free_slots_available'
4607
+ }
4391
4608
  | {
4392
4609
  message: string
4393
4610
  is_access_code_error: true
@@ -4491,7 +4708,14 @@ export interface Routes {
4491
4708
  is_access_code_error: true
4492
4709
  created_at?: string | undefined
4493
4710
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4494
- error_code: 'salto_site_user_not_subscribed'
4711
+ error_code: 'august_lock_temporarily_offline'
4712
+ }
4713
+ | {
4714
+ message: string
4715
+ is_access_code_error: true
4716
+ created_at?: string | undefined
4717
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4718
+ error_code: 'salto_ks_user_not_subscribed'
4495
4719
  }
4496
4720
  | {
4497
4721
  message: string
@@ -4507,6 +4731,27 @@ export interface Routes {
4507
4731
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4508
4732
  error_code: 'hubitat_no_free_positions_available'
4509
4733
  }
4734
+ | {
4735
+ message: string
4736
+ is_access_code_error: true
4737
+ created_at?: string | undefined
4738
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4739
+ error_code: 'wyze_duplicate_code_name'
4740
+ }
4741
+ | {
4742
+ message: string
4743
+ is_access_code_error: true
4744
+ created_at?: string | undefined
4745
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4746
+ error_code: 'wyze_potential_duplicate_code'
4747
+ }
4748
+ | {
4749
+ message: string
4750
+ is_access_code_error: true
4751
+ created_at?: string | undefined
4752
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4753
+ error_code: 'dormakaba_oracode_no_valid_user_level'
4754
+ }
4510
4755
  | {
4511
4756
  message: string
4512
4757
  is_device_error: false
@@ -4629,12 +4874,6 @@ export interface Routes {
4629
4874
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4630
4875
  warning_code: 'schlage_creation_outage'
4631
4876
  }
4632
- | {
4633
- message: string
4634
- created_at?: string | undefined
4635
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4636
- warning_code: 'salto_office_mode'
4637
- }
4638
4877
  | {
4639
4878
  message: string
4640
4879
  created_at?: string | undefined
@@ -4665,6 +4904,12 @@ export interface Routes {
4665
4904
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
4666
4905
  warning_code: 'august_device_programming_delay'
4667
4906
  }
4907
+ | {
4908
+ message: string
4909
+ created_at?: string | undefined
4910
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
4911
+ warning_code: 'august_lock_temporarily_offline'
4912
+ }
4668
4913
  | {
4669
4914
  message: string
4670
4915
  created_at?: string | undefined
@@ -5810,6 +6055,13 @@ export interface Routes {
5810
6055
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5811
6056
  error_code: 'smartthings_failed_to_set_after_multiple_retries'
5812
6057
  }
6058
+ | {
6059
+ message: string
6060
+ is_access_code_error: true
6061
+ created_at?: string | undefined
6062
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6063
+ error_code: 'smartthings_no_free_slots_available'
6064
+ }
5813
6065
  | {
5814
6066
  message: string
5815
6067
  is_access_code_error: true
@@ -5913,7 +6165,14 @@ export interface Routes {
5913
6165
  is_access_code_error: true
5914
6166
  created_at?: string | undefined
5915
6167
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5916
- error_code: 'salto_site_user_not_subscribed'
6168
+ error_code: 'august_lock_temporarily_offline'
6169
+ }
6170
+ | {
6171
+ message: string
6172
+ is_access_code_error: true
6173
+ created_at?: string | undefined
6174
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6175
+ error_code: 'salto_ks_user_not_subscribed'
5917
6176
  }
5918
6177
  | {
5919
6178
  message: string
@@ -5929,6 +6188,27 @@ export interface Routes {
5929
6188
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
5930
6189
  error_code: 'hubitat_no_free_positions_available'
5931
6190
  }
6191
+ | {
6192
+ message: string
6193
+ is_access_code_error: true
6194
+ created_at?: string | undefined
6195
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6196
+ error_code: 'wyze_duplicate_code_name'
6197
+ }
6198
+ | {
6199
+ message: string
6200
+ is_access_code_error: true
6201
+ created_at?: string | undefined
6202
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6203
+ error_code: 'wyze_potential_duplicate_code'
6204
+ }
6205
+ | {
6206
+ message: string
6207
+ is_access_code_error: true
6208
+ created_at?: string | undefined
6209
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6210
+ error_code: 'dormakaba_oracode_no_valid_user_level'
6211
+ }
5932
6212
  | {
5933
6213
  message: string
5934
6214
  is_device_error: false
@@ -6051,12 +6331,6 @@ export interface Routes {
6051
6331
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6052
6332
  warning_code: 'schlage_creation_outage'
6053
6333
  }
6054
- | {
6055
- message: string
6056
- created_at?: string | undefined
6057
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6058
- warning_code: 'salto_office_mode'
6059
- }
6060
6334
  | {
6061
6335
  message: string
6062
6336
  created_at?: string | undefined
@@ -6087,6 +6361,12 @@ export interface Routes {
6087
6361
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6088
6362
  warning_code: 'august_device_programming_delay'
6089
6363
  }
6364
+ | {
6365
+ message: string
6366
+ created_at?: string | undefined
6367
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6368
+ warning_code: 'august_lock_temporarily_offline'
6369
+ }
6090
6370
  | {
6091
6371
  message: string
6092
6372
  created_at?: string | undefined
@@ -6155,6 +6435,13 @@ export interface Routes {
6155
6435
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6156
6436
  error_code: 'smartthings_failed_to_set_after_multiple_retries'
6157
6437
  }
6438
+ | {
6439
+ message: string
6440
+ is_access_code_error: true
6441
+ created_at?: string | undefined
6442
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6443
+ error_code: 'smartthings_no_free_slots_available'
6444
+ }
6158
6445
  | {
6159
6446
  message: string
6160
6447
  is_access_code_error: true
@@ -6258,7 +6545,14 @@ export interface Routes {
6258
6545
  is_access_code_error: true
6259
6546
  created_at?: string | undefined
6260
6547
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6261
- error_code: 'salto_site_user_not_subscribed'
6548
+ error_code: 'august_lock_temporarily_offline'
6549
+ }
6550
+ | {
6551
+ message: string
6552
+ is_access_code_error: true
6553
+ created_at?: string | undefined
6554
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6555
+ error_code: 'salto_ks_user_not_subscribed'
6262
6556
  }
6263
6557
  | {
6264
6558
  message: string
@@ -6274,6 +6568,27 @@ export interface Routes {
6274
6568
  /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6275
6569
  error_code: 'hubitat_no_free_positions_available'
6276
6570
  }
6571
+ | {
6572
+ message: string
6573
+ is_access_code_error: true
6574
+ created_at?: string | undefined
6575
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6576
+ error_code: 'wyze_duplicate_code_name'
6577
+ }
6578
+ | {
6579
+ message: string
6580
+ is_access_code_error: true
6581
+ created_at?: string | undefined
6582
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6583
+ error_code: 'wyze_potential_duplicate_code'
6584
+ }
6585
+ | {
6586
+ message: string
6587
+ is_access_code_error: true
6588
+ created_at?: string | undefined
6589
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6590
+ error_code: 'dormakaba_oracode_no_valid_user_level'
6591
+ }
6277
6592
  | {
6278
6593
  message: string
6279
6594
  is_device_error: false
@@ -6396,12 +6711,6 @@ export interface Routes {
6396
6711
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6397
6712
  warning_code: 'schlage_creation_outage'
6398
6713
  }
6399
- | {
6400
- message: string
6401
- created_at?: string | undefined
6402
- /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6403
- warning_code: 'salto_office_mode'
6404
- }
6405
6714
  | {
6406
6715
  message: string
6407
6716
  created_at?: string | undefined
@@ -6432,6 +6741,12 @@ export interface Routes {
6432
6741
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
6433
6742
  warning_code: 'august_device_programming_delay'
6434
6743
  }
6744
+ | {
6745
+ message: string
6746
+ created_at?: string | undefined
6747
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6748
+ warning_code: 'august_lock_temporarily_offline'
6749
+ }
6435
6750
  | {
6436
6751
  message: string
6437
6752
  created_at?: string | undefined
@@ -17684,6 +17999,8 @@ export interface Routes {
17684
17999
  | 'can_simulate_disconnection'
17685
18000
  >
17686
18001
  | undefined
18002
+ /** */
18003
+ unstable_location_id?: (string | null) | undefined
17687
18004
  }
17688
18005
  formData: {}
17689
18006
  jsonResponse: {
@@ -19246,6 +19563,8 @@ export interface Routes {
19246
19563
  | 'can_simulate_disconnection'
19247
19564
  >
19248
19565
  | undefined
19566
+ /** */
19567
+ unstable_location_id?: (string | null) | undefined
19249
19568
  }
19250
19569
  formData: {}
19251
19570
  jsonResponse: {
@@ -24482,6 +24801,8 @@ export interface Routes {
24482
24801
  | 'can_simulate_disconnection'
24483
24802
  >
24484
24803
  | undefined
24804
+ /** */
24805
+ unstable_location_id?: (string | null) | undefined
24485
24806
  }
24486
24807
  formData: {}
24487
24808
  jsonResponse: {
@@ -28635,6 +28956,8 @@ export interface Routes {
28635
28956
  | 'can_simulate_disconnection'
28636
28957
  >
28637
28958
  | undefined
28959
+ /** */
28960
+ unstable_location_id?: (string | null) | undefined
28638
28961
  }
28639
28962
  formData: {}
28640
28963
  jsonResponse: {
@@ -39428,6 +39751,8 @@ export interface Routes {
39428
39751
  | 'can_simulate_disconnection'
39429
39752
  >
39430
39753
  | undefined
39754
+ /** */
39755
+ unstable_location_id?: (string | null) | undefined
39431
39756
  }
39432
39757
  formData: {}
39433
39758
  jsonResponse: {
@@ -44770,6 +45095,178 @@ export interface Routes {
44770
45095
  formData: {}
44771
45096
  jsonResponse: {}
44772
45097
  }
45098
+ '/unstable_locations/add_devices': {
45099
+ route: '/unstable_locations/add_devices'
45100
+ method: 'POST'
45101
+ queryParams: {}
45102
+ jsonBody: {
45103
+ location_id: string
45104
+ device_ids: string[]
45105
+ }
45106
+ commonParams: {}
45107
+ formData: {}
45108
+ jsonResponse: {}
45109
+ }
45110
+ '/unstable_locations/create': {
45111
+ route: '/unstable_locations/create'
45112
+ method: 'POST'
45113
+ queryParams: {}
45114
+ jsonBody: {
45115
+ name: string
45116
+ geolocation?:
45117
+ | {
45118
+ latitude: number
45119
+ longitude: number
45120
+ }
45121
+ | undefined
45122
+ time_zone?: string | undefined
45123
+ }
45124
+ commonParams: {}
45125
+ formData: {}
45126
+ jsonResponse: {
45127
+ location: {
45128
+ /** Unique identifier for the location. */
45129
+ location_id: string
45130
+ /** Unique identifier for the Seam workspace associated with the location. */
45131
+ workspace_id: string
45132
+ /** Display name of the location. */
45133
+ display_name: string
45134
+ /** Geographical location of the location. */
45135
+ geolocation?:
45136
+ | {
45137
+ latitude: number
45138
+ longitude: number
45139
+ }
45140
+ | undefined
45141
+ /** Time zone of the location. */
45142
+ time_zone?: string | undefined
45143
+ /** Date and time at which the location object was created. */
45144
+ created_at: string
45145
+ }
45146
+ }
45147
+ }
45148
+ '/unstable_locations/delete': {
45149
+ route: '/unstable_locations/delete'
45150
+ method: 'DELETE' | 'POST'
45151
+ queryParams: {}
45152
+ jsonBody: {
45153
+ location_id: string
45154
+ }
45155
+ commonParams: {}
45156
+ formData: {}
45157
+ jsonResponse: {}
45158
+ }
45159
+ '/unstable_locations/get': {
45160
+ route: '/unstable_locations/get'
45161
+ method: 'GET' | 'POST'
45162
+ queryParams: {}
45163
+ jsonBody: {}
45164
+ commonParams: {
45165
+ location_id: string
45166
+ }
45167
+ formData: {}
45168
+ jsonResponse: {
45169
+ location: {
45170
+ /** Unique identifier for the location. */
45171
+ location_id: string
45172
+ /** Unique identifier for the Seam workspace associated with the location. */
45173
+ workspace_id: string
45174
+ /** Display name of the location. */
45175
+ display_name: string
45176
+ /** Geographical location of the location. */
45177
+ geolocation?:
45178
+ | {
45179
+ latitude: number
45180
+ longitude: number
45181
+ }
45182
+ | undefined
45183
+ /** Time zone of the location. */
45184
+ time_zone?: string | undefined
45185
+ /** Date and time at which the location object was created. */
45186
+ created_at: string
45187
+ }
45188
+ }
45189
+ }
45190
+ '/unstable_locations/list': {
45191
+ route: '/unstable_locations/list'
45192
+ method: 'GET' | 'POST'
45193
+ queryParams: {}
45194
+ jsonBody: {}
45195
+ commonParams: {}
45196
+ formData: {}
45197
+ jsonResponse: {
45198
+ locations: Array<{
45199
+ /** Unique identifier for the location. */
45200
+ location_id: string
45201
+ /** Unique identifier for the Seam workspace associated with the location. */
45202
+ workspace_id: string
45203
+ /** Display name of the location. */
45204
+ display_name: string
45205
+ /** Geographical location of the location. */
45206
+ geolocation?:
45207
+ | {
45208
+ latitude: number
45209
+ longitude: number
45210
+ }
45211
+ | undefined
45212
+ /** Time zone of the location. */
45213
+ time_zone?: string | undefined
45214
+ /** Date and time at which the location object was created. */
45215
+ created_at: string
45216
+ }>
45217
+ }
45218
+ }
45219
+ '/unstable_locations/remove_devices': {
45220
+ route: '/unstable_locations/remove_devices'
45221
+ method: 'POST'
45222
+ queryParams: {}
45223
+ jsonBody: {
45224
+ location_id: string
45225
+ device_ids: string[]
45226
+ }
45227
+ commonParams: {}
45228
+ formData: {}
45229
+ jsonResponse: {}
45230
+ }
45231
+ '/unstable_locations/update': {
45232
+ route: '/unstable_locations/update'
45233
+ method: 'POST'
45234
+ queryParams: {}
45235
+ jsonBody: {
45236
+ location_id: string
45237
+ name?: string | undefined
45238
+ geolocation?:
45239
+ | {
45240
+ latitude: number
45241
+ longitude: number
45242
+ }
45243
+ | undefined
45244
+ time_zone?: string | undefined
45245
+ }
45246
+ commonParams: {}
45247
+ formData: {}
45248
+ jsonResponse: {
45249
+ location: {
45250
+ /** Unique identifier for the location. */
45251
+ location_id: string
45252
+ /** Unique identifier for the Seam workspace associated with the location. */
45253
+ workspace_id: string
45254
+ /** Display name of the location. */
45255
+ display_name: string
45256
+ /** Geographical location of the location. */
45257
+ geolocation?:
45258
+ | {
45259
+ latitude: number
45260
+ longitude: number
45261
+ }
45262
+ | undefined
45263
+ /** Time zone of the location. */
45264
+ time_zone?: string | undefined
45265
+ /** Date and time at which the location object was created. */
45266
+ created_at: string
45267
+ }
45268
+ }
45269
+ }
44773
45270
  '/user_identities/add_acs_user': {
44774
45271
  route: '/user_identities/add_acs_user'
44775
45272
  method: 'POST' | 'PUT'