@seamapi/types 1.977.0 → 1.979.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 +185 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +722 -57
- package/dist/index.cjs +185 -22
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +49 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-system.js +1 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/akiles.d.ts +33 -0
- package/lib/seam/connect/models/acs/metadata/akiles.js +25 -0
- package/lib/seam/connect/models/acs/metadata/akiles.js.map +1 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +48 -0
- package/lib/seam/connect/models/devices/device-metadata.js +40 -0
- 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 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +71 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +51 -3
- package/lib/seam/connect/models/phones/phone-session.d.ts +188 -0
- package/lib/seam/connect/openapi.js +136 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +544 -45
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
- package/src/lib/seam/connect/models/acs/metadata/akiles.ts +31 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +41 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +147 -0
- package/src/lib/seam/connect/route-types.ts +663 -0
|
@@ -2231,7 +2231,7 @@ export declare const device_and_connected_account_error_options: (z.ZodObject<{
|
|
|
2231
2231
|
}>)[];
|
|
2232
2232
|
export declare const device: z.ZodObject<{
|
|
2233
2233
|
device_id: z.ZodString;
|
|
2234
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
2234
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock" | "aqara_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
2235
2235
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
2236
2236
|
nickname: z.ZodOptional<z.ZodString>;
|
|
2237
2237
|
display_name: z.ZodString;
|
|
@@ -3367,6 +3367,34 @@ export declare const device: z.ZodObject<{
|
|
|
3367
3367
|
place_name?: string | null | undefined;
|
|
3368
3368
|
description?: string | null | undefined;
|
|
3369
3369
|
}>>;
|
|
3370
|
+
aqara_metadata: z.ZodOptional<z.ZodObject<{
|
|
3371
|
+
did: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3372
|
+
parent_did: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3373
|
+
device_name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3374
|
+
model: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3375
|
+
model_type: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
3376
|
+
time_zone: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3377
|
+
position_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3378
|
+
firmware_version: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3379
|
+
}, "strip", z.ZodTypeAny, {
|
|
3380
|
+
time_zone?: string | null | undefined;
|
|
3381
|
+
model?: string | undefined;
|
|
3382
|
+
device_name?: string | undefined;
|
|
3383
|
+
firmware_version?: string | null | undefined;
|
|
3384
|
+
did?: string | undefined;
|
|
3385
|
+
parent_did?: string | undefined;
|
|
3386
|
+
model_type?: number | undefined;
|
|
3387
|
+
position_id?: string | null | undefined;
|
|
3388
|
+
}, {
|
|
3389
|
+
time_zone?: string | null | undefined;
|
|
3390
|
+
model?: string | undefined;
|
|
3391
|
+
device_name?: string | undefined;
|
|
3392
|
+
firmware_version?: string | null | undefined;
|
|
3393
|
+
did?: string | undefined;
|
|
3394
|
+
parent_did?: string | undefined;
|
|
3395
|
+
model_type?: number | undefined;
|
|
3396
|
+
position_id?: string | null | undefined;
|
|
3397
|
+
}>>;
|
|
3370
3398
|
}, "strip", z.ZodTypeAny, {
|
|
3371
3399
|
ecobee_metadata?: {
|
|
3372
3400
|
device_name?: string | undefined;
|
|
@@ -3662,6 +3690,16 @@ export declare const device: z.ZodObject<{
|
|
|
3662
3690
|
place_name?: string | null | undefined;
|
|
3663
3691
|
description?: string | null | undefined;
|
|
3664
3692
|
} | undefined;
|
|
3693
|
+
aqara_metadata?: {
|
|
3694
|
+
time_zone?: string | null | undefined;
|
|
3695
|
+
model?: string | undefined;
|
|
3696
|
+
device_name?: string | undefined;
|
|
3697
|
+
firmware_version?: string | null | undefined;
|
|
3698
|
+
did?: string | undefined;
|
|
3699
|
+
parent_did?: string | undefined;
|
|
3700
|
+
model_type?: number | undefined;
|
|
3701
|
+
position_id?: string | null | undefined;
|
|
3702
|
+
} | undefined;
|
|
3665
3703
|
}, {
|
|
3666
3704
|
ecobee_metadata?: {
|
|
3667
3705
|
device_name?: string | undefined;
|
|
@@ -3957,6 +3995,16 @@ export declare const device: z.ZodObject<{
|
|
|
3957
3995
|
place_name?: string | null | undefined;
|
|
3958
3996
|
description?: string | null | undefined;
|
|
3959
3997
|
} | undefined;
|
|
3998
|
+
aqara_metadata?: {
|
|
3999
|
+
time_zone?: string | null | undefined;
|
|
4000
|
+
model?: string | undefined;
|
|
4001
|
+
device_name?: string | undefined;
|
|
4002
|
+
firmware_version?: string | null | undefined;
|
|
4003
|
+
did?: string | undefined;
|
|
4004
|
+
parent_did?: string | undefined;
|
|
4005
|
+
model_type?: number | undefined;
|
|
4006
|
+
position_id?: string | null | undefined;
|
|
4007
|
+
} | undefined;
|
|
3960
4008
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
3961
4009
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
3962
4010
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -5813,7 +5861,7 @@ export declare const device: z.ZodObject<{
|
|
|
5813
5861
|
warning_code: "insufficient_permissions";
|
|
5814
5862
|
})[];
|
|
5815
5863
|
custom_metadata: Record<string, string | boolean>;
|
|
5816
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
5864
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock" | "aqara_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
5817
5865
|
space_ids: string[];
|
|
5818
5866
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
5819
5867
|
properties: {
|
|
@@ -6159,6 +6207,16 @@ export declare const device: z.ZodObject<{
|
|
|
6159
6207
|
place_name?: string | null | undefined;
|
|
6160
6208
|
description?: string | null | undefined;
|
|
6161
6209
|
} | undefined;
|
|
6210
|
+
aqara_metadata?: {
|
|
6211
|
+
time_zone?: string | null | undefined;
|
|
6212
|
+
model?: string | undefined;
|
|
6213
|
+
device_name?: string | undefined;
|
|
6214
|
+
firmware_version?: string | null | undefined;
|
|
6215
|
+
did?: string | undefined;
|
|
6216
|
+
parent_did?: string | undefined;
|
|
6217
|
+
model_type?: number | undefined;
|
|
6218
|
+
position_id?: string | null | undefined;
|
|
6219
|
+
} | undefined;
|
|
6162
6220
|
} & {
|
|
6163
6221
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
6164
6222
|
code_constraints?: ({
|
|
@@ -6599,7 +6657,7 @@ export declare const device: z.ZodObject<{
|
|
|
6599
6657
|
warning_code: "insufficient_permissions";
|
|
6600
6658
|
})[];
|
|
6601
6659
|
custom_metadata: Record<string, string | boolean>;
|
|
6602
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
6660
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock" | "aqara_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
6603
6661
|
space_ids: string[];
|
|
6604
6662
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
6605
6663
|
properties: {
|
|
@@ -6945,6 +7003,16 @@ export declare const device: z.ZodObject<{
|
|
|
6945
7003
|
place_name?: string | null | undefined;
|
|
6946
7004
|
description?: string | null | undefined;
|
|
6947
7005
|
} | undefined;
|
|
7006
|
+
aqara_metadata?: {
|
|
7007
|
+
time_zone?: string | null | undefined;
|
|
7008
|
+
model?: string | undefined;
|
|
7009
|
+
device_name?: string | undefined;
|
|
7010
|
+
firmware_version?: string | null | undefined;
|
|
7011
|
+
did?: string | undefined;
|
|
7012
|
+
parent_did?: string | undefined;
|
|
7013
|
+
model_type?: number | undefined;
|
|
7014
|
+
position_id?: string | null | undefined;
|
|
7015
|
+
} | undefined;
|
|
6948
7016
|
} & {
|
|
6949
7017
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
6950
7018
|
code_constraints?: ({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
3
3
|
device_id: z.ZodString;
|
|
4
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
4
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock" | "aqara_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
5
5
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
6
6
|
nickname: z.ZodOptional<z.ZodString>;
|
|
7
7
|
display_name: z.ZodString;
|
|
@@ -1137,6 +1137,34 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
1137
1137
|
place_name?: string | null | undefined;
|
|
1138
1138
|
description?: string | null | undefined;
|
|
1139
1139
|
}>>;
|
|
1140
|
+
aqara_metadata: z.ZodOptional<z.ZodObject<{
|
|
1141
|
+
did: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1142
|
+
parent_did: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1143
|
+
device_name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1144
|
+
model: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1145
|
+
model_type: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1146
|
+
time_zone: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
1147
|
+
position_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
1148
|
+
firmware_version: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
1149
|
+
}, "strip", z.ZodTypeAny, {
|
|
1150
|
+
time_zone?: string | null | undefined;
|
|
1151
|
+
model?: string | undefined;
|
|
1152
|
+
device_name?: string | undefined;
|
|
1153
|
+
firmware_version?: string | null | undefined;
|
|
1154
|
+
did?: string | undefined;
|
|
1155
|
+
parent_did?: string | undefined;
|
|
1156
|
+
model_type?: number | undefined;
|
|
1157
|
+
position_id?: string | null | undefined;
|
|
1158
|
+
}, {
|
|
1159
|
+
time_zone?: string | null | undefined;
|
|
1160
|
+
model?: string | undefined;
|
|
1161
|
+
device_name?: string | undefined;
|
|
1162
|
+
firmware_version?: string | null | undefined;
|
|
1163
|
+
did?: string | undefined;
|
|
1164
|
+
parent_did?: string | undefined;
|
|
1165
|
+
model_type?: number | undefined;
|
|
1166
|
+
position_id?: string | null | undefined;
|
|
1167
|
+
}>>;
|
|
1140
1168
|
}, "strip", z.ZodTypeAny, {
|
|
1141
1169
|
ecobee_metadata?: {
|
|
1142
1170
|
device_name?: string | undefined;
|
|
@@ -1432,6 +1460,16 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
1432
1460
|
place_name?: string | null | undefined;
|
|
1433
1461
|
description?: string | null | undefined;
|
|
1434
1462
|
} | undefined;
|
|
1463
|
+
aqara_metadata?: {
|
|
1464
|
+
time_zone?: string | null | undefined;
|
|
1465
|
+
model?: string | undefined;
|
|
1466
|
+
device_name?: string | undefined;
|
|
1467
|
+
firmware_version?: string | null | undefined;
|
|
1468
|
+
did?: string | undefined;
|
|
1469
|
+
parent_did?: string | undefined;
|
|
1470
|
+
model_type?: number | undefined;
|
|
1471
|
+
position_id?: string | null | undefined;
|
|
1472
|
+
} | undefined;
|
|
1435
1473
|
}, {
|
|
1436
1474
|
ecobee_metadata?: {
|
|
1437
1475
|
device_name?: string | undefined;
|
|
@@ -1727,6 +1765,16 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
1727
1765
|
place_name?: string | null | undefined;
|
|
1728
1766
|
description?: string | null | undefined;
|
|
1729
1767
|
} | undefined;
|
|
1768
|
+
aqara_metadata?: {
|
|
1769
|
+
time_zone?: string | null | undefined;
|
|
1770
|
+
model?: string | undefined;
|
|
1771
|
+
device_name?: string | undefined;
|
|
1772
|
+
firmware_version?: string | null | undefined;
|
|
1773
|
+
did?: string | undefined;
|
|
1774
|
+
parent_did?: string | undefined;
|
|
1775
|
+
model_type?: number | undefined;
|
|
1776
|
+
position_id?: string | null | undefined;
|
|
1777
|
+
} | undefined;
|
|
1730
1778
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
1731
1779
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1732
1780
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -3739,7 +3787,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
3739
3787
|
warning_code: "insufficient_permissions";
|
|
3740
3788
|
})[];
|
|
3741
3789
|
custom_metadata: Record<string, string | boolean>;
|
|
3742
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
3790
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock" | "aqara_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
3743
3791
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
3744
3792
|
properties: {
|
|
3745
3793
|
name: string;
|
|
@@ -4013,7 +4061,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
4013
4061
|
warning_code: "insufficient_permissions";
|
|
4014
4062
|
})[];
|
|
4015
4063
|
custom_metadata: Record<string, string | boolean>;
|
|
4016
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
4064
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock" | "aqara_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
4017
4065
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
4018
4066
|
properties: {
|
|
4019
4067
|
name: string;
|
|
@@ -450,6 +450,37 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
450
450
|
zone_name?: string | undefined;
|
|
451
451
|
entry_relays_total_count?: number | undefined;
|
|
452
452
|
}>>;
|
|
453
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
454
|
+
gadget_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
455
|
+
site_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
456
|
+
site_name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
457
|
+
actions: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
458
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
459
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
460
|
+
}, "strip", z.ZodTypeAny, {
|
|
461
|
+
name?: string | undefined;
|
|
462
|
+
id?: string | undefined;
|
|
463
|
+
}, {
|
|
464
|
+
name?: string | undefined;
|
|
465
|
+
id?: string | undefined;
|
|
466
|
+
}>, "many">>>;
|
|
467
|
+
}, "strip", z.ZodTypeAny, {
|
|
468
|
+
site_id?: string | undefined;
|
|
469
|
+
site_name?: string | undefined;
|
|
470
|
+
gadget_id?: string | undefined;
|
|
471
|
+
actions?: {
|
|
472
|
+
name?: string | undefined;
|
|
473
|
+
id?: string | undefined;
|
|
474
|
+
}[] | undefined;
|
|
475
|
+
}, {
|
|
476
|
+
site_id?: string | undefined;
|
|
477
|
+
site_name?: string | undefined;
|
|
478
|
+
gadget_id?: string | undefined;
|
|
479
|
+
actions?: {
|
|
480
|
+
name?: string | undefined;
|
|
481
|
+
id?: string | undefined;
|
|
482
|
+
}[] | undefined;
|
|
483
|
+
}>>;
|
|
453
484
|
is_locked: z.ZodOptional<z.ZodBoolean>;
|
|
454
485
|
} & {
|
|
455
486
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -522,6 +553,15 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
522
553
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
523
554
|
}[] | undefined;
|
|
524
555
|
} | undefined;
|
|
556
|
+
akiles_metadata?: {
|
|
557
|
+
site_id?: string | undefined;
|
|
558
|
+
site_name?: string | undefined;
|
|
559
|
+
gadget_id?: string | undefined;
|
|
560
|
+
actions?: {
|
|
561
|
+
name?: string | undefined;
|
|
562
|
+
id?: string | undefined;
|
|
563
|
+
}[] | undefined;
|
|
564
|
+
} | undefined;
|
|
525
565
|
assa_abloy_vostio_metadata?: {
|
|
526
566
|
door_name?: string | undefined;
|
|
527
567
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -625,6 +665,15 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
625
665
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
626
666
|
}[] | undefined;
|
|
627
667
|
} | undefined;
|
|
668
|
+
akiles_metadata?: {
|
|
669
|
+
site_id?: string | undefined;
|
|
670
|
+
site_name?: string | undefined;
|
|
671
|
+
gadget_id?: string | undefined;
|
|
672
|
+
actions?: {
|
|
673
|
+
name?: string | undefined;
|
|
674
|
+
id?: string | undefined;
|
|
675
|
+
}[] | undefined;
|
|
676
|
+
} | undefined;
|
|
628
677
|
assa_abloy_vostio_metadata?: {
|
|
629
678
|
door_name?: string | undefined;
|
|
630
679
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -768,6 +817,15 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
768
817
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
769
818
|
}[] | undefined;
|
|
770
819
|
} | undefined;
|
|
820
|
+
akiles_metadata?: {
|
|
821
|
+
site_id?: string | undefined;
|
|
822
|
+
site_name?: string | undefined;
|
|
823
|
+
gadget_id?: string | undefined;
|
|
824
|
+
actions?: {
|
|
825
|
+
name?: string | undefined;
|
|
826
|
+
id?: string | undefined;
|
|
827
|
+
}[] | undefined;
|
|
828
|
+
} | undefined;
|
|
771
829
|
assa_abloy_vostio_metadata?: {
|
|
772
830
|
door_name?: string | undefined;
|
|
773
831
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -945,6 +1003,15 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
945
1003
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
946
1004
|
}[] | undefined;
|
|
947
1005
|
} | undefined;
|
|
1006
|
+
akiles_metadata?: {
|
|
1007
|
+
site_id?: string | undefined;
|
|
1008
|
+
site_name?: string | undefined;
|
|
1009
|
+
gadget_id?: string | undefined;
|
|
1010
|
+
actions?: {
|
|
1011
|
+
name?: string | undefined;
|
|
1012
|
+
id?: string | undefined;
|
|
1013
|
+
}[] | undefined;
|
|
1014
|
+
} | undefined;
|
|
948
1015
|
assa_abloy_vostio_metadata?: {
|
|
949
1016
|
door_name?: string | undefined;
|
|
950
1017
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -1124,6 +1191,15 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
1124
1191
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
1125
1192
|
}[] | undefined;
|
|
1126
1193
|
} | undefined;
|
|
1194
|
+
akiles_metadata?: {
|
|
1195
|
+
site_id?: string | undefined;
|
|
1196
|
+
site_name?: string | undefined;
|
|
1197
|
+
gadget_id?: string | undefined;
|
|
1198
|
+
actions?: {
|
|
1199
|
+
name?: string | undefined;
|
|
1200
|
+
id?: string | undefined;
|
|
1201
|
+
}[] | undefined;
|
|
1202
|
+
} | undefined;
|
|
1127
1203
|
assa_abloy_vostio_metadata?: {
|
|
1128
1204
|
door_name?: string | undefined;
|
|
1129
1205
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -1309,6 +1385,15 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
1309
1385
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
1310
1386
|
}[] | undefined;
|
|
1311
1387
|
} | undefined;
|
|
1388
|
+
akiles_metadata?: {
|
|
1389
|
+
site_id?: string | undefined;
|
|
1390
|
+
site_name?: string | undefined;
|
|
1391
|
+
gadget_id?: string | undefined;
|
|
1392
|
+
actions?: {
|
|
1393
|
+
name?: string | undefined;
|
|
1394
|
+
id?: string | undefined;
|
|
1395
|
+
}[] | undefined;
|
|
1396
|
+
} | undefined;
|
|
1312
1397
|
assa_abloy_vostio_metadata?: {
|
|
1313
1398
|
door_name?: string | undefined;
|
|
1314
1399
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -1842,6 +1927,37 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1842
1927
|
zone_name?: string | undefined;
|
|
1843
1928
|
entry_relays_total_count?: number | undefined;
|
|
1844
1929
|
}>>;
|
|
1930
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
1931
|
+
gadget_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1932
|
+
site_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1933
|
+
site_name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1934
|
+
actions: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1935
|
+
id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1936
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1937
|
+
}, "strip", z.ZodTypeAny, {
|
|
1938
|
+
name?: string | undefined;
|
|
1939
|
+
id?: string | undefined;
|
|
1940
|
+
}, {
|
|
1941
|
+
name?: string | undefined;
|
|
1942
|
+
id?: string | undefined;
|
|
1943
|
+
}>, "many">>>;
|
|
1944
|
+
}, "strip", z.ZodTypeAny, {
|
|
1945
|
+
site_id?: string | undefined;
|
|
1946
|
+
site_name?: string | undefined;
|
|
1947
|
+
gadget_id?: string | undefined;
|
|
1948
|
+
actions?: {
|
|
1949
|
+
name?: string | undefined;
|
|
1950
|
+
id?: string | undefined;
|
|
1951
|
+
}[] | undefined;
|
|
1952
|
+
}, {
|
|
1953
|
+
site_id?: string | undefined;
|
|
1954
|
+
site_name?: string | undefined;
|
|
1955
|
+
gadget_id?: string | undefined;
|
|
1956
|
+
actions?: {
|
|
1957
|
+
name?: string | undefined;
|
|
1958
|
+
id?: string | undefined;
|
|
1959
|
+
}[] | undefined;
|
|
1960
|
+
}>>;
|
|
1845
1961
|
is_locked: z.ZodOptional<z.ZodBoolean>;
|
|
1846
1962
|
} & {
|
|
1847
1963
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1914,6 +2030,15 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1914
2030
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
1915
2031
|
}[] | undefined;
|
|
1916
2032
|
} | undefined;
|
|
2033
|
+
akiles_metadata?: {
|
|
2034
|
+
site_id?: string | undefined;
|
|
2035
|
+
site_name?: string | undefined;
|
|
2036
|
+
gadget_id?: string | undefined;
|
|
2037
|
+
actions?: {
|
|
2038
|
+
name?: string | undefined;
|
|
2039
|
+
id?: string | undefined;
|
|
2040
|
+
}[] | undefined;
|
|
2041
|
+
} | undefined;
|
|
1917
2042
|
assa_abloy_vostio_metadata?: {
|
|
1918
2043
|
door_name?: string | undefined;
|
|
1919
2044
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -2017,6 +2142,15 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2017
2142
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
2018
2143
|
}[] | undefined;
|
|
2019
2144
|
} | undefined;
|
|
2145
|
+
akiles_metadata?: {
|
|
2146
|
+
site_id?: string | undefined;
|
|
2147
|
+
site_name?: string | undefined;
|
|
2148
|
+
gadget_id?: string | undefined;
|
|
2149
|
+
actions?: {
|
|
2150
|
+
name?: string | undefined;
|
|
2151
|
+
id?: string | undefined;
|
|
2152
|
+
}[] | undefined;
|
|
2153
|
+
} | undefined;
|
|
2020
2154
|
assa_abloy_vostio_metadata?: {
|
|
2021
2155
|
door_name?: string | undefined;
|
|
2022
2156
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -2160,6 +2294,15 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2160
2294
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
2161
2295
|
}[] | undefined;
|
|
2162
2296
|
} | undefined;
|
|
2297
|
+
akiles_metadata?: {
|
|
2298
|
+
site_id?: string | undefined;
|
|
2299
|
+
site_name?: string | undefined;
|
|
2300
|
+
gadget_id?: string | undefined;
|
|
2301
|
+
actions?: {
|
|
2302
|
+
name?: string | undefined;
|
|
2303
|
+
id?: string | undefined;
|
|
2304
|
+
}[] | undefined;
|
|
2305
|
+
} | undefined;
|
|
2163
2306
|
assa_abloy_vostio_metadata?: {
|
|
2164
2307
|
door_name?: string | undefined;
|
|
2165
2308
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -2337,6 +2480,15 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2337
2480
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
2338
2481
|
}[] | undefined;
|
|
2339
2482
|
} | undefined;
|
|
2483
|
+
akiles_metadata?: {
|
|
2484
|
+
site_id?: string | undefined;
|
|
2485
|
+
site_name?: string | undefined;
|
|
2486
|
+
gadget_id?: string | undefined;
|
|
2487
|
+
actions?: {
|
|
2488
|
+
name?: string | undefined;
|
|
2489
|
+
id?: string | undefined;
|
|
2490
|
+
}[] | undefined;
|
|
2491
|
+
} | undefined;
|
|
2340
2492
|
assa_abloy_vostio_metadata?: {
|
|
2341
2493
|
door_name?: string | undefined;
|
|
2342
2494
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -2516,6 +2668,15 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2516
2668
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
2517
2669
|
}[] | undefined;
|
|
2518
2670
|
} | undefined;
|
|
2671
|
+
akiles_metadata?: {
|
|
2672
|
+
site_id?: string | undefined;
|
|
2673
|
+
site_name?: string | undefined;
|
|
2674
|
+
gadget_id?: string | undefined;
|
|
2675
|
+
actions?: {
|
|
2676
|
+
name?: string | undefined;
|
|
2677
|
+
id?: string | undefined;
|
|
2678
|
+
}[] | undefined;
|
|
2679
|
+
} | undefined;
|
|
2519
2680
|
assa_abloy_vostio_metadata?: {
|
|
2520
2681
|
door_name?: string | undefined;
|
|
2521
2682
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -2701,6 +2862,15 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2701
2862
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
2702
2863
|
}[] | undefined;
|
|
2703
2864
|
} | undefined;
|
|
2865
|
+
akiles_metadata?: {
|
|
2866
|
+
site_id?: string | undefined;
|
|
2867
|
+
site_name?: string | undefined;
|
|
2868
|
+
gadget_id?: string | undefined;
|
|
2869
|
+
actions?: {
|
|
2870
|
+
name?: string | undefined;
|
|
2871
|
+
id?: string | undefined;
|
|
2872
|
+
}[] | undefined;
|
|
2873
|
+
} | undefined;
|
|
2704
2874
|
assa_abloy_vostio_metadata?: {
|
|
2705
2875
|
door_name?: string | undefined;
|
|
2706
2876
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -3001,6 +3171,15 @@ export declare const phone_session: z.ZodObject<{
|
|
|
3001
3171
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
3002
3172
|
}[] | undefined;
|
|
3003
3173
|
} | undefined;
|
|
3174
|
+
akiles_metadata?: {
|
|
3175
|
+
site_id?: string | undefined;
|
|
3176
|
+
site_name?: string | undefined;
|
|
3177
|
+
gadget_id?: string | undefined;
|
|
3178
|
+
actions?: {
|
|
3179
|
+
name?: string | undefined;
|
|
3180
|
+
id?: string | undefined;
|
|
3181
|
+
}[] | undefined;
|
|
3182
|
+
} | undefined;
|
|
3004
3183
|
assa_abloy_vostio_metadata?: {
|
|
3005
3184
|
door_name?: string | undefined;
|
|
3006
3185
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|
|
@@ -3217,6 +3396,15 @@ export declare const phone_session: z.ZodObject<{
|
|
|
3217
3396
|
visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
|
|
3218
3397
|
}[] | undefined;
|
|
3219
3398
|
} | undefined;
|
|
3399
|
+
akiles_metadata?: {
|
|
3400
|
+
site_id?: string | undefined;
|
|
3401
|
+
site_name?: string | undefined;
|
|
3402
|
+
gadget_id?: string | undefined;
|
|
3403
|
+
actions?: {
|
|
3404
|
+
name?: string | undefined;
|
|
3405
|
+
id?: string | undefined;
|
|
3406
|
+
}[] | undefined;
|
|
3407
|
+
} | undefined;
|
|
3220
3408
|
assa_abloy_vostio_metadata?: {
|
|
3221
3409
|
door_name?: string | undefined;
|
|
3222
3410
|
door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
|