@seamapi/types 1.306.0 → 1.308.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 (38) hide show
  1. package/dist/connect.cjs +124 -53
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +311 -150
  4. package/lib/seam/connect/models/acs/acs-access-group.d.ts +13 -13
  5. package/lib/seam/connect/models/acs/acs-access-group.js +1 -1
  6. package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-system.d.ts +34 -13
  8. package/lib/seam/connect/models/acs/acs-system.js +11 -4
  9. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  10. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +13 -13
  11. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +13 -13
  12. package/lib/seam/connect/models/action-attempts/scan-credential.js +7 -2
  13. package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
  14. package/lib/seam/connect/models/devices/device-metadata.d.ts +18 -0
  15. package/lib/seam/connect/models/devices/device-metadata.js +4 -0
  16. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  17. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  18. package/lib/seam/connect/models/devices/device-provider.js +2 -0
  19. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  20. package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
  21. package/lib/seam/connect/models/devices/device-type.js +1 -0
  22. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  23. package/lib/seam/connect/models/devices/device.d.ts +29 -3
  24. package/lib/seam/connect/models/devices/phone.d.ts +19 -1
  25. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -3
  26. package/lib/seam/connect/openapi.d.ts +32 -17
  27. package/lib/seam/connect/openapi.js +80 -23
  28. package/lib/seam/connect/openapi.js.map +1 -1
  29. package/lib/seam/connect/route-types.d.ts +170 -90
  30. package/package.json +1 -1
  31. package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -1
  32. package/src/lib/seam/connect/models/acs/acs-system.ts +15 -5
  33. package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +7 -4
  34. package/src/lib/seam/connect/models/devices/device-metadata.ts +5 -0
  35. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
  36. package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
  37. package/src/lib/seam/connect/openapi.ts +86 -26
  38. package/src/lib/seam/connect/route-types.ts +282 -82
@@ -113,7 +113,7 @@ export interface Routes {
113
113
  guest_acs_entrance_ids?: string[] | undefined;
114
114
  common_acs_entrance_ids?: string[] | undefined;
115
115
  } | undefined;
116
- };
116
+ } | null;
117
117
  /** Matching acs_credential currently encoded on this card. */
118
118
  acs_credential_on_seam: ({
119
119
  /** ID of the credential. */
@@ -289,7 +289,7 @@ export interface Routes {
289
289
  is_managed: false;
290
290
  }) | null;
291
291
  warnings: Array<{
292
- warning_code: 'acs_credential_on_encoder_out_of_sync';
292
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
293
293
  warning_message: string;
294
294
  }>;
295
295
  };
@@ -1136,7 +1136,7 @@ export interface Routes {
1136
1136
  guest_acs_entrance_ids?: string[] | undefined;
1137
1137
  common_acs_entrance_ids?: string[] | undefined;
1138
1138
  } | undefined;
1139
- };
1139
+ } | null;
1140
1140
  /** Matching acs_credential currently encoded on this card. */
1141
1141
  acs_credential_on_seam: ({
1142
1142
  /** ID of the credential. */
@@ -1312,7 +1312,7 @@ export interface Routes {
1312
1312
  is_managed: false;
1313
1313
  }) | null;
1314
1314
  warnings: Array<{
1315
- warning_code: 'acs_credential_on_encoder_out_of_sync';
1315
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
1316
1316
  warning_message: string;
1317
1317
  }>;
1318
1318
  };
@@ -2377,7 +2377,7 @@ export interface Routes {
2377
2377
  guest_acs_entrance_ids?: string[] | undefined;
2378
2378
  common_acs_entrance_ids?: string[] | undefined;
2379
2379
  } | undefined;
2380
- };
2380
+ } | null;
2381
2381
  /** Matching acs_credential currently encoded on this card. */
2382
2382
  acs_credential_on_seam: ({
2383
2383
  /** ID of the credential. */
@@ -2553,7 +2553,7 @@ export interface Routes {
2553
2553
  is_managed: false;
2554
2554
  }) | null;
2555
2555
  warnings: Array<{
2556
- warning_code: 'acs_credential_on_encoder_out_of_sync';
2556
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
2557
2557
  warning_message: string;
2558
2558
  }>;
2559
2559
  };
@@ -3387,7 +3387,7 @@ export interface Routes {
3387
3387
  guest_acs_entrance_ids?: string[] | undefined;
3388
3388
  common_acs_entrance_ids?: string[] | undefined;
3389
3389
  } | undefined;
3390
- };
3390
+ } | null;
3391
3391
  /** Matching acs_credential currently encoded on this card. */
3392
3392
  acs_credential_on_seam: ({
3393
3393
  /** ID of the credential. */
@@ -3563,7 +3563,7 @@ export interface Routes {
3563
3563
  is_managed: false;
3564
3564
  }) | null;
3565
3565
  warnings: Array<{
3566
- warning_code: 'acs_credential_on_encoder_out_of_sync';
3566
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
3567
3567
  warning_message: string;
3568
3568
  }>;
3569
3569
  };
@@ -4213,13 +4213,13 @@ export interface Routes {
4213
4213
  name: string;
4214
4214
  /**
4215
4215
  * @deprecated Use `external_type`. */
4216
- access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
4216
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
4217
4217
  /**
4218
4218
  * @deprecated Use `external_type_display_name`. */
4219
4219
  access_group_type_display_name: string;
4220
4220
  display_name: string;
4221
4221
  /** Brand-specific terminology for the access group type. */
4222
- external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
4222
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
4223
4223
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
4224
4224
  external_type_display_name: string;
4225
4225
  /** Date and time at which the access group was created. */
@@ -4252,13 +4252,13 @@ export interface Routes {
4252
4252
  name: string;
4253
4253
  /**
4254
4254
  * @deprecated Use `external_type`. */
4255
- access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
4255
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
4256
4256
  /**
4257
4257
  * @deprecated Use `external_type_display_name`. */
4258
4258
  access_group_type_display_name: string;
4259
4259
  display_name: string;
4260
4260
  /** Brand-specific terminology for the access group type. */
4261
- external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
4261
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
4262
4262
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
4263
4263
  external_type_display_name: string;
4264
4264
  /** Date and time at which the access group was created. */
@@ -4467,13 +4467,13 @@ export interface Routes {
4467
4467
  name: string;
4468
4468
  /**
4469
4469
  * @deprecated Use `external_type`. */
4470
- access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
4470
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
4471
4471
  /**
4472
4472
  * @deprecated Use `external_type_display_name`. */
4473
4473
  access_group_type_display_name: string;
4474
4474
  display_name: string;
4475
4475
  /** Brand-specific terminology for the access group type. */
4476
- external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
4476
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
4477
4477
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
4478
4478
  external_type_display_name: string;
4479
4479
  /** Date and time at which the access group was created. */
@@ -4506,13 +4506,13 @@ export interface Routes {
4506
4506
  name: string;
4507
4507
  /**
4508
4508
  * @deprecated Use `external_type`. */
4509
- access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
4509
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
4510
4510
  /**
4511
4511
  * @deprecated Use `external_type_display_name`. */
4512
4512
  access_group_type_display_name: string;
4513
4513
  display_name: string;
4514
4514
  /** Brand-specific terminology for the access group type. */
4515
- external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
4515
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
4516
4516
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
4517
4517
  external_type_display_name: string;
4518
4518
  /** Date and time at which the access group was created. */
@@ -5732,7 +5732,7 @@ export interface Routes {
5732
5732
  guest_acs_entrance_ids?: string[] | undefined;
5733
5733
  common_acs_entrance_ids?: string[] | undefined;
5734
5734
  } | undefined;
5735
- };
5735
+ } | null;
5736
5736
  /** Matching acs_credential currently encoded on this card. */
5737
5737
  acs_credential_on_seam: ({
5738
5738
  /** ID of the credential. */
@@ -5908,7 +5908,7 @@ export interface Routes {
5908
5908
  is_managed: false;
5909
5909
  }) | null;
5910
5910
  warnings: Array<{
5911
- warning_code: 'acs_credential_on_encoder_out_of_sync';
5911
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
5912
5912
  warning_message: string;
5913
5913
  }>;
5914
5914
  };
@@ -6649,7 +6649,7 @@ export interface Routes {
6649
6649
  guest_acs_entrance_ids?: string[] | undefined;
6650
6650
  common_acs_entrance_ids?: string[] | undefined;
6651
6651
  } | undefined;
6652
- };
6652
+ } | null;
6653
6653
  /** Matching acs_credential currently encoded on this card. */
6654
6654
  acs_credential_on_seam: ({
6655
6655
  /** ID of the credential. */
@@ -6825,7 +6825,7 @@ export interface Routes {
6825
6825
  is_managed: false;
6826
6826
  }) | null;
6827
6827
  warnings: Array<{
6828
- warning_code: 'acs_credential_on_encoder_out_of_sync';
6828
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
6829
6829
  warning_message: string;
6830
6830
  }>;
6831
6831
  };
@@ -7675,7 +7675,7 @@ export interface Routes {
7675
7675
  /** ID of the `acs_system`. */
7676
7676
  acs_system_id: string;
7677
7677
  /** Brand-specific terminology for the `acs_system` type. */
7678
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
7678
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
7679
7679
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
7680
7680
  external_type_display_name?: string | undefined;
7681
7681
  /** Indicates if the `acs_system` is a credential manager. */
@@ -7690,7 +7690,7 @@ export interface Routes {
7690
7690
  } | undefined;
7691
7691
  /**
7692
7692
  * @deprecated Use `external_type`. */
7693
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
7693
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
7694
7694
  /**
7695
7695
  * @deprecated Use `external_type_display_name`. */
7696
7696
  system_type_display_name?: string | undefined;
@@ -7762,6 +7762,13 @@ export interface Routes {
7762
7762
  message: string;
7763
7763
  /** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
7764
7764
  warning_code: 'salto_ks_subscription_limit_almost_reached';
7765
+ } | {
7766
+ /** Date and time at which Seam created the warning. */
7767
+ created_at: string;
7768
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
7769
+ message: string;
7770
+ /** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
7771
+ warning_code: 'time_zone_does_not_match_location';
7765
7772
  }>;
7766
7773
  /** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
7767
7774
  can_automate_enrollment?: boolean | undefined;
@@ -7791,7 +7798,7 @@ export interface Routes {
7791
7798
  /** ID of the `acs_system`. */
7792
7799
  acs_system_id: string;
7793
7800
  /** Brand-specific terminology for the `acs_system` type. */
7794
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
7801
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
7795
7802
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
7796
7803
  external_type_display_name?: string | undefined;
7797
7804
  /** Indicates if the `acs_system` is a credential manager. */
@@ -7806,7 +7813,7 @@ export interface Routes {
7806
7813
  } | undefined;
7807
7814
  /**
7808
7815
  * @deprecated Use `external_type`. */
7809
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
7816
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
7810
7817
  /**
7811
7818
  * @deprecated Use `external_type_display_name`. */
7812
7819
  system_type_display_name?: string | undefined;
@@ -7878,6 +7885,13 @@ export interface Routes {
7878
7885
  message: string;
7879
7886
  /** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
7880
7887
  warning_code: 'salto_ks_subscription_limit_almost_reached';
7888
+ } | {
7889
+ /** Date and time at which Seam created the warning. */
7890
+ created_at: string;
7891
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
7892
+ message: string;
7893
+ /** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
7894
+ warning_code: 'time_zone_does_not_match_location';
7881
7895
  }>;
7882
7896
  /** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
7883
7897
  can_automate_enrollment?: boolean | undefined;
@@ -7907,7 +7921,7 @@ export interface Routes {
7907
7921
  /** ID of the `acs_system`. */
7908
7922
  acs_system_id: string;
7909
7923
  /** Brand-specific terminology for the `acs_system` type. */
7910
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
7924
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
7911
7925
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
7912
7926
  external_type_display_name?: string | undefined;
7913
7927
  /** Indicates if the `acs_system` is a credential manager. */
@@ -7922,7 +7936,7 @@ export interface Routes {
7922
7936
  } | undefined;
7923
7937
  /**
7924
7938
  * @deprecated Use `external_type`. */
7925
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
7939
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
7926
7940
  /**
7927
7941
  * @deprecated Use `external_type_display_name`. */
7928
7942
  system_type_display_name?: string | undefined;
@@ -7994,6 +8008,13 @@ export interface Routes {
7994
8008
  message: string;
7995
8009
  /** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
7996
8010
  warning_code: 'salto_ks_subscription_limit_almost_reached';
8011
+ } | {
8012
+ /** Date and time at which Seam created the warning. */
8013
+ created_at: string;
8014
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
8015
+ message: string;
8016
+ /** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
8017
+ warning_code: 'time_zone_does_not_match_location';
7997
8018
  }>;
7998
8019
  /** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
7999
8020
  can_automate_enrollment?: boolean | undefined;
@@ -8814,7 +8835,7 @@ export interface Routes {
8814
8835
  guest_acs_entrance_ids?: string[] | undefined;
8815
8836
  common_acs_entrance_ids?: string[] | undefined;
8816
8837
  } | undefined;
8817
- };
8838
+ } | null;
8818
8839
  /** Matching acs_credential currently encoded on this card. */
8819
8840
  acs_credential_on_seam: ({
8820
8841
  /** ID of the credential. */
@@ -8990,7 +9011,7 @@ export interface Routes {
8990
9011
  is_managed: false;
8991
9012
  }) | null;
8992
9013
  warnings: Array<{
8993
- warning_code: 'acs_credential_on_encoder_out_of_sync';
9014
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
8994
9015
  warning_message: string;
8995
9016
  }>;
8996
9017
  };
@@ -9686,7 +9707,7 @@ export interface Routes {
9686
9707
  guest_acs_entrance_ids?: string[] | undefined;
9687
9708
  common_acs_entrance_ids?: string[] | undefined;
9688
9709
  } | undefined;
9689
- };
9710
+ } | null;
9690
9711
  /** Matching acs_credential currently encoded on this card. */
9691
9712
  acs_credential_on_seam: ({
9692
9713
  /** ID of the credential. */
@@ -9862,7 +9883,7 @@ export interface Routes {
9862
9883
  is_managed: false;
9863
9884
  }) | null;
9864
9885
  warnings: Array<{
9865
- warning_code: 'acs_credential_on_encoder_out_of_sync';
9886
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
9866
9887
  warning_message: string;
9867
9888
  }>;
9868
9889
  };
@@ -10622,7 +10643,7 @@ export interface Routes {
10622
10643
  device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
10623
10644
  custom_redirect_url?: string | undefined;
10624
10645
  custom_redirect_failure_url?: string | undefined;
10625
- accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
10646
+ accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
10626
10647
  provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
10627
10648
  custom_metadata?: Record<string, string | boolean | null> | undefined;
10628
10649
  automatically_manage_new_devices?: boolean;
@@ -10900,7 +10921,7 @@ export interface Routes {
10900
10921
  /** Unique identifier for the device. */
10901
10922
  device_id: string;
10902
10923
  /** Type of the device. */
10903
- 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');
10924
+ 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');
10904
10925
  /** Optional nickname to describe the device, settable through Seam */
10905
10926
  nickname?: string | undefined;
10906
10927
  /** 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. */
@@ -11211,6 +11232,10 @@ export interface Routes {
11211
11232
  assa_abloy_vostio_metadata?: {
11212
11233
  encoder_name: string;
11213
11234
  } | undefined;
11235
+ tado_metadata?: {
11236
+ serial_no: string;
11237
+ device_type: string;
11238
+ } | undefined;
11214
11239
  }) & ({
11215
11240
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
11216
11241
  code_constraints?: (Array<{
@@ -11424,11 +11449,11 @@ export interface Routes {
11424
11449
  /** ID of the Connect Webview by which to filter devices. */
11425
11450
  connect_webview_id?: string | undefined;
11426
11451
  /** Device type by which to filter devices. */
11427
- 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;
11452
+ 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;
11428
11453
  /** Array of device types by which to filter devices. */
11429
- 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;
11454
+ 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;
11430
11455
  /** Manufacturer by which to filter devices. */
11431
- 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;
11456
+ 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;
11432
11457
  /** Array of device IDs by which to filter devices. */
11433
11458
  device_ids?: string[] | undefined;
11434
11459
  /** Numerical limit on the number of devices to return. */
@@ -11450,7 +11475,7 @@ export interface Routes {
11450
11475
  /** Unique identifier for the device. */
11451
11476
  device_id: string;
11452
11477
  /** Type of the device. */
11453
- 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');
11478
+ 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');
11454
11479
  /** Optional nickname to describe the device, settable through Seam */
11455
11480
  nickname?: string | undefined;
11456
11481
  /** 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. */
@@ -11761,6 +11786,10 @@ export interface Routes {
11761
11786
  assa_abloy_vostio_metadata?: {
11762
11787
  encoder_name: string;
11763
11788
  } | undefined;
11789
+ tado_metadata?: {
11790
+ serial_no: string;
11791
+ device_type: string;
11792
+ } | undefined;
11764
11793
  }) & ({
11765
11794
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
11766
11795
  code_constraints?: (Array<{
@@ -11972,7 +12001,7 @@ export interface Routes {
11972
12001
  formData: {};
11973
12002
  jsonResponse: {
11974
12003
  device_providers: Array<{
11975
- device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado';
12004
+ device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space';
11976
12005
  display_name: string;
11977
12006
  image_url: string;
11978
12007
  provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
@@ -12038,7 +12067,7 @@ export interface Routes {
12038
12067
  /** Unique identifier for the device. */
12039
12068
  device_id: string;
12040
12069
  /** Type of the device. */
12041
- 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');
12070
+ 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');
12042
12071
  /** Unique identifier for the account associated with the device. */
12043
12072
  connected_account_id: string;
12044
12073
  /** Location information for the device. */
@@ -12147,11 +12176,11 @@ export interface Routes {
12147
12176
  /** ID of the Connect Webview by which to filter devices. */
12148
12177
  connect_webview_id?: string | undefined;
12149
12178
  /** Device type by which to filter devices. */
12150
- 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;
12179
+ 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;
12151
12180
  /** Array of device types by which to filter devices. */
12152
- 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;
12181
+ 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;
12153
12182
  /** Manufacturer by which to filter devices. */
12154
- 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;
12183
+ 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;
12155
12184
  /** Array of device IDs by which to filter devices. */
12156
12185
  device_ids?: string[] | undefined;
12157
12186
  /** Numerical limit on the number of devices to return. */
@@ -12173,7 +12202,7 @@ export interface Routes {
12173
12202
  /** Unique identifier for the device. */
12174
12203
  device_id: string;
12175
12204
  /** Type of the device. */
12176
- 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');
12205
+ 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');
12177
12206
  /** Unique identifier for the account associated with the device. */
12178
12207
  connected_account_id: string;
12179
12208
  /** Location information for the device. */
@@ -12403,7 +12432,7 @@ export interface Routes {
12403
12432
  /** Unique identifier for the device. */
12404
12433
  device_id: string;
12405
12434
  /** Type of the device. */
12406
- 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');
12435
+ 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');
12407
12436
  /** Optional nickname to describe the device, settable through Seam */
12408
12437
  nickname?: string | undefined;
12409
12438
  /** 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. */
@@ -12714,6 +12743,10 @@ export interface Routes {
12714
12743
  assa_abloy_vostio_metadata?: {
12715
12744
  encoder_name: string;
12716
12745
  } | undefined;
12746
+ tado_metadata?: {
12747
+ serial_no: string;
12748
+ device_type: string;
12749
+ } | undefined;
12717
12750
  }) & ({
12718
12751
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
12719
12752
  code_constraints?: (Array<{
@@ -12916,7 +12949,7 @@ export interface Routes {
12916
12949
  /** Unique identifier for the device. */
12917
12950
  device_id: string;
12918
12951
  /** Type of the device. */
12919
- 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');
12952
+ 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');
12920
12953
  /** Optional nickname to describe the device, settable through Seam */
12921
12954
  nickname?: string | undefined;
12922
12955
  /** 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. */
@@ -13227,6 +13260,10 @@ export interface Routes {
13227
13260
  assa_abloy_vostio_metadata?: {
13228
13261
  encoder_name: string;
13229
13262
  } | undefined;
13263
+ tado_metadata?: {
13264
+ serial_no: string;
13265
+ device_type: string;
13266
+ } | undefined;
13230
13267
  }) & ({
13231
13268
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
13232
13269
  code_constraints?: (Array<{
@@ -13440,11 +13477,11 @@ export interface Routes {
13440
13477
  /** ID of the Connect Webview by which to filter devices. */
13441
13478
  connect_webview_id?: string | undefined;
13442
13479
  /** Device type by which to filter devices. */
13443
- 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;
13480
+ 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;
13444
13481
  /** Array of device types by which to filter devices. */
13445
- 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;
13482
+ 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;
13446
13483
  /** Manufacturer by which to filter devices. */
13447
- 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;
13484
+ 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;
13448
13485
  /** Array of device IDs by which to filter devices. */
13449
13486
  device_ids?: string[] | undefined;
13450
13487
  /** Numerical limit on the number of devices to return. */
@@ -13466,7 +13503,7 @@ export interface Routes {
13466
13503
  /** Unique identifier for the device. */
13467
13504
  device_id: string;
13468
13505
  /** Type of the device. */
13469
- 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');
13506
+ 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');
13470
13507
  /** Optional nickname to describe the device, settable through Seam */
13471
13508
  nickname?: string | undefined;
13472
13509
  /** 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. */
@@ -13777,6 +13814,10 @@ export interface Routes {
13777
13814
  assa_abloy_vostio_metadata?: {
13778
13815
  encoder_name: string;
13779
13816
  } | undefined;
13817
+ tado_metadata?: {
13818
+ serial_no: string;
13819
+ device_type: string;
13820
+ } | undefined;
13780
13821
  }) & ({
13781
13822
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
13782
13823
  code_constraints?: (Array<{
@@ -13979,7 +14020,7 @@ export interface Routes {
13979
14020
  /** Unique identifier for the device. */
13980
14021
  device_id: string;
13981
14022
  /** Type of the device. */
13982
- 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');
14023
+ 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');
13983
14024
  /** Optional nickname to describe the device, settable through Seam */
13984
14025
  nickname?: string | undefined;
13985
14026
  /** 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. */
@@ -14290,6 +14331,10 @@ export interface Routes {
14290
14331
  assa_abloy_vostio_metadata?: {
14291
14332
  encoder_name: string;
14292
14333
  } | undefined;
14334
+ tado_metadata?: {
14335
+ serial_no: string;
14336
+ device_type: string;
14337
+ } | undefined;
14293
14338
  }) & ({
14294
14339
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
14295
14340
  code_constraints?: (Array<{
@@ -14589,7 +14634,7 @@ export interface Routes {
14589
14634
  guest_acs_entrance_ids?: string[] | undefined;
14590
14635
  common_acs_entrance_ids?: string[] | undefined;
14591
14636
  } | undefined;
14592
- };
14637
+ } | null;
14593
14638
  /** Matching acs_credential currently encoded on this card. */
14594
14639
  acs_credential_on_seam: ({
14595
14640
  /** ID of the credential. */
@@ -14765,7 +14810,7 @@ export interface Routes {
14765
14810
  is_managed: false;
14766
14811
  }) | null;
14767
14812
  warnings: Array<{
14768
- warning_code: 'acs_credential_on_encoder_out_of_sync';
14813
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
14769
14814
  warning_message: string;
14770
14815
  }>;
14771
14816
  };
@@ -15462,7 +15507,7 @@ export interface Routes {
15462
15507
  guest_acs_entrance_ids?: string[] | undefined;
15463
15508
  common_acs_entrance_ids?: string[] | undefined;
15464
15509
  } | undefined;
15465
- };
15510
+ } | null;
15466
15511
  /** Matching acs_credential currently encoded on this card. */
15467
15512
  acs_credential_on_seam: ({
15468
15513
  /** ID of the credential. */
@@ -15638,7 +15683,7 @@ export interface Routes {
15638
15683
  is_managed: false;
15639
15684
  }) | null;
15640
15685
  warnings: Array<{
15641
- warning_code: 'acs_credential_on_encoder_out_of_sync';
15686
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
15642
15687
  warning_message: string;
15643
15688
  }>;
15644
15689
  };
@@ -16283,11 +16328,11 @@ export interface Routes {
16283
16328
  /** ID of the Connect Webview by which to filter devices. */
16284
16329
  connect_webview_id?: string | undefined;
16285
16330
  /** Device type by which to filter devices. */
16286
- 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;
16331
+ 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;
16287
16332
  /** Array of device types by which to filter devices. */
16288
- 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;
16333
+ 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;
16289
16334
  /** Manufacturer by which to filter devices. */
16290
- 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;
16335
+ 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;
16291
16336
  /** Array of device IDs by which to filter devices. */
16292
16337
  device_ids?: string[] | undefined;
16293
16338
  /** Numerical limit on the number of devices to return. */
@@ -16309,7 +16354,7 @@ export interface Routes {
16309
16354
  /** Unique identifier for the device. */
16310
16355
  device_id: string;
16311
16356
  /** Type of the device. */
16312
- 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');
16357
+ 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');
16313
16358
  /** Optional nickname to describe the device, settable through Seam */
16314
16359
  nickname?: string | undefined;
16315
16360
  /** 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. */
@@ -16620,6 +16665,10 @@ export interface Routes {
16620
16665
  assa_abloy_vostio_metadata?: {
16621
16666
  encoder_name: string;
16622
16667
  } | undefined;
16668
+ tado_metadata?: {
16669
+ serial_no: string;
16670
+ device_type: string;
16671
+ } | undefined;
16623
16672
  }) & ({
16624
16673
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
16625
16674
  code_constraints?: (Array<{
@@ -16822,7 +16871,7 @@ export interface Routes {
16822
16871
  /** Unique identifier for the device. */
16823
16872
  device_id: string;
16824
16873
  /** Type of the device. */
16825
- 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');
16874
+ 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');
16826
16875
  /** Optional nickname to describe the device, settable through Seam */
16827
16876
  nickname?: string | undefined;
16828
16877
  /** 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. */
@@ -17133,6 +17182,10 @@ export interface Routes {
17133
17182
  assa_abloy_vostio_metadata?: {
17134
17183
  encoder_name: string;
17135
17184
  } | undefined;
17185
+ tado_metadata?: {
17186
+ serial_no: string;
17187
+ device_type: string;
17188
+ } | undefined;
17136
17189
  }) & ({
17137
17190
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
17138
17191
  code_constraints?: (Array<{
@@ -17437,7 +17490,7 @@ export interface Routes {
17437
17490
  guest_acs_entrance_ids?: string[] | undefined;
17438
17491
  common_acs_entrance_ids?: string[] | undefined;
17439
17492
  } | undefined;
17440
- };
17493
+ } | null;
17441
17494
  /** Matching acs_credential currently encoded on this card. */
17442
17495
  acs_credential_on_seam: ({
17443
17496
  /** ID of the credential. */
@@ -17613,7 +17666,7 @@ export interface Routes {
17613
17666
  is_managed: false;
17614
17667
  }) | null;
17615
17668
  warnings: Array<{
17616
- warning_code: 'acs_credential_on_encoder_out_of_sync';
17669
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
17617
17670
  warning_message: string;
17618
17671
  }>;
17619
17672
  };
@@ -18320,7 +18373,7 @@ export interface Routes {
18320
18373
  guest_acs_entrance_ids?: string[] | undefined;
18321
18374
  common_acs_entrance_ids?: string[] | undefined;
18322
18375
  } | undefined;
18323
- };
18376
+ } | null;
18324
18377
  /** Matching acs_credential currently encoded on this card. */
18325
18378
  acs_credential_on_seam: ({
18326
18379
  /** ID of the credential. */
@@ -18496,7 +18549,7 @@ export interface Routes {
18496
18549
  is_managed: false;
18497
18550
  }) | null;
18498
18551
  warnings: Array<{
18499
- warning_code: 'acs_credential_on_encoder_out_of_sync';
18552
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
18500
18553
  warning_message: string;
18501
18554
  }>;
18502
18555
  };
@@ -19242,7 +19295,7 @@ export interface Routes {
19242
19295
  guest_acs_entrance_ids?: string[] | undefined;
19243
19296
  common_acs_entrance_ids?: string[] | undefined;
19244
19297
  } | undefined;
19245
- };
19298
+ } | null;
19246
19299
  /** Matching acs_credential currently encoded on this card. */
19247
19300
  acs_credential_on_seam: ({
19248
19301
  /** ID of the credential. */
@@ -19418,7 +19471,7 @@ export interface Routes {
19418
19471
  is_managed: false;
19419
19472
  }) | null;
19420
19473
  warnings: Array<{
19421
- warning_code: 'acs_credential_on_encoder_out_of_sync';
19474
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
19422
19475
  warning_message: string;
19423
19476
  }>;
19424
19477
  };
@@ -20299,7 +20352,7 @@ export interface Routes {
20299
20352
  guest_acs_entrance_ids?: string[] | undefined;
20300
20353
  common_acs_entrance_ids?: string[] | undefined;
20301
20354
  } | undefined;
20302
- };
20355
+ } | null;
20303
20356
  /** Matching acs_credential currently encoded on this card. */
20304
20357
  acs_credential_on_seam: ({
20305
20358
  /** ID of the credential. */
@@ -20475,7 +20528,7 @@ export interface Routes {
20475
20528
  is_managed: false;
20476
20529
  }) | null;
20477
20530
  warnings: Array<{
20478
- warning_code: 'acs_credential_on_encoder_out_of_sync';
20531
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
20479
20532
  warning_message: string;
20480
20533
  }>;
20481
20534
  };
@@ -21178,7 +21231,7 @@ export interface Routes {
21178
21231
  guest_acs_entrance_ids?: string[] | undefined;
21179
21232
  common_acs_entrance_ids?: string[] | undefined;
21180
21233
  } | undefined;
21181
- };
21234
+ } | null;
21182
21235
  /** Matching acs_credential currently encoded on this card. */
21183
21236
  acs_credential_on_seam: ({
21184
21237
  /** ID of the credential. */
@@ -21354,7 +21407,7 @@ export interface Routes {
21354
21407
  is_managed: false;
21355
21408
  }) | null;
21356
21409
  warnings: Array<{
21357
- warning_code: 'acs_credential_on_encoder_out_of_sync';
21410
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
21358
21411
  warning_message: string;
21359
21412
  }>;
21360
21413
  };
@@ -22012,7 +22065,7 @@ export interface Routes {
22012
22065
  /** Unique identifier for the device. */
22013
22066
  device_id: string;
22014
22067
  /** Type of the device. */
22015
- 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');
22068
+ 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');
22016
22069
  /** Optional nickname to describe the device, settable through Seam */
22017
22070
  nickname?: string | undefined;
22018
22071
  /** 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. */
@@ -22323,6 +22376,10 @@ export interface Routes {
22323
22376
  assa_abloy_vostio_metadata?: {
22324
22377
  encoder_name: string;
22325
22378
  } | undefined;
22379
+ tado_metadata?: {
22380
+ serial_no: string;
22381
+ device_type: string;
22382
+ } | undefined;
22326
22383
  }) & ({
22327
22384
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
22328
22385
  code_constraints?: (Array<{
@@ -22628,7 +22685,7 @@ export interface Routes {
22628
22685
  guest_acs_entrance_ids?: string[] | undefined;
22629
22686
  common_acs_entrance_ids?: string[] | undefined;
22630
22687
  } | undefined;
22631
- };
22688
+ } | null;
22632
22689
  /** Matching acs_credential currently encoded on this card. */
22633
22690
  acs_credential_on_seam: ({
22634
22691
  /** ID of the credential. */
@@ -22804,7 +22861,7 @@ export interface Routes {
22804
22861
  is_managed: false;
22805
22862
  }) | null;
22806
22863
  warnings: Array<{
22807
- warning_code: 'acs_credential_on_encoder_out_of_sync';
22864
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
22808
22865
  warning_message: string;
22809
22866
  }>;
22810
22867
  };
@@ -23511,7 +23568,7 @@ export interface Routes {
23511
23568
  guest_acs_entrance_ids?: string[] | undefined;
23512
23569
  common_acs_entrance_ids?: string[] | undefined;
23513
23570
  } | undefined;
23514
- };
23571
+ } | null;
23515
23572
  /** Matching acs_credential currently encoded on this card. */
23516
23573
  acs_credential_on_seam: ({
23517
23574
  /** ID of the credential. */
@@ -23687,7 +23744,7 @@ export interface Routes {
23687
23744
  is_managed: false;
23688
23745
  }) | null;
23689
23746
  warnings: Array<{
23690
- warning_code: 'acs_credential_on_encoder_out_of_sync';
23747
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
23691
23748
  warning_message: string;
23692
23749
  }>;
23693
23750
  };
@@ -24298,11 +24355,11 @@ export interface Routes {
24298
24355
  /** ID of the Connect Webview by which to filter devices. */
24299
24356
  connect_webview_id?: string | undefined;
24300
24357
  /** Device type by which to filter devices. */
24301
- 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;
24358
+ 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;
24302
24359
  /** Array of device types by which to filter devices. */
24303
- 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;
24360
+ 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;
24304
24361
  /** Manufacturer by which to filter devices. */
24305
- 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;
24362
+ 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;
24306
24363
  /** Array of device IDs by which to filter devices. */
24307
24364
  device_ids?: string[] | undefined;
24308
24365
  /** Numerical limit on the number of devices to return. */
@@ -24324,7 +24381,7 @@ export interface Routes {
24324
24381
  /** Unique identifier for the device. */
24325
24382
  device_id: string;
24326
24383
  /** Type of the device. */
24327
- 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');
24384
+ 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');
24328
24385
  /** Optional nickname to describe the device, settable through Seam */
24329
24386
  nickname?: string | undefined;
24330
24387
  /** 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. */
@@ -24635,6 +24692,10 @@ export interface Routes {
24635
24692
  assa_abloy_vostio_metadata?: {
24636
24693
  encoder_name: string;
24637
24694
  } | undefined;
24695
+ tado_metadata?: {
24696
+ serial_no: string;
24697
+ device_type: string;
24698
+ } | undefined;
24638
24699
  }) & ({
24639
24700
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
24640
24701
  code_constraints?: (Array<{
@@ -24837,7 +24898,7 @@ export interface Routes {
24837
24898
  /** Unique identifier for the device. */
24838
24899
  device_id: string;
24839
24900
  /** Type of the device. */
24840
- 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');
24901
+ 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');
24841
24902
  /** Optional nickname to describe the device, settable through Seam */
24842
24903
  nickname?: string | undefined;
24843
24904
  /** 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. */
@@ -25148,6 +25209,10 @@ export interface Routes {
25148
25209
  assa_abloy_vostio_metadata?: {
25149
25210
  encoder_name: string;
25150
25211
  } | undefined;
25212
+ tado_metadata?: {
25213
+ serial_no: string;
25214
+ device_type: string;
25215
+ } | undefined;
25151
25216
  }) & ({
25152
25217
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
25153
25218
  code_constraints?: (Array<{
@@ -25449,7 +25514,7 @@ export interface Routes {
25449
25514
  guest_acs_entrance_ids?: string[] | undefined;
25450
25515
  common_acs_entrance_ids?: string[] | undefined;
25451
25516
  } | undefined;
25452
- };
25517
+ } | null;
25453
25518
  /** Matching acs_credential currently encoded on this card. */
25454
25519
  acs_credential_on_seam: ({
25455
25520
  /** ID of the credential. */
@@ -25625,7 +25690,7 @@ export interface Routes {
25625
25690
  is_managed: false;
25626
25691
  }) | null;
25627
25692
  warnings: Array<{
25628
- warning_code: 'acs_credential_on_encoder_out_of_sync';
25693
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
25629
25694
  warning_message: string;
25630
25695
  }>;
25631
25696
  };
@@ -26497,7 +26562,7 @@ export interface Routes {
26497
26562
  guest_acs_entrance_ids?: string[] | undefined;
26498
26563
  common_acs_entrance_ids?: string[] | undefined;
26499
26564
  } | undefined;
26500
- };
26565
+ } | null;
26501
26566
  /** Matching acs_credential currently encoded on this card. */
26502
26567
  acs_credential_on_seam: ({
26503
26568
  /** ID of the credential. */
@@ -26673,7 +26738,7 @@ export interface Routes {
26673
26738
  is_managed: false;
26674
26739
  }) | null;
26675
26740
  warnings: Array<{
26676
- warning_code: 'acs_credential_on_encoder_out_of_sync';
26741
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
26677
26742
  warning_message: string;
26678
26743
  }>;
26679
26744
  };
@@ -27399,7 +27464,7 @@ export interface Routes {
27399
27464
  guest_acs_entrance_ids?: string[] | undefined;
27400
27465
  common_acs_entrance_ids?: string[] | undefined;
27401
27466
  } | undefined;
27402
- };
27467
+ } | null;
27403
27468
  /** Matching acs_credential currently encoded on this card. */
27404
27469
  acs_credential_on_seam: ({
27405
27470
  /** ID of the credential. */
@@ -27575,7 +27640,7 @@ export interface Routes {
27575
27640
  is_managed: false;
27576
27641
  }) | null;
27577
27642
  warnings: Array<{
27578
- warning_code: 'acs_credential_on_encoder_out_of_sync';
27643
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
27579
27644
  warning_message: string;
27580
27645
  }>;
27581
27646
  };
@@ -28467,7 +28532,7 @@ export interface Routes {
28467
28532
  /** Unique identifier for the device. */
28468
28533
  device_id: string;
28469
28534
  /** Type of the device. */
28470
- 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');
28535
+ 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');
28471
28536
  /** Optional nickname to describe the device, settable through Seam */
28472
28537
  nickname?: string | undefined;
28473
28538
  /** 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. */
@@ -28778,6 +28843,10 @@ export interface Routes {
28778
28843
  assa_abloy_vostio_metadata?: {
28779
28844
  encoder_name: string;
28780
28845
  } | undefined;
28846
+ tado_metadata?: {
28847
+ serial_no: string;
28848
+ device_type: string;
28849
+ } | undefined;
28781
28850
  }) & ({
28782
28851
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
28783
28852
  code_constraints?: (Array<{
@@ -28982,7 +29051,7 @@ export interface Routes {
28982
29051
  /** Unique identifier for the device. */
28983
29052
  device_id: string;
28984
29053
  /** Type of the device. */
28985
- 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');
29054
+ 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');
28986
29055
  /** Optional nickname to describe the device, settable through Seam */
28987
29056
  nickname?: string | undefined;
28988
29057
  /** 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. */
@@ -29293,6 +29362,10 @@ export interface Routes {
29293
29362
  assa_abloy_vostio_metadata?: {
29294
29363
  encoder_name: string;
29295
29364
  } | undefined;
29365
+ tado_metadata?: {
29366
+ serial_no: string;
29367
+ device_type: string;
29368
+ } | undefined;
29296
29369
  }) & ({
29297
29370
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
29298
29371
  code_constraints?: (Array<{
@@ -29510,7 +29583,7 @@ export interface Routes {
29510
29583
  /** ID of the `acs_system`. */
29511
29584
  acs_system_id: string;
29512
29585
  /** Brand-specific terminology for the `acs_system` type. */
29513
- external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
29586
+ external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
29514
29587
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
29515
29588
  external_type_display_name?: string | undefined;
29516
29589
  /** Indicates if the `acs_system` is a credential manager. */
@@ -29525,7 +29598,7 @@ export interface Routes {
29525
29598
  } | undefined;
29526
29599
  /**
29527
29600
  * @deprecated Use `external_type`. */
29528
- system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
29601
+ system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'salto_space_system' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service') | undefined;
29529
29602
  /**
29530
29603
  * @deprecated Use `external_type_display_name`. */
29531
29604
  system_type_display_name?: string | undefined;
@@ -29597,6 +29670,13 @@ export interface Routes {
29597
29670
  message: string;
29598
29671
  /** Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Please increase your subscription limit, or delete some users from your site to rectify this. */
29599
29672
  warning_code: 'salto_ks_subscription_limit_almost_reached';
29673
+ } | {
29674
+ /** Date and time at which Seam created the warning. */
29675
+ created_at: string;
29676
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
29677
+ message: string;
29678
+ /** Indicates the ACS system time zone could not be determined because the reported physical location does not match the time zone configured on the physical ACS entrances. */
29679
+ warning_code: 'time_zone_does_not_match_location';
29600
29680
  }>;
29601
29681
  /** Indicates whether it is possible to [launch enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut) for the `acs_system`. */
29602
29682
  can_automate_enrollment?: boolean | undefined;
@@ -29998,7 +30078,7 @@ export interface Routes {
29998
30078
  guest_acs_entrance_ids?: string[] | undefined;
29999
30079
  common_acs_entrance_ids?: string[] | undefined;
30000
30080
  } | undefined;
30001
- };
30081
+ } | null;
30002
30082
  /** Matching acs_credential currently encoded on this card. */
30003
30083
  acs_credential_on_seam: ({
30004
30084
  /** ID of the credential. */
@@ -30174,7 +30254,7 @@ export interface Routes {
30174
30254
  is_managed: false;
30175
30255
  }) | null;
30176
30256
  warnings: Array<{
30177
- warning_code: 'acs_credential_on_encoder_out_of_sync';
30257
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
30178
30258
  warning_message: string;
30179
30259
  }>;
30180
30260
  };