@seamapi/types 1.933.0 → 1.935.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 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +345 -43
- package/dist/index.cjs +93 -21
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +33 -0
- package/lib/seam/connect/models/devices/device-metadata.js +18 -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 +50 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +36 -3
- package/lib/seam/connect/models/events/access-codes.d.ts +12 -12
- package/lib/seam/connect/models/events/seam-event.d.ts +6 -6
- package/lib/seam/connect/openapi.js +63 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +252 -31
- package/lib/seam/devicedb/models/device-model.d.ts +4 -4
- package/lib/seam/devicedb/route-specs.d.ts +8 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +19 -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 +64 -0
- package/src/lib/seam/connect/route-types.ts +289 -0
package/dist/connect.d.cts
CHANGED
|
@@ -14837,7 +14837,7 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
14837
14837
|
type DeviceWarning = z.infer<typeof device_warning>;
|
|
14838
14838
|
declare const device: z.ZodObject<{
|
|
14839
14839
|
device_id: z.ZodString;
|
|
14840
|
-
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"]>, 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"]>]>;
|
|
14840
|
+
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"]>]>;
|
|
14841
14841
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
14842
14842
|
nickname: z.ZodOptional<z.ZodString>;
|
|
14843
14843
|
display_name: z.ZodString;
|
|
@@ -15788,6 +15788,7 @@ declare const device: z.ZodObject<{
|
|
|
15788
15788
|
omnitec_metadata: z.ZodOptional<z.ZodObject<{
|
|
15789
15789
|
lock_id: z.ZodNumber;
|
|
15790
15790
|
lock_name: z.ZodString;
|
|
15791
|
+
lock_alias: z.ZodOptional<z.ZodString>;
|
|
15791
15792
|
lock_mac: z.ZodString;
|
|
15792
15793
|
has_gateway: z.ZodBoolean;
|
|
15793
15794
|
timezone_raw_offset_ms: z.ZodNumber;
|
|
@@ -15797,12 +15798,14 @@ declare const device: z.ZodObject<{
|
|
|
15797
15798
|
has_gateway: boolean;
|
|
15798
15799
|
timezone_raw_offset_ms: number;
|
|
15799
15800
|
lock_mac: string;
|
|
15801
|
+
lock_alias?: string | undefined;
|
|
15800
15802
|
}, {
|
|
15801
15803
|
lock_id: number;
|
|
15802
15804
|
lock_name: string;
|
|
15803
15805
|
has_gateway: boolean;
|
|
15804
15806
|
timezone_raw_offset_ms: number;
|
|
15805
15807
|
lock_mac: string;
|
|
15808
|
+
lock_alias?: string | undefined;
|
|
15806
15809
|
}>>;
|
|
15807
15810
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
15808
15811
|
serial_no: z.ZodString;
|
|
@@ -15951,6 +15954,22 @@ declare const device: z.ZodObject<{
|
|
|
15951
15954
|
firmware_version?: string | undefined;
|
|
15952
15955
|
wifi_signal_strength?: number | undefined;
|
|
15953
15956
|
}>>;
|
|
15957
|
+
kisi_metadata: z.ZodOptional<z.ZodObject<{
|
|
15958
|
+
lock_id: z.ZodNumber;
|
|
15959
|
+
lock_name: z.ZodString;
|
|
15960
|
+
place_name: z.ZodNullable<z.ZodString>;
|
|
15961
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15962
|
+
}, "strip", z.ZodTypeAny, {
|
|
15963
|
+
lock_id: number;
|
|
15964
|
+
lock_name: string;
|
|
15965
|
+
place_name: string | null;
|
|
15966
|
+
description: string | null;
|
|
15967
|
+
}, {
|
|
15968
|
+
lock_id: number;
|
|
15969
|
+
lock_name: string;
|
|
15970
|
+
place_name: string | null;
|
|
15971
|
+
description: string | null;
|
|
15972
|
+
}>>;
|
|
15954
15973
|
}, "strip", z.ZodTypeAny, {
|
|
15955
15974
|
ecobee_metadata?: {
|
|
15956
15975
|
device_name: string;
|
|
@@ -16184,6 +16203,7 @@ declare const device: z.ZodObject<{
|
|
|
16184
16203
|
has_gateway: boolean;
|
|
16185
16204
|
timezone_raw_offset_ms: number;
|
|
16186
16205
|
lock_mac: string;
|
|
16206
|
+
lock_alias?: string | undefined;
|
|
16187
16207
|
} | undefined;
|
|
16188
16208
|
tado_metadata?: {
|
|
16189
16209
|
serial_no: string;
|
|
@@ -16238,6 +16258,12 @@ declare const device: z.ZodObject<{
|
|
|
16238
16258
|
firmware_version?: string | undefined;
|
|
16239
16259
|
wifi_signal_strength?: number | undefined;
|
|
16240
16260
|
} | undefined;
|
|
16261
|
+
kisi_metadata?: {
|
|
16262
|
+
lock_id: number;
|
|
16263
|
+
lock_name: string;
|
|
16264
|
+
place_name: string | null;
|
|
16265
|
+
description: string | null;
|
|
16266
|
+
} | undefined;
|
|
16241
16267
|
}, {
|
|
16242
16268
|
ecobee_metadata?: {
|
|
16243
16269
|
device_name: string;
|
|
@@ -16471,6 +16497,7 @@ declare const device: z.ZodObject<{
|
|
|
16471
16497
|
has_gateway: boolean;
|
|
16472
16498
|
timezone_raw_offset_ms: number;
|
|
16473
16499
|
lock_mac: string;
|
|
16500
|
+
lock_alias?: string | undefined;
|
|
16474
16501
|
} | undefined;
|
|
16475
16502
|
tado_metadata?: {
|
|
16476
16503
|
serial_no: string;
|
|
@@ -16525,6 +16552,12 @@ declare const device: z.ZodObject<{
|
|
|
16525
16552
|
firmware_version?: string | undefined;
|
|
16526
16553
|
wifi_signal_strength?: number | undefined;
|
|
16527
16554
|
} | undefined;
|
|
16555
|
+
kisi_metadata?: {
|
|
16556
|
+
lock_id: number;
|
|
16557
|
+
lock_name: string;
|
|
16558
|
+
place_name: string | null;
|
|
16559
|
+
description: string | null;
|
|
16560
|
+
} | undefined;
|
|
16528
16561
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
16529
16562
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
16530
16563
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -18400,7 +18433,7 @@ declare const device: z.ZodObject<{
|
|
|
18400
18433
|
warning_code: "insufficient_permissions";
|
|
18401
18434
|
})[];
|
|
18402
18435
|
custom_metadata: Record<string, string | boolean>;
|
|
18403
|
-
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") | "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";
|
|
18436
|
+
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";
|
|
18404
18437
|
space_ids: string[];
|
|
18405
18438
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
18406
18439
|
properties: {
|
|
@@ -18684,6 +18717,7 @@ declare const device: z.ZodObject<{
|
|
|
18684
18717
|
has_gateway: boolean;
|
|
18685
18718
|
timezone_raw_offset_ms: number;
|
|
18686
18719
|
lock_mac: string;
|
|
18720
|
+
lock_alias?: string | undefined;
|
|
18687
18721
|
} | undefined;
|
|
18688
18722
|
tado_metadata?: {
|
|
18689
18723
|
serial_no: string;
|
|
@@ -18738,6 +18772,12 @@ declare const device: z.ZodObject<{
|
|
|
18738
18772
|
firmware_version?: string | undefined;
|
|
18739
18773
|
wifi_signal_strength?: number | undefined;
|
|
18740
18774
|
} | undefined;
|
|
18775
|
+
kisi_metadata?: {
|
|
18776
|
+
lock_id: number;
|
|
18777
|
+
lock_name: string;
|
|
18778
|
+
place_name: string | null;
|
|
18779
|
+
description: string | null;
|
|
18780
|
+
} | undefined;
|
|
18741
18781
|
} & {
|
|
18742
18782
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
18743
18783
|
code_constraints?: ({
|
|
@@ -19183,7 +19223,7 @@ declare const device: z.ZodObject<{
|
|
|
19183
19223
|
warning_code: "insufficient_permissions";
|
|
19184
19224
|
})[];
|
|
19185
19225
|
custom_metadata: Record<string, string | boolean>;
|
|
19186
|
-
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") | "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";
|
|
19226
|
+
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";
|
|
19187
19227
|
space_ids: string[];
|
|
19188
19228
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
19189
19229
|
properties: {
|
|
@@ -19467,6 +19507,7 @@ declare const device: z.ZodObject<{
|
|
|
19467
19507
|
has_gateway: boolean;
|
|
19468
19508
|
timezone_raw_offset_ms: number;
|
|
19469
19509
|
lock_mac: string;
|
|
19510
|
+
lock_alias?: string | undefined;
|
|
19470
19511
|
} | undefined;
|
|
19471
19512
|
tado_metadata?: {
|
|
19472
19513
|
serial_no: string;
|
|
@@ -19521,6 +19562,12 @@ declare const device: z.ZodObject<{
|
|
|
19521
19562
|
firmware_version?: string | undefined;
|
|
19522
19563
|
wifi_signal_strength?: number | undefined;
|
|
19523
19564
|
} | undefined;
|
|
19565
|
+
kisi_metadata?: {
|
|
19566
|
+
lock_id: number;
|
|
19567
|
+
lock_name: string;
|
|
19568
|
+
place_name: string | null;
|
|
19569
|
+
description: string | null;
|
|
19570
|
+
} | undefined;
|
|
19524
19571
|
} & {
|
|
19525
19572
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
19526
19573
|
code_constraints?: ({
|
|
@@ -19805,6 +19852,7 @@ declare const DEVICE_PROVIDERS: {
|
|
|
19805
19852
|
readonly GUESTY: "guesty";
|
|
19806
19853
|
readonly ACUITY_SCHEDULING: "acuity_scheduling";
|
|
19807
19854
|
readonly OMNITEC: "omnitec";
|
|
19855
|
+
readonly KISI: "kisi";
|
|
19808
19856
|
};
|
|
19809
19857
|
type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
|
|
19810
19858
|
declare const device_provider: z.ZodObject<{
|
|
@@ -19888,7 +19936,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
|
|
|
19888
19936
|
|
|
19889
19937
|
declare const unmanaged_device: z.ZodObject<Pick<{
|
|
19890
19938
|
device_id: z.ZodString;
|
|
19891
|
-
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"]>, 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"]>]>;
|
|
19939
|
+
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"]>]>;
|
|
19892
19940
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
19893
19941
|
nickname: z.ZodOptional<z.ZodString>;
|
|
19894
19942
|
display_name: z.ZodString;
|
|
@@ -20839,6 +20887,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
20839
20887
|
omnitec_metadata: z.ZodOptional<z.ZodObject<{
|
|
20840
20888
|
lock_id: z.ZodNumber;
|
|
20841
20889
|
lock_name: z.ZodString;
|
|
20890
|
+
lock_alias: z.ZodOptional<z.ZodString>;
|
|
20842
20891
|
lock_mac: z.ZodString;
|
|
20843
20892
|
has_gateway: z.ZodBoolean;
|
|
20844
20893
|
timezone_raw_offset_ms: z.ZodNumber;
|
|
@@ -20848,12 +20897,14 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
20848
20897
|
has_gateway: boolean;
|
|
20849
20898
|
timezone_raw_offset_ms: number;
|
|
20850
20899
|
lock_mac: string;
|
|
20900
|
+
lock_alias?: string | undefined;
|
|
20851
20901
|
}, {
|
|
20852
20902
|
lock_id: number;
|
|
20853
20903
|
lock_name: string;
|
|
20854
20904
|
has_gateway: boolean;
|
|
20855
20905
|
timezone_raw_offset_ms: number;
|
|
20856
20906
|
lock_mac: string;
|
|
20907
|
+
lock_alias?: string | undefined;
|
|
20857
20908
|
}>>;
|
|
20858
20909
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
20859
20910
|
serial_no: z.ZodString;
|
|
@@ -21002,6 +21053,22 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21002
21053
|
firmware_version?: string | undefined;
|
|
21003
21054
|
wifi_signal_strength?: number | undefined;
|
|
21004
21055
|
}>>;
|
|
21056
|
+
kisi_metadata: z.ZodOptional<z.ZodObject<{
|
|
21057
|
+
lock_id: z.ZodNumber;
|
|
21058
|
+
lock_name: z.ZodString;
|
|
21059
|
+
place_name: z.ZodNullable<z.ZodString>;
|
|
21060
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21061
|
+
}, "strip", z.ZodTypeAny, {
|
|
21062
|
+
lock_id: number;
|
|
21063
|
+
lock_name: string;
|
|
21064
|
+
place_name: string | null;
|
|
21065
|
+
description: string | null;
|
|
21066
|
+
}, {
|
|
21067
|
+
lock_id: number;
|
|
21068
|
+
lock_name: string;
|
|
21069
|
+
place_name: string | null;
|
|
21070
|
+
description: string | null;
|
|
21071
|
+
}>>;
|
|
21005
21072
|
}, "strip", z.ZodTypeAny, {
|
|
21006
21073
|
ecobee_metadata?: {
|
|
21007
21074
|
device_name: string;
|
|
@@ -21235,6 +21302,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21235
21302
|
has_gateway: boolean;
|
|
21236
21303
|
timezone_raw_offset_ms: number;
|
|
21237
21304
|
lock_mac: string;
|
|
21305
|
+
lock_alias?: string | undefined;
|
|
21238
21306
|
} | undefined;
|
|
21239
21307
|
tado_metadata?: {
|
|
21240
21308
|
serial_no: string;
|
|
@@ -21289,6 +21357,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21289
21357
|
firmware_version?: string | undefined;
|
|
21290
21358
|
wifi_signal_strength?: number | undefined;
|
|
21291
21359
|
} | undefined;
|
|
21360
|
+
kisi_metadata?: {
|
|
21361
|
+
lock_id: number;
|
|
21362
|
+
lock_name: string;
|
|
21363
|
+
place_name: string | null;
|
|
21364
|
+
description: string | null;
|
|
21365
|
+
} | undefined;
|
|
21292
21366
|
}, {
|
|
21293
21367
|
ecobee_metadata?: {
|
|
21294
21368
|
device_name: string;
|
|
@@ -21522,6 +21596,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21522
21596
|
has_gateway: boolean;
|
|
21523
21597
|
timezone_raw_offset_ms: number;
|
|
21524
21598
|
lock_mac: string;
|
|
21599
|
+
lock_alias?: string | undefined;
|
|
21525
21600
|
} | undefined;
|
|
21526
21601
|
tado_metadata?: {
|
|
21527
21602
|
serial_no: string;
|
|
@@ -21576,6 +21651,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21576
21651
|
firmware_version?: string | undefined;
|
|
21577
21652
|
wifi_signal_strength?: number | undefined;
|
|
21578
21653
|
} | undefined;
|
|
21654
|
+
kisi_metadata?: {
|
|
21655
|
+
lock_id: number;
|
|
21656
|
+
lock_name: string;
|
|
21657
|
+
place_name: string | null;
|
|
21658
|
+
description: string | null;
|
|
21659
|
+
} | undefined;
|
|
21579
21660
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
21580
21661
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
21581
21662
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -23607,7 +23688,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23607
23688
|
warning_code: "insufficient_permissions";
|
|
23608
23689
|
})[];
|
|
23609
23690
|
custom_metadata: Record<string, string | boolean>;
|
|
23610
|
-
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") | "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";
|
|
23691
|
+
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";
|
|
23611
23692
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
23612
23693
|
properties: {
|
|
23613
23694
|
name: string;
|
|
@@ -23888,7 +23969,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23888
23969
|
warning_code: "insufficient_permissions";
|
|
23889
23970
|
})[];
|
|
23890
23971
|
custom_metadata: Record<string, string | boolean>;
|
|
23891
|
-
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") | "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";
|
|
23972
|
+
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";
|
|
23892
23973
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
23893
23974
|
properties: {
|
|
23894
23975
|
name: string;
|
|
@@ -24077,6 +24158,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24077
24158
|
workspace_id: string;
|
|
24078
24159
|
created_at: string;
|
|
24079
24160
|
connected_account_id: string;
|
|
24161
|
+
description: string;
|
|
24080
24162
|
from: {
|
|
24081
24163
|
name: string | null;
|
|
24082
24164
|
};
|
|
@@ -24087,7 +24169,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24087
24169
|
event_id: string;
|
|
24088
24170
|
occurred_at: string;
|
|
24089
24171
|
event_type: "access_code.name_changed";
|
|
24090
|
-
description: string;
|
|
24091
24172
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24092
24173
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24093
24174
|
}, {
|
|
@@ -24095,6 +24176,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24095
24176
|
workspace_id: string;
|
|
24096
24177
|
created_at: string;
|
|
24097
24178
|
connected_account_id: string;
|
|
24179
|
+
description: string;
|
|
24098
24180
|
from: {
|
|
24099
24181
|
name: string | null;
|
|
24100
24182
|
};
|
|
@@ -24105,7 +24187,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24105
24187
|
event_id: string;
|
|
24106
24188
|
occurred_at: string;
|
|
24107
24189
|
event_type: "access_code.name_changed";
|
|
24108
|
-
description: string;
|
|
24109
24190
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24110
24191
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24111
24192
|
}>, z.ZodObject<{
|
|
@@ -24141,6 +24222,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24141
24222
|
workspace_id: string;
|
|
24142
24223
|
created_at: string;
|
|
24143
24224
|
connected_account_id: string;
|
|
24225
|
+
description: string;
|
|
24144
24226
|
from: {
|
|
24145
24227
|
code: string | null;
|
|
24146
24228
|
};
|
|
@@ -24151,7 +24233,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24151
24233
|
event_id: string;
|
|
24152
24234
|
occurred_at: string;
|
|
24153
24235
|
event_type: "access_code.code_changed";
|
|
24154
|
-
description: string;
|
|
24155
24236
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24156
24237
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24157
24238
|
}, {
|
|
@@ -24159,6 +24240,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24159
24240
|
workspace_id: string;
|
|
24160
24241
|
created_at: string;
|
|
24161
24242
|
connected_account_id: string;
|
|
24243
|
+
description: string;
|
|
24162
24244
|
from: {
|
|
24163
24245
|
code: string | null;
|
|
24164
24246
|
};
|
|
@@ -24169,7 +24251,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24169
24251
|
event_id: string;
|
|
24170
24252
|
occurred_at: string;
|
|
24171
24253
|
event_type: "access_code.code_changed";
|
|
24172
|
-
description: string;
|
|
24173
24254
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24174
24255
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24175
24256
|
}>, z.ZodObject<{
|
|
@@ -24211,6 +24292,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24211
24292
|
workspace_id: string;
|
|
24212
24293
|
created_at: string;
|
|
24213
24294
|
connected_account_id: string;
|
|
24295
|
+
description: string;
|
|
24214
24296
|
from: {
|
|
24215
24297
|
starts_at: string | null;
|
|
24216
24298
|
ends_at: string | null;
|
|
@@ -24223,7 +24305,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24223
24305
|
event_id: string;
|
|
24224
24306
|
occurred_at: string;
|
|
24225
24307
|
event_type: "access_code.time_frame_changed";
|
|
24226
|
-
description: string;
|
|
24227
24308
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24228
24309
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24229
24310
|
}, {
|
|
@@ -24231,6 +24312,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24231
24312
|
workspace_id: string;
|
|
24232
24313
|
created_at: string;
|
|
24233
24314
|
connected_account_id: string;
|
|
24315
|
+
description: string;
|
|
24234
24316
|
from: {
|
|
24235
24317
|
starts_at: string | null;
|
|
24236
24318
|
ends_at: string | null;
|
|
@@ -24243,7 +24325,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24243
24325
|
event_id: string;
|
|
24244
24326
|
occurred_at: string;
|
|
24245
24327
|
event_type: "access_code.time_frame_changed";
|
|
24246
|
-
description: string;
|
|
24247
24328
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24248
24329
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24249
24330
|
}>, z.ZodObject<{
|
|
@@ -41680,7 +41761,7 @@ type Routes = {
|
|
|
41680
41761
|
/** ID of the device. */
|
|
41681
41762
|
device_id: string;
|
|
41682
41763
|
/** Type of the device. */
|
|
41683
|
-
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') | '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';
|
|
41764
|
+
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';
|
|
41684
41765
|
/** IDs of the spaces the device is in. */
|
|
41685
41766
|
space_ids: string[];
|
|
41686
41767
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -42220,6 +42301,8 @@ type Routes = {
|
|
|
42220
42301
|
lock_id: number;
|
|
42221
42302
|
/** Lock name for an Omnitec device. */
|
|
42222
42303
|
lock_name: string;
|
|
42304
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
42305
|
+
lock_alias?: string | undefined;
|
|
42223
42306
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
42224
42307
|
lock_mac: string;
|
|
42225
42308
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -42327,6 +42410,17 @@ type Routes = {
|
|
|
42327
42410
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
42328
42411
|
location_id?: (string | null) | undefined;
|
|
42329
42412
|
} | undefined;
|
|
42413
|
+
/** Metadata for a Kisi device. */
|
|
42414
|
+
kisi_metadata?: {
|
|
42415
|
+
/** Lock ID for a Kisi device. */
|
|
42416
|
+
lock_id: number;
|
|
42417
|
+
/** Lock name for a Kisi device. */
|
|
42418
|
+
lock_name: string;
|
|
42419
|
+
/** Place name for a Kisi device. */
|
|
42420
|
+
place_name: string | null;
|
|
42421
|
+
/** Description for a Kisi device. */
|
|
42422
|
+
description: string | null;
|
|
42423
|
+
} | undefined;
|
|
42330
42424
|
}) & ({
|
|
42331
42425
|
/** */
|
|
42332
42426
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -48380,7 +48474,7 @@ type Routes = {
|
|
|
48380
48474
|
/** ID of the device. */
|
|
48381
48475
|
device_id: string;
|
|
48382
48476
|
/** Type of the device. */
|
|
48383
|
-
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') | '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';
|
|
48477
|
+
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';
|
|
48384
48478
|
/** IDs of the spaces the device is in. */
|
|
48385
48479
|
space_ids: string[];
|
|
48386
48480
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -48920,6 +49014,8 @@ type Routes = {
|
|
|
48920
49014
|
lock_id: number;
|
|
48921
49015
|
/** Lock name for an Omnitec device. */
|
|
48922
49016
|
lock_name: string;
|
|
49017
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
49018
|
+
lock_alias?: string | undefined;
|
|
48923
49019
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
48924
49020
|
lock_mac: string;
|
|
48925
49021
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -49027,6 +49123,17 @@ type Routes = {
|
|
|
49027
49123
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
49028
49124
|
location_id?: (string | null) | undefined;
|
|
49029
49125
|
} | undefined;
|
|
49126
|
+
/** Metadata for a Kisi device. */
|
|
49127
|
+
kisi_metadata?: {
|
|
49128
|
+
/** Lock ID for a Kisi device. */
|
|
49129
|
+
lock_id: number;
|
|
49130
|
+
/** Lock name for a Kisi device. */
|
|
49131
|
+
lock_name: string;
|
|
49132
|
+
/** Place name for a Kisi device. */
|
|
49133
|
+
place_name: string | null;
|
|
49134
|
+
/** Description for a Kisi device. */
|
|
49135
|
+
description: string | null;
|
|
49136
|
+
} | undefined;
|
|
49030
49137
|
}) & ({
|
|
49031
49138
|
/** */
|
|
49032
49139
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -69031,7 +69138,7 @@ type Routes = {
|
|
|
69031
69138
|
/** Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error. */
|
|
69032
69139
|
customer_key?: string | undefined;
|
|
69033
69140
|
/** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with no filters. */
|
|
69034
|
-
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
69141
|
+
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
69035
69142
|
/** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with the desired `provider_category` filter. */
|
|
69036
69143
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
|
|
69037
69144
|
/** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
|
|
@@ -70852,7 +70959,7 @@ type Routes = {
|
|
|
70852
70959
|
/** ID of the device. */
|
|
70853
70960
|
device_id: string;
|
|
70854
70961
|
/** Type of the device. */
|
|
70855
|
-
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') | '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';
|
|
70962
|
+
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';
|
|
70856
70963
|
/** IDs of the spaces the device is in. */
|
|
70857
70964
|
space_ids: string[];
|
|
70858
70965
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -71392,6 +71499,8 @@ type Routes = {
|
|
|
71392
71499
|
lock_id: number;
|
|
71393
71500
|
/** Lock name for an Omnitec device. */
|
|
71394
71501
|
lock_name: string;
|
|
71502
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
71503
|
+
lock_alias?: string | undefined;
|
|
71395
71504
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
71396
71505
|
lock_mac: string;
|
|
71397
71506
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -71499,6 +71608,17 @@ type Routes = {
|
|
|
71499
71608
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
71500
71609
|
location_id?: (string | null) | undefined;
|
|
71501
71610
|
} | undefined;
|
|
71611
|
+
/** Metadata for a Kisi device. */
|
|
71612
|
+
kisi_metadata?: {
|
|
71613
|
+
/** Lock ID for a Kisi device. */
|
|
71614
|
+
lock_id: number;
|
|
71615
|
+
/** Lock name for a Kisi device. */
|
|
71616
|
+
lock_name: string;
|
|
71617
|
+
/** Place name for a Kisi device. */
|
|
71618
|
+
place_name: string | null;
|
|
71619
|
+
/** Description for a Kisi device. */
|
|
71620
|
+
description: string | null;
|
|
71621
|
+
} | undefined;
|
|
71502
71622
|
}) & ({
|
|
71503
71623
|
/** */
|
|
71504
71624
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -72309,11 +72429,11 @@ type Routes = {
|
|
|
72309
72429
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
72310
72430
|
connect_webview_id?: string | undefined;
|
|
72311
72431
|
/** Device type for which you want to list devices. */
|
|
72312
|
-
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') | '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') | undefined;
|
|
72432
|
+
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') | undefined;
|
|
72313
72433
|
/** Array of device types for which you want to list devices. */
|
|
72314
|
-
device_types?: (('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') | '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')[] | undefined;
|
|
72434
|
+
device_types?: (('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')[] | undefined;
|
|
72315
72435
|
/** Manufacturer for which you want to list devices. */
|
|
72316
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'slack') | undefined;
|
|
72436
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'kisi' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
72317
72437
|
/** Array of device IDs for which you want to list devices. */
|
|
72318
72438
|
device_ids?: string[] | undefined;
|
|
72319
72439
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -72346,7 +72466,7 @@ type Routes = {
|
|
|
72346
72466
|
/** ID of the device. */
|
|
72347
72467
|
device_id: string;
|
|
72348
72468
|
/** Type of the device. */
|
|
72349
|
-
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') | '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';
|
|
72469
|
+
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';
|
|
72350
72470
|
/** IDs of the spaces the device is in. */
|
|
72351
72471
|
space_ids: string[];
|
|
72352
72472
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -72886,6 +73006,8 @@ type Routes = {
|
|
|
72886
73006
|
lock_id: number;
|
|
72887
73007
|
/** Lock name for an Omnitec device. */
|
|
72888
73008
|
lock_name: string;
|
|
73009
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
73010
|
+
lock_alias?: string | undefined;
|
|
72889
73011
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
72890
73012
|
lock_mac: string;
|
|
72891
73013
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -72993,6 +73115,17 @@ type Routes = {
|
|
|
72993
73115
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
72994
73116
|
location_id?: (string | null) | undefined;
|
|
72995
73117
|
} | undefined;
|
|
73118
|
+
/** Metadata for a Kisi device. */
|
|
73119
|
+
kisi_metadata?: {
|
|
73120
|
+
/** Lock ID for a Kisi device. */
|
|
73121
|
+
lock_id: number;
|
|
73122
|
+
/** Lock name for a Kisi device. */
|
|
73123
|
+
lock_name: string;
|
|
73124
|
+
/** Place name for a Kisi device. */
|
|
73125
|
+
place_name: string | null;
|
|
73126
|
+
/** Description for a Kisi device. */
|
|
73127
|
+
description: string | null;
|
|
73128
|
+
} | undefined;
|
|
72996
73129
|
}) & ({
|
|
72997
73130
|
/** */
|
|
72998
73131
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -73810,7 +73943,7 @@ type Routes = {
|
|
|
73810
73943
|
jsonResponse: {
|
|
73811
73944
|
device_providers: {
|
|
73812
73945
|
/** Name of the device provider. */
|
|
73813
|
-
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec';
|
|
73946
|
+
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi';
|
|
73814
73947
|
/** Display name for the device provider. */
|
|
73815
73948
|
display_name: string;
|
|
73816
73949
|
/** Image URL for the device provider. */
|
|
@@ -73988,7 +74121,7 @@ type Routes = {
|
|
|
73988
74121
|
/** ID of the device. */
|
|
73989
74122
|
device_id: string;
|
|
73990
74123
|
/** Type of the device. */
|
|
73991
|
-
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') | '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';
|
|
74124
|
+
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';
|
|
73992
74125
|
/** Unique identifier for the account associated with the device. */
|
|
73993
74126
|
connected_account_id: string;
|
|
73994
74127
|
/** Location information for the device. */
|
|
@@ -74488,11 +74621,11 @@ type Routes = {
|
|
|
74488
74621
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
74489
74622
|
connect_webview_id?: string | undefined;
|
|
74490
74623
|
/** Device type for which you want to list devices. */
|
|
74491
|
-
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') | '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') | undefined;
|
|
74624
|
+
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') | undefined;
|
|
74492
74625
|
/** Array of device types for which you want to list devices. */
|
|
74493
|
-
device_types?: (('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') | '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')[] | undefined;
|
|
74626
|
+
device_types?: (('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')[] | undefined;
|
|
74494
74627
|
/** Manufacturer for which you want to list devices. */
|
|
74495
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'slack') | undefined;
|
|
74628
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'kisi' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
74496
74629
|
/** Array of device IDs for which you want to list devices. */
|
|
74497
74630
|
device_ids?: string[] | undefined;
|
|
74498
74631
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -74525,7 +74658,7 @@ type Routes = {
|
|
|
74525
74658
|
/** ID of the device. */
|
|
74526
74659
|
device_id: string;
|
|
74527
74660
|
/** Type of the device. */
|
|
74528
|
-
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') | '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';
|
|
74661
|
+
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';
|
|
74529
74662
|
/** Unique identifier for the account associated with the device. */
|
|
74530
74663
|
connected_account_id: string;
|
|
74531
74664
|
/** Location information for the device. */
|
|
@@ -82907,7 +83040,7 @@ type Routes = {
|
|
|
82907
83040
|
/** ID of the device. */
|
|
82908
83041
|
device_id: string;
|
|
82909
83042
|
/** Type of the device. */
|
|
82910
|
-
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') | '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';
|
|
83043
|
+
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';
|
|
82911
83044
|
/** IDs of the spaces the device is in. */
|
|
82912
83045
|
space_ids: string[];
|
|
82913
83046
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -83447,6 +83580,8 @@ type Routes = {
|
|
|
83447
83580
|
lock_id: number;
|
|
83448
83581
|
/** Lock name for an Omnitec device. */
|
|
83449
83582
|
lock_name: string;
|
|
83583
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
83584
|
+
lock_alias?: string | undefined;
|
|
83450
83585
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
83451
83586
|
lock_mac: string;
|
|
83452
83587
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -83554,6 +83689,17 @@ type Routes = {
|
|
|
83554
83689
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
83555
83690
|
location_id?: (string | null) | undefined;
|
|
83556
83691
|
} | undefined;
|
|
83692
|
+
/** Metadata for a Kisi device. */
|
|
83693
|
+
kisi_metadata?: {
|
|
83694
|
+
/** Lock ID for a Kisi device. */
|
|
83695
|
+
lock_id: number;
|
|
83696
|
+
/** Lock name for a Kisi device. */
|
|
83697
|
+
lock_name: string;
|
|
83698
|
+
/** Place name for a Kisi device. */
|
|
83699
|
+
place_name: string | null;
|
|
83700
|
+
/** Description for a Kisi device. */
|
|
83701
|
+
description: string | null;
|
|
83702
|
+
} | undefined;
|
|
83557
83703
|
}) & ({
|
|
83558
83704
|
/** */
|
|
83559
83705
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -84351,7 +84497,7 @@ type Routes = {
|
|
|
84351
84497
|
/** ID of the device. */
|
|
84352
84498
|
device_id: string;
|
|
84353
84499
|
/** Type of the device. */
|
|
84354
|
-
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') | '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';
|
|
84500
|
+
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';
|
|
84355
84501
|
/** IDs of the spaces the device is in. */
|
|
84356
84502
|
space_ids: string[];
|
|
84357
84503
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -84891,6 +85037,8 @@ type Routes = {
|
|
|
84891
85037
|
lock_id: number;
|
|
84892
85038
|
/** Lock name for an Omnitec device. */
|
|
84893
85039
|
lock_name: string;
|
|
85040
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
85041
|
+
lock_alias?: string | undefined;
|
|
84894
85042
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
84895
85043
|
lock_mac: string;
|
|
84896
85044
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -84998,6 +85146,17 @@ type Routes = {
|
|
|
84998
85146
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
84999
85147
|
location_id?: (string | null) | undefined;
|
|
85000
85148
|
} | undefined;
|
|
85149
|
+
/** Metadata for a Kisi device. */
|
|
85150
|
+
kisi_metadata?: {
|
|
85151
|
+
/** Lock ID for a Kisi device. */
|
|
85152
|
+
lock_id: number;
|
|
85153
|
+
/** Lock name for a Kisi device. */
|
|
85154
|
+
lock_name: string;
|
|
85155
|
+
/** Place name for a Kisi device. */
|
|
85156
|
+
place_name: string | null;
|
|
85157
|
+
/** Description for a Kisi device. */
|
|
85158
|
+
description: string | null;
|
|
85159
|
+
} | undefined;
|
|
85001
85160
|
}) & ({
|
|
85002
85161
|
/** */
|
|
85003
85162
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -85808,11 +85967,11 @@ type Routes = {
|
|
|
85808
85967
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
85809
85968
|
connect_webview_id?: string | undefined;
|
|
85810
85969
|
/** Device type of the locks that you want to list. */
|
|
85811
|
-
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') | undefined;
|
|
85970
|
+
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') | undefined;
|
|
85812
85971
|
/** Device types of the locks that you want to list. */
|
|
85813
|
-
device_types?: ('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')[] | undefined;
|
|
85972
|
+
device_types?: ('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')[] | undefined;
|
|
85814
85973
|
/** Manufacturer of the locks that you want to list. */
|
|
85815
|
-
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec') | undefined;
|
|
85974
|
+
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'kisi' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec' | 'kisi') | undefined;
|
|
85816
85975
|
/** Array of device IDs for which you want to list devices. */
|
|
85817
85976
|
device_ids?: string[] | undefined;
|
|
85818
85977
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -85845,7 +86004,7 @@ type Routes = {
|
|
|
85845
86004
|
/** ID of the device. */
|
|
85846
86005
|
device_id: string;
|
|
85847
86006
|
/** Type of the device. */
|
|
85848
|
-
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') | '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';
|
|
86007
|
+
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';
|
|
85849
86008
|
/** IDs of the spaces the device is in. */
|
|
85850
86009
|
space_ids: string[];
|
|
85851
86010
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -86385,6 +86544,8 @@ type Routes = {
|
|
|
86385
86544
|
lock_id: number;
|
|
86386
86545
|
/** Lock name for an Omnitec device. */
|
|
86387
86546
|
lock_name: string;
|
|
86547
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
86548
|
+
lock_alias?: string | undefined;
|
|
86388
86549
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
86389
86550
|
lock_mac: string;
|
|
86390
86551
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -86492,6 +86653,17 @@ type Routes = {
|
|
|
86492
86653
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
86493
86654
|
location_id?: (string | null) | undefined;
|
|
86494
86655
|
} | undefined;
|
|
86656
|
+
/** Metadata for a Kisi device. */
|
|
86657
|
+
kisi_metadata?: {
|
|
86658
|
+
/** Lock ID for a Kisi device. */
|
|
86659
|
+
lock_id: number;
|
|
86660
|
+
/** Lock name for a Kisi device. */
|
|
86661
|
+
lock_name: string;
|
|
86662
|
+
/** Place name for a Kisi device. */
|
|
86663
|
+
place_name: string | null;
|
|
86664
|
+
/** Description for a Kisi device. */
|
|
86665
|
+
description: string | null;
|
|
86666
|
+
} | undefined;
|
|
86495
86667
|
}) & ({
|
|
86496
86668
|
/** */
|
|
86497
86669
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -87288,7 +87460,7 @@ type Routes = {
|
|
|
87288
87460
|
/** ID of the device. */
|
|
87289
87461
|
device_id: string;
|
|
87290
87462
|
/** Type of the device. */
|
|
87291
|
-
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') | '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';
|
|
87463
|
+
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';
|
|
87292
87464
|
/** IDs of the spaces the device is in. */
|
|
87293
87465
|
space_ids: string[];
|
|
87294
87466
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -87828,6 +88000,8 @@ type Routes = {
|
|
|
87828
88000
|
lock_id: number;
|
|
87829
88001
|
/** Lock name for an Omnitec device. */
|
|
87830
88002
|
lock_name: string;
|
|
88003
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
88004
|
+
lock_alias?: string | undefined;
|
|
87831
88005
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
87832
88006
|
lock_mac: string;
|
|
87833
88007
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -87935,6 +88109,17 @@ type Routes = {
|
|
|
87935
88109
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
87936
88110
|
location_id?: (string | null) | undefined;
|
|
87937
88111
|
} | undefined;
|
|
88112
|
+
/** Metadata for a Kisi device. */
|
|
88113
|
+
kisi_metadata?: {
|
|
88114
|
+
/** Lock ID for a Kisi device. */
|
|
88115
|
+
lock_id: number;
|
|
88116
|
+
/** Lock name for a Kisi device. */
|
|
88117
|
+
lock_name: string;
|
|
88118
|
+
/** Place name for a Kisi device. */
|
|
88119
|
+
place_name: string | null;
|
|
88120
|
+
/** Description for a Kisi device. */
|
|
88121
|
+
description: string | null;
|
|
88122
|
+
} | undefined;
|
|
87938
88123
|
}) & ({
|
|
87939
88124
|
/** */
|
|
87940
88125
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -95508,7 +95693,7 @@ type Routes = {
|
|
|
95508
95693
|
/** ID of the device. */
|
|
95509
95694
|
device_id: string;
|
|
95510
95695
|
/** Type of the device. */
|
|
95511
|
-
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') | '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';
|
|
95696
|
+
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';
|
|
95512
95697
|
/** IDs of the spaces the device is in. */
|
|
95513
95698
|
space_ids: string[];
|
|
95514
95699
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -96048,6 +96233,8 @@ type Routes = {
|
|
|
96048
96233
|
lock_id: number;
|
|
96049
96234
|
/** Lock name for an Omnitec device. */
|
|
96050
96235
|
lock_name: string;
|
|
96236
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
96237
|
+
lock_alias?: string | undefined;
|
|
96051
96238
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
96052
96239
|
lock_mac: string;
|
|
96053
96240
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -96155,6 +96342,17 @@ type Routes = {
|
|
|
96155
96342
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
96156
96343
|
location_id?: (string | null) | undefined;
|
|
96157
96344
|
} | undefined;
|
|
96345
|
+
/** Metadata for a Kisi device. */
|
|
96346
|
+
kisi_metadata?: {
|
|
96347
|
+
/** Lock ID for a Kisi device. */
|
|
96348
|
+
lock_id: number;
|
|
96349
|
+
/** Lock name for a Kisi device. */
|
|
96350
|
+
lock_name: string;
|
|
96351
|
+
/** Place name for a Kisi device. */
|
|
96352
|
+
place_name: string | null;
|
|
96353
|
+
/** Description for a Kisi device. */
|
|
96354
|
+
description: string | null;
|
|
96355
|
+
} | undefined;
|
|
96158
96356
|
}) & ({
|
|
96159
96357
|
/** */
|
|
96160
96358
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -96951,7 +97149,7 @@ type Routes = {
|
|
|
96951
97149
|
/** ID of the device. */
|
|
96952
97150
|
device_id: string;
|
|
96953
97151
|
/** Type of the device. */
|
|
96954
|
-
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') | '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';
|
|
97152
|
+
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';
|
|
96955
97153
|
/** IDs of the spaces the device is in. */
|
|
96956
97154
|
space_ids: string[];
|
|
96957
97155
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -97491,6 +97689,8 @@ type Routes = {
|
|
|
97491
97689
|
lock_id: number;
|
|
97492
97690
|
/** Lock name for an Omnitec device. */
|
|
97493
97691
|
lock_name: string;
|
|
97692
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
97693
|
+
lock_alias?: string | undefined;
|
|
97494
97694
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
97495
97695
|
lock_mac: string;
|
|
97496
97696
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -97598,6 +97798,17 @@ type Routes = {
|
|
|
97598
97798
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
97599
97799
|
location_id?: (string | null) | undefined;
|
|
97600
97800
|
} | undefined;
|
|
97801
|
+
/** Metadata for a Kisi device. */
|
|
97802
|
+
kisi_metadata?: {
|
|
97803
|
+
/** Lock ID for a Kisi device. */
|
|
97804
|
+
lock_id: number;
|
|
97805
|
+
/** Lock name for a Kisi device. */
|
|
97806
|
+
lock_name: string;
|
|
97807
|
+
/** Place name for a Kisi device. */
|
|
97808
|
+
place_name: string | null;
|
|
97809
|
+
/** Description for a Kisi device. */
|
|
97810
|
+
description: string | null;
|
|
97811
|
+
} | undefined;
|
|
97601
97812
|
}) & ({
|
|
97602
97813
|
/** */
|
|
97603
97814
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -112463,7 +112674,7 @@ type Routes = {
|
|
|
112463
112674
|
/** ID of the device. */
|
|
112464
112675
|
device_id: string;
|
|
112465
112676
|
/** Type of the device. */
|
|
112466
|
-
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') | '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';
|
|
112677
|
+
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';
|
|
112467
112678
|
/** IDs of the spaces the device is in. */
|
|
112468
112679
|
space_ids: string[];
|
|
112469
112680
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -113003,6 +113214,8 @@ type Routes = {
|
|
|
113003
113214
|
lock_id: number;
|
|
113004
113215
|
/** Lock name for an Omnitec device. */
|
|
113005
113216
|
lock_name: string;
|
|
113217
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
113218
|
+
lock_alias?: string | undefined;
|
|
113006
113219
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
113007
113220
|
lock_mac: string;
|
|
113008
113221
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -113110,6 +113323,17 @@ type Routes = {
|
|
|
113110
113323
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
113111
113324
|
location_id?: (string | null) | undefined;
|
|
113112
113325
|
} | undefined;
|
|
113326
|
+
/** Metadata for a Kisi device. */
|
|
113327
|
+
kisi_metadata?: {
|
|
113328
|
+
/** Lock ID for a Kisi device. */
|
|
113329
|
+
lock_id: number;
|
|
113330
|
+
/** Lock name for a Kisi device. */
|
|
113331
|
+
lock_name: string;
|
|
113332
|
+
/** Place name for a Kisi device. */
|
|
113333
|
+
place_name: string | null;
|
|
113334
|
+
/** Description for a Kisi device. */
|
|
113335
|
+
description: string | null;
|
|
113336
|
+
} | undefined;
|
|
113113
113337
|
}) & ({
|
|
113114
113338
|
/** */
|
|
113115
113339
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -119914,7 +120138,7 @@ type Routes = {
|
|
|
119914
120138
|
/** ID of the device. */
|
|
119915
120139
|
device_id: string;
|
|
119916
120140
|
/** Type of the device. */
|
|
119917
|
-
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') | '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';
|
|
120141
|
+
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';
|
|
119918
120142
|
/** IDs of the spaces the device is in. */
|
|
119919
120143
|
space_ids: string[];
|
|
119920
120144
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -120454,6 +120678,8 @@ type Routes = {
|
|
|
120454
120678
|
lock_id: number;
|
|
120455
120679
|
/** Lock name for an Omnitec device. */
|
|
120456
120680
|
lock_name: string;
|
|
120681
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
120682
|
+
lock_alias?: string | undefined;
|
|
120457
120683
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
120458
120684
|
lock_mac: string;
|
|
120459
120685
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -120561,6 +120787,17 @@ type Routes = {
|
|
|
120561
120787
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
120562
120788
|
location_id?: (string | null) | undefined;
|
|
120563
120789
|
} | undefined;
|
|
120790
|
+
/** Metadata for a Kisi device. */
|
|
120791
|
+
kisi_metadata?: {
|
|
120792
|
+
/** Lock ID for a Kisi device. */
|
|
120793
|
+
lock_id: number;
|
|
120794
|
+
/** Lock name for a Kisi device. */
|
|
120795
|
+
lock_name: string;
|
|
120796
|
+
/** Place name for a Kisi device. */
|
|
120797
|
+
place_name: string | null;
|
|
120798
|
+
/** Description for a Kisi device. */
|
|
120799
|
+
description: string | null;
|
|
120800
|
+
} | undefined;
|
|
120564
120801
|
}) & ({
|
|
120565
120802
|
/** */
|
|
120566
120803
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -124784,7 +125021,7 @@ type Routes = {
|
|
|
124784
125021
|
/** ID of the device. */
|
|
124785
125022
|
device_id: string;
|
|
124786
125023
|
/** Type of the device. */
|
|
124787
|
-
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') | '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';
|
|
125024
|
+
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';
|
|
124788
125025
|
/** IDs of the spaces the device is in. */
|
|
124789
125026
|
space_ids: string[];
|
|
124790
125027
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -125324,6 +125561,8 @@ type Routes = {
|
|
|
125324
125561
|
lock_id: number;
|
|
125325
125562
|
/** Lock name for an Omnitec device. */
|
|
125326
125563
|
lock_name: string;
|
|
125564
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
125565
|
+
lock_alias?: string | undefined;
|
|
125327
125566
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
125328
125567
|
lock_mac: string;
|
|
125329
125568
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -125431,6 +125670,17 @@ type Routes = {
|
|
|
125431
125670
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
125432
125671
|
location_id?: (string | null) | undefined;
|
|
125433
125672
|
} | undefined;
|
|
125673
|
+
/** Metadata for a Kisi device. */
|
|
125674
|
+
kisi_metadata?: {
|
|
125675
|
+
/** Lock ID for a Kisi device. */
|
|
125676
|
+
lock_id: number;
|
|
125677
|
+
/** Lock name for a Kisi device. */
|
|
125678
|
+
lock_name: string;
|
|
125679
|
+
/** Place name for a Kisi device. */
|
|
125680
|
+
place_name: string | null;
|
|
125681
|
+
/** Description for a Kisi device. */
|
|
125682
|
+
description: string | null;
|
|
125683
|
+
} | undefined;
|
|
125434
125684
|
}) & ({
|
|
125435
125685
|
/** */
|
|
125436
125686
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -126227,7 +126477,7 @@ type Routes = {
|
|
|
126227
126477
|
/** ID of the device. */
|
|
126228
126478
|
device_id: string;
|
|
126229
126479
|
/** Type of the device. */
|
|
126230
|
-
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') | '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';
|
|
126480
|
+
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';
|
|
126231
126481
|
/** IDs of the spaces the device is in. */
|
|
126232
126482
|
space_ids: string[];
|
|
126233
126483
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -126767,6 +127017,8 @@ type Routes = {
|
|
|
126767
127017
|
lock_id: number;
|
|
126768
127018
|
/** Lock name for an Omnitec device. */
|
|
126769
127019
|
lock_name: string;
|
|
127020
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
127021
|
+
lock_alias?: string | undefined;
|
|
126770
127022
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
126771
127023
|
lock_mac: string;
|
|
126772
127024
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -126874,6 +127126,17 @@ type Routes = {
|
|
|
126874
127126
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
126875
127127
|
location_id?: (string | null) | undefined;
|
|
126876
127128
|
} | undefined;
|
|
127129
|
+
/** Metadata for a Kisi device. */
|
|
127130
|
+
kisi_metadata?: {
|
|
127131
|
+
/** Lock ID for a Kisi device. */
|
|
127132
|
+
lock_id: number;
|
|
127133
|
+
/** Lock name for a Kisi device. */
|
|
127134
|
+
lock_name: string;
|
|
127135
|
+
/** Place name for a Kisi device. */
|
|
127136
|
+
place_name: string | null;
|
|
127137
|
+
/** Description for a Kisi device. */
|
|
127138
|
+
description: string | null;
|
|
127139
|
+
} | undefined;
|
|
126877
127140
|
}) & ({
|
|
126878
127141
|
/** */
|
|
126879
127142
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -135386,7 +135649,7 @@ type Routes = {
|
|
|
135386
135649
|
/** ID of the device. */
|
|
135387
135650
|
device_id: string;
|
|
135388
135651
|
/** Type of the device. */
|
|
135389
|
-
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') | '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';
|
|
135652
|
+
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';
|
|
135390
135653
|
/** IDs of the spaces the device is in. */
|
|
135391
135654
|
space_ids: string[];
|
|
135392
135655
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -135926,6 +136189,8 @@ type Routes = {
|
|
|
135926
136189
|
lock_id: number;
|
|
135927
136190
|
/** Lock name for an Omnitec device. */
|
|
135928
136191
|
lock_name: string;
|
|
136192
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
136193
|
+
lock_alias?: string | undefined;
|
|
135929
136194
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
135930
136195
|
lock_mac: string;
|
|
135931
136196
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -136033,6 +136298,17 @@ type Routes = {
|
|
|
136033
136298
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
136034
136299
|
location_id?: (string | null) | undefined;
|
|
136035
136300
|
} | undefined;
|
|
136301
|
+
/** Metadata for a Kisi device. */
|
|
136302
|
+
kisi_metadata?: {
|
|
136303
|
+
/** Lock ID for a Kisi device. */
|
|
136304
|
+
lock_id: number;
|
|
136305
|
+
/** Lock name for a Kisi device. */
|
|
136306
|
+
lock_name: string;
|
|
136307
|
+
/** Place name for a Kisi device. */
|
|
136308
|
+
place_name: string | null;
|
|
136309
|
+
/** Description for a Kisi device. */
|
|
136310
|
+
description: string | null;
|
|
136311
|
+
} | undefined;
|
|
136036
136312
|
}) & ({
|
|
136037
136313
|
/** */
|
|
136038
136314
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -136831,7 +137107,7 @@ type Routes = {
|
|
|
136831
137107
|
/** ID of the device. */
|
|
136832
137108
|
device_id: string;
|
|
136833
137109
|
/** Type of the device. */
|
|
136834
|
-
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') | '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';
|
|
137110
|
+
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';
|
|
136835
137111
|
/** IDs of the spaces the device is in. */
|
|
136836
137112
|
space_ids: string[];
|
|
136837
137113
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -137371,6 +137647,8 @@ type Routes = {
|
|
|
137371
137647
|
lock_id: number;
|
|
137372
137648
|
/** Lock name for an Omnitec device. */
|
|
137373
137649
|
lock_name: string;
|
|
137650
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
137651
|
+
lock_alias?: string | undefined;
|
|
137374
137652
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
137375
137653
|
lock_mac: string;
|
|
137376
137654
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -137478,6 +137756,17 @@ type Routes = {
|
|
|
137478
137756
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
137479
137757
|
location_id?: (string | null) | undefined;
|
|
137480
137758
|
} | undefined;
|
|
137759
|
+
/** Metadata for a Kisi device. */
|
|
137760
|
+
kisi_metadata?: {
|
|
137761
|
+
/** Lock ID for a Kisi device. */
|
|
137762
|
+
lock_id: number;
|
|
137763
|
+
/** Lock name for a Kisi device. */
|
|
137764
|
+
lock_name: string;
|
|
137765
|
+
/** Place name for a Kisi device. */
|
|
137766
|
+
place_name: string | null;
|
|
137767
|
+
/** Description for a Kisi device. */
|
|
137768
|
+
description: string | null;
|
|
137769
|
+
} | undefined;
|
|
137481
137770
|
}) & ({
|
|
137482
137771
|
/** */
|
|
137483
137772
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -139531,7 +139820,7 @@ type Routes = {
|
|
|
139531
139820
|
/** ID of the device. */
|
|
139532
139821
|
device_id: string;
|
|
139533
139822
|
/** Type of the device. */
|
|
139534
|
-
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') | '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';
|
|
139823
|
+
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';
|
|
139535
139824
|
/** IDs of the spaces the device is in. */
|
|
139536
139825
|
space_ids: string[];
|
|
139537
139826
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -140071,6 +140360,8 @@ type Routes = {
|
|
|
140071
140360
|
lock_id: number;
|
|
140072
140361
|
/** Lock name for an Omnitec device. */
|
|
140073
140362
|
lock_name: string;
|
|
140363
|
+
/** Operator-assigned alias for an Omnitec device. */
|
|
140364
|
+
lock_alias?: string | undefined;
|
|
140074
140365
|
/** Bluetooth MAC address for an Omnitec device. */
|
|
140075
140366
|
lock_mac: string;
|
|
140076
140367
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
@@ -140178,6 +140469,17 @@ type Routes = {
|
|
|
140178
140469
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
140179
140470
|
location_id?: (string | null) | undefined;
|
|
140180
140471
|
} | undefined;
|
|
140472
|
+
/** Metadata for a Kisi device. */
|
|
140473
|
+
kisi_metadata?: {
|
|
140474
|
+
/** Lock ID for a Kisi device. */
|
|
140475
|
+
lock_id: number;
|
|
140476
|
+
/** Lock name for a Kisi device. */
|
|
140477
|
+
lock_name: string;
|
|
140478
|
+
/** Place name for a Kisi device. */
|
|
140479
|
+
place_name: string | null;
|
|
140480
|
+
/** Description for a Kisi device. */
|
|
140481
|
+
description: string | null;
|
|
140482
|
+
} | undefined;
|
|
140181
140483
|
}) & ({
|
|
140182
140484
|
/** */
|
|
140183
140485
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -143840,7 +144142,7 @@ type Routes = {
|
|
|
143840
144142
|
/** ID of the device. */
|
|
143841
144143
|
device_id: string;
|
|
143842
144144
|
/** Type of the device. */
|
|
143843
|
-
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') | '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';
|
|
144145
|
+
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';
|
|
143844
144146
|
/** Unique identifier for the account associated with the device. */
|
|
143845
144147
|
connected_account_id: string;
|
|
143846
144148
|
/** Location information for the device. */
|