@seamapi/types 1.600.0 → 1.602.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 (32) hide show
  1. package/dist/connect.cjs +88 -22
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +493 -77
  4. package/dist/index.cjs +88 -22
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +30 -0
  7. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +15 -0
  8. package/lib/seam/connect/models/action-attempts/encode-credential.js +11 -0
  9. package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
  10. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +15 -0
  11. package/lib/seam/connect/models/action-attempts/scan-credential.js +11 -0
  12. package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
  13. package/lib/seam/connect/models/batch.d.ts +174 -35
  14. package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
  15. package/lib/seam/connect/models/devices/device-metadata.js +3 -2
  16. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  17. package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
  18. package/lib/seam/connect/models/devices/device-type.js +1 -0
  19. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  20. package/lib/seam/connect/models/devices/device.d.ts +10 -3
  21. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +8 -3
  22. package/lib/seam/connect/openapi.d.ts +4 -0
  23. package/lib/seam/connect/openapi.js +53 -3
  24. package/lib/seam/connect/openapi.js.map +1 -1
  25. package/lib/seam/connect/route-types.d.ts +375 -61
  26. package/package.json +1 -1
  27. package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +14 -0
  28. package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +14 -0
  29. package/src/lib/seam/connect/models/devices/device-metadata.ts +4 -2
  30. package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
  31. package/src/lib/seam/connect/openapi.ts +59 -3
  32. package/src/lib/seam/connect/route-types.ts +431 -34
@@ -475,6 +475,11 @@ export type Routes = {
475
475
  type: 'no_credential_on_encoder';
476
476
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
477
477
  message: string;
478
+ } | {
479
+ /** Error type to indicate that there is no card on the encoder. */
480
+ type: 'no_card_on_encoder';
481
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
482
+ message: string;
478
483
  };
479
484
  } | {
480
485
  /** ID of the action attempt. */
@@ -789,6 +794,11 @@ export type Routes = {
789
794
  type: 'credential_cannot_be_reissued';
790
795
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
791
796
  message: string;
797
+ } | {
798
+ /** Error type to indicate that there is no card on the encoder. */
799
+ type: 'no_card_on_encoder';
800
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
801
+ message: string;
792
802
  };
793
803
  } | {
794
804
  /** ID of the action attempt. */
@@ -2785,6 +2795,11 @@ export type Routes = {
2785
2795
  type: 'no_credential_on_encoder';
2786
2796
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
2787
2797
  message: string;
2798
+ } | {
2799
+ /** Error type to indicate that there is no card on the encoder. */
2800
+ type: 'no_card_on_encoder';
2801
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
2802
+ message: string;
2788
2803
  };
2789
2804
  } | {
2790
2805
  /** ID of the action attempt. */
@@ -3099,6 +3114,11 @@ export type Routes = {
3099
3114
  type: 'credential_cannot_be_reissued';
3100
3115
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
3101
3116
  message: string;
3117
+ } | {
3118
+ /** Error type to indicate that there is no card on the encoder. */
3119
+ type: 'no_card_on_encoder';
3120
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
3121
+ message: string;
3102
3122
  };
3103
3123
  } | {
3104
3124
  /** ID of the action attempt. */
@@ -6673,6 +6693,11 @@ export type Routes = {
6673
6693
  type: 'no_credential_on_encoder';
6674
6694
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6675
6695
  message: string;
6696
+ } | {
6697
+ /** Error type to indicate that there is no card on the encoder. */
6698
+ type: 'no_card_on_encoder';
6699
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6700
+ message: string;
6676
6701
  };
6677
6702
  } | {
6678
6703
  /** ID of the action attempt. */
@@ -6987,6 +7012,11 @@ export type Routes = {
6987
7012
  type: 'credential_cannot_be_reissued';
6988
7013
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6989
7014
  message: string;
7015
+ } | {
7016
+ /** Error type to indicate that there is no card on the encoder. */
7017
+ type: 'no_card_on_encoder';
7018
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
7019
+ message: string;
6990
7020
  };
6991
7021
  } | {
6992
7022
  /** ID of the action attempt. */
@@ -9004,6 +9034,11 @@ export type Routes = {
9004
9034
  type: 'no_credential_on_encoder';
9005
9035
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9006
9036
  message: string;
9037
+ } | {
9038
+ /** Error type to indicate that there is no card on the encoder. */
9039
+ type: 'no_card_on_encoder';
9040
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9041
+ message: string;
9007
9042
  };
9008
9043
  } | {
9009
9044
  /** ID of the action attempt. */
@@ -9318,6 +9353,11 @@ export type Routes = {
9318
9353
  type: 'credential_cannot_be_reissued';
9319
9354
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9320
9355
  message: string;
9356
+ } | {
9357
+ /** Error type to indicate that there is no card on the encoder. */
9358
+ type: 'no_card_on_encoder';
9359
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9360
+ message: string;
9321
9361
  };
9322
9362
  } | {
9323
9363
  /** ID of the action attempt. */
@@ -10092,7 +10132,7 @@ export type Routes = {
10092
10132
  /** ID of the device. */
10093
10133
  device_id: string;
10094
10134
  /** Type of the device. */
10095
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
10135
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
10096
10136
  /** IDs of the spaces the device is in. */
10097
10137
  space_ids: string[];
10098
10138
  /** Optional nickname to describe the device, settable through Seam. */
@@ -10680,10 +10720,12 @@ export type Routes = {
10680
10720
  /** Whether the KeyNest device has a photo. */
10681
10721
  has_photo?: boolean | undefined;
10682
10722
  } | undefined;
10683
- /** Metadata for a Ultraloq device. */
10723
+ /** Metadata for an Ultraloq device. */
10684
10724
  ultraloq_metadata?: {
10685
- /** Device ID for a Ultraloq device. */
10725
+ /** Device ID for an Ultraloq device. */
10686
10726
  device_id: string;
10727
+ /** Device name for an Ultraloq device. */
10728
+ device_name: string;
10687
10729
  } | undefined;
10688
10730
  }) & ({
10689
10731
  /** */
@@ -12515,6 +12557,11 @@ export type Routes = {
12515
12557
  type: 'no_credential_on_encoder';
12516
12558
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
12517
12559
  message: string;
12560
+ } | {
12561
+ /** Error type to indicate that there is no card on the encoder. */
12562
+ type: 'no_card_on_encoder';
12563
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
12564
+ message: string;
12518
12565
  };
12519
12566
  } | {
12520
12567
  /** ID of the action attempt. */
@@ -12829,6 +12876,11 @@ export type Routes = {
12829
12876
  type: 'credential_cannot_be_reissued';
12830
12877
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
12831
12878
  message: string;
12879
+ } | {
12880
+ /** Error type to indicate that there is no card on the encoder. */
12881
+ type: 'no_card_on_encoder';
12882
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
12883
+ message: string;
12832
12884
  };
12833
12885
  } | {
12834
12886
  /** ID of the action attempt. */
@@ -13504,7 +13556,7 @@ export type Routes = {
13504
13556
  /** ID of the device. */
13505
13557
  device_id: string;
13506
13558
  /** Type of the device. */
13507
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
13559
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
13508
13560
  /** IDs of the spaces the device is in. */
13509
13561
  space_ids: string[];
13510
13562
  /** Optional nickname to describe the device, settable through Seam. */
@@ -14092,10 +14144,12 @@ export type Routes = {
14092
14144
  /** Whether the KeyNest device has a photo. */
14093
14145
  has_photo?: boolean | undefined;
14094
14146
  } | undefined;
14095
- /** Metadata for a Ultraloq device. */
14147
+ /** Metadata for an Ultraloq device. */
14096
14148
  ultraloq_metadata?: {
14097
- /** Device ID for a Ultraloq device. */
14149
+ /** Device ID for an Ultraloq device. */
14098
14150
  device_id: string;
14151
+ /** Device name for an Ultraloq device. */
14152
+ device_name: string;
14099
14153
  } | undefined;
14100
14154
  }) & ({
14101
14155
  /** */
@@ -15898,6 +15952,11 @@ export type Routes = {
15898
15952
  type: 'no_credential_on_encoder';
15899
15953
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
15900
15954
  message: string;
15955
+ } | {
15956
+ /** Error type to indicate that there is no card on the encoder. */
15957
+ type: 'no_card_on_encoder';
15958
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
15959
+ message: string;
15901
15960
  };
15902
15961
  } | {
15903
15962
  /** ID of the action attempt. */
@@ -16212,6 +16271,11 @@ export type Routes = {
16212
16271
  type: 'credential_cannot_be_reissued';
16213
16272
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
16214
16273
  message: string;
16274
+ } | {
16275
+ /** Error type to indicate that there is no card on the encoder. */
16276
+ type: 'no_card_on_encoder';
16277
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
16278
+ message: string;
16215
16279
  };
16216
16280
  } | {
16217
16281
  /** ID of the action attempt. */
@@ -16990,7 +17054,7 @@ export type Routes = {
16990
17054
  /** ID of the device. */
16991
17055
  device_id: string;
16992
17056
  /** Type of the device. */
16993
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
17057
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
16994
17058
  /** Unique identifier for the account associated with the device. */
16995
17059
  connected_account_id: string;
16996
17060
  /** Location information for the device. */
@@ -23291,6 +23355,11 @@ export type Routes = {
23291
23355
  type: 'no_credential_on_encoder';
23292
23356
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
23293
23357
  message: string;
23358
+ } | {
23359
+ /** Error type to indicate that there is no card on the encoder. */
23360
+ type: 'no_card_on_encoder';
23361
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
23362
+ message: string;
23294
23363
  };
23295
23364
  } | {
23296
23365
  /** ID of the action attempt. */
@@ -23605,6 +23674,11 @@ export type Routes = {
23605
23674
  type: 'credential_cannot_be_reissued';
23606
23675
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
23607
23676
  message: string;
23677
+ } | {
23678
+ /** Error type to indicate that there is no card on the encoder. */
23679
+ type: 'no_card_on_encoder';
23680
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
23681
+ message: string;
23608
23682
  };
23609
23683
  } | {
23610
23684
  /** ID of the action attempt. */
@@ -24655,6 +24729,11 @@ export type Routes = {
24655
24729
  type: 'no_credential_on_encoder';
24656
24730
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
24657
24731
  message: string;
24732
+ } | {
24733
+ /** Error type to indicate that there is no card on the encoder. */
24734
+ type: 'no_card_on_encoder';
24735
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
24736
+ message: string;
24658
24737
  };
24659
24738
  } | {
24660
24739
  /** ID of the action attempt. */
@@ -24969,6 +25048,11 @@ export type Routes = {
24969
25048
  type: 'credential_cannot_be_reissued';
24970
25049
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
24971
25050
  message: string;
25051
+ } | {
25052
+ /** Error type to indicate that there is no card on the encoder. */
25053
+ type: 'no_card_on_encoder';
25054
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
25055
+ message: string;
24972
25056
  };
24973
25057
  } | {
24974
25058
  /** ID of the action attempt. */
@@ -28283,6 +28367,11 @@ export type Routes = {
28283
28367
  type: 'no_credential_on_encoder';
28284
28368
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
28285
28369
  message: string;
28370
+ } | {
28371
+ /** Error type to indicate that there is no card on the encoder. */
28372
+ type: 'no_card_on_encoder';
28373
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
28374
+ message: string;
28286
28375
  };
28287
28376
  } | {
28288
28377
  /** ID of the action attempt. */
@@ -28597,6 +28686,11 @@ export type Routes = {
28597
28686
  type: 'credential_cannot_be_reissued';
28598
28687
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
28599
28688
  message: string;
28689
+ } | {
28690
+ /** Error type to indicate that there is no card on the encoder. */
28691
+ type: 'no_card_on_encoder';
28692
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
28693
+ message: string;
28600
28694
  };
28601
28695
  } | {
28602
28696
  /** ID of the action attempt. */
@@ -29536,6 +29630,11 @@ export type Routes = {
29536
29630
  type: 'no_credential_on_encoder';
29537
29631
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
29538
29632
  message: string;
29633
+ } | {
29634
+ /** Error type to indicate that there is no card on the encoder. */
29635
+ type: 'no_card_on_encoder';
29636
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
29637
+ message: string;
29539
29638
  };
29540
29639
  } | {
29541
29640
  /** ID of the action attempt. */
@@ -29850,6 +29949,11 @@ export type Routes = {
29850
29949
  type: 'credential_cannot_be_reissued';
29851
29950
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
29852
29951
  message: string;
29952
+ } | {
29953
+ /** Error type to indicate that there is no card on the encoder. */
29954
+ type: 'no_card_on_encoder';
29955
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
29956
+ message: string;
29853
29957
  };
29854
29958
  } | {
29855
29959
  /** ID of the action attempt. */
@@ -32126,7 +32230,7 @@ export type Routes = {
32126
32230
  /** ID of the device. */
32127
32231
  device_id: string;
32128
32232
  /** Type of the device. */
32129
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
32233
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
32130
32234
  /** IDs of the spaces the device is in. */
32131
32235
  space_ids: string[];
32132
32236
  /** Optional nickname to describe the device, settable through Seam. */
@@ -32714,10 +32818,12 @@ export type Routes = {
32714
32818
  /** Whether the KeyNest device has a photo. */
32715
32819
  has_photo?: boolean | undefined;
32716
32820
  } | undefined;
32717
- /** Metadata for a Ultraloq device. */
32821
+ /** Metadata for an Ultraloq device. */
32718
32822
  ultraloq_metadata?: {
32719
- /** Device ID for a Ultraloq device. */
32823
+ /** Device ID for an Ultraloq device. */
32720
32824
  device_id: string;
32825
+ /** Device name for an Ultraloq device. */
32826
+ device_name: string;
32721
32827
  } | undefined;
32722
32828
  }) & ({
32723
32829
  /** */
@@ -33350,9 +33456,9 @@ export type Routes = {
33350
33456
  /** ID of the Connect Webview for which you want to list devices. */
33351
33457
  connect_webview_id?: string | undefined;
33352
33458
  /** Device type for which you want to list devices. */
33353
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
33459
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
33354
33460
  /** Array of device types for which you want to list devices. */
33355
- device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
33461
+ device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
33356
33462
  /** Manufacturer for which you want to list devices. */
33357
33463
  manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest' | 'ultraloq') | undefined;
33358
33464
  /** Array of device IDs for which you want to list devices. */
@@ -33387,7 +33493,7 @@ export type Routes = {
33387
33493
  /** ID of the device. */
33388
33494
  device_id: string;
33389
33495
  /** Type of the device. */
33390
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
33496
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
33391
33497
  /** IDs of the spaces the device is in. */
33392
33498
  space_ids: string[];
33393
33499
  /** Optional nickname to describe the device, settable through Seam. */
@@ -33975,10 +34081,12 @@ export type Routes = {
33975
34081
  /** Whether the KeyNest device has a photo. */
33976
34082
  has_photo?: boolean | undefined;
33977
34083
  } | undefined;
33978
- /** Metadata for a Ultraloq device. */
34084
+ /** Metadata for an Ultraloq device. */
33979
34085
  ultraloq_metadata?: {
33980
- /** Device ID for a Ultraloq device. */
34086
+ /** Device ID for an Ultraloq device. */
33981
34087
  device_id: string;
34088
+ /** Device name for an Ultraloq device. */
34089
+ device_name: string;
33982
34090
  } | undefined;
33983
34091
  }) & ({
33984
34092
  /** */
@@ -34733,7 +34841,7 @@ export type Routes = {
34733
34841
  /** ID of the device. */
34734
34842
  device_id: string;
34735
34843
  /** Type of the device. */
34736
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
34844
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
34737
34845
  /** Unique identifier for the account associated with the device. */
34738
34846
  connected_account_id: string;
34739
34847
  /** Location information for the device. */
@@ -35129,9 +35237,9 @@ export type Routes = {
35129
35237
  /** ID of the Connect Webview for which you want to list devices. */
35130
35238
  connect_webview_id?: string | undefined;
35131
35239
  /** Device type for which you want to list devices. */
35132
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
35240
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
35133
35241
  /** Array of device types for which you want to list devices. */
35134
- device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
35242
+ device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
35135
35243
  /** Manufacturer for which you want to list devices. */
35136
35244
  manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest' | 'ultraloq') | undefined;
35137
35245
  /** Array of device IDs for which you want to list devices. */
@@ -35166,7 +35274,7 @@ export type Routes = {
35166
35274
  /** ID of the device. */
35167
35275
  device_id: string;
35168
35276
  /** Type of the device. */
35169
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
35277
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
35170
35278
  /** Unique identifier for the account associated with the device. */
35171
35279
  connected_account_id: string;
35172
35280
  /** Location information for the device. */
@@ -39569,7 +39677,7 @@ export type Routes = {
39569
39677
  /** ID of the device. */
39570
39678
  device_id: string;
39571
39679
  /** Type of the device. */
39572
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
39680
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
39573
39681
  /** IDs of the spaces the device is in. */
39574
39682
  space_ids: string[];
39575
39683
  /** Optional nickname to describe the device, settable through Seam. */
@@ -40157,10 +40265,12 @@ export type Routes = {
40157
40265
  /** Whether the KeyNest device has a photo. */
40158
40266
  has_photo?: boolean | undefined;
40159
40267
  } | undefined;
40160
- /** Metadata for a Ultraloq device. */
40268
+ /** Metadata for an Ultraloq device. */
40161
40269
  ultraloq_metadata?: {
40162
- /** Device ID for a Ultraloq device. */
40270
+ /** Device ID for an Ultraloq device. */
40163
40271
  device_id: string;
40272
+ /** Device name for an Ultraloq device. */
40273
+ device_name: string;
40164
40274
  } | undefined;
40165
40275
  }) & ({
40166
40276
  /** */
@@ -40781,7 +40891,7 @@ export type Routes = {
40781
40891
  /** ID of the device. */
40782
40892
  device_id: string;
40783
40893
  /** Type of the device. */
40784
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
40894
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
40785
40895
  /** IDs of the spaces the device is in. */
40786
40896
  space_ids: string[];
40787
40897
  /** Optional nickname to describe the device, settable through Seam. */
@@ -41369,10 +41479,12 @@ export type Routes = {
41369
41479
  /** Whether the KeyNest device has a photo. */
41370
41480
  has_photo?: boolean | undefined;
41371
41481
  } | undefined;
41372
- /** Metadata for a Ultraloq device. */
41482
+ /** Metadata for an Ultraloq device. */
41373
41483
  ultraloq_metadata?: {
41374
- /** Device ID for a Ultraloq device. */
41484
+ /** Device ID for an Ultraloq device. */
41375
41485
  device_id: string;
41486
+ /** Device name for an Ultraloq device. */
41487
+ device_name: string;
41376
41488
  } | undefined;
41377
41489
  }) & ({
41378
41490
  /** */
@@ -42005,9 +42117,9 @@ export type Routes = {
42005
42117
  /** ID of the Connect Webview for which you want to list devices. */
42006
42118
  connect_webview_id?: string | undefined;
42007
42119
  /** Device type of the locks that you want to list. */
42008
- device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | undefined;
42120
+ device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | undefined;
42009
42121
  /** Device types of the locks that you want to list. */
42010
- device_types?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock')[] | undefined;
42122
+ device_types?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock')[] | undefined;
42011
42123
  /** Manufacturer of the locks that you want to list. */
42012
42124
  manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'kwikset2' | 'smartthings' | 'ultraloq') | undefined;
42013
42125
  /** Array of device IDs for which you want to list devices. */
@@ -42042,7 +42154,7 @@ export type Routes = {
42042
42154
  /** ID of the device. */
42043
42155
  device_id: string;
42044
42156
  /** Type of the device. */
42045
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
42157
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
42046
42158
  /** IDs of the spaces the device is in. */
42047
42159
  space_ids: string[];
42048
42160
  /** Optional nickname to describe the device, settable through Seam. */
@@ -42630,10 +42742,12 @@ export type Routes = {
42630
42742
  /** Whether the KeyNest device has a photo. */
42631
42743
  has_photo?: boolean | undefined;
42632
42744
  } | undefined;
42633
- /** Metadata for a Ultraloq device. */
42745
+ /** Metadata for an Ultraloq device. */
42634
42746
  ultraloq_metadata?: {
42635
- /** Device ID for a Ultraloq device. */
42747
+ /** Device ID for an Ultraloq device. */
42636
42748
  device_id: string;
42749
+ /** Device name for an Ultraloq device. */
42750
+ device_name: string;
42637
42751
  } | undefined;
42638
42752
  }) & ({
42639
42753
  /** */
@@ -43253,7 +43367,7 @@ export type Routes = {
43253
43367
  /** ID of the device. */
43254
43368
  device_id: string;
43255
43369
  /** Type of the device. */
43256
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
43370
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
43257
43371
  /** IDs of the spaces the device is in. */
43258
43372
  space_ids: string[];
43259
43373
  /** Optional nickname to describe the device, settable through Seam. */
@@ -43841,10 +43955,12 @@ export type Routes = {
43841
43955
  /** Whether the KeyNest device has a photo. */
43842
43956
  has_photo?: boolean | undefined;
43843
43957
  } | undefined;
43844
- /** Metadata for a Ultraloq device. */
43958
+ /** Metadata for an Ultraloq device. */
43845
43959
  ultraloq_metadata?: {
43846
- /** Device ID for a Ultraloq device. */
43960
+ /** Device ID for an Ultraloq device. */
43847
43961
  device_id: string;
43962
+ /** Device name for an Ultraloq device. */
43963
+ device_name: string;
43848
43964
  } | undefined;
43849
43965
  }) & ({
43850
43966
  /** */
@@ -44902,6 +45018,11 @@ export type Routes = {
44902
45018
  type: 'no_credential_on_encoder';
44903
45019
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
44904
45020
  message: string;
45021
+ } | {
45022
+ /** Error type to indicate that there is no card on the encoder. */
45023
+ type: 'no_card_on_encoder';
45024
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
45025
+ message: string;
44905
45026
  };
44906
45027
  } | {
44907
45028
  /** ID of the action attempt. */
@@ -45216,6 +45337,11 @@ export type Routes = {
45216
45337
  type: 'credential_cannot_be_reissued';
45217
45338
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
45218
45339
  message: string;
45340
+ } | {
45341
+ /** Error type to indicate that there is no card on the encoder. */
45342
+ type: 'no_card_on_encoder';
45343
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
45344
+ message: string;
45219
45345
  };
45220
45346
  } | {
45221
45347
  /** ID of the action attempt. */
@@ -46162,6 +46288,11 @@ export type Routes = {
46162
46288
  type: 'no_credential_on_encoder';
46163
46289
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
46164
46290
  message: string;
46291
+ } | {
46292
+ /** Error type to indicate that there is no card on the encoder. */
46293
+ type: 'no_card_on_encoder';
46294
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
46295
+ message: string;
46165
46296
  };
46166
46297
  } | {
46167
46298
  /** ID of the action attempt. */
@@ -46476,6 +46607,11 @@ export type Routes = {
46476
46607
  type: 'credential_cannot_be_reissued';
46477
46608
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
46478
46609
  message: string;
46610
+ } | {
46611
+ /** Error type to indicate that there is no card on the encoder. */
46612
+ type: 'no_card_on_encoder';
46613
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
46614
+ message: string;
46479
46615
  };
46480
46616
  } | {
46481
46617
  /** ID of the action attempt. */
@@ -47420,6 +47556,11 @@ export type Routes = {
47420
47556
  type: 'no_credential_on_encoder';
47421
47557
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
47422
47558
  message: string;
47559
+ } | {
47560
+ /** Error type to indicate that there is no card on the encoder. */
47561
+ type: 'no_card_on_encoder';
47562
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
47563
+ message: string;
47423
47564
  };
47424
47565
  } | {
47425
47566
  /** ID of the action attempt. */
@@ -47734,6 +47875,11 @@ export type Routes = {
47734
47875
  type: 'credential_cannot_be_reissued';
47735
47876
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
47736
47877
  message: string;
47878
+ } | {
47879
+ /** Error type to indicate that there is no card on the encoder. */
47880
+ type: 'no_card_on_encoder';
47881
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
47882
+ message: string;
47737
47883
  };
47738
47884
  } | {
47739
47885
  /** ID of the action attempt. */
@@ -48680,6 +48826,11 @@ export type Routes = {
48680
48826
  type: 'no_credential_on_encoder';
48681
48827
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
48682
48828
  message: string;
48829
+ } | {
48830
+ /** Error type to indicate that there is no card on the encoder. */
48831
+ type: 'no_card_on_encoder';
48832
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
48833
+ message: string;
48683
48834
  };
48684
48835
  } | {
48685
48836
  /** ID of the action attempt. */
@@ -48994,6 +49145,11 @@ export type Routes = {
48994
49145
  type: 'credential_cannot_be_reissued';
48995
49146
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
48996
49147
  message: string;
49148
+ } | {
49149
+ /** Error type to indicate that there is no card on the encoder. */
49150
+ type: 'no_card_on_encoder';
49151
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
49152
+ message: string;
48997
49153
  };
48998
49154
  } | {
48999
49155
  /** ID of the action attempt. */
@@ -49552,7 +49708,7 @@ export type Routes = {
49552
49708
  /** ID of the device. */
49553
49709
  device_id: string;
49554
49710
  /** Type of the device. */
49555
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
49711
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
49556
49712
  /** IDs of the spaces the device is in. */
49557
49713
  space_ids: string[];
49558
49714
  /** Optional nickname to describe the device, settable through Seam. */
@@ -50140,10 +50296,12 @@ export type Routes = {
50140
50296
  /** Whether the KeyNest device has a photo. */
50141
50297
  has_photo?: boolean | undefined;
50142
50298
  } | undefined;
50143
- /** Metadata for a Ultraloq device. */
50299
+ /** Metadata for an Ultraloq device. */
50144
50300
  ultraloq_metadata?: {
50145
- /** Device ID for a Ultraloq device. */
50301
+ /** Device ID for an Ultraloq device. */
50146
50302
  device_id: string;
50303
+ /** Device name for an Ultraloq device. */
50304
+ device_name: string;
50147
50305
  } | undefined;
50148
50306
  }) & ({
50149
50307
  /** */
@@ -50763,7 +50921,7 @@ export type Routes = {
50763
50921
  /** ID of the device. */
50764
50922
  device_id: string;
50765
50923
  /** Type of the device. */
50766
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
50924
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
50767
50925
  /** IDs of the spaces the device is in. */
50768
50926
  space_ids: string[];
50769
50927
  /** Optional nickname to describe the device, settable through Seam. */
@@ -51351,10 +51509,12 @@ export type Routes = {
51351
51509
  /** Whether the KeyNest device has a photo. */
51352
51510
  has_photo?: boolean | undefined;
51353
51511
  } | undefined;
51354
- /** Metadata for a Ultraloq device. */
51512
+ /** Metadata for an Ultraloq device. */
51355
51513
  ultraloq_metadata?: {
51356
- /** Device ID for a Ultraloq device. */
51514
+ /** Device ID for an Ultraloq device. */
51357
51515
  device_id: string;
51516
+ /** Device name for an Ultraloq device. */
51517
+ device_name: string;
51358
51518
  } | undefined;
51359
51519
  }) & ({
51360
51520
  /** */
@@ -52422,6 +52582,11 @@ export type Routes = {
52422
52582
  type: 'no_credential_on_encoder';
52423
52583
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
52424
52584
  message: string;
52585
+ } | {
52586
+ /** Error type to indicate that there is no card on the encoder. */
52587
+ type: 'no_card_on_encoder';
52588
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
52589
+ message: string;
52425
52590
  };
52426
52591
  } | {
52427
52592
  /** ID of the action attempt. */
@@ -52736,6 +52901,11 @@ export type Routes = {
52736
52901
  type: 'credential_cannot_be_reissued';
52737
52902
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
52738
52903
  message: string;
52904
+ } | {
52905
+ /** Error type to indicate that there is no card on the encoder. */
52906
+ type: 'no_card_on_encoder';
52907
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
52908
+ message: string;
52739
52909
  };
52740
52910
  } | {
52741
52911
  /** ID of the action attempt. */
@@ -53701,6 +53871,11 @@ export type Routes = {
53701
53871
  type: 'no_credential_on_encoder';
53702
53872
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53703
53873
  message: string;
53874
+ } | {
53875
+ /** Error type to indicate that there is no card on the encoder. */
53876
+ type: 'no_card_on_encoder';
53877
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
53878
+ message: string;
53704
53879
  };
53705
53880
  } | {
53706
53881
  /** ID of the action attempt. */
@@ -54015,6 +54190,11 @@ export type Routes = {
54015
54190
  type: 'credential_cannot_be_reissued';
54016
54191
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
54017
54192
  message: string;
54193
+ } | {
54194
+ /** Error type to indicate that there is no card on the encoder. */
54195
+ type: 'no_card_on_encoder';
54196
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
54197
+ message: string;
54018
54198
  };
54019
54199
  } | {
54020
54200
  /** ID of the action attempt. */
@@ -55034,6 +55214,11 @@ export type Routes = {
55034
55214
  type: 'no_credential_on_encoder';
55035
55215
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55036
55216
  message: string;
55217
+ } | {
55218
+ /** Error type to indicate that there is no card on the encoder. */
55219
+ type: 'no_card_on_encoder';
55220
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55221
+ message: string;
55037
55222
  };
55038
55223
  } | {
55039
55224
  /** ID of the action attempt. */
@@ -55348,6 +55533,11 @@ export type Routes = {
55348
55533
  type: 'credential_cannot_be_reissued';
55349
55534
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55350
55535
  message: string;
55536
+ } | {
55537
+ /** Error type to indicate that there is no card on the encoder. */
55538
+ type: 'no_card_on_encoder';
55539
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
55540
+ message: string;
55351
55541
  };
55352
55542
  } | {
55353
55543
  /** ID of the action attempt. */
@@ -59702,7 +59892,7 @@ export type Routes = {
59702
59892
  /** ID of the device. */
59703
59893
  device_id: string;
59704
59894
  /** Type of the device. */
59705
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
59895
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
59706
59896
  /** IDs of the spaces the device is in. */
59707
59897
  space_ids: string[];
59708
59898
  /** Optional nickname to describe the device, settable through Seam. */
@@ -60290,10 +60480,12 @@ export type Routes = {
60290
60480
  /** Whether the KeyNest device has a photo. */
60291
60481
  has_photo?: boolean | undefined;
60292
60482
  } | undefined;
60293
- /** Metadata for a Ultraloq device. */
60483
+ /** Metadata for an Ultraloq device. */
60294
60484
  ultraloq_metadata?: {
60295
- /** Device ID for a Ultraloq device. */
60485
+ /** Device ID for an Ultraloq device. */
60296
60486
  device_id: string;
60487
+ /** Device name for an Ultraloq device. */
60488
+ device_name: string;
60297
60489
  } | undefined;
60298
60490
  }) & ({
60299
60491
  /** */
@@ -61830,6 +62022,11 @@ export type Routes = {
61830
62022
  type: 'no_credential_on_encoder';
61831
62023
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
61832
62024
  message: string;
62025
+ } | {
62026
+ /** Error type to indicate that there is no card on the encoder. */
62027
+ type: 'no_card_on_encoder';
62028
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
62029
+ message: string;
61833
62030
  };
61834
62031
  } | {
61835
62032
  /** ID of the action attempt. */
@@ -62144,6 +62341,11 @@ export type Routes = {
62144
62341
  type: 'credential_cannot_be_reissued';
62145
62342
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
62146
62343
  message: string;
62344
+ } | {
62345
+ /** Error type to indicate that there is no card on the encoder. */
62346
+ type: 'no_card_on_encoder';
62347
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
62348
+ message: string;
62147
62349
  };
62148
62350
  } | {
62149
62351
  /** ID of the action attempt. */
@@ -63094,6 +63296,11 @@ export type Routes = {
63094
63296
  type: 'no_credential_on_encoder';
63095
63297
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
63096
63298
  message: string;
63299
+ } | {
63300
+ /** Error type to indicate that there is no card on the encoder. */
63301
+ type: 'no_card_on_encoder';
63302
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
63303
+ message: string;
63097
63304
  };
63098
63305
  } | {
63099
63306
  /** ID of the action attempt. */
@@ -63408,6 +63615,11 @@ export type Routes = {
63408
63615
  type: 'credential_cannot_be_reissued';
63409
63616
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
63410
63617
  message: string;
63618
+ } | {
63619
+ /** Error type to indicate that there is no card on the encoder. */
63620
+ type: 'no_card_on_encoder';
63621
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
63622
+ message: string;
63411
63623
  };
63412
63624
  } | {
63413
63625
  /** ID of the action attempt. */
@@ -64461,6 +64673,11 @@ export type Routes = {
64461
64673
  type: 'no_credential_on_encoder';
64462
64674
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
64463
64675
  message: string;
64676
+ } | {
64677
+ /** Error type to indicate that there is no card on the encoder. */
64678
+ type: 'no_card_on_encoder';
64679
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
64680
+ message: string;
64464
64681
  };
64465
64682
  } | {
64466
64683
  /** ID of the action attempt. */
@@ -64775,6 +64992,11 @@ export type Routes = {
64775
64992
  type: 'credential_cannot_be_reissued';
64776
64993
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
64777
64994
  message: string;
64995
+ } | {
64996
+ /** Error type to indicate that there is no card on the encoder. */
64997
+ type: 'no_card_on_encoder';
64998
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
64999
+ message: string;
64778
65000
  };
64779
65001
  } | {
64780
65002
  /** ID of the action attempt. */
@@ -65313,7 +65535,7 @@ export type Routes = {
65313
65535
  /** ID of the device. */
65314
65536
  device_id: string;
65315
65537
  /** Type of the device. */
65316
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
65538
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
65317
65539
  /** IDs of the spaces the device is in. */
65318
65540
  space_ids: string[];
65319
65541
  /** Optional nickname to describe the device, settable through Seam. */
@@ -65901,10 +66123,12 @@ export type Routes = {
65901
66123
  /** Whether the KeyNest device has a photo. */
65902
66124
  has_photo?: boolean | undefined;
65903
66125
  } | undefined;
65904
- /** Metadata for a Ultraloq device. */
66126
+ /** Metadata for an Ultraloq device. */
65905
66127
  ultraloq_metadata?: {
65906
- /** Device ID for a Ultraloq device. */
66128
+ /** Device ID for an Ultraloq device. */
65907
66129
  device_id: string;
66130
+ /** Device name for an Ultraloq device. */
66131
+ device_name: string;
65908
66132
  } | undefined;
65909
66133
  }) & ({
65910
66134
  /** */
@@ -66966,6 +67190,11 @@ export type Routes = {
66966
67190
  type: 'no_credential_on_encoder';
66967
67191
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
66968
67192
  message: string;
67193
+ } | {
67194
+ /** Error type to indicate that there is no card on the encoder. */
67195
+ type: 'no_card_on_encoder';
67196
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67197
+ message: string;
66969
67198
  };
66970
67199
  } | {
66971
67200
  /** ID of the action attempt. */
@@ -67280,6 +67509,11 @@ export type Routes = {
67280
67509
  type: 'credential_cannot_be_reissued';
67281
67510
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67282
67511
  message: string;
67512
+ } | {
67513
+ /** Error type to indicate that there is no card on the encoder. */
67514
+ type: 'no_card_on_encoder';
67515
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67516
+ message: string;
67283
67517
  };
67284
67518
  } | {
67285
67519
  /** ID of the action attempt. */
@@ -68234,6 +68468,11 @@ export type Routes = {
68234
68468
  type: 'no_credential_on_encoder';
68235
68469
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
68236
68470
  message: string;
68471
+ } | {
68472
+ /** Error type to indicate that there is no card on the encoder. */
68473
+ type: 'no_card_on_encoder';
68474
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
68475
+ message: string;
68237
68476
  };
68238
68477
  } | {
68239
68478
  /** ID of the action attempt. */
@@ -68548,6 +68787,11 @@ export type Routes = {
68548
68787
  type: 'credential_cannot_be_reissued';
68549
68788
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
68550
68789
  message: string;
68790
+ } | {
68791
+ /** Error type to indicate that there is no card on the encoder. */
68792
+ type: 'no_card_on_encoder';
68793
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
68794
+ message: string;
68551
68795
  };
68552
68796
  } | {
68553
68797
  /** ID of the action attempt. */
@@ -69106,7 +69350,7 @@ export type Routes = {
69106
69350
  /** ID of the device. */
69107
69351
  device_id: string;
69108
69352
  /** Type of the device. */
69109
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
69353
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
69110
69354
  /** IDs of the spaces the device is in. */
69111
69355
  space_ids: string[];
69112
69356
  /** Optional nickname to describe the device, settable through Seam. */
@@ -69694,10 +69938,12 @@ export type Routes = {
69694
69938
  /** Whether the KeyNest device has a photo. */
69695
69939
  has_photo?: boolean | undefined;
69696
69940
  } | undefined;
69697
- /** Metadata for a Ultraloq device. */
69941
+ /** Metadata for an Ultraloq device. */
69698
69942
  ultraloq_metadata?: {
69699
- /** Device ID for a Ultraloq device. */
69943
+ /** Device ID for an Ultraloq device. */
69700
69944
  device_id: string;
69945
+ /** Device name for an Ultraloq device. */
69946
+ device_name: string;
69701
69947
  } | undefined;
69702
69948
  }) & ({
69703
69949
  /** */
@@ -70317,7 +70563,7 @@ export type Routes = {
70317
70563
  /** ID of the device. */
70318
70564
  device_id: string;
70319
70565
  /** Type of the device. */
70320
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
70566
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
70321
70567
  /** IDs of the spaces the device is in. */
70322
70568
  space_ids: string[];
70323
70569
  /** Optional nickname to describe the device, settable through Seam. */
@@ -70905,10 +71151,12 @@ export type Routes = {
70905
71151
  /** Whether the KeyNest device has a photo. */
70906
71152
  has_photo?: boolean | undefined;
70907
71153
  } | undefined;
70908
- /** Metadata for a Ultraloq device. */
71154
+ /** Metadata for an Ultraloq device. */
70909
71155
  ultraloq_metadata?: {
70910
- /** Device ID for a Ultraloq device. */
71156
+ /** Device ID for an Ultraloq device. */
70911
71157
  device_id: string;
71158
+ /** Device name for an Ultraloq device. */
71159
+ device_name: string;
70912
71160
  } | undefined;
70913
71161
  }) & ({
70914
71162
  /** */
@@ -71966,6 +72214,11 @@ export type Routes = {
71966
72214
  type: 'no_credential_on_encoder';
71967
72215
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
71968
72216
  message: string;
72217
+ } | {
72218
+ /** Error type to indicate that there is no card on the encoder. */
72219
+ type: 'no_card_on_encoder';
72220
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
72221
+ message: string;
71969
72222
  };
71970
72223
  } | {
71971
72224
  /** ID of the action attempt. */
@@ -72280,6 +72533,11 @@ export type Routes = {
72280
72533
  type: 'credential_cannot_be_reissued';
72281
72534
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
72282
72535
  message: string;
72536
+ } | {
72537
+ /** Error type to indicate that there is no card on the encoder. */
72538
+ type: 'no_card_on_encoder';
72539
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
72540
+ message: string;
72283
72541
  };
72284
72542
  } | {
72285
72543
  /** ID of the action attempt. */
@@ -73423,6 +73681,11 @@ export type Routes = {
73423
73681
  type: 'no_credential_on_encoder';
73424
73682
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
73425
73683
  message: string;
73684
+ } | {
73685
+ /** Error type to indicate that there is no card on the encoder. */
73686
+ type: 'no_card_on_encoder';
73687
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
73688
+ message: string;
73426
73689
  };
73427
73690
  } | {
73428
73691
  /** ID of the action attempt. */
@@ -73737,6 +74000,11 @@ export type Routes = {
73737
74000
  type: 'credential_cannot_be_reissued';
73738
74001
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
73739
74002
  message: string;
74003
+ } | {
74004
+ /** Error type to indicate that there is no card on the encoder. */
74005
+ type: 'no_card_on_encoder';
74006
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
74007
+ message: string;
73740
74008
  };
73741
74009
  } | {
73742
74010
  /** ID of the action attempt. */
@@ -74714,6 +74982,11 @@ export type Routes = {
74714
74982
  type: 'no_credential_on_encoder';
74715
74983
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
74716
74984
  message: string;
74985
+ } | {
74986
+ /** Error type to indicate that there is no card on the encoder. */
74987
+ type: 'no_card_on_encoder';
74988
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
74989
+ message: string;
74717
74990
  };
74718
74991
  } | {
74719
74992
  /** ID of the action attempt. */
@@ -75028,6 +75301,11 @@ export type Routes = {
75028
75301
  type: 'credential_cannot_be_reissued';
75029
75302
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
75030
75303
  message: string;
75304
+ } | {
75305
+ /** Error type to indicate that there is no card on the encoder. */
75306
+ type: 'no_card_on_encoder';
75307
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
75308
+ message: string;
75031
75309
  };
75032
75310
  } | {
75033
75311
  /** ID of the action attempt. */
@@ -76113,6 +76391,11 @@ export type Routes = {
76113
76391
  type: 'no_credential_on_encoder';
76114
76392
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
76115
76393
  message: string;
76394
+ } | {
76395
+ /** Error type to indicate that there is no card on the encoder. */
76396
+ type: 'no_card_on_encoder';
76397
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
76398
+ message: string;
76116
76399
  };
76117
76400
  } | {
76118
76401
  /** ID of the action attempt. */
@@ -76427,6 +76710,11 @@ export type Routes = {
76427
76710
  type: 'credential_cannot_be_reissued';
76428
76711
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
76429
76712
  message: string;
76713
+ } | {
76714
+ /** Error type to indicate that there is no card on the encoder. */
76715
+ type: 'no_card_on_encoder';
76716
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
76717
+ message: string;
76430
76718
  };
76431
76719
  } | {
76432
76720
  /** ID of the action attempt. */
@@ -77471,7 +77759,7 @@ export type Routes = {
77471
77759
  /** ID of the device. */
77472
77760
  device_id: string;
77473
77761
  /** Type of the device. */
77474
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
77762
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
77475
77763
  /** IDs of the spaces the device is in. */
77476
77764
  space_ids: string[];
77477
77765
  /** Optional nickname to describe the device, settable through Seam. */
@@ -78059,10 +78347,12 @@ export type Routes = {
78059
78347
  /** Whether the KeyNest device has a photo. */
78060
78348
  has_photo?: boolean | undefined;
78061
78349
  } | undefined;
78062
- /** Metadata for a Ultraloq device. */
78350
+ /** Metadata for an Ultraloq device. */
78063
78351
  ultraloq_metadata?: {
78064
- /** Device ID for a Ultraloq device. */
78352
+ /** Device ID for an Ultraloq device. */
78065
78353
  device_id: string;
78354
+ /** Device name for an Ultraloq device. */
78355
+ device_name: string;
78066
78356
  } | undefined;
78067
78357
  }) & ({
78068
78358
  /** */
@@ -78684,7 +78974,7 @@ export type Routes = {
78684
78974
  /** ID of the device. */
78685
78975
  device_id: string;
78686
78976
  /** Type of the device. */
78687
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
78977
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
78688
78978
  /** IDs of the spaces the device is in. */
78689
78979
  space_ids: string[];
78690
78980
  /** Optional nickname to describe the device, settable through Seam. */
@@ -79272,10 +79562,12 @@ export type Routes = {
79272
79562
  /** Whether the KeyNest device has a photo. */
79273
79563
  has_photo?: boolean | undefined;
79274
79564
  } | undefined;
79275
- /** Metadata for a Ultraloq device. */
79565
+ /** Metadata for an Ultraloq device. */
79276
79566
  ultraloq_metadata?: {
79277
- /** Device ID for a Ultraloq device. */
79567
+ /** Device ID for an Ultraloq device. */
79278
79568
  device_id: string;
79569
+ /** Device name for an Ultraloq device. */
79570
+ device_name: string;
79279
79571
  } | undefined;
79280
79572
  }) & ({
79281
79573
  /** */
@@ -80804,7 +81096,7 @@ export type Routes = {
80804
81096
  /** ID of the device. */
80805
81097
  device_id: string;
80806
81098
  /** Type of the device. */
80807
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
81099
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
80808
81100
  /** IDs of the spaces the device is in. */
80809
81101
  space_ids: string[];
80810
81102
  /** Optional nickname to describe the device, settable through Seam. */
@@ -81392,10 +81684,12 @@ export type Routes = {
81392
81684
  /** Whether the KeyNest device has a photo. */
81393
81685
  has_photo?: boolean | undefined;
81394
81686
  } | undefined;
81395
- /** Metadata for a Ultraloq device. */
81687
+ /** Metadata for an Ultraloq device. */
81396
81688
  ultraloq_metadata?: {
81397
- /** Device ID for a Ultraloq device. */
81689
+ /** Device ID for an Ultraloq device. */
81398
81690
  device_id: string;
81691
+ /** Device name for an Ultraloq device. */
81692
+ device_name: string;
81399
81693
  } | undefined;
81400
81694
  }) & ({
81401
81695
  /** */
@@ -83198,6 +83492,11 @@ export type Routes = {
83198
83492
  type: 'no_credential_on_encoder';
83199
83493
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
83200
83494
  message: string;
83495
+ } | {
83496
+ /** Error type to indicate that there is no card on the encoder. */
83497
+ type: 'no_card_on_encoder';
83498
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
83499
+ message: string;
83201
83500
  };
83202
83501
  } | {
83203
83502
  /** ID of the action attempt. */
@@ -83512,6 +83811,11 @@ export type Routes = {
83512
83811
  type: 'credential_cannot_be_reissued';
83513
83812
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
83514
83813
  message: string;
83814
+ } | {
83815
+ /** Error type to indicate that there is no card on the encoder. */
83816
+ type: 'no_card_on_encoder';
83817
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
83818
+ message: string;
83515
83819
  };
83516
83820
  } | {
83517
83821
  /** ID of the action attempt. */
@@ -84290,7 +84594,7 @@ export type Routes = {
84290
84594
  /** ID of the device. */
84291
84595
  device_id: string;
84292
84596
  /** Type of the device. */
84293
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
84597
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
84294
84598
  /** Unique identifier for the account associated with the device. */
84295
84599
  connected_account_id: string;
84296
84600
  /** Location information for the device. */
@@ -88297,6 +88601,11 @@ export type Routes = {
88297
88601
  type: 'no_credential_on_encoder';
88298
88602
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
88299
88603
  message: string;
88604
+ } | {
88605
+ /** Error type to indicate that there is no card on the encoder. */
88606
+ type: 'no_card_on_encoder';
88607
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
88608
+ message: string;
88300
88609
  };
88301
88610
  } | {
88302
88611
  /** ID of the action attempt. */
@@ -88611,6 +88920,11 @@ export type Routes = {
88611
88920
  type: 'credential_cannot_be_reissued';
88612
88921
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
88613
88922
  message: string;
88923
+ } | {
88924
+ /** Error type to indicate that there is no card on the encoder. */
88925
+ type: 'no_card_on_encoder';
88926
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
88927
+ message: string;
88614
88928
  };
88615
88929
  } | {
88616
88930
  /** ID of the action attempt. */