@seamapi/types 1.715.0 → 1.716.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 +91 -28
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +535 -48
- package/dist/index.cjs +91 -28
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +118 -10
- package/lib/seam/connect/models/devices/device-metadata.d.ts +38 -0
- package/lib/seam/connect/models/devices/device-metadata.js +17 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- 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 +57 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +41 -3
- package/lib/seam/connect/openapi.d.ts +31 -0
- package/lib/seam/connect/openapi.js +63 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +287 -32
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +18 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +65 -10
- package/src/lib/seam/connect/route-types.ts +325 -5
|
@@ -2008,7 +2008,7 @@ export declare const device_and_connected_account_error_options: (z.ZodObject<{
|
|
|
2008
2008
|
}>)[];
|
|
2009
2009
|
export declare const device: z.ZodObject<{
|
|
2010
2010
|
device_id: z.ZodString;
|
|
2011
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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"]>]>;
|
|
2011
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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"]>]>;
|
|
2012
2012
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
2013
2013
|
nickname: z.ZodOptional<z.ZodString>;
|
|
2014
2014
|
display_name: z.ZodString;
|
|
@@ -3055,6 +3055,28 @@ export declare const device: z.ZodObject<{
|
|
|
3055
3055
|
device_type: string;
|
|
3056
3056
|
time_zone: string | null;
|
|
3057
3057
|
}>>;
|
|
3058
|
+
korelock_metadata: z.ZodOptional<z.ZodObject<{
|
|
3059
|
+
device_id: z.ZodOptional<z.ZodString>;
|
|
3060
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
3061
|
+
model_code: z.ZodOptional<z.ZodString>;
|
|
3062
|
+
serial_number: z.ZodOptional<z.ZodString>;
|
|
3063
|
+
firmware_version: z.ZodOptional<z.ZodString>;
|
|
3064
|
+
wifi_signal_strength: z.ZodOptional<z.ZodNumber>;
|
|
3065
|
+
}, "strip", z.ZodTypeAny, {
|
|
3066
|
+
device_id?: string | undefined;
|
|
3067
|
+
device_name?: string | undefined;
|
|
3068
|
+
serial_number?: string | undefined;
|
|
3069
|
+
model_code?: string | undefined;
|
|
3070
|
+
firmware_version?: string | undefined;
|
|
3071
|
+
wifi_signal_strength?: number | undefined;
|
|
3072
|
+
}, {
|
|
3073
|
+
device_id?: string | undefined;
|
|
3074
|
+
device_name?: string | undefined;
|
|
3075
|
+
serial_number?: string | undefined;
|
|
3076
|
+
model_code?: string | undefined;
|
|
3077
|
+
firmware_version?: string | undefined;
|
|
3078
|
+
wifi_signal_strength?: number | undefined;
|
|
3079
|
+
}>>;
|
|
3058
3080
|
}, "strip", z.ZodTypeAny, {
|
|
3059
3081
|
ecobee_metadata?: {
|
|
3060
3082
|
device_name: string;
|
|
@@ -3319,6 +3341,14 @@ export declare const device: z.ZodObject<{
|
|
|
3319
3341
|
device_type: string;
|
|
3320
3342
|
time_zone: string | null;
|
|
3321
3343
|
} | undefined;
|
|
3344
|
+
korelock_metadata?: {
|
|
3345
|
+
device_id?: string | undefined;
|
|
3346
|
+
device_name?: string | undefined;
|
|
3347
|
+
serial_number?: string | undefined;
|
|
3348
|
+
model_code?: string | undefined;
|
|
3349
|
+
firmware_version?: string | undefined;
|
|
3350
|
+
wifi_signal_strength?: number | undefined;
|
|
3351
|
+
} | undefined;
|
|
3322
3352
|
}, {
|
|
3323
3353
|
ecobee_metadata?: {
|
|
3324
3354
|
device_name: string;
|
|
@@ -3583,6 +3613,14 @@ export declare const device: z.ZodObject<{
|
|
|
3583
3613
|
device_type: string;
|
|
3584
3614
|
time_zone: string | null;
|
|
3585
3615
|
} | undefined;
|
|
3616
|
+
korelock_metadata?: {
|
|
3617
|
+
device_id?: string | undefined;
|
|
3618
|
+
device_name?: string | undefined;
|
|
3619
|
+
serial_number?: string | undefined;
|
|
3620
|
+
model_code?: string | undefined;
|
|
3621
|
+
firmware_version?: string | undefined;
|
|
3622
|
+
wifi_signal_strength?: number | undefined;
|
|
3623
|
+
} | undefined;
|
|
3586
3624
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
3587
3625
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
3588
3626
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -5136,7 +5174,7 @@ export declare const device: z.ZodObject<{
|
|
|
5136
5174
|
warning_code: "accessory_keypad_setup_required";
|
|
5137
5175
|
})[];
|
|
5138
5176
|
custom_metadata: Record<string, string | boolean>;
|
|
5139
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
5177
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
5140
5178
|
space_ids: string[];
|
|
5141
5179
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
5142
5180
|
properties: {
|
|
@@ -5451,6 +5489,14 @@ export declare const device: z.ZodObject<{
|
|
|
5451
5489
|
device_type: string;
|
|
5452
5490
|
time_zone: string | null;
|
|
5453
5491
|
} | undefined;
|
|
5492
|
+
korelock_metadata?: {
|
|
5493
|
+
device_id?: string | undefined;
|
|
5494
|
+
device_name?: string | undefined;
|
|
5495
|
+
serial_number?: string | undefined;
|
|
5496
|
+
model_code?: string | undefined;
|
|
5497
|
+
firmware_version?: string | undefined;
|
|
5498
|
+
wifi_signal_strength?: number | undefined;
|
|
5499
|
+
} | undefined;
|
|
5454
5500
|
} & {
|
|
5455
5501
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
5456
5502
|
code_constraints?: ({
|
|
@@ -5826,7 +5872,7 @@ export declare const device: z.ZodObject<{
|
|
|
5826
5872
|
warning_code: "accessory_keypad_setup_required";
|
|
5827
5873
|
})[];
|
|
5828
5874
|
custom_metadata: Record<string, string | boolean>;
|
|
5829
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
5875
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
5830
5876
|
space_ids: string[];
|
|
5831
5877
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
5832
5878
|
properties: {
|
|
@@ -6141,6 +6187,14 @@ export declare const device: z.ZodObject<{
|
|
|
6141
6187
|
device_type: string;
|
|
6142
6188
|
time_zone: string | null;
|
|
6143
6189
|
} | undefined;
|
|
6190
|
+
korelock_metadata?: {
|
|
6191
|
+
device_id?: string | undefined;
|
|
6192
|
+
device_name?: string | undefined;
|
|
6193
|
+
serial_number?: string | undefined;
|
|
6194
|
+
model_code?: string | undefined;
|
|
6195
|
+
firmware_version?: string | undefined;
|
|
6196
|
+
wifi_signal_strength?: number | undefined;
|
|
6197
|
+
} | undefined;
|
|
6144
6198
|
} & {
|
|
6145
6199
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
6146
6200
|
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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"]>]>;
|
|
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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"]>]>;
|
|
5
5
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
6
6
|
nickname: z.ZodOptional<z.ZodString>;
|
|
7
7
|
display_name: z.ZodString;
|
|
@@ -1048,6 +1048,28 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
1048
1048
|
device_type: string;
|
|
1049
1049
|
time_zone: string | null;
|
|
1050
1050
|
}>>;
|
|
1051
|
+
korelock_metadata: z.ZodOptional<z.ZodObject<{
|
|
1052
|
+
device_id: z.ZodOptional<z.ZodString>;
|
|
1053
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
1054
|
+
model_code: z.ZodOptional<z.ZodString>;
|
|
1055
|
+
serial_number: z.ZodOptional<z.ZodString>;
|
|
1056
|
+
firmware_version: z.ZodOptional<z.ZodString>;
|
|
1057
|
+
wifi_signal_strength: z.ZodOptional<z.ZodNumber>;
|
|
1058
|
+
}, "strip", z.ZodTypeAny, {
|
|
1059
|
+
device_id?: string | undefined;
|
|
1060
|
+
device_name?: string | undefined;
|
|
1061
|
+
serial_number?: string | undefined;
|
|
1062
|
+
model_code?: string | undefined;
|
|
1063
|
+
firmware_version?: string | undefined;
|
|
1064
|
+
wifi_signal_strength?: number | undefined;
|
|
1065
|
+
}, {
|
|
1066
|
+
device_id?: string | undefined;
|
|
1067
|
+
device_name?: string | undefined;
|
|
1068
|
+
serial_number?: string | undefined;
|
|
1069
|
+
model_code?: string | undefined;
|
|
1070
|
+
firmware_version?: string | undefined;
|
|
1071
|
+
wifi_signal_strength?: number | undefined;
|
|
1072
|
+
}>>;
|
|
1051
1073
|
}, "strip", z.ZodTypeAny, {
|
|
1052
1074
|
ecobee_metadata?: {
|
|
1053
1075
|
device_name: string;
|
|
@@ -1312,6 +1334,14 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
1312
1334
|
device_type: string;
|
|
1313
1335
|
time_zone: string | null;
|
|
1314
1336
|
} | undefined;
|
|
1337
|
+
korelock_metadata?: {
|
|
1338
|
+
device_id?: string | undefined;
|
|
1339
|
+
device_name?: string | undefined;
|
|
1340
|
+
serial_number?: string | undefined;
|
|
1341
|
+
model_code?: string | undefined;
|
|
1342
|
+
firmware_version?: string | undefined;
|
|
1343
|
+
wifi_signal_strength?: number | undefined;
|
|
1344
|
+
} | undefined;
|
|
1315
1345
|
}, {
|
|
1316
1346
|
ecobee_metadata?: {
|
|
1317
1347
|
device_name: string;
|
|
@@ -1576,6 +1606,14 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
1576
1606
|
device_type: string;
|
|
1577
1607
|
time_zone: string | null;
|
|
1578
1608
|
} | undefined;
|
|
1609
|
+
korelock_metadata?: {
|
|
1610
|
+
device_id?: string | undefined;
|
|
1611
|
+
device_name?: string | undefined;
|
|
1612
|
+
serial_number?: string | undefined;
|
|
1613
|
+
model_code?: string | undefined;
|
|
1614
|
+
firmware_version?: string | undefined;
|
|
1615
|
+
wifi_signal_strength?: number | undefined;
|
|
1616
|
+
} | undefined;
|
|
1579
1617
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
1580
1618
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1581
1619
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -3284,7 +3322,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
3284
3322
|
warning_code: "accessory_keypad_setup_required";
|
|
3285
3323
|
})[];
|
|
3286
3324
|
custom_metadata: Record<string, string | boolean>;
|
|
3287
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
3325
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
3288
3326
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
3289
3327
|
properties: {
|
|
3290
3328
|
name: string;
|
|
@@ -3525,7 +3563,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
3525
3563
|
warning_code: "accessory_keypad_setup_required";
|
|
3526
3564
|
})[];
|
|
3527
3565
|
custom_metadata: Record<string, string | boolean>;
|
|
3528
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
3566
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
3529
3567
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
3530
3568
|
properties: {
|
|
3531
3569
|
name: string;
|
|
@@ -5822,6 +5822,37 @@ declare const _default: {
|
|
|
5822
5822
|
};
|
|
5823
5823
|
type: string;
|
|
5824
5824
|
};
|
|
5825
|
+
korelock_metadata: {
|
|
5826
|
+
description: string;
|
|
5827
|
+
properties: {
|
|
5828
|
+
device_id: {
|
|
5829
|
+
description: string;
|
|
5830
|
+
type: string;
|
|
5831
|
+
};
|
|
5832
|
+
device_name: {
|
|
5833
|
+
description: string;
|
|
5834
|
+
type: string;
|
|
5835
|
+
};
|
|
5836
|
+
firmware_version: {
|
|
5837
|
+
description: string;
|
|
5838
|
+
type: string;
|
|
5839
|
+
};
|
|
5840
|
+
model_code: {
|
|
5841
|
+
description: string;
|
|
5842
|
+
type: string;
|
|
5843
|
+
};
|
|
5844
|
+
serial_number: {
|
|
5845
|
+
description: string;
|
|
5846
|
+
type: string;
|
|
5847
|
+
};
|
|
5848
|
+
wifi_signal_strength: {
|
|
5849
|
+
description: string;
|
|
5850
|
+
format: string;
|
|
5851
|
+
type: string;
|
|
5852
|
+
};
|
|
5853
|
+
};
|
|
5854
|
+
type: string;
|
|
5855
|
+
};
|
|
5825
5856
|
kwikset_metadata: {
|
|
5826
5857
|
description: string;
|
|
5827
5858
|
properties: {
|
|
@@ -8651,6 +8651,7 @@ export default {
|
|
|
8651
8651
|
'tedee_lock',
|
|
8652
8652
|
'akiles_lock',
|
|
8653
8653
|
'ultraloq_lock',
|
|
8654
|
+
'korelock_lock',
|
|
8654
8655
|
],
|
|
8655
8656
|
type: 'string',
|
|
8656
8657
|
},
|
|
@@ -9966,6 +9967,37 @@ export default {
|
|
|
9966
9967
|
},
|
|
9967
9968
|
type: 'object',
|
|
9968
9969
|
},
|
|
9970
|
+
korelock_metadata: {
|
|
9971
|
+
description: 'Metadata for a Korelock device.',
|
|
9972
|
+
properties: {
|
|
9973
|
+
device_id: {
|
|
9974
|
+
description: 'Device ID for a Korelock device.',
|
|
9975
|
+
type: 'string',
|
|
9976
|
+
},
|
|
9977
|
+
device_name: {
|
|
9978
|
+
description: 'Device name for a Korelock device.',
|
|
9979
|
+
type: 'string',
|
|
9980
|
+
},
|
|
9981
|
+
firmware_version: {
|
|
9982
|
+
description: 'Firmware version for a Korelock device.',
|
|
9983
|
+
type: 'string',
|
|
9984
|
+
},
|
|
9985
|
+
model_code: {
|
|
9986
|
+
description: 'Model code for a Korelock device.',
|
|
9987
|
+
type: 'string',
|
|
9988
|
+
},
|
|
9989
|
+
serial_number: {
|
|
9990
|
+
description: 'Serial number for a Korelock device.',
|
|
9991
|
+
type: 'string',
|
|
9992
|
+
},
|
|
9993
|
+
wifi_signal_strength: {
|
|
9994
|
+
description: 'WiFi signal strength (0-1) for a Korelock device.',
|
|
9995
|
+
format: 'float',
|
|
9996
|
+
type: 'number',
|
|
9997
|
+
},
|
|
9998
|
+
},
|
|
9999
|
+
type: 'object',
|
|
10000
|
+
},
|
|
9969
10001
|
kwikset_metadata: {
|
|
9970
10002
|
description: 'Metadata for a Kwikset device.',
|
|
9971
10003
|
properties: {
|
|
@@ -12073,6 +12105,7 @@ export default {
|
|
|
12073
12105
|
'sensi',
|
|
12074
12106
|
'kwikset2',
|
|
12075
12107
|
'keynest',
|
|
12108
|
+
'korelock',
|
|
12076
12109
|
'dormakaba_ambiance',
|
|
12077
12110
|
'ultraloq',
|
|
12078
12111
|
],
|
|
@@ -22517,6 +22550,7 @@ export default {
|
|
|
22517
22550
|
'tedee_lock',
|
|
22518
22551
|
'akiles_lock',
|
|
22519
22552
|
'ultraloq_lock',
|
|
22553
|
+
'korelock_lock',
|
|
22520
22554
|
],
|
|
22521
22555
|
type: 'string',
|
|
22522
22556
|
},
|
|
@@ -37226,6 +37260,7 @@ export default {
|
|
|
37226
37260
|
'sensi',
|
|
37227
37261
|
'kwikset2',
|
|
37228
37262
|
'keynest',
|
|
37263
|
+
'korelock',
|
|
37229
37264
|
'dormakaba_ambiance',
|
|
37230
37265
|
'ultraloq',
|
|
37231
37266
|
'yale_access',
|
|
@@ -40810,6 +40845,7 @@ export default {
|
|
|
40810
40845
|
'tedee_lock',
|
|
40811
40846
|
'akiles_lock',
|
|
40812
40847
|
'ultraloq_lock',
|
|
40848
|
+
'korelock_lock',
|
|
40813
40849
|
],
|
|
40814
40850
|
type: 'string',
|
|
40815
40851
|
},
|
|
@@ -40881,6 +40917,7 @@ export default {
|
|
|
40881
40917
|
'tedee_lock',
|
|
40882
40918
|
'akiles_lock',
|
|
40883
40919
|
'ultraloq_lock',
|
|
40920
|
+
'korelock_lock',
|
|
40884
40921
|
],
|
|
40885
40922
|
type: 'string',
|
|
40886
40923
|
},
|
|
@@ -40954,14 +40991,15 @@ export default {
|
|
|
40954
40991
|
'akiles',
|
|
40955
40992
|
'ecobee',
|
|
40956
40993
|
'honeywell_resideo',
|
|
40994
|
+
'keynest',
|
|
40995
|
+
'korelock',
|
|
40957
40996
|
'kwikset2',
|
|
40958
40997
|
'minut',
|
|
40959
40998
|
'nest',
|
|
40960
40999
|
'noiseaware',
|
|
40961
|
-
'tado',
|
|
40962
41000
|
'sensi',
|
|
40963
41001
|
'smartthings',
|
|
40964
|
-
'
|
|
41002
|
+
'tado',
|
|
40965
41003
|
'ultraloq',
|
|
40966
41004
|
],
|
|
40967
41005
|
type: 'string',
|
|
@@ -41233,6 +41271,7 @@ export default {
|
|
|
41233
41271
|
'tedee_lock',
|
|
41234
41272
|
'akiles_lock',
|
|
41235
41273
|
'ultraloq_lock',
|
|
41274
|
+
'korelock_lock',
|
|
41236
41275
|
],
|
|
41237
41276
|
type: 'string',
|
|
41238
41277
|
},
|
|
@@ -41300,6 +41339,7 @@ export default {
|
|
|
41300
41339
|
'tedee_lock',
|
|
41301
41340
|
'akiles_lock',
|
|
41302
41341
|
'ultraloq_lock',
|
|
41342
|
+
'korelock_lock',
|
|
41303
41343
|
],
|
|
41304
41344
|
type: 'string',
|
|
41305
41345
|
},
|
|
@@ -41431,14 +41471,15 @@ export default {
|
|
|
41431
41471
|
'akiles',
|
|
41432
41472
|
'ecobee',
|
|
41433
41473
|
'honeywell_resideo',
|
|
41474
|
+
'keynest',
|
|
41475
|
+
'korelock',
|
|
41434
41476
|
'kwikset2',
|
|
41435
41477
|
'minut',
|
|
41436
41478
|
'nest',
|
|
41437
41479
|
'noiseaware',
|
|
41438
|
-
'tado',
|
|
41439
41480
|
'sensi',
|
|
41440
41481
|
'smartthings',
|
|
41441
|
-
'
|
|
41482
|
+
'tado',
|
|
41442
41483
|
'ultraloq',
|
|
41443
41484
|
],
|
|
41444
41485
|
type: 'string',
|
|
@@ -42629,6 +42670,7 @@ export default {
|
|
|
42629
42670
|
'tedee_lock',
|
|
42630
42671
|
'akiles_lock',
|
|
42631
42672
|
'ultraloq_lock',
|
|
42673
|
+
'korelock_lock',
|
|
42632
42674
|
],
|
|
42633
42675
|
type: 'string',
|
|
42634
42676
|
},
|
|
@@ -42700,6 +42742,7 @@ export default {
|
|
|
42700
42742
|
'tedee_lock',
|
|
42701
42743
|
'akiles_lock',
|
|
42702
42744
|
'ultraloq_lock',
|
|
42745
|
+
'korelock_lock',
|
|
42703
42746
|
],
|
|
42704
42747
|
type: 'string',
|
|
42705
42748
|
},
|
|
@@ -42773,14 +42816,15 @@ export default {
|
|
|
42773
42816
|
'akiles',
|
|
42774
42817
|
'ecobee',
|
|
42775
42818
|
'honeywell_resideo',
|
|
42819
|
+
'keynest',
|
|
42820
|
+
'korelock',
|
|
42776
42821
|
'kwikset2',
|
|
42777
42822
|
'minut',
|
|
42778
42823
|
'nest',
|
|
42779
42824
|
'noiseaware',
|
|
42780
|
-
'tado',
|
|
42781
42825
|
'sensi',
|
|
42782
42826
|
'smartthings',
|
|
42783
|
-
'
|
|
42827
|
+
'tado',
|
|
42784
42828
|
'ultraloq',
|
|
42785
42829
|
],
|
|
42786
42830
|
type: 'string',
|
|
@@ -43051,6 +43095,7 @@ export default {
|
|
|
43051
43095
|
'tedee_lock',
|
|
43052
43096
|
'akiles_lock',
|
|
43053
43097
|
'ultraloq_lock',
|
|
43098
|
+
'korelock_lock',
|
|
43054
43099
|
],
|
|
43055
43100
|
type: 'string',
|
|
43056
43101
|
},
|
|
@@ -43118,6 +43163,7 @@ export default {
|
|
|
43118
43163
|
'tedee_lock',
|
|
43119
43164
|
'akiles_lock',
|
|
43120
43165
|
'ultraloq_lock',
|
|
43166
|
+
'korelock_lock',
|
|
43121
43167
|
],
|
|
43122
43168
|
type: 'string',
|
|
43123
43169
|
},
|
|
@@ -43249,14 +43295,15 @@ export default {
|
|
|
43249
43295
|
'akiles',
|
|
43250
43296
|
'ecobee',
|
|
43251
43297
|
'honeywell_resideo',
|
|
43298
|
+
'keynest',
|
|
43299
|
+
'korelock',
|
|
43252
43300
|
'kwikset2',
|
|
43253
43301
|
'minut',
|
|
43254
43302
|
'nest',
|
|
43255
43303
|
'noiseaware',
|
|
43256
|
-
'tado',
|
|
43257
43304
|
'sensi',
|
|
43258
43305
|
'smartthings',
|
|
43259
|
-
'
|
|
43306
|
+
'tado',
|
|
43260
43307
|
'ultraloq',
|
|
43261
43308
|
],
|
|
43262
43309
|
type: 'string',
|
|
@@ -45157,6 +45204,7 @@ export default {
|
|
|
45157
45204
|
'tedee_lock',
|
|
45158
45205
|
'akiles_lock',
|
|
45159
45206
|
'ultraloq_lock',
|
|
45207
|
+
'korelock_lock',
|
|
45160
45208
|
],
|
|
45161
45209
|
type: 'string',
|
|
45162
45210
|
},
|
|
@@ -45197,6 +45245,7 @@ export default {
|
|
|
45197
45245
|
'tedee_lock',
|
|
45198
45246
|
'akiles_lock',
|
|
45199
45247
|
'ultraloq_lock',
|
|
45248
|
+
'korelock_lock',
|
|
45200
45249
|
],
|
|
45201
45250
|
type: 'string',
|
|
45202
45251
|
},
|
|
@@ -45235,6 +45284,7 @@ export default {
|
|
|
45235
45284
|
'dormakaba_oracode',
|
|
45236
45285
|
'tedee',
|
|
45237
45286
|
'akiles',
|
|
45287
|
+
'korelock',
|
|
45238
45288
|
'kwikset2',
|
|
45239
45289
|
'smartthings',
|
|
45240
45290
|
'ultraloq',
|
|
@@ -45507,6 +45557,7 @@ export default {
|
|
|
45507
45557
|
'tedee_lock',
|
|
45508
45558
|
'akiles_lock',
|
|
45509
45559
|
'ultraloq_lock',
|
|
45560
|
+
'korelock_lock',
|
|
45510
45561
|
],
|
|
45511
45562
|
type: 'string',
|
|
45512
45563
|
},
|
|
@@ -45543,6 +45594,7 @@ export default {
|
|
|
45543
45594
|
'tedee_lock',
|
|
45544
45595
|
'akiles_lock',
|
|
45545
45596
|
'ultraloq_lock',
|
|
45597
|
+
'korelock_lock',
|
|
45546
45598
|
],
|
|
45547
45599
|
type: 'string',
|
|
45548
45600
|
},
|
|
@@ -45639,6 +45691,7 @@ export default {
|
|
|
45639
45691
|
'dormakaba_oracode',
|
|
45640
45692
|
'tedee',
|
|
45641
45693
|
'akiles',
|
|
45694
|
+
'korelock',
|
|
45642
45695
|
'kwikset2',
|
|
45643
45696
|
'smartthings',
|
|
45644
45697
|
'ultraloq',
|
|
@@ -57961,9 +58014,9 @@ export default {
|
|
|
57961
58014
|
'ecobee',
|
|
57962
58015
|
'honeywell_resideo',
|
|
57963
58016
|
'nest',
|
|
57964
|
-
'tado',
|
|
57965
58017
|
'sensi',
|
|
57966
58018
|
'smartthings',
|
|
58019
|
+
'tado',
|
|
57967
58020
|
],
|
|
57968
58021
|
type: 'string',
|
|
57969
58022
|
},
|
|
@@ -58298,9 +58351,9 @@ export default {
|
|
|
58298
58351
|
'ecobee',
|
|
58299
58352
|
'honeywell_resideo',
|
|
58300
58353
|
'nest',
|
|
58301
|
-
'tado',
|
|
58302
58354
|
'sensi',
|
|
58303
58355
|
'smartthings',
|
|
58356
|
+
'tado',
|
|
58304
58357
|
],
|
|
58305
58358
|
type: 'string',
|
|
58306
58359
|
},
|