@seamapi/types 1.307.0 → 1.309.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 (33) hide show
  1. package/dist/connect.cjs +72 -39
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +149 -113
  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/client-sessions/client-session.d.ts +3 -0
  11. package/lib/seam/connect/models/client-sessions/client-session.js +1 -0
  12. package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
  13. package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -10
  14. package/lib/seam/connect/models/devices/device-metadata.js +1 -2
  15. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  16. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  17. package/lib/seam/connect/models/devices/device-provider.js +2 -0
  18. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  19. package/lib/seam/connect/models/devices/device.d.ts +7 -14
  20. package/lib/seam/connect/models/devices/phone.d.ts +5 -10
  21. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -10
  22. package/lib/seam/connect/openapi.d.ts +24 -21
  23. package/lib/seam/connect/openapi.js +54 -29
  24. package/lib/seam/connect/openapi.js.map +1 -1
  25. package/lib/seam/connect/route-types.d.ts +64 -44
  26. package/package.json +1 -1
  27. package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -1
  28. package/src/lib/seam/connect/models/acs/acs-system.ts +15 -5
  29. package/src/lib/seam/connect/models/client-sessions/client-session.ts +1 -0
  30. package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -2
  31. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
  32. package/src/lib/seam/connect/openapi.ts +60 -32
  33. package/src/lib/seam/connect/route-types.ts +108 -66
@@ -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>;
@@ -5211,6 +5232,7 @@ declare const client_session: z.ZodObject<{
5211
5232
  client_session_id: z.ZodString;
5212
5233
  workspace_id: z.ZodString;
5213
5234
  created_at: z.ZodString;
5235
+ expires_at: z.ZodString;
5214
5236
  token: z.ZodString;
5215
5237
  user_identifier_key: z.ZodNullable<z.ZodString>;
5216
5238
  device_count: z.ZodNumber;
@@ -5222,6 +5244,7 @@ declare const client_session: z.ZodObject<{
5222
5244
  workspace_id: string;
5223
5245
  connected_account_ids: string[];
5224
5246
  client_session_id: string;
5247
+ expires_at: string;
5225
5248
  token: string;
5226
5249
  user_identifier_key: string | null;
5227
5250
  device_count: number;
@@ -5232,6 +5255,7 @@ declare const client_session: z.ZodObject<{
5232
5255
  workspace_id: string;
5233
5256
  connected_account_ids: string[];
5234
5257
  client_session_id: string;
5258
+ expires_at: string;
5235
5259
  token: string;
5236
5260
  user_identifier_key: string | null;
5237
5261
  device_count: number;
@@ -6379,16 +6403,13 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
6379
6403
  encoder_name: string;
6380
6404
  }>>;
6381
6405
  tado_metadata: z.ZodOptional<z.ZodObject<{
6382
- serial_number: z.ZodString;
6383
- device_name: z.ZodString;
6406
+ serial_no: z.ZodString;
6384
6407
  device_type: z.ZodString;
6385
6408
  }, "strip", z.ZodTypeAny, {
6386
- device_name: string;
6387
- serial_number: string;
6409
+ serial_no: string;
6388
6410
  device_type: string;
6389
6411
  }, {
6390
- device_name: string;
6391
- serial_number: string;
6412
+ serial_no: string;
6392
6413
  device_type: string;
6393
6414
  }>>;
6394
6415
  }, "strip", z.ZodTypeAny, {
@@ -6615,8 +6636,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
6615
6636
  encoder_name: string;
6616
6637
  } | undefined;
6617
6638
  tado_metadata?: {
6618
- device_name: string;
6619
- serial_number: string;
6639
+ serial_no: string;
6620
6640
  device_type: string;
6621
6641
  } | undefined;
6622
6642
  }, {
@@ -6843,8 +6863,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
6843
6863
  encoder_name: string;
6844
6864
  } | undefined;
6845
6865
  tado_metadata?: {
6846
- device_name: string;
6847
- serial_number: string;
6866
+ serial_no: string;
6848
6867
  device_type: string;
6849
6868
  } | undefined;
6850
6869
  }>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
@@ -7631,8 +7650,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
7631
7650
  encoder_name: string;
7632
7651
  } | undefined;
7633
7652
  tado_metadata?: {
7634
- device_name: string;
7635
- serial_number: string;
7653
+ serial_no: string;
7636
7654
  device_type: string;
7637
7655
  } | undefined;
7638
7656
  } & {
@@ -8044,8 +8062,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
8044
8062
  encoder_name: string;
8045
8063
  } | undefined;
8046
8064
  tado_metadata?: {
8047
- device_name: string;
8048
- serial_number: string;
8065
+ serial_no: string;
8049
8066
  device_type: string;
8050
8067
  } | undefined;
8051
8068
  } & {
@@ -8215,6 +8232,7 @@ declare const DEVICE_PROVIDERS: {
8215
8232
  readonly VOSTIO: "assa_abloy_vostio";
8216
8233
  readonly ASSA_ABLOY_VOSTIO_CREDENTIAL_SERVICE: "assa_abloy_vostio_credential_service";
8217
8234
  readonly TADO: "tado";
8235
+ readonly SALTO_SPACE: "salto_space";
8218
8236
  };
8219
8237
  type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
8220
8238
  declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
@@ -9189,16 +9207,13 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
9189
9207
  encoder_name: string;
9190
9208
  }>>;
9191
9209
  tado_metadata: z.ZodOptional<z.ZodObject<{
9192
- serial_number: z.ZodString;
9193
- device_name: z.ZodString;
9210
+ serial_no: z.ZodString;
9194
9211
  device_type: z.ZodString;
9195
9212
  }, "strip", z.ZodTypeAny, {
9196
- device_name: string;
9197
- serial_number: string;
9213
+ serial_no: string;
9198
9214
  device_type: string;
9199
9215
  }, {
9200
- device_name: string;
9201
- serial_number: string;
9216
+ serial_no: string;
9202
9217
  device_type: string;
9203
9218
  }>>;
9204
9219
  }, "strip", z.ZodTypeAny, {
@@ -9425,8 +9440,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
9425
9440
  encoder_name: string;
9426
9441
  } | undefined;
9427
9442
  tado_metadata?: {
9428
- device_name: string;
9429
- serial_number: string;
9443
+ serial_no: string;
9430
9444
  device_type: string;
9431
9445
  } | undefined;
9432
9446
  }, {
@@ -9653,8 +9667,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
9653
9667
  encoder_name: string;
9654
9668
  } | undefined;
9655
9669
  tado_metadata?: {
9656
- device_name: string;
9657
- serial_number: string;
9670
+ serial_no: string;
9658
9671
  device_type: string;
9659
9672
  } | undefined;
9660
9673
  }>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
@@ -13441,24 +13454,26 @@ declare const _default: {
13441
13454
  description: string;
13442
13455
  items: {
13443
13456
  description: string;
13444
- properties: {
13445
- created_at: {
13446
- description: string;
13447
- format: string;
13448
- type: string;
13449
- };
13450
- message: {
13451
- description: string;
13452
- type: string;
13453
- };
13454
- warning_code: {
13455
- description: string;
13456
- enum: string[];
13457
- type: string;
13457
+ oneOf: {
13458
+ properties: {
13459
+ created_at: {
13460
+ description: string;
13461
+ format: string;
13462
+ type: string;
13463
+ };
13464
+ message: {
13465
+ description: string;
13466
+ type: string;
13467
+ };
13468
+ warning_code: {
13469
+ description: string;
13470
+ enum: string[];
13471
+ type: string;
13472
+ };
13458
13473
  };
13459
- };
13460
- required: string[];
13461
- type: string;
13474
+ required: string[];
13475
+ type: string;
13476
+ }[];
13462
13477
  };
13463
13478
  type: string;
13464
13479
  };
@@ -14604,6 +14619,10 @@ declare const _default: {
14604
14619
  format: string;
14605
14620
  type: string;
14606
14621
  };
14622
+ expires_at: {
14623
+ format: string;
14624
+ type: string;
14625
+ };
14607
14626
  token: {
14608
14627
  type: string;
14609
14628
  };
@@ -15733,13 +15752,10 @@ declare const _default: {
15733
15752
  };
15734
15753
  tado_metadata: {
15735
15754
  properties: {
15736
- device_name: {
15737
- type: string;
15738
- };
15739
15755
  device_type: {
15740
15756
  type: string;
15741
15757
  };
15742
- serial_number: {
15758
+ serial_no: {
15743
15759
  type: string;
15744
15760
  };
15745
15761
  };
@@ -37666,13 +37682,13 @@ interface Routes {
37666
37682
  name: string;
37667
37683
  /**
37668
37684
  * @deprecated Use `external_type`. */
37669
- access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37685
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37670
37686
  /**
37671
37687
  * @deprecated Use `external_type_display_name`. */
37672
37688
  access_group_type_display_name: string;
37673
37689
  display_name: string;
37674
37690
  /** Brand-specific terminology for the access group type. */
37675
- external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37691
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37676
37692
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
37677
37693
  external_type_display_name: string;
37678
37694
  /** Date and time at which the access group was created. */
@@ -37705,13 +37721,13 @@ interface Routes {
37705
37721
  name: string;
37706
37722
  /**
37707
37723
  * @deprecated Use `external_type`. */
37708
- access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37724
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37709
37725
  /**
37710
37726
  * @deprecated Use `external_type_display_name`. */
37711
37727
  access_group_type_display_name: string;
37712
37728
  display_name: string;
37713
37729
  /** Brand-specific terminology for the access group type. */
37714
- external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37730
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37715
37731
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
37716
37732
  external_type_display_name: string;
37717
37733
  /** Date and time at which the access group was created. */
@@ -37920,13 +37936,13 @@ interface Routes {
37920
37936
  name: string;
37921
37937
  /**
37922
37938
  * @deprecated Use `external_type`. */
37923
- access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37939
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37924
37940
  /**
37925
37941
  * @deprecated Use `external_type_display_name`. */
37926
37942
  access_group_type_display_name: string;
37927
37943
  display_name: string;
37928
37944
  /** Brand-specific terminology for the access group type. */
37929
- external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37945
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37930
37946
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
37931
37947
  external_type_display_name: string;
37932
37948
  /** Date and time at which the access group was created. */
@@ -37959,13 +37975,13 @@ interface Routes {
37959
37975
  name: string;
37960
37976
  /**
37961
37977
  * @deprecated Use `external_type`. */
37962
- access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37978
+ access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37963
37979
  /**
37964
37980
  * @deprecated Use `external_type_display_name`. */
37965
37981
  access_group_type_display_name: string;
37966
37982
  display_name: string;
37967
37983
  /** Brand-specific terminology for the access group type. */
37968
- external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
37984
+ external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
37969
37985
  /** Display name that corresponds to the brand-specific terminology for the access group type. */
37970
37986
  external_type_display_name: string;
37971
37987
  /** Date and time at which the access group was created. */
@@ -41128,7 +41144,7 @@ interface Routes {
41128
41144
  /** ID of the `acs_system`. */
41129
41145
  acs_system_id: string;
41130
41146
  /** Brand-specific terminology for the `acs_system` type. */
41131
- 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;
41147
+ 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;
41132
41148
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
41133
41149
  external_type_display_name?: string | undefined;
41134
41150
  /** Indicates if the `acs_system` is a credential manager. */
@@ -41143,7 +41159,7 @@ interface Routes {
41143
41159
  } | undefined;
41144
41160
  /**
41145
41161
  * @deprecated Use `external_type`. */
41146
- 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;
41162
+ 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;
41147
41163
  /**
41148
41164
  * @deprecated Use `external_type_display_name`. */
41149
41165
  system_type_display_name?: string | undefined;
@@ -41215,6 +41231,13 @@ interface Routes {
41215
41231
  message: string;
41216
41232
  /** 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. */
41217
41233
  warning_code: 'salto_ks_subscription_limit_almost_reached';
41234
+ } | {
41235
+ /** Date and time at which Seam created the warning. */
41236
+ created_at: string;
41237
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
41238
+ message: string;
41239
+ /** 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. */
41240
+ warning_code: 'time_zone_does_not_match_location';
41218
41241
  }>;
41219
41242
  /** 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`. */
41220
41243
  can_automate_enrollment?: boolean | undefined;
@@ -41244,7 +41267,7 @@ interface Routes {
41244
41267
  /** ID of the `acs_system`. */
41245
41268
  acs_system_id: string;
41246
41269
  /** Brand-specific terminology for the `acs_system` type. */
41247
- 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;
41270
+ 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;
41248
41271
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
41249
41272
  external_type_display_name?: string | undefined;
41250
41273
  /** Indicates if the `acs_system` is a credential manager. */
@@ -41259,7 +41282,7 @@ interface Routes {
41259
41282
  } | undefined;
41260
41283
  /**
41261
41284
  * @deprecated Use `external_type`. */
41262
- 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;
41285
+ 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;
41263
41286
  /**
41264
41287
  * @deprecated Use `external_type_display_name`. */
41265
41288
  system_type_display_name?: string | undefined;
@@ -41331,6 +41354,13 @@ interface Routes {
41331
41354
  message: string;
41332
41355
  /** 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. */
41333
41356
  warning_code: 'salto_ks_subscription_limit_almost_reached';
41357
+ } | {
41358
+ /** Date and time at which Seam created the warning. */
41359
+ created_at: string;
41360
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
41361
+ message: string;
41362
+ /** 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. */
41363
+ warning_code: 'time_zone_does_not_match_location';
41334
41364
  }>;
41335
41365
  /** 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`. */
41336
41366
  can_automate_enrollment?: boolean | undefined;
@@ -41360,7 +41390,7 @@ interface Routes {
41360
41390
  /** ID of the `acs_system`. */
41361
41391
  acs_system_id: string;
41362
41392
  /** Brand-specific terminology for the `acs_system` type. */
41363
- 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;
41393
+ 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;
41364
41394
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
41365
41395
  external_type_display_name?: string | undefined;
41366
41396
  /** Indicates if the `acs_system` is a credential manager. */
@@ -41375,7 +41405,7 @@ interface Routes {
41375
41405
  } | undefined;
41376
41406
  /**
41377
41407
  * @deprecated Use `external_type`. */
41378
- 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;
41408
+ 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;
41379
41409
  /**
41380
41410
  * @deprecated Use `external_type_display_name`. */
41381
41411
  system_type_display_name?: string | undefined;
@@ -41447,6 +41477,13 @@ interface Routes {
41447
41477
  message: string;
41448
41478
  /** 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. */
41449
41479
  warning_code: 'salto_ks_subscription_limit_almost_reached';
41480
+ } | {
41481
+ /** Date and time at which Seam created the warning. */
41482
+ created_at: string;
41483
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
41484
+ message: string;
41485
+ /** 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. */
41486
+ warning_code: 'time_zone_does_not_match_location';
41450
41487
  }>;
41451
41488
  /** 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`. */
41452
41489
  can_automate_enrollment?: boolean | undefined;
@@ -43931,6 +43968,7 @@ interface Routes {
43931
43968
  client_session_id: string;
43932
43969
  workspace_id: string;
43933
43970
  created_at: string;
43971
+ expires_at: string;
43934
43972
  token: string;
43935
43973
  user_identifier_key: string | null;
43936
43974
  device_count: number;
@@ -43966,6 +44004,7 @@ interface Routes {
43966
44004
  client_session_id: string;
43967
44005
  workspace_id: string;
43968
44006
  created_at: string;
44007
+ expires_at: string;
43969
44008
  token: string;
43970
44009
  user_identifier_key: string | null;
43971
44010
  device_count: number;
@@ -43993,6 +44032,7 @@ interface Routes {
43993
44032
  client_session_id: string;
43994
44033
  workspace_id: string;
43995
44034
  created_at: string;
44035
+ expires_at: string;
43996
44036
  token: string;
43997
44037
  user_identifier_key: string | null;
43998
44038
  device_count: number;
@@ -44020,6 +44060,7 @@ interface Routes {
44020
44060
  client_session_id: string;
44021
44061
  workspace_id: string;
44022
44062
  created_at: string;
44063
+ expires_at: string;
44023
44064
  token: string;
44024
44065
  user_identifier_key: string | null;
44025
44066
  device_count: number;
@@ -44047,6 +44088,7 @@ interface Routes {
44047
44088
  client_session_id: string;
44048
44089
  workspace_id: string;
44049
44090
  created_at: string;
44091
+ expires_at: string;
44050
44092
  token: string;
44051
44093
  user_identifier_key: string | null;
44052
44094
  device_count: number;
@@ -44075,7 +44117,7 @@ interface Routes {
44075
44117
  device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
44076
44118
  custom_redirect_url?: string | undefined;
44077
44119
  custom_redirect_failure_url?: string | undefined;
44078
- 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;
44120
+ 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;
44079
44121
  provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
44080
44122
  custom_metadata?: Record<string, string | boolean | null> | undefined;
44081
44123
  automatically_manage_new_devices?: boolean;
@@ -44665,8 +44707,7 @@ interface Routes {
44665
44707
  encoder_name: string;
44666
44708
  } | undefined;
44667
44709
  tado_metadata?: {
44668
- serial_number: string;
44669
- device_name: string;
44710
+ serial_no: string;
44670
44711
  device_type: string;
44671
44712
  } | undefined;
44672
44713
  }) & ({
@@ -45220,8 +45261,7 @@ interface Routes {
45220
45261
  encoder_name: string;
45221
45262
  } | undefined;
45222
45263
  tado_metadata?: {
45223
- serial_number: string;
45224
- device_name: string;
45264
+ serial_no: string;
45225
45265
  device_type: string;
45226
45266
  } | undefined;
45227
45267
  }) & ({
@@ -45435,7 +45475,7 @@ interface Routes {
45435
45475
  formData: {};
45436
45476
  jsonResponse: {
45437
45477
  device_providers: Array<{
45438
- 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';
45478
+ 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';
45439
45479
  display_name: string;
45440
45480
  image_url: string;
45441
45481
  provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
@@ -46178,8 +46218,7 @@ interface Routes {
46178
46218
  encoder_name: string;
46179
46219
  } | undefined;
46180
46220
  tado_metadata?: {
46181
- serial_number: string;
46182
- device_name: string;
46221
+ serial_no: string;
46183
46222
  device_type: string;
46184
46223
  } | undefined;
46185
46224
  }) & ({
@@ -46696,8 +46735,7 @@ interface Routes {
46696
46735
  encoder_name: string;
46697
46736
  } | undefined;
46698
46737
  tado_metadata?: {
46699
- serial_number: string;
46700
- device_name: string;
46738
+ serial_no: string;
46701
46739
  device_type: string;
46702
46740
  } | undefined;
46703
46741
  }) & ({
@@ -47251,8 +47289,7 @@ interface Routes {
47251
47289
  encoder_name: string;
47252
47290
  } | undefined;
47253
47291
  tado_metadata?: {
47254
- serial_number: string;
47255
- device_name: string;
47292
+ serial_no: string;
47256
47293
  device_type: string;
47257
47294
  } | undefined;
47258
47295
  }) & ({
@@ -47769,8 +47806,7 @@ interface Routes {
47769
47806
  encoder_name: string;
47770
47807
  } | undefined;
47771
47808
  tado_metadata?: {
47772
- serial_number: string;
47773
- device_name: string;
47809
+ serial_no: string;
47774
47810
  device_type: string;
47775
47811
  } | undefined;
47776
47812
  }) & ({
@@ -50104,8 +50140,7 @@ interface Routes {
50104
50140
  encoder_name: string;
50105
50141
  } | undefined;
50106
50142
  tado_metadata?: {
50107
- serial_number: string;
50108
- device_name: string;
50143
+ serial_no: string;
50109
50144
  device_type: string;
50110
50145
  } | undefined;
50111
50146
  }) & ({
@@ -50622,8 +50657,7 @@ interface Routes {
50622
50657
  encoder_name: string;
50623
50658
  } | undefined;
50624
50659
  tado_metadata?: {
50625
- serial_number: string;
50626
- device_name: string;
50660
+ serial_no: string;
50627
50661
  device_type: string;
50628
50662
  } | undefined;
50629
50663
  }) & ({
@@ -55817,8 +55851,7 @@ interface Routes {
55817
55851
  encoder_name: string;
55818
55852
  } | undefined;
55819
55853
  tado_metadata?: {
55820
- serial_number: string;
55821
- device_name: string;
55854
+ serial_no: string;
55822
55855
  device_type: string;
55823
55856
  } | undefined;
55824
55857
  }) & ({
@@ -58134,8 +58167,7 @@ interface Routes {
58134
58167
  encoder_name: string;
58135
58168
  } | undefined;
58136
58169
  tado_metadata?: {
58137
- serial_number: string;
58138
- device_name: string;
58170
+ serial_no: string;
58139
58171
  device_type: string;
58140
58172
  } | undefined;
58141
58173
  }) & ({
@@ -58652,8 +58684,7 @@ interface Routes {
58652
58684
  encoder_name: string;
58653
58685
  } | undefined;
58654
58686
  tado_metadata?: {
58655
- serial_number: string;
58656
- device_name: string;
58687
+ serial_no: string;
58657
58688
  device_type: string;
58658
58689
  } | undefined;
58659
58690
  }) & ({
@@ -62287,8 +62318,7 @@ interface Routes {
62287
62318
  encoder_name: string;
62288
62319
  } | undefined;
62289
62320
  tado_metadata?: {
62290
- serial_number: string;
62291
- device_name: string;
62321
+ serial_no: string;
62292
62322
  device_type: string;
62293
62323
  } | undefined;
62294
62324
  }) & ({
@@ -62807,8 +62837,7 @@ interface Routes {
62807
62837
  encoder_name: string;
62808
62838
  } | undefined;
62809
62839
  tado_metadata?: {
62810
- serial_number: string;
62811
- device_name: string;
62840
+ serial_no: string;
62812
62841
  device_type: string;
62813
62842
  } | undefined;
62814
62843
  }) & ({
@@ -63028,7 +63057,7 @@ interface Routes {
63028
63057
  /** ID of the `acs_system`. */
63029
63058
  acs_system_id: string;
63030
63059
  /** Brand-specific terminology for the `acs_system` type. */
63031
- 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;
63060
+ 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;
63032
63061
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
63033
63062
  external_type_display_name?: string | undefined;
63034
63063
  /** Indicates if the `acs_system` is a credential manager. */
@@ -63043,7 +63072,7 @@ interface Routes {
63043
63072
  } | undefined;
63044
63073
  /**
63045
63074
  * @deprecated Use `external_type`. */
63046
- 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;
63075
+ 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;
63047
63076
  /**
63048
63077
  * @deprecated Use `external_type_display_name`. */
63049
63078
  system_type_display_name?: string | undefined;
@@ -63115,6 +63144,13 @@ interface Routes {
63115
63144
  message: string;
63116
63145
  /** 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. */
63117
63146
  warning_code: 'salto_ks_subscription_limit_almost_reached';
63147
+ } | {
63148
+ /** Date and time at which Seam created the warning. */
63149
+ created_at: string;
63150
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
63151
+ message: string;
63152
+ /** 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. */
63153
+ warning_code: 'time_zone_does_not_match_location';
63118
63154
  }>;
63119
63155
  /** 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`. */
63120
63156
  can_automate_enrollment?: boolean | undefined;