@seamapi/types 1.714.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 +93 -76
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +536 -106
- package/dist/index.cjs +93 -76
- 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 -46
- package/lib/seam/connect/openapi.js +65 -58
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +288 -44
- 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 +67 -66
- package/src/lib/seam/connect/route-types.ts +326 -17
|
@@ -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: {
|
|
@@ -16180,20 +16211,6 @@ declare const _default: {
|
|
|
16180
16211
|
description: string;
|
|
16181
16212
|
type: string;
|
|
16182
16213
|
};
|
|
16183
|
-
is_offline_access_code: {
|
|
16184
|
-
description: string;
|
|
16185
|
-
type: string;
|
|
16186
|
-
};
|
|
16187
|
-
is_one_time_use: {
|
|
16188
|
-
description: string;
|
|
16189
|
-
type: string;
|
|
16190
|
-
};
|
|
16191
|
-
max_time_rounding: {
|
|
16192
|
-
default: string;
|
|
16193
|
-
description: string;
|
|
16194
|
-
enum: string[];
|
|
16195
|
-
type: string;
|
|
16196
|
-
};
|
|
16197
16214
|
name: {
|
|
16198
16215
|
description: string;
|
|
16199
16216
|
type: string;
|
|
@@ -16211,15 +16228,6 @@ declare const _default: {
|
|
|
16211
16228
|
description: string;
|
|
16212
16229
|
type: string;
|
|
16213
16230
|
};
|
|
16214
|
-
use_backup_access_code_pool: {
|
|
16215
|
-
description: string;
|
|
16216
|
-
type: string;
|
|
16217
|
-
};
|
|
16218
|
-
use_offline_access_code: {
|
|
16219
|
-
deprecated: boolean;
|
|
16220
|
-
type: string;
|
|
16221
|
-
'x-deprecated': string;
|
|
16222
|
-
};
|
|
16223
16231
|
};
|
|
16224
16232
|
required: string[];
|
|
16225
16233
|
type: string;
|
|
@@ -16341,20 +16349,6 @@ declare const _default: {
|
|
|
16341
16349
|
description: string;
|
|
16342
16350
|
type: string;
|
|
16343
16351
|
};
|
|
16344
|
-
is_offline_access_code: {
|
|
16345
|
-
description: string;
|
|
16346
|
-
type: string;
|
|
16347
|
-
};
|
|
16348
|
-
is_one_time_use: {
|
|
16349
|
-
description: string;
|
|
16350
|
-
type: string;
|
|
16351
|
-
};
|
|
16352
|
-
max_time_rounding: {
|
|
16353
|
-
default: string;
|
|
16354
|
-
description: string;
|
|
16355
|
-
enum: string[];
|
|
16356
|
-
type: string;
|
|
16357
|
-
};
|
|
16358
16352
|
name: {
|
|
16359
16353
|
description: string;
|
|
16360
16354
|
type: string;
|
|
@@ -16372,15 +16366,6 @@ declare const _default: {
|
|
|
16372
16366
|
description: string;
|
|
16373
16367
|
type: string;
|
|
16374
16368
|
};
|
|
16375
|
-
use_backup_access_code_pool: {
|
|
16376
|
-
description: string;
|
|
16377
|
-
type: string;
|
|
16378
|
-
};
|
|
16379
|
-
use_offline_access_code: {
|
|
16380
|
-
deprecated: boolean;
|
|
16381
|
-
type: string;
|
|
16382
|
-
'x-deprecated': string;
|
|
16383
|
-
};
|
|
16384
16369
|
};
|
|
16385
16370
|
required: string[];
|
|
16386
16371
|
type: string;
|