@seamapi/types 1.305.0 → 1.307.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 +78 -28
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +271 -95
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +13 -13
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +13 -13
- package/lib/seam/connect/models/action-attempts/scan-credential.js +7 -2
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +23 -0
- package/lib/seam/connect/models/devices/device-metadata.js +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +36 -3
- package/lib/seam/connect/models/devices/phone.d.ts +24 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +26 -3
- package/lib/seam/connect/openapi.d.ts +56 -2
- package/lib/seam/connect/openapi.js +44 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +139 -74
- package/package.json +2 -2
- package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +7 -4
- package/src/lib/seam/connect/models/devices/device-metadata.ts +6 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +44 -2
- package/src/lib/seam/connect/route-types.ts +207 -42
package/dist/connect.d.cts
CHANGED
|
@@ -1997,7 +1997,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1997
1997
|
}>, {
|
|
1998
1998
|
action_type: z.ZodLiteral<"SCAN_CREDENTIAL">;
|
|
1999
1999
|
result: z.ZodObject<{
|
|
2000
|
-
acs_credential_on_encoder: z.ZodObject<{
|
|
2000
|
+
acs_credential_on_encoder: z.ZodNullable<z.ZodObject<{
|
|
2001
2001
|
created_at: z.ZodNullable<z.ZodString>;
|
|
2002
2002
|
is_issued: z.ZodNullable<z.ZodBoolean>;
|
|
2003
2003
|
starts_at: z.ZodNullable<z.ZodString>;
|
|
@@ -2083,7 +2083,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2083
2083
|
overridden?: boolean | undefined;
|
|
2084
2084
|
card_holder?: string | undefined;
|
|
2085
2085
|
} | undefined;
|
|
2086
|
-
}
|
|
2086
|
+
}>>;
|
|
2087
2087
|
acs_credential_on_seam: z.ZodNullable<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2088
2088
|
acs_credential_id: z.ZodString;
|
|
2089
2089
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2532,18 +2532,18 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2532
2532
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
2533
2533
|
}>]>>;
|
|
2534
2534
|
warnings: z.ZodArray<z.ZodObject<{
|
|
2535
|
-
warning_code: z.ZodLiteral<"acs_credential_on_encoder_out_of_sync">;
|
|
2535
|
+
warning_code: z.ZodUnion<[z.ZodLiteral<"acs_credential_on_encoder_out_of_sync">, z.ZodLiteral<"acs_credential_on_seam_not_found">]>;
|
|
2536
2536
|
warning_message: z.ZodString;
|
|
2537
2537
|
}, "strip", z.ZodTypeAny, {
|
|
2538
|
-
warning_code: "acs_credential_on_encoder_out_of_sync";
|
|
2538
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2539
2539
|
warning_message: string;
|
|
2540
2540
|
}, {
|
|
2541
|
-
warning_code: "acs_credential_on_encoder_out_of_sync";
|
|
2541
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2542
2542
|
warning_message: string;
|
|
2543
2543
|
}>, "many">;
|
|
2544
2544
|
}, "strip", z.ZodTypeAny, {
|
|
2545
2545
|
warnings: {
|
|
2546
|
-
warning_code: "acs_credential_on_encoder_out_of_sync";
|
|
2546
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2547
2547
|
warning_message: string;
|
|
2548
2548
|
}[];
|
|
2549
2549
|
acs_credential_on_encoder: {
|
|
@@ -2566,7 +2566,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2566
2566
|
overridden?: boolean | undefined;
|
|
2567
2567
|
card_holder?: string | undefined;
|
|
2568
2568
|
} | undefined;
|
|
2569
|
-
};
|
|
2569
|
+
} | null;
|
|
2570
2570
|
acs_credential_on_seam: {
|
|
2571
2571
|
created_at: string;
|
|
2572
2572
|
errors: {
|
|
@@ -2678,7 +2678,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2678
2678
|
} | null;
|
|
2679
2679
|
}, {
|
|
2680
2680
|
warnings: {
|
|
2681
|
-
warning_code: "acs_credential_on_encoder_out_of_sync";
|
|
2681
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2682
2682
|
warning_message: string;
|
|
2683
2683
|
}[];
|
|
2684
2684
|
acs_credential_on_encoder: {
|
|
@@ -2701,7 +2701,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2701
2701
|
overridden?: boolean | undefined;
|
|
2702
2702
|
card_holder?: string | undefined;
|
|
2703
2703
|
} | undefined;
|
|
2704
|
-
};
|
|
2704
|
+
} | null;
|
|
2705
2705
|
acs_credential_on_seam: {
|
|
2706
2706
|
created_at: string;
|
|
2707
2707
|
errors: {
|
|
@@ -2818,7 +2818,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2818
2818
|
error: null;
|
|
2819
2819
|
result: {
|
|
2820
2820
|
warnings: {
|
|
2821
|
-
warning_code: "acs_credential_on_encoder_out_of_sync";
|
|
2821
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2822
2822
|
warning_message: string;
|
|
2823
2823
|
}[];
|
|
2824
2824
|
acs_credential_on_encoder: {
|
|
@@ -2841,7 +2841,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2841
2841
|
overridden?: boolean | undefined;
|
|
2842
2842
|
card_holder?: string | undefined;
|
|
2843
2843
|
} | undefined;
|
|
2844
|
-
};
|
|
2844
|
+
} | null;
|
|
2845
2845
|
acs_credential_on_seam: {
|
|
2846
2846
|
created_at: string;
|
|
2847
2847
|
errors: {
|
|
@@ -2959,7 +2959,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2959
2959
|
error: null;
|
|
2960
2960
|
result: {
|
|
2961
2961
|
warnings: {
|
|
2962
|
-
warning_code: "acs_credential_on_encoder_out_of_sync";
|
|
2962
|
+
warning_code: "acs_credential_on_encoder_out_of_sync" | "acs_credential_on_seam_not_found";
|
|
2963
2963
|
warning_message: string;
|
|
2964
2964
|
}[];
|
|
2965
2965
|
acs_credential_on_encoder: {
|
|
@@ -2982,7 +2982,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2982
2982
|
overridden?: boolean | undefined;
|
|
2983
2983
|
card_holder?: string | undefined;
|
|
2984
2984
|
} | undefined;
|
|
2985
|
-
};
|
|
2985
|
+
} | null;
|
|
2986
2986
|
acs_credential_on_seam: {
|
|
2987
2987
|
created_at: string;
|
|
2988
2988
|
errors: {
|
|
@@ -5462,7 +5462,7 @@ declare const device_warning: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5462
5462
|
type DeviceWarning = z.infer<typeof device_warning>;
|
|
5463
5463
|
declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
5464
5464
|
device_id: z.ZodString;
|
|
5465
|
-
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"]>]>;
|
|
5465
|
+
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" | "tado_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
5466
5466
|
nickname: z.ZodOptional<z.ZodString>;
|
|
5467
5467
|
display_name: z.ZodString;
|
|
5468
5468
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -6378,6 +6378,19 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6378
6378
|
}, {
|
|
6379
6379
|
encoder_name: string;
|
|
6380
6380
|
}>>;
|
|
6381
|
+
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
6382
|
+
serial_number: z.ZodString;
|
|
6383
|
+
device_name: z.ZodString;
|
|
6384
|
+
device_type: z.ZodString;
|
|
6385
|
+
}, "strip", z.ZodTypeAny, {
|
|
6386
|
+
device_name: string;
|
|
6387
|
+
serial_number: string;
|
|
6388
|
+
device_type: string;
|
|
6389
|
+
}, {
|
|
6390
|
+
device_name: string;
|
|
6391
|
+
serial_number: string;
|
|
6392
|
+
device_type: string;
|
|
6393
|
+
}>>;
|
|
6381
6394
|
}, "strip", z.ZodTypeAny, {
|
|
6382
6395
|
august_metadata?: {
|
|
6383
6396
|
lock_id: string;
|
|
@@ -6601,6 +6614,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6601
6614
|
assa_abloy_vostio_metadata?: {
|
|
6602
6615
|
encoder_name: string;
|
|
6603
6616
|
} | undefined;
|
|
6617
|
+
tado_metadata?: {
|
|
6618
|
+
device_name: string;
|
|
6619
|
+
serial_number: string;
|
|
6620
|
+
device_type: string;
|
|
6621
|
+
} | undefined;
|
|
6604
6622
|
}, {
|
|
6605
6623
|
august_metadata?: {
|
|
6606
6624
|
lock_id: string;
|
|
@@ -6824,6 +6842,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6824
6842
|
assa_abloy_vostio_metadata?: {
|
|
6825
6843
|
encoder_name: string;
|
|
6826
6844
|
} | undefined;
|
|
6845
|
+
tado_metadata?: {
|
|
6846
|
+
device_name: string;
|
|
6847
|
+
serial_number: string;
|
|
6848
|
+
device_type: string;
|
|
6849
|
+
} | undefined;
|
|
6827
6850
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
6828
6851
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
6829
6852
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -7337,7 +7360,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7337
7360
|
custom_metadata: Record<string, string | boolean>;
|
|
7338
7361
|
display_name: string;
|
|
7339
7362
|
device_id: string;
|
|
7340
|
-
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");
|
|
7363
|
+
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" | "tado_thermostat") | ("ios_phone" | "android_phone");
|
|
7341
7364
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
7342
7365
|
properties: {
|
|
7343
7366
|
name: string;
|
|
@@ -7607,6 +7630,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7607
7630
|
assa_abloy_vostio_metadata?: {
|
|
7608
7631
|
encoder_name: string;
|
|
7609
7632
|
} | undefined;
|
|
7633
|
+
tado_metadata?: {
|
|
7634
|
+
device_name: string;
|
|
7635
|
+
serial_number: string;
|
|
7636
|
+
device_type: string;
|
|
7637
|
+
} | undefined;
|
|
7610
7638
|
} & {
|
|
7611
7639
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
7612
7640
|
code_constraints?: ({
|
|
@@ -7745,7 +7773,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7745
7773
|
custom_metadata: Record<string, string | boolean>;
|
|
7746
7774
|
display_name: string;
|
|
7747
7775
|
device_id: string;
|
|
7748
|
-
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");
|
|
7776
|
+
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" | "tado_thermostat") | ("ios_phone" | "android_phone");
|
|
7749
7777
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
7750
7778
|
properties: {
|
|
7751
7779
|
name: string;
|
|
@@ -8015,6 +8043,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8015
8043
|
assa_abloy_vostio_metadata?: {
|
|
8016
8044
|
encoder_name: string;
|
|
8017
8045
|
} | undefined;
|
|
8046
|
+
tado_metadata?: {
|
|
8047
|
+
device_name: string;
|
|
8048
|
+
serial_number: string;
|
|
8049
|
+
device_type: string;
|
|
8050
|
+
} | undefined;
|
|
8018
8051
|
} & {
|
|
8019
8052
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
8020
8053
|
code_constraints?: ({
|
|
@@ -8181,6 +8214,7 @@ declare const DEVICE_PROVIDERS: {
|
|
|
8181
8214
|
readonly AKILES: "akiles";
|
|
8182
8215
|
readonly VOSTIO: "assa_abloy_vostio";
|
|
8183
8216
|
readonly ASSA_ABLOY_VOSTIO_CREDENTIAL_SERVICE: "assa_abloy_vostio_credential_service";
|
|
8217
|
+
readonly TADO: "tado";
|
|
8184
8218
|
};
|
|
8185
8219
|
type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
|
|
8186
8220
|
declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -8238,7 +8272,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
|
|
|
8238
8272
|
|
|
8239
8273
|
declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<Pick<z.objectUtil.extendShape<{
|
|
8240
8274
|
device_id: z.ZodString;
|
|
8241
|
-
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"]>]>;
|
|
8275
|
+
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" | "tado_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
8242
8276
|
nickname: z.ZodOptional<z.ZodString>;
|
|
8243
8277
|
display_name: z.ZodString;
|
|
8244
8278
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -9154,6 +9188,19 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9154
9188
|
}, {
|
|
9155
9189
|
encoder_name: string;
|
|
9156
9190
|
}>>;
|
|
9191
|
+
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
9192
|
+
serial_number: z.ZodString;
|
|
9193
|
+
device_name: z.ZodString;
|
|
9194
|
+
device_type: z.ZodString;
|
|
9195
|
+
}, "strip", z.ZodTypeAny, {
|
|
9196
|
+
device_name: string;
|
|
9197
|
+
serial_number: string;
|
|
9198
|
+
device_type: string;
|
|
9199
|
+
}, {
|
|
9200
|
+
device_name: string;
|
|
9201
|
+
serial_number: string;
|
|
9202
|
+
device_type: string;
|
|
9203
|
+
}>>;
|
|
9157
9204
|
}, "strip", z.ZodTypeAny, {
|
|
9158
9205
|
august_metadata?: {
|
|
9159
9206
|
lock_id: string;
|
|
@@ -9377,6 +9424,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9377
9424
|
assa_abloy_vostio_metadata?: {
|
|
9378
9425
|
encoder_name: string;
|
|
9379
9426
|
} | undefined;
|
|
9427
|
+
tado_metadata?: {
|
|
9428
|
+
device_name: string;
|
|
9429
|
+
serial_number: string;
|
|
9430
|
+
device_type: string;
|
|
9431
|
+
} | undefined;
|
|
9380
9432
|
}, {
|
|
9381
9433
|
august_metadata?: {
|
|
9382
9434
|
lock_id: string;
|
|
@@ -9600,6 +9652,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
9600
9652
|
assa_abloy_vostio_metadata?: {
|
|
9601
9653
|
encoder_name: string;
|
|
9602
9654
|
} | undefined;
|
|
9655
|
+
tado_metadata?: {
|
|
9656
|
+
device_name: string;
|
|
9657
|
+
serial_number: string;
|
|
9658
|
+
device_type: string;
|
|
9659
|
+
} | undefined;
|
|
9603
9660
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
9604
9661
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
9605
9662
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -10260,7 +10317,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
10260
10317
|
warning_code: string;
|
|
10261
10318
|
}[];
|
|
10262
10319
|
device_id: string;
|
|
10263
|
-
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");
|
|
10320
|
+
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" | "tado_thermostat") | ("ios_phone" | "android_phone");
|
|
10264
10321
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
10265
10322
|
properties: {
|
|
10266
10323
|
name: string;
|
|
@@ -10325,7 +10382,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
10325
10382
|
warning_code: string;
|
|
10326
10383
|
}[];
|
|
10327
10384
|
device_id: string;
|
|
10328
|
-
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");
|
|
10385
|
+
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" | "tado_thermostat") | ("ios_phone" | "android_phone");
|
|
10329
10386
|
capabilities_supported: ("phone" | "access_code" | "lock" | "noise_detection" | "thermostat" | "battery")[];
|
|
10330
10387
|
properties: {
|
|
10331
10388
|
name: string;
|
|
@@ -13726,6 +13783,7 @@ declare const _default: {
|
|
|
13726
13783
|
properties: {
|
|
13727
13784
|
acs_credential_on_encoder: {
|
|
13728
13785
|
description: string;
|
|
13786
|
+
nullable: boolean;
|
|
13729
13787
|
properties: {
|
|
13730
13788
|
card_number: {
|
|
13731
13789
|
description: string;
|
|
@@ -15673,6 +15731,21 @@ declare const _default: {
|
|
|
15673
15731
|
required: string[];
|
|
15674
15732
|
type: string;
|
|
15675
15733
|
};
|
|
15734
|
+
tado_metadata: {
|
|
15735
|
+
properties: {
|
|
15736
|
+
device_name: {
|
|
15737
|
+
type: string;
|
|
15738
|
+
};
|
|
15739
|
+
device_type: {
|
|
15740
|
+
type: string;
|
|
15741
|
+
};
|
|
15742
|
+
serial_number: {
|
|
15743
|
+
type: string;
|
|
15744
|
+
};
|
|
15745
|
+
};
|
|
15746
|
+
required: string[];
|
|
15747
|
+
type: string;
|
|
15748
|
+
};
|
|
15676
15749
|
tedee_metadata: {
|
|
15677
15750
|
properties: {
|
|
15678
15751
|
bridge_id: {
|
|
@@ -32990,9 +33063,19 @@ declare const _default: {
|
|
|
32990
33063
|
description: string;
|
|
32991
33064
|
};
|
|
32992
33065
|
};
|
|
32993
|
-
security: {
|
|
33066
|
+
security: ({
|
|
32994
33067
|
pat_without_workspace: never[];
|
|
32995
|
-
|
|
33068
|
+
console_session?: never;
|
|
33069
|
+
user_session_without_workspace?: never;
|
|
33070
|
+
} | {
|
|
33071
|
+
console_session: never[];
|
|
33072
|
+
pat_without_workspace?: never;
|
|
33073
|
+
user_session_without_workspace?: never;
|
|
33074
|
+
} | {
|
|
33075
|
+
user_session_without_workspace: never[];
|
|
33076
|
+
pat_without_workspace?: never;
|
|
33077
|
+
console_session?: never;
|
|
33078
|
+
})[];
|
|
32996
33079
|
summary: string;
|
|
32997
33080
|
tags: string[];
|
|
32998
33081
|
'x-fern-sdk-group-name': string[];
|
|
@@ -33155,6 +33238,7 @@ declare const _default: {
|
|
|
33155
33238
|
user_session_without_workspace?: never;
|
|
33156
33239
|
api_key?: never;
|
|
33157
33240
|
client_session?: never;
|
|
33241
|
+
console_session?: never;
|
|
33158
33242
|
} | {
|
|
33159
33243
|
pat_without_workspace: never[];
|
|
33160
33244
|
pat_with_workspace?: never;
|
|
@@ -33162,6 +33246,7 @@ declare const _default: {
|
|
|
33162
33246
|
user_session_without_workspace?: never;
|
|
33163
33247
|
api_key?: never;
|
|
33164
33248
|
client_session?: never;
|
|
33249
|
+
console_session?: never;
|
|
33165
33250
|
} | {
|
|
33166
33251
|
user_session: never[];
|
|
33167
33252
|
pat_with_workspace?: never;
|
|
@@ -33169,6 +33254,7 @@ declare const _default: {
|
|
|
33169
33254
|
user_session_without_workspace?: never;
|
|
33170
33255
|
api_key?: never;
|
|
33171
33256
|
client_session?: never;
|
|
33257
|
+
console_session?: never;
|
|
33172
33258
|
} | {
|
|
33173
33259
|
user_session_without_workspace: never[];
|
|
33174
33260
|
pat_with_workspace?: never;
|
|
@@ -33176,6 +33262,7 @@ declare const _default: {
|
|
|
33176
33262
|
user_session?: never;
|
|
33177
33263
|
api_key?: never;
|
|
33178
33264
|
client_session?: never;
|
|
33265
|
+
console_session?: never;
|
|
33179
33266
|
} | {
|
|
33180
33267
|
api_key: never[];
|
|
33181
33268
|
pat_with_workspace?: never;
|
|
@@ -33183,6 +33270,7 @@ declare const _default: {
|
|
|
33183
33270
|
user_session?: never;
|
|
33184
33271
|
user_session_without_workspace?: never;
|
|
33185
33272
|
client_session?: never;
|
|
33273
|
+
console_session?: never;
|
|
33186
33274
|
} | {
|
|
33187
33275
|
client_session: never[];
|
|
33188
33276
|
pat_with_workspace?: never;
|
|
@@ -33190,6 +33278,15 @@ declare const _default: {
|
|
|
33190
33278
|
user_session?: never;
|
|
33191
33279
|
user_session_without_workspace?: never;
|
|
33192
33280
|
api_key?: never;
|
|
33281
|
+
console_session?: never;
|
|
33282
|
+
} | {
|
|
33283
|
+
console_session: never[];
|
|
33284
|
+
pat_with_workspace?: never;
|
|
33285
|
+
pat_without_workspace?: never;
|
|
33286
|
+
user_session?: never;
|
|
33287
|
+
user_session_without_workspace?: never;
|
|
33288
|
+
api_key?: never;
|
|
33289
|
+
client_session?: never;
|
|
33193
33290
|
})[];
|
|
33194
33291
|
summary: string;
|
|
33195
33292
|
tags: string[];
|
|
@@ -33235,6 +33332,7 @@ declare const _default: {
|
|
|
33235
33332
|
user_session_without_workspace?: never;
|
|
33236
33333
|
api_key?: never;
|
|
33237
33334
|
client_session?: never;
|
|
33335
|
+
console_session?: never;
|
|
33238
33336
|
} | {
|
|
33239
33337
|
pat_without_workspace: never[];
|
|
33240
33338
|
pat_with_workspace?: never;
|
|
@@ -33242,6 +33340,7 @@ declare const _default: {
|
|
|
33242
33340
|
user_session_without_workspace?: never;
|
|
33243
33341
|
api_key?: never;
|
|
33244
33342
|
client_session?: never;
|
|
33343
|
+
console_session?: never;
|
|
33245
33344
|
} | {
|
|
33246
33345
|
user_session: never[];
|
|
33247
33346
|
pat_with_workspace?: never;
|
|
@@ -33249,6 +33348,7 @@ declare const _default: {
|
|
|
33249
33348
|
user_session_without_workspace?: never;
|
|
33250
33349
|
api_key?: never;
|
|
33251
33350
|
client_session?: never;
|
|
33351
|
+
console_session?: never;
|
|
33252
33352
|
} | {
|
|
33253
33353
|
user_session_without_workspace: never[];
|
|
33254
33354
|
pat_with_workspace?: never;
|
|
@@ -33256,6 +33356,7 @@ declare const _default: {
|
|
|
33256
33356
|
user_session?: never;
|
|
33257
33357
|
api_key?: never;
|
|
33258
33358
|
client_session?: never;
|
|
33359
|
+
console_session?: never;
|
|
33259
33360
|
} | {
|
|
33260
33361
|
api_key: never[];
|
|
33261
33362
|
pat_with_workspace?: never;
|
|
@@ -33263,6 +33364,7 @@ declare const _default: {
|
|
|
33263
33364
|
user_session?: never;
|
|
33264
33365
|
user_session_without_workspace?: never;
|
|
33265
33366
|
client_session?: never;
|
|
33367
|
+
console_session?: never;
|
|
33266
33368
|
} | {
|
|
33267
33369
|
client_session: never[];
|
|
33268
33370
|
pat_with_workspace?: never;
|
|
@@ -33270,6 +33372,15 @@ declare const _default: {
|
|
|
33270
33372
|
user_session?: never;
|
|
33271
33373
|
user_session_without_workspace?: never;
|
|
33272
33374
|
api_key?: never;
|
|
33375
|
+
console_session?: never;
|
|
33376
|
+
} | {
|
|
33377
|
+
console_session: never[];
|
|
33378
|
+
pat_with_workspace?: never;
|
|
33379
|
+
pat_without_workspace?: never;
|
|
33380
|
+
user_session?: never;
|
|
33381
|
+
user_session_without_workspace?: never;
|
|
33382
|
+
api_key?: never;
|
|
33383
|
+
client_session?: never;
|
|
33273
33384
|
})[];
|
|
33274
33385
|
summary: string;
|
|
33275
33386
|
tags: string[];
|
|
@@ -33455,7 +33566,7 @@ interface Routes {
|
|
|
33455
33566
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
33456
33567
|
common_acs_entrance_ids?: string[] | undefined;
|
|
33457
33568
|
} | undefined;
|
|
33458
|
-
};
|
|
33569
|
+
} | null;
|
|
33459
33570
|
/** Matching acs_credential currently encoded on this card. */
|
|
33460
33571
|
acs_credential_on_seam: ({
|
|
33461
33572
|
/** ID of the credential. */
|
|
@@ -33631,7 +33742,7 @@ interface Routes {
|
|
|
33631
33742
|
is_managed: false;
|
|
33632
33743
|
}) | null;
|
|
33633
33744
|
warnings: Array<{
|
|
33634
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
33745
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
33635
33746
|
warning_message: string;
|
|
33636
33747
|
}>;
|
|
33637
33748
|
};
|
|
@@ -34478,7 +34589,7 @@ interface Routes {
|
|
|
34478
34589
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
34479
34590
|
common_acs_entrance_ids?: string[] | undefined;
|
|
34480
34591
|
} | undefined;
|
|
34481
|
-
};
|
|
34592
|
+
} | null;
|
|
34482
34593
|
/** Matching acs_credential currently encoded on this card. */
|
|
34483
34594
|
acs_credential_on_seam: ({
|
|
34484
34595
|
/** ID of the credential. */
|
|
@@ -34654,7 +34765,7 @@ interface Routes {
|
|
|
34654
34765
|
is_managed: false;
|
|
34655
34766
|
}) | null;
|
|
34656
34767
|
warnings: Array<{
|
|
34657
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
34768
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
34658
34769
|
warning_message: string;
|
|
34659
34770
|
}>;
|
|
34660
34771
|
};
|
|
@@ -35719,7 +35830,7 @@ interface Routes {
|
|
|
35719
35830
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
35720
35831
|
common_acs_entrance_ids?: string[] | undefined;
|
|
35721
35832
|
} | undefined;
|
|
35722
|
-
};
|
|
35833
|
+
} | null;
|
|
35723
35834
|
/** Matching acs_credential currently encoded on this card. */
|
|
35724
35835
|
acs_credential_on_seam: ({
|
|
35725
35836
|
/** ID of the credential. */
|
|
@@ -35895,7 +36006,7 @@ interface Routes {
|
|
|
35895
36006
|
is_managed: false;
|
|
35896
36007
|
}) | null;
|
|
35897
36008
|
warnings: Array<{
|
|
35898
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
36009
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
35899
36010
|
warning_message: string;
|
|
35900
36011
|
}>;
|
|
35901
36012
|
};
|
|
@@ -36729,7 +36840,7 @@ interface Routes {
|
|
|
36729
36840
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
36730
36841
|
common_acs_entrance_ids?: string[] | undefined;
|
|
36731
36842
|
} | undefined;
|
|
36732
|
-
};
|
|
36843
|
+
} | null;
|
|
36733
36844
|
/** Matching acs_credential currently encoded on this card. */
|
|
36734
36845
|
acs_credential_on_seam: ({
|
|
36735
36846
|
/** ID of the credential. */
|
|
@@ -36905,7 +37016,7 @@ interface Routes {
|
|
|
36905
37016
|
is_managed: false;
|
|
36906
37017
|
}) | null;
|
|
36907
37018
|
warnings: Array<{
|
|
36908
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
37019
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
36909
37020
|
warning_message: string;
|
|
36910
37021
|
}>;
|
|
36911
37022
|
};
|
|
@@ -39074,7 +39185,7 @@ interface Routes {
|
|
|
39074
39185
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
39075
39186
|
common_acs_entrance_ids?: string[] | undefined;
|
|
39076
39187
|
} | undefined;
|
|
39077
|
-
};
|
|
39188
|
+
} | null;
|
|
39078
39189
|
/** Matching acs_credential currently encoded on this card. */
|
|
39079
39190
|
acs_credential_on_seam: ({
|
|
39080
39191
|
/** ID of the credential. */
|
|
@@ -39250,7 +39361,7 @@ interface Routes {
|
|
|
39250
39361
|
is_managed: false;
|
|
39251
39362
|
}) | null;
|
|
39252
39363
|
warnings: Array<{
|
|
39253
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
39364
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
39254
39365
|
warning_message: string;
|
|
39255
39366
|
}>;
|
|
39256
39367
|
};
|
|
@@ -39991,7 +40102,7 @@ interface Routes {
|
|
|
39991
40102
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
39992
40103
|
common_acs_entrance_ids?: string[] | undefined;
|
|
39993
40104
|
} | undefined;
|
|
39994
|
-
};
|
|
40105
|
+
} | null;
|
|
39995
40106
|
/** Matching acs_credential currently encoded on this card. */
|
|
39996
40107
|
acs_credential_on_seam: ({
|
|
39997
40108
|
/** ID of the credential. */
|
|
@@ -40167,7 +40278,7 @@ interface Routes {
|
|
|
40167
40278
|
is_managed: false;
|
|
40168
40279
|
}) | null;
|
|
40169
40280
|
warnings: Array<{
|
|
40170
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
40281
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
40171
40282
|
warning_message: string;
|
|
40172
40283
|
}>;
|
|
40173
40284
|
};
|
|
@@ -42156,7 +42267,7 @@ interface Routes {
|
|
|
42156
42267
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
42157
42268
|
common_acs_entrance_ids?: string[] | undefined;
|
|
42158
42269
|
} | undefined;
|
|
42159
|
-
};
|
|
42270
|
+
} | null;
|
|
42160
42271
|
/** Matching acs_credential currently encoded on this card. */
|
|
42161
42272
|
acs_credential_on_seam: ({
|
|
42162
42273
|
/** ID of the credential. */
|
|
@@ -42332,7 +42443,7 @@ interface Routes {
|
|
|
42332
42443
|
is_managed: false;
|
|
42333
42444
|
}) | null;
|
|
42334
42445
|
warnings: Array<{
|
|
42335
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
42446
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
42336
42447
|
warning_message: string;
|
|
42337
42448
|
}>;
|
|
42338
42449
|
};
|
|
@@ -43028,7 +43139,7 @@ interface Routes {
|
|
|
43028
43139
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
43029
43140
|
common_acs_entrance_ids?: string[] | undefined;
|
|
43030
43141
|
} | undefined;
|
|
43031
|
-
};
|
|
43142
|
+
} | null;
|
|
43032
43143
|
/** Matching acs_credential currently encoded on this card. */
|
|
43033
43144
|
acs_credential_on_seam: ({
|
|
43034
43145
|
/** ID of the credential. */
|
|
@@ -43204,7 +43315,7 @@ interface Routes {
|
|
|
43204
43315
|
is_managed: false;
|
|
43205
43316
|
}) | null;
|
|
43206
43317
|
warnings: Array<{
|
|
43207
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
43318
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
43208
43319
|
warning_message: string;
|
|
43209
43320
|
}>;
|
|
43210
43321
|
};
|
|
@@ -43964,7 +44075,7 @@ interface Routes {
|
|
|
43964
44075
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
43965
44076
|
custom_redirect_url?: string | undefined;
|
|
43966
44077
|
custom_redirect_failure_url?: string | undefined;
|
|
43967
|
-
accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
44078
|
+
accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
43968
44079
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
43969
44080
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
43970
44081
|
automatically_manage_new_devices?: boolean;
|
|
@@ -44242,7 +44353,7 @@ interface Routes {
|
|
|
44242
44353
|
/** Unique identifier for the device. */
|
|
44243
44354
|
device_id: string;
|
|
44244
44355
|
/** Type of the device. */
|
|
44245
|
-
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');
|
|
44356
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
44246
44357
|
/** Optional nickname to describe the device, settable through Seam */
|
|
44247
44358
|
nickname?: string | undefined;
|
|
44248
44359
|
/** 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. */
|
|
@@ -44553,6 +44664,11 @@ interface Routes {
|
|
|
44553
44664
|
assa_abloy_vostio_metadata?: {
|
|
44554
44665
|
encoder_name: string;
|
|
44555
44666
|
} | undefined;
|
|
44667
|
+
tado_metadata?: {
|
|
44668
|
+
serial_number: string;
|
|
44669
|
+
device_name: string;
|
|
44670
|
+
device_type: string;
|
|
44671
|
+
} | undefined;
|
|
44556
44672
|
}) & ({
|
|
44557
44673
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
44558
44674
|
code_constraints?: (Array<{
|
|
@@ -44766,11 +44882,11 @@ interface Routes {
|
|
|
44766
44882
|
/** ID of the Connect Webview by which to filter devices. */
|
|
44767
44883
|
connect_webview_id?: string | undefined;
|
|
44768
44884
|
/** Device type by which to filter devices. */
|
|
44769
|
-
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')) | undefined;
|
|
44885
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
44770
44886
|
/** Array of device types by which to filter devices. */
|
|
44771
|
-
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')> | undefined;
|
|
44887
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
44772
44888
|
/** Manufacturer by which to filter devices. */
|
|
44773
|
-
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;
|
|
44889
|
+
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' | 'tado') | undefined;
|
|
44774
44890
|
/** Array of device IDs by which to filter devices. */
|
|
44775
44891
|
device_ids?: string[] | undefined;
|
|
44776
44892
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -44792,7 +44908,7 @@ interface Routes {
|
|
|
44792
44908
|
/** Unique identifier for the device. */
|
|
44793
44909
|
device_id: string;
|
|
44794
44910
|
/** Type of the device. */
|
|
44795
|
-
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');
|
|
44911
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
44796
44912
|
/** Optional nickname to describe the device, settable through Seam */
|
|
44797
44913
|
nickname?: string | undefined;
|
|
44798
44914
|
/** 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. */
|
|
@@ -45103,6 +45219,11 @@ interface Routes {
|
|
|
45103
45219
|
assa_abloy_vostio_metadata?: {
|
|
45104
45220
|
encoder_name: string;
|
|
45105
45221
|
} | undefined;
|
|
45222
|
+
tado_metadata?: {
|
|
45223
|
+
serial_number: string;
|
|
45224
|
+
device_name: string;
|
|
45225
|
+
device_type: string;
|
|
45226
|
+
} | undefined;
|
|
45106
45227
|
}) & ({
|
|
45107
45228
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
45108
45229
|
code_constraints?: (Array<{
|
|
@@ -45314,7 +45435,7 @@ interface Routes {
|
|
|
45314
45435
|
formData: {};
|
|
45315
45436
|
jsonResponse: {
|
|
45316
45437
|
device_providers: Array<{
|
|
45317
|
-
device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service';
|
|
45438
|
+
device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado';
|
|
45318
45439
|
display_name: string;
|
|
45319
45440
|
image_url: string;
|
|
45320
45441
|
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
@@ -45380,7 +45501,7 @@ interface Routes {
|
|
|
45380
45501
|
/** Unique identifier for the device. */
|
|
45381
45502
|
device_id: string;
|
|
45382
45503
|
/** Type of the device. */
|
|
45383
|
-
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');
|
|
45504
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
45384
45505
|
/** Unique identifier for the account associated with the device. */
|
|
45385
45506
|
connected_account_id: string;
|
|
45386
45507
|
/** Location information for the device. */
|
|
@@ -45489,11 +45610,11 @@ interface Routes {
|
|
|
45489
45610
|
/** ID of the Connect Webview by which to filter devices. */
|
|
45490
45611
|
connect_webview_id?: string | undefined;
|
|
45491
45612
|
/** Device type by which to filter devices. */
|
|
45492
|
-
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')) | undefined;
|
|
45613
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
45493
45614
|
/** Array of device types by which to filter devices. */
|
|
45494
|
-
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')> | undefined;
|
|
45615
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
45495
45616
|
/** Manufacturer by which to filter devices. */
|
|
45496
|
-
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;
|
|
45617
|
+
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' | 'tado') | undefined;
|
|
45497
45618
|
/** Array of device IDs by which to filter devices. */
|
|
45498
45619
|
device_ids?: string[] | undefined;
|
|
45499
45620
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -45515,7 +45636,7 @@ interface Routes {
|
|
|
45515
45636
|
/** Unique identifier for the device. */
|
|
45516
45637
|
device_id: string;
|
|
45517
45638
|
/** Type of the device. */
|
|
45518
|
-
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');
|
|
45639
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
45519
45640
|
/** Unique identifier for the account associated with the device. */
|
|
45520
45641
|
connected_account_id: string;
|
|
45521
45642
|
/** Location information for the device. */
|
|
@@ -45745,7 +45866,7 @@ interface Routes {
|
|
|
45745
45866
|
/** Unique identifier for the device. */
|
|
45746
45867
|
device_id: string;
|
|
45747
45868
|
/** Type of the device. */
|
|
45748
|
-
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');
|
|
45869
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
45749
45870
|
/** Optional nickname to describe the device, settable through Seam */
|
|
45750
45871
|
nickname?: string | undefined;
|
|
45751
45872
|
/** 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. */
|
|
@@ -46056,6 +46177,11 @@ interface Routes {
|
|
|
46056
46177
|
assa_abloy_vostio_metadata?: {
|
|
46057
46178
|
encoder_name: string;
|
|
46058
46179
|
} | undefined;
|
|
46180
|
+
tado_metadata?: {
|
|
46181
|
+
serial_number: string;
|
|
46182
|
+
device_name: string;
|
|
46183
|
+
device_type: string;
|
|
46184
|
+
} | undefined;
|
|
46059
46185
|
}) & ({
|
|
46060
46186
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
46061
46187
|
code_constraints?: (Array<{
|
|
@@ -46258,7 +46384,7 @@ interface Routes {
|
|
|
46258
46384
|
/** Unique identifier for the device. */
|
|
46259
46385
|
device_id: string;
|
|
46260
46386
|
/** Type of the device. */
|
|
46261
|
-
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');
|
|
46387
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
46262
46388
|
/** Optional nickname to describe the device, settable through Seam */
|
|
46263
46389
|
nickname?: string | undefined;
|
|
46264
46390
|
/** 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. */
|
|
@@ -46569,6 +46695,11 @@ interface Routes {
|
|
|
46569
46695
|
assa_abloy_vostio_metadata?: {
|
|
46570
46696
|
encoder_name: string;
|
|
46571
46697
|
} | undefined;
|
|
46698
|
+
tado_metadata?: {
|
|
46699
|
+
serial_number: string;
|
|
46700
|
+
device_name: string;
|
|
46701
|
+
device_type: string;
|
|
46702
|
+
} | undefined;
|
|
46572
46703
|
}) & ({
|
|
46573
46704
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
46574
46705
|
code_constraints?: (Array<{
|
|
@@ -46782,11 +46913,11 @@ interface Routes {
|
|
|
46782
46913
|
/** ID of the Connect Webview by which to filter devices. */
|
|
46783
46914
|
connect_webview_id?: string | undefined;
|
|
46784
46915
|
/** Device type by which to filter devices. */
|
|
46785
|
-
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')) | undefined;
|
|
46916
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
46786
46917
|
/** Array of device types by which to filter devices. */
|
|
46787
|
-
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')> | undefined;
|
|
46918
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
46788
46919
|
/** Manufacturer by which to filter devices. */
|
|
46789
|
-
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;
|
|
46920
|
+
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' | 'tado') | undefined;
|
|
46790
46921
|
/** Array of device IDs by which to filter devices. */
|
|
46791
46922
|
device_ids?: string[] | undefined;
|
|
46792
46923
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -46808,7 +46939,7 @@ interface Routes {
|
|
|
46808
46939
|
/** Unique identifier for the device. */
|
|
46809
46940
|
device_id: string;
|
|
46810
46941
|
/** Type of the device. */
|
|
46811
|
-
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');
|
|
46942
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
46812
46943
|
/** Optional nickname to describe the device, settable through Seam */
|
|
46813
46944
|
nickname?: string | undefined;
|
|
46814
46945
|
/** 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. */
|
|
@@ -47119,6 +47250,11 @@ interface Routes {
|
|
|
47119
47250
|
assa_abloy_vostio_metadata?: {
|
|
47120
47251
|
encoder_name: string;
|
|
47121
47252
|
} | undefined;
|
|
47253
|
+
tado_metadata?: {
|
|
47254
|
+
serial_number: string;
|
|
47255
|
+
device_name: string;
|
|
47256
|
+
device_type: string;
|
|
47257
|
+
} | undefined;
|
|
47122
47258
|
}) & ({
|
|
47123
47259
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
47124
47260
|
code_constraints?: (Array<{
|
|
@@ -47321,7 +47457,7 @@ interface Routes {
|
|
|
47321
47457
|
/** Unique identifier for the device. */
|
|
47322
47458
|
device_id: string;
|
|
47323
47459
|
/** Type of the device. */
|
|
47324
|
-
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');
|
|
47460
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
47325
47461
|
/** Optional nickname to describe the device, settable through Seam */
|
|
47326
47462
|
nickname?: string | undefined;
|
|
47327
47463
|
/** 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. */
|
|
@@ -47632,6 +47768,11 @@ interface Routes {
|
|
|
47632
47768
|
assa_abloy_vostio_metadata?: {
|
|
47633
47769
|
encoder_name: string;
|
|
47634
47770
|
} | undefined;
|
|
47771
|
+
tado_metadata?: {
|
|
47772
|
+
serial_number: string;
|
|
47773
|
+
device_name: string;
|
|
47774
|
+
device_type: string;
|
|
47775
|
+
} | undefined;
|
|
47635
47776
|
}) & ({
|
|
47636
47777
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
47637
47778
|
code_constraints?: (Array<{
|
|
@@ -47931,7 +48072,7 @@ interface Routes {
|
|
|
47931
48072
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
47932
48073
|
common_acs_entrance_ids?: string[] | undefined;
|
|
47933
48074
|
} | undefined;
|
|
47934
|
-
};
|
|
48075
|
+
} | null;
|
|
47935
48076
|
/** Matching acs_credential currently encoded on this card. */
|
|
47936
48077
|
acs_credential_on_seam: ({
|
|
47937
48078
|
/** ID of the credential. */
|
|
@@ -48107,7 +48248,7 @@ interface Routes {
|
|
|
48107
48248
|
is_managed: false;
|
|
48108
48249
|
}) | null;
|
|
48109
48250
|
warnings: Array<{
|
|
48110
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
48251
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
48111
48252
|
warning_message: string;
|
|
48112
48253
|
}>;
|
|
48113
48254
|
};
|
|
@@ -48804,7 +48945,7 @@ interface Routes {
|
|
|
48804
48945
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
48805
48946
|
common_acs_entrance_ids?: string[] | undefined;
|
|
48806
48947
|
} | undefined;
|
|
48807
|
-
};
|
|
48948
|
+
} | null;
|
|
48808
48949
|
/** Matching acs_credential currently encoded on this card. */
|
|
48809
48950
|
acs_credential_on_seam: ({
|
|
48810
48951
|
/** ID of the credential. */
|
|
@@ -48980,7 +49121,7 @@ interface Routes {
|
|
|
48980
49121
|
is_managed: false;
|
|
48981
49122
|
}) | null;
|
|
48982
49123
|
warnings: Array<{
|
|
48983
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
49124
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
48984
49125
|
warning_message: string;
|
|
48985
49126
|
}>;
|
|
48986
49127
|
};
|
|
@@ -49625,11 +49766,11 @@ interface Routes {
|
|
|
49625
49766
|
/** ID of the Connect Webview by which to filter devices. */
|
|
49626
49767
|
connect_webview_id?: string | undefined;
|
|
49627
49768
|
/** Device type by which to filter devices. */
|
|
49628
|
-
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')) | undefined;
|
|
49769
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
49629
49770
|
/** Array of device types by which to filter devices. */
|
|
49630
|
-
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')> | undefined;
|
|
49771
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
49631
49772
|
/** Manufacturer by which to filter devices. */
|
|
49632
|
-
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;
|
|
49773
|
+
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' | 'tado') | undefined;
|
|
49633
49774
|
/** Array of device IDs by which to filter devices. */
|
|
49634
49775
|
device_ids?: string[] | undefined;
|
|
49635
49776
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -49651,7 +49792,7 @@ interface Routes {
|
|
|
49651
49792
|
/** Unique identifier for the device. */
|
|
49652
49793
|
device_id: string;
|
|
49653
49794
|
/** Type of the device. */
|
|
49654
|
-
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');
|
|
49795
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
49655
49796
|
/** Optional nickname to describe the device, settable through Seam */
|
|
49656
49797
|
nickname?: string | undefined;
|
|
49657
49798
|
/** 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. */
|
|
@@ -49962,6 +50103,11 @@ interface Routes {
|
|
|
49962
50103
|
assa_abloy_vostio_metadata?: {
|
|
49963
50104
|
encoder_name: string;
|
|
49964
50105
|
} | undefined;
|
|
50106
|
+
tado_metadata?: {
|
|
50107
|
+
serial_number: string;
|
|
50108
|
+
device_name: string;
|
|
50109
|
+
device_type: string;
|
|
50110
|
+
} | undefined;
|
|
49965
50111
|
}) & ({
|
|
49966
50112
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
49967
50113
|
code_constraints?: (Array<{
|
|
@@ -50164,7 +50310,7 @@ interface Routes {
|
|
|
50164
50310
|
/** Unique identifier for the device. */
|
|
50165
50311
|
device_id: string;
|
|
50166
50312
|
/** Type of the device. */
|
|
50167
|
-
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');
|
|
50313
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
50168
50314
|
/** Optional nickname to describe the device, settable through Seam */
|
|
50169
50315
|
nickname?: string | undefined;
|
|
50170
50316
|
/** 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. */
|
|
@@ -50475,6 +50621,11 @@ interface Routes {
|
|
|
50475
50621
|
assa_abloy_vostio_metadata?: {
|
|
50476
50622
|
encoder_name: string;
|
|
50477
50623
|
} | undefined;
|
|
50624
|
+
tado_metadata?: {
|
|
50625
|
+
serial_number: string;
|
|
50626
|
+
device_name: string;
|
|
50627
|
+
device_type: string;
|
|
50628
|
+
} | undefined;
|
|
50478
50629
|
}) & ({
|
|
50479
50630
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
50480
50631
|
code_constraints?: (Array<{
|
|
@@ -50779,7 +50930,7 @@ interface Routes {
|
|
|
50779
50930
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
50780
50931
|
common_acs_entrance_ids?: string[] | undefined;
|
|
50781
50932
|
} | undefined;
|
|
50782
|
-
};
|
|
50933
|
+
} | null;
|
|
50783
50934
|
/** Matching acs_credential currently encoded on this card. */
|
|
50784
50935
|
acs_credential_on_seam: ({
|
|
50785
50936
|
/** ID of the credential. */
|
|
@@ -50955,7 +51106,7 @@ interface Routes {
|
|
|
50955
51106
|
is_managed: false;
|
|
50956
51107
|
}) | null;
|
|
50957
51108
|
warnings: Array<{
|
|
50958
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
51109
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
50959
51110
|
warning_message: string;
|
|
50960
51111
|
}>;
|
|
50961
51112
|
};
|
|
@@ -51662,7 +51813,7 @@ interface Routes {
|
|
|
51662
51813
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
51663
51814
|
common_acs_entrance_ids?: string[] | undefined;
|
|
51664
51815
|
} | undefined;
|
|
51665
|
-
};
|
|
51816
|
+
} | null;
|
|
51666
51817
|
/** Matching acs_credential currently encoded on this card. */
|
|
51667
51818
|
acs_credential_on_seam: ({
|
|
51668
51819
|
/** ID of the credential. */
|
|
@@ -51838,7 +51989,7 @@ interface Routes {
|
|
|
51838
51989
|
is_managed: false;
|
|
51839
51990
|
}) | null;
|
|
51840
51991
|
warnings: Array<{
|
|
51841
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
51992
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
51842
51993
|
warning_message: string;
|
|
51843
51994
|
}>;
|
|
51844
51995
|
};
|
|
@@ -52584,7 +52735,7 @@ interface Routes {
|
|
|
52584
52735
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
52585
52736
|
common_acs_entrance_ids?: string[] | undefined;
|
|
52586
52737
|
} | undefined;
|
|
52587
|
-
};
|
|
52738
|
+
} | null;
|
|
52588
52739
|
/** Matching acs_credential currently encoded on this card. */
|
|
52589
52740
|
acs_credential_on_seam: ({
|
|
52590
52741
|
/** ID of the credential. */
|
|
@@ -52760,7 +52911,7 @@ interface Routes {
|
|
|
52760
52911
|
is_managed: false;
|
|
52761
52912
|
}) | null;
|
|
52762
52913
|
warnings: Array<{
|
|
52763
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
52914
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
52764
52915
|
warning_message: string;
|
|
52765
52916
|
}>;
|
|
52766
52917
|
};
|
|
@@ -53641,7 +53792,7 @@ interface Routes {
|
|
|
53641
53792
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
53642
53793
|
common_acs_entrance_ids?: string[] | undefined;
|
|
53643
53794
|
} | undefined;
|
|
53644
|
-
};
|
|
53795
|
+
} | null;
|
|
53645
53796
|
/** Matching acs_credential currently encoded on this card. */
|
|
53646
53797
|
acs_credential_on_seam: ({
|
|
53647
53798
|
/** ID of the credential. */
|
|
@@ -53817,7 +53968,7 @@ interface Routes {
|
|
|
53817
53968
|
is_managed: false;
|
|
53818
53969
|
}) | null;
|
|
53819
53970
|
warnings: Array<{
|
|
53820
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
53971
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
53821
53972
|
warning_message: string;
|
|
53822
53973
|
}>;
|
|
53823
53974
|
};
|
|
@@ -54520,7 +54671,7 @@ interface Routes {
|
|
|
54520
54671
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
54521
54672
|
common_acs_entrance_ids?: string[] | undefined;
|
|
54522
54673
|
} | undefined;
|
|
54523
|
-
};
|
|
54674
|
+
} | null;
|
|
54524
54675
|
/** Matching acs_credential currently encoded on this card. */
|
|
54525
54676
|
acs_credential_on_seam: ({
|
|
54526
54677
|
/** ID of the credential. */
|
|
@@ -54696,7 +54847,7 @@ interface Routes {
|
|
|
54696
54847
|
is_managed: false;
|
|
54697
54848
|
}) | null;
|
|
54698
54849
|
warnings: Array<{
|
|
54699
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
54850
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
54700
54851
|
warning_message: string;
|
|
54701
54852
|
}>;
|
|
54702
54853
|
};
|
|
@@ -55354,7 +55505,7 @@ interface Routes {
|
|
|
55354
55505
|
/** Unique identifier for the device. */
|
|
55355
55506
|
device_id: string;
|
|
55356
55507
|
/** Type of the device. */
|
|
55357
|
-
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');
|
|
55508
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
55358
55509
|
/** Optional nickname to describe the device, settable through Seam */
|
|
55359
55510
|
nickname?: string | undefined;
|
|
55360
55511
|
/** 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. */
|
|
@@ -55665,6 +55816,11 @@ interface Routes {
|
|
|
55665
55816
|
assa_abloy_vostio_metadata?: {
|
|
55666
55817
|
encoder_name: string;
|
|
55667
55818
|
} | undefined;
|
|
55819
|
+
tado_metadata?: {
|
|
55820
|
+
serial_number: string;
|
|
55821
|
+
device_name: string;
|
|
55822
|
+
device_type: string;
|
|
55823
|
+
} | undefined;
|
|
55668
55824
|
}) & ({
|
|
55669
55825
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
55670
55826
|
code_constraints?: (Array<{
|
|
@@ -55970,7 +56126,7 @@ interface Routes {
|
|
|
55970
56126
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
55971
56127
|
common_acs_entrance_ids?: string[] | undefined;
|
|
55972
56128
|
} | undefined;
|
|
55973
|
-
};
|
|
56129
|
+
} | null;
|
|
55974
56130
|
/** Matching acs_credential currently encoded on this card. */
|
|
55975
56131
|
acs_credential_on_seam: ({
|
|
55976
56132
|
/** ID of the credential. */
|
|
@@ -56146,7 +56302,7 @@ interface Routes {
|
|
|
56146
56302
|
is_managed: false;
|
|
56147
56303
|
}) | null;
|
|
56148
56304
|
warnings: Array<{
|
|
56149
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
56305
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
56150
56306
|
warning_message: string;
|
|
56151
56307
|
}>;
|
|
56152
56308
|
};
|
|
@@ -56853,7 +57009,7 @@ interface Routes {
|
|
|
56853
57009
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
56854
57010
|
common_acs_entrance_ids?: string[] | undefined;
|
|
56855
57011
|
} | undefined;
|
|
56856
|
-
};
|
|
57012
|
+
} | null;
|
|
56857
57013
|
/** Matching acs_credential currently encoded on this card. */
|
|
56858
57014
|
acs_credential_on_seam: ({
|
|
56859
57015
|
/** ID of the credential. */
|
|
@@ -57029,7 +57185,7 @@ interface Routes {
|
|
|
57029
57185
|
is_managed: false;
|
|
57030
57186
|
}) | null;
|
|
57031
57187
|
warnings: Array<{
|
|
57032
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
57188
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
57033
57189
|
warning_message: string;
|
|
57034
57190
|
}>;
|
|
57035
57191
|
};
|
|
@@ -57640,11 +57796,11 @@ interface Routes {
|
|
|
57640
57796
|
/** ID of the Connect Webview by which to filter devices. */
|
|
57641
57797
|
connect_webview_id?: string | undefined;
|
|
57642
57798
|
/** Device type by which to filter devices. */
|
|
57643
|
-
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')) | undefined;
|
|
57799
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
57644
57800
|
/** Array of device types by which to filter devices. */
|
|
57645
|
-
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')> | undefined;
|
|
57801
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
57646
57802
|
/** Manufacturer by which to filter devices. */
|
|
57647
|
-
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;
|
|
57803
|
+
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' | 'tado') | undefined;
|
|
57648
57804
|
/** Array of device IDs by which to filter devices. */
|
|
57649
57805
|
device_ids?: string[] | undefined;
|
|
57650
57806
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -57666,7 +57822,7 @@ interface Routes {
|
|
|
57666
57822
|
/** Unique identifier for the device. */
|
|
57667
57823
|
device_id: string;
|
|
57668
57824
|
/** Type of the device. */
|
|
57669
|
-
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');
|
|
57825
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
57670
57826
|
/** Optional nickname to describe the device, settable through Seam */
|
|
57671
57827
|
nickname?: string | undefined;
|
|
57672
57828
|
/** 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. */
|
|
@@ -57977,6 +58133,11 @@ interface Routes {
|
|
|
57977
58133
|
assa_abloy_vostio_metadata?: {
|
|
57978
58134
|
encoder_name: string;
|
|
57979
58135
|
} | undefined;
|
|
58136
|
+
tado_metadata?: {
|
|
58137
|
+
serial_number: string;
|
|
58138
|
+
device_name: string;
|
|
58139
|
+
device_type: string;
|
|
58140
|
+
} | undefined;
|
|
57980
58141
|
}) & ({
|
|
57981
58142
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
57982
58143
|
code_constraints?: (Array<{
|
|
@@ -58179,7 +58340,7 @@ interface Routes {
|
|
|
58179
58340
|
/** Unique identifier for the device. */
|
|
58180
58341
|
device_id: string;
|
|
58181
58342
|
/** Type of the device. */
|
|
58182
|
-
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');
|
|
58343
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
58183
58344
|
/** Optional nickname to describe the device, settable through Seam */
|
|
58184
58345
|
nickname?: string | undefined;
|
|
58185
58346
|
/** 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. */
|
|
@@ -58490,6 +58651,11 @@ interface Routes {
|
|
|
58490
58651
|
assa_abloy_vostio_metadata?: {
|
|
58491
58652
|
encoder_name: string;
|
|
58492
58653
|
} | undefined;
|
|
58654
|
+
tado_metadata?: {
|
|
58655
|
+
serial_number: string;
|
|
58656
|
+
device_name: string;
|
|
58657
|
+
device_type: string;
|
|
58658
|
+
} | undefined;
|
|
58493
58659
|
}) & ({
|
|
58494
58660
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
58495
58661
|
code_constraints?: (Array<{
|
|
@@ -58791,7 +58957,7 @@ interface Routes {
|
|
|
58791
58957
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
58792
58958
|
common_acs_entrance_ids?: string[] | undefined;
|
|
58793
58959
|
} | undefined;
|
|
58794
|
-
};
|
|
58960
|
+
} | null;
|
|
58795
58961
|
/** Matching acs_credential currently encoded on this card. */
|
|
58796
58962
|
acs_credential_on_seam: ({
|
|
58797
58963
|
/** ID of the credential. */
|
|
@@ -58967,7 +59133,7 @@ interface Routes {
|
|
|
58967
59133
|
is_managed: false;
|
|
58968
59134
|
}) | null;
|
|
58969
59135
|
warnings: Array<{
|
|
58970
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
59136
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
58971
59137
|
warning_message: string;
|
|
58972
59138
|
}>;
|
|
58973
59139
|
};
|
|
@@ -59839,7 +60005,7 @@ interface Routes {
|
|
|
59839
60005
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
59840
60006
|
common_acs_entrance_ids?: string[] | undefined;
|
|
59841
60007
|
} | undefined;
|
|
59842
|
-
};
|
|
60008
|
+
} | null;
|
|
59843
60009
|
/** Matching acs_credential currently encoded on this card. */
|
|
59844
60010
|
acs_credential_on_seam: ({
|
|
59845
60011
|
/** ID of the credential. */
|
|
@@ -60015,7 +60181,7 @@ interface Routes {
|
|
|
60015
60181
|
is_managed: false;
|
|
60016
60182
|
}) | null;
|
|
60017
60183
|
warnings: Array<{
|
|
60018
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
60184
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
60019
60185
|
warning_message: string;
|
|
60020
60186
|
}>;
|
|
60021
60187
|
};
|
|
@@ -60741,7 +60907,7 @@ interface Routes {
|
|
|
60741
60907
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
60742
60908
|
common_acs_entrance_ids?: string[] | undefined;
|
|
60743
60909
|
} | undefined;
|
|
60744
|
-
};
|
|
60910
|
+
} | null;
|
|
60745
60911
|
/** Matching acs_credential currently encoded on this card. */
|
|
60746
60912
|
acs_credential_on_seam: ({
|
|
60747
60913
|
/** ID of the credential. */
|
|
@@ -60917,7 +61083,7 @@ interface Routes {
|
|
|
60917
61083
|
is_managed: false;
|
|
60918
61084
|
}) | null;
|
|
60919
61085
|
warnings: Array<{
|
|
60920
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
61086
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
60921
61087
|
warning_message: string;
|
|
60922
61088
|
}>;
|
|
60923
61089
|
};
|
|
@@ -61809,7 +61975,7 @@ interface Routes {
|
|
|
61809
61975
|
/** Unique identifier for the device. */
|
|
61810
61976
|
device_id: string;
|
|
61811
61977
|
/** Type of the device. */
|
|
61812
|
-
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');
|
|
61978
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
61813
61979
|
/** Optional nickname to describe the device, settable through Seam */
|
|
61814
61980
|
nickname?: string | undefined;
|
|
61815
61981
|
/** 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. */
|
|
@@ -62120,6 +62286,11 @@ interface Routes {
|
|
|
62120
62286
|
assa_abloy_vostio_metadata?: {
|
|
62121
62287
|
encoder_name: string;
|
|
62122
62288
|
} | undefined;
|
|
62289
|
+
tado_metadata?: {
|
|
62290
|
+
serial_number: string;
|
|
62291
|
+
device_name: string;
|
|
62292
|
+
device_type: string;
|
|
62293
|
+
} | undefined;
|
|
62123
62294
|
}) & ({
|
|
62124
62295
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
62125
62296
|
code_constraints?: (Array<{
|
|
@@ -62324,7 +62495,7 @@ interface Routes {
|
|
|
62324
62495
|
/** Unique identifier for the device. */
|
|
62325
62496
|
device_id: string;
|
|
62326
62497
|
/** Type of the device. */
|
|
62327
|
-
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');
|
|
62498
|
+
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' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
62328
62499
|
/** Optional nickname to describe the device, settable through Seam */
|
|
62329
62500
|
nickname?: string | undefined;
|
|
62330
62501
|
/** 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. */
|
|
@@ -62635,6 +62806,11 @@ interface Routes {
|
|
|
62635
62806
|
assa_abloy_vostio_metadata?: {
|
|
62636
62807
|
encoder_name: string;
|
|
62637
62808
|
} | undefined;
|
|
62809
|
+
tado_metadata?: {
|
|
62810
|
+
serial_number: string;
|
|
62811
|
+
device_name: string;
|
|
62812
|
+
device_type: string;
|
|
62813
|
+
} | undefined;
|
|
62638
62814
|
}) & ({
|
|
62639
62815
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
62640
62816
|
code_constraints?: (Array<{
|
|
@@ -63340,7 +63516,7 @@ interface Routes {
|
|
|
63340
63516
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
63341
63517
|
common_acs_entrance_ids?: string[] | undefined;
|
|
63342
63518
|
} | undefined;
|
|
63343
|
-
};
|
|
63519
|
+
} | null;
|
|
63344
63520
|
/** Matching acs_credential currently encoded on this card. */
|
|
63345
63521
|
acs_credential_on_seam: ({
|
|
63346
63522
|
/** ID of the credential. */
|
|
@@ -63516,7 +63692,7 @@ interface Routes {
|
|
|
63516
63692
|
is_managed: false;
|
|
63517
63693
|
}) | null;
|
|
63518
63694
|
warnings: Array<{
|
|
63519
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
63695
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
63520
63696
|
warning_message: string;
|
|
63521
63697
|
}>;
|
|
63522
63698
|
};
|