@seamapi/types 1.252.2 → 1.253.1

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 (30) hide show
  1. package/dist/connect.cjs +42 -14
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +197 -120
  4. package/lib/seam/connect/models/acs/acs-credential.d.ts +36 -36
  5. package/lib/seam/connect/models/acs/acs-system.d.ts +4 -4
  6. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -5
  7. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +5 -5
  8. package/lib/seam/connect/models/devices/device-metadata.d.ts +13 -0
  9. package/lib/seam/connect/models/devices/device-metadata.js +3 -0
  10. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  11. package/lib/seam/connect/models/devices/device-type.d.ts +8 -1
  12. package/lib/seam/connect/models/devices/device-type.js +7 -0
  13. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  14. package/lib/seam/connect/models/devices/device.d.ts +28 -9
  15. package/lib/seam/connect/models/devices/phone.d.ts +19 -6
  16. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -8
  17. package/lib/seam/connect/models/events/devices.d.ts +1 -1
  18. package/lib/seam/connect/models/thermostats/climate-preset.d.ts +3 -3
  19. package/lib/seam/connect/models/thermostats/climate-preset.js +1 -1
  20. package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
  21. package/lib/seam/connect/openapi.d.ts +9 -0
  22. package/lib/seam/connect/openapi.js +17 -0
  23. package/lib/seam/connect/openapi.js.map +1 -1
  24. package/lib/seam/connect/route-types.d.ts +99 -63
  25. package/package.json +1 -1
  26. package/src/lib/seam/connect/models/devices/device-metadata.ts +4 -0
  27. package/src/lib/seam/connect/models/devices/device-type.ts +17 -0
  28. package/src/lib/seam/connect/models/thermostats/climate-preset.ts +1 -1
  29. package/src/lib/seam/connect/openapi.ts +17 -0
  30. package/src/lib/seam/connect/route-types.ts +123 -39
@@ -473,6 +473,15 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
473
473
  code?: string | null | undefined;
474
474
  starts_at?: string | undefined;
475
475
  ends_at?: string | undefined;
476
+ visionline_metadata?: {
477
+ card_function_type: "guest" | "staff";
478
+ joiner_acs_credential_ids?: string[] | undefined;
479
+ guest_acs_entrance_ids?: string[] | undefined;
480
+ common_acs_entrance_ids?: string[] | undefined;
481
+ is_valid?: boolean | undefined;
482
+ card_id?: string | undefined;
483
+ credential_id?: string | undefined;
484
+ } | undefined;
476
485
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
477
486
  external_type_display_name?: string | undefined;
478
487
  acs_user_id?: string | undefined;
@@ -484,15 +493,6 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
484
493
  is_multi_phone_sync_credential?: boolean | undefined;
485
494
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
486
495
  latest_desired_state_synced_with_provider_at?: string | undefined;
487
- visionline_metadata?: {
488
- card_function_type: "guest" | "staff";
489
- joiner_acs_credential_ids?: string[] | undefined;
490
- guest_acs_entrance_ids?: string[] | undefined;
491
- common_acs_entrance_ids?: string[] | undefined;
492
- is_valid?: boolean | undefined;
493
- card_id?: string | undefined;
494
- credential_id?: string | undefined;
495
- } | undefined;
496
496
  }, {
497
497
  created_at: string;
498
498
  errors: {
@@ -512,6 +512,15 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
512
512
  code?: string | null | undefined;
513
513
  starts_at?: string | undefined;
514
514
  ends_at?: string | undefined;
515
+ visionline_metadata?: {
516
+ card_function_type: "guest" | "staff";
517
+ joiner_acs_credential_ids?: string[] | undefined;
518
+ guest_acs_entrance_ids?: string[] | undefined;
519
+ common_acs_entrance_ids?: string[] | undefined;
520
+ is_valid?: boolean | undefined;
521
+ card_id?: string | undefined;
522
+ credential_id?: string | undefined;
523
+ } | undefined;
515
524
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
516
525
  external_type_display_name?: string | undefined;
517
526
  acs_user_id?: string | undefined;
@@ -523,15 +532,6 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
523
532
  is_multi_phone_sync_credential?: boolean | undefined;
524
533
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
525
534
  latest_desired_state_synced_with_provider_at?: string | undefined;
526
- visionline_metadata?: {
527
- card_function_type: "guest" | "staff";
528
- joiner_acs_credential_ids?: string[] | undefined;
529
- guest_acs_entrance_ids?: string[] | undefined;
530
- common_acs_entrance_ids?: string[] | undefined;
531
- is_valid?: boolean | undefined;
532
- card_id?: string | undefined;
533
- credential_id?: string | undefined;
534
- } | undefined;
535
535
  }>;
536
536
  declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
537
537
  acs_credential_id: z.ZodString;
@@ -620,6 +620,15 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
620
620
  code?: string | null | undefined;
621
621
  starts_at?: string | undefined;
622
622
  ends_at?: string | undefined;
623
+ visionline_metadata?: {
624
+ card_function_type: "guest" | "staff";
625
+ joiner_acs_credential_ids?: string[] | undefined;
626
+ guest_acs_entrance_ids?: string[] | undefined;
627
+ common_acs_entrance_ids?: string[] | undefined;
628
+ is_valid?: boolean | undefined;
629
+ card_id?: string | undefined;
630
+ credential_id?: string | undefined;
631
+ } | undefined;
623
632
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
624
633
  external_type_display_name?: string | undefined;
625
634
  acs_user_id?: string | undefined;
@@ -631,15 +640,6 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
631
640
  is_multi_phone_sync_credential?: boolean | undefined;
632
641
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
633
642
  latest_desired_state_synced_with_provider_at?: string | undefined;
634
- visionline_metadata?: {
635
- card_function_type: "guest" | "staff";
636
- joiner_acs_credential_ids?: string[] | undefined;
637
- guest_acs_entrance_ids?: string[] | undefined;
638
- common_acs_entrance_ids?: string[] | undefined;
639
- is_valid?: boolean | undefined;
640
- card_id?: string | undefined;
641
- credential_id?: string | undefined;
642
- } | undefined;
643
643
  }, {
644
644
  created_at: string;
645
645
  errors: {
@@ -659,6 +659,15 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
659
659
  code?: string | null | undefined;
660
660
  starts_at?: string | undefined;
661
661
  ends_at?: string | undefined;
662
+ visionline_metadata?: {
663
+ card_function_type: "guest" | "staff";
664
+ joiner_acs_credential_ids?: string[] | undefined;
665
+ guest_acs_entrance_ids?: string[] | undefined;
666
+ common_acs_entrance_ids?: string[] | undefined;
667
+ is_valid?: boolean | undefined;
668
+ card_id?: string | undefined;
669
+ credential_id?: string | undefined;
670
+ } | undefined;
662
671
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
663
672
  external_type_display_name?: string | undefined;
664
673
  acs_user_id?: string | undefined;
@@ -670,15 +679,6 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
670
679
  is_multi_phone_sync_credential?: boolean | undefined;
671
680
  is_latest_desired_state_synced_with_provider?: boolean | undefined;
672
681
  latest_desired_state_synced_with_provider_at?: string | undefined;
673
- visionline_metadata?: {
674
- card_function_type: "guest" | "staff";
675
- joiner_acs_credential_ids?: string[] | undefined;
676
- guest_acs_entrance_ids?: string[] | undefined;
677
- common_acs_entrance_ids?: string[] | undefined;
678
- is_valid?: boolean | undefined;
679
- card_id?: string | undefined;
680
- credential_id?: string | undefined;
681
- } | undefined;
682
682
  }>;
683
683
  type AcsCredential = z.output<typeof acs_credential>;
684
684
 
@@ -934,13 +934,13 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
934
934
  workspace_id: string;
935
935
  acs_system_id: string;
936
936
  connected_account_ids: string[];
937
- external_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
938
- external_type_display_name?: string | undefined;
939
937
  visionline_metadata?: {
940
938
  mobile_access_uuid: string;
941
939
  system_id: string;
942
940
  lan_address: string;
943
941
  } | undefined;
942
+ external_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
943
+ external_type_display_name?: string | undefined;
944
944
  can_automate_enrollment?: boolean | undefined;
945
945
  can_create_acs_access_groups?: boolean | undefined;
946
946
  can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
@@ -981,13 +981,13 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
981
981
  workspace_id: string;
982
982
  acs_system_id: string;
983
983
  connected_account_ids: string[];
984
- external_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
985
- external_type_display_name?: string | undefined;
986
984
  visionline_metadata?: {
987
985
  mobile_access_uuid: string;
988
986
  system_id: string;
989
987
  lan_address: string;
990
988
  } | undefined;
989
+ external_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
990
+ external_type_display_name?: string | undefined;
991
991
  can_automate_enrollment?: boolean | undefined;
992
992
  can_create_acs_access_groups?: boolean | undefined;
993
993
  can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
@@ -3072,7 +3072,7 @@ declare const device_warning: z.ZodObject<z.objectUtil.extendShape<{
3072
3072
  type DeviceWarning = z.infer<typeof device_warning>;
3073
3073
  declare const device: z.ZodObject<z.objectUtil.extendShape<{
3074
3074
  device_id: z.ZodString;
3075
- device_type: z.ZodUnion<[z.ZodEnum<["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"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
3075
+ device_type: z.ZodUnion<[z.ZodEnum<["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"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["visionline_encoder"]>]>;
3076
3076
  nickname: z.ZodOptional<z.ZodString>;
3077
3077
  display_name: z.ZodString;
3078
3078
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -3933,6 +3933,13 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
3933
3933
  serial_number: string;
3934
3934
  keypad_id?: number | undefined;
3935
3935
  }>>;
3936
+ visionline_metadata: z.ZodOptional<z.ZodObject<{
3937
+ encoder_id: z.ZodString;
3938
+ }, "strip", z.ZodTypeAny, {
3939
+ encoder_id: string;
3940
+ }, {
3941
+ encoder_id: string;
3942
+ }>>;
3936
3943
  }, "strip", z.ZodTypeAny, {
3937
3944
  august_metadata?: {
3938
3945
  lock_id: string;
@@ -4135,6 +4142,9 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
4135
4142
  serial_number: string;
4136
4143
  keypad_id?: number | undefined;
4137
4144
  } | undefined;
4145
+ visionline_metadata?: {
4146
+ encoder_id: string;
4147
+ } | undefined;
4138
4148
  }, {
4139
4149
  august_metadata?: {
4140
4150
  lock_id: string;
@@ -4337,6 +4347,9 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
4337
4347
  serial_number: string;
4338
4348
  keypad_id?: number | undefined;
4339
4349
  } | undefined;
4350
+ visionline_metadata?: {
4351
+ encoder_id: string;
4352
+ } | undefined;
4340
4353
  }>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
4341
4354
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
4342
4355
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -4423,7 +4436,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
4423
4436
  climate_preset_key: z.ZodOptional<z.ZodString>;
4424
4437
  can_edit: z.ZodOptional<z.ZodBoolean>;
4425
4438
  can_delete: z.ZodOptional<z.ZodBoolean>;
4426
- name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
4439
+ name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
4427
4440
  display_name: z.ZodOptional<z.ZodString>;
4428
4441
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
4429
4442
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
@@ -4463,7 +4476,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
4463
4476
  climate_preset_key: z.ZodOptional<z.ZodString>;
4464
4477
  can_edit: z.ZodOptional<z.ZodBoolean>;
4465
4478
  can_delete: z.ZodOptional<z.ZodBoolean>;
4466
- name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
4479
+ name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
4467
4480
  display_name: z.ZodOptional<z.ZodString>;
4468
4481
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
4469
4482
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
@@ -4503,7 +4516,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
4503
4516
  climate_preset_key: z.ZodString;
4504
4517
  can_edit: z.ZodBoolean;
4505
4518
  can_delete: z.ZodBoolean;
4506
- name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
4519
+ name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
4507
4520
  display_name: z.ZodString;
4508
4521
  fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
4509
4522
  hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
@@ -4516,9 +4529,9 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
4516
4529
  climate_preset_key: string;
4517
4530
  can_edit: boolean;
4518
4531
  can_delete: boolean;
4519
- name: string | null;
4520
4532
  display_name: string;
4521
4533
  manual_override_allowed: boolean;
4534
+ name?: string | null | undefined;
4522
4535
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
4523
4536
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
4524
4537
  cooling_set_point_celsius?: number | undefined;
@@ -4624,9 +4637,9 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
4624
4637
  climate_preset_key: string;
4625
4638
  can_edit: boolean;
4626
4639
  can_delete: boolean;
4627
- name: string | null;
4628
4640
  display_name: string;
4629
4641
  manual_override_allowed: boolean;
4642
+ name?: string | null | undefined;
4630
4643
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
4631
4644
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
4632
4645
  cooling_set_point_celsius?: number | undefined;
@@ -4817,7 +4830,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
4817
4830
  custom_metadata: Record<string, string | boolean>;
4818
4831
  display_name: string;
4819
4832
  device_id: string;
4820
- 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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone");
4833
+ 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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
4821
4834
  capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
4822
4835
  properties: {
4823
4836
  name: string;
@@ -5066,6 +5079,9 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
5066
5079
  serial_number: string;
5067
5080
  keypad_id?: number | undefined;
5068
5081
  } | undefined;
5082
+ visionline_metadata?: {
5083
+ encoder_id: string;
5084
+ } | undefined;
5069
5085
  } & {
5070
5086
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
5071
5087
  code_constraints?: ({
@@ -5127,9 +5143,9 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
5127
5143
  climate_preset_key: string;
5128
5144
  can_edit: boolean;
5129
5145
  can_delete: boolean;
5130
- name: string | null;
5131
5146
  display_name: string;
5132
5147
  manual_override_allowed: boolean;
5148
+ name?: string | null | undefined;
5133
5149
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
5134
5150
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
5135
5151
  cooling_set_point_celsius?: number | undefined;
@@ -5197,7 +5213,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
5197
5213
  custom_metadata: Record<string, string | boolean>;
5198
5214
  display_name: string;
5199
5215
  device_id: string;
5200
- 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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone");
5216
+ 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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
5201
5217
  capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
5202
5218
  properties: {
5203
5219
  name: string;
@@ -5446,6 +5462,9 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
5446
5462
  serial_number: string;
5447
5463
  keypad_id?: number | undefined;
5448
5464
  } | undefined;
5465
+ visionline_metadata?: {
5466
+ encoder_id: string;
5467
+ } | undefined;
5449
5468
  } & {
5450
5469
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
5451
5470
  code_constraints?: ({
@@ -5657,7 +5676,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
5657
5676
 
5658
5677
  declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<Pick<z.objectUtil.extendShape<{
5659
5678
  device_id: z.ZodString;
5660
- device_type: z.ZodUnion<[z.ZodEnum<["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"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
5679
+ device_type: z.ZodUnion<[z.ZodEnum<["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"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["visionline_encoder"]>]>;
5661
5680
  nickname: z.ZodOptional<z.ZodString>;
5662
5681
  display_name: z.ZodString;
5663
5682
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -6518,6 +6537,13 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
6518
6537
  serial_number: string;
6519
6538
  keypad_id?: number | undefined;
6520
6539
  }>>;
6540
+ visionline_metadata: z.ZodOptional<z.ZodObject<{
6541
+ encoder_id: z.ZodString;
6542
+ }, "strip", z.ZodTypeAny, {
6543
+ encoder_id: string;
6544
+ }, {
6545
+ encoder_id: string;
6546
+ }>>;
6521
6547
  }, "strip", z.ZodTypeAny, {
6522
6548
  august_metadata?: {
6523
6549
  lock_id: string;
@@ -6720,6 +6746,9 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
6720
6746
  serial_number: string;
6721
6747
  keypad_id?: number | undefined;
6722
6748
  } | undefined;
6749
+ visionline_metadata?: {
6750
+ encoder_id: string;
6751
+ } | undefined;
6723
6752
  }, {
6724
6753
  august_metadata?: {
6725
6754
  lock_id: string;
@@ -6922,6 +6951,9 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
6922
6951
  serial_number: string;
6923
6952
  keypad_id?: number | undefined;
6924
6953
  } | undefined;
6954
+ visionline_metadata?: {
6955
+ encoder_id: string;
6956
+ } | undefined;
6925
6957
  }>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
6926
6958
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
6927
6959
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -7008,7 +7040,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
7008
7040
  climate_preset_key: z.ZodOptional<z.ZodString>;
7009
7041
  can_edit: z.ZodOptional<z.ZodBoolean>;
7010
7042
  can_delete: z.ZodOptional<z.ZodBoolean>;
7011
- name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
7043
+ name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
7012
7044
  display_name: z.ZodOptional<z.ZodString>;
7013
7045
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
7014
7046
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
@@ -7048,7 +7080,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
7048
7080
  climate_preset_key: z.ZodOptional<z.ZodString>;
7049
7081
  can_edit: z.ZodOptional<z.ZodBoolean>;
7050
7082
  can_delete: z.ZodOptional<z.ZodBoolean>;
7051
- name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
7083
+ name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
7052
7084
  display_name: z.ZodOptional<z.ZodString>;
7053
7085
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
7054
7086
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
@@ -7088,7 +7120,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
7088
7120
  climate_preset_key: z.ZodString;
7089
7121
  can_edit: z.ZodBoolean;
7090
7122
  can_delete: z.ZodBoolean;
7091
- name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
7123
+ name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
7092
7124
  display_name: z.ZodString;
7093
7125
  fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
7094
7126
  hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
@@ -7101,9 +7133,9 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
7101
7133
  climate_preset_key: string;
7102
7134
  can_edit: boolean;
7103
7135
  can_delete: boolean;
7104
- name: string | null;
7105
7136
  display_name: string;
7106
7137
  manual_override_allowed: boolean;
7138
+ name?: string | null | undefined;
7107
7139
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
7108
7140
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
7109
7141
  cooling_set_point_celsius?: number | undefined;
@@ -7209,9 +7241,9 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
7209
7241
  climate_preset_key: string;
7210
7242
  can_edit: boolean;
7211
7243
  can_delete: boolean;
7212
- name: string | null;
7213
7244
  display_name: string;
7214
7245
  manual_override_allowed: boolean;
7246
+ name?: string | null | undefined;
7215
7247
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
7216
7248
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
7217
7249
  cooling_set_point_celsius?: number | undefined;
@@ -7549,7 +7581,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
7549
7581
  warning_code: string;
7550
7582
  }[];
7551
7583
  device_id: string;
7552
- 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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone");
7584
+ 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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
7553
7585
  capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
7554
7586
  properties: {
7555
7587
  name: string;
@@ -7614,7 +7646,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
7614
7646
  warning_code: string;
7615
7647
  }[];
7616
7648
  device_id: string;
7617
- 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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone");
7649
+ 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") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
7618
7650
  capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
7619
7651
  properties: {
7620
7652
  name: string;
@@ -11795,6 +11827,15 @@ declare const _default: {
11795
11827
  required: string[];
11796
11828
  type: string;
11797
11829
  };
11830
+ visionline_metadata: {
11831
+ properties: {
11832
+ encoder_id: {
11833
+ type: string;
11834
+ };
11835
+ };
11836
+ required: string[];
11837
+ type: string;
11838
+ };
11798
11839
  wyze_metadata: {
11799
11840
  properties: {
11800
11841
  device_id: {
@@ -33653,7 +33694,7 @@ interface Routes {
33653
33694
  /** Unique identifier for the device. */
33654
33695
  device_id: string;
33655
33696
  /** Type of the device. */
33656
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
33697
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
33657
33698
  /** Optional nickname to describe the device, settable through Seam */
33658
33699
  nickname?: string | undefined;
33659
33700
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -33939,6 +33980,9 @@ interface Routes {
33939
33980
  bridge_name: string;
33940
33981
  keypad_id?: number | undefined;
33941
33982
  } | undefined;
33983
+ visionline_metadata?: {
33984
+ encoder_id: string;
33985
+ } | undefined;
33942
33986
  }) & ({
33943
33987
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
33944
33988
  code_constraints?: (Array<{
@@ -33974,7 +34018,7 @@ interface Routes {
33974
34018
  climate_preset_key?: string | undefined;
33975
34019
  can_edit?: boolean | undefined;
33976
34020
  can_delete?: boolean | undefined;
33977
- name?: (string | null) | undefined;
34021
+ name?: ((string | null) | undefined) | undefined;
33978
34022
  display_name?: string | undefined;
33979
34023
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
33980
34024
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -33990,7 +34034,7 @@ interface Routes {
33990
34034
  climate_preset_key?: string | undefined;
33991
34035
  can_edit?: boolean | undefined;
33992
34036
  can_delete?: boolean | undefined;
33993
- name?: (string | null) | undefined;
34037
+ name?: ((string | null) | undefined) | undefined;
33994
34038
  display_name?: string | undefined;
33995
34039
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
33996
34040
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -34004,7 +34048,7 @@ interface Routes {
34004
34048
  climate_preset_key: string;
34005
34049
  can_edit: boolean;
34006
34050
  can_delete: boolean;
34007
- name?: string | null;
34051
+ name?: (string | null) | undefined;
34008
34052
  display_name: string;
34009
34053
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
34010
34054
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
@@ -34093,8 +34137,8 @@ interface Routes {
34093
34137
  connected_account_id?: string | undefined;
34094
34138
  connected_account_ids?: string[] | undefined;
34095
34139
  connect_webview_id?: string | undefined;
34096
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
34097
- device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
34140
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
34141
+ device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
34098
34142
  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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
34099
34143
  device_ids?: string[] | undefined;
34100
34144
  limit?: number;
@@ -34110,7 +34154,7 @@ interface Routes {
34110
34154
  /** Unique identifier for the device. */
34111
34155
  device_id: string;
34112
34156
  /** Type of the device. */
34113
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
34157
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
34114
34158
  /** Optional nickname to describe the device, settable through Seam */
34115
34159
  nickname?: string | undefined;
34116
34160
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -34396,6 +34440,9 @@ interface Routes {
34396
34440
  bridge_name: string;
34397
34441
  keypad_id?: number | undefined;
34398
34442
  } | undefined;
34443
+ visionline_metadata?: {
34444
+ encoder_id: string;
34445
+ } | undefined;
34399
34446
  }) & ({
34400
34447
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
34401
34448
  code_constraints?: (Array<{
@@ -34431,7 +34478,7 @@ interface Routes {
34431
34478
  climate_preset_key?: string | undefined;
34432
34479
  can_edit?: boolean | undefined;
34433
34480
  can_delete?: boolean | undefined;
34434
- name?: (string | null) | undefined;
34481
+ name?: ((string | null) | undefined) | undefined;
34435
34482
  display_name?: string | undefined;
34436
34483
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
34437
34484
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -34447,7 +34494,7 @@ interface Routes {
34447
34494
  climate_preset_key?: string | undefined;
34448
34495
  can_edit?: boolean | undefined;
34449
34496
  can_delete?: boolean | undefined;
34450
- name?: (string | null) | undefined;
34497
+ name?: ((string | null) | undefined) | undefined;
34451
34498
  display_name?: string | undefined;
34452
34499
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
34453
34500
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -34461,7 +34508,7 @@ interface Routes {
34461
34508
  climate_preset_key: string;
34462
34509
  can_edit: boolean;
34463
34510
  can_delete: boolean;
34464
- name?: string | null;
34511
+ name?: (string | null) | undefined;
34465
34512
  display_name: string;
34466
34513
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
34467
34514
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
@@ -34617,7 +34664,7 @@ interface Routes {
34617
34664
  /** Unique identifier for the device. */
34618
34665
  device_id: string;
34619
34666
  /** Type of the device. */
34620
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
34667
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
34621
34668
  /** Unique identifier for the account associated with the device. */
34622
34669
  connected_account_id: string;
34623
34670
  /** Location information for the device. */
@@ -34723,8 +34770,8 @@ interface Routes {
34723
34770
  connected_account_id?: string | undefined;
34724
34771
  connected_account_ids?: string[] | undefined;
34725
34772
  connect_webview_id?: string | undefined;
34726
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
34727
- device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
34773
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
34774
+ device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
34728
34775
  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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
34729
34776
  device_ids?: string[] | undefined;
34730
34777
  limit?: number;
@@ -34740,7 +34787,7 @@ interface Routes {
34740
34787
  /** Unique identifier for the device. */
34741
34788
  device_id: string;
34742
34789
  /** Type of the device. */
34743
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
34790
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
34744
34791
  /** Unique identifier for the account associated with the device. */
34745
34792
  connected_account_id: string;
34746
34793
  /** Location information for the device. */
@@ -34947,7 +34994,7 @@ interface Routes {
34947
34994
  /** Unique identifier for the device. */
34948
34995
  device_id: string;
34949
34996
  /** Type of the device. */
34950
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
34997
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
34951
34998
  /** Optional nickname to describe the device, settable through Seam */
34952
34999
  nickname?: string | undefined;
34953
35000
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -35233,6 +35280,9 @@ interface Routes {
35233
35280
  bridge_name: string;
35234
35281
  keypad_id?: number | undefined;
35235
35282
  } | undefined;
35283
+ visionline_metadata?: {
35284
+ encoder_id: string;
35285
+ } | undefined;
35236
35286
  }) & ({
35237
35287
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
35238
35288
  code_constraints?: (Array<{
@@ -35268,7 +35318,7 @@ interface Routes {
35268
35318
  climate_preset_key?: string | undefined;
35269
35319
  can_edit?: boolean | undefined;
35270
35320
  can_delete?: boolean | undefined;
35271
- name?: (string | null) | undefined;
35321
+ name?: ((string | null) | undefined) | undefined;
35272
35322
  display_name?: string | undefined;
35273
35323
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
35274
35324
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -35284,7 +35334,7 @@ interface Routes {
35284
35334
  climate_preset_key?: string | undefined;
35285
35335
  can_edit?: boolean | undefined;
35286
35336
  can_delete?: boolean | undefined;
35287
- name?: (string | null) | undefined;
35337
+ name?: ((string | null) | undefined) | undefined;
35288
35338
  display_name?: string | undefined;
35289
35339
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
35290
35340
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -35298,7 +35348,7 @@ interface Routes {
35298
35348
  climate_preset_key: string;
35299
35349
  can_edit: boolean;
35300
35350
  can_delete: boolean;
35301
- name?: string | null;
35351
+ name?: (string | null) | undefined;
35302
35352
  display_name: string;
35303
35353
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
35304
35354
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
@@ -35379,7 +35429,7 @@ interface Routes {
35379
35429
  /** Unique identifier for the device. */
35380
35430
  device_id: string;
35381
35431
  /** Type of the device. */
35382
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
35432
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
35383
35433
  /** Optional nickname to describe the device, settable through Seam */
35384
35434
  nickname?: string | undefined;
35385
35435
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -35665,6 +35715,9 @@ interface Routes {
35665
35715
  bridge_name: string;
35666
35716
  keypad_id?: number | undefined;
35667
35717
  } | undefined;
35718
+ visionline_metadata?: {
35719
+ encoder_id: string;
35720
+ } | undefined;
35668
35721
  }) & ({
35669
35722
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
35670
35723
  code_constraints?: (Array<{
@@ -35700,7 +35753,7 @@ interface Routes {
35700
35753
  climate_preset_key?: string | undefined;
35701
35754
  can_edit?: boolean | undefined;
35702
35755
  can_delete?: boolean | undefined;
35703
- name?: (string | null) | undefined;
35756
+ name?: ((string | null) | undefined) | undefined;
35704
35757
  display_name?: string | undefined;
35705
35758
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
35706
35759
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -35716,7 +35769,7 @@ interface Routes {
35716
35769
  climate_preset_key?: string | undefined;
35717
35770
  can_edit?: boolean | undefined;
35718
35771
  can_delete?: boolean | undefined;
35719
- name?: (string | null) | undefined;
35772
+ name?: ((string | null) | undefined) | undefined;
35720
35773
  display_name?: string | undefined;
35721
35774
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
35722
35775
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -35730,7 +35783,7 @@ interface Routes {
35730
35783
  climate_preset_key: string;
35731
35784
  can_edit: boolean;
35732
35785
  can_delete: boolean;
35733
- name?: string | null;
35786
+ name?: (string | null) | undefined;
35734
35787
  display_name: string;
35735
35788
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
35736
35789
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
@@ -35819,8 +35872,8 @@ interface Routes {
35819
35872
  connected_account_id?: string | undefined;
35820
35873
  connected_account_ids?: string[] | undefined;
35821
35874
  connect_webview_id?: string | undefined;
35822
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
35823
- device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
35875
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
35876
+ device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
35824
35877
  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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
35825
35878
  device_ids?: string[] | undefined;
35826
35879
  limit?: number;
@@ -35836,7 +35889,7 @@ interface Routes {
35836
35889
  /** Unique identifier for the device. */
35837
35890
  device_id: string;
35838
35891
  /** Type of the device. */
35839
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
35892
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
35840
35893
  /** Optional nickname to describe the device, settable through Seam */
35841
35894
  nickname?: string | undefined;
35842
35895
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -36122,6 +36175,9 @@ interface Routes {
36122
36175
  bridge_name: string;
36123
36176
  keypad_id?: number | undefined;
36124
36177
  } | undefined;
36178
+ visionline_metadata?: {
36179
+ encoder_id: string;
36180
+ } | undefined;
36125
36181
  }) & ({
36126
36182
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
36127
36183
  code_constraints?: (Array<{
@@ -36157,7 +36213,7 @@ interface Routes {
36157
36213
  climate_preset_key?: string | undefined;
36158
36214
  can_edit?: boolean | undefined;
36159
36215
  can_delete?: boolean | undefined;
36160
- name?: (string | null) | undefined;
36216
+ name?: ((string | null) | undefined) | undefined;
36161
36217
  display_name?: string | undefined;
36162
36218
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
36163
36219
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -36173,7 +36229,7 @@ interface Routes {
36173
36229
  climate_preset_key?: string | undefined;
36174
36230
  can_edit?: boolean | undefined;
36175
36231
  can_delete?: boolean | undefined;
36176
- name?: (string | null) | undefined;
36232
+ name?: ((string | null) | undefined) | undefined;
36177
36233
  display_name?: string | undefined;
36178
36234
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
36179
36235
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -36187,7 +36243,7 @@ interface Routes {
36187
36243
  climate_preset_key: string;
36188
36244
  can_edit: boolean;
36189
36245
  can_delete: boolean;
36190
- name?: string | null;
36246
+ name?: (string | null) | undefined;
36191
36247
  display_name: string;
36192
36248
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
36193
36249
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
@@ -36268,7 +36324,7 @@ interface Routes {
36268
36324
  /** Unique identifier for the device. */
36269
36325
  device_id: string;
36270
36326
  /** Type of the device. */
36271
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
36327
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
36272
36328
  /** Optional nickname to describe the device, settable through Seam */
36273
36329
  nickname?: string | undefined;
36274
36330
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -36554,6 +36610,9 @@ interface Routes {
36554
36610
  bridge_name: string;
36555
36611
  keypad_id?: number | undefined;
36556
36612
  } | undefined;
36613
+ visionline_metadata?: {
36614
+ encoder_id: string;
36615
+ } | undefined;
36557
36616
  }) & ({
36558
36617
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
36559
36618
  code_constraints?: (Array<{
@@ -36589,7 +36648,7 @@ interface Routes {
36589
36648
  climate_preset_key?: string | undefined;
36590
36649
  can_edit?: boolean | undefined;
36591
36650
  can_delete?: boolean | undefined;
36592
- name?: (string | null) | undefined;
36651
+ name?: ((string | null) | undefined) | undefined;
36593
36652
  display_name?: string | undefined;
36594
36653
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
36595
36654
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -36605,7 +36664,7 @@ interface Routes {
36605
36664
  climate_preset_key?: string | undefined;
36606
36665
  can_edit?: boolean | undefined;
36607
36666
  can_delete?: boolean | undefined;
36608
- name?: (string | null) | undefined;
36667
+ name?: ((string | null) | undefined) | undefined;
36609
36668
  display_name?: string | undefined;
36610
36669
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
36611
36670
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -36619,7 +36678,7 @@ interface Routes {
36619
36678
  climate_preset_key: string;
36620
36679
  can_edit: boolean;
36621
36680
  can_delete: boolean;
36622
- name?: string | null;
36681
+ name?: (string | null) | undefined;
36623
36682
  display_name: string;
36624
36683
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
36625
36684
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
@@ -37596,8 +37655,8 @@ interface Routes {
37596
37655
  connected_account_id?: string | undefined;
37597
37656
  connected_account_ids?: string[] | undefined;
37598
37657
  connect_webview_id?: string | undefined;
37599
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
37600
- device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
37658
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
37659
+ device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
37601
37660
  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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
37602
37661
  device_ids?: string[] | undefined;
37603
37662
  limit?: number;
@@ -37613,7 +37672,7 @@ interface Routes {
37613
37672
  /** Unique identifier for the device. */
37614
37673
  device_id: string;
37615
37674
  /** Type of the device. */
37616
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
37675
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
37617
37676
  /** Optional nickname to describe the device, settable through Seam */
37618
37677
  nickname?: string | undefined;
37619
37678
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -37899,6 +37958,9 @@ interface Routes {
37899
37958
  bridge_name: string;
37900
37959
  keypad_id?: number | undefined;
37901
37960
  } | undefined;
37961
+ visionline_metadata?: {
37962
+ encoder_id: string;
37963
+ } | undefined;
37902
37964
  }) & ({
37903
37965
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
37904
37966
  code_constraints?: (Array<{
@@ -37934,7 +37996,7 @@ interface Routes {
37934
37996
  climate_preset_key?: string | undefined;
37935
37997
  can_edit?: boolean | undefined;
37936
37998
  can_delete?: boolean | undefined;
37937
- name?: (string | null) | undefined;
37999
+ name?: ((string | null) | undefined) | undefined;
37938
38000
  display_name?: string | undefined;
37939
38001
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
37940
38002
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -37950,7 +38012,7 @@ interface Routes {
37950
38012
  climate_preset_key?: string | undefined;
37951
38013
  can_edit?: boolean | undefined;
37952
38014
  can_delete?: boolean | undefined;
37953
- name?: (string | null) | undefined;
38015
+ name?: ((string | null) | undefined) | undefined;
37954
38016
  display_name?: string | undefined;
37955
38017
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
37956
38018
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -37964,7 +38026,7 @@ interface Routes {
37964
38026
  climate_preset_key: string;
37965
38027
  can_edit: boolean;
37966
38028
  can_delete: boolean;
37967
- name?: string | null;
38029
+ name?: (string | null) | undefined;
37968
38030
  display_name: string;
37969
38031
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
37970
38032
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
@@ -38045,7 +38107,7 @@ interface Routes {
38045
38107
  /** Unique identifier for the device. */
38046
38108
  device_id: string;
38047
38109
  /** Type of the device. */
38048
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
38110
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
38049
38111
  /** Optional nickname to describe the device, settable through Seam */
38050
38112
  nickname?: string | undefined;
38051
38113
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -38331,6 +38393,9 @@ interface Routes {
38331
38393
  bridge_name: string;
38332
38394
  keypad_id?: number | undefined;
38333
38395
  } | undefined;
38396
+ visionline_metadata?: {
38397
+ encoder_id: string;
38398
+ } | undefined;
38334
38399
  }) & ({
38335
38400
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
38336
38401
  code_constraints?: (Array<{
@@ -38366,7 +38431,7 @@ interface Routes {
38366
38431
  climate_preset_key?: string | undefined;
38367
38432
  can_edit?: boolean | undefined;
38368
38433
  can_delete?: boolean | undefined;
38369
- name?: (string | null) | undefined;
38434
+ name?: ((string | null) | undefined) | undefined;
38370
38435
  display_name?: string | undefined;
38371
38436
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
38372
38437
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -38382,7 +38447,7 @@ interface Routes {
38382
38447
  climate_preset_key?: string | undefined;
38383
38448
  can_edit?: boolean | undefined;
38384
38449
  can_delete?: boolean | undefined;
38385
- name?: (string | null) | undefined;
38450
+ name?: ((string | null) | undefined) | undefined;
38386
38451
  display_name?: string | undefined;
38387
38452
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
38388
38453
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -38396,7 +38461,7 @@ interface Routes {
38396
38461
  climate_preset_key: string;
38397
38462
  can_edit: boolean;
38398
38463
  can_delete: boolean;
38399
- name?: string | null;
38464
+ name?: (string | null) | undefined;
38400
38465
  display_name: string;
38401
38466
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
38402
38467
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
@@ -40865,7 +40930,7 @@ interface Routes {
40865
40930
  jsonBody: {
40866
40931
  device_id: string;
40867
40932
  climate_preset_key: string;
40868
- name?: string | null;
40933
+ name?: (string | null) | undefined;
40869
40934
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
40870
40935
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
40871
40936
  cooling_set_point_celsius?: number | undefined;
@@ -40881,7 +40946,7 @@ interface Routes {
40881
40946
  climate_preset_key: string;
40882
40947
  can_edit: boolean;
40883
40948
  can_delete: boolean;
40884
- name?: string | null;
40949
+ name?: (string | null) | undefined;
40885
40950
  display_name: string;
40886
40951
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
40887
40952
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
@@ -40920,7 +40985,7 @@ interface Routes {
40920
40985
  /** Unique identifier for the device. */
40921
40986
  device_id: string;
40922
40987
  /** Type of the device. */
40923
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
40988
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
40924
40989
  /** Optional nickname to describe the device, settable through Seam */
40925
40990
  nickname?: string | undefined;
40926
40991
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -41206,6 +41271,9 @@ interface Routes {
41206
41271
  bridge_name: string;
41207
41272
  keypad_id?: number | undefined;
41208
41273
  } | undefined;
41274
+ visionline_metadata?: {
41275
+ encoder_id: string;
41276
+ } | undefined;
41209
41277
  }) & ({
41210
41278
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
41211
41279
  code_constraints?: (Array<{
@@ -41241,7 +41309,7 @@ interface Routes {
41241
41309
  climate_preset_key?: string | undefined;
41242
41310
  can_edit?: boolean | undefined;
41243
41311
  can_delete?: boolean | undefined;
41244
- name?: (string | null) | undefined;
41312
+ name?: ((string | null) | undefined) | undefined;
41245
41313
  display_name?: string | undefined;
41246
41314
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
41247
41315
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -41257,7 +41325,7 @@ interface Routes {
41257
41325
  climate_preset_key?: string | undefined;
41258
41326
  can_edit?: boolean | undefined;
41259
41327
  can_delete?: boolean | undefined;
41260
- name?: (string | null) | undefined;
41328
+ name?: ((string | null) | undefined) | undefined;
41261
41329
  display_name?: string | undefined;
41262
41330
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
41263
41331
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -41271,7 +41339,7 @@ interface Routes {
41271
41339
  climate_preset_key: string;
41272
41340
  can_edit: boolean;
41273
41341
  can_delete: boolean;
41274
- name?: string | null;
41342
+ name?: (string | null) | undefined;
41275
41343
  display_name: string;
41276
41344
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
41277
41345
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
@@ -42220,8 +42288,8 @@ interface Routes {
42220
42288
  connected_account_id?: string | undefined;
42221
42289
  connected_account_ids?: string[] | undefined;
42222
42290
  connect_webview_id?: string | undefined;
42223
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
42224
- device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
42291
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
42292
+ device_types?: Array<('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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
42225
42293
  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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
42226
42294
  device_ids?: string[] | undefined;
42227
42295
  limit?: number;
@@ -42237,7 +42305,7 @@ interface Routes {
42237
42305
  /** Unique identifier for the device. */
42238
42306
  device_id: string;
42239
42307
  /** Type of the device. */
42240
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
42308
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
42241
42309
  /** Optional nickname to describe the device, settable through Seam */
42242
42310
  nickname?: string | undefined;
42243
42311
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -42523,6 +42591,9 @@ interface Routes {
42523
42591
  bridge_name: string;
42524
42592
  keypad_id?: number | undefined;
42525
42593
  } | undefined;
42594
+ visionline_metadata?: {
42595
+ encoder_id: string;
42596
+ } | undefined;
42526
42597
  }) & ({
42527
42598
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
42528
42599
  code_constraints?: (Array<{
@@ -42558,7 +42629,7 @@ interface Routes {
42558
42629
  climate_preset_key?: string | undefined;
42559
42630
  can_edit?: boolean | undefined;
42560
42631
  can_delete?: boolean | undefined;
42561
- name?: (string | null) | undefined;
42632
+ name?: ((string | null) | undefined) | undefined;
42562
42633
  display_name?: string | undefined;
42563
42634
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
42564
42635
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -42574,7 +42645,7 @@ interface Routes {
42574
42645
  climate_preset_key?: string | undefined;
42575
42646
  can_edit?: boolean | undefined;
42576
42647
  can_delete?: boolean | undefined;
42577
- name?: (string | null) | undefined;
42648
+ name?: ((string | null) | undefined) | undefined;
42578
42649
  display_name?: string | undefined;
42579
42650
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
42580
42651
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -42588,7 +42659,7 @@ interface Routes {
42588
42659
  climate_preset_key: string;
42589
42660
  can_edit: boolean;
42590
42661
  can_delete: boolean;
42591
- name?: string | null;
42662
+ name?: (string | null) | undefined;
42592
42663
  display_name: string;
42593
42664
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
42594
42665
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
@@ -43649,7 +43720,7 @@ interface Routes {
43649
43720
  jsonBody: {
43650
43721
  device_id: string;
43651
43722
  climate_preset_key: string;
43652
- name?: string | null;
43723
+ name?: (string | null) | undefined;
43653
43724
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
43654
43725
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
43655
43726
  cooling_set_point_celsius?: number | undefined;
@@ -43855,7 +43926,7 @@ interface Routes {
43855
43926
  /** Unique identifier for the device. */
43856
43927
  device_id: string;
43857
43928
  /** Type of the device. */
43858
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
43929
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
43859
43930
  /** Optional nickname to describe the device, settable through Seam */
43860
43931
  nickname?: string | undefined;
43861
43932
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -44141,6 +44212,9 @@ interface Routes {
44141
44212
  bridge_name: string;
44142
44213
  keypad_id?: number | undefined;
44143
44214
  } | undefined;
44215
+ visionline_metadata?: {
44216
+ encoder_id: string;
44217
+ } | undefined;
44144
44218
  }) & ({
44145
44219
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
44146
44220
  code_constraints?: (Array<{
@@ -44176,7 +44250,7 @@ interface Routes {
44176
44250
  climate_preset_key?: string | undefined;
44177
44251
  can_edit?: boolean | undefined;
44178
44252
  can_delete?: boolean | undefined;
44179
- name?: (string | null) | undefined;
44253
+ name?: ((string | null) | undefined) | undefined;
44180
44254
  display_name?: string | undefined;
44181
44255
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
44182
44256
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -44192,7 +44266,7 @@ interface Routes {
44192
44266
  climate_preset_key?: string | undefined;
44193
44267
  can_edit?: boolean | undefined;
44194
44268
  can_delete?: boolean | undefined;
44195
- name?: (string | null) | undefined;
44269
+ name?: ((string | null) | undefined) | undefined;
44196
44270
  display_name?: string | undefined;
44197
44271
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
44198
44272
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -44206,7 +44280,7 @@ interface Routes {
44206
44280
  climate_preset_key: string;
44207
44281
  can_edit: boolean;
44208
44282
  can_delete: boolean;
44209
- name?: string | null;
44283
+ name?: (string | null) | undefined;
44210
44284
  display_name: string;
44211
44285
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
44212
44286
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
@@ -44289,7 +44363,7 @@ interface Routes {
44289
44363
  /** Unique identifier for the device. */
44290
44364
  device_id: string;
44291
44365
  /** Type of the device. */
44292
- 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
44366
+ 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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
44293
44367
  /** Optional nickname to describe the device, settable through Seam */
44294
44368
  nickname?: string | undefined;
44295
44369
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -44575,6 +44649,9 @@ interface Routes {
44575
44649
  bridge_name: string;
44576
44650
  keypad_id?: number | undefined;
44577
44651
  } | undefined;
44652
+ visionline_metadata?: {
44653
+ encoder_id: string;
44654
+ } | undefined;
44578
44655
  }) & ({
44579
44656
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
44580
44657
  code_constraints?: (Array<{
@@ -44610,7 +44687,7 @@ interface Routes {
44610
44687
  climate_preset_key?: string | undefined;
44611
44688
  can_edit?: boolean | undefined;
44612
44689
  can_delete?: boolean | undefined;
44613
- name?: (string | null) | undefined;
44690
+ name?: ((string | null) | undefined) | undefined;
44614
44691
  display_name?: string | undefined;
44615
44692
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
44616
44693
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -44626,7 +44703,7 @@ interface Routes {
44626
44703
  climate_preset_key?: string | undefined;
44627
44704
  can_edit?: boolean | undefined;
44628
44705
  can_delete?: boolean | undefined;
44629
- name?: (string | null) | undefined;
44706
+ name?: ((string | null) | undefined) | undefined;
44630
44707
  display_name?: string | undefined;
44631
44708
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
44632
44709
  hvac_mode_setting?: (('off' | 'heat' | 'cool' | 'heat_cool') | undefined) | undefined;
@@ -44640,7 +44717,7 @@ interface Routes {
44640
44717
  climate_preset_key: string;
44641
44718
  can_edit: boolean;
44642
44719
  can_delete: boolean;
44643
- name?: string | null;
44720
+ name?: (string | null) | undefined;
44644
44721
  display_name: string;
44645
44722
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
44646
44723
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;