@seamapi/types 1.258.2 → 1.259.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 +52 -25
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +169 -63
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +3 -3
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +3 -3
- package/lib/seam/connect/models/devices/device-metadata.d.ts +18 -0
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.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 +33 -7
- package/lib/seam/connect/models/devices/phone.d.ts +22 -4
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +24 -6
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +2 -2
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +1 -1
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +12 -2
- package/lib/seam/connect/openapi.js +28 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +98 -46
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/device-metadata.ts +5 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +28 -6
- package/src/lib/seam/connect/route-types.ts +124 -16
package/dist/connect.d.cts
CHANGED
|
@@ -3223,7 +3223,7 @@ declare const device_warning: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3223
3223
|
type DeviceWarning = z.infer<typeof device_warning>;
|
|
3224
3224
|
declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
3225
3225
|
device_id: z.ZodString;
|
|
3226
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["visionline_encoder"]>]>;
|
|
3226
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["visionline_encoder"]>]>;
|
|
3227
3227
|
nickname: z.ZodOptional<z.ZodString>;
|
|
3228
3228
|
display_name: z.ZodString;
|
|
3229
3229
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -4091,6 +4091,16 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4091
4091
|
}, {
|
|
4092
4092
|
encoder_id: string;
|
|
4093
4093
|
}>>;
|
|
4094
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
4095
|
+
gadget_name: z.ZodString;
|
|
4096
|
+
gadget_id: z.ZodString;
|
|
4097
|
+
}, "strip", z.ZodTypeAny, {
|
|
4098
|
+
gadget_name: string;
|
|
4099
|
+
gadget_id: string;
|
|
4100
|
+
}, {
|
|
4101
|
+
gadget_name: string;
|
|
4102
|
+
gadget_id: string;
|
|
4103
|
+
}>>;
|
|
4094
4104
|
}, "strip", z.ZodTypeAny, {
|
|
4095
4105
|
august_metadata?: {
|
|
4096
4106
|
lock_id: string;
|
|
@@ -4296,6 +4306,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4296
4306
|
visionline_metadata?: {
|
|
4297
4307
|
encoder_id: string;
|
|
4298
4308
|
} | undefined;
|
|
4309
|
+
akiles_metadata?: {
|
|
4310
|
+
gadget_name: string;
|
|
4311
|
+
gadget_id: string;
|
|
4312
|
+
} | undefined;
|
|
4299
4313
|
}, {
|
|
4300
4314
|
august_metadata?: {
|
|
4301
4315
|
lock_id: string;
|
|
@@ -4501,6 +4515,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4501
4515
|
visionline_metadata?: {
|
|
4502
4516
|
encoder_id: string;
|
|
4503
4517
|
} | undefined;
|
|
4518
|
+
akiles_metadata?: {
|
|
4519
|
+
gadget_name: string;
|
|
4520
|
+
gadget_id: string;
|
|
4521
|
+
} | undefined;
|
|
4504
4522
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
4505
4523
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
4506
4524
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -4709,7 +4727,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4709
4727
|
device_id: z.ZodString;
|
|
4710
4728
|
name: z.ZodOptional<z.ZodString>;
|
|
4711
4729
|
climate_preset_key: z.ZodString;
|
|
4712
|
-
max_override_period_minutes: z.
|
|
4730
|
+
max_override_period_minutes: z.ZodNumber;
|
|
4713
4731
|
starts_at: z.ZodString;
|
|
4714
4732
|
ends_at: z.ZodString;
|
|
4715
4733
|
created_at: z.ZodString;
|
|
@@ -4729,11 +4747,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4729
4747
|
climate_preset_key: string;
|
|
4730
4748
|
thermostat_schedule_id: string;
|
|
4731
4749
|
device_id: string;
|
|
4750
|
+
max_override_period_minutes: number;
|
|
4732
4751
|
starts_at: string;
|
|
4733
4752
|
ends_at: string;
|
|
4734
4753
|
errors?: any;
|
|
4735
4754
|
name?: string | undefined;
|
|
4736
|
-
max_override_period_minutes?: number | undefined;
|
|
4737
4755
|
}>>>>;
|
|
4738
4756
|
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
4739
4757
|
min_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4879,11 +4897,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4879
4897
|
climate_preset_key: string;
|
|
4880
4898
|
thermostat_schedule_id: string;
|
|
4881
4899
|
device_id: string;
|
|
4900
|
+
max_override_period_minutes: number;
|
|
4882
4901
|
starts_at: string;
|
|
4883
4902
|
ends_at: string;
|
|
4884
4903
|
errors?: any;
|
|
4885
4904
|
name?: string | undefined;
|
|
4886
|
-
max_override_period_minutes?: number | undefined;
|
|
4887
4905
|
} | null | undefined;
|
|
4888
4906
|
min_cooling_set_point_celsius?: number | undefined;
|
|
4889
4907
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -4981,7 +4999,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4981
4999
|
custom_metadata: Record<string, string | boolean>;
|
|
4982
5000
|
display_name: string;
|
|
4983
5001
|
device_id: string;
|
|
4984
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
|
|
5002
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
|
|
4985
5003
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
4986
5004
|
properties: {
|
|
4987
5005
|
name: string;
|
|
@@ -5233,6 +5251,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5233
5251
|
visionline_metadata?: {
|
|
5234
5252
|
encoder_id: string;
|
|
5235
5253
|
} | undefined;
|
|
5254
|
+
akiles_metadata?: {
|
|
5255
|
+
gadget_name: string;
|
|
5256
|
+
gadget_id: string;
|
|
5257
|
+
} | undefined;
|
|
5236
5258
|
} & {
|
|
5237
5259
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
5238
5260
|
code_constraints?: ({
|
|
@@ -5364,7 +5386,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5364
5386
|
custom_metadata: Record<string, string | boolean>;
|
|
5365
5387
|
display_name: string;
|
|
5366
5388
|
device_id: string;
|
|
5367
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
|
|
5389
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
|
|
5368
5390
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
5369
5391
|
properties: {
|
|
5370
5392
|
name: string;
|
|
@@ -5616,6 +5638,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5616
5638
|
visionline_metadata?: {
|
|
5617
5639
|
encoder_id: string;
|
|
5618
5640
|
} | undefined;
|
|
5641
|
+
akiles_metadata?: {
|
|
5642
|
+
gadget_name: string;
|
|
5643
|
+
gadget_id: string;
|
|
5644
|
+
} | undefined;
|
|
5619
5645
|
} & {
|
|
5620
5646
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
5621
5647
|
code_constraints?: ({
|
|
@@ -5693,11 +5719,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5693
5719
|
climate_preset_key: string;
|
|
5694
5720
|
thermostat_schedule_id: string;
|
|
5695
5721
|
device_id: string;
|
|
5722
|
+
max_override_period_minutes: number;
|
|
5696
5723
|
starts_at: string;
|
|
5697
5724
|
ends_at: string;
|
|
5698
5725
|
errors?: any;
|
|
5699
5726
|
name?: string | undefined;
|
|
5700
|
-
max_override_period_minutes?: number | undefined;
|
|
5701
5727
|
} | null | undefined;
|
|
5702
5728
|
min_cooling_set_point_celsius?: number | undefined;
|
|
5703
5729
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -5827,7 +5853,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
|
|
|
5827
5853
|
|
|
5828
5854
|
declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<Pick<z.objectUtil.extendShape<{
|
|
5829
5855
|
device_id: z.ZodString;
|
|
5830
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["visionline_encoder"]>]>;
|
|
5856
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["visionline_encoder"]>]>;
|
|
5831
5857
|
nickname: z.ZodOptional<z.ZodString>;
|
|
5832
5858
|
display_name: z.ZodString;
|
|
5833
5859
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -6695,6 +6721,16 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6695
6721
|
}, {
|
|
6696
6722
|
encoder_id: string;
|
|
6697
6723
|
}>>;
|
|
6724
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
6725
|
+
gadget_name: z.ZodString;
|
|
6726
|
+
gadget_id: z.ZodString;
|
|
6727
|
+
}, "strip", z.ZodTypeAny, {
|
|
6728
|
+
gadget_name: string;
|
|
6729
|
+
gadget_id: string;
|
|
6730
|
+
}, {
|
|
6731
|
+
gadget_name: string;
|
|
6732
|
+
gadget_id: string;
|
|
6733
|
+
}>>;
|
|
6698
6734
|
}, "strip", z.ZodTypeAny, {
|
|
6699
6735
|
august_metadata?: {
|
|
6700
6736
|
lock_id: string;
|
|
@@ -6900,6 +6936,10 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6900
6936
|
visionline_metadata?: {
|
|
6901
6937
|
encoder_id: string;
|
|
6902
6938
|
} | undefined;
|
|
6939
|
+
akiles_metadata?: {
|
|
6940
|
+
gadget_name: string;
|
|
6941
|
+
gadget_id: string;
|
|
6942
|
+
} | undefined;
|
|
6903
6943
|
}, {
|
|
6904
6944
|
august_metadata?: {
|
|
6905
6945
|
lock_id: string;
|
|
@@ -7105,6 +7145,10 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7105
7145
|
visionline_metadata?: {
|
|
7106
7146
|
encoder_id: string;
|
|
7107
7147
|
} | undefined;
|
|
7148
|
+
akiles_metadata?: {
|
|
7149
|
+
gadget_name: string;
|
|
7150
|
+
gadget_id: string;
|
|
7151
|
+
} | undefined;
|
|
7108
7152
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
7109
7153
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
7110
7154
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -7313,7 +7357,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7313
7357
|
device_id: z.ZodString;
|
|
7314
7358
|
name: z.ZodOptional<z.ZodString>;
|
|
7315
7359
|
climate_preset_key: z.ZodString;
|
|
7316
|
-
max_override_period_minutes: z.
|
|
7360
|
+
max_override_period_minutes: z.ZodNumber;
|
|
7317
7361
|
starts_at: z.ZodString;
|
|
7318
7362
|
ends_at: z.ZodString;
|
|
7319
7363
|
created_at: z.ZodString;
|
|
@@ -7333,11 +7377,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7333
7377
|
climate_preset_key: string;
|
|
7334
7378
|
thermostat_schedule_id: string;
|
|
7335
7379
|
device_id: string;
|
|
7380
|
+
max_override_period_minutes: number;
|
|
7336
7381
|
starts_at: string;
|
|
7337
7382
|
ends_at: string;
|
|
7338
7383
|
errors?: any;
|
|
7339
7384
|
name?: string | undefined;
|
|
7340
|
-
max_override_period_minutes?: number | undefined;
|
|
7341
7385
|
}>>>>;
|
|
7342
7386
|
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
7343
7387
|
min_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7483,11 +7527,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7483
7527
|
climate_preset_key: string;
|
|
7484
7528
|
thermostat_schedule_id: string;
|
|
7485
7529
|
device_id: string;
|
|
7530
|
+
max_override_period_minutes: number;
|
|
7486
7531
|
starts_at: string;
|
|
7487
7532
|
ends_at: string;
|
|
7488
7533
|
errors?: any;
|
|
7489
7534
|
name?: string | undefined;
|
|
7490
|
-
max_override_period_minutes?: number | undefined;
|
|
7491
7535
|
} | null | undefined;
|
|
7492
7536
|
min_cooling_set_point_celsius?: number | undefined;
|
|
7493
7537
|
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -7732,7 +7776,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7732
7776
|
warning_code: string;
|
|
7733
7777
|
}[];
|
|
7734
7778
|
device_id: string;
|
|
7735
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
|
|
7779
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
|
|
7736
7780
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
7737
7781
|
properties: {
|
|
7738
7782
|
name: string;
|
|
@@ -7797,7 +7841,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7797
7841
|
warning_code: string;
|
|
7798
7842
|
}[];
|
|
7799
7843
|
device_id: string;
|
|
7800
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
|
|
7844
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat") | ("ios_phone" | "android_phone") | "visionline_encoder";
|
|
7801
7845
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
7802
7846
|
properties: {
|
|
7803
7847
|
name: string;
|
|
@@ -9579,7 +9623,7 @@ declare const thermostat_schedule: z.ZodObject<{
|
|
|
9579
9623
|
device_id: z.ZodString;
|
|
9580
9624
|
name: z.ZodOptional<z.ZodString>;
|
|
9581
9625
|
climate_preset_key: z.ZodString;
|
|
9582
|
-
max_override_period_minutes: z.
|
|
9626
|
+
max_override_period_minutes: z.ZodNumber;
|
|
9583
9627
|
starts_at: z.ZodString;
|
|
9584
9628
|
ends_at: z.ZodString;
|
|
9585
9629
|
created_at: z.ZodString;
|
|
@@ -9599,11 +9643,11 @@ declare const thermostat_schedule: z.ZodObject<{
|
|
|
9599
9643
|
climate_preset_key: string;
|
|
9600
9644
|
thermostat_schedule_id: string;
|
|
9601
9645
|
device_id: string;
|
|
9646
|
+
max_override_period_minutes: number;
|
|
9602
9647
|
starts_at: string;
|
|
9603
9648
|
ends_at: string;
|
|
9604
9649
|
errors?: any;
|
|
9605
9650
|
name?: string | undefined;
|
|
9606
|
-
max_override_period_minutes?: number | undefined;
|
|
9607
9651
|
}>;
|
|
9608
9652
|
type ThermostatSchedule = z.infer<typeof thermostat_schedule>;
|
|
9609
9653
|
|
|
@@ -11431,6 +11475,18 @@ declare const _default: {
|
|
|
11431
11475
|
type?: never;
|
|
11432
11476
|
} | {
|
|
11433
11477
|
properties: {
|
|
11478
|
+
akiles_metadata: {
|
|
11479
|
+
properties: {
|
|
11480
|
+
gadget_id: {
|
|
11481
|
+
type: string;
|
|
11482
|
+
};
|
|
11483
|
+
gadget_name: {
|
|
11484
|
+
type: string;
|
|
11485
|
+
};
|
|
11486
|
+
};
|
|
11487
|
+
required: string[];
|
|
11488
|
+
type: string;
|
|
11489
|
+
};
|
|
11434
11490
|
august_metadata: {
|
|
11435
11491
|
properties: {
|
|
11436
11492
|
has_keypad: {
|
|
@@ -12220,7 +12276,6 @@ declare const _default: {
|
|
|
12220
12276
|
description: string;
|
|
12221
12277
|
};
|
|
12222
12278
|
max_override_period_minutes: {
|
|
12223
|
-
default: number;
|
|
12224
12279
|
minimum: number;
|
|
12225
12280
|
type: string;
|
|
12226
12281
|
};
|
|
@@ -12969,7 +13024,6 @@ declare const _default: {
|
|
|
12969
13024
|
description: string;
|
|
12970
13025
|
};
|
|
12971
13026
|
max_override_period_minutes: {
|
|
12972
|
-
default: number;
|
|
12973
13027
|
minimum: number;
|
|
12974
13028
|
type: string;
|
|
12975
13029
|
};
|
|
@@ -31947,7 +32001,7 @@ interface Routes {
|
|
|
31947
32001
|
/** Unique identifier for the device. */
|
|
31948
32002
|
device_id: string;
|
|
31949
32003
|
/** Type of the device. */
|
|
31950
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
32004
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
31951
32005
|
/** Optional nickname to describe the device, settable through Seam */
|
|
31952
32006
|
nickname?: string | undefined;
|
|
31953
32007
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -32236,6 +32290,10 @@ interface Routes {
|
|
|
32236
32290
|
visionline_metadata?: {
|
|
32237
32291
|
encoder_id: string;
|
|
32238
32292
|
} | undefined;
|
|
32293
|
+
akiles_metadata?: {
|
|
32294
|
+
gadget_name: string;
|
|
32295
|
+
gadget_id: string;
|
|
32296
|
+
} | undefined;
|
|
32239
32297
|
}) & ({
|
|
32240
32298
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
32241
32299
|
code_constraints?: (Array<{
|
|
@@ -32317,7 +32375,7 @@ interface Routes {
|
|
|
32317
32375
|
device_id: string;
|
|
32318
32376
|
name?: string | undefined;
|
|
32319
32377
|
climate_preset_key: string;
|
|
32320
|
-
max_override_period_minutes
|
|
32378
|
+
max_override_period_minutes: number;
|
|
32321
32379
|
starts_at: string;
|
|
32322
32380
|
ends_at: string;
|
|
32323
32381
|
created_at: string;
|
|
@@ -35334,7 +35392,7 @@ interface Routes {
|
|
|
35334
35392
|
/** Unique identifier for the device. */
|
|
35335
35393
|
device_id: string;
|
|
35336
35394
|
/** Type of the device. */
|
|
35337
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
35395
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
35338
35396
|
/** Optional nickname to describe the device, settable through Seam */
|
|
35339
35397
|
nickname?: string | undefined;
|
|
35340
35398
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -35623,6 +35681,10 @@ interface Routes {
|
|
|
35623
35681
|
visionline_metadata?: {
|
|
35624
35682
|
encoder_id: string;
|
|
35625
35683
|
} | undefined;
|
|
35684
|
+
akiles_metadata?: {
|
|
35685
|
+
gadget_name: string;
|
|
35686
|
+
gadget_id: string;
|
|
35687
|
+
} | undefined;
|
|
35626
35688
|
}) & ({
|
|
35627
35689
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
35628
35690
|
code_constraints?: (Array<{
|
|
@@ -35704,7 +35766,7 @@ interface Routes {
|
|
|
35704
35766
|
device_id: string;
|
|
35705
35767
|
name?: string | undefined;
|
|
35706
35768
|
climate_preset_key: string;
|
|
35707
|
-
max_override_period_minutes
|
|
35769
|
+
max_override_period_minutes: number;
|
|
35708
35770
|
starts_at: string;
|
|
35709
35771
|
ends_at: string;
|
|
35710
35772
|
created_at: string;
|
|
@@ -35777,9 +35839,9 @@ interface Routes {
|
|
|
35777
35839
|
connected_account_id?: string | undefined;
|
|
35778
35840
|
connected_account_ids?: string[] | undefined;
|
|
35779
35841
|
connect_webview_id?: string | undefined;
|
|
35780
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
35781
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
35782
|
-
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
35842
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
35843
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
35844
|
+
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
35783
35845
|
device_ids?: string[] | undefined;
|
|
35784
35846
|
limit?: number;
|
|
35785
35847
|
created_before?: Date | undefined;
|
|
@@ -35794,7 +35856,7 @@ interface Routes {
|
|
|
35794
35856
|
/** Unique identifier for the device. */
|
|
35795
35857
|
device_id: string;
|
|
35796
35858
|
/** Type of the device. */
|
|
35797
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
35859
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
35798
35860
|
/** Optional nickname to describe the device, settable through Seam */
|
|
35799
35861
|
nickname?: string | undefined;
|
|
35800
35862
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -36083,6 +36145,10 @@ interface Routes {
|
|
|
36083
36145
|
visionline_metadata?: {
|
|
36084
36146
|
encoder_id: string;
|
|
36085
36147
|
} | undefined;
|
|
36148
|
+
akiles_metadata?: {
|
|
36149
|
+
gadget_name: string;
|
|
36150
|
+
gadget_id: string;
|
|
36151
|
+
} | undefined;
|
|
36086
36152
|
}) & ({
|
|
36087
36153
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
36088
36154
|
code_constraints?: (Array<{
|
|
@@ -36164,7 +36230,7 @@ interface Routes {
|
|
|
36164
36230
|
device_id: string;
|
|
36165
36231
|
name?: string | undefined;
|
|
36166
36232
|
climate_preset_key: string;
|
|
36167
|
-
max_override_period_minutes
|
|
36233
|
+
max_override_period_minutes: number;
|
|
36168
36234
|
starts_at: string;
|
|
36169
36235
|
ends_at: string;
|
|
36170
36236
|
created_at: string;
|
|
@@ -36304,7 +36370,7 @@ interface Routes {
|
|
|
36304
36370
|
/** Unique identifier for the device. */
|
|
36305
36371
|
device_id: string;
|
|
36306
36372
|
/** Type of the device. */
|
|
36307
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
36373
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
36308
36374
|
/** Unique identifier for the account associated with the device. */
|
|
36309
36375
|
connected_account_id: string;
|
|
36310
36376
|
/** Location information for the device. */
|
|
@@ -36410,9 +36476,9 @@ interface Routes {
|
|
|
36410
36476
|
connected_account_id?: string | undefined;
|
|
36411
36477
|
connected_account_ids?: string[] | undefined;
|
|
36412
36478
|
connect_webview_id?: string | undefined;
|
|
36413
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
36414
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
36415
|
-
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
36479
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
36480
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
36481
|
+
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
36416
36482
|
device_ids?: string[] | undefined;
|
|
36417
36483
|
limit?: number;
|
|
36418
36484
|
created_before?: Date | undefined;
|
|
@@ -36427,7 +36493,7 @@ interface Routes {
|
|
|
36427
36493
|
/** Unique identifier for the device. */
|
|
36428
36494
|
device_id: string;
|
|
36429
36495
|
/** Type of the device. */
|
|
36430
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
36496
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
36431
36497
|
/** Unique identifier for the account associated with the device. */
|
|
36432
36498
|
connected_account_id: string;
|
|
36433
36499
|
/** Location information for the device. */
|
|
@@ -36652,7 +36718,7 @@ interface Routes {
|
|
|
36652
36718
|
/** Unique identifier for the device. */
|
|
36653
36719
|
device_id: string;
|
|
36654
36720
|
/** Type of the device. */
|
|
36655
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
36721
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
36656
36722
|
/** Optional nickname to describe the device, settable through Seam */
|
|
36657
36723
|
nickname?: string | undefined;
|
|
36658
36724
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -36941,6 +37007,10 @@ interface Routes {
|
|
|
36941
37007
|
visionline_metadata?: {
|
|
36942
37008
|
encoder_id: string;
|
|
36943
37009
|
} | undefined;
|
|
37010
|
+
akiles_metadata?: {
|
|
37011
|
+
gadget_name: string;
|
|
37012
|
+
gadget_id: string;
|
|
37013
|
+
} | undefined;
|
|
36944
37014
|
}) & ({
|
|
36945
37015
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
36946
37016
|
code_constraints?: (Array<{
|
|
@@ -37022,7 +37092,7 @@ interface Routes {
|
|
|
37022
37092
|
device_id: string;
|
|
37023
37093
|
name?: string | undefined;
|
|
37024
37094
|
climate_preset_key: string;
|
|
37025
|
-
max_override_period_minutes
|
|
37095
|
+
max_override_period_minutes: number;
|
|
37026
37096
|
starts_at: string;
|
|
37027
37097
|
ends_at: string;
|
|
37028
37098
|
created_at: string;
|
|
@@ -37087,7 +37157,7 @@ interface Routes {
|
|
|
37087
37157
|
/** Unique identifier for the device. */
|
|
37088
37158
|
device_id: string;
|
|
37089
37159
|
/** Type of the device. */
|
|
37090
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
37160
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
37091
37161
|
/** Optional nickname to describe the device, settable through Seam */
|
|
37092
37162
|
nickname?: string | undefined;
|
|
37093
37163
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -37376,6 +37446,10 @@ interface Routes {
|
|
|
37376
37446
|
visionline_metadata?: {
|
|
37377
37447
|
encoder_id: string;
|
|
37378
37448
|
} | undefined;
|
|
37449
|
+
akiles_metadata?: {
|
|
37450
|
+
gadget_name: string;
|
|
37451
|
+
gadget_id: string;
|
|
37452
|
+
} | undefined;
|
|
37379
37453
|
}) & ({
|
|
37380
37454
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
37381
37455
|
code_constraints?: (Array<{
|
|
@@ -37457,7 +37531,7 @@ interface Routes {
|
|
|
37457
37531
|
device_id: string;
|
|
37458
37532
|
name?: string | undefined;
|
|
37459
37533
|
climate_preset_key: string;
|
|
37460
|
-
max_override_period_minutes
|
|
37534
|
+
max_override_period_minutes: number;
|
|
37461
37535
|
starts_at: string;
|
|
37462
37536
|
ends_at: string;
|
|
37463
37537
|
created_at: string;
|
|
@@ -37530,9 +37604,9 @@ interface Routes {
|
|
|
37530
37604
|
connected_account_id?: string | undefined;
|
|
37531
37605
|
connected_account_ids?: string[] | undefined;
|
|
37532
37606
|
connect_webview_id?: string | undefined;
|
|
37533
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
37534
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
37535
|
-
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
37607
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
37608
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
37609
|
+
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
37536
37610
|
device_ids?: string[] | undefined;
|
|
37537
37611
|
limit?: number;
|
|
37538
37612
|
created_before?: Date | undefined;
|
|
@@ -37547,7 +37621,7 @@ interface Routes {
|
|
|
37547
37621
|
/** Unique identifier for the device. */
|
|
37548
37622
|
device_id: string;
|
|
37549
37623
|
/** Type of the device. */
|
|
37550
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
37624
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
37551
37625
|
/** Optional nickname to describe the device, settable through Seam */
|
|
37552
37626
|
nickname?: string | undefined;
|
|
37553
37627
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -37836,6 +37910,10 @@ interface Routes {
|
|
|
37836
37910
|
visionline_metadata?: {
|
|
37837
37911
|
encoder_id: string;
|
|
37838
37912
|
} | undefined;
|
|
37913
|
+
akiles_metadata?: {
|
|
37914
|
+
gadget_name: string;
|
|
37915
|
+
gadget_id: string;
|
|
37916
|
+
} | undefined;
|
|
37839
37917
|
}) & ({
|
|
37840
37918
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
37841
37919
|
code_constraints?: (Array<{
|
|
@@ -37917,7 +37995,7 @@ interface Routes {
|
|
|
37917
37995
|
device_id: string;
|
|
37918
37996
|
name?: string | undefined;
|
|
37919
37997
|
climate_preset_key: string;
|
|
37920
|
-
max_override_period_minutes
|
|
37998
|
+
max_override_period_minutes: number;
|
|
37921
37999
|
starts_at: string;
|
|
37922
38000
|
ends_at: string;
|
|
37923
38001
|
created_at: string;
|
|
@@ -37982,7 +38060,7 @@ interface Routes {
|
|
|
37982
38060
|
/** Unique identifier for the device. */
|
|
37983
38061
|
device_id: string;
|
|
37984
38062
|
/** Type of the device. */
|
|
37985
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
38063
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
37986
38064
|
/** Optional nickname to describe the device, settable through Seam */
|
|
37987
38065
|
nickname?: string | undefined;
|
|
37988
38066
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -38271,6 +38349,10 @@ interface Routes {
|
|
|
38271
38349
|
visionline_metadata?: {
|
|
38272
38350
|
encoder_id: string;
|
|
38273
38351
|
} | undefined;
|
|
38352
|
+
akiles_metadata?: {
|
|
38353
|
+
gadget_name: string;
|
|
38354
|
+
gadget_id: string;
|
|
38355
|
+
} | undefined;
|
|
38274
38356
|
}) & ({
|
|
38275
38357
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
38276
38358
|
code_constraints?: (Array<{
|
|
@@ -38352,7 +38434,7 @@ interface Routes {
|
|
|
38352
38434
|
device_id: string;
|
|
38353
38435
|
name?: string | undefined;
|
|
38354
38436
|
climate_preset_key: string;
|
|
38355
|
-
max_override_period_minutes
|
|
38437
|
+
max_override_period_minutes: number;
|
|
38356
38438
|
starts_at: string;
|
|
38357
38439
|
ends_at: string;
|
|
38358
38440
|
created_at: string;
|
|
@@ -39371,9 +39453,9 @@ interface Routes {
|
|
|
39371
39453
|
connected_account_id?: string | undefined;
|
|
39372
39454
|
connected_account_ids?: string[] | undefined;
|
|
39373
39455
|
connect_webview_id?: string | undefined;
|
|
39374
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
39375
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
39376
|
-
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
39456
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
39457
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
39458
|
+
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
39377
39459
|
device_ids?: string[] | undefined;
|
|
39378
39460
|
limit?: number;
|
|
39379
39461
|
created_before?: Date | undefined;
|
|
@@ -39388,7 +39470,7 @@ interface Routes {
|
|
|
39388
39470
|
/** Unique identifier for the device. */
|
|
39389
39471
|
device_id: string;
|
|
39390
39472
|
/** Type of the device. */
|
|
39391
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
39473
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
39392
39474
|
/** Optional nickname to describe the device, settable through Seam */
|
|
39393
39475
|
nickname?: string | undefined;
|
|
39394
39476
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -39677,6 +39759,10 @@ interface Routes {
|
|
|
39677
39759
|
visionline_metadata?: {
|
|
39678
39760
|
encoder_id: string;
|
|
39679
39761
|
} | undefined;
|
|
39762
|
+
akiles_metadata?: {
|
|
39763
|
+
gadget_name: string;
|
|
39764
|
+
gadget_id: string;
|
|
39765
|
+
} | undefined;
|
|
39680
39766
|
}) & ({
|
|
39681
39767
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
39682
39768
|
code_constraints?: (Array<{
|
|
@@ -39758,7 +39844,7 @@ interface Routes {
|
|
|
39758
39844
|
device_id: string;
|
|
39759
39845
|
name?: string | undefined;
|
|
39760
39846
|
climate_preset_key: string;
|
|
39761
|
-
max_override_period_minutes
|
|
39847
|
+
max_override_period_minutes: number;
|
|
39762
39848
|
starts_at: string;
|
|
39763
39849
|
ends_at: string;
|
|
39764
39850
|
created_at: string;
|
|
@@ -39823,7 +39909,7 @@ interface Routes {
|
|
|
39823
39909
|
/** Unique identifier for the device. */
|
|
39824
39910
|
device_id: string;
|
|
39825
39911
|
/** Type of the device. */
|
|
39826
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
39912
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
39827
39913
|
/** Optional nickname to describe the device, settable through Seam */
|
|
39828
39914
|
nickname?: string | undefined;
|
|
39829
39915
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -40112,6 +40198,10 @@ interface Routes {
|
|
|
40112
40198
|
visionline_metadata?: {
|
|
40113
40199
|
encoder_id: string;
|
|
40114
40200
|
} | undefined;
|
|
40201
|
+
akiles_metadata?: {
|
|
40202
|
+
gadget_name: string;
|
|
40203
|
+
gadget_id: string;
|
|
40204
|
+
} | undefined;
|
|
40115
40205
|
}) & ({
|
|
40116
40206
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
40117
40207
|
code_constraints?: (Array<{
|
|
@@ -40193,7 +40283,7 @@ interface Routes {
|
|
|
40193
40283
|
device_id: string;
|
|
40194
40284
|
name?: string | undefined;
|
|
40195
40285
|
climate_preset_key: string;
|
|
40196
|
-
max_override_period_minutes
|
|
40286
|
+
max_override_period_minutes: number;
|
|
40197
40287
|
starts_at: string;
|
|
40198
40288
|
ends_at: string;
|
|
40199
40289
|
created_at: string;
|
|
@@ -42831,7 +42921,7 @@ interface Routes {
|
|
|
42831
42921
|
/** Unique identifier for the device. */
|
|
42832
42922
|
device_id: string;
|
|
42833
42923
|
/** Type of the device. */
|
|
42834
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
42924
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
42835
42925
|
/** Optional nickname to describe the device, settable through Seam */
|
|
42836
42926
|
nickname?: string | undefined;
|
|
42837
42927
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -43120,6 +43210,10 @@ interface Routes {
|
|
|
43120
43210
|
visionline_metadata?: {
|
|
43121
43211
|
encoder_id: string;
|
|
43122
43212
|
} | undefined;
|
|
43213
|
+
akiles_metadata?: {
|
|
43214
|
+
gadget_name: string;
|
|
43215
|
+
gadget_id: string;
|
|
43216
|
+
} | undefined;
|
|
43123
43217
|
}) & ({
|
|
43124
43218
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
43125
43219
|
code_constraints?: (Array<{
|
|
@@ -43201,7 +43295,7 @@ interface Routes {
|
|
|
43201
43295
|
device_id: string;
|
|
43202
43296
|
name?: string | undefined;
|
|
43203
43297
|
climate_preset_key: string;
|
|
43204
|
-
max_override_period_minutes
|
|
43298
|
+
max_override_period_minutes: number;
|
|
43205
43299
|
starts_at: string;
|
|
43206
43300
|
ends_at: string;
|
|
43207
43301
|
created_at: string;
|
|
@@ -44192,9 +44286,9 @@ interface Routes {
|
|
|
44192
44286
|
connected_account_id?: string | undefined;
|
|
44193
44287
|
connected_account_ids?: string[] | undefined;
|
|
44194
44288
|
connect_webview_id?: string | undefined;
|
|
44195
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
44196
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
44197
|
-
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
44289
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
44290
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
44291
|
+
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
44198
44292
|
device_ids?: string[] | undefined;
|
|
44199
44293
|
limit?: number;
|
|
44200
44294
|
created_before?: Date | undefined;
|
|
@@ -44209,7 +44303,7 @@ interface Routes {
|
|
|
44209
44303
|
/** Unique identifier for the device. */
|
|
44210
44304
|
device_id: string;
|
|
44211
44305
|
/** Type of the device. */
|
|
44212
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
44306
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
44213
44307
|
/** Optional nickname to describe the device, settable through Seam */
|
|
44214
44308
|
nickname?: string | undefined;
|
|
44215
44309
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -44498,6 +44592,10 @@ interface Routes {
|
|
|
44498
44592
|
visionline_metadata?: {
|
|
44499
44593
|
encoder_id: string;
|
|
44500
44594
|
} | undefined;
|
|
44595
|
+
akiles_metadata?: {
|
|
44596
|
+
gadget_name: string;
|
|
44597
|
+
gadget_id: string;
|
|
44598
|
+
} | undefined;
|
|
44501
44599
|
}) & ({
|
|
44502
44600
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
44503
44601
|
code_constraints?: (Array<{
|
|
@@ -44579,7 +44677,7 @@ interface Routes {
|
|
|
44579
44677
|
device_id: string;
|
|
44580
44678
|
name?: string | undefined;
|
|
44581
44679
|
climate_preset_key: string;
|
|
44582
|
-
max_override_period_minutes
|
|
44680
|
+
max_override_period_minutes: number;
|
|
44583
44681
|
starts_at: string;
|
|
44584
44682
|
ends_at: string;
|
|
44585
44683
|
created_at: string;
|
|
@@ -45118,7 +45216,7 @@ interface Routes {
|
|
|
45118
45216
|
device_id: string;
|
|
45119
45217
|
name?: string | undefined;
|
|
45120
45218
|
climate_preset_key: string;
|
|
45121
|
-
max_override_period_minutes
|
|
45219
|
+
max_override_period_minutes: number;
|
|
45122
45220
|
starts_at: string;
|
|
45123
45221
|
ends_at: string;
|
|
45124
45222
|
created_at: string;
|
|
@@ -45153,7 +45251,7 @@ interface Routes {
|
|
|
45153
45251
|
device_id: string;
|
|
45154
45252
|
name?: string | undefined;
|
|
45155
45253
|
climate_preset_key: string;
|
|
45156
|
-
max_override_period_minutes
|
|
45254
|
+
max_override_period_minutes: number;
|
|
45157
45255
|
starts_at: string;
|
|
45158
45256
|
ends_at: string;
|
|
45159
45257
|
created_at: string;
|
|
@@ -45178,7 +45276,7 @@ interface Routes {
|
|
|
45178
45276
|
device_id: string;
|
|
45179
45277
|
name?: string | undefined;
|
|
45180
45278
|
climate_preset_key: string;
|
|
45181
|
-
max_override_period_minutes
|
|
45279
|
+
max_override_period_minutes: number;
|
|
45182
45280
|
starts_at: string;
|
|
45183
45281
|
ends_at: string;
|
|
45184
45282
|
created_at: string;
|
|
@@ -45888,7 +45986,7 @@ interface Routes {
|
|
|
45888
45986
|
/** Unique identifier for the device. */
|
|
45889
45987
|
device_id: string;
|
|
45890
45988
|
/** Type of the device. */
|
|
45891
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
45989
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
45892
45990
|
/** Optional nickname to describe the device, settable through Seam */
|
|
45893
45991
|
nickname?: string | undefined;
|
|
45894
45992
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -46177,6 +46275,10 @@ interface Routes {
|
|
|
46177
46275
|
visionline_metadata?: {
|
|
46178
46276
|
encoder_id: string;
|
|
46179
46277
|
} | undefined;
|
|
46278
|
+
akiles_metadata?: {
|
|
46279
|
+
gadget_name: string;
|
|
46280
|
+
gadget_id: string;
|
|
46281
|
+
} | undefined;
|
|
46180
46282
|
}) & ({
|
|
46181
46283
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
46182
46284
|
code_constraints?: (Array<{
|
|
@@ -46258,7 +46360,7 @@ interface Routes {
|
|
|
46258
46360
|
device_id: string;
|
|
46259
46361
|
name?: string | undefined;
|
|
46260
46362
|
climate_preset_key: string;
|
|
46261
|
-
max_override_period_minutes
|
|
46363
|
+
max_override_period_minutes: number;
|
|
46262
46364
|
starts_at: string;
|
|
46263
46365
|
ends_at: string;
|
|
46264
46366
|
created_at: string;
|
|
@@ -46325,7 +46427,7 @@ interface Routes {
|
|
|
46325
46427
|
/** Unique identifier for the device. */
|
|
46326
46428
|
device_id: string;
|
|
46327
46429
|
/** Type of the device. */
|
|
46328
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
46430
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
46329
46431
|
/** Optional nickname to describe the device, settable through Seam */
|
|
46330
46432
|
nickname?: string | undefined;
|
|
46331
46433
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -46614,6 +46716,10 @@ interface Routes {
|
|
|
46614
46716
|
visionline_metadata?: {
|
|
46615
46717
|
encoder_id: string;
|
|
46616
46718
|
} | undefined;
|
|
46719
|
+
akiles_metadata?: {
|
|
46720
|
+
gadget_name: string;
|
|
46721
|
+
gadget_id: string;
|
|
46722
|
+
} | undefined;
|
|
46617
46723
|
}) & ({
|
|
46618
46724
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
46619
46725
|
code_constraints?: (Array<{
|
|
@@ -46695,7 +46801,7 @@ interface Routes {
|
|
|
46695
46801
|
device_id: string;
|
|
46696
46802
|
name?: string | undefined;
|
|
46697
46803
|
climate_preset_key: string;
|
|
46698
|
-
max_override_period_minutes
|
|
46804
|
+
max_override_period_minutes: number;
|
|
46699
46805
|
starts_at: string;
|
|
46700
46806
|
ends_at: string;
|
|
46701
46807
|
created_at: string;
|