@seamapi/types 1.306.0 → 1.307.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. package/dist/connect.cjs +64 -23
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +228 -91
  4. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +13 -13
  5. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +13 -13
  6. package/lib/seam/connect/models/action-attempts/scan-credential.js +7 -2
  7. package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
  8. package/lib/seam/connect/models/devices/device-metadata.d.ts +23 -0
  9. package/lib/seam/connect/models/devices/device-metadata.js +5 -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 +1 -0
  12. package/lib/seam/connect/models/devices/device-type.js +1 -0
  13. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  14. package/lib/seam/connect/models/devices/device.d.ts +36 -3
  15. package/lib/seam/connect/models/devices/phone.d.ts +24 -1
  16. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +26 -3
  17. package/lib/seam/connect/openapi.d.ts +16 -0
  18. package/lib/seam/connect/openapi.js +35 -1
  19. package/lib/seam/connect/openapi.js.map +1 -1
  20. package/lib/seam/connect/route-types.d.ts +137 -72
  21. package/package.json +1 -1
  22. package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +7 -4
  23. package/src/lib/seam/connect/models/devices/device-metadata.ts +6 -0
  24. package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
  25. package/src/lib/seam/connect/openapi.ts +35 -1
  26. package/src/lib/seam/connect/route-types.ts +205 -42
@@ -1997,7 +1997,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
1997
1997
  }>, {
1998
1998
  action_type: z.ZodLiteral<"SCAN_CREDENTIAL">;
1999
1999
  result: z.ZodObject<{
2000
- acs_credential_on_encoder: z.ZodObject<{
2000
+ acs_credential_on_encoder: z.ZodNullable<z.ZodObject<{
2001
2001
  created_at: z.ZodNullable<z.ZodString>;
2002
2002
  is_issued: z.ZodNullable<z.ZodBoolean>;
2003
2003
  starts_at: z.ZodNullable<z.ZodString>;
@@ -2083,7 +2083,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2083
2083
  overridden?: boolean | undefined;
2084
2084
  card_holder?: string | undefined;
2085
2085
  } | undefined;
2086
- }>;
2086
+ }>>;
2087
2087
  acs_credential_on_seam: z.ZodNullable<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
2088
2088
  acs_credential_id: z.ZodString;
2089
2089
  acs_user_id: z.ZodOptional<z.ZodString>;
@@ -2532,18 +2532,18 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2532
2532
  latest_desired_state_synced_with_provider_at?: string | undefined;
2533
2533
  }>]>>;
2534
2534
  warnings: z.ZodArray<z.ZodObject<{
2535
- warning_code: z.ZodLiteral<"acs_credential_on_encoder_out_of_sync">;
2535
+ warning_code: z.ZodUnion<[z.ZodLiteral<"acs_credential_on_encoder_out_of_sync">, z.ZodLiteral<"acs_credential_on_seam_not_found">]>;
2536
2536
  warning_message: z.ZodString;
2537
2537
  }, "strip", z.ZodTypeAny, {
2538
- warning_code: "acs_credential_on_encoder_out_of_sync";
2538
+ warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
2539
2539
  warning_message: string;
2540
2540
  }, {
2541
- warning_code: "acs_credential_on_encoder_out_of_sync";
2541
+ warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
2542
2542
  warning_message: string;
2543
2543
  }>, "many">;
2544
2544
  }, "strip", z.ZodTypeAny, {
2545
2545
  warnings: {
2546
- warning_code: "acs_credential_on_encoder_out_of_sync";
2546
+ warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
2547
2547
  warning_message: string;
2548
2548
  }[];
2549
2549
  acs_credential_on_encoder: {
@@ -2566,7 +2566,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2566
2566
  overridden?: boolean | undefined;
2567
2567
  card_holder?: string | undefined;
2568
2568
  } | undefined;
2569
- };
2569
+ } | null;
2570
2570
  acs_credential_on_seam: {
2571
2571
  created_at: string;
2572
2572
  errors: {
@@ -2678,7 +2678,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2678
2678
  } | null;
2679
2679
  }, {
2680
2680
  warnings: {
2681
- warning_code: "acs_credential_on_encoder_out_of_sync";
2681
+ warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
2682
2682
  warning_message: string;
2683
2683
  }[];
2684
2684
  acs_credential_on_encoder: {
@@ -2701,7 +2701,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2701
2701
  overridden?: boolean | undefined;
2702
2702
  card_holder?: string | undefined;
2703
2703
  } | undefined;
2704
- };
2704
+ } | null;
2705
2705
  acs_credential_on_seam: {
2706
2706
  created_at: string;
2707
2707
  errors: {
@@ -2818,7 +2818,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2818
2818
  error: null;
2819
2819
  result: {
2820
2820
  warnings: {
2821
- warning_code: "acs_credential_on_encoder_out_of_sync";
2821
+ warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
2822
2822
  warning_message: string;
2823
2823
  }[];
2824
2824
  acs_credential_on_encoder: {
@@ -2841,7 +2841,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2841
2841
  overridden?: boolean | undefined;
2842
2842
  card_holder?: string | undefined;
2843
2843
  } | undefined;
2844
- };
2844
+ } | null;
2845
2845
  acs_credential_on_seam: {
2846
2846
  created_at: string;
2847
2847
  errors: {
@@ -2959,7 +2959,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2959
2959
  error: null;
2960
2960
  result: {
2961
2961
  warnings: {
2962
- warning_code: "acs_credential_on_encoder_out_of_sync";
2962
+ warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
2963
2963
  warning_message: string;
2964
2964
  }[];
2965
2965
  acs_credential_on_encoder: {
@@ -2982,7 +2982,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2982
2982
  overridden?: boolean | undefined;
2983
2983
  card_holder?: string | undefined;
2984
2984
  } | undefined;
2985
- };
2985
+ } | null;
2986
2986
  acs_credential_on_seam: {
2987
2987
  created_at: string;
2988
2988
  errors: {
@@ -5462,7 +5462,7 @@ declare const device_warning: z.ZodObject<z.objectUtil.extendShape<{
5462
5462
  type DeviceWarning = z.infer<typeof device_warning>;
5463
5463
  declare const device: z.ZodObject<z.objectUtil.extendShape<{
5464
5464
  device_id: z.ZodString;
5465
- 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" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
5465
+ 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" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
5466
5466
  nickname: z.ZodOptional<z.ZodString>;
5467
5467
  display_name: z.ZodString;
5468
5468
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -6378,6 +6378,19 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
6378
6378
  }, {
6379
6379
  encoder_name: string;
6380
6380
  }>>;
6381
+ tado_metadata: z.ZodOptional<z.ZodObject<{
6382
+ serial_number: z.ZodString;
6383
+ device_name: z.ZodString;
6384
+ device_type: z.ZodString;
6385
+ }, "strip", z.ZodTypeAny, {
6386
+ device_name: string;
6387
+ serial_number: string;
6388
+ device_type: string;
6389
+ }, {
6390
+ device_name: string;
6391
+ serial_number: string;
6392
+ device_type: string;
6393
+ }>>;
6381
6394
  }, "strip", z.ZodTypeAny, {
6382
6395
  august_metadata?: {
6383
6396
  lock_id: string;
@@ -6601,6 +6614,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
6601
6614
  assa_abloy_vostio_metadata?: {
6602
6615
  encoder_name: string;
6603
6616
  } | undefined;
6617
+ tado_metadata?: {
6618
+ device_name: string;
6619
+ serial_number: string;
6620
+ device_type: string;
6621
+ } | undefined;
6604
6622
  }, {
6605
6623
  august_metadata?: {
6606
6624
  lock_id: string;
@@ -6824,6 +6842,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
6824
6842
  assa_abloy_vostio_metadata?: {
6825
6843
  encoder_name: string;
6826
6844
  } | undefined;
6845
+ tado_metadata?: {
6846
+ device_name: string;
6847
+ serial_number: string;
6848
+ device_type: string;
6849
+ } | undefined;
6827
6850
  }>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
6828
6851
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
6829
6852
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -7337,7 +7360,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
7337
7360
  custom_metadata: Record<string, string | boolean>;
7338
7361
  display_name: string;
7339
7362
  device_id: string;
7340
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone");
7363
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
7341
7364
  capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
7342
7365
  properties: {
7343
7366
  name: string;
@@ -7607,6 +7630,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
7607
7630
  assa_abloy_vostio_metadata?: {
7608
7631
  encoder_name: string;
7609
7632
  } | undefined;
7633
+ tado_metadata?: {
7634
+ device_name: string;
7635
+ serial_number: string;
7636
+ device_type: string;
7637
+ } | undefined;
7610
7638
  } & {
7611
7639
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
7612
7640
  code_constraints?: ({
@@ -7745,7 +7773,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
7745
7773
  custom_metadata: Record<string, string | boolean>;
7746
7774
  display_name: string;
7747
7775
  device_id: string;
7748
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone");
7776
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
7749
7777
  capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
7750
7778
  properties: {
7751
7779
  name: string;
@@ -8015,6 +8043,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
8015
8043
  assa_abloy_vostio_metadata?: {
8016
8044
  encoder_name: string;
8017
8045
  } | undefined;
8046
+ tado_metadata?: {
8047
+ device_name: string;
8048
+ serial_number: string;
8049
+ device_type: string;
8050
+ } | undefined;
8018
8051
  } & {
8019
8052
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
8020
8053
  code_constraints?: ({
@@ -8239,7 +8272,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
8239
8272
 
8240
8273
  declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<Pick<z.objectUtil.extendShape<{
8241
8274
  device_id: z.ZodString;
8242
- 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" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
8275
+ 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" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
8243
8276
  nickname: z.ZodOptional<z.ZodString>;
8244
8277
  display_name: z.ZodString;
8245
8278
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -9155,6 +9188,19 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
9155
9188
  }, {
9156
9189
  encoder_name: string;
9157
9190
  }>>;
9191
+ tado_metadata: z.ZodOptional<z.ZodObject<{
9192
+ serial_number: z.ZodString;
9193
+ device_name: z.ZodString;
9194
+ device_type: z.ZodString;
9195
+ }, "strip", z.ZodTypeAny, {
9196
+ device_name: string;
9197
+ serial_number: string;
9198
+ device_type: string;
9199
+ }, {
9200
+ device_name: string;
9201
+ serial_number: string;
9202
+ device_type: string;
9203
+ }>>;
9158
9204
  }, "strip", z.ZodTypeAny, {
9159
9205
  august_metadata?: {
9160
9206
  lock_id: string;
@@ -9378,6 +9424,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
9378
9424
  assa_abloy_vostio_metadata?: {
9379
9425
  encoder_name: string;
9380
9426
  } | undefined;
9427
+ tado_metadata?: {
9428
+ device_name: string;
9429
+ serial_number: string;
9430
+ device_type: string;
9431
+ } | undefined;
9381
9432
  }, {
9382
9433
  august_metadata?: {
9383
9434
  lock_id: string;
@@ -9601,6 +9652,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
9601
9652
  assa_abloy_vostio_metadata?: {
9602
9653
  encoder_name: string;
9603
9654
  } | undefined;
9655
+ tado_metadata?: {
9656
+ device_name: string;
9657
+ serial_number: string;
9658
+ device_type: string;
9659
+ } | undefined;
9604
9660
  }>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
9605
9661
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
9606
9662
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -10261,7 +10317,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
10261
10317
  warning_code: string;
10262
10318
  }[];
10263
10319
  device_id: string;
10264
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone");
10320
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
10265
10321
  capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
10266
10322
  properties: {
10267
10323
  name: string;
@@ -10326,7 +10382,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
10326
10382
  warning_code: string;
10327
10383
  }[];
10328
10384
  device_id: string;
10329
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone");
10385
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
10330
10386
  capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
10331
10387
  properties: {
10332
10388
  name: string;
@@ -13727,6 +13783,7 @@ declare const _default: {
13727
13783
  properties: {
13728
13784
  acs_credential_on_encoder: {
13729
13785
  description: string;
13786
+ nullable: boolean;
13730
13787
  properties: {
13731
13788
  card_number: {
13732
13789
  description: string;
@@ -15674,6 +15731,21 @@ declare const _default: {
15674
15731
  required: string[];
15675
15732
  type: string;
15676
15733
  };
15734
+ tado_metadata: {
15735
+ properties: {
15736
+ device_name: {
15737
+ type: string;
15738
+ };
15739
+ device_type: {
15740
+ type: string;
15741
+ };
15742
+ serial_number: {
15743
+ type: string;
15744
+ };
15745
+ };
15746
+ required: string[];
15747
+ type: string;
15748
+ };
15677
15749
  tedee_metadata: {
15678
15750
  properties: {
15679
15751
  bridge_id: {
@@ -33494,7 +33566,7 @@ interface Routes {
33494
33566
  guest_acs_entrance_ids?: string[] | undefined;
33495
33567
  common_acs_entrance_ids?: string[] | undefined;
33496
33568
  } | undefined;
33497
- };
33569
+ } | null;
33498
33570
  /** Matching acs_credential currently encoded on this card. */
33499
33571
  acs_credential_on_seam: ({
33500
33572
  /** ID of the credential. */
@@ -33670,7 +33742,7 @@ interface Routes {
33670
33742
  is_managed: false;
33671
33743
  }) | null;
33672
33744
  warnings: Array<{
33673
- warning_code: 'acs_credential_on_encoder_out_of_sync';
33745
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
33674
33746
  warning_message: string;
33675
33747
  }>;
33676
33748
  };
@@ -34517,7 +34589,7 @@ interface Routes {
34517
34589
  guest_acs_entrance_ids?: string[] | undefined;
34518
34590
  common_acs_entrance_ids?: string[] | undefined;
34519
34591
  } | undefined;
34520
- };
34592
+ } | null;
34521
34593
  /** Matching acs_credential currently encoded on this card. */
34522
34594
  acs_credential_on_seam: ({
34523
34595
  /** ID of the credential. */
@@ -34693,7 +34765,7 @@ interface Routes {
34693
34765
  is_managed: false;
34694
34766
  }) | null;
34695
34767
  warnings: Array<{
34696
- warning_code: 'acs_credential_on_encoder_out_of_sync';
34768
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
34697
34769
  warning_message: string;
34698
34770
  }>;
34699
34771
  };
@@ -35758,7 +35830,7 @@ interface Routes {
35758
35830
  guest_acs_entrance_ids?: string[] | undefined;
35759
35831
  common_acs_entrance_ids?: string[] | undefined;
35760
35832
  } | undefined;
35761
- };
35833
+ } | null;
35762
35834
  /** Matching acs_credential currently encoded on this card. */
35763
35835
  acs_credential_on_seam: ({
35764
35836
  /** ID of the credential. */
@@ -35934,7 +36006,7 @@ interface Routes {
35934
36006
  is_managed: false;
35935
36007
  }) | null;
35936
36008
  warnings: Array<{
35937
- warning_code: 'acs_credential_on_encoder_out_of_sync';
36009
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
35938
36010
  warning_message: string;
35939
36011
  }>;
35940
36012
  };
@@ -36768,7 +36840,7 @@ interface Routes {
36768
36840
  guest_acs_entrance_ids?: string[] | undefined;
36769
36841
  common_acs_entrance_ids?: string[] | undefined;
36770
36842
  } | undefined;
36771
- };
36843
+ } | null;
36772
36844
  /** Matching acs_credential currently encoded on this card. */
36773
36845
  acs_credential_on_seam: ({
36774
36846
  /** ID of the credential. */
@@ -36944,7 +37016,7 @@ interface Routes {
36944
37016
  is_managed: false;
36945
37017
  }) | null;
36946
37018
  warnings: Array<{
36947
- warning_code: 'acs_credential_on_encoder_out_of_sync';
37019
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
36948
37020
  warning_message: string;
36949
37021
  }>;
36950
37022
  };
@@ -39113,7 +39185,7 @@ interface Routes {
39113
39185
  guest_acs_entrance_ids?: string[] | undefined;
39114
39186
  common_acs_entrance_ids?: string[] | undefined;
39115
39187
  } | undefined;
39116
- };
39188
+ } | null;
39117
39189
  /** Matching acs_credential currently encoded on this card. */
39118
39190
  acs_credential_on_seam: ({
39119
39191
  /** ID of the credential. */
@@ -39289,7 +39361,7 @@ interface Routes {
39289
39361
  is_managed: false;
39290
39362
  }) | null;
39291
39363
  warnings: Array<{
39292
- warning_code: 'acs_credential_on_encoder_out_of_sync';
39364
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
39293
39365
  warning_message: string;
39294
39366
  }>;
39295
39367
  };
@@ -40030,7 +40102,7 @@ interface Routes {
40030
40102
  guest_acs_entrance_ids?: string[] | undefined;
40031
40103
  common_acs_entrance_ids?: string[] | undefined;
40032
40104
  } | undefined;
40033
- };
40105
+ } | null;
40034
40106
  /** Matching acs_credential currently encoded on this card. */
40035
40107
  acs_credential_on_seam: ({
40036
40108
  /** ID of the credential. */
@@ -40206,7 +40278,7 @@ interface Routes {
40206
40278
  is_managed: false;
40207
40279
  }) | null;
40208
40280
  warnings: Array<{
40209
- warning_code: 'acs_credential_on_encoder_out_of_sync';
40281
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
40210
40282
  warning_message: string;
40211
40283
  }>;
40212
40284
  };
@@ -42195,7 +42267,7 @@ interface Routes {
42195
42267
  guest_acs_entrance_ids?: string[] | undefined;
42196
42268
  common_acs_entrance_ids?: string[] | undefined;
42197
42269
  } | undefined;
42198
- };
42270
+ } | null;
42199
42271
  /** Matching acs_credential currently encoded on this card. */
42200
42272
  acs_credential_on_seam: ({
42201
42273
  /** ID of the credential. */
@@ -42371,7 +42443,7 @@ interface Routes {
42371
42443
  is_managed: false;
42372
42444
  }) | null;
42373
42445
  warnings: Array<{
42374
- warning_code: 'acs_credential_on_encoder_out_of_sync';
42446
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
42375
42447
  warning_message: string;
42376
42448
  }>;
42377
42449
  };
@@ -43067,7 +43139,7 @@ interface Routes {
43067
43139
  guest_acs_entrance_ids?: string[] | undefined;
43068
43140
  common_acs_entrance_ids?: string[] | undefined;
43069
43141
  } | undefined;
43070
- };
43142
+ } | null;
43071
43143
  /** Matching acs_credential currently encoded on this card. */
43072
43144
  acs_credential_on_seam: ({
43073
43145
  /** ID of the credential. */
@@ -43243,7 +43315,7 @@ interface Routes {
43243
43315
  is_managed: false;
43244
43316
  }) | null;
43245
43317
  warnings: Array<{
43246
- warning_code: 'acs_credential_on_encoder_out_of_sync';
43318
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
43247
43319
  warning_message: string;
43248
43320
  }>;
43249
43321
  };
@@ -44281,7 +44353,7 @@ interface Routes {
44281
44353
  /** Unique identifier for the device. */
44282
44354
  device_id: string;
44283
44355
  /** Type of the device. */
44284
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
44356
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
44285
44357
  /** Optional nickname to describe the device, settable through Seam */
44286
44358
  nickname?: string | undefined;
44287
44359
  /** 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. */
@@ -44592,6 +44664,11 @@ interface Routes {
44592
44664
  assa_abloy_vostio_metadata?: {
44593
44665
  encoder_name: string;
44594
44666
  } | undefined;
44667
+ tado_metadata?: {
44668
+ serial_number: string;
44669
+ device_name: string;
44670
+ device_type: string;
44671
+ } | undefined;
44595
44672
  }) & ({
44596
44673
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
44597
44674
  code_constraints?: (Array<{
@@ -44805,11 +44882,11 @@ interface Routes {
44805
44882
  /** ID of the Connect Webview by which to filter devices. */
44806
44883
  connect_webview_id?: string | undefined;
44807
44884
  /** Device type by which to filter devices. */
44808
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
44885
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
44809
44886
  /** Array of device types by which to filter devices. */
44810
- 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' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
44887
+ 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' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
44811
44888
  /** Manufacturer by which to filter devices. */
44812
- 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' | 'akiles') | undefined;
44889
+ 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' | 'akiles' | 'tado') | undefined;
44813
44890
  /** Array of device IDs by which to filter devices. */
44814
44891
  device_ids?: string[] | undefined;
44815
44892
  /** Numerical limit on the number of devices to return. */
@@ -44831,7 +44908,7 @@ interface Routes {
44831
44908
  /** Unique identifier for the device. */
44832
44909
  device_id: string;
44833
44910
  /** Type of the device. */
44834
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
44911
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
44835
44912
  /** Optional nickname to describe the device, settable through Seam */
44836
44913
  nickname?: string | undefined;
44837
44914
  /** 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. */
@@ -45142,6 +45219,11 @@ interface Routes {
45142
45219
  assa_abloy_vostio_metadata?: {
45143
45220
  encoder_name: string;
45144
45221
  } | undefined;
45222
+ tado_metadata?: {
45223
+ serial_number: string;
45224
+ device_name: string;
45225
+ device_type: string;
45226
+ } | undefined;
45145
45227
  }) & ({
45146
45228
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
45147
45229
  code_constraints?: (Array<{
@@ -45419,7 +45501,7 @@ interface Routes {
45419
45501
  /** Unique identifier for the device. */
45420
45502
  device_id: string;
45421
45503
  /** Type of the device. */
45422
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
45504
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
45423
45505
  /** Unique identifier for the account associated with the device. */
45424
45506
  connected_account_id: string;
45425
45507
  /** Location information for the device. */
@@ -45528,11 +45610,11 @@ interface Routes {
45528
45610
  /** ID of the Connect Webview by which to filter devices. */
45529
45611
  connect_webview_id?: string | undefined;
45530
45612
  /** Device type by which to filter devices. */
45531
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
45613
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
45532
45614
  /** Array of device types by which to filter devices. */
45533
- 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' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
45615
+ 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' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
45534
45616
  /** Manufacturer by which to filter devices. */
45535
- 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' | 'akiles') | undefined;
45617
+ 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' | 'akiles' | 'tado') | undefined;
45536
45618
  /** Array of device IDs by which to filter devices. */
45537
45619
  device_ids?: string[] | undefined;
45538
45620
  /** Numerical limit on the number of devices to return. */
@@ -45554,7 +45636,7 @@ interface Routes {
45554
45636
  /** Unique identifier for the device. */
45555
45637
  device_id: string;
45556
45638
  /** Type of the device. */
45557
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
45639
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
45558
45640
  /** Unique identifier for the account associated with the device. */
45559
45641
  connected_account_id: string;
45560
45642
  /** Location information for the device. */
@@ -45784,7 +45866,7 @@ interface Routes {
45784
45866
  /** Unique identifier for the device. */
45785
45867
  device_id: string;
45786
45868
  /** Type of the device. */
45787
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
45869
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
45788
45870
  /** Optional nickname to describe the device, settable through Seam */
45789
45871
  nickname?: string | undefined;
45790
45872
  /** 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. */
@@ -46095,6 +46177,11 @@ interface Routes {
46095
46177
  assa_abloy_vostio_metadata?: {
46096
46178
  encoder_name: string;
46097
46179
  } | undefined;
46180
+ tado_metadata?: {
46181
+ serial_number: string;
46182
+ device_name: string;
46183
+ device_type: string;
46184
+ } | undefined;
46098
46185
  }) & ({
46099
46186
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
46100
46187
  code_constraints?: (Array<{
@@ -46297,7 +46384,7 @@ interface Routes {
46297
46384
  /** Unique identifier for the device. */
46298
46385
  device_id: string;
46299
46386
  /** Type of the device. */
46300
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
46387
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
46301
46388
  /** Optional nickname to describe the device, settable through Seam */
46302
46389
  nickname?: string | undefined;
46303
46390
  /** 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. */
@@ -46608,6 +46695,11 @@ interface Routes {
46608
46695
  assa_abloy_vostio_metadata?: {
46609
46696
  encoder_name: string;
46610
46697
  } | undefined;
46698
+ tado_metadata?: {
46699
+ serial_number: string;
46700
+ device_name: string;
46701
+ device_type: string;
46702
+ } | undefined;
46611
46703
  }) & ({
46612
46704
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
46613
46705
  code_constraints?: (Array<{
@@ -46821,11 +46913,11 @@ interface Routes {
46821
46913
  /** ID of the Connect Webview by which to filter devices. */
46822
46914
  connect_webview_id?: string | undefined;
46823
46915
  /** Device type by which to filter devices. */
46824
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
46916
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
46825
46917
  /** Array of device types by which to filter devices. */
46826
- 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' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
46918
+ 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' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
46827
46919
  /** Manufacturer by which to filter devices. */
46828
- 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' | 'akiles') | undefined;
46920
+ 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' | 'akiles' | 'tado') | undefined;
46829
46921
  /** Array of device IDs by which to filter devices. */
46830
46922
  device_ids?: string[] | undefined;
46831
46923
  /** Numerical limit on the number of devices to return. */
@@ -46847,7 +46939,7 @@ interface Routes {
46847
46939
  /** Unique identifier for the device. */
46848
46940
  device_id: string;
46849
46941
  /** Type of the device. */
46850
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
46942
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
46851
46943
  /** Optional nickname to describe the device, settable through Seam */
46852
46944
  nickname?: string | undefined;
46853
46945
  /** 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. */
@@ -47158,6 +47250,11 @@ interface Routes {
47158
47250
  assa_abloy_vostio_metadata?: {
47159
47251
  encoder_name: string;
47160
47252
  } | undefined;
47253
+ tado_metadata?: {
47254
+ serial_number: string;
47255
+ device_name: string;
47256
+ device_type: string;
47257
+ } | undefined;
47161
47258
  }) & ({
47162
47259
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
47163
47260
  code_constraints?: (Array<{
@@ -47360,7 +47457,7 @@ interface Routes {
47360
47457
  /** Unique identifier for the device. */
47361
47458
  device_id: string;
47362
47459
  /** Type of the device. */
47363
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
47460
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
47364
47461
  /** Optional nickname to describe the device, settable through Seam */
47365
47462
  nickname?: string | undefined;
47366
47463
  /** 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. */
@@ -47671,6 +47768,11 @@ interface Routes {
47671
47768
  assa_abloy_vostio_metadata?: {
47672
47769
  encoder_name: string;
47673
47770
  } | undefined;
47771
+ tado_metadata?: {
47772
+ serial_number: string;
47773
+ device_name: string;
47774
+ device_type: string;
47775
+ } | undefined;
47674
47776
  }) & ({
47675
47777
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
47676
47778
  code_constraints?: (Array<{
@@ -47970,7 +48072,7 @@ interface Routes {
47970
48072
  guest_acs_entrance_ids?: string[] | undefined;
47971
48073
  common_acs_entrance_ids?: string[] | undefined;
47972
48074
  } | undefined;
47973
- };
48075
+ } | null;
47974
48076
  /** Matching acs_credential currently encoded on this card. */
47975
48077
  acs_credential_on_seam: ({
47976
48078
  /** ID of the credential. */
@@ -48146,7 +48248,7 @@ interface Routes {
48146
48248
  is_managed: false;
48147
48249
  }) | null;
48148
48250
  warnings: Array<{
48149
- warning_code: 'acs_credential_on_encoder_out_of_sync';
48251
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
48150
48252
  warning_message: string;
48151
48253
  }>;
48152
48254
  };
@@ -48843,7 +48945,7 @@ interface Routes {
48843
48945
  guest_acs_entrance_ids?: string[] | undefined;
48844
48946
  common_acs_entrance_ids?: string[] | undefined;
48845
48947
  } | undefined;
48846
- };
48948
+ } | null;
48847
48949
  /** Matching acs_credential currently encoded on this card. */
48848
48950
  acs_credential_on_seam: ({
48849
48951
  /** ID of the credential. */
@@ -49019,7 +49121,7 @@ interface Routes {
49019
49121
  is_managed: false;
49020
49122
  }) | null;
49021
49123
  warnings: Array<{
49022
- warning_code: 'acs_credential_on_encoder_out_of_sync';
49124
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
49023
49125
  warning_message: string;
49024
49126
  }>;
49025
49127
  };
@@ -49664,11 +49766,11 @@ interface Routes {
49664
49766
  /** ID of the Connect Webview by which to filter devices. */
49665
49767
  connect_webview_id?: string | undefined;
49666
49768
  /** Device type by which to filter devices. */
49667
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
49769
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
49668
49770
  /** Array of device types by which to filter devices. */
49669
- 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' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
49771
+ 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' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
49670
49772
  /** Manufacturer by which to filter devices. */
49671
- 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' | 'akiles') | undefined;
49773
+ 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' | 'akiles' | 'tado') | undefined;
49672
49774
  /** Array of device IDs by which to filter devices. */
49673
49775
  device_ids?: string[] | undefined;
49674
49776
  /** Numerical limit on the number of devices to return. */
@@ -49690,7 +49792,7 @@ interface Routes {
49690
49792
  /** Unique identifier for the device. */
49691
49793
  device_id: string;
49692
49794
  /** Type of the device. */
49693
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
49795
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
49694
49796
  /** Optional nickname to describe the device, settable through Seam */
49695
49797
  nickname?: string | undefined;
49696
49798
  /** 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. */
@@ -50001,6 +50103,11 @@ interface Routes {
50001
50103
  assa_abloy_vostio_metadata?: {
50002
50104
  encoder_name: string;
50003
50105
  } | undefined;
50106
+ tado_metadata?: {
50107
+ serial_number: string;
50108
+ device_name: string;
50109
+ device_type: string;
50110
+ } | undefined;
50004
50111
  }) & ({
50005
50112
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
50006
50113
  code_constraints?: (Array<{
@@ -50203,7 +50310,7 @@ interface Routes {
50203
50310
  /** Unique identifier for the device. */
50204
50311
  device_id: string;
50205
50312
  /** Type of the device. */
50206
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
50313
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
50207
50314
  /** Optional nickname to describe the device, settable through Seam */
50208
50315
  nickname?: string | undefined;
50209
50316
  /** 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. */
@@ -50514,6 +50621,11 @@ interface Routes {
50514
50621
  assa_abloy_vostio_metadata?: {
50515
50622
  encoder_name: string;
50516
50623
  } | undefined;
50624
+ tado_metadata?: {
50625
+ serial_number: string;
50626
+ device_name: string;
50627
+ device_type: string;
50628
+ } | undefined;
50517
50629
  }) & ({
50518
50630
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
50519
50631
  code_constraints?: (Array<{
@@ -50818,7 +50930,7 @@ interface Routes {
50818
50930
  guest_acs_entrance_ids?: string[] | undefined;
50819
50931
  common_acs_entrance_ids?: string[] | undefined;
50820
50932
  } | undefined;
50821
- };
50933
+ } | null;
50822
50934
  /** Matching acs_credential currently encoded on this card. */
50823
50935
  acs_credential_on_seam: ({
50824
50936
  /** ID of the credential. */
@@ -50994,7 +51106,7 @@ interface Routes {
50994
51106
  is_managed: false;
50995
51107
  }) | null;
50996
51108
  warnings: Array<{
50997
- warning_code: 'acs_credential_on_encoder_out_of_sync';
51109
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
50998
51110
  warning_message: string;
50999
51111
  }>;
51000
51112
  };
@@ -51701,7 +51813,7 @@ interface Routes {
51701
51813
  guest_acs_entrance_ids?: string[] | undefined;
51702
51814
  common_acs_entrance_ids?: string[] | undefined;
51703
51815
  } | undefined;
51704
- };
51816
+ } | null;
51705
51817
  /** Matching acs_credential currently encoded on this card. */
51706
51818
  acs_credential_on_seam: ({
51707
51819
  /** ID of the credential. */
@@ -51877,7 +51989,7 @@ interface Routes {
51877
51989
  is_managed: false;
51878
51990
  }) | null;
51879
51991
  warnings: Array<{
51880
- warning_code: 'acs_credential_on_encoder_out_of_sync';
51992
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
51881
51993
  warning_message: string;
51882
51994
  }>;
51883
51995
  };
@@ -52623,7 +52735,7 @@ interface Routes {
52623
52735
  guest_acs_entrance_ids?: string[] | undefined;
52624
52736
  common_acs_entrance_ids?: string[] | undefined;
52625
52737
  } | undefined;
52626
- };
52738
+ } | null;
52627
52739
  /** Matching acs_credential currently encoded on this card. */
52628
52740
  acs_credential_on_seam: ({
52629
52741
  /** ID of the credential. */
@@ -52799,7 +52911,7 @@ interface Routes {
52799
52911
  is_managed: false;
52800
52912
  }) | null;
52801
52913
  warnings: Array<{
52802
- warning_code: 'acs_credential_on_encoder_out_of_sync';
52914
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
52803
52915
  warning_message: string;
52804
52916
  }>;
52805
52917
  };
@@ -53680,7 +53792,7 @@ interface Routes {
53680
53792
  guest_acs_entrance_ids?: string[] | undefined;
53681
53793
  common_acs_entrance_ids?: string[] | undefined;
53682
53794
  } | undefined;
53683
- };
53795
+ } | null;
53684
53796
  /** Matching acs_credential currently encoded on this card. */
53685
53797
  acs_credential_on_seam: ({
53686
53798
  /** ID of the credential. */
@@ -53856,7 +53968,7 @@ interface Routes {
53856
53968
  is_managed: false;
53857
53969
  }) | null;
53858
53970
  warnings: Array<{
53859
- warning_code: 'acs_credential_on_encoder_out_of_sync';
53971
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
53860
53972
  warning_message: string;
53861
53973
  }>;
53862
53974
  };
@@ -54559,7 +54671,7 @@ interface Routes {
54559
54671
  guest_acs_entrance_ids?: string[] | undefined;
54560
54672
  common_acs_entrance_ids?: string[] | undefined;
54561
54673
  } | undefined;
54562
- };
54674
+ } | null;
54563
54675
  /** Matching acs_credential currently encoded on this card. */
54564
54676
  acs_credential_on_seam: ({
54565
54677
  /** ID of the credential. */
@@ -54735,7 +54847,7 @@ interface Routes {
54735
54847
  is_managed: false;
54736
54848
  }) | null;
54737
54849
  warnings: Array<{
54738
- warning_code: 'acs_credential_on_encoder_out_of_sync';
54850
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
54739
54851
  warning_message: string;
54740
54852
  }>;
54741
54853
  };
@@ -55393,7 +55505,7 @@ interface Routes {
55393
55505
  /** Unique identifier for the device. */
55394
55506
  device_id: string;
55395
55507
  /** Type of the device. */
55396
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
55508
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
55397
55509
  /** Optional nickname to describe the device, settable through Seam */
55398
55510
  nickname?: string | undefined;
55399
55511
  /** 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. */
@@ -55704,6 +55816,11 @@ interface Routes {
55704
55816
  assa_abloy_vostio_metadata?: {
55705
55817
  encoder_name: string;
55706
55818
  } | undefined;
55819
+ tado_metadata?: {
55820
+ serial_number: string;
55821
+ device_name: string;
55822
+ device_type: string;
55823
+ } | undefined;
55707
55824
  }) & ({
55708
55825
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
55709
55826
  code_constraints?: (Array<{
@@ -56009,7 +56126,7 @@ interface Routes {
56009
56126
  guest_acs_entrance_ids?: string[] | undefined;
56010
56127
  common_acs_entrance_ids?: string[] | undefined;
56011
56128
  } | undefined;
56012
- };
56129
+ } | null;
56013
56130
  /** Matching acs_credential currently encoded on this card. */
56014
56131
  acs_credential_on_seam: ({
56015
56132
  /** ID of the credential. */
@@ -56185,7 +56302,7 @@ interface Routes {
56185
56302
  is_managed: false;
56186
56303
  }) | null;
56187
56304
  warnings: Array<{
56188
- warning_code: 'acs_credential_on_encoder_out_of_sync';
56305
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
56189
56306
  warning_message: string;
56190
56307
  }>;
56191
56308
  };
@@ -56892,7 +57009,7 @@ interface Routes {
56892
57009
  guest_acs_entrance_ids?: string[] | undefined;
56893
57010
  common_acs_entrance_ids?: string[] | undefined;
56894
57011
  } | undefined;
56895
- };
57012
+ } | null;
56896
57013
  /** Matching acs_credential currently encoded on this card. */
56897
57014
  acs_credential_on_seam: ({
56898
57015
  /** ID of the credential. */
@@ -57068,7 +57185,7 @@ interface Routes {
57068
57185
  is_managed: false;
57069
57186
  }) | null;
57070
57187
  warnings: Array<{
57071
- warning_code: 'acs_credential_on_encoder_out_of_sync';
57188
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
57072
57189
  warning_message: string;
57073
57190
  }>;
57074
57191
  };
@@ -57679,11 +57796,11 @@ interface Routes {
57679
57796
  /** ID of the Connect Webview by which to filter devices. */
57680
57797
  connect_webview_id?: string | undefined;
57681
57798
  /** Device type by which to filter devices. */
57682
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
57799
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
57683
57800
  /** Array of device types by which to filter devices. */
57684
- 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' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
57801
+ 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' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
57685
57802
  /** Manufacturer by which to filter devices. */
57686
- 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' | 'akiles') | undefined;
57803
+ 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' | 'akiles' | 'tado') | undefined;
57687
57804
  /** Array of device IDs by which to filter devices. */
57688
57805
  device_ids?: string[] | undefined;
57689
57806
  /** Numerical limit on the number of devices to return. */
@@ -57705,7 +57822,7 @@ interface Routes {
57705
57822
  /** Unique identifier for the device. */
57706
57823
  device_id: string;
57707
57824
  /** Type of the device. */
57708
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
57825
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
57709
57826
  /** Optional nickname to describe the device, settable through Seam */
57710
57827
  nickname?: string | undefined;
57711
57828
  /** 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. */
@@ -58016,6 +58133,11 @@ interface Routes {
58016
58133
  assa_abloy_vostio_metadata?: {
58017
58134
  encoder_name: string;
58018
58135
  } | undefined;
58136
+ tado_metadata?: {
58137
+ serial_number: string;
58138
+ device_name: string;
58139
+ device_type: string;
58140
+ } | undefined;
58019
58141
  }) & ({
58020
58142
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
58021
58143
  code_constraints?: (Array<{
@@ -58218,7 +58340,7 @@ interface Routes {
58218
58340
  /** Unique identifier for the device. */
58219
58341
  device_id: string;
58220
58342
  /** Type of the device. */
58221
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
58343
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
58222
58344
  /** Optional nickname to describe the device, settable through Seam */
58223
58345
  nickname?: string | undefined;
58224
58346
  /** 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. */
@@ -58529,6 +58651,11 @@ interface Routes {
58529
58651
  assa_abloy_vostio_metadata?: {
58530
58652
  encoder_name: string;
58531
58653
  } | undefined;
58654
+ tado_metadata?: {
58655
+ serial_number: string;
58656
+ device_name: string;
58657
+ device_type: string;
58658
+ } | undefined;
58532
58659
  }) & ({
58533
58660
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
58534
58661
  code_constraints?: (Array<{
@@ -58830,7 +58957,7 @@ interface Routes {
58830
58957
  guest_acs_entrance_ids?: string[] | undefined;
58831
58958
  common_acs_entrance_ids?: string[] | undefined;
58832
58959
  } | undefined;
58833
- };
58960
+ } | null;
58834
58961
  /** Matching acs_credential currently encoded on this card. */
58835
58962
  acs_credential_on_seam: ({
58836
58963
  /** ID of the credential. */
@@ -59006,7 +59133,7 @@ interface Routes {
59006
59133
  is_managed: false;
59007
59134
  }) | null;
59008
59135
  warnings: Array<{
59009
- warning_code: 'acs_credential_on_encoder_out_of_sync';
59136
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
59010
59137
  warning_message: string;
59011
59138
  }>;
59012
59139
  };
@@ -59878,7 +60005,7 @@ interface Routes {
59878
60005
  guest_acs_entrance_ids?: string[] | undefined;
59879
60006
  common_acs_entrance_ids?: string[] | undefined;
59880
60007
  } | undefined;
59881
- };
60008
+ } | null;
59882
60009
  /** Matching acs_credential currently encoded on this card. */
59883
60010
  acs_credential_on_seam: ({
59884
60011
  /** ID of the credential. */
@@ -60054,7 +60181,7 @@ interface Routes {
60054
60181
  is_managed: false;
60055
60182
  }) | null;
60056
60183
  warnings: Array<{
60057
- warning_code: 'acs_credential_on_encoder_out_of_sync';
60184
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
60058
60185
  warning_message: string;
60059
60186
  }>;
60060
60187
  };
@@ -60780,7 +60907,7 @@ interface Routes {
60780
60907
  guest_acs_entrance_ids?: string[] | undefined;
60781
60908
  common_acs_entrance_ids?: string[] | undefined;
60782
60909
  } | undefined;
60783
- };
60910
+ } | null;
60784
60911
  /** Matching acs_credential currently encoded on this card. */
60785
60912
  acs_credential_on_seam: ({
60786
60913
  /** ID of the credential. */
@@ -60956,7 +61083,7 @@ interface Routes {
60956
61083
  is_managed: false;
60957
61084
  }) | null;
60958
61085
  warnings: Array<{
60959
- warning_code: 'acs_credential_on_encoder_out_of_sync';
61086
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
60960
61087
  warning_message: string;
60961
61088
  }>;
60962
61089
  };
@@ -61848,7 +61975,7 @@ interface Routes {
61848
61975
  /** Unique identifier for the device. */
61849
61976
  device_id: string;
61850
61977
  /** Type of the device. */
61851
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
61978
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
61852
61979
  /** Optional nickname to describe the device, settable through Seam */
61853
61980
  nickname?: string | undefined;
61854
61981
  /** 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. */
@@ -62159,6 +62286,11 @@ interface Routes {
62159
62286
  assa_abloy_vostio_metadata?: {
62160
62287
  encoder_name: string;
62161
62288
  } | undefined;
62289
+ tado_metadata?: {
62290
+ serial_number: string;
62291
+ device_name: string;
62292
+ device_type: string;
62293
+ } | undefined;
62162
62294
  }) & ({
62163
62295
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
62164
62296
  code_constraints?: (Array<{
@@ -62363,7 +62495,7 @@ interface Routes {
62363
62495
  /** Unique identifier for the device. */
62364
62496
  device_id: string;
62365
62497
  /** Type of the device. */
62366
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
62498
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
62367
62499
  /** Optional nickname to describe the device, settable through Seam */
62368
62500
  nickname?: string | undefined;
62369
62501
  /** 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. */
@@ -62674,6 +62806,11 @@ interface Routes {
62674
62806
  assa_abloy_vostio_metadata?: {
62675
62807
  encoder_name: string;
62676
62808
  } | undefined;
62809
+ tado_metadata?: {
62810
+ serial_number: string;
62811
+ device_name: string;
62812
+ device_type: string;
62813
+ } | undefined;
62677
62814
  }) & ({
62678
62815
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
62679
62816
  code_constraints?: (Array<{
@@ -63379,7 +63516,7 @@ interface Routes {
63379
63516
  guest_acs_entrance_ids?: string[] | undefined;
63380
63517
  common_acs_entrance_ids?: string[] | undefined;
63381
63518
  } | undefined;
63382
- };
63519
+ } | null;
63383
63520
  /** Matching acs_credential currently encoded on this card. */
63384
63521
  acs_credential_on_seam: ({
63385
63522
  /** ID of the credential. */
@@ -63555,7 +63692,7 @@ interface Routes {
63555
63692
  is_managed: false;
63556
63693
  }) | null;
63557
63694
  warnings: Array<{
63558
- warning_code: 'acs_credential_on_encoder_out_of_sync';
63695
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
63559
63696
  warning_message: string;
63560
63697
  }>;
63561
63698
  };