@seamapi/types 1.307.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.
- package/dist/connect.cjs +69 -39
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +137 -113
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +13 -13
- package/lib/seam/connect/models/acs/acs-access-group.js +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +34 -13
- package/lib/seam/connect/models/acs/acs-system.js +11 -4
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -10
- package/lib/seam/connect/models/devices/device-metadata.js +1 -2
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -14
- package/lib/seam/connect/models/devices/phone.d.ts +5 -10
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -10
- package/lib/seam/connect/openapi.d.ts +20 -21
- package/lib/seam/connect/openapi.js +52 -29
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +59 -44
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +15 -5
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -2
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +58 -32
- package/src/lib/seam/connect/route-types.ts +103 -66
package/dist/connect.d.cts
CHANGED
|
@@ -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", "
|
|
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", "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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", "
|
|
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", "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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
|
-
}>,
|
|
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>;
|
|
@@ -6379,16 +6400,13 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6379
6400
|
encoder_name: string;
|
|
6380
6401
|
}>>;
|
|
6381
6402
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
6382
|
-
|
|
6383
|
-
device_name: z.ZodString;
|
|
6403
|
+
serial_no: z.ZodString;
|
|
6384
6404
|
device_type: z.ZodString;
|
|
6385
6405
|
}, "strip", z.ZodTypeAny, {
|
|
6386
|
-
|
|
6387
|
-
serial_number: string;
|
|
6406
|
+
serial_no: string;
|
|
6388
6407
|
device_type: string;
|
|
6389
6408
|
}, {
|
|
6390
|
-
|
|
6391
|
-
serial_number: string;
|
|
6409
|
+
serial_no: string;
|
|
6392
6410
|
device_type: string;
|
|
6393
6411
|
}>>;
|
|
6394
6412
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6615,8 +6633,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6615
6633
|
encoder_name: string;
|
|
6616
6634
|
} | undefined;
|
|
6617
6635
|
tado_metadata?: {
|
|
6618
|
-
|
|
6619
|
-
serial_number: string;
|
|
6636
|
+
serial_no: string;
|
|
6620
6637
|
device_type: string;
|
|
6621
6638
|
} | undefined;
|
|
6622
6639
|
}, {
|
|
@@ -6843,8 +6860,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6843
6860
|
encoder_name: string;
|
|
6844
6861
|
} | undefined;
|
|
6845
6862
|
tado_metadata?: {
|
|
6846
|
-
|
|
6847
|
-
serial_number: string;
|
|
6863
|
+
serial_no: string;
|
|
6848
6864
|
device_type: string;
|
|
6849
6865
|
} | undefined;
|
|
6850
6866
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -7631,8 +7647,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7631
7647
|
encoder_name: string;
|
|
7632
7648
|
} | undefined;
|
|
7633
7649
|
tado_metadata?: {
|
|
7634
|
-
|
|
7635
|
-
serial_number: string;
|
|
7650
|
+
serial_no: string;
|
|
7636
7651
|
device_type: string;
|
|
7637
7652
|
} | undefined;
|
|
7638
7653
|
} & {
|
|
@@ -8044,8 +8059,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8044
8059
|
encoder_name: string;
|
|
8045
8060
|
} | undefined;
|
|
8046
8061
|
tado_metadata?: {
|
|
8047
|
-
|
|
8048
|
-
serial_number: string;
|
|
8062
|
+
serial_no: string;
|
|
8049
8063
|
device_type: string;
|
|
8050
8064
|
} | undefined;
|
|
8051
8065
|
} & {
|
|
@@ -8215,6 +8229,7 @@ declare const DEVICE_PROVIDERS: {
|
|
|
8215
8229
|
readonly VOSTIO: "assa_abloy_vostio";
|
|
8216
8230
|
readonly ASSA_ABLOY_VOSTIO_CREDENTIAL_SERVICE: "assa_abloy_vostio_credential_service";
|
|
8217
8231
|
readonly TADO: "tado";
|
|
8232
|
+
readonly SALTO_SPACE: "salto_space";
|
|
8218
8233
|
};
|
|
8219
8234
|
type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
|
|
8220
8235
|
declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -9189,16 +9204,13 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9189
9204
|
encoder_name: string;
|
|
9190
9205
|
}>>;
|
|
9191
9206
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
9192
|
-
|
|
9193
|
-
device_name: z.ZodString;
|
|
9207
|
+
serial_no: z.ZodString;
|
|
9194
9208
|
device_type: z.ZodString;
|
|
9195
9209
|
}, "strip", z.ZodTypeAny, {
|
|
9196
|
-
|
|
9197
|
-
serial_number: string;
|
|
9210
|
+
serial_no: string;
|
|
9198
9211
|
device_type: string;
|
|
9199
9212
|
}, {
|
|
9200
|
-
|
|
9201
|
-
serial_number: string;
|
|
9213
|
+
serial_no: string;
|
|
9202
9214
|
device_type: string;
|
|
9203
9215
|
}>>;
|
|
9204
9216
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9425,8 +9437,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9425
9437
|
encoder_name: string;
|
|
9426
9438
|
} | undefined;
|
|
9427
9439
|
tado_metadata?: {
|
|
9428
|
-
|
|
9429
|
-
serial_number: string;
|
|
9440
|
+
serial_no: string;
|
|
9430
9441
|
device_type: string;
|
|
9431
9442
|
} | undefined;
|
|
9432
9443
|
}, {
|
|
@@ -9653,8 +9664,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9653
9664
|
encoder_name: string;
|
|
9654
9665
|
} | undefined;
|
|
9655
9666
|
tado_metadata?: {
|
|
9656
|
-
|
|
9657
|
-
serial_number: string;
|
|
9667
|
+
serial_no: string;
|
|
9658
9668
|
device_type: string;
|
|
9659
9669
|
} | undefined;
|
|
9660
9670
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -13441,24 +13451,26 @@ declare const _default: {
|
|
|
13441
13451
|
description: string;
|
|
13442
13452
|
items: {
|
|
13443
13453
|
description: string;
|
|
13444
|
-
|
|
13445
|
-
|
|
13446
|
-
|
|
13447
|
-
|
|
13448
|
-
|
|
13449
|
-
|
|
13450
|
-
|
|
13451
|
-
|
|
13452
|
-
|
|
13453
|
-
|
|
13454
|
-
|
|
13455
|
-
|
|
13456
|
-
|
|
13457
|
-
|
|
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
|
+
};
|
|
13458
13470
|
};
|
|
13459
|
-
|
|
13460
|
-
|
|
13461
|
-
|
|
13471
|
+
required: string[];
|
|
13472
|
+
type: string;
|
|
13473
|
+
}[];
|
|
13462
13474
|
};
|
|
13463
13475
|
type: string;
|
|
13464
13476
|
};
|
|
@@ -15733,13 +15745,10 @@ declare const _default: {
|
|
|
15733
15745
|
};
|
|
15734
15746
|
tado_metadata: {
|
|
15735
15747
|
properties: {
|
|
15736
|
-
device_name: {
|
|
15737
|
-
type: string;
|
|
15738
|
-
};
|
|
15739
15748
|
device_type: {
|
|
15740
15749
|
type: string;
|
|
15741
15750
|
};
|
|
15742
|
-
|
|
15751
|
+
serial_no: {
|
|
15743
15752
|
type: string;
|
|
15744
15753
|
};
|
|
15745
15754
|
};
|
|
@@ -37666,13 +37675,13 @@ interface Routes {
|
|
|
37666
37675
|
name: string;
|
|
37667
37676
|
/**
|
|
37668
37677
|
* @deprecated Use `external_type`. */
|
|
37669
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | '
|
|
37678
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
|
|
37670
37679
|
/**
|
|
37671
37680
|
* @deprecated Use `external_type_display_name`. */
|
|
37672
37681
|
access_group_type_display_name: string;
|
|
37673
37682
|
display_name: string;
|
|
37674
37683
|
/** Brand-specific terminology for the access group type. */
|
|
37675
|
-
external_type: 'pti_unit' | 'pti_access_level' | '
|
|
37684
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
|
|
37676
37685
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
37677
37686
|
external_type_display_name: string;
|
|
37678
37687
|
/** Date and time at which the access group was created. */
|
|
@@ -37705,13 +37714,13 @@ interface Routes {
|
|
|
37705
37714
|
name: string;
|
|
37706
37715
|
/**
|
|
37707
37716
|
* @deprecated Use `external_type`. */
|
|
37708
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | '
|
|
37717
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
|
|
37709
37718
|
/**
|
|
37710
37719
|
* @deprecated Use `external_type_display_name`. */
|
|
37711
37720
|
access_group_type_display_name: string;
|
|
37712
37721
|
display_name: string;
|
|
37713
37722
|
/** Brand-specific terminology for the access group type. */
|
|
37714
|
-
external_type: 'pti_unit' | 'pti_access_level' | '
|
|
37723
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
|
|
37715
37724
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
37716
37725
|
external_type_display_name: string;
|
|
37717
37726
|
/** Date and time at which the access group was created. */
|
|
@@ -37920,13 +37929,13 @@ interface Routes {
|
|
|
37920
37929
|
name: string;
|
|
37921
37930
|
/**
|
|
37922
37931
|
* @deprecated Use `external_type`. */
|
|
37923
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | '
|
|
37932
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
|
|
37924
37933
|
/**
|
|
37925
37934
|
* @deprecated Use `external_type_display_name`. */
|
|
37926
37935
|
access_group_type_display_name: string;
|
|
37927
37936
|
display_name: string;
|
|
37928
37937
|
/** Brand-specific terminology for the access group type. */
|
|
37929
|
-
external_type: 'pti_unit' | 'pti_access_level' | '
|
|
37938
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
|
|
37930
37939
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
37931
37940
|
external_type_display_name: string;
|
|
37932
37941
|
/** Date and time at which the access group was created. */
|
|
@@ -37959,13 +37968,13 @@ interface Routes {
|
|
|
37959
37968
|
name: string;
|
|
37960
37969
|
/**
|
|
37961
37970
|
* @deprecated Use `external_type`. */
|
|
37962
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | '
|
|
37971
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
|
|
37963
37972
|
/**
|
|
37964
37973
|
* @deprecated Use `external_type_display_name`. */
|
|
37965
37974
|
access_group_type_display_name: string;
|
|
37966
37975
|
display_name: string;
|
|
37967
37976
|
/** Brand-specific terminology for the access group type. */
|
|
37968
|
-
external_type: 'pti_unit' | 'pti_access_level' | '
|
|
37977
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group';
|
|
37969
37978
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
37970
37979
|
external_type_display_name: string;
|
|
37971
37980
|
/** Date and time at which the access group was created. */
|
|
@@ -41128,7 +41137,7 @@ interface Routes {
|
|
|
41128
41137
|
/** ID of the `acs_system`. */
|
|
41129
41138
|
acs_system_id: string;
|
|
41130
41139
|
/** 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;
|
|
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;
|
|
41132
41141
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
41133
41142
|
external_type_display_name?: string | undefined;
|
|
41134
41143
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -41143,7 +41152,7 @@ interface Routes {
|
|
|
41143
41152
|
} | undefined;
|
|
41144
41153
|
/**
|
|
41145
41154
|
* @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;
|
|
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;
|
|
41147
41156
|
/**
|
|
41148
41157
|
* @deprecated Use `external_type_display_name`. */
|
|
41149
41158
|
system_type_display_name?: string | undefined;
|
|
@@ -41215,6 +41224,13 @@ interface Routes {
|
|
|
41215
41224
|
message: string;
|
|
41216
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. */
|
|
41217
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';
|
|
41218
41234
|
}>;
|
|
41219
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`. */
|
|
41220
41236
|
can_automate_enrollment?: boolean | undefined;
|
|
@@ -41244,7 +41260,7 @@ interface Routes {
|
|
|
41244
41260
|
/** ID of the `acs_system`. */
|
|
41245
41261
|
acs_system_id: string;
|
|
41246
41262
|
/** 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;
|
|
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;
|
|
41248
41264
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
41249
41265
|
external_type_display_name?: string | undefined;
|
|
41250
41266
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -41259,7 +41275,7 @@ interface Routes {
|
|
|
41259
41275
|
} | undefined;
|
|
41260
41276
|
/**
|
|
41261
41277
|
* @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;
|
|
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;
|
|
41263
41279
|
/**
|
|
41264
41280
|
* @deprecated Use `external_type_display_name`. */
|
|
41265
41281
|
system_type_display_name?: string | undefined;
|
|
@@ -41331,6 +41347,13 @@ interface Routes {
|
|
|
41331
41347
|
message: string;
|
|
41332
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. */
|
|
41333
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';
|
|
41334
41357
|
}>;
|
|
41335
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`. */
|
|
41336
41359
|
can_automate_enrollment?: boolean | undefined;
|
|
@@ -41360,7 +41383,7 @@ interface Routes {
|
|
|
41360
41383
|
/** ID of the `acs_system`. */
|
|
41361
41384
|
acs_system_id: string;
|
|
41362
41385
|
/** 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;
|
|
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;
|
|
41364
41387
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
41365
41388
|
external_type_display_name?: string | undefined;
|
|
41366
41389
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -41375,7 +41398,7 @@ interface Routes {
|
|
|
41375
41398
|
} | undefined;
|
|
41376
41399
|
/**
|
|
41377
41400
|
* @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;
|
|
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;
|
|
41379
41402
|
/**
|
|
41380
41403
|
* @deprecated Use `external_type_display_name`. */
|
|
41381
41404
|
system_type_display_name?: string | undefined;
|
|
@@ -41447,6 +41470,13 @@ interface Routes {
|
|
|
41447
41470
|
message: string;
|
|
41448
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. */
|
|
41449
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';
|
|
41450
41480
|
}>;
|
|
41451
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`. */
|
|
41452
41482
|
can_automate_enrollment?: boolean | undefined;
|
|
@@ -44075,7 +44105,7 @@ interface Routes {
|
|
|
44075
44105
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
44076
44106
|
custom_redirect_url?: string | undefined;
|
|
44077
44107
|
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;
|
|
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;
|
|
44079
44109
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
44080
44110
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
44081
44111
|
automatically_manage_new_devices?: boolean;
|
|
@@ -44665,8 +44695,7 @@ interface Routes {
|
|
|
44665
44695
|
encoder_name: string;
|
|
44666
44696
|
} | undefined;
|
|
44667
44697
|
tado_metadata?: {
|
|
44668
|
-
|
|
44669
|
-
device_name: string;
|
|
44698
|
+
serial_no: string;
|
|
44670
44699
|
device_type: string;
|
|
44671
44700
|
} | undefined;
|
|
44672
44701
|
}) & ({
|
|
@@ -45220,8 +45249,7 @@ interface Routes {
|
|
|
45220
45249
|
encoder_name: string;
|
|
45221
45250
|
} | undefined;
|
|
45222
45251
|
tado_metadata?: {
|
|
45223
|
-
|
|
45224
|
-
device_name: string;
|
|
45252
|
+
serial_no: string;
|
|
45225
45253
|
device_type: string;
|
|
45226
45254
|
} | undefined;
|
|
45227
45255
|
}) & ({
|
|
@@ -45435,7 +45463,7 @@ interface Routes {
|
|
|
45435
45463
|
formData: {};
|
|
45436
45464
|
jsonResponse: {
|
|
45437
45465
|
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';
|
|
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';
|
|
45439
45467
|
display_name: string;
|
|
45440
45468
|
image_url: string;
|
|
45441
45469
|
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
@@ -46178,8 +46206,7 @@ interface Routes {
|
|
|
46178
46206
|
encoder_name: string;
|
|
46179
46207
|
} | undefined;
|
|
46180
46208
|
tado_metadata?: {
|
|
46181
|
-
|
|
46182
|
-
device_name: string;
|
|
46209
|
+
serial_no: string;
|
|
46183
46210
|
device_type: string;
|
|
46184
46211
|
} | undefined;
|
|
46185
46212
|
}) & ({
|
|
@@ -46696,8 +46723,7 @@ interface Routes {
|
|
|
46696
46723
|
encoder_name: string;
|
|
46697
46724
|
} | undefined;
|
|
46698
46725
|
tado_metadata?: {
|
|
46699
|
-
|
|
46700
|
-
device_name: string;
|
|
46726
|
+
serial_no: string;
|
|
46701
46727
|
device_type: string;
|
|
46702
46728
|
} | undefined;
|
|
46703
46729
|
}) & ({
|
|
@@ -47251,8 +47277,7 @@ interface Routes {
|
|
|
47251
47277
|
encoder_name: string;
|
|
47252
47278
|
} | undefined;
|
|
47253
47279
|
tado_metadata?: {
|
|
47254
|
-
|
|
47255
|
-
device_name: string;
|
|
47280
|
+
serial_no: string;
|
|
47256
47281
|
device_type: string;
|
|
47257
47282
|
} | undefined;
|
|
47258
47283
|
}) & ({
|
|
@@ -47769,8 +47794,7 @@ interface Routes {
|
|
|
47769
47794
|
encoder_name: string;
|
|
47770
47795
|
} | undefined;
|
|
47771
47796
|
tado_metadata?: {
|
|
47772
|
-
|
|
47773
|
-
device_name: string;
|
|
47797
|
+
serial_no: string;
|
|
47774
47798
|
device_type: string;
|
|
47775
47799
|
} | undefined;
|
|
47776
47800
|
}) & ({
|
|
@@ -50104,8 +50128,7 @@ interface Routes {
|
|
|
50104
50128
|
encoder_name: string;
|
|
50105
50129
|
} | undefined;
|
|
50106
50130
|
tado_metadata?: {
|
|
50107
|
-
|
|
50108
|
-
device_name: string;
|
|
50131
|
+
serial_no: string;
|
|
50109
50132
|
device_type: string;
|
|
50110
50133
|
} | undefined;
|
|
50111
50134
|
}) & ({
|
|
@@ -50622,8 +50645,7 @@ interface Routes {
|
|
|
50622
50645
|
encoder_name: string;
|
|
50623
50646
|
} | undefined;
|
|
50624
50647
|
tado_metadata?: {
|
|
50625
|
-
|
|
50626
|
-
device_name: string;
|
|
50648
|
+
serial_no: string;
|
|
50627
50649
|
device_type: string;
|
|
50628
50650
|
} | undefined;
|
|
50629
50651
|
}) & ({
|
|
@@ -55817,8 +55839,7 @@ interface Routes {
|
|
|
55817
55839
|
encoder_name: string;
|
|
55818
55840
|
} | undefined;
|
|
55819
55841
|
tado_metadata?: {
|
|
55820
|
-
|
|
55821
|
-
device_name: string;
|
|
55842
|
+
serial_no: string;
|
|
55822
55843
|
device_type: string;
|
|
55823
55844
|
} | undefined;
|
|
55824
55845
|
}) & ({
|
|
@@ -58134,8 +58155,7 @@ interface Routes {
|
|
|
58134
58155
|
encoder_name: string;
|
|
58135
58156
|
} | undefined;
|
|
58136
58157
|
tado_metadata?: {
|
|
58137
|
-
|
|
58138
|
-
device_name: string;
|
|
58158
|
+
serial_no: string;
|
|
58139
58159
|
device_type: string;
|
|
58140
58160
|
} | undefined;
|
|
58141
58161
|
}) & ({
|
|
@@ -58652,8 +58672,7 @@ interface Routes {
|
|
|
58652
58672
|
encoder_name: string;
|
|
58653
58673
|
} | undefined;
|
|
58654
58674
|
tado_metadata?: {
|
|
58655
|
-
|
|
58656
|
-
device_name: string;
|
|
58675
|
+
serial_no: string;
|
|
58657
58676
|
device_type: string;
|
|
58658
58677
|
} | undefined;
|
|
58659
58678
|
}) & ({
|
|
@@ -62287,8 +62306,7 @@ interface Routes {
|
|
|
62287
62306
|
encoder_name: string;
|
|
62288
62307
|
} | undefined;
|
|
62289
62308
|
tado_metadata?: {
|
|
62290
|
-
|
|
62291
|
-
device_name: string;
|
|
62309
|
+
serial_no: string;
|
|
62292
62310
|
device_type: string;
|
|
62293
62311
|
} | undefined;
|
|
62294
62312
|
}) & ({
|
|
@@ -62807,8 +62825,7 @@ interface Routes {
|
|
|
62807
62825
|
encoder_name: string;
|
|
62808
62826
|
} | undefined;
|
|
62809
62827
|
tado_metadata?: {
|
|
62810
|
-
|
|
62811
|
-
device_name: string;
|
|
62828
|
+
serial_no: string;
|
|
62812
62829
|
device_type: string;
|
|
62813
62830
|
} | undefined;
|
|
62814
62831
|
}) & ({
|
|
@@ -63028,7 +63045,7 @@ interface Routes {
|
|
|
63028
63045
|
/** ID of the `acs_system`. */
|
|
63029
63046
|
acs_system_id: string;
|
|
63030
63047
|
/** 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;
|
|
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;
|
|
63032
63049
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
63033
63050
|
external_type_display_name?: string | undefined;
|
|
63034
63051
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -63043,7 +63060,7 @@ interface Routes {
|
|
|
63043
63060
|
} | undefined;
|
|
63044
63061
|
/**
|
|
63045
63062
|
* @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;
|
|
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;
|
|
63047
63064
|
/**
|
|
63048
63065
|
* @deprecated Use `external_type_display_name`. */
|
|
63049
63066
|
system_type_display_name?: string | undefined;
|
|
@@ -63115,6 +63132,13 @@ interface Routes {
|
|
|
63115
63132
|
message: string;
|
|
63116
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. */
|
|
63117
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';
|
|
63118
63142
|
}>;
|
|
63119
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`. */
|
|
63120
63144
|
can_automate_enrollment?: boolean | undefined;
|