@seamapi/types 1.496.0 → 1.497.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 +69 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +114 -10
- package/dist/index.cjs +69 -21
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +74 -0
- package/lib/seam/connect/models/devices/device-provider.d.ts +6 -0
- package/lib/seam/connect/models/devices/device.d.ts +12 -0
- package/lib/seam/connect/models/devices/device.js +2 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +8 -0
- package/lib/seam/connect/openapi.d.ts +18 -0
- package/lib/seam/connect/openapi.js +46 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +54 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +46 -0
- package/src/lib/seam/connect/route-types.ts +64 -0
|
@@ -11336,6 +11336,8 @@ export type Routes = {
|
|
|
11336
11336
|
can_simulate_disconnection?: boolean | undefined;
|
|
11337
11337
|
can_unlock_with_code?: boolean | undefined;
|
|
11338
11338
|
can_run_thermostat_programs?: boolean | undefined;
|
|
11339
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
11340
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
11339
11341
|
}[] | undefined;
|
|
11340
11342
|
acs_entrances?: {
|
|
11341
11343
|
/** 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). */
|
|
@@ -14482,6 +14484,8 @@ export type Routes = {
|
|
|
14482
14484
|
can_simulate_disconnection?: boolean | undefined;
|
|
14483
14485
|
can_unlock_with_code?: boolean | undefined;
|
|
14484
14486
|
can_run_thermostat_programs?: boolean | undefined;
|
|
14487
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
14488
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
14485
14489
|
}[] | undefined;
|
|
14486
14490
|
acs_entrances?: {
|
|
14487
14491
|
/** 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). */
|
|
@@ -17128,6 +17132,8 @@ export type Routes = {
|
|
|
17128
17132
|
can_simulate_disconnection?: boolean | undefined;
|
|
17129
17133
|
can_unlock_with_code?: boolean | undefined;
|
|
17130
17134
|
can_run_thermostat_programs?: boolean | undefined;
|
|
17135
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
17136
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
17131
17137
|
}[] | undefined;
|
|
17132
17138
|
connect_webviews?: {
|
|
17133
17139
|
/** ID of the Connect Webview. */
|
|
@@ -32680,6 +32686,8 @@ export type Routes = {
|
|
|
32680
32686
|
can_simulate_disconnection?: boolean | undefined;
|
|
32681
32687
|
can_unlock_with_code?: boolean | undefined;
|
|
32682
32688
|
can_run_thermostat_programs?: boolean | undefined;
|
|
32689
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
32690
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
32683
32691
|
};
|
|
32684
32692
|
};
|
|
32685
32693
|
};
|
|
@@ -32717,9 +32725,9 @@ export type Routes = {
|
|
|
32717
32725
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
32718
32726
|
page_cursor?: (string | undefined) | null;
|
|
32719
32727
|
/** */
|
|
32720
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
32728
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection')[] | undefined;
|
|
32721
32729
|
/** */
|
|
32722
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
32730
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection')[] | undefined;
|
|
32723
32731
|
/**
|
|
32724
32732
|
* @deprecated Use `space_id`.*/
|
|
32725
32733
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -33934,6 +33942,8 @@ export type Routes = {
|
|
|
33934
33942
|
can_simulate_disconnection?: boolean | undefined;
|
|
33935
33943
|
can_unlock_with_code?: boolean | undefined;
|
|
33936
33944
|
can_run_thermostat_programs?: boolean | undefined;
|
|
33945
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
33946
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
33937
33947
|
}[];
|
|
33938
33948
|
/** Information about the current page of results. */
|
|
33939
33949
|
pagination: {
|
|
@@ -33975,6 +33985,8 @@ export type Routes = {
|
|
|
33975
33985
|
can_simulate_disconnection?: boolean | undefined;
|
|
33976
33986
|
can_unlock_with_code?: boolean | undefined;
|
|
33977
33987
|
can_run_thermostat_programs?: boolean | undefined;
|
|
33988
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
33989
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
33978
33990
|
}[];
|
|
33979
33991
|
};
|
|
33980
33992
|
};
|
|
@@ -34433,6 +34445,8 @@ export type Routes = {
|
|
|
34433
34445
|
can_simulate_disconnection?: boolean | undefined;
|
|
34434
34446
|
can_unlock_with_code?: boolean | undefined;
|
|
34435
34447
|
can_run_thermostat_programs?: boolean | undefined;
|
|
34448
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
34449
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
34436
34450
|
};
|
|
34437
34451
|
};
|
|
34438
34452
|
};
|
|
@@ -34470,9 +34484,9 @@ export type Routes = {
|
|
|
34470
34484
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
34471
34485
|
page_cursor?: (string | undefined) | null;
|
|
34472
34486
|
/** */
|
|
34473
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
34487
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection')[] | undefined;
|
|
34474
34488
|
/** */
|
|
34475
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
34489
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection')[] | undefined;
|
|
34476
34490
|
/**
|
|
34477
34491
|
* @deprecated Use `space_id`.*/
|
|
34478
34492
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -34866,6 +34880,8 @@ export type Routes = {
|
|
|
34866
34880
|
can_simulate_disconnection?: boolean | undefined;
|
|
34867
34881
|
can_unlock_with_code?: boolean | undefined;
|
|
34868
34882
|
can_run_thermostat_programs?: boolean | undefined;
|
|
34883
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
34884
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
34869
34885
|
}[];
|
|
34870
34886
|
};
|
|
34871
34887
|
};
|
|
@@ -39942,6 +39958,8 @@ export type Routes = {
|
|
|
39942
39958
|
can_simulate_disconnection?: boolean | undefined;
|
|
39943
39959
|
can_unlock_with_code?: boolean | undefined;
|
|
39944
39960
|
can_run_thermostat_programs?: boolean | undefined;
|
|
39961
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
39962
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
39945
39963
|
};
|
|
39946
39964
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
39947
39965
|
device: {
|
|
@@ -41146,6 +41164,8 @@ export type Routes = {
|
|
|
41146
41164
|
can_simulate_disconnection?: boolean | undefined;
|
|
41147
41165
|
can_unlock_with_code?: boolean | undefined;
|
|
41148
41166
|
can_run_thermostat_programs?: boolean | undefined;
|
|
41167
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
41168
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
41149
41169
|
};
|
|
41150
41170
|
};
|
|
41151
41171
|
};
|
|
@@ -41183,9 +41203,9 @@ export type Routes = {
|
|
|
41183
41203
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
41184
41204
|
page_cursor?: (string | undefined) | null;
|
|
41185
41205
|
/** */
|
|
41186
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
41206
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection')[] | undefined;
|
|
41187
41207
|
/** */
|
|
41188
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
41208
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection')[] | undefined;
|
|
41189
41209
|
/**
|
|
41190
41210
|
* @deprecated Use `space_id`.*/
|
|
41191
41211
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -42400,6 +42420,8 @@ export type Routes = {
|
|
|
42400
42420
|
can_simulate_disconnection?: boolean | undefined;
|
|
42401
42421
|
can_unlock_with_code?: boolean | undefined;
|
|
42402
42422
|
can_run_thermostat_programs?: boolean | undefined;
|
|
42423
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
42424
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
42403
42425
|
}[];
|
|
42404
42426
|
devices: {
|
|
42405
42427
|
/** ID of the device. */
|
|
@@ -43603,6 +43625,8 @@ export type Routes = {
|
|
|
43603
43625
|
can_simulate_disconnection?: boolean | undefined;
|
|
43604
43626
|
can_unlock_with_code?: boolean | undefined;
|
|
43605
43627
|
can_run_thermostat_programs?: boolean | undefined;
|
|
43628
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
43629
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
43606
43630
|
}[];
|
|
43607
43631
|
};
|
|
43608
43632
|
};
|
|
@@ -48678,9 +48702,9 @@ export type Routes = {
|
|
|
48678
48702
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
48679
48703
|
page_cursor?: (string | undefined) | null;
|
|
48680
48704
|
/** */
|
|
48681
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
48705
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection')[] | undefined;
|
|
48682
48706
|
/** */
|
|
48683
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
48707
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection')[] | undefined;
|
|
48684
48708
|
/**
|
|
48685
48709
|
* @deprecated Use `space_id`.*/
|
|
48686
48710
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -49895,6 +49919,8 @@ export type Routes = {
|
|
|
49895
49919
|
can_simulate_disconnection?: boolean | undefined;
|
|
49896
49920
|
can_unlock_with_code?: boolean | undefined;
|
|
49897
49921
|
can_run_thermostat_programs?: boolean | undefined;
|
|
49922
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
49923
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
49898
49924
|
}[];
|
|
49899
49925
|
devices: {
|
|
49900
49926
|
/** ID of the device. */
|
|
@@ -51098,6 +51124,8 @@ export type Routes = {
|
|
|
51098
51124
|
can_simulate_disconnection?: boolean | undefined;
|
|
51099
51125
|
can_unlock_with_code?: boolean | undefined;
|
|
51100
51126
|
can_run_thermostat_programs?: boolean | undefined;
|
|
51127
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
51128
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
51101
51129
|
}[];
|
|
51102
51130
|
};
|
|
51103
51131
|
};
|
|
@@ -59495,6 +59523,8 @@ export type Routes = {
|
|
|
59495
59523
|
can_simulate_disconnection?: boolean | undefined;
|
|
59496
59524
|
can_unlock_with_code?: boolean | undefined;
|
|
59497
59525
|
can_run_thermostat_programs?: boolean | undefined;
|
|
59526
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
59527
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
59498
59528
|
}[] | undefined;
|
|
59499
59529
|
acs_entrances?: {
|
|
59500
59530
|
/** 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). */
|
|
@@ -65079,6 +65109,8 @@ export type Routes = {
|
|
|
65079
65109
|
can_simulate_disconnection?: boolean | undefined;
|
|
65080
65110
|
can_unlock_with_code?: boolean | undefined;
|
|
65081
65111
|
can_run_thermostat_programs?: boolean | undefined;
|
|
65112
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
65113
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
65082
65114
|
};
|
|
65083
65115
|
};
|
|
65084
65116
|
};
|
|
@@ -67648,9 +67680,9 @@ export type Routes = {
|
|
|
67648
67680
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
67649
67681
|
page_cursor?: (string | undefined) | null;
|
|
67650
67682
|
/** */
|
|
67651
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
67683
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection')[] | undefined;
|
|
67652
67684
|
/** */
|
|
67653
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
67685
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection')[] | undefined;
|
|
67654
67686
|
/**
|
|
67655
67687
|
* @deprecated Use `space_id`.*/
|
|
67656
67688
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -68865,6 +68897,8 @@ export type Routes = {
|
|
|
68865
68897
|
can_simulate_disconnection?: boolean | undefined;
|
|
68866
68898
|
can_unlock_with_code?: boolean | undefined;
|
|
68867
68899
|
can_run_thermostat_programs?: boolean | undefined;
|
|
68900
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
68901
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
68868
68902
|
}[];
|
|
68869
68903
|
devices: {
|
|
68870
68904
|
/** ID of the device. */
|
|
@@ -70068,6 +70102,8 @@ export type Routes = {
|
|
|
70068
70102
|
can_simulate_disconnection?: boolean | undefined;
|
|
70069
70103
|
can_unlock_with_code?: boolean | undefined;
|
|
70070
70104
|
can_run_thermostat_programs?: boolean | undefined;
|
|
70105
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
70106
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
70071
70107
|
}[];
|
|
70072
70108
|
};
|
|
70073
70109
|
};
|
|
@@ -77212,6 +77248,8 @@ export type Routes = {
|
|
|
77212
77248
|
can_simulate_disconnection?: boolean | undefined;
|
|
77213
77249
|
can_unlock_with_code?: boolean | undefined;
|
|
77214
77250
|
can_run_thermostat_programs?: boolean | undefined;
|
|
77251
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
77252
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
77215
77253
|
}[];
|
|
77216
77254
|
/**
|
|
77217
77255
|
* @deprecated Use devices.*/
|
|
@@ -78417,6 +78455,8 @@ export type Routes = {
|
|
|
78417
78455
|
can_simulate_disconnection?: boolean | undefined;
|
|
78418
78456
|
can_unlock_with_code?: boolean | undefined;
|
|
78419
78457
|
can_run_thermostat_programs?: boolean | undefined;
|
|
78458
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
78459
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
78420
78460
|
}[];
|
|
78421
78461
|
};
|
|
78422
78462
|
};
|
|
@@ -80381,6 +80421,8 @@ export type Routes = {
|
|
|
80381
80421
|
can_simulate_disconnection?: boolean | undefined;
|
|
80382
80422
|
can_unlock_with_code?: boolean | undefined;
|
|
80383
80423
|
can_run_thermostat_programs?: boolean | undefined;
|
|
80424
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
80425
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
80384
80426
|
}[] | undefined;
|
|
80385
80427
|
acs_entrances?: {
|
|
80386
80428
|
/** 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). */
|
|
@@ -83027,6 +83069,8 @@ export type Routes = {
|
|
|
83027
83069
|
can_simulate_disconnection?: boolean | undefined;
|
|
83028
83070
|
can_unlock_with_code?: boolean | undefined;
|
|
83029
83071
|
can_run_thermostat_programs?: boolean | undefined;
|
|
83072
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
83073
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
83030
83074
|
}[] | undefined;
|
|
83031
83075
|
connect_webviews?: {
|
|
83032
83076
|
/** ID of the Connect Webview. */
|
package/package.json
CHANGED
|
@@ -23,6 +23,8 @@ export const device_capability_flags = z
|
|
|
23
23
|
can_simulate_disconnection: z.boolean(),
|
|
24
24
|
can_unlock_with_code: z.boolean(),
|
|
25
25
|
can_run_thermostat_programs: z.boolean(),
|
|
26
|
+
can_simulate_hub_connection: z.boolean(),
|
|
27
|
+
can_simulate_hub_disconnection: z.boolean(),
|
|
26
28
|
})
|
|
27
29
|
.partial()
|
|
28
30
|
|
|
@@ -9214,6 +9214,8 @@ export default {
|
|
|
9214
9214
|
can_run_thermostat_programs: { type: 'boolean' },
|
|
9215
9215
|
can_simulate_connection: { type: 'boolean' },
|
|
9216
9216
|
can_simulate_disconnection: { type: 'boolean' },
|
|
9217
|
+
can_simulate_hub_connection: { type: 'boolean' },
|
|
9218
|
+
can_simulate_hub_disconnection: { type: 'boolean' },
|
|
9217
9219
|
can_simulate_removal: { type: 'boolean' },
|
|
9218
9220
|
can_turn_off_hvac: { type: 'boolean' },
|
|
9219
9221
|
can_unlock_with_code: { type: 'boolean' },
|
|
@@ -12981,6 +12983,8 @@ export default {
|
|
|
12981
12983
|
can_run_thermostat_programs: { type: 'boolean' },
|
|
12982
12984
|
can_simulate_connection: { type: 'boolean' },
|
|
12983
12985
|
can_simulate_disconnection: { type: 'boolean' },
|
|
12986
|
+
can_simulate_hub_connection: { type: 'boolean' },
|
|
12987
|
+
can_simulate_hub_disconnection: { type: 'boolean' },
|
|
12984
12988
|
can_simulate_removal: { type: 'boolean' },
|
|
12985
12989
|
can_turn_off_hvac: { type: 'boolean' },
|
|
12986
12990
|
can_unlock_with_code: { type: 'boolean' },
|
|
@@ -23643,6 +23647,8 @@ export default {
|
|
|
23643
23647
|
can_run_thermostat_programs: { type: 'boolean' },
|
|
23644
23648
|
can_simulate_connection: { type: 'boolean' },
|
|
23645
23649
|
can_simulate_disconnection: { type: 'boolean' },
|
|
23650
|
+
can_simulate_hub_connection: { type: 'boolean' },
|
|
23651
|
+
can_simulate_hub_disconnection: { type: 'boolean' },
|
|
23646
23652
|
can_simulate_removal: { type: 'boolean' },
|
|
23647
23653
|
can_turn_off_hvac: { type: 'boolean' },
|
|
23648
23654
|
can_unlock_with_code: { type: 'boolean' },
|
|
@@ -40174,6 +40180,8 @@ export default {
|
|
|
40174
40180
|
'can_simulate_disconnection',
|
|
40175
40181
|
'can_unlock_with_code',
|
|
40176
40182
|
'can_run_thermostat_programs',
|
|
40183
|
+
'can_simulate_hub_connection',
|
|
40184
|
+
'can_simulate_hub_disconnection',
|
|
40177
40185
|
],
|
|
40178
40186
|
type: 'string',
|
|
40179
40187
|
},
|
|
@@ -40200,6 +40208,8 @@ export default {
|
|
|
40200
40208
|
'can_simulate_disconnection',
|
|
40201
40209
|
'can_unlock_with_code',
|
|
40202
40210
|
'can_run_thermostat_programs',
|
|
40211
|
+
'can_simulate_hub_connection',
|
|
40212
|
+
'can_simulate_hub_disconnection',
|
|
40203
40213
|
],
|
|
40204
40214
|
type: 'string',
|
|
40205
40215
|
},
|
|
@@ -40489,6 +40499,8 @@ export default {
|
|
|
40489
40499
|
'can_simulate_disconnection',
|
|
40490
40500
|
'can_unlock_with_code',
|
|
40491
40501
|
'can_run_thermostat_programs',
|
|
40502
|
+
'can_simulate_hub_connection',
|
|
40503
|
+
'can_simulate_hub_disconnection',
|
|
40492
40504
|
],
|
|
40493
40505
|
type: 'string',
|
|
40494
40506
|
},
|
|
@@ -40511,6 +40523,8 @@ export default {
|
|
|
40511
40523
|
'can_simulate_disconnection',
|
|
40512
40524
|
'can_unlock_with_code',
|
|
40513
40525
|
'can_run_thermostat_programs',
|
|
40526
|
+
'can_simulate_hub_connection',
|
|
40527
|
+
'can_simulate_hub_disconnection',
|
|
40514
40528
|
],
|
|
40515
40529
|
type: 'string',
|
|
40516
40530
|
},
|
|
@@ -41457,6 +41471,8 @@ export default {
|
|
|
41457
41471
|
'can_simulate_disconnection',
|
|
41458
41472
|
'can_unlock_with_code',
|
|
41459
41473
|
'can_run_thermostat_programs',
|
|
41474
|
+
'can_simulate_hub_connection',
|
|
41475
|
+
'can_simulate_hub_disconnection',
|
|
41460
41476
|
],
|
|
41461
41477
|
type: 'string',
|
|
41462
41478
|
},
|
|
@@ -41483,6 +41499,8 @@ export default {
|
|
|
41483
41499
|
'can_simulate_disconnection',
|
|
41484
41500
|
'can_unlock_with_code',
|
|
41485
41501
|
'can_run_thermostat_programs',
|
|
41502
|
+
'can_simulate_hub_connection',
|
|
41503
|
+
'can_simulate_hub_disconnection',
|
|
41486
41504
|
],
|
|
41487
41505
|
type: 'string',
|
|
41488
41506
|
},
|
|
@@ -41769,6 +41787,8 @@ export default {
|
|
|
41769
41787
|
'can_simulate_disconnection',
|
|
41770
41788
|
'can_unlock_with_code',
|
|
41771
41789
|
'can_run_thermostat_programs',
|
|
41790
|
+
'can_simulate_hub_connection',
|
|
41791
|
+
'can_simulate_hub_disconnection',
|
|
41772
41792
|
],
|
|
41773
41793
|
type: 'string',
|
|
41774
41794
|
},
|
|
@@ -41791,6 +41811,8 @@ export default {
|
|
|
41791
41811
|
'can_simulate_disconnection',
|
|
41792
41812
|
'can_unlock_with_code',
|
|
41793
41813
|
'can_run_thermostat_programs',
|
|
41814
|
+
'can_simulate_hub_connection',
|
|
41815
|
+
'can_simulate_hub_disconnection',
|
|
41794
41816
|
],
|
|
41795
41817
|
type: 'string',
|
|
41796
41818
|
},
|
|
@@ -43740,6 +43762,8 @@ export default {
|
|
|
43740
43762
|
'can_simulate_disconnection',
|
|
43741
43763
|
'can_unlock_with_code',
|
|
43742
43764
|
'can_run_thermostat_programs',
|
|
43765
|
+
'can_simulate_hub_connection',
|
|
43766
|
+
'can_simulate_hub_disconnection',
|
|
43743
43767
|
],
|
|
43744
43768
|
type: 'string',
|
|
43745
43769
|
},
|
|
@@ -43766,6 +43790,8 @@ export default {
|
|
|
43766
43790
|
'can_simulate_disconnection',
|
|
43767
43791
|
'can_unlock_with_code',
|
|
43768
43792
|
'can_run_thermostat_programs',
|
|
43793
|
+
'can_simulate_hub_connection',
|
|
43794
|
+
'can_simulate_hub_disconnection',
|
|
43769
43795
|
],
|
|
43770
43796
|
type: 'string',
|
|
43771
43797
|
},
|
|
@@ -44000,6 +44026,8 @@ export default {
|
|
|
44000
44026
|
'can_simulate_disconnection',
|
|
44001
44027
|
'can_unlock_with_code',
|
|
44002
44028
|
'can_run_thermostat_programs',
|
|
44029
|
+
'can_simulate_hub_connection',
|
|
44030
|
+
'can_simulate_hub_disconnection',
|
|
44003
44031
|
],
|
|
44004
44032
|
type: 'string',
|
|
44005
44033
|
},
|
|
@@ -44022,6 +44050,8 @@ export default {
|
|
|
44022
44050
|
'can_simulate_disconnection',
|
|
44023
44051
|
'can_unlock_with_code',
|
|
44024
44052
|
'can_run_thermostat_programs',
|
|
44053
|
+
'can_simulate_hub_connection',
|
|
44054
|
+
'can_simulate_hub_disconnection',
|
|
44025
44055
|
],
|
|
44026
44056
|
type: 'string',
|
|
44027
44057
|
},
|
|
@@ -44559,6 +44589,8 @@ export default {
|
|
|
44559
44589
|
'can_simulate_disconnection',
|
|
44560
44590
|
'can_unlock_with_code',
|
|
44561
44591
|
'can_run_thermostat_programs',
|
|
44592
|
+
'can_simulate_hub_connection',
|
|
44593
|
+
'can_simulate_hub_disconnection',
|
|
44562
44594
|
],
|
|
44563
44595
|
type: 'string',
|
|
44564
44596
|
},
|
|
@@ -44585,6 +44617,8 @@ export default {
|
|
|
44585
44617
|
'can_simulate_disconnection',
|
|
44586
44618
|
'can_unlock_with_code',
|
|
44587
44619
|
'can_run_thermostat_programs',
|
|
44620
|
+
'can_simulate_hub_connection',
|
|
44621
|
+
'can_simulate_hub_disconnection',
|
|
44588
44622
|
],
|
|
44589
44623
|
type: 'string',
|
|
44590
44624
|
},
|
|
@@ -44763,6 +44797,8 @@ export default {
|
|
|
44763
44797
|
'can_simulate_disconnection',
|
|
44764
44798
|
'can_unlock_with_code',
|
|
44765
44799
|
'can_run_thermostat_programs',
|
|
44800
|
+
'can_simulate_hub_connection',
|
|
44801
|
+
'can_simulate_hub_disconnection',
|
|
44766
44802
|
],
|
|
44767
44803
|
type: 'string',
|
|
44768
44804
|
},
|
|
@@ -44785,6 +44821,8 @@ export default {
|
|
|
44785
44821
|
'can_simulate_disconnection',
|
|
44786
44822
|
'can_unlock_with_code',
|
|
44787
44823
|
'can_run_thermostat_programs',
|
|
44824
|
+
'can_simulate_hub_connection',
|
|
44825
|
+
'can_simulate_hub_disconnection',
|
|
44788
44826
|
],
|
|
44789
44827
|
type: 'string',
|
|
44790
44828
|
},
|
|
@@ -51337,6 +51375,8 @@ export default {
|
|
|
51337
51375
|
'can_simulate_disconnection',
|
|
51338
51376
|
'can_unlock_with_code',
|
|
51339
51377
|
'can_run_thermostat_programs',
|
|
51378
|
+
'can_simulate_hub_connection',
|
|
51379
|
+
'can_simulate_hub_disconnection',
|
|
51340
51380
|
],
|
|
51341
51381
|
type: 'string',
|
|
51342
51382
|
},
|
|
@@ -51363,6 +51403,8 @@ export default {
|
|
|
51363
51403
|
'can_simulate_disconnection',
|
|
51364
51404
|
'can_unlock_with_code',
|
|
51365
51405
|
'can_run_thermostat_programs',
|
|
51406
|
+
'can_simulate_hub_connection',
|
|
51407
|
+
'can_simulate_hub_disconnection',
|
|
51366
51408
|
],
|
|
51367
51409
|
type: 'string',
|
|
51368
51410
|
},
|
|
@@ -51555,6 +51597,8 @@ export default {
|
|
|
51555
51597
|
'can_simulate_disconnection',
|
|
51556
51598
|
'can_unlock_with_code',
|
|
51557
51599
|
'can_run_thermostat_programs',
|
|
51600
|
+
'can_simulate_hub_connection',
|
|
51601
|
+
'can_simulate_hub_disconnection',
|
|
51558
51602
|
],
|
|
51559
51603
|
type: 'string',
|
|
51560
51604
|
},
|
|
@@ -51577,6 +51621,8 @@ export default {
|
|
|
51577
51621
|
'can_simulate_disconnection',
|
|
51578
51622
|
'can_unlock_with_code',
|
|
51579
51623
|
'can_run_thermostat_programs',
|
|
51624
|
+
'can_simulate_hub_connection',
|
|
51625
|
+
'can_simulate_hub_disconnection',
|
|
51580
51626
|
],
|
|
51581
51627
|
type: 'string',
|
|
51582
51628
|
},
|