@seamapi/types 1.130.0 → 1.132.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 +21 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +77 -34
- package/lib/seam/connect/openapi.d.ts +19 -5
- package/lib/seam/connect/openapi.js +21 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +58 -29
- package/lib/seam/connect/unstable/models/acs/acs_system_capability_flags.d.ts +8 -0
- package/lib/seam/connect/unstable/models/acs/acs_system_capability_flags.js +5 -0
- package/lib/seam/connect/unstable/models/acs/acs_system_capability_flags.js.map +1 -0
- package/lib/seam/connect/unstable/models/acs/index.d.ts +1 -0
- package/lib/seam/connect/unstable/models/acs/index.js +1 -0
- package/lib/seam/connect/unstable/models/acs/index.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/system.d.ts +6 -3
- package/lib/seam/connect/unstable/models/acs/system.js +5 -2
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +6 -10
- package/lib/seam/connect/unstable/models/devices/managed-device.js +8 -5
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/phone.d.ts +6 -0
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +0 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +25 -7
- package/src/lib/seam/connect/route-types.ts +58 -29
- package/src/lib/seam/connect/unstable/models/acs/acs_system_capability_flags.ts +5 -0
- package/src/lib/seam/connect/unstable/models/acs/index.ts +1 -0
- package/src/lib/seam/connect/unstable/models/acs/system.ts +21 -17
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +12 -7
package/dist/connect.d.cts
CHANGED
|
@@ -227,6 +227,9 @@ declare const _default: {
|
|
|
227
227
|
format: string;
|
|
228
228
|
type: string;
|
|
229
229
|
};
|
|
230
|
+
can_automate_enrollment: {
|
|
231
|
+
type: string;
|
|
232
|
+
};
|
|
230
233
|
connected_account_ids: {
|
|
231
234
|
items: {
|
|
232
235
|
type: string;
|
|
@@ -786,6 +789,10 @@ declare const _default: {
|
|
|
786
789
|
type: string;
|
|
787
790
|
}[];
|
|
788
791
|
};
|
|
792
|
+
display_name: {
|
|
793
|
+
description: string;
|
|
794
|
+
type: string;
|
|
795
|
+
};
|
|
789
796
|
errors: {
|
|
790
797
|
description: string;
|
|
791
798
|
items: {
|
|
@@ -822,6 +829,10 @@ declare const _default: {
|
|
|
822
829
|
};
|
|
823
830
|
type: string;
|
|
824
831
|
};
|
|
832
|
+
nickname: {
|
|
833
|
+
description: string;
|
|
834
|
+
type: string;
|
|
835
|
+
};
|
|
825
836
|
properties: {
|
|
826
837
|
allOf: ({
|
|
827
838
|
allOf: ({
|
|
@@ -906,10 +917,6 @@ declare const _default: {
|
|
|
906
917
|
description: string;
|
|
907
918
|
type: string;
|
|
908
919
|
};
|
|
909
|
-
nickname: {
|
|
910
|
-
description: string;
|
|
911
|
-
type: string;
|
|
912
|
-
};
|
|
913
920
|
offline_access_codes_enabled: {
|
|
914
921
|
description: string;
|
|
915
922
|
type: string;
|
|
@@ -973,7 +980,6 @@ declare const _default: {
|
|
|
973
980
|
manufacturer?: never;
|
|
974
981
|
model?: never;
|
|
975
982
|
name?: never;
|
|
976
|
-
nickname?: never;
|
|
977
983
|
offline_access_codes_enabled?: never;
|
|
978
984
|
online?: never;
|
|
979
985
|
online_access_codes_enabled?: never;
|
|
@@ -2400,6 +2406,10 @@ declare const _default: {
|
|
|
2400
2406
|
enum: string[];
|
|
2401
2407
|
type: string;
|
|
2402
2408
|
};
|
|
2409
|
+
display_name: {
|
|
2410
|
+
description: string;
|
|
2411
|
+
type: string;
|
|
2412
|
+
};
|
|
2403
2413
|
errors: {
|
|
2404
2414
|
description: string;
|
|
2405
2415
|
items: {
|
|
@@ -2436,6 +2446,10 @@ declare const _default: {
|
|
|
2436
2446
|
};
|
|
2437
2447
|
type: string;
|
|
2438
2448
|
};
|
|
2449
|
+
nickname: {
|
|
2450
|
+
description: string;
|
|
2451
|
+
type: string;
|
|
2452
|
+
};
|
|
2439
2453
|
properties: {
|
|
2440
2454
|
properties: {
|
|
2441
2455
|
assa_abloy_credential_service_metadata: {
|
|
@@ -18151,6 +18165,7 @@ interface Routes {
|
|
|
18151
18165
|
connected_account_ids: string[];
|
|
18152
18166
|
image_url: string;
|
|
18153
18167
|
image_alt_text: string;
|
|
18168
|
+
can_automate_enrollment?: boolean | undefined;
|
|
18154
18169
|
};
|
|
18155
18170
|
};
|
|
18156
18171
|
};
|
|
@@ -18178,6 +18193,7 @@ interface Routes {
|
|
|
18178
18193
|
connected_account_ids: string[];
|
|
18179
18194
|
image_url: string;
|
|
18180
18195
|
image_alt_text: string;
|
|
18196
|
+
can_automate_enrollment?: boolean | undefined;
|
|
18181
18197
|
}>;
|
|
18182
18198
|
};
|
|
18183
18199
|
};
|
|
@@ -18890,16 +18906,18 @@ interface Routes {
|
|
|
18890
18906
|
device_id: string;
|
|
18891
18907
|
/** Type of the device. */
|
|
18892
18908
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
18909
|
+
/** Optional nickname to describe the device, settable through Seam */
|
|
18910
|
+
nickname?: string | undefined;
|
|
18911
|
+
/** 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. */
|
|
18912
|
+
display_name: string;
|
|
18893
18913
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
18894
18914
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
18895
18915
|
/** Properties of the device. */
|
|
18896
18916
|
properties: (({
|
|
18897
18917
|
/** Indicates whether the device is online. */
|
|
18898
18918
|
online: boolean;
|
|
18899
|
-
/** Name of the device.
|
|
18919
|
+
/** Name of the device. Deprecated - use device.display_name instead */
|
|
18900
18920
|
name: string;
|
|
18901
|
-
/** Optional nickname to describe the device, settable through Seam. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
18902
|
-
nickname?: string | undefined;
|
|
18903
18921
|
appearance: {
|
|
18904
18922
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
18905
18923
|
name: string;
|
|
@@ -19386,16 +19404,18 @@ interface Routes {
|
|
|
19386
19404
|
device_id: string;
|
|
19387
19405
|
/** Type of the device. */
|
|
19388
19406
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
19407
|
+
/** Optional nickname to describe the device, settable through Seam */
|
|
19408
|
+
nickname?: string | undefined;
|
|
19409
|
+
/** 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. */
|
|
19410
|
+
display_name: string;
|
|
19389
19411
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
19390
19412
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
19391
19413
|
/** Properties of the device. */
|
|
19392
19414
|
properties: (({
|
|
19393
19415
|
/** Indicates whether the device is online. */
|
|
19394
19416
|
online: boolean;
|
|
19395
|
-
/** Name of the device.
|
|
19417
|
+
/** Name of the device. Deprecated - use device.display_name instead */
|
|
19396
19418
|
name: string;
|
|
19397
|
-
/** Optional nickname to describe the device, settable through Seam. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
19398
|
-
nickname?: string | undefined;
|
|
19399
19419
|
appearance: {
|
|
19400
19420
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
19401
19421
|
name: string;
|
|
@@ -19910,7 +19930,7 @@ interface Routes {
|
|
|
19910
19930
|
created_at: string;
|
|
19911
19931
|
is_managed: false;
|
|
19912
19932
|
properties: {
|
|
19913
|
-
/** Name of the device.
|
|
19933
|
+
/** Name of the device. Deprecated - use device.display_name instead */
|
|
19914
19934
|
name: string;
|
|
19915
19935
|
/** Indicates whether the device is online. */
|
|
19916
19936
|
online: boolean;
|
|
@@ -19995,7 +20015,7 @@ interface Routes {
|
|
|
19995
20015
|
created_at: string;
|
|
19996
20016
|
is_managed: false;
|
|
19997
20017
|
properties: {
|
|
19998
|
-
/** Name of the device.
|
|
20018
|
+
/** Name of the device. Deprecated - use device.display_name instead */
|
|
19999
20019
|
name: string;
|
|
20000
20020
|
/** Indicates whether the device is online. */
|
|
20001
20021
|
online: boolean;
|
|
@@ -20205,16 +20225,18 @@ interface Routes {
|
|
|
20205
20225
|
device_id: string;
|
|
20206
20226
|
/** Type of the device. */
|
|
20207
20227
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
20228
|
+
/** Optional nickname to describe the device, settable through Seam */
|
|
20229
|
+
nickname?: string | undefined;
|
|
20230
|
+
/** 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. */
|
|
20231
|
+
display_name: string;
|
|
20208
20232
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
20209
20233
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
20210
20234
|
/** Properties of the device. */
|
|
20211
20235
|
properties: (({
|
|
20212
20236
|
/** Indicates whether the device is online. */
|
|
20213
20237
|
online: boolean;
|
|
20214
|
-
/** Name of the device.
|
|
20238
|
+
/** Name of the device. Deprecated - use device.display_name instead */
|
|
20215
20239
|
name: string;
|
|
20216
|
-
/** Optional nickname to describe the device, settable through Seam. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
20217
|
-
nickname?: string | undefined;
|
|
20218
20240
|
appearance: {
|
|
20219
20241
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
20220
20242
|
name: string;
|
|
@@ -20678,16 +20700,18 @@ interface Routes {
|
|
|
20678
20700
|
device_id: string;
|
|
20679
20701
|
/** Type of the device. */
|
|
20680
20702
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
20703
|
+
/** Optional nickname to describe the device, settable through Seam */
|
|
20704
|
+
nickname?: string | undefined;
|
|
20705
|
+
/** 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. */
|
|
20706
|
+
display_name: string;
|
|
20681
20707
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
20682
20708
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
20683
20709
|
/** Properties of the device. */
|
|
20684
20710
|
properties: (({
|
|
20685
20711
|
/** Indicates whether the device is online. */
|
|
20686
20712
|
online: boolean;
|
|
20687
|
-
/** Name of the device.
|
|
20713
|
+
/** Name of the device. Deprecated - use device.display_name instead */
|
|
20688
20714
|
name: string;
|
|
20689
|
-
/** Optional nickname to describe the device, settable through Seam. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
20690
|
-
nickname?: string | undefined;
|
|
20691
20715
|
appearance: {
|
|
20692
20716
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
20693
20717
|
name: string;
|
|
@@ -21174,16 +21198,18 @@ interface Routes {
|
|
|
21174
21198
|
device_id: string;
|
|
21175
21199
|
/** Type of the device. */
|
|
21176
21200
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
21201
|
+
/** Optional nickname to describe the device, settable through Seam */
|
|
21202
|
+
nickname?: string | undefined;
|
|
21203
|
+
/** 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. */
|
|
21204
|
+
display_name: string;
|
|
21177
21205
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
21178
21206
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
21179
21207
|
/** Properties of the device. */
|
|
21180
21208
|
properties: (({
|
|
21181
21209
|
/** Indicates whether the device is online. */
|
|
21182
21210
|
online: boolean;
|
|
21183
|
-
/** Name of the device.
|
|
21211
|
+
/** Name of the device. Deprecated - use device.display_name instead */
|
|
21184
21212
|
name: string;
|
|
21185
|
-
/** Optional nickname to describe the device, settable through Seam. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
21186
|
-
nickname?: string | undefined;
|
|
21187
21213
|
appearance: {
|
|
21188
21214
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
21189
21215
|
name: string;
|
|
@@ -21647,16 +21673,18 @@ interface Routes {
|
|
|
21647
21673
|
device_id: string;
|
|
21648
21674
|
/** Type of the device. */
|
|
21649
21675
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
21676
|
+
/** Optional nickname to describe the device, settable through Seam */
|
|
21677
|
+
nickname?: string | undefined;
|
|
21678
|
+
/** 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. */
|
|
21679
|
+
display_name: string;
|
|
21650
21680
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
21651
21681
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
21652
21682
|
/** Properties of the device. */
|
|
21653
21683
|
properties: (({
|
|
21654
21684
|
/** Indicates whether the device is online. */
|
|
21655
21685
|
online: boolean;
|
|
21656
|
-
/** Name of the device.
|
|
21686
|
+
/** Name of the device. Deprecated - use device.display_name instead */
|
|
21657
21687
|
name: string;
|
|
21658
|
-
/** Optional nickname to describe the device, settable through Seam. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
21659
|
-
nickname?: string | undefined;
|
|
21660
21688
|
appearance: {
|
|
21661
21689
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
21662
21690
|
name: string;
|
|
@@ -22426,6 +22454,10 @@ interface Routes {
|
|
|
22426
22454
|
/** Unique identifier for the device. */
|
|
22427
22455
|
device_id: string;
|
|
22428
22456
|
device_type: 'android_phone' | 'ios_phone';
|
|
22457
|
+
/** Optional nickname to describe the device, settable through Seam */
|
|
22458
|
+
nickname?: string | undefined;
|
|
22459
|
+
/** 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. */
|
|
22460
|
+
display_name: string;
|
|
22429
22461
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
22430
22462
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
22431
22463
|
properties: {
|
|
@@ -22495,6 +22527,10 @@ interface Routes {
|
|
|
22495
22527
|
/** Unique identifier for the device. */
|
|
22496
22528
|
device_id: string;
|
|
22497
22529
|
device_type: 'android_phone' | 'ios_phone';
|
|
22530
|
+
/** Optional nickname to describe the device, settable through Seam */
|
|
22531
|
+
nickname?: string | undefined;
|
|
22532
|
+
/** 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. */
|
|
22533
|
+
display_name: string;
|
|
22498
22534
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
22499
22535
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
22500
22536
|
properties: {
|
|
@@ -22749,16 +22785,18 @@ interface Routes {
|
|
|
22749
22785
|
device_id: string;
|
|
22750
22786
|
/** Type of the device. */
|
|
22751
22787
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
22788
|
+
/** Optional nickname to describe the device, settable through Seam */
|
|
22789
|
+
nickname?: string | undefined;
|
|
22790
|
+
/** 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. */
|
|
22791
|
+
display_name: string;
|
|
22752
22792
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
22753
22793
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
22754
22794
|
/** Properties of the device. */
|
|
22755
22795
|
properties: (({
|
|
22756
22796
|
/** Indicates whether the device is online. */
|
|
22757
22797
|
online: boolean;
|
|
22758
|
-
/** Name of the device.
|
|
22798
|
+
/** Name of the device. Deprecated - use device.display_name instead */
|
|
22759
22799
|
name: string;
|
|
22760
|
-
/** Optional nickname to describe the device, settable through Seam. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
22761
|
-
nickname?: string | undefined;
|
|
22762
22800
|
appearance: {
|
|
22763
22801
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
22764
22802
|
name: string;
|
|
@@ -23321,16 +23359,18 @@ interface Routes {
|
|
|
23321
23359
|
device_id: string;
|
|
23322
23360
|
/** Type of the device. */
|
|
23323
23361
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
23362
|
+
/** Optional nickname to describe the device, settable through Seam */
|
|
23363
|
+
nickname?: string | undefined;
|
|
23364
|
+
/** 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. */
|
|
23365
|
+
display_name: string;
|
|
23324
23366
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
23325
23367
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
23326
23368
|
/** Properties of the device. */
|
|
23327
23369
|
properties: (({
|
|
23328
23370
|
/** Indicates whether the device is online. */
|
|
23329
23371
|
online: boolean;
|
|
23330
|
-
/** Name of the device.
|
|
23372
|
+
/** Name of the device. Deprecated - use device.display_name instead */
|
|
23331
23373
|
name: string;
|
|
23332
|
-
/** Optional nickname to describe the device, settable through Seam. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
23333
|
-
nickname?: string | undefined;
|
|
23334
23374
|
appearance: {
|
|
23335
23375
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
23336
23376
|
name: string;
|
|
@@ -24078,16 +24118,18 @@ interface Routes {
|
|
|
24078
24118
|
device_id: string;
|
|
24079
24119
|
/** Type of the device. */
|
|
24080
24120
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
24121
|
+
/** Optional nickname to describe the device, settable through Seam */
|
|
24122
|
+
nickname?: string | undefined;
|
|
24123
|
+
/** 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. */
|
|
24124
|
+
display_name: string;
|
|
24081
24125
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
24082
24126
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
24083
24127
|
/** Properties of the device. */
|
|
24084
24128
|
properties: (({
|
|
24085
24129
|
/** Indicates whether the device is online. */
|
|
24086
24130
|
online: boolean;
|
|
24087
|
-
/** Name of the device.
|
|
24131
|
+
/** Name of the device. Deprecated - use device.display_name instead */
|
|
24088
24132
|
name: string;
|
|
24089
|
-
/** Optional nickname to describe the device, settable through Seam. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
24090
|
-
nickname?: string | undefined;
|
|
24091
24133
|
appearance: {
|
|
24092
24134
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
24093
24135
|
name: string;
|
|
@@ -24572,6 +24614,7 @@ interface Routes {
|
|
|
24572
24614
|
connected_account_ids: string[];
|
|
24573
24615
|
image_url: string;
|
|
24574
24616
|
image_alt_text: string;
|
|
24617
|
+
can_automate_enrollment?: boolean | undefined;
|
|
24575
24618
|
}>;
|
|
24576
24619
|
};
|
|
24577
24620
|
};
|
|
@@ -153,6 +153,9 @@ declare const _default: {
|
|
|
153
153
|
format: string;
|
|
154
154
|
type: string;
|
|
155
155
|
};
|
|
156
|
+
can_automate_enrollment: {
|
|
157
|
+
type: string;
|
|
158
|
+
};
|
|
156
159
|
connected_account_ids: {
|
|
157
160
|
items: {
|
|
158
161
|
type: string;
|
|
@@ -712,6 +715,10 @@ declare const _default: {
|
|
|
712
715
|
type: string;
|
|
713
716
|
}[];
|
|
714
717
|
};
|
|
718
|
+
display_name: {
|
|
719
|
+
description: string;
|
|
720
|
+
type: string;
|
|
721
|
+
};
|
|
715
722
|
errors: {
|
|
716
723
|
description: string;
|
|
717
724
|
items: {
|
|
@@ -748,6 +755,10 @@ declare const _default: {
|
|
|
748
755
|
};
|
|
749
756
|
type: string;
|
|
750
757
|
};
|
|
758
|
+
nickname: {
|
|
759
|
+
description: string;
|
|
760
|
+
type: string;
|
|
761
|
+
};
|
|
751
762
|
properties: {
|
|
752
763
|
allOf: ({
|
|
753
764
|
allOf: ({
|
|
@@ -832,10 +843,6 @@ declare const _default: {
|
|
|
832
843
|
description: string;
|
|
833
844
|
type: string;
|
|
834
845
|
};
|
|
835
|
-
nickname: {
|
|
836
|
-
description: string;
|
|
837
|
-
type: string;
|
|
838
|
-
};
|
|
839
846
|
offline_access_codes_enabled: {
|
|
840
847
|
description: string;
|
|
841
848
|
type: string;
|
|
@@ -899,7 +906,6 @@ declare const _default: {
|
|
|
899
906
|
manufacturer?: never;
|
|
900
907
|
model?: never;
|
|
901
908
|
name?: never;
|
|
902
|
-
nickname?: never;
|
|
903
909
|
offline_access_codes_enabled?: never;
|
|
904
910
|
online?: never;
|
|
905
911
|
online_access_codes_enabled?: never;
|
|
@@ -2326,6 +2332,10 @@ declare const _default: {
|
|
|
2326
2332
|
enum: string[];
|
|
2327
2333
|
type: string;
|
|
2328
2334
|
};
|
|
2335
|
+
display_name: {
|
|
2336
|
+
description: string;
|
|
2337
|
+
type: string;
|
|
2338
|
+
};
|
|
2329
2339
|
errors: {
|
|
2330
2340
|
description: string;
|
|
2331
2341
|
items: {
|
|
@@ -2362,6 +2372,10 @@ declare const _default: {
|
|
|
2362
2372
|
};
|
|
2363
2373
|
type: string;
|
|
2364
2374
|
};
|
|
2375
|
+
nickname: {
|
|
2376
|
+
description: string;
|
|
2377
|
+
type: string;
|
|
2378
|
+
};
|
|
2365
2379
|
properties: {
|
|
2366
2380
|
properties: {
|
|
2367
2381
|
assa_abloy_credential_service_metadata: {
|
|
@@ -168,6 +168,7 @@ export default {
|
|
|
168
168
|
acs_system: {
|
|
169
169
|
properties: {
|
|
170
170
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
171
|
+
can_automate_enrollment: { type: 'boolean' },
|
|
171
172
|
connected_account_ids: { items: { type: 'string' }, type: 'array' },
|
|
172
173
|
created_at: { format: 'date-time', type: 'string' },
|
|
173
174
|
external_type: {
|
|
@@ -595,6 +596,10 @@ export default {
|
|
|
595
596
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
596
597
|
],
|
|
597
598
|
},
|
|
599
|
+
display_name: {
|
|
600
|
+
description: '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.',
|
|
601
|
+
type: 'string',
|
|
602
|
+
},
|
|
598
603
|
errors: {
|
|
599
604
|
description: 'Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it.',
|
|
600
605
|
items: {
|
|
@@ -627,6 +632,10 @@ export default {
|
|
|
627
632
|
},
|
|
628
633
|
type: 'object',
|
|
629
634
|
},
|
|
635
|
+
nickname: {
|
|
636
|
+
description: 'Optional nickname to describe the device, settable through Seam',
|
|
637
|
+
type: 'string',
|
|
638
|
+
},
|
|
630
639
|
properties: {
|
|
631
640
|
allOf: [
|
|
632
641
|
{
|
|
@@ -710,11 +719,7 @@ export default {
|
|
|
710
719
|
type: 'object',
|
|
711
720
|
},
|
|
712
721
|
name: {
|
|
713
|
-
description: 'Name of the device.
|
|
714
|
-
type: 'string',
|
|
715
|
-
},
|
|
716
|
-
nickname: {
|
|
717
|
-
description: 'Optional nickname to describe the device, settable through Seam. Enables administrators and users to identify the device easily, especially when there are numerous devices.',
|
|
722
|
+
description: 'Name of the device. Deprecated - use device.display_name instead',
|
|
718
723
|
type: 'string',
|
|
719
724
|
},
|
|
720
725
|
offline_access_codes_enabled: {
|
|
@@ -1683,6 +1688,7 @@ export default {
|
|
|
1683
1688
|
required: [
|
|
1684
1689
|
'device_id',
|
|
1685
1690
|
'device_type',
|
|
1691
|
+
'display_name',
|
|
1686
1692
|
'capabilities_supported',
|
|
1687
1693
|
'properties',
|
|
1688
1694
|
'location',
|
|
@@ -1858,6 +1864,10 @@ export default {
|
|
|
1858
1864
|
type: 'string',
|
|
1859
1865
|
},
|
|
1860
1866
|
device_type: { enum: ['android_phone', 'ios_phone'], type: 'string' },
|
|
1867
|
+
display_name: {
|
|
1868
|
+
description: '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.',
|
|
1869
|
+
type: 'string',
|
|
1870
|
+
},
|
|
1861
1871
|
errors: {
|
|
1862
1872
|
description: 'Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it.',
|
|
1863
1873
|
items: {
|
|
@@ -1890,6 +1900,10 @@ export default {
|
|
|
1890
1900
|
},
|
|
1891
1901
|
type: 'object',
|
|
1892
1902
|
},
|
|
1903
|
+
nickname: {
|
|
1904
|
+
description: 'Optional nickname to describe the device, settable through Seam',
|
|
1905
|
+
type: 'string',
|
|
1906
|
+
},
|
|
1893
1907
|
properties: {
|
|
1894
1908
|
properties: {
|
|
1895
1909
|
assa_abloy_credential_service_metadata: {
|
|
@@ -1934,6 +1948,7 @@ export default {
|
|
|
1934
1948
|
required: [
|
|
1935
1949
|
'device_id',
|
|
1936
1950
|
'device_type',
|
|
1951
|
+
'display_name',
|
|
1937
1952
|
'capabilities_supported',
|
|
1938
1953
|
'properties',
|
|
1939
1954
|
'location',
|
|
@@ -2177,7 +2192,7 @@ export default {
|
|
|
2177
2192
|
type: 'object',
|
|
2178
2193
|
},
|
|
2179
2194
|
name: {
|
|
2180
|
-
description: 'Name of the device.
|
|
2195
|
+
description: 'Name of the device. Deprecated - use device.display_name instead',
|
|
2181
2196
|
type: 'string',
|
|
2182
2197
|
},
|
|
2183
2198
|
offline_access_codes_enabled: {
|