@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
@@ -313,10 +313,10 @@ declare const acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
313
313
  acs_system_id: z.ZodString;
314
314
  workspace_id: z.ZodString;
315
315
  name: z.ZodString;
316
- access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_access_group", "brivo_group"]>;
316
+ access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group"]>;
317
317
  access_group_type_display_name: z.ZodString;
318
318
  display_name: z.ZodString;
319
- external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_access_group", "brivo_group"]>;
319
+ external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group"]>;
320
320
  external_type_display_name: z.ZodString;
321
321
  created_at: z.ZodString;
322
322
  }, {
@@ -329,9 +329,9 @@ declare const acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
329
329
  is_managed: true;
330
330
  acs_access_group_id: string;
331
331
  acs_system_id: string;
332
- access_group_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
332
+ access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group";
333
333
  access_group_type_display_name: string;
334
- external_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
334
+ external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group";
335
335
  external_type_display_name: string;
336
336
  }, {
337
337
  created_at: string;
@@ -341,9 +341,9 @@ declare const acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
341
341
  is_managed: true;
342
342
  acs_access_group_id: string;
343
343
  acs_system_id: string;
344
- access_group_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
344
+ access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group";
345
345
  access_group_type_display_name: string;
346
- external_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
346
+ external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group";
347
347
  external_type_display_name: string;
348
348
  }>;
349
349
  declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
@@ -351,10 +351,10 @@ declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
351
351
  acs_system_id: z.ZodString;
352
352
  workspace_id: z.ZodString;
353
353
  name: z.ZodString;
354
- access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_access_group", "brivo_group"]>;
354
+ access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group"]>;
355
355
  access_group_type_display_name: z.ZodString;
356
356
  display_name: z.ZodString;
357
- external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_access_group", "brivo_group"]>;
357
+ external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group"]>;
358
358
  external_type_display_name: z.ZodString;
359
359
  created_at: z.ZodString;
360
360
  }, {
@@ -367,9 +367,9 @@ declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
367
367
  is_managed: false;
368
368
  acs_access_group_id: string;
369
369
  acs_system_id: string;
370
- access_group_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
370
+ access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group";
371
371
  access_group_type_display_name: string;
372
- external_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
372
+ external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group";
373
373
  external_type_display_name: string;
374
374
  }, {
375
375
  created_at: string;
@@ -379,9 +379,9 @@ declare const unmanaged_acs_access_group: z.ZodObject<z.objectUtil.extendShape<{
379
379
  is_managed: false;
380
380
  acs_access_group_id: string;
381
381
  acs_system_id: string;
382
- access_group_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
382
+ access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group";
383
383
  access_group_type_display_name: string;
384
- external_type: "pti_unit" | "pti_access_level" | "salto_access_group" | "brivo_group";
384
+ external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group";
385
385
  external_type_display_name: string;
386
386
  }>;
387
387
  type AcsAccessGroup = z.output<typeof acs_access_group>;
@@ -1091,7 +1091,7 @@ type AcsEntrance = z.infer<typeof acs_entrance>;
1091
1091
  declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1092
1092
  default_credential_manager_acs_system_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1093
1093
  acs_system_id: z.ZodString;
1094
- external_type: z.ZodOptional<z.ZodEnum<["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"]>>;
1094
+ external_type: z.ZodOptional<z.ZodEnum<["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"]>>;
1095
1095
  external_type_display_name: z.ZodOptional<z.ZodString>;
1096
1096
  is_credential_manager: z.ZodBoolean;
1097
1097
  visionline_metadata: z.ZodOptional<z.ZodObject<{
@@ -1107,7 +1107,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1107
1107
  system_id: string;
1108
1108
  lan_address: string;
1109
1109
  }>>;
1110
- system_type: z.ZodOptional<z.ZodEnum<["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"]>>;
1110
+ system_type: z.ZodOptional<z.ZodEnum<["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"]>>;
1111
1111
  system_type_display_name: z.ZodOptional<z.ZodString>;
1112
1112
  location: z.ZodObject<{
1113
1113
  time_zone: z.ZodNullable<z.ZodString>;
@@ -1201,7 +1201,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1201
1201
  error_code: "salto_ks_certification_expired";
1202
1202
  created_at: string;
1203
1203
  }>]>, "many">;
1204
- warnings: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
1204
+ warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
1205
1205
  created_at: z.ZodString;
1206
1206
  message: z.ZodString;
1207
1207
  }, {
@@ -1214,7 +1214,20 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1214
1214
  message: string;
1215
1215
  warning_code: "salto_ks_subscription_limit_almost_reached";
1216
1216
  created_at: string;
1217
- }>, "many">;
1217
+ }>, z.ZodObject<z.objectUtil.extendShape<{
1218
+ created_at: z.ZodString;
1219
+ message: z.ZodString;
1220
+ }, {
1221
+ warning_code: z.ZodLiteral<"time_zone_does_not_match_location">;
1222
+ }>, "strip", z.ZodTypeAny, {
1223
+ message: string;
1224
+ warning_code: "time_zone_does_not_match_location";
1225
+ created_at: string;
1226
+ }, {
1227
+ message: string;
1228
+ warning_code: "time_zone_does_not_match_location";
1229
+ created_at: string;
1230
+ }>]>, "many">;
1218
1231
  }, {
1219
1232
  can_automate_enrollment: z.ZodOptional<z.ZodBoolean>;
1220
1233
  can_create_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
@@ -1247,11 +1260,15 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1247
1260
  error_code: "salto_ks_certification_expired";
1248
1261
  created_at: string;
1249
1262
  })[];
1250
- warnings: {
1263
+ warnings: ({
1251
1264
  message: string;
1252
1265
  warning_code: "salto_ks_subscription_limit_almost_reached";
1253
1266
  created_at: string;
1254
- }[];
1267
+ } | {
1268
+ message: string;
1269
+ warning_code: "time_zone_does_not_match_location";
1270
+ created_at: string;
1271
+ })[];
1255
1272
  name: string;
1256
1273
  image_url: string;
1257
1274
  image_alt_text: string;
@@ -1267,14 +1284,14 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1267
1284
  system_id: string;
1268
1285
  lan_address: string;
1269
1286
  } | undefined;
1270
- external_type?: "dormakaba_community" | "legic_connect" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
1287
+ external_type?: "dormakaba_community" | "legic_connect" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
1271
1288
  external_type_display_name?: string | undefined;
1272
1289
  can_automate_enrollment?: boolean | undefined;
1273
1290
  can_create_acs_access_groups?: boolean | undefined;
1274
1291
  can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
1275
1292
  can_add_acs_users_to_acs_access_groups?: boolean | undefined;
1276
1293
  default_credential_manager_acs_system_id?: string | null | undefined;
1277
- system_type?: "dormakaba_community" | "legic_connect" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
1294
+ system_type?: "dormakaba_community" | "legic_connect" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
1278
1295
  system_type_display_name?: string | undefined;
1279
1296
  }, {
1280
1297
  created_at: string;
@@ -1303,11 +1320,15 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1303
1320
  error_code: "salto_ks_certification_expired";
1304
1321
  created_at: string;
1305
1322
  })[];
1306
- warnings: {
1323
+ warnings: ({
1307
1324
  message: string;
1308
1325
  warning_code: "salto_ks_subscription_limit_almost_reached";
1309
1326
  created_at: string;
1310
- }[];
1327
+ } | {
1328
+ message: string;
1329
+ warning_code: "time_zone_does_not_match_location";
1330
+ created_at: string;
1331
+ })[];
1311
1332
  name: string;
1312
1333
  image_url: string;
1313
1334
  image_alt_text: string;
@@ -1323,14 +1344,14 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1323
1344
  system_id: string;
1324
1345
  lan_address: string;
1325
1346
  } | undefined;
1326
- external_type?: "dormakaba_community" | "legic_connect" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
1347
+ external_type?: "dormakaba_community" | "legic_connect" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
1327
1348
  external_type_display_name?: string | undefined;
1328
1349
  can_automate_enrollment?: boolean | undefined;
1329
1350
  can_create_acs_access_groups?: boolean | undefined;
1330
1351
  can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
1331
1352
  can_add_acs_users_to_acs_access_groups?: boolean | undefined;
1332
1353
  default_credential_manager_acs_system_id?: string | null | undefined;
1333
- system_type?: "dormakaba_community" | "legic_connect" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
1354
+ system_type?: "dormakaba_community" | "legic_connect" | "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
1334
1355
  system_type_display_name?: string | undefined;
1335
1356
  }>;
1336
1357
  type AcsSystem = z.output<typeof acs_system>;
@@ -1997,7 +2018,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
1997
2018
  }>, {
1998
2019
  action_type: z.ZodLiteral<"SCAN_CREDENTIAL">;
1999
2020
  result: z.ZodObject<{
2000
- acs_credential_on_encoder: z.ZodObject<{
2021
+ acs_credential_on_encoder: z.ZodNullable<z.ZodObject<{
2001
2022
  created_at: z.ZodNullable<z.ZodString>;
2002
2023
  is_issued: z.ZodNullable<z.ZodBoolean>;
2003
2024
  starts_at: z.ZodNullable<z.ZodString>;
@@ -2083,7 +2104,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2083
2104
  overridden?: boolean | undefined;
2084
2105
  card_holder?: string | undefined;
2085
2106
  } | undefined;
2086
- }>;
2107
+ }>>;
2087
2108
  acs_credential_on_seam: z.ZodNullable<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
2088
2109
  acs_credential_id: z.ZodString;
2089
2110
  acs_user_id: z.ZodOptional<z.ZodString>;
@@ -2532,18 +2553,18 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2532
2553
  latest_desired_state_synced_with_provider_at?: string | undefined;
2533
2554
  }>]>>;
2534
2555
  warnings: z.ZodArray<z.ZodObject<{
2535
- warning_code: z.ZodLiteral<"acs_credential_on_encoder_out_of_sync">;
2556
+ warning_code: z.ZodUnion<[z.ZodLiteral<"acs_credential_on_encoder_out_of_sync">, z.ZodLiteral<"acs_credential_on_seam_not_found">]>;
2536
2557
  warning_message: z.ZodString;
2537
2558
  }, "strip", z.ZodTypeAny, {
2538
- warning_code: "acs_credential_on_encoder_out_of_sync";
2559
+ warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
2539
2560
  warning_message: string;
2540
2561
  }, {
2541
- warning_code: "acs_credential_on_encoder_out_of_sync";
2562
+ warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
2542
2563
  warning_message: string;
2543
2564
  }>, "many">;
2544
2565
  }, "strip", z.ZodTypeAny, {
2545
2566
  warnings: {
2546
- warning_code: "acs_credential_on_encoder_out_of_sync";
2567
+ warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
2547
2568
  warning_message: string;
2548
2569
  }[];
2549
2570
  acs_credential_on_encoder: {
@@ -2566,7 +2587,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2566
2587
  overridden?: boolean | undefined;
2567
2588
  card_holder?: string | undefined;
2568
2589
  } | undefined;
2569
- };
2590
+ } | null;
2570
2591
  acs_credential_on_seam: {
2571
2592
  created_at: string;
2572
2593
  errors: {
@@ -2678,7 +2699,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2678
2699
  } | null;
2679
2700
  }, {
2680
2701
  warnings: {
2681
- warning_code: "acs_credential_on_encoder_out_of_sync";
2702
+ warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
2682
2703
  warning_message: string;
2683
2704
  }[];
2684
2705
  acs_credential_on_encoder: {
@@ -2701,7 +2722,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2701
2722
  overridden?: boolean | undefined;
2702
2723
  card_holder?: string | undefined;
2703
2724
  } | undefined;
2704
- };
2725
+ } | null;
2705
2726
  acs_credential_on_seam: {
2706
2727
  created_at: string;
2707
2728
  errors: {
@@ -2818,7 +2839,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2818
2839
  error: null;
2819
2840
  result: {
2820
2841
  warnings: {
2821
- warning_code: "acs_credential_on_encoder_out_of_sync";
2842
+ warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
2822
2843
  warning_message: string;
2823
2844
  }[];
2824
2845
  acs_credential_on_encoder: {
@@ -2841,7 +2862,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2841
2862
  overridden?: boolean | undefined;
2842
2863
  card_holder?: string | undefined;
2843
2864
  } | undefined;
2844
- };
2865
+ } | null;
2845
2866
  acs_credential_on_seam: {
2846
2867
  created_at: string;
2847
2868
  errors: {
@@ -2959,7 +2980,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2959
2980
  error: null;
2960
2981
  result: {
2961
2982
  warnings: {
2962
- warning_code: "acs_credential_on_encoder_out_of_sync";
2983
+ warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
2963
2984
  warning_message: string;
2964
2985
  }[];
2965
2986
  acs_credential_on_encoder: {
@@ -2982,7 +3003,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2982
3003
  overridden?: boolean | undefined;
2983
3004
  card_holder?: string | undefined;
2984
3005
  } | undefined;
2985
- };
3006
+ } | null;
2986
3007
  acs_credential_on_seam: {
2987
3008
  created_at: string;
2988
3009
  errors: {
@@ -5462,7 +5483,7 @@ declare const device_warning: z.ZodObject<z.objectUtil.extendShape<{
5462
5483
  type DeviceWarning = z.infer<typeof device_warning>;
5463
5484
  declare const device: z.ZodObject<z.objectUtil.extendShape<{
5464
5485
  device_id: z.ZodString;
5465
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
5486
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
5466
5487
  nickname: z.ZodOptional<z.ZodString>;
5467
5488
  display_name: z.ZodString;
5468
5489
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -6378,6 +6399,16 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
6378
6399
  }, {
6379
6400
  encoder_name: string;
6380
6401
  }>>;
6402
+ tado_metadata: z.ZodOptional<z.ZodObject<{
6403
+ serial_no: z.ZodString;
6404
+ device_type: z.ZodString;
6405
+ }, "strip", z.ZodTypeAny, {
6406
+ serial_no: string;
6407
+ device_type: string;
6408
+ }, {
6409
+ serial_no: string;
6410
+ device_type: string;
6411
+ }>>;
6381
6412
  }, "strip", z.ZodTypeAny, {
6382
6413
  august_metadata?: {
6383
6414
  lock_id: string;
@@ -6601,6 +6632,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
6601
6632
  assa_abloy_vostio_metadata?: {
6602
6633
  encoder_name: string;
6603
6634
  } | undefined;
6635
+ tado_metadata?: {
6636
+ serial_no: string;
6637
+ device_type: string;
6638
+ } | undefined;
6604
6639
  }, {
6605
6640
  august_metadata?: {
6606
6641
  lock_id: string;
@@ -6824,6 +6859,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
6824
6859
  assa_abloy_vostio_metadata?: {
6825
6860
  encoder_name: string;
6826
6861
  } | undefined;
6862
+ tado_metadata?: {
6863
+ serial_no: string;
6864
+ device_type: string;
6865
+ } | undefined;
6827
6866
  }>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
6828
6867
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
6829
6868
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -7337,7 +7376,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
7337
7376
  custom_metadata: Record<string, string | boolean>;
7338
7377
  display_name: string;
7339
7378
  device_id: string;
7340
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone");
7379
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
7341
7380
  capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
7342
7381
  properties: {
7343
7382
  name: string;
@@ -7607,6 +7646,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
7607
7646
  assa_abloy_vostio_metadata?: {
7608
7647
  encoder_name: string;
7609
7648
  } | undefined;
7649
+ tado_metadata?: {
7650
+ serial_no: string;
7651
+ device_type: string;
7652
+ } | undefined;
7610
7653
  } & {
7611
7654
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
7612
7655
  code_constraints?: ({
@@ -7745,7 +7788,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
7745
7788
  custom_metadata: Record<string, string | boolean>;
7746
7789
  display_name: string;
7747
7790
  device_id: string;
7748
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone");
7791
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
7749
7792
  capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
7750
7793
  properties: {
7751
7794
  name: string;
@@ -8015,6 +8058,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
8015
8058
  assa_abloy_vostio_metadata?: {
8016
8059
  encoder_name: string;
8017
8060
  } | undefined;
8061
+ tado_metadata?: {
8062
+ serial_no: string;
8063
+ device_type: string;
8064
+ } | undefined;
8018
8065
  } & {
8019
8066
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
8020
8067
  code_constraints?: ({
@@ -8182,6 +8229,7 @@ declare const DEVICE_PROVIDERS: {
8182
8229
  readonly VOSTIO: "assa_abloy_vostio";
8183
8230
  readonly ASSA_ABLOY_VOSTIO_CREDENTIAL_SERVICE: "assa_abloy_vostio_credential_service";
8184
8231
  readonly TADO: "tado";
8232
+ readonly SALTO_SPACE: "salto_space";
8185
8233
  };
8186
8234
  type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
8187
8235
  declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
@@ -8239,7 +8287,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
8239
8287
 
8240
8288
  declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<Pick<z.objectUtil.extendShape<{
8241
8289
  device_id: z.ZodString;
8242
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
8290
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
8243
8291
  nickname: z.ZodOptional<z.ZodString>;
8244
8292
  display_name: z.ZodString;
8245
8293
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -9155,6 +9203,16 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
9155
9203
  }, {
9156
9204
  encoder_name: string;
9157
9205
  }>>;
9206
+ tado_metadata: z.ZodOptional<z.ZodObject<{
9207
+ serial_no: z.ZodString;
9208
+ device_type: z.ZodString;
9209
+ }, "strip", z.ZodTypeAny, {
9210
+ serial_no: string;
9211
+ device_type: string;
9212
+ }, {
9213
+ serial_no: string;
9214
+ device_type: string;
9215
+ }>>;
9158
9216
  }, "strip", z.ZodTypeAny, {
9159
9217
  august_metadata?: {
9160
9218
  lock_id: string;
@@ -9378,6 +9436,10 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
9378
9436
  assa_abloy_vostio_metadata?: {
9379
9437
  encoder_name: string;
9380
9438
  } | undefined;
9439
+ tado_metadata?: {
9440
+ serial_no: string;
9441
+ device_type: string;
9442
+ } | undefined;
9381
9443
  }, {
9382
9444
  august_metadata?: {
9383
9445
  lock_id: string;
@@ -9601,6 +9663,10 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
9601
9663
  assa_abloy_vostio_metadata?: {
9602
9664
  encoder_name: string;
9603
9665
  } | undefined;
9666
+ tado_metadata?: {
9667
+ serial_no: string;
9668
+ device_type: string;
9669
+ } | undefined;
9604
9670
  }>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
9605
9671
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
9606
9672
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -10261,7 +10327,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
10261
10327
  warning_code: string;
10262
10328
  }[];
10263
10329
  device_id: string;
10264
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone");
10330
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
10265
10331
  capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
10266
10332
  properties: {
10267
10333
  name: string;
@@ -10326,7 +10392,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
10326
10392
  warning_code: string;
10327
10393
  }[];
10328
10394
  device_id: string;
10329
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone");
10395
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
10330
10396
  capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
10331
10397
  properties: {
10332
10398
  name: string;
@@ -13385,24 +13451,26 @@ declare const _default: {
13385
13451
  description: string;
13386
13452
  items: {
13387
13453
  description: string;
13388
- properties: {
13389
- created_at: {
13390
- description: string;
13391
- format: string;
13392
- type: string;
13393
- };
13394
- message: {
13395
- description: string;
13396
- type: string;
13397
- };
13398
- warning_code: {
13399
- description: string;
13400
- enum: string[];
13401
- type: string;
13454
+ oneOf: {
13455
+ properties: {
13456
+ created_at: {
13457
+ description: string;
13458
+ format: string;
13459
+ type: string;
13460
+ };
13461
+ message: {
13462
+ description: string;
13463
+ type: string;
13464
+ };
13465
+ warning_code: {
13466
+ description: string;
13467
+ enum: string[];
13468
+ type: string;
13469
+ };
13402
13470
  };
13403
- };
13404
- required: string[];
13405
- type: string;
13471
+ required: string[];
13472
+ type: string;
13473
+ }[];
13406
13474
  };
13407
13475
  type: string;
13408
13476
  };
@@ -13727,6 +13795,7 @@ declare const _default: {
13727
13795
  properties: {
13728
13796
  acs_credential_on_encoder: {
13729
13797
  description: string;
13798
+ nullable: boolean;
13730
13799
  properties: {
13731
13800
  card_number: {
13732
13801
  description: string;
@@ -15674,6 +15743,18 @@ declare const _default: {
15674
15743
  required: string[];
15675
15744
  type: string;
15676
15745
  };
15746
+ tado_metadata: {
15747
+ properties: {
15748
+ device_type: {
15749
+ type: string;
15750
+ };
15751
+ serial_no: {
15752
+ type: string;
15753
+ };
15754
+ };
15755
+ required: string[];
15756
+ type: string;
15757
+ };
15677
15758
  tedee_metadata: {
15678
15759
  properties: {
15679
15760
  bridge_id: {
@@ -33494,7 +33575,7 @@ interface Routes {
33494
33575
  guest_acs_entrance_ids?: string[] | undefined;
33495
33576
  common_acs_entrance_ids?: string[] | undefined;
33496
33577
  } | undefined;
33497
- };
33578
+ } | null;
33498
33579
  /** Matching acs_credential currently encoded on this card. */
33499
33580
  acs_credential_on_seam: ({
33500
33581
  /** ID of the credential. */
@@ -33670,7 +33751,7 @@ interface Routes {
33670
33751
  is_managed: false;
33671
33752
  }) | null;
33672
33753
  warnings: Array<{
33673
- warning_code: 'acs_credential_on_encoder_out_of_sync';
33754
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
33674
33755
  warning_message: string;
33675
33756
  }>;
33676
33757
  };
@@ -34517,7 +34598,7 @@ interface Routes {
34517
34598
  guest_acs_entrance_ids?: string[] | undefined;
34518
34599
  common_acs_entrance_ids?: string[] | undefined;
34519
34600
  } | undefined;
34520
- };
34601
+ } | null;
34521
34602
  /** Matching acs_credential currently encoded on this card. */
34522
34603
  acs_credential_on_seam: ({
34523
34604
  /** ID of the credential. */
@@ -34693,7 +34774,7 @@ interface Routes {
34693
34774
  is_managed: false;
34694
34775
  }) | null;
34695
34776
  warnings: Array<{
34696
- warning_code: 'acs_credential_on_encoder_out_of_sync';
34777
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
34697
34778
  warning_message: string;
34698
34779
  }>;
34699
34780
  };
@@ -35758,7 +35839,7 @@ interface Routes {
35758
35839
  guest_acs_entrance_ids?: string[] | undefined;
35759
35840
  common_acs_entrance_ids?: string[] | undefined;
35760
35841
  } | undefined;
35761
- };
35842
+ } | null;
35762
35843
  /** Matching acs_credential currently encoded on this card. */
35763
35844
  acs_credential_on_seam: ({
35764
35845
  /** ID of the credential. */
@@ -35934,7 +36015,7 @@ interface Routes {
35934
36015
  is_managed: false;
35935
36016
  }) | null;
35936
36017
  warnings: Array<{
35937
- warning_code: 'acs_credential_on_encoder_out_of_sync';
36018
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
35938
36019
  warning_message: string;
35939
36020
  }>;
35940
36021
  };
@@ -36768,7 +36849,7 @@ interface Routes {
36768
36849
  guest_acs_entrance_ids?: string[] | undefined;
36769
36850
  common_acs_entrance_ids?: string[] | undefined;
36770
36851
  } | undefined;
36771
- };
36852
+ } | null;
36772
36853
  /** Matching acs_credential currently encoded on this card. */
36773
36854
  acs_credential_on_seam: ({
36774
36855
  /** ID of the credential. */
@@ -36944,7 +37025,7 @@ interface Routes {
36944
37025
  is_managed: false;
36945
37026
  }) | null;
36946
37027
  warnings: Array<{
36947
- warning_code: 'acs_credential_on_encoder_out_of_sync';
37028
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
36948
37029
  warning_message: string;
36949
37030
  }>;
36950
37031
  };
@@ -37594,13 +37675,13 @@ interface Routes {
37594
37675
  name: string;
37595
37676
  /**
37596
37677
  * @deprecated Use `external_type`. */
37597
- access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37678
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37598
37679
  /**
37599
37680
  * @deprecated Use `external_type_display_name`. */
37600
37681
  access_group_type_display_name: string;
37601
37682
  display_name: string;
37602
37683
  /** Brand-specific terminology for the access group type. */
37603
- external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37684
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37604
37685
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
37605
37686
  external_type_display_name: string;
37606
37687
  /** Date and time at which the access group was created. */
@@ -37633,13 +37714,13 @@ interface Routes {
37633
37714
  name: string;
37634
37715
  /**
37635
37716
  * @deprecated Use `external_type`. */
37636
- access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37717
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37637
37718
  /**
37638
37719
  * @deprecated Use `external_type_display_name`. */
37639
37720
  access_group_type_display_name: string;
37640
37721
  display_name: string;
37641
37722
  /** Brand-specific terminology for the access group type. */
37642
- external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37723
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37643
37724
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
37644
37725
  external_type_display_name: string;
37645
37726
  /** Date and time at which the access group was created. */
@@ -37848,13 +37929,13 @@ interface Routes {
37848
37929
  name: string;
37849
37930
  /**
37850
37931
  * @deprecated Use `external_type`. */
37851
- access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37932
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37852
37933
  /**
37853
37934
  * @deprecated Use `external_type_display_name`. */
37854
37935
  access_group_type_display_name: string;
37855
37936
  display_name: string;
37856
37937
  /** Brand-specific terminology for the access group type. */
37857
- external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37938
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37858
37939
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
37859
37940
  external_type_display_name: string;
37860
37941
  /** Date and time at which the access group was created. */
@@ -37887,13 +37968,13 @@ interface Routes {
37887
37968
  name: string;
37888
37969
  /**
37889
37970
  * @deprecated Use `external_type`. */
37890
- access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37971
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37891
37972
  /**
37892
37973
  * @deprecated Use `external_type_display_name`. */
37893
37974
  access_group_type_display_name: string;
37894
37975
  display_name: string;
37895
37976
  /** Brand-specific terminology for the access group type. */
37896
- external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37977
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37897
37978
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
37898
37979
  external_type_display_name: string;
37899
37980
  /** Date and time at which the access group was created. */
@@ -39113,7 +39194,7 @@ interface Routes {
39113
39194
  guest_acs_entrance_ids?: string[] | undefined;
39114
39195
  common_acs_entrance_ids?: string[] | undefined;
39115
39196
  } | undefined;
39116
- };
39197
+ } | null;
39117
39198
  /** Matching acs_credential currently encoded on this card. */
39118
39199
  acs_credential_on_seam: ({
39119
39200
  /** ID of the credential. */
@@ -39289,7 +39370,7 @@ interface Routes {
39289
39370
  is_managed: false;
39290
39371
  }) | null;
39291
39372
  warnings: Array<{
39292
- warning_code: 'acs_credential_on_encoder_out_of_sync';
39373
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
39293
39374
  warning_message: string;
39294
39375
  }>;
39295
39376
  };
@@ -40030,7 +40111,7 @@ interface Routes {
40030
40111
  guest_acs_entrance_ids?: string[] | undefined;
40031
40112
  common_acs_entrance_ids?: string[] | undefined;
40032
40113
  } | undefined;
40033
- };
40114
+ } | null;
40034
40115
  /** Matching acs_credential currently encoded on this card. */
40035
40116
  acs_credential_on_seam: ({
40036
40117
  /** ID of the credential. */
@@ -40206,7 +40287,7 @@ interface Routes {
40206
40287
  is_managed: false;
40207
40288
  }) | null;
40208
40289
  warnings: Array<{
40209
- warning_code: 'acs_credential_on_encoder_out_of_sync';
40290
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
40210
40291
  warning_message: string;
40211
40292
  }>;
40212
40293
  };
@@ -41056,7 +41137,7 @@ interface Routes {
41056
41137
  /** ID of the `acs_system`. */
41057
41138
  acs_system_id: string;
41058
41139
  /** Brand-specific terminology for the `acs_system` type. */
41059
- 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;
41140
+ 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;
41060
41141
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
41061
41142
  external_type_display_name?: string | undefined;
41062
41143
  /** Indicates if the `acs_system` is a credential manager. */
@@ -41071,7 +41152,7 @@ interface Routes {
41071
41152
  } | undefined;
41072
41153
  /**
41073
41154
  * @deprecated Use `external_type`. */
41074
- 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;
41155
+ 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;
41075
41156
  /**
41076
41157
  * @deprecated Use `external_type_display_name`. */
41077
41158
  system_type_display_name?: string | undefined;
@@ -41143,6 +41224,13 @@ interface Routes {
41143
41224
  message: string;
41144
41225
  /** 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. */
41145
41226
  warning_code: 'salto_ks_subscription_limit_almost_reached';
41227
+ } | {
41228
+ /** Date and time at which Seam created the warning. */
41229
+ created_at: string;
41230
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
41231
+ message: string;
41232
+ /** 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. */
41233
+ warning_code: 'time_zone_does_not_match_location';
41146
41234
  }>;
41147
41235
  /** 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`. */
41148
41236
  can_automate_enrollment?: boolean | undefined;
@@ -41172,7 +41260,7 @@ interface Routes {
41172
41260
  /** ID of the `acs_system`. */
41173
41261
  acs_system_id: string;
41174
41262
  /** Brand-specific terminology for the `acs_system` type. */
41175
- 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;
41263
+ 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;
41176
41264
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
41177
41265
  external_type_display_name?: string | undefined;
41178
41266
  /** Indicates if the `acs_system` is a credential manager. */
@@ -41187,7 +41275,7 @@ interface Routes {
41187
41275
  } | undefined;
41188
41276
  /**
41189
41277
  * @deprecated Use `external_type`. */
41190
- 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;
41278
+ 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;
41191
41279
  /**
41192
41280
  * @deprecated Use `external_type_display_name`. */
41193
41281
  system_type_display_name?: string | undefined;
@@ -41259,6 +41347,13 @@ interface Routes {
41259
41347
  message: string;
41260
41348
  /** 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. */
41261
41349
  warning_code: 'salto_ks_subscription_limit_almost_reached';
41350
+ } | {
41351
+ /** Date and time at which Seam created the warning. */
41352
+ created_at: string;
41353
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
41354
+ message: string;
41355
+ /** 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. */
41356
+ warning_code: 'time_zone_does_not_match_location';
41262
41357
  }>;
41263
41358
  /** 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`. */
41264
41359
  can_automate_enrollment?: boolean | undefined;
@@ -41288,7 +41383,7 @@ interface Routes {
41288
41383
  /** ID of the `acs_system`. */
41289
41384
  acs_system_id: string;
41290
41385
  /** Brand-specific terminology for the `acs_system` type. */
41291
- 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;
41386
+ 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;
41292
41387
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
41293
41388
  external_type_display_name?: string | undefined;
41294
41389
  /** Indicates if the `acs_system` is a credential manager. */
@@ -41303,7 +41398,7 @@ interface Routes {
41303
41398
  } | undefined;
41304
41399
  /**
41305
41400
  * @deprecated Use `external_type`. */
41306
- 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;
41401
+ 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;
41307
41402
  /**
41308
41403
  * @deprecated Use `external_type_display_name`. */
41309
41404
  system_type_display_name?: string | undefined;
@@ -41375,6 +41470,13 @@ interface Routes {
41375
41470
  message: string;
41376
41471
  /** 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. */
41377
41472
  warning_code: 'salto_ks_subscription_limit_almost_reached';
41473
+ } | {
41474
+ /** Date and time at which Seam created the warning. */
41475
+ created_at: string;
41476
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
41477
+ message: string;
41478
+ /** 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. */
41479
+ warning_code: 'time_zone_does_not_match_location';
41378
41480
  }>;
41379
41481
  /** 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`. */
41380
41482
  can_automate_enrollment?: boolean | undefined;
@@ -42195,7 +42297,7 @@ interface Routes {
42195
42297
  guest_acs_entrance_ids?: string[] | undefined;
42196
42298
  common_acs_entrance_ids?: string[] | undefined;
42197
42299
  } | undefined;
42198
- };
42300
+ } | null;
42199
42301
  /** Matching acs_credential currently encoded on this card. */
42200
42302
  acs_credential_on_seam: ({
42201
42303
  /** ID of the credential. */
@@ -42371,7 +42473,7 @@ interface Routes {
42371
42473
  is_managed: false;
42372
42474
  }) | null;
42373
42475
  warnings: Array<{
42374
- warning_code: 'acs_credential_on_encoder_out_of_sync';
42476
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
42375
42477
  warning_message: string;
42376
42478
  }>;
42377
42479
  };
@@ -43067,7 +43169,7 @@ interface Routes {
43067
43169
  guest_acs_entrance_ids?: string[] | undefined;
43068
43170
  common_acs_entrance_ids?: string[] | undefined;
43069
43171
  } | undefined;
43070
- };
43172
+ } | null;
43071
43173
  /** Matching acs_credential currently encoded on this card. */
43072
43174
  acs_credential_on_seam: ({
43073
43175
  /** ID of the credential. */
@@ -43243,7 +43345,7 @@ interface Routes {
43243
43345
  is_managed: false;
43244
43346
  }) | null;
43245
43347
  warnings: Array<{
43246
- warning_code: 'acs_credential_on_encoder_out_of_sync';
43348
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
43247
43349
  warning_message: string;
43248
43350
  }>;
43249
43351
  };
@@ -44003,7 +44105,7 @@ interface Routes {
44003
44105
  device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
44004
44106
  custom_redirect_url?: string | undefined;
44005
44107
  custom_redirect_failure_url?: string | undefined;
44006
- 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;
44108
+ 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;
44007
44109
  provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
44008
44110
  custom_metadata?: Record<string, string | boolean | null> | undefined;
44009
44111
  automatically_manage_new_devices?: boolean;
@@ -44281,7 +44383,7 @@ interface Routes {
44281
44383
  /** Unique identifier for the device. */
44282
44384
  device_id: string;
44283
44385
  /** Type of the device. */
44284
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
44386
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
44285
44387
  /** Optional nickname to describe the device, settable through Seam */
44286
44388
  nickname?: string | undefined;
44287
44389
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -44592,6 +44694,10 @@ interface Routes {
44592
44694
  assa_abloy_vostio_metadata?: {
44593
44695
  encoder_name: string;
44594
44696
  } | undefined;
44697
+ tado_metadata?: {
44698
+ serial_no: string;
44699
+ device_type: string;
44700
+ } | undefined;
44595
44701
  }) & ({
44596
44702
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
44597
44703
  code_constraints?: (Array<{
@@ -44805,11 +44911,11 @@ interface Routes {
44805
44911
  /** ID of the Connect Webview by which to filter devices. */
44806
44912
  connect_webview_id?: string | undefined;
44807
44913
  /** Device type by which to filter devices. */
44808
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
44914
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
44809
44915
  /** Array of device types by which to filter devices. */
44810
- device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
44916
+ device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
44811
44917
  /** Manufacturer by which to filter devices. */
44812
- manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
44918
+ manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles' | 'tado') | undefined;
44813
44919
  /** Array of device IDs by which to filter devices. */
44814
44920
  device_ids?: string[] | undefined;
44815
44921
  /** Numerical limit on the number of devices to return. */
@@ -44831,7 +44937,7 @@ interface Routes {
44831
44937
  /** Unique identifier for the device. */
44832
44938
  device_id: string;
44833
44939
  /** Type of the device. */
44834
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
44940
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
44835
44941
  /** Optional nickname to describe the device, settable through Seam */
44836
44942
  nickname?: string | undefined;
44837
44943
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -45142,6 +45248,10 @@ interface Routes {
45142
45248
  assa_abloy_vostio_metadata?: {
45143
45249
  encoder_name: string;
45144
45250
  } | undefined;
45251
+ tado_metadata?: {
45252
+ serial_no: string;
45253
+ device_type: string;
45254
+ } | undefined;
45145
45255
  }) & ({
45146
45256
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
45147
45257
  code_constraints?: (Array<{
@@ -45353,7 +45463,7 @@ interface Routes {
45353
45463
  formData: {};
45354
45464
  jsonResponse: {
45355
45465
  device_providers: Array<{
45356
- 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';
45466
+ 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';
45357
45467
  display_name: string;
45358
45468
  image_url: string;
45359
45469
  provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
@@ -45419,7 +45529,7 @@ interface Routes {
45419
45529
  /** Unique identifier for the device. */
45420
45530
  device_id: string;
45421
45531
  /** Type of the device. */
45422
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
45532
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
45423
45533
  /** Unique identifier for the account associated with the device. */
45424
45534
  connected_account_id: string;
45425
45535
  /** Location information for the device. */
@@ -45528,11 +45638,11 @@ interface Routes {
45528
45638
  /** ID of the Connect Webview by which to filter devices. */
45529
45639
  connect_webview_id?: string | undefined;
45530
45640
  /** Device type by which to filter devices. */
45531
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
45641
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
45532
45642
  /** Array of device types by which to filter devices. */
45533
- device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
45643
+ device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
45534
45644
  /** Manufacturer by which to filter devices. */
45535
- manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
45645
+ manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles' | 'tado') | undefined;
45536
45646
  /** Array of device IDs by which to filter devices. */
45537
45647
  device_ids?: string[] | undefined;
45538
45648
  /** Numerical limit on the number of devices to return. */
@@ -45554,7 +45664,7 @@ interface Routes {
45554
45664
  /** Unique identifier for the device. */
45555
45665
  device_id: string;
45556
45666
  /** Type of the device. */
45557
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
45667
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
45558
45668
  /** Unique identifier for the account associated with the device. */
45559
45669
  connected_account_id: string;
45560
45670
  /** Location information for the device. */
@@ -45784,7 +45894,7 @@ interface Routes {
45784
45894
  /** Unique identifier for the device. */
45785
45895
  device_id: string;
45786
45896
  /** Type of the device. */
45787
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
45897
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
45788
45898
  /** Optional nickname to describe the device, settable through Seam */
45789
45899
  nickname?: string | undefined;
45790
45900
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -46095,6 +46205,10 @@ interface Routes {
46095
46205
  assa_abloy_vostio_metadata?: {
46096
46206
  encoder_name: string;
46097
46207
  } | undefined;
46208
+ tado_metadata?: {
46209
+ serial_no: string;
46210
+ device_type: string;
46211
+ } | undefined;
46098
46212
  }) & ({
46099
46213
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
46100
46214
  code_constraints?: (Array<{
@@ -46297,7 +46411,7 @@ interface Routes {
46297
46411
  /** Unique identifier for the device. */
46298
46412
  device_id: string;
46299
46413
  /** Type of the device. */
46300
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
46414
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
46301
46415
  /** Optional nickname to describe the device, settable through Seam */
46302
46416
  nickname?: string | undefined;
46303
46417
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -46608,6 +46722,10 @@ interface Routes {
46608
46722
  assa_abloy_vostio_metadata?: {
46609
46723
  encoder_name: string;
46610
46724
  } | undefined;
46725
+ tado_metadata?: {
46726
+ serial_no: string;
46727
+ device_type: string;
46728
+ } | undefined;
46611
46729
  }) & ({
46612
46730
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
46613
46731
  code_constraints?: (Array<{
@@ -46821,11 +46939,11 @@ interface Routes {
46821
46939
  /** ID of the Connect Webview by which to filter devices. */
46822
46940
  connect_webview_id?: string | undefined;
46823
46941
  /** Device type by which to filter devices. */
46824
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
46942
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
46825
46943
  /** Array of device types by which to filter devices. */
46826
- device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
46944
+ device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
46827
46945
  /** Manufacturer by which to filter devices. */
46828
- manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
46946
+ manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles' | 'tado') | undefined;
46829
46947
  /** Array of device IDs by which to filter devices. */
46830
46948
  device_ids?: string[] | undefined;
46831
46949
  /** Numerical limit on the number of devices to return. */
@@ -46847,7 +46965,7 @@ interface Routes {
46847
46965
  /** Unique identifier for the device. */
46848
46966
  device_id: string;
46849
46967
  /** Type of the device. */
46850
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
46968
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
46851
46969
  /** Optional nickname to describe the device, settable through Seam */
46852
46970
  nickname?: string | undefined;
46853
46971
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -47158,6 +47276,10 @@ interface Routes {
47158
47276
  assa_abloy_vostio_metadata?: {
47159
47277
  encoder_name: string;
47160
47278
  } | undefined;
47279
+ tado_metadata?: {
47280
+ serial_no: string;
47281
+ device_type: string;
47282
+ } | undefined;
47161
47283
  }) & ({
47162
47284
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
47163
47285
  code_constraints?: (Array<{
@@ -47360,7 +47482,7 @@ interface Routes {
47360
47482
  /** Unique identifier for the device. */
47361
47483
  device_id: string;
47362
47484
  /** Type of the device. */
47363
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
47485
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
47364
47486
  /** Optional nickname to describe the device, settable through Seam */
47365
47487
  nickname?: string | undefined;
47366
47488
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -47671,6 +47793,10 @@ interface Routes {
47671
47793
  assa_abloy_vostio_metadata?: {
47672
47794
  encoder_name: string;
47673
47795
  } | undefined;
47796
+ tado_metadata?: {
47797
+ serial_no: string;
47798
+ device_type: string;
47799
+ } | undefined;
47674
47800
  }) & ({
47675
47801
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
47676
47802
  code_constraints?: (Array<{
@@ -47970,7 +48096,7 @@ interface Routes {
47970
48096
  guest_acs_entrance_ids?: string[] | undefined;
47971
48097
  common_acs_entrance_ids?: string[] | undefined;
47972
48098
  } | undefined;
47973
- };
48099
+ } | null;
47974
48100
  /** Matching acs_credential currently encoded on this card. */
47975
48101
  acs_credential_on_seam: ({
47976
48102
  /** ID of the credential. */
@@ -48146,7 +48272,7 @@ interface Routes {
48146
48272
  is_managed: false;
48147
48273
  }) | null;
48148
48274
  warnings: Array<{
48149
- warning_code: 'acs_credential_on_encoder_out_of_sync';
48275
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
48150
48276
  warning_message: string;
48151
48277
  }>;
48152
48278
  };
@@ -48843,7 +48969,7 @@ interface Routes {
48843
48969
  guest_acs_entrance_ids?: string[] | undefined;
48844
48970
  common_acs_entrance_ids?: string[] | undefined;
48845
48971
  } | undefined;
48846
- };
48972
+ } | null;
48847
48973
  /** Matching acs_credential currently encoded on this card. */
48848
48974
  acs_credential_on_seam: ({
48849
48975
  /** ID of the credential. */
@@ -49019,7 +49145,7 @@ interface Routes {
49019
49145
  is_managed: false;
49020
49146
  }) | null;
49021
49147
  warnings: Array<{
49022
- warning_code: 'acs_credential_on_encoder_out_of_sync';
49148
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
49023
49149
  warning_message: string;
49024
49150
  }>;
49025
49151
  };
@@ -49664,11 +49790,11 @@ interface Routes {
49664
49790
  /** ID of the Connect Webview by which to filter devices. */
49665
49791
  connect_webview_id?: string | undefined;
49666
49792
  /** Device type by which to filter devices. */
49667
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
49793
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
49668
49794
  /** Array of device types by which to filter devices. */
49669
- device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
49795
+ device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
49670
49796
  /** Manufacturer by which to filter devices. */
49671
- manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
49797
+ manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles' | 'tado') | undefined;
49672
49798
  /** Array of device IDs by which to filter devices. */
49673
49799
  device_ids?: string[] | undefined;
49674
49800
  /** Numerical limit on the number of devices to return. */
@@ -49690,7 +49816,7 @@ interface Routes {
49690
49816
  /** Unique identifier for the device. */
49691
49817
  device_id: string;
49692
49818
  /** Type of the device. */
49693
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
49819
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
49694
49820
  /** Optional nickname to describe the device, settable through Seam */
49695
49821
  nickname?: string | undefined;
49696
49822
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -50001,6 +50127,10 @@ interface Routes {
50001
50127
  assa_abloy_vostio_metadata?: {
50002
50128
  encoder_name: string;
50003
50129
  } | undefined;
50130
+ tado_metadata?: {
50131
+ serial_no: string;
50132
+ device_type: string;
50133
+ } | undefined;
50004
50134
  }) & ({
50005
50135
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
50006
50136
  code_constraints?: (Array<{
@@ -50203,7 +50333,7 @@ interface Routes {
50203
50333
  /** Unique identifier for the device. */
50204
50334
  device_id: string;
50205
50335
  /** Type of the device. */
50206
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
50336
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
50207
50337
  /** Optional nickname to describe the device, settable through Seam */
50208
50338
  nickname?: string | undefined;
50209
50339
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -50514,6 +50644,10 @@ interface Routes {
50514
50644
  assa_abloy_vostio_metadata?: {
50515
50645
  encoder_name: string;
50516
50646
  } | undefined;
50647
+ tado_metadata?: {
50648
+ serial_no: string;
50649
+ device_type: string;
50650
+ } | undefined;
50517
50651
  }) & ({
50518
50652
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
50519
50653
  code_constraints?: (Array<{
@@ -50818,7 +50952,7 @@ interface Routes {
50818
50952
  guest_acs_entrance_ids?: string[] | undefined;
50819
50953
  common_acs_entrance_ids?: string[] | undefined;
50820
50954
  } | undefined;
50821
- };
50955
+ } | null;
50822
50956
  /** Matching acs_credential currently encoded on this card. */
50823
50957
  acs_credential_on_seam: ({
50824
50958
  /** ID of the credential. */
@@ -50994,7 +51128,7 @@ interface Routes {
50994
51128
  is_managed: false;
50995
51129
  }) | null;
50996
51130
  warnings: Array<{
50997
- warning_code: 'acs_credential_on_encoder_out_of_sync';
51131
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
50998
51132
  warning_message: string;
50999
51133
  }>;
51000
51134
  };
@@ -51701,7 +51835,7 @@ interface Routes {
51701
51835
  guest_acs_entrance_ids?: string[] | undefined;
51702
51836
  common_acs_entrance_ids?: string[] | undefined;
51703
51837
  } | undefined;
51704
- };
51838
+ } | null;
51705
51839
  /** Matching acs_credential currently encoded on this card. */
51706
51840
  acs_credential_on_seam: ({
51707
51841
  /** ID of the credential. */
@@ -51877,7 +52011,7 @@ interface Routes {
51877
52011
  is_managed: false;
51878
52012
  }) | null;
51879
52013
  warnings: Array<{
51880
- warning_code: 'acs_credential_on_encoder_out_of_sync';
52014
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
51881
52015
  warning_message: string;
51882
52016
  }>;
51883
52017
  };
@@ -52623,7 +52757,7 @@ interface Routes {
52623
52757
  guest_acs_entrance_ids?: string[] | undefined;
52624
52758
  common_acs_entrance_ids?: string[] | undefined;
52625
52759
  } | undefined;
52626
- };
52760
+ } | null;
52627
52761
  /** Matching acs_credential currently encoded on this card. */
52628
52762
  acs_credential_on_seam: ({
52629
52763
  /** ID of the credential. */
@@ -52799,7 +52933,7 @@ interface Routes {
52799
52933
  is_managed: false;
52800
52934
  }) | null;
52801
52935
  warnings: Array<{
52802
- warning_code: 'acs_credential_on_encoder_out_of_sync';
52936
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
52803
52937
  warning_message: string;
52804
52938
  }>;
52805
52939
  };
@@ -53680,7 +53814,7 @@ interface Routes {
53680
53814
  guest_acs_entrance_ids?: string[] | undefined;
53681
53815
  common_acs_entrance_ids?: string[] | undefined;
53682
53816
  } | undefined;
53683
- };
53817
+ } | null;
53684
53818
  /** Matching acs_credential currently encoded on this card. */
53685
53819
  acs_credential_on_seam: ({
53686
53820
  /** ID of the credential. */
@@ -53856,7 +53990,7 @@ interface Routes {
53856
53990
  is_managed: false;
53857
53991
  }) | null;
53858
53992
  warnings: Array<{
53859
- warning_code: 'acs_credential_on_encoder_out_of_sync';
53993
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
53860
53994
  warning_message: string;
53861
53995
  }>;
53862
53996
  };
@@ -54559,7 +54693,7 @@ interface Routes {
54559
54693
  guest_acs_entrance_ids?: string[] | undefined;
54560
54694
  common_acs_entrance_ids?: string[] | undefined;
54561
54695
  } | undefined;
54562
- };
54696
+ } | null;
54563
54697
  /** Matching acs_credential currently encoded on this card. */
54564
54698
  acs_credential_on_seam: ({
54565
54699
  /** ID of the credential. */
@@ -54735,7 +54869,7 @@ interface Routes {
54735
54869
  is_managed: false;
54736
54870
  }) | null;
54737
54871
  warnings: Array<{
54738
- warning_code: 'acs_credential_on_encoder_out_of_sync';
54872
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
54739
54873
  warning_message: string;
54740
54874
  }>;
54741
54875
  };
@@ -55393,7 +55527,7 @@ interface Routes {
55393
55527
  /** Unique identifier for the device. */
55394
55528
  device_id: string;
55395
55529
  /** Type of the device. */
55396
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
55530
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
55397
55531
  /** Optional nickname to describe the device, settable through Seam */
55398
55532
  nickname?: string | undefined;
55399
55533
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -55704,6 +55838,10 @@ interface Routes {
55704
55838
  assa_abloy_vostio_metadata?: {
55705
55839
  encoder_name: string;
55706
55840
  } | undefined;
55841
+ tado_metadata?: {
55842
+ serial_no: string;
55843
+ device_type: string;
55844
+ } | undefined;
55707
55845
  }) & ({
55708
55846
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
55709
55847
  code_constraints?: (Array<{
@@ -56009,7 +56147,7 @@ interface Routes {
56009
56147
  guest_acs_entrance_ids?: string[] | undefined;
56010
56148
  common_acs_entrance_ids?: string[] | undefined;
56011
56149
  } | undefined;
56012
- };
56150
+ } | null;
56013
56151
  /** Matching acs_credential currently encoded on this card. */
56014
56152
  acs_credential_on_seam: ({
56015
56153
  /** ID of the credential. */
@@ -56185,7 +56323,7 @@ interface Routes {
56185
56323
  is_managed: false;
56186
56324
  }) | null;
56187
56325
  warnings: Array<{
56188
- warning_code: 'acs_credential_on_encoder_out_of_sync';
56326
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
56189
56327
  warning_message: string;
56190
56328
  }>;
56191
56329
  };
@@ -56892,7 +57030,7 @@ interface Routes {
56892
57030
  guest_acs_entrance_ids?: string[] | undefined;
56893
57031
  common_acs_entrance_ids?: string[] | undefined;
56894
57032
  } | undefined;
56895
- };
57033
+ } | null;
56896
57034
  /** Matching acs_credential currently encoded on this card. */
56897
57035
  acs_credential_on_seam: ({
56898
57036
  /** ID of the credential. */
@@ -57068,7 +57206,7 @@ interface Routes {
57068
57206
  is_managed: false;
57069
57207
  }) | null;
57070
57208
  warnings: Array<{
57071
- warning_code: 'acs_credential_on_encoder_out_of_sync';
57209
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
57072
57210
  warning_message: string;
57073
57211
  }>;
57074
57212
  };
@@ -57679,11 +57817,11 @@ interface Routes {
57679
57817
  /** ID of the Connect Webview by which to filter devices. */
57680
57818
  connect_webview_id?: string | undefined;
57681
57819
  /** Device type by which to filter devices. */
57682
- device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
57820
+ device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
57683
57821
  /** Array of device types by which to filter devices. */
57684
- device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
57822
+ device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
57685
57823
  /** Manufacturer by which to filter devices. */
57686
- manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
57824
+ manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles' | 'tado') | undefined;
57687
57825
  /** Array of device IDs by which to filter devices. */
57688
57826
  device_ids?: string[] | undefined;
57689
57827
  /** Numerical limit on the number of devices to return. */
@@ -57705,7 +57843,7 @@ interface Routes {
57705
57843
  /** Unique identifier for the device. */
57706
57844
  device_id: string;
57707
57845
  /** Type of the device. */
57708
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
57846
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
57709
57847
  /** Optional nickname to describe the device, settable through Seam */
57710
57848
  nickname?: string | undefined;
57711
57849
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -58016,6 +58154,10 @@ interface Routes {
58016
58154
  assa_abloy_vostio_metadata?: {
58017
58155
  encoder_name: string;
58018
58156
  } | undefined;
58157
+ tado_metadata?: {
58158
+ serial_no: string;
58159
+ device_type: string;
58160
+ } | undefined;
58019
58161
  }) & ({
58020
58162
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
58021
58163
  code_constraints?: (Array<{
@@ -58218,7 +58360,7 @@ interface Routes {
58218
58360
  /** Unique identifier for the device. */
58219
58361
  device_id: string;
58220
58362
  /** Type of the device. */
58221
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
58363
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
58222
58364
  /** Optional nickname to describe the device, settable through Seam */
58223
58365
  nickname?: string | undefined;
58224
58366
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -58529,6 +58671,10 @@ interface Routes {
58529
58671
  assa_abloy_vostio_metadata?: {
58530
58672
  encoder_name: string;
58531
58673
  } | undefined;
58674
+ tado_metadata?: {
58675
+ serial_no: string;
58676
+ device_type: string;
58677
+ } | undefined;
58532
58678
  }) & ({
58533
58679
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
58534
58680
  code_constraints?: (Array<{
@@ -58830,7 +58976,7 @@ interface Routes {
58830
58976
  guest_acs_entrance_ids?: string[] | undefined;
58831
58977
  common_acs_entrance_ids?: string[] | undefined;
58832
58978
  } | undefined;
58833
- };
58979
+ } | null;
58834
58980
  /** Matching acs_credential currently encoded on this card. */
58835
58981
  acs_credential_on_seam: ({
58836
58982
  /** ID of the credential. */
@@ -59006,7 +59152,7 @@ interface Routes {
59006
59152
  is_managed: false;
59007
59153
  }) | null;
59008
59154
  warnings: Array<{
59009
- warning_code: 'acs_credential_on_encoder_out_of_sync';
59155
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
59010
59156
  warning_message: string;
59011
59157
  }>;
59012
59158
  };
@@ -59878,7 +60024,7 @@ interface Routes {
59878
60024
  guest_acs_entrance_ids?: string[] | undefined;
59879
60025
  common_acs_entrance_ids?: string[] | undefined;
59880
60026
  } | undefined;
59881
- };
60027
+ } | null;
59882
60028
  /** Matching acs_credential currently encoded on this card. */
59883
60029
  acs_credential_on_seam: ({
59884
60030
  /** ID of the credential. */
@@ -60054,7 +60200,7 @@ interface Routes {
60054
60200
  is_managed: false;
60055
60201
  }) | null;
60056
60202
  warnings: Array<{
60057
- warning_code: 'acs_credential_on_encoder_out_of_sync';
60203
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
60058
60204
  warning_message: string;
60059
60205
  }>;
60060
60206
  };
@@ -60780,7 +60926,7 @@ interface Routes {
60780
60926
  guest_acs_entrance_ids?: string[] | undefined;
60781
60927
  common_acs_entrance_ids?: string[] | undefined;
60782
60928
  } | undefined;
60783
- };
60929
+ } | null;
60784
60930
  /** Matching acs_credential currently encoded on this card. */
60785
60931
  acs_credential_on_seam: ({
60786
60932
  /** ID of the credential. */
@@ -60956,7 +61102,7 @@ interface Routes {
60956
61102
  is_managed: false;
60957
61103
  }) | null;
60958
61104
  warnings: Array<{
60959
- warning_code: 'acs_credential_on_encoder_out_of_sync';
61105
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
60960
61106
  warning_message: string;
60961
61107
  }>;
60962
61108
  };
@@ -61848,7 +61994,7 @@ interface Routes {
61848
61994
  /** Unique identifier for the device. */
61849
61995
  device_id: string;
61850
61996
  /** Type of the device. */
61851
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
61997
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
61852
61998
  /** Optional nickname to describe the device, settable through Seam */
61853
61999
  nickname?: string | undefined;
61854
62000
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -62159,6 +62305,10 @@ interface Routes {
62159
62305
  assa_abloy_vostio_metadata?: {
62160
62306
  encoder_name: string;
62161
62307
  } | undefined;
62308
+ tado_metadata?: {
62309
+ serial_no: string;
62310
+ device_type: string;
62311
+ } | undefined;
62162
62312
  }) & ({
62163
62313
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
62164
62314
  code_constraints?: (Array<{
@@ -62363,7 +62513,7 @@ interface Routes {
62363
62513
  /** Unique identifier for the device. */
62364
62514
  device_id: string;
62365
62515
  /** Type of the device. */
62366
- device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone');
62516
+ device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
62367
62517
  /** Optional nickname to describe the device, settable through Seam */
62368
62518
  nickname?: string | undefined;
62369
62519
  /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -62674,6 +62824,10 @@ interface Routes {
62674
62824
  assa_abloy_vostio_metadata?: {
62675
62825
  encoder_name: string;
62676
62826
  } | undefined;
62827
+ tado_metadata?: {
62828
+ serial_no: string;
62829
+ device_type: string;
62830
+ } | undefined;
62677
62831
  }) & ({
62678
62832
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
62679
62833
  code_constraints?: (Array<{
@@ -62891,7 +63045,7 @@ interface Routes {
62891
63045
  /** ID of the `acs_system`. */
62892
63046
  acs_system_id: string;
62893
63047
  /** Brand-specific terminology for the `acs_system` type. */
62894
- 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;
63048
+ 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;
62895
63049
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
62896
63050
  external_type_display_name?: string | undefined;
62897
63051
  /** Indicates if the `acs_system` is a credential manager. */
@@ -62906,7 +63060,7 @@ interface Routes {
62906
63060
  } | undefined;
62907
63061
  /**
62908
63062
  * @deprecated Use `external_type`. */
62909
- 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;
63063
+ 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;
62910
63064
  /**
62911
63065
  * @deprecated Use `external_type_display_name`. */
62912
63066
  system_type_display_name?: string | undefined;
@@ -62978,6 +63132,13 @@ interface Routes {
62978
63132
  message: string;
62979
63133
  /** 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. */
62980
63134
  warning_code: 'salto_ks_subscription_limit_almost_reached';
63135
+ } | {
63136
+ /** Date and time at which Seam created the warning. */
63137
+ created_at: string;
63138
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
63139
+ message: string;
63140
+ /** 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. */
63141
+ warning_code: 'time_zone_does_not_match_location';
62981
63142
  }>;
62982
63143
  /** 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`. */
62983
63144
  can_automate_enrollment?: boolean | undefined;
@@ -63379,7 +63540,7 @@ interface Routes {
63379
63540
  guest_acs_entrance_ids?: string[] | undefined;
63380
63541
  common_acs_entrance_ids?: string[] | undefined;
63381
63542
  } | undefined;
63382
- };
63543
+ } | null;
63383
63544
  /** Matching acs_credential currently encoded on this card. */
63384
63545
  acs_credential_on_seam: ({
63385
63546
  /** ID of the credential. */
@@ -63555,7 +63716,7 @@ interface Routes {
63555
63716
  is_managed: false;
63556
63717
  }) | null;
63557
63718
  warnings: Array<{
63558
- warning_code: 'acs_credential_on_encoder_out_of_sync';
63719
+ warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
63559
63720
  warning_message: string;
63560
63721
  }>;
63561
63722
  };