@seamapi/types 1.306.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 +64 -23
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +228 -91
- 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-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 +16 -0
- package/lib/seam/connect/openapi.js +35 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +137 -72
- package/package.json +1 -1
- 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-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +35 -1
- package/src/lib/seam/connect/route-types.ts +205 -42
|
@@ -113,7 +113,7 @@ export interface Routes {
|
|
|
113
113
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
114
114
|
common_acs_entrance_ids?: string[] | undefined;
|
|
115
115
|
} | undefined;
|
|
116
|
-
};
|
|
116
|
+
} | null;
|
|
117
117
|
/** Matching acs_credential currently encoded on this card. */
|
|
118
118
|
acs_credential_on_seam: ({
|
|
119
119
|
/** ID of the credential. */
|
|
@@ -289,7 +289,7 @@ export interface Routes {
|
|
|
289
289
|
is_managed: false;
|
|
290
290
|
}) | null;
|
|
291
291
|
warnings: Array<{
|
|
292
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
292
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
293
293
|
warning_message: string;
|
|
294
294
|
}>;
|
|
295
295
|
};
|
|
@@ -1136,7 +1136,7 @@ export interface Routes {
|
|
|
1136
1136
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1137
1137
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1138
1138
|
} | undefined;
|
|
1139
|
-
};
|
|
1139
|
+
} | null;
|
|
1140
1140
|
/** Matching acs_credential currently encoded on this card. */
|
|
1141
1141
|
acs_credential_on_seam: ({
|
|
1142
1142
|
/** ID of the credential. */
|
|
@@ -1312,7 +1312,7 @@ export interface Routes {
|
|
|
1312
1312
|
is_managed: false;
|
|
1313
1313
|
}) | null;
|
|
1314
1314
|
warnings: Array<{
|
|
1315
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
1315
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
1316
1316
|
warning_message: string;
|
|
1317
1317
|
}>;
|
|
1318
1318
|
};
|
|
@@ -2377,7 +2377,7 @@ export interface Routes {
|
|
|
2377
2377
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
2378
2378
|
common_acs_entrance_ids?: string[] | undefined;
|
|
2379
2379
|
} | undefined;
|
|
2380
|
-
};
|
|
2380
|
+
} | null;
|
|
2381
2381
|
/** Matching acs_credential currently encoded on this card. */
|
|
2382
2382
|
acs_credential_on_seam: ({
|
|
2383
2383
|
/** ID of the credential. */
|
|
@@ -2553,7 +2553,7 @@ export interface Routes {
|
|
|
2553
2553
|
is_managed: false;
|
|
2554
2554
|
}) | null;
|
|
2555
2555
|
warnings: Array<{
|
|
2556
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
2556
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
2557
2557
|
warning_message: string;
|
|
2558
2558
|
}>;
|
|
2559
2559
|
};
|
|
@@ -3387,7 +3387,7 @@ export interface Routes {
|
|
|
3387
3387
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
3388
3388
|
common_acs_entrance_ids?: string[] | undefined;
|
|
3389
3389
|
} | undefined;
|
|
3390
|
-
};
|
|
3390
|
+
} | null;
|
|
3391
3391
|
/** Matching acs_credential currently encoded on this card. */
|
|
3392
3392
|
acs_credential_on_seam: ({
|
|
3393
3393
|
/** ID of the credential. */
|
|
@@ -3563,7 +3563,7 @@ export interface Routes {
|
|
|
3563
3563
|
is_managed: false;
|
|
3564
3564
|
}) | null;
|
|
3565
3565
|
warnings: Array<{
|
|
3566
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
3566
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
3567
3567
|
warning_message: string;
|
|
3568
3568
|
}>;
|
|
3569
3569
|
};
|
|
@@ -5732,7 +5732,7 @@ export interface Routes {
|
|
|
5732
5732
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
5733
5733
|
common_acs_entrance_ids?: string[] | undefined;
|
|
5734
5734
|
} | undefined;
|
|
5735
|
-
};
|
|
5735
|
+
} | null;
|
|
5736
5736
|
/** Matching acs_credential currently encoded on this card. */
|
|
5737
5737
|
acs_credential_on_seam: ({
|
|
5738
5738
|
/** ID of the credential. */
|
|
@@ -5908,7 +5908,7 @@ export interface Routes {
|
|
|
5908
5908
|
is_managed: false;
|
|
5909
5909
|
}) | null;
|
|
5910
5910
|
warnings: Array<{
|
|
5911
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
5911
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
5912
5912
|
warning_message: string;
|
|
5913
5913
|
}>;
|
|
5914
5914
|
};
|
|
@@ -6649,7 +6649,7 @@ export interface Routes {
|
|
|
6649
6649
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
6650
6650
|
common_acs_entrance_ids?: string[] | undefined;
|
|
6651
6651
|
} | undefined;
|
|
6652
|
-
};
|
|
6652
|
+
} | null;
|
|
6653
6653
|
/** Matching acs_credential currently encoded on this card. */
|
|
6654
6654
|
acs_credential_on_seam: ({
|
|
6655
6655
|
/** ID of the credential. */
|
|
@@ -6825,7 +6825,7 @@ export interface Routes {
|
|
|
6825
6825
|
is_managed: false;
|
|
6826
6826
|
}) | null;
|
|
6827
6827
|
warnings: Array<{
|
|
6828
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
6828
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
6829
6829
|
warning_message: string;
|
|
6830
6830
|
}>;
|
|
6831
6831
|
};
|
|
@@ -8814,7 +8814,7 @@ export interface Routes {
|
|
|
8814
8814
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
8815
8815
|
common_acs_entrance_ids?: string[] | undefined;
|
|
8816
8816
|
} | undefined;
|
|
8817
|
-
};
|
|
8817
|
+
} | null;
|
|
8818
8818
|
/** Matching acs_credential currently encoded on this card. */
|
|
8819
8819
|
acs_credential_on_seam: ({
|
|
8820
8820
|
/** ID of the credential. */
|
|
@@ -8990,7 +8990,7 @@ export interface Routes {
|
|
|
8990
8990
|
is_managed: false;
|
|
8991
8991
|
}) | null;
|
|
8992
8992
|
warnings: Array<{
|
|
8993
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
8993
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
8994
8994
|
warning_message: string;
|
|
8995
8995
|
}>;
|
|
8996
8996
|
};
|
|
@@ -9686,7 +9686,7 @@ export interface Routes {
|
|
|
9686
9686
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
9687
9687
|
common_acs_entrance_ids?: string[] | undefined;
|
|
9688
9688
|
} | undefined;
|
|
9689
|
-
};
|
|
9689
|
+
} | null;
|
|
9690
9690
|
/** Matching acs_credential currently encoded on this card. */
|
|
9691
9691
|
acs_credential_on_seam: ({
|
|
9692
9692
|
/** ID of the credential. */
|
|
@@ -9862,7 +9862,7 @@ export interface Routes {
|
|
|
9862
9862
|
is_managed: false;
|
|
9863
9863
|
}) | null;
|
|
9864
9864
|
warnings: Array<{
|
|
9865
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
9865
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
9866
9866
|
warning_message: string;
|
|
9867
9867
|
}>;
|
|
9868
9868
|
};
|
|
@@ -10900,7 +10900,7 @@ export interface Routes {
|
|
|
10900
10900
|
/** Unique identifier for the device. */
|
|
10901
10901
|
device_id: string;
|
|
10902
10902
|
/** Type of the device. */
|
|
10903
|
-
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');
|
|
10903
|
+
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');
|
|
10904
10904
|
/** Optional nickname to describe the device, settable through Seam */
|
|
10905
10905
|
nickname?: string | undefined;
|
|
10906
10906
|
/** 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. */
|
|
@@ -11211,6 +11211,11 @@ export interface Routes {
|
|
|
11211
11211
|
assa_abloy_vostio_metadata?: {
|
|
11212
11212
|
encoder_name: string;
|
|
11213
11213
|
} | undefined;
|
|
11214
|
+
tado_metadata?: {
|
|
11215
|
+
serial_number: string;
|
|
11216
|
+
device_name: string;
|
|
11217
|
+
device_type: string;
|
|
11218
|
+
} | undefined;
|
|
11214
11219
|
}) & ({
|
|
11215
11220
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
11216
11221
|
code_constraints?: (Array<{
|
|
@@ -11424,11 +11429,11 @@ export interface Routes {
|
|
|
11424
11429
|
/** ID of the Connect Webview by which to filter devices. */
|
|
11425
11430
|
connect_webview_id?: string | undefined;
|
|
11426
11431
|
/** Device type by which to filter devices. */
|
|
11427
|
-
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;
|
|
11432
|
+
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;
|
|
11428
11433
|
/** Array of device types by which to filter devices. */
|
|
11429
|
-
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;
|
|
11434
|
+
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;
|
|
11430
11435
|
/** Manufacturer by which to filter devices. */
|
|
11431
|
-
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;
|
|
11436
|
+
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;
|
|
11432
11437
|
/** Array of device IDs by which to filter devices. */
|
|
11433
11438
|
device_ids?: string[] | undefined;
|
|
11434
11439
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -11450,7 +11455,7 @@ export interface Routes {
|
|
|
11450
11455
|
/** Unique identifier for the device. */
|
|
11451
11456
|
device_id: string;
|
|
11452
11457
|
/** Type of the device. */
|
|
11453
|
-
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');
|
|
11458
|
+
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');
|
|
11454
11459
|
/** Optional nickname to describe the device, settable through Seam */
|
|
11455
11460
|
nickname?: string | undefined;
|
|
11456
11461
|
/** 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. */
|
|
@@ -11761,6 +11766,11 @@ export interface Routes {
|
|
|
11761
11766
|
assa_abloy_vostio_metadata?: {
|
|
11762
11767
|
encoder_name: string;
|
|
11763
11768
|
} | undefined;
|
|
11769
|
+
tado_metadata?: {
|
|
11770
|
+
serial_number: string;
|
|
11771
|
+
device_name: string;
|
|
11772
|
+
device_type: string;
|
|
11773
|
+
} | undefined;
|
|
11764
11774
|
}) & ({
|
|
11765
11775
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
11766
11776
|
code_constraints?: (Array<{
|
|
@@ -12038,7 +12048,7 @@ export interface Routes {
|
|
|
12038
12048
|
/** Unique identifier for the device. */
|
|
12039
12049
|
device_id: string;
|
|
12040
12050
|
/** Type of the device. */
|
|
12041
|
-
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');
|
|
12051
|
+
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');
|
|
12042
12052
|
/** Unique identifier for the account associated with the device. */
|
|
12043
12053
|
connected_account_id: string;
|
|
12044
12054
|
/** Location information for the device. */
|
|
@@ -12147,11 +12157,11 @@ export interface Routes {
|
|
|
12147
12157
|
/** ID of the Connect Webview by which to filter devices. */
|
|
12148
12158
|
connect_webview_id?: string | undefined;
|
|
12149
12159
|
/** Device type by which to filter devices. */
|
|
12150
|
-
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;
|
|
12160
|
+
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;
|
|
12151
12161
|
/** Array of device types by which to filter devices. */
|
|
12152
|
-
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;
|
|
12162
|
+
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;
|
|
12153
12163
|
/** Manufacturer by which to filter devices. */
|
|
12154
|
-
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;
|
|
12164
|
+
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;
|
|
12155
12165
|
/** Array of device IDs by which to filter devices. */
|
|
12156
12166
|
device_ids?: string[] | undefined;
|
|
12157
12167
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -12173,7 +12183,7 @@ export interface Routes {
|
|
|
12173
12183
|
/** Unique identifier for the device. */
|
|
12174
12184
|
device_id: string;
|
|
12175
12185
|
/** Type of the device. */
|
|
12176
|
-
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');
|
|
12186
|
+
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');
|
|
12177
12187
|
/** Unique identifier for the account associated with the device. */
|
|
12178
12188
|
connected_account_id: string;
|
|
12179
12189
|
/** Location information for the device. */
|
|
@@ -12403,7 +12413,7 @@ export interface Routes {
|
|
|
12403
12413
|
/** Unique identifier for the device. */
|
|
12404
12414
|
device_id: string;
|
|
12405
12415
|
/** Type of the device. */
|
|
12406
|
-
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');
|
|
12416
|
+
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');
|
|
12407
12417
|
/** Optional nickname to describe the device, settable through Seam */
|
|
12408
12418
|
nickname?: string | undefined;
|
|
12409
12419
|
/** 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. */
|
|
@@ -12714,6 +12724,11 @@ export interface Routes {
|
|
|
12714
12724
|
assa_abloy_vostio_metadata?: {
|
|
12715
12725
|
encoder_name: string;
|
|
12716
12726
|
} | undefined;
|
|
12727
|
+
tado_metadata?: {
|
|
12728
|
+
serial_number: string;
|
|
12729
|
+
device_name: string;
|
|
12730
|
+
device_type: string;
|
|
12731
|
+
} | undefined;
|
|
12717
12732
|
}) & ({
|
|
12718
12733
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
12719
12734
|
code_constraints?: (Array<{
|
|
@@ -12916,7 +12931,7 @@ export interface Routes {
|
|
|
12916
12931
|
/** Unique identifier for the device. */
|
|
12917
12932
|
device_id: string;
|
|
12918
12933
|
/** Type of the device. */
|
|
12919
|
-
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');
|
|
12934
|
+
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');
|
|
12920
12935
|
/** Optional nickname to describe the device, settable through Seam */
|
|
12921
12936
|
nickname?: string | undefined;
|
|
12922
12937
|
/** 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. */
|
|
@@ -13227,6 +13242,11 @@ export interface Routes {
|
|
|
13227
13242
|
assa_abloy_vostio_metadata?: {
|
|
13228
13243
|
encoder_name: string;
|
|
13229
13244
|
} | undefined;
|
|
13245
|
+
tado_metadata?: {
|
|
13246
|
+
serial_number: string;
|
|
13247
|
+
device_name: string;
|
|
13248
|
+
device_type: string;
|
|
13249
|
+
} | undefined;
|
|
13230
13250
|
}) & ({
|
|
13231
13251
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
13232
13252
|
code_constraints?: (Array<{
|
|
@@ -13440,11 +13460,11 @@ export interface Routes {
|
|
|
13440
13460
|
/** ID of the Connect Webview by which to filter devices. */
|
|
13441
13461
|
connect_webview_id?: string | undefined;
|
|
13442
13462
|
/** Device type by which to filter devices. */
|
|
13443
|
-
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;
|
|
13463
|
+
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;
|
|
13444
13464
|
/** Array of device types by which to filter devices. */
|
|
13445
|
-
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;
|
|
13465
|
+
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;
|
|
13446
13466
|
/** Manufacturer by which to filter devices. */
|
|
13447
|
-
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;
|
|
13467
|
+
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;
|
|
13448
13468
|
/** Array of device IDs by which to filter devices. */
|
|
13449
13469
|
device_ids?: string[] | undefined;
|
|
13450
13470
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -13466,7 +13486,7 @@ export interface Routes {
|
|
|
13466
13486
|
/** Unique identifier for the device. */
|
|
13467
13487
|
device_id: string;
|
|
13468
13488
|
/** Type of the device. */
|
|
13469
|
-
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');
|
|
13489
|
+
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');
|
|
13470
13490
|
/** Optional nickname to describe the device, settable through Seam */
|
|
13471
13491
|
nickname?: string | undefined;
|
|
13472
13492
|
/** 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. */
|
|
@@ -13777,6 +13797,11 @@ export interface Routes {
|
|
|
13777
13797
|
assa_abloy_vostio_metadata?: {
|
|
13778
13798
|
encoder_name: string;
|
|
13779
13799
|
} | undefined;
|
|
13800
|
+
tado_metadata?: {
|
|
13801
|
+
serial_number: string;
|
|
13802
|
+
device_name: string;
|
|
13803
|
+
device_type: string;
|
|
13804
|
+
} | undefined;
|
|
13780
13805
|
}) & ({
|
|
13781
13806
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
13782
13807
|
code_constraints?: (Array<{
|
|
@@ -13979,7 +14004,7 @@ export interface Routes {
|
|
|
13979
14004
|
/** Unique identifier for the device. */
|
|
13980
14005
|
device_id: string;
|
|
13981
14006
|
/** Type of the device. */
|
|
13982
|
-
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');
|
|
14007
|
+
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');
|
|
13983
14008
|
/** Optional nickname to describe the device, settable through Seam */
|
|
13984
14009
|
nickname?: string | undefined;
|
|
13985
14010
|
/** 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. */
|
|
@@ -14290,6 +14315,11 @@ export interface Routes {
|
|
|
14290
14315
|
assa_abloy_vostio_metadata?: {
|
|
14291
14316
|
encoder_name: string;
|
|
14292
14317
|
} | undefined;
|
|
14318
|
+
tado_metadata?: {
|
|
14319
|
+
serial_number: string;
|
|
14320
|
+
device_name: string;
|
|
14321
|
+
device_type: string;
|
|
14322
|
+
} | undefined;
|
|
14293
14323
|
}) & ({
|
|
14294
14324
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
14295
14325
|
code_constraints?: (Array<{
|
|
@@ -14589,7 +14619,7 @@ export interface Routes {
|
|
|
14589
14619
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
14590
14620
|
common_acs_entrance_ids?: string[] | undefined;
|
|
14591
14621
|
} | undefined;
|
|
14592
|
-
};
|
|
14622
|
+
} | null;
|
|
14593
14623
|
/** Matching acs_credential currently encoded on this card. */
|
|
14594
14624
|
acs_credential_on_seam: ({
|
|
14595
14625
|
/** ID of the credential. */
|
|
@@ -14765,7 +14795,7 @@ export interface Routes {
|
|
|
14765
14795
|
is_managed: false;
|
|
14766
14796
|
}) | null;
|
|
14767
14797
|
warnings: Array<{
|
|
14768
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
14798
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
14769
14799
|
warning_message: string;
|
|
14770
14800
|
}>;
|
|
14771
14801
|
};
|
|
@@ -15462,7 +15492,7 @@ export interface Routes {
|
|
|
15462
15492
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
15463
15493
|
common_acs_entrance_ids?: string[] | undefined;
|
|
15464
15494
|
} | undefined;
|
|
15465
|
-
};
|
|
15495
|
+
} | null;
|
|
15466
15496
|
/** Matching acs_credential currently encoded on this card. */
|
|
15467
15497
|
acs_credential_on_seam: ({
|
|
15468
15498
|
/** ID of the credential. */
|
|
@@ -15638,7 +15668,7 @@ export interface Routes {
|
|
|
15638
15668
|
is_managed: false;
|
|
15639
15669
|
}) | null;
|
|
15640
15670
|
warnings: Array<{
|
|
15641
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
15671
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
15642
15672
|
warning_message: string;
|
|
15643
15673
|
}>;
|
|
15644
15674
|
};
|
|
@@ -16283,11 +16313,11 @@ export interface Routes {
|
|
|
16283
16313
|
/** ID of the Connect Webview by which to filter devices. */
|
|
16284
16314
|
connect_webview_id?: string | undefined;
|
|
16285
16315
|
/** Device type by which to filter devices. */
|
|
16286
|
-
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;
|
|
16316
|
+
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;
|
|
16287
16317
|
/** Array of device types by which to filter devices. */
|
|
16288
|
-
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;
|
|
16318
|
+
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;
|
|
16289
16319
|
/** Manufacturer by which to filter devices. */
|
|
16290
|
-
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;
|
|
16320
|
+
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;
|
|
16291
16321
|
/** Array of device IDs by which to filter devices. */
|
|
16292
16322
|
device_ids?: string[] | undefined;
|
|
16293
16323
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -16309,7 +16339,7 @@ export interface Routes {
|
|
|
16309
16339
|
/** Unique identifier for the device. */
|
|
16310
16340
|
device_id: string;
|
|
16311
16341
|
/** Type of the device. */
|
|
16312
|
-
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');
|
|
16342
|
+
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');
|
|
16313
16343
|
/** Optional nickname to describe the device, settable through Seam */
|
|
16314
16344
|
nickname?: string | undefined;
|
|
16315
16345
|
/** 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. */
|
|
@@ -16620,6 +16650,11 @@ export interface Routes {
|
|
|
16620
16650
|
assa_abloy_vostio_metadata?: {
|
|
16621
16651
|
encoder_name: string;
|
|
16622
16652
|
} | undefined;
|
|
16653
|
+
tado_metadata?: {
|
|
16654
|
+
serial_number: string;
|
|
16655
|
+
device_name: string;
|
|
16656
|
+
device_type: string;
|
|
16657
|
+
} | undefined;
|
|
16623
16658
|
}) & ({
|
|
16624
16659
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
16625
16660
|
code_constraints?: (Array<{
|
|
@@ -16822,7 +16857,7 @@ export interface Routes {
|
|
|
16822
16857
|
/** Unique identifier for the device. */
|
|
16823
16858
|
device_id: string;
|
|
16824
16859
|
/** Type of the device. */
|
|
16825
|
-
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');
|
|
16860
|
+
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');
|
|
16826
16861
|
/** Optional nickname to describe the device, settable through Seam */
|
|
16827
16862
|
nickname?: string | undefined;
|
|
16828
16863
|
/** 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. */
|
|
@@ -17133,6 +17168,11 @@ export interface Routes {
|
|
|
17133
17168
|
assa_abloy_vostio_metadata?: {
|
|
17134
17169
|
encoder_name: string;
|
|
17135
17170
|
} | undefined;
|
|
17171
|
+
tado_metadata?: {
|
|
17172
|
+
serial_number: string;
|
|
17173
|
+
device_name: string;
|
|
17174
|
+
device_type: string;
|
|
17175
|
+
} | undefined;
|
|
17136
17176
|
}) & ({
|
|
17137
17177
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
17138
17178
|
code_constraints?: (Array<{
|
|
@@ -17437,7 +17477,7 @@ export interface Routes {
|
|
|
17437
17477
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
17438
17478
|
common_acs_entrance_ids?: string[] | undefined;
|
|
17439
17479
|
} | undefined;
|
|
17440
|
-
};
|
|
17480
|
+
} | null;
|
|
17441
17481
|
/** Matching acs_credential currently encoded on this card. */
|
|
17442
17482
|
acs_credential_on_seam: ({
|
|
17443
17483
|
/** ID of the credential. */
|
|
@@ -17613,7 +17653,7 @@ export interface Routes {
|
|
|
17613
17653
|
is_managed: false;
|
|
17614
17654
|
}) | null;
|
|
17615
17655
|
warnings: Array<{
|
|
17616
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
17656
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
17617
17657
|
warning_message: string;
|
|
17618
17658
|
}>;
|
|
17619
17659
|
};
|
|
@@ -18320,7 +18360,7 @@ export interface Routes {
|
|
|
18320
18360
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
18321
18361
|
common_acs_entrance_ids?: string[] | undefined;
|
|
18322
18362
|
} | undefined;
|
|
18323
|
-
};
|
|
18363
|
+
} | null;
|
|
18324
18364
|
/** Matching acs_credential currently encoded on this card. */
|
|
18325
18365
|
acs_credential_on_seam: ({
|
|
18326
18366
|
/** ID of the credential. */
|
|
@@ -18496,7 +18536,7 @@ export interface Routes {
|
|
|
18496
18536
|
is_managed: false;
|
|
18497
18537
|
}) | null;
|
|
18498
18538
|
warnings: Array<{
|
|
18499
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
18539
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
18500
18540
|
warning_message: string;
|
|
18501
18541
|
}>;
|
|
18502
18542
|
};
|
|
@@ -19242,7 +19282,7 @@ export interface Routes {
|
|
|
19242
19282
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
19243
19283
|
common_acs_entrance_ids?: string[] | undefined;
|
|
19244
19284
|
} | undefined;
|
|
19245
|
-
};
|
|
19285
|
+
} | null;
|
|
19246
19286
|
/** Matching acs_credential currently encoded on this card. */
|
|
19247
19287
|
acs_credential_on_seam: ({
|
|
19248
19288
|
/** ID of the credential. */
|
|
@@ -19418,7 +19458,7 @@ export interface Routes {
|
|
|
19418
19458
|
is_managed: false;
|
|
19419
19459
|
}) | null;
|
|
19420
19460
|
warnings: Array<{
|
|
19421
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
19461
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
19422
19462
|
warning_message: string;
|
|
19423
19463
|
}>;
|
|
19424
19464
|
};
|
|
@@ -20299,7 +20339,7 @@ export interface Routes {
|
|
|
20299
20339
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
20300
20340
|
common_acs_entrance_ids?: string[] | undefined;
|
|
20301
20341
|
} | undefined;
|
|
20302
|
-
};
|
|
20342
|
+
} | null;
|
|
20303
20343
|
/** Matching acs_credential currently encoded on this card. */
|
|
20304
20344
|
acs_credential_on_seam: ({
|
|
20305
20345
|
/** ID of the credential. */
|
|
@@ -20475,7 +20515,7 @@ export interface Routes {
|
|
|
20475
20515
|
is_managed: false;
|
|
20476
20516
|
}) | null;
|
|
20477
20517
|
warnings: Array<{
|
|
20478
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
20518
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
20479
20519
|
warning_message: string;
|
|
20480
20520
|
}>;
|
|
20481
20521
|
};
|
|
@@ -21178,7 +21218,7 @@ export interface Routes {
|
|
|
21178
21218
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
21179
21219
|
common_acs_entrance_ids?: string[] | undefined;
|
|
21180
21220
|
} | undefined;
|
|
21181
|
-
};
|
|
21221
|
+
} | null;
|
|
21182
21222
|
/** Matching acs_credential currently encoded on this card. */
|
|
21183
21223
|
acs_credential_on_seam: ({
|
|
21184
21224
|
/** ID of the credential. */
|
|
@@ -21354,7 +21394,7 @@ export interface Routes {
|
|
|
21354
21394
|
is_managed: false;
|
|
21355
21395
|
}) | null;
|
|
21356
21396
|
warnings: Array<{
|
|
21357
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
21397
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
21358
21398
|
warning_message: string;
|
|
21359
21399
|
}>;
|
|
21360
21400
|
};
|
|
@@ -22012,7 +22052,7 @@ export interface Routes {
|
|
|
22012
22052
|
/** Unique identifier for the device. */
|
|
22013
22053
|
device_id: string;
|
|
22014
22054
|
/** Type of the device. */
|
|
22015
|
-
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');
|
|
22055
|
+
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');
|
|
22016
22056
|
/** Optional nickname to describe the device, settable through Seam */
|
|
22017
22057
|
nickname?: string | undefined;
|
|
22018
22058
|
/** 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. */
|
|
@@ -22323,6 +22363,11 @@ export interface Routes {
|
|
|
22323
22363
|
assa_abloy_vostio_metadata?: {
|
|
22324
22364
|
encoder_name: string;
|
|
22325
22365
|
} | undefined;
|
|
22366
|
+
tado_metadata?: {
|
|
22367
|
+
serial_number: string;
|
|
22368
|
+
device_name: string;
|
|
22369
|
+
device_type: string;
|
|
22370
|
+
} | undefined;
|
|
22326
22371
|
}) & ({
|
|
22327
22372
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
22328
22373
|
code_constraints?: (Array<{
|
|
@@ -22628,7 +22673,7 @@ export interface Routes {
|
|
|
22628
22673
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
22629
22674
|
common_acs_entrance_ids?: string[] | undefined;
|
|
22630
22675
|
} | undefined;
|
|
22631
|
-
};
|
|
22676
|
+
} | null;
|
|
22632
22677
|
/** Matching acs_credential currently encoded on this card. */
|
|
22633
22678
|
acs_credential_on_seam: ({
|
|
22634
22679
|
/** ID of the credential. */
|
|
@@ -22804,7 +22849,7 @@ export interface Routes {
|
|
|
22804
22849
|
is_managed: false;
|
|
22805
22850
|
}) | null;
|
|
22806
22851
|
warnings: Array<{
|
|
22807
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
22852
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
22808
22853
|
warning_message: string;
|
|
22809
22854
|
}>;
|
|
22810
22855
|
};
|
|
@@ -23511,7 +23556,7 @@ export interface Routes {
|
|
|
23511
23556
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
23512
23557
|
common_acs_entrance_ids?: string[] | undefined;
|
|
23513
23558
|
} | undefined;
|
|
23514
|
-
};
|
|
23559
|
+
} | null;
|
|
23515
23560
|
/** Matching acs_credential currently encoded on this card. */
|
|
23516
23561
|
acs_credential_on_seam: ({
|
|
23517
23562
|
/** ID of the credential. */
|
|
@@ -23687,7 +23732,7 @@ export interface Routes {
|
|
|
23687
23732
|
is_managed: false;
|
|
23688
23733
|
}) | null;
|
|
23689
23734
|
warnings: Array<{
|
|
23690
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
23735
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
23691
23736
|
warning_message: string;
|
|
23692
23737
|
}>;
|
|
23693
23738
|
};
|
|
@@ -24298,11 +24343,11 @@ export interface Routes {
|
|
|
24298
24343
|
/** ID of the Connect Webview by which to filter devices. */
|
|
24299
24344
|
connect_webview_id?: string | undefined;
|
|
24300
24345
|
/** Device type by which to filter devices. */
|
|
24301
|
-
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;
|
|
24346
|
+
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;
|
|
24302
24347
|
/** Array of device types by which to filter devices. */
|
|
24303
|
-
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;
|
|
24348
|
+
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;
|
|
24304
24349
|
/** Manufacturer by which to filter devices. */
|
|
24305
|
-
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;
|
|
24350
|
+
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;
|
|
24306
24351
|
/** Array of device IDs by which to filter devices. */
|
|
24307
24352
|
device_ids?: string[] | undefined;
|
|
24308
24353
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -24324,7 +24369,7 @@ export interface Routes {
|
|
|
24324
24369
|
/** Unique identifier for the device. */
|
|
24325
24370
|
device_id: string;
|
|
24326
24371
|
/** Type of the device. */
|
|
24327
|
-
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');
|
|
24372
|
+
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');
|
|
24328
24373
|
/** Optional nickname to describe the device, settable through Seam */
|
|
24329
24374
|
nickname?: string | undefined;
|
|
24330
24375
|
/** 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. */
|
|
@@ -24635,6 +24680,11 @@ export interface Routes {
|
|
|
24635
24680
|
assa_abloy_vostio_metadata?: {
|
|
24636
24681
|
encoder_name: string;
|
|
24637
24682
|
} | undefined;
|
|
24683
|
+
tado_metadata?: {
|
|
24684
|
+
serial_number: string;
|
|
24685
|
+
device_name: string;
|
|
24686
|
+
device_type: string;
|
|
24687
|
+
} | undefined;
|
|
24638
24688
|
}) & ({
|
|
24639
24689
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
24640
24690
|
code_constraints?: (Array<{
|
|
@@ -24837,7 +24887,7 @@ export interface Routes {
|
|
|
24837
24887
|
/** Unique identifier for the device. */
|
|
24838
24888
|
device_id: string;
|
|
24839
24889
|
/** Type of the device. */
|
|
24840
|
-
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');
|
|
24890
|
+
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');
|
|
24841
24891
|
/** Optional nickname to describe the device, settable through Seam */
|
|
24842
24892
|
nickname?: string | undefined;
|
|
24843
24893
|
/** 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. */
|
|
@@ -25148,6 +25198,11 @@ export interface Routes {
|
|
|
25148
25198
|
assa_abloy_vostio_metadata?: {
|
|
25149
25199
|
encoder_name: string;
|
|
25150
25200
|
} | undefined;
|
|
25201
|
+
tado_metadata?: {
|
|
25202
|
+
serial_number: string;
|
|
25203
|
+
device_name: string;
|
|
25204
|
+
device_type: string;
|
|
25205
|
+
} | undefined;
|
|
25151
25206
|
}) & ({
|
|
25152
25207
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
25153
25208
|
code_constraints?: (Array<{
|
|
@@ -25449,7 +25504,7 @@ export interface Routes {
|
|
|
25449
25504
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
25450
25505
|
common_acs_entrance_ids?: string[] | undefined;
|
|
25451
25506
|
} | undefined;
|
|
25452
|
-
};
|
|
25507
|
+
} | null;
|
|
25453
25508
|
/** Matching acs_credential currently encoded on this card. */
|
|
25454
25509
|
acs_credential_on_seam: ({
|
|
25455
25510
|
/** ID of the credential. */
|
|
@@ -25625,7 +25680,7 @@ export interface Routes {
|
|
|
25625
25680
|
is_managed: false;
|
|
25626
25681
|
}) | null;
|
|
25627
25682
|
warnings: Array<{
|
|
25628
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
25683
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
25629
25684
|
warning_message: string;
|
|
25630
25685
|
}>;
|
|
25631
25686
|
};
|
|
@@ -26497,7 +26552,7 @@ export interface Routes {
|
|
|
26497
26552
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
26498
26553
|
common_acs_entrance_ids?: string[] | undefined;
|
|
26499
26554
|
} | undefined;
|
|
26500
|
-
};
|
|
26555
|
+
} | null;
|
|
26501
26556
|
/** Matching acs_credential currently encoded on this card. */
|
|
26502
26557
|
acs_credential_on_seam: ({
|
|
26503
26558
|
/** ID of the credential. */
|
|
@@ -26673,7 +26728,7 @@ export interface Routes {
|
|
|
26673
26728
|
is_managed: false;
|
|
26674
26729
|
}) | null;
|
|
26675
26730
|
warnings: Array<{
|
|
26676
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
26731
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
26677
26732
|
warning_message: string;
|
|
26678
26733
|
}>;
|
|
26679
26734
|
};
|
|
@@ -27399,7 +27454,7 @@ export interface Routes {
|
|
|
27399
27454
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
27400
27455
|
common_acs_entrance_ids?: string[] | undefined;
|
|
27401
27456
|
} | undefined;
|
|
27402
|
-
};
|
|
27457
|
+
} | null;
|
|
27403
27458
|
/** Matching acs_credential currently encoded on this card. */
|
|
27404
27459
|
acs_credential_on_seam: ({
|
|
27405
27460
|
/** ID of the credential. */
|
|
@@ -27575,7 +27630,7 @@ export interface Routes {
|
|
|
27575
27630
|
is_managed: false;
|
|
27576
27631
|
}) | null;
|
|
27577
27632
|
warnings: Array<{
|
|
27578
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
27633
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
27579
27634
|
warning_message: string;
|
|
27580
27635
|
}>;
|
|
27581
27636
|
};
|
|
@@ -28467,7 +28522,7 @@ export interface Routes {
|
|
|
28467
28522
|
/** Unique identifier for the device. */
|
|
28468
28523
|
device_id: string;
|
|
28469
28524
|
/** Type of the device. */
|
|
28470
|
-
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');
|
|
28525
|
+
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');
|
|
28471
28526
|
/** Optional nickname to describe the device, settable through Seam */
|
|
28472
28527
|
nickname?: string | undefined;
|
|
28473
28528
|
/** 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. */
|
|
@@ -28778,6 +28833,11 @@ export interface Routes {
|
|
|
28778
28833
|
assa_abloy_vostio_metadata?: {
|
|
28779
28834
|
encoder_name: string;
|
|
28780
28835
|
} | undefined;
|
|
28836
|
+
tado_metadata?: {
|
|
28837
|
+
serial_number: string;
|
|
28838
|
+
device_name: string;
|
|
28839
|
+
device_type: string;
|
|
28840
|
+
} | undefined;
|
|
28781
28841
|
}) & ({
|
|
28782
28842
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
28783
28843
|
code_constraints?: (Array<{
|
|
@@ -28982,7 +29042,7 @@ export interface Routes {
|
|
|
28982
29042
|
/** Unique identifier for the device. */
|
|
28983
29043
|
device_id: string;
|
|
28984
29044
|
/** Type of the device. */
|
|
28985
|
-
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');
|
|
29045
|
+
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');
|
|
28986
29046
|
/** Optional nickname to describe the device, settable through Seam */
|
|
28987
29047
|
nickname?: string | undefined;
|
|
28988
29048
|
/** 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. */
|
|
@@ -29293,6 +29353,11 @@ export interface Routes {
|
|
|
29293
29353
|
assa_abloy_vostio_metadata?: {
|
|
29294
29354
|
encoder_name: string;
|
|
29295
29355
|
} | undefined;
|
|
29356
|
+
tado_metadata?: {
|
|
29357
|
+
serial_number: string;
|
|
29358
|
+
device_name: string;
|
|
29359
|
+
device_type: string;
|
|
29360
|
+
} | undefined;
|
|
29296
29361
|
}) & ({
|
|
29297
29362
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
29298
29363
|
code_constraints?: (Array<{
|
|
@@ -29998,7 +30063,7 @@ export interface Routes {
|
|
|
29998
30063
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
29999
30064
|
common_acs_entrance_ids?: string[] | undefined;
|
|
30000
30065
|
} | undefined;
|
|
30001
|
-
};
|
|
30066
|
+
} | null;
|
|
30002
30067
|
/** Matching acs_credential currently encoded on this card. */
|
|
30003
30068
|
acs_credential_on_seam: ({
|
|
30004
30069
|
/** ID of the credential. */
|
|
@@ -30174,7 +30239,7 @@ export interface Routes {
|
|
|
30174
30239
|
is_managed: false;
|
|
30175
30240
|
}) | null;
|
|
30176
30241
|
warnings: Array<{
|
|
30177
|
-
warning_code: 'acs_credential_on_encoder_out_of_sync';
|
|
30242
|
+
warning_code: 'acs_credential_on_encoder_out_of_sync' | 'acs_credential_on_seam_not_found';
|
|
30178
30243
|
warning_message: string;
|
|
30179
30244
|
}>;
|
|
30180
30245
|
};
|