@seamapi/types 1.566.0 → 1.568.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 +140 -7752
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +293 -5777
- package/dist/index.cjs +140 -7752
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +587 -132
- package/lib/seam/connect/models/batch.js +6 -12
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.js +3 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +1 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +16 -0
- package/lib/seam/connect/openapi.d.ts +157 -5711
- package/lib/seam/connect/openapi.js +131 -7745
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +54 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +3 -0
- package/src/lib/seam/connect/models/batch.ts +6 -12
- package/src/lib/seam/connect/models/devices/device.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +134 -9095
- package/src/lib/seam/connect/route-types.ts +54 -2
|
@@ -10170,6 +10170,8 @@ export type Routes = {
|
|
|
10170
10170
|
device_id: string;
|
|
10171
10171
|
/** Type of the device. */
|
|
10172
10172
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
10173
|
+
/** IDs of the spaces the device is in. */
|
|
10174
|
+
space_ids: string[];
|
|
10173
10175
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
10174
10176
|
nickname?: string | undefined;
|
|
10175
10177
|
/** 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. */
|
|
@@ -11369,6 +11371,8 @@ export type Routes = {
|
|
|
11369
11371
|
acs_system_id: string;
|
|
11370
11372
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
11371
11373
|
acs_entrance_id: string;
|
|
11374
|
+
/** IDs of the spaces that the entrance is in. */
|
|
11375
|
+
space_ids: string[];
|
|
11372
11376
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
11373
11377
|
created_at: string;
|
|
11374
11378
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -13349,6 +13353,8 @@ export type Routes = {
|
|
|
13349
13353
|
device_id: string;
|
|
13350
13354
|
/** Type of the device. */
|
|
13351
13355
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
13356
|
+
/** IDs of the spaces the device is in. */
|
|
13357
|
+
space_ids: string[];
|
|
13352
13358
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
13353
13359
|
nickname?: string | undefined;
|
|
13354
13360
|
/** 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. */
|
|
@@ -14548,6 +14554,8 @@ export type Routes = {
|
|
|
14548
14554
|
acs_system_id: string;
|
|
14549
14555
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
14550
14556
|
acs_entrance_id: string;
|
|
14557
|
+
/** IDs of the spaces that the entrance is in. */
|
|
14558
|
+
space_ids: string[];
|
|
14551
14559
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
14552
14560
|
created_at: string;
|
|
14553
14561
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -20517,6 +20525,8 @@ export type Routes = {
|
|
|
20517
20525
|
acs_system_id: string;
|
|
20518
20526
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
20519
20527
|
acs_entrance_id: string;
|
|
20528
|
+
/** IDs of the spaces that the entrance is in. */
|
|
20529
|
+
space_ids: string[];
|
|
20520
20530
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
20521
20531
|
created_at: string;
|
|
20522
20532
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -21883,6 +21893,8 @@ export type Routes = {
|
|
|
21883
21893
|
acs_system_id: string;
|
|
21884
21894
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
21885
21895
|
acs_entrance_id: string;
|
|
21896
|
+
/** IDs of the spaces that the entrance is in. */
|
|
21897
|
+
space_ids: string[];
|
|
21886
21898
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
21887
21899
|
created_at: string;
|
|
21888
21900
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -25329,6 +25341,8 @@ export type Routes = {
|
|
|
25329
25341
|
acs_system_id: string;
|
|
25330
25342
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
25331
25343
|
acs_entrance_id: string;
|
|
25344
|
+
/** IDs of the spaces that the entrance is in. */
|
|
25345
|
+
space_ids: string[];
|
|
25332
25346
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
25333
25347
|
created_at: string;
|
|
25334
25348
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -25496,6 +25510,8 @@ export type Routes = {
|
|
|
25496
25510
|
acs_system_id: string;
|
|
25497
25511
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
25498
25512
|
acs_entrance_id: string;
|
|
25513
|
+
/** IDs of the spaces that the entrance is in. */
|
|
25514
|
+
space_ids: string[];
|
|
25499
25515
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
25500
25516
|
created_at: string;
|
|
25501
25517
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -26937,6 +26953,8 @@ export type Routes = {
|
|
|
26937
26953
|
acs_system_id: string;
|
|
26938
26954
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
26939
26955
|
acs_entrance_id: string;
|
|
26956
|
+
/** IDs of the spaces that the entrance is in. */
|
|
26957
|
+
space_ids: string[];
|
|
26940
26958
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
26941
26959
|
created_at: string;
|
|
26942
26960
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -31839,6 +31857,8 @@ export type Routes = {
|
|
|
31839
31857
|
device_id: string;
|
|
31840
31858
|
/** Type of the device. */
|
|
31841
31859
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
31860
|
+
/** IDs of the spaces the device is in. */
|
|
31861
|
+
space_ids: string[];
|
|
31842
31862
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
31843
31863
|
nickname?: string | undefined;
|
|
31844
31864
|
/** 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. */
|
|
@@ -33088,6 +33108,8 @@ export type Routes = {
|
|
|
33088
33108
|
device_id: string;
|
|
33089
33109
|
/** Type of the device. */
|
|
33090
33110
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
33111
|
+
/** IDs of the spaces the device is in. */
|
|
33112
|
+
space_ids: string[];
|
|
33091
33113
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
33092
33114
|
nickname?: string | undefined;
|
|
33093
33115
|
/** 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. */
|
|
@@ -39240,6 +39262,8 @@ export type Routes = {
|
|
|
39240
39262
|
device_id: string;
|
|
39241
39263
|
/** Type of the device. */
|
|
39242
39264
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
39265
|
+
/** IDs of the spaces the device is in. */
|
|
39266
|
+
space_ids: string[];
|
|
39243
39267
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
39244
39268
|
nickname?: string | undefined;
|
|
39245
39269
|
/** 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. */
|
|
@@ -40440,6 +40464,8 @@ export type Routes = {
|
|
|
40440
40464
|
device_id: string;
|
|
40441
40465
|
/** Type of the device. */
|
|
40442
40466
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
40467
|
+
/** IDs of the spaces the device is in. */
|
|
40468
|
+
space_ids: string[];
|
|
40443
40469
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
40444
40470
|
nickname?: string | undefined;
|
|
40445
40471
|
/** 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. */
|
|
@@ -41689,6 +41715,8 @@ export type Routes = {
|
|
|
41689
41715
|
device_id: string;
|
|
41690
41716
|
/** Type of the device. */
|
|
41691
41717
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
41718
|
+
/** IDs of the spaces the device is in. */
|
|
41719
|
+
space_ids: string[];
|
|
41692
41720
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
41693
41721
|
nickname?: string | undefined;
|
|
41694
41722
|
/** 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. */
|
|
@@ -42888,6 +42916,8 @@ export type Routes = {
|
|
|
42888
42916
|
device_id: string;
|
|
42889
42917
|
/** Type of the device. */
|
|
42890
42918
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
42919
|
+
/** IDs of the spaces the device is in. */
|
|
42920
|
+
space_ids: string[];
|
|
42891
42921
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
42892
42922
|
nickname?: string | undefined;
|
|
42893
42923
|
/** 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. */
|
|
@@ -49175,6 +49205,8 @@ export type Routes = {
|
|
|
49175
49205
|
device_id: string;
|
|
49176
49206
|
/** Type of the device. */
|
|
49177
49207
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
49208
|
+
/** IDs of the spaces the device is in. */
|
|
49209
|
+
space_ids: string[];
|
|
49178
49210
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
49179
49211
|
nickname?: string | undefined;
|
|
49180
49212
|
/** 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. */
|
|
@@ -50374,6 +50406,8 @@ export type Routes = {
|
|
|
50374
50406
|
device_id: string;
|
|
50375
50407
|
/** Type of the device. */
|
|
50376
50408
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
50409
|
+
/** IDs of the spaces the device is in. */
|
|
50410
|
+
space_ids: string[];
|
|
50377
50411
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
50378
50412
|
nickname?: string | undefined;
|
|
50379
50413
|
/** 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. */
|
|
@@ -58742,6 +58776,8 @@ export type Routes = {
|
|
|
58742
58776
|
acs_system_id: string;
|
|
58743
58777
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
58744
58778
|
acs_entrance_id: string;
|
|
58779
|
+
/** IDs of the spaces that the entrance is in. */
|
|
58780
|
+
space_ids: string[];
|
|
58745
58781
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
58746
58782
|
created_at: string;
|
|
58747
58783
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -59093,6 +59129,8 @@ export type Routes = {
|
|
|
59093
59129
|
device_id: string;
|
|
59094
59130
|
/** Type of the device. */
|
|
59095
59131
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
59132
|
+
/** IDs of the spaces the device is in. */
|
|
59133
|
+
space_ids: string[];
|
|
59096
59134
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
59097
59135
|
nickname?: string | undefined;
|
|
59098
59136
|
/** 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. */
|
|
@@ -60286,13 +60324,14 @@ export type Routes = {
|
|
|
60286
60324
|
can_simulate_hub_connection?: boolean | undefined;
|
|
60287
60325
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
60288
60326
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
60289
|
-
space_ids: string[];
|
|
60290
60327
|
}[] | undefined;
|
|
60291
60328
|
acs_entrances?: {
|
|
60292
60329
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
60293
60330
|
acs_system_id: string;
|
|
60294
60331
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
60295
60332
|
acs_entrance_id: string;
|
|
60333
|
+
/** IDs of the spaces that the entrance is in. */
|
|
60334
|
+
space_ids: string[];
|
|
60296
60335
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
60297
60336
|
created_at: string;
|
|
60298
60337
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -60406,7 +60445,6 @@ export type Routes = {
|
|
|
60406
60445
|
can_unlock_with_card?: boolean | undefined;
|
|
60407
60446
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
60408
60447
|
can_unlock_with_code?: boolean | undefined;
|
|
60409
|
-
space_ids: string[];
|
|
60410
60448
|
}[] | undefined;
|
|
60411
60449
|
connected_accounts?: {
|
|
60412
60450
|
/** ID of the connected account. */
|
|
@@ -64684,6 +64722,8 @@ export type Routes = {
|
|
|
64684
64722
|
device_id: string;
|
|
64685
64723
|
/** Type of the device. */
|
|
64686
64724
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
64725
|
+
/** IDs of the spaces the device is in. */
|
|
64726
|
+
space_ids: string[];
|
|
64687
64727
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
64688
64728
|
nickname?: string | undefined;
|
|
64689
64729
|
/** 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. */
|
|
@@ -68465,6 +68505,8 @@ export type Routes = {
|
|
|
68465
68505
|
device_id: string;
|
|
68466
68506
|
/** Type of the device. */
|
|
68467
68507
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
68508
|
+
/** IDs of the spaces the device is in. */
|
|
68509
|
+
space_ids: string[];
|
|
68468
68510
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
68469
68511
|
nickname?: string | undefined;
|
|
68470
68512
|
/** 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. */
|
|
@@ -69664,6 +69706,8 @@ export type Routes = {
|
|
|
69664
69706
|
device_id: string;
|
|
69665
69707
|
/** Type of the device. */
|
|
69666
69708
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
69709
|
+
/** IDs of the spaces the device is in. */
|
|
69710
|
+
space_ids: string[];
|
|
69667
69711
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
69668
69712
|
nickname?: string | undefined;
|
|
69669
69713
|
/** 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. */
|
|
@@ -76804,6 +76848,8 @@ export type Routes = {
|
|
|
76804
76848
|
device_id: string;
|
|
76805
76849
|
/** Type of the device. */
|
|
76806
76850
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
76851
|
+
/** IDs of the spaces the device is in. */
|
|
76852
|
+
space_ids: string[];
|
|
76807
76853
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
76808
76854
|
nickname?: string | undefined;
|
|
76809
76855
|
/** 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. */
|
|
@@ -78005,6 +78051,8 @@ export type Routes = {
|
|
|
78005
78051
|
device_id: string;
|
|
78006
78052
|
/** Type of the device. */
|
|
78007
78053
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
78054
|
+
/** IDs of the spaces the device is in. */
|
|
78055
|
+
space_ids: string[];
|
|
78008
78056
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
78009
78057
|
nickname?: string | undefined;
|
|
78010
78058
|
/** 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. */
|
|
@@ -79976,6 +80024,8 @@ export type Routes = {
|
|
|
79976
80024
|
device_id: string;
|
|
79977
80025
|
/** Type of the device. */
|
|
79978
80026
|
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
80027
|
+
/** IDs of the spaces the device is in. */
|
|
80028
|
+
space_ids: string[];
|
|
79979
80029
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
79980
80030
|
nickname?: string | undefined;
|
|
79981
80031
|
/** 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. */
|
|
@@ -81175,6 +81225,8 @@ export type Routes = {
|
|
|
81175
81225
|
acs_system_id: string;
|
|
81176
81226
|
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
81177
81227
|
acs_entrance_id: string;
|
|
81228
|
+
/** IDs of the spaces that the entrance is in. */
|
|
81229
|
+
space_ids: string[];
|
|
81178
81230
|
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
81179
81231
|
created_at: string;
|
|
81180
81232
|
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
package/package.json
CHANGED
|
@@ -46,6 +46,9 @@ export const acs_entrance = z
|
|
|
46
46
|
.describe(
|
|
47
47
|
'ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
48
48
|
),
|
|
49
|
+
space_ids: z
|
|
50
|
+
.array(z.string().uuid())
|
|
51
|
+
.describe('IDs of the spaces that the entrance is in.'),
|
|
49
52
|
created_at: z
|
|
50
53
|
.string()
|
|
51
54
|
.datetime()
|
|
@@ -36,18 +36,8 @@ export const spaces_batch = z
|
|
|
36
36
|
.object({
|
|
37
37
|
batch_type: z.literal('spaces'),
|
|
38
38
|
spaces: space.array().optional(),
|
|
39
|
-
devices: device
|
|
40
|
-
|
|
41
|
-
space_ids: z.array(z.string().uuid()),
|
|
42
|
-
})
|
|
43
|
-
.array()
|
|
44
|
-
.optional(),
|
|
45
|
-
acs_entrances: acs_entrance
|
|
46
|
-
.extend({
|
|
47
|
-
space_ids: z.array(z.string().uuid()),
|
|
48
|
-
})
|
|
49
|
-
.array()
|
|
50
|
-
.optional(),
|
|
39
|
+
devices: device.array().optional(),
|
|
40
|
+
acs_entrances: acs_entrance.array().optional(),
|
|
51
41
|
connected_accounts: connected_account.array().optional(),
|
|
52
42
|
acs_systems: acs_system.array().optional(),
|
|
53
43
|
})
|
|
@@ -69,6 +59,10 @@ export const access_methods_batch = z.object({
|
|
|
69
59
|
spaces: space.array().optional(),
|
|
70
60
|
devices: device.array().optional(),
|
|
71
61
|
acs_entrances: acs_entrance.array().optional(),
|
|
62
|
+
access_grants: access_grant.array().optional(),
|
|
63
|
+
access_methods: access_method.array().optional(),
|
|
64
|
+
instant_keys: instant_key.array().optional(),
|
|
65
|
+
client_sessions: client_session.array().optional(),
|
|
72
66
|
})
|
|
73
67
|
|
|
74
68
|
export const workspaces_batch = z
|
|
@@ -691,6 +691,9 @@ export const device = z
|
|
|
691
691
|
.object({
|
|
692
692
|
device_id: z.string().uuid().describe('ID of the device.'),
|
|
693
693
|
device_type: any_device_type.describe('Type of the device.'),
|
|
694
|
+
space_ids: z
|
|
695
|
+
.array(z.string().uuid())
|
|
696
|
+
.describe('IDs of the spaces the device is in.'),
|
|
694
697
|
nickname: z
|
|
695
698
|
.string()
|
|
696
699
|
.optional()
|