@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
package/dist/connect.d.cts
CHANGED
|
@@ -13198,6 +13198,8 @@ declare const batch: z.ZodObject<{
|
|
|
13198
13198
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
13199
13199
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
13200
13200
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
13201
|
+
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
13202
|
+
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
13201
13203
|
}, "strip", z.ZodTypeAny, {
|
|
13202
13204
|
display_name: string;
|
|
13203
13205
|
device_id: string;
|
|
@@ -13853,6 +13855,8 @@ declare const batch: z.ZodObject<{
|
|
|
13853
13855
|
can_simulate_disconnection?: boolean | undefined;
|
|
13854
13856
|
can_unlock_with_code?: boolean | undefined;
|
|
13855
13857
|
can_run_thermostat_programs?: boolean | undefined;
|
|
13858
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
13859
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
13856
13860
|
nickname?: string | undefined;
|
|
13857
13861
|
}, {
|
|
13858
13862
|
display_name: string;
|
|
@@ -14509,6 +14513,8 @@ declare const batch: z.ZodObject<{
|
|
|
14509
14513
|
can_simulate_disconnection?: boolean | undefined;
|
|
14510
14514
|
can_unlock_with_code?: boolean | undefined;
|
|
14511
14515
|
can_run_thermostat_programs?: boolean | undefined;
|
|
14516
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
14517
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
14512
14518
|
nickname?: string | undefined;
|
|
14513
14519
|
}>, "many">>;
|
|
14514
14520
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -23779,6 +23785,8 @@ declare const batch: z.ZodObject<{
|
|
|
23779
23785
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23780
23786
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
23781
23787
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
23788
|
+
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
23789
|
+
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23782
23790
|
}, "device_id" | "workspace_id" | "created_at" | "errors" | "connected_account_id" | "warnings" | "device_type" | "capabilities_supported" | "location"> & {
|
|
23783
23791
|
is_managed: z.ZodLiteral<false>;
|
|
23784
23792
|
properties: z.ZodObject<Pick<{
|
|
@@ -23929,6 +23937,8 @@ declare const batch: z.ZodObject<{
|
|
|
23929
23937
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23930
23938
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
23931
23939
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
23940
|
+
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
23941
|
+
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23932
23942
|
}, "strip", z.ZodTypeAny, {
|
|
23933
23943
|
device_id: string;
|
|
23934
23944
|
workspace_id: string;
|
|
@@ -24157,6 +24167,8 @@ declare const batch: z.ZodObject<{
|
|
|
24157
24167
|
can_simulate_disconnection?: boolean | undefined;
|
|
24158
24168
|
can_unlock_with_code?: boolean | undefined;
|
|
24159
24169
|
can_run_thermostat_programs?: boolean | undefined;
|
|
24170
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
24171
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
24160
24172
|
}, {
|
|
24161
24173
|
device_id: string;
|
|
24162
24174
|
workspace_id: string;
|
|
@@ -24385,6 +24397,8 @@ declare const batch: z.ZodObject<{
|
|
|
24385
24397
|
can_simulate_disconnection?: boolean | undefined;
|
|
24386
24398
|
can_unlock_with_code?: boolean | undefined;
|
|
24387
24399
|
can_run_thermostat_programs?: boolean | undefined;
|
|
24400
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
24401
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
24388
24402
|
}>, "many">>;
|
|
24389
24403
|
connect_webviews: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24390
24404
|
connect_webview_id: z.ZodString;
|
|
@@ -31320,6 +31334,8 @@ declare const batch: z.ZodObject<{
|
|
|
31320
31334
|
can_simulate_disconnection?: boolean | undefined;
|
|
31321
31335
|
can_unlock_with_code?: boolean | undefined;
|
|
31322
31336
|
can_run_thermostat_programs?: boolean | undefined;
|
|
31337
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
31338
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
31323
31339
|
nickname?: string | undefined;
|
|
31324
31340
|
}[] | undefined;
|
|
31325
31341
|
acs_entrances?: {
|
|
@@ -32929,6 +32945,8 @@ declare const batch: z.ZodObject<{
|
|
|
32929
32945
|
can_simulate_disconnection?: boolean | undefined;
|
|
32930
32946
|
can_unlock_with_code?: boolean | undefined;
|
|
32931
32947
|
can_run_thermostat_programs?: boolean | undefined;
|
|
32948
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
32949
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
32932
32950
|
}[] | undefined;
|
|
32933
32951
|
connect_webviews?: {
|
|
32934
32952
|
status: "pending" | "failed" | "authorized";
|
|
@@ -35150,6 +35168,8 @@ declare const batch: z.ZodObject<{
|
|
|
35150
35168
|
can_simulate_disconnection?: boolean | undefined;
|
|
35151
35169
|
can_unlock_with_code?: boolean | undefined;
|
|
35152
35170
|
can_run_thermostat_programs?: boolean | undefined;
|
|
35171
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
35172
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
35153
35173
|
nickname?: string | undefined;
|
|
35154
35174
|
}[] | undefined;
|
|
35155
35175
|
acs_entrances?: {
|
|
@@ -36759,6 +36779,8 @@ declare const batch: z.ZodObject<{
|
|
|
36759
36779
|
can_simulate_disconnection?: boolean | undefined;
|
|
36760
36780
|
can_unlock_with_code?: boolean | undefined;
|
|
36761
36781
|
can_run_thermostat_programs?: boolean | undefined;
|
|
36782
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
36783
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
36762
36784
|
}[] | undefined;
|
|
36763
36785
|
connect_webviews?: {
|
|
36764
36786
|
status: "pending" | "failed" | "authorized";
|
|
@@ -42469,6 +42491,8 @@ declare const device: z.ZodObject<{
|
|
|
42469
42491
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
42470
42492
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
42471
42493
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
42494
|
+
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
42495
|
+
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
42472
42496
|
}, "strip", z.ZodTypeAny, {
|
|
42473
42497
|
display_name: string;
|
|
42474
42498
|
device_id: string;
|
|
@@ -43124,6 +43148,8 @@ declare const device: z.ZodObject<{
|
|
|
43124
43148
|
can_simulate_disconnection?: boolean | undefined;
|
|
43125
43149
|
can_unlock_with_code?: boolean | undefined;
|
|
43126
43150
|
can_run_thermostat_programs?: boolean | undefined;
|
|
43151
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
43152
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
43127
43153
|
nickname?: string | undefined;
|
|
43128
43154
|
}, {
|
|
43129
43155
|
display_name: string;
|
|
@@ -43780,6 +43806,8 @@ declare const device: z.ZodObject<{
|
|
|
43780
43806
|
can_simulate_disconnection?: boolean | undefined;
|
|
43781
43807
|
can_unlock_with_code?: boolean | undefined;
|
|
43782
43808
|
can_run_thermostat_programs?: boolean | undefined;
|
|
43809
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
43810
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
43783
43811
|
nickname?: string | undefined;
|
|
43784
43812
|
}>;
|
|
43785
43813
|
type Device = z.infer<typeof device>;
|
|
@@ -43854,6 +43882,8 @@ declare const device_provider: z.ZodObject<{
|
|
|
43854
43882
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
43855
43883
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
43856
43884
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
43885
|
+
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
43886
|
+
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
43857
43887
|
}, "strip", z.ZodTypeAny, {
|
|
43858
43888
|
display_name: string;
|
|
43859
43889
|
image_url: string;
|
|
@@ -43872,6 +43902,8 @@ declare const device_provider: z.ZodObject<{
|
|
|
43872
43902
|
can_simulate_disconnection?: boolean | undefined;
|
|
43873
43903
|
can_unlock_with_code?: boolean | undefined;
|
|
43874
43904
|
can_run_thermostat_programs?: boolean | undefined;
|
|
43905
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
43906
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
43875
43907
|
}, {
|
|
43876
43908
|
display_name: string;
|
|
43877
43909
|
image_url: string;
|
|
@@ -43890,6 +43922,8 @@ declare const device_provider: z.ZodObject<{
|
|
|
43890
43922
|
can_simulate_disconnection?: boolean | undefined;
|
|
43891
43923
|
can_unlock_with_code?: boolean | undefined;
|
|
43892
43924
|
can_run_thermostat_programs?: boolean | undefined;
|
|
43925
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
43926
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
43893
43927
|
}>;
|
|
43894
43928
|
type DeviceProvider = z.infer<typeof device_provider>;
|
|
43895
43929
|
|
|
@@ -46734,6 +46768,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46734
46768
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
46735
46769
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
46736
46770
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
46771
|
+
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
46772
|
+
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
46737
46773
|
}, "device_id" | "workspace_id" | "created_at" | "errors" | "connected_account_id" | "warnings" | "device_type" | "capabilities_supported" | "location"> & {
|
|
46738
46774
|
is_managed: z.ZodLiteral<false>;
|
|
46739
46775
|
properties: z.ZodObject<Pick<{
|
|
@@ -46884,6 +46920,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46884
46920
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
46885
46921
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
46886
46922
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
46923
|
+
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
46924
|
+
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
46887
46925
|
}, "strip", z.ZodTypeAny, {
|
|
46888
46926
|
device_id: string;
|
|
46889
46927
|
workspace_id: string;
|
|
@@ -47112,6 +47150,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47112
47150
|
can_simulate_disconnection?: boolean | undefined;
|
|
47113
47151
|
can_unlock_with_code?: boolean | undefined;
|
|
47114
47152
|
can_run_thermostat_programs?: boolean | undefined;
|
|
47153
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
47154
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
47115
47155
|
}, {
|
|
47116
47156
|
device_id: string;
|
|
47117
47157
|
workspace_id: string;
|
|
@@ -47340,6 +47380,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47340
47380
|
can_simulate_disconnection?: boolean | undefined;
|
|
47341
47381
|
can_unlock_with_code?: boolean | undefined;
|
|
47342
47382
|
can_run_thermostat_programs?: boolean | undefined;
|
|
47383
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
47384
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
47343
47385
|
}>;
|
|
47344
47386
|
type UnmanagedDevice = z.infer<typeof unmanaged_device>;
|
|
47345
47387
|
|
|
@@ -55113,6 +55155,12 @@ declare const _default: {
|
|
|
55113
55155
|
can_simulate_disconnection: {
|
|
55114
55156
|
type: string;
|
|
55115
55157
|
};
|
|
55158
|
+
can_simulate_hub_connection: {
|
|
55159
|
+
type: string;
|
|
55160
|
+
};
|
|
55161
|
+
can_simulate_hub_disconnection: {
|
|
55162
|
+
type: string;
|
|
55163
|
+
};
|
|
55116
55164
|
can_simulate_removal: {
|
|
55117
55165
|
type: string;
|
|
55118
55166
|
};
|
|
@@ -57663,6 +57711,12 @@ declare const _default: {
|
|
|
57663
57711
|
can_simulate_disconnection: {
|
|
57664
57712
|
type: string;
|
|
57665
57713
|
};
|
|
57714
|
+
can_simulate_hub_connection: {
|
|
57715
|
+
type: string;
|
|
57716
|
+
};
|
|
57717
|
+
can_simulate_hub_disconnection: {
|
|
57718
|
+
type: string;
|
|
57719
|
+
};
|
|
57666
57720
|
can_simulate_removal: {
|
|
57667
57721
|
type: string;
|
|
57668
57722
|
};
|
|
@@ -63517,6 +63571,12 @@ declare const _default: {
|
|
|
63517
63571
|
can_simulate_disconnection: {
|
|
63518
63572
|
type: string;
|
|
63519
63573
|
};
|
|
63574
|
+
can_simulate_hub_connection: {
|
|
63575
|
+
type: string;
|
|
63576
|
+
};
|
|
63577
|
+
can_simulate_hub_disconnection: {
|
|
63578
|
+
type: string;
|
|
63579
|
+
};
|
|
63520
63580
|
can_simulate_removal: {
|
|
63521
63581
|
type: string;
|
|
63522
63582
|
};
|
|
@@ -111804,6 +111864,8 @@ type Routes = {
|
|
|
111804
111864
|
can_simulate_disconnection?: boolean | undefined;
|
|
111805
111865
|
can_unlock_with_code?: boolean | undefined;
|
|
111806
111866
|
can_run_thermostat_programs?: boolean | undefined;
|
|
111867
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
111868
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
111807
111869
|
}[] | undefined;
|
|
111808
111870
|
acs_entrances?: {
|
|
111809
111871
|
/** 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). */
|
|
@@ -114950,6 +115012,8 @@ type Routes = {
|
|
|
114950
115012
|
can_simulate_disconnection?: boolean | undefined;
|
|
114951
115013
|
can_unlock_with_code?: boolean | undefined;
|
|
114952
115014
|
can_run_thermostat_programs?: boolean | undefined;
|
|
115015
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
115016
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
114953
115017
|
}[] | undefined;
|
|
114954
115018
|
acs_entrances?: {
|
|
114955
115019
|
/** 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). */
|
|
@@ -117596,6 +117660,8 @@ type Routes = {
|
|
|
117596
117660
|
can_simulate_disconnection?: boolean | undefined;
|
|
117597
117661
|
can_unlock_with_code?: boolean | undefined;
|
|
117598
117662
|
can_run_thermostat_programs?: boolean | undefined;
|
|
117663
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
117664
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
117599
117665
|
}[] | undefined;
|
|
117600
117666
|
connect_webviews?: {
|
|
117601
117667
|
/** ID of the Connect Webview. */
|
|
@@ -133148,6 +133214,8 @@ type Routes = {
|
|
|
133148
133214
|
can_simulate_disconnection?: boolean | undefined;
|
|
133149
133215
|
can_unlock_with_code?: boolean | undefined;
|
|
133150
133216
|
can_run_thermostat_programs?: boolean | undefined;
|
|
133217
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
133218
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
133151
133219
|
};
|
|
133152
133220
|
};
|
|
133153
133221
|
};
|
|
@@ -133185,9 +133253,9 @@ type Routes = {
|
|
|
133185
133253
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
133186
133254
|
page_cursor?: (string | undefined) | null;
|
|
133187
133255
|
/** */
|
|
133188
|
-
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;
|
|
133256
|
+
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;
|
|
133189
133257
|
/** */
|
|
133190
|
-
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;
|
|
133258
|
+
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;
|
|
133191
133259
|
/**
|
|
133192
133260
|
* @deprecated Use `space_id`.*/
|
|
133193
133261
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -134402,6 +134470,8 @@ type Routes = {
|
|
|
134402
134470
|
can_simulate_disconnection?: boolean | undefined;
|
|
134403
134471
|
can_unlock_with_code?: boolean | undefined;
|
|
134404
134472
|
can_run_thermostat_programs?: boolean | undefined;
|
|
134473
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
134474
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
134405
134475
|
}[];
|
|
134406
134476
|
/** Information about the current page of results. */
|
|
134407
134477
|
pagination: {
|
|
@@ -134443,6 +134513,8 @@ type Routes = {
|
|
|
134443
134513
|
can_simulate_disconnection?: boolean | undefined;
|
|
134444
134514
|
can_unlock_with_code?: boolean | undefined;
|
|
134445
134515
|
can_run_thermostat_programs?: boolean | undefined;
|
|
134516
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
134517
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
134446
134518
|
}[];
|
|
134447
134519
|
};
|
|
134448
134520
|
};
|
|
@@ -134901,6 +134973,8 @@ type Routes = {
|
|
|
134901
134973
|
can_simulate_disconnection?: boolean | undefined;
|
|
134902
134974
|
can_unlock_with_code?: boolean | undefined;
|
|
134903
134975
|
can_run_thermostat_programs?: boolean | undefined;
|
|
134976
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
134977
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
134904
134978
|
};
|
|
134905
134979
|
};
|
|
134906
134980
|
};
|
|
@@ -134938,9 +135012,9 @@ type Routes = {
|
|
|
134938
135012
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
134939
135013
|
page_cursor?: (string | undefined) | null;
|
|
134940
135014
|
/** */
|
|
134941
|
-
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;
|
|
135015
|
+
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;
|
|
134942
135016
|
/** */
|
|
134943
|
-
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;
|
|
135017
|
+
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;
|
|
134944
135018
|
/**
|
|
134945
135019
|
* @deprecated Use `space_id`.*/
|
|
134946
135020
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -135334,6 +135408,8 @@ type Routes = {
|
|
|
135334
135408
|
can_simulate_disconnection?: boolean | undefined;
|
|
135335
135409
|
can_unlock_with_code?: boolean | undefined;
|
|
135336
135410
|
can_run_thermostat_programs?: boolean | undefined;
|
|
135411
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
135412
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
135337
135413
|
}[];
|
|
135338
135414
|
};
|
|
135339
135415
|
};
|
|
@@ -140410,6 +140486,8 @@ type Routes = {
|
|
|
140410
140486
|
can_simulate_disconnection?: boolean | undefined;
|
|
140411
140487
|
can_unlock_with_code?: boolean | undefined;
|
|
140412
140488
|
can_run_thermostat_programs?: boolean | undefined;
|
|
140489
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
140490
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
140413
140491
|
};
|
|
140414
140492
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
140415
140493
|
device: {
|
|
@@ -141614,6 +141692,8 @@ type Routes = {
|
|
|
141614
141692
|
can_simulate_disconnection?: boolean | undefined;
|
|
141615
141693
|
can_unlock_with_code?: boolean | undefined;
|
|
141616
141694
|
can_run_thermostat_programs?: boolean | undefined;
|
|
141695
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
141696
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
141617
141697
|
};
|
|
141618
141698
|
};
|
|
141619
141699
|
};
|
|
@@ -141651,9 +141731,9 @@ type Routes = {
|
|
|
141651
141731
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
141652
141732
|
page_cursor?: (string | undefined) | null;
|
|
141653
141733
|
/** */
|
|
141654
|
-
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;
|
|
141734
|
+
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;
|
|
141655
141735
|
/** */
|
|
141656
|
-
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;
|
|
141736
|
+
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;
|
|
141657
141737
|
/**
|
|
141658
141738
|
* @deprecated Use `space_id`.*/
|
|
141659
141739
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -142868,6 +142948,8 @@ type Routes = {
|
|
|
142868
142948
|
can_simulate_disconnection?: boolean | undefined;
|
|
142869
142949
|
can_unlock_with_code?: boolean | undefined;
|
|
142870
142950
|
can_run_thermostat_programs?: boolean | undefined;
|
|
142951
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
142952
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
142871
142953
|
}[];
|
|
142872
142954
|
devices: {
|
|
142873
142955
|
/** ID of the device. */
|
|
@@ -144071,6 +144153,8 @@ type Routes = {
|
|
|
144071
144153
|
can_simulate_disconnection?: boolean | undefined;
|
|
144072
144154
|
can_unlock_with_code?: boolean | undefined;
|
|
144073
144155
|
can_run_thermostat_programs?: boolean | undefined;
|
|
144156
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
144157
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
144074
144158
|
}[];
|
|
144075
144159
|
};
|
|
144076
144160
|
};
|
|
@@ -149146,9 +149230,9 @@ type Routes = {
|
|
|
149146
149230
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
149147
149231
|
page_cursor?: (string | undefined) | null;
|
|
149148
149232
|
/** */
|
|
149149
|
-
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;
|
|
149233
|
+
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;
|
|
149150
149234
|
/** */
|
|
149151
|
-
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;
|
|
149235
|
+
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;
|
|
149152
149236
|
/**
|
|
149153
149237
|
* @deprecated Use `space_id`.*/
|
|
149154
149238
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -150363,6 +150447,8 @@ type Routes = {
|
|
|
150363
150447
|
can_simulate_disconnection?: boolean | undefined;
|
|
150364
150448
|
can_unlock_with_code?: boolean | undefined;
|
|
150365
150449
|
can_run_thermostat_programs?: boolean | undefined;
|
|
150450
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
150451
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
150366
150452
|
}[];
|
|
150367
150453
|
devices: {
|
|
150368
150454
|
/** ID of the device. */
|
|
@@ -151566,6 +151652,8 @@ type Routes = {
|
|
|
151566
151652
|
can_simulate_disconnection?: boolean | undefined;
|
|
151567
151653
|
can_unlock_with_code?: boolean | undefined;
|
|
151568
151654
|
can_run_thermostat_programs?: boolean | undefined;
|
|
151655
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
151656
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
151569
151657
|
}[];
|
|
151570
151658
|
};
|
|
151571
151659
|
};
|
|
@@ -159963,6 +160051,8 @@ type Routes = {
|
|
|
159963
160051
|
can_simulate_disconnection?: boolean | undefined;
|
|
159964
160052
|
can_unlock_with_code?: boolean | undefined;
|
|
159965
160053
|
can_run_thermostat_programs?: boolean | undefined;
|
|
160054
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
160055
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
159966
160056
|
}[] | undefined;
|
|
159967
160057
|
acs_entrances?: {
|
|
159968
160058
|
/** 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). */
|
|
@@ -165547,6 +165637,8 @@ type Routes = {
|
|
|
165547
165637
|
can_simulate_disconnection?: boolean | undefined;
|
|
165548
165638
|
can_unlock_with_code?: boolean | undefined;
|
|
165549
165639
|
can_run_thermostat_programs?: boolean | undefined;
|
|
165640
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
165641
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
165550
165642
|
};
|
|
165551
165643
|
};
|
|
165552
165644
|
};
|
|
@@ -168116,9 +168208,9 @@ type Routes = {
|
|
|
168116
168208
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
168117
168209
|
page_cursor?: (string | undefined) | null;
|
|
168118
168210
|
/** */
|
|
168119
|
-
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;
|
|
168211
|
+
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;
|
|
168120
168212
|
/** */
|
|
168121
|
-
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;
|
|
168213
|
+
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;
|
|
168122
168214
|
/**
|
|
168123
168215
|
* @deprecated Use `space_id`.*/
|
|
168124
168216
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -169333,6 +169425,8 @@ type Routes = {
|
|
|
169333
169425
|
can_simulate_disconnection?: boolean | undefined;
|
|
169334
169426
|
can_unlock_with_code?: boolean | undefined;
|
|
169335
169427
|
can_run_thermostat_programs?: boolean | undefined;
|
|
169428
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
169429
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
169336
169430
|
}[];
|
|
169337
169431
|
devices: {
|
|
169338
169432
|
/** ID of the device. */
|
|
@@ -170536,6 +170630,8 @@ type Routes = {
|
|
|
170536
170630
|
can_simulate_disconnection?: boolean | undefined;
|
|
170537
170631
|
can_unlock_with_code?: boolean | undefined;
|
|
170538
170632
|
can_run_thermostat_programs?: boolean | undefined;
|
|
170633
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
170634
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
170539
170635
|
}[];
|
|
170540
170636
|
};
|
|
170541
170637
|
};
|
|
@@ -177680,6 +177776,8 @@ type Routes = {
|
|
|
177680
177776
|
can_simulate_disconnection?: boolean | undefined;
|
|
177681
177777
|
can_unlock_with_code?: boolean | undefined;
|
|
177682
177778
|
can_run_thermostat_programs?: boolean | undefined;
|
|
177779
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
177780
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
177683
177781
|
}[];
|
|
177684
177782
|
/**
|
|
177685
177783
|
* @deprecated Use devices.*/
|
|
@@ -178885,6 +178983,8 @@ type Routes = {
|
|
|
178885
178983
|
can_simulate_disconnection?: boolean | undefined;
|
|
178886
178984
|
can_unlock_with_code?: boolean | undefined;
|
|
178887
178985
|
can_run_thermostat_programs?: boolean | undefined;
|
|
178986
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
178987
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
178888
178988
|
}[];
|
|
178889
178989
|
};
|
|
178890
178990
|
};
|
|
@@ -180849,6 +180949,8 @@ type Routes = {
|
|
|
180849
180949
|
can_simulate_disconnection?: boolean | undefined;
|
|
180850
180950
|
can_unlock_with_code?: boolean | undefined;
|
|
180851
180951
|
can_run_thermostat_programs?: boolean | undefined;
|
|
180952
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
180953
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
180852
180954
|
}[] | undefined;
|
|
180853
180955
|
acs_entrances?: {
|
|
180854
180956
|
/** 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). */
|
|
@@ -183495,6 +183597,8 @@ type Routes = {
|
|
|
183495
183597
|
can_simulate_disconnection?: boolean | undefined;
|
|
183496
183598
|
can_unlock_with_code?: boolean | undefined;
|
|
183497
183599
|
can_run_thermostat_programs?: boolean | undefined;
|
|
183600
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
183601
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
183498
183602
|
}[] | undefined;
|
|
183499
183603
|
connect_webviews?: {
|
|
183500
183604
|
/** ID of the Connect Webview. */
|