@seamapi/types 1.496.0 → 1.498.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 +107 -25
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +189 -10
- package/dist/index.cjs +107 -25
- 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 +80 -0
- package/lib/seam/connect/openapi.js +82 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +67 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +85 -2
- package/src/lib/seam/connect/route-types.ts +77 -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
|
};
|
|
@@ -73671,6 +73731,9 @@ declare const _default: {
|
|
|
73671
73731
|
'x-deprecated'?: never;
|
|
73672
73732
|
items?: never;
|
|
73673
73733
|
minLength?: never;
|
|
73734
|
+
default?: never;
|
|
73735
|
+
exclusiveMinimum?: never;
|
|
73736
|
+
minimum?: never;
|
|
73674
73737
|
};
|
|
73675
73738
|
} | {
|
|
73676
73739
|
in: string;
|
|
@@ -73684,6 +73747,9 @@ declare const _default: {
|
|
|
73684
73747
|
description?: never;
|
|
73685
73748
|
items?: never;
|
|
73686
73749
|
minLength?: never;
|
|
73750
|
+
default?: never;
|
|
73751
|
+
exclusiveMinimum?: never;
|
|
73752
|
+
minimum?: never;
|
|
73687
73753
|
};
|
|
73688
73754
|
} | {
|
|
73689
73755
|
in: string;
|
|
@@ -73700,6 +73766,9 @@ declare const _default: {
|
|
|
73700
73766
|
nullable?: never;
|
|
73701
73767
|
'x-deprecated'?: never;
|
|
73702
73768
|
minLength?: never;
|
|
73769
|
+
default?: never;
|
|
73770
|
+
exclusiveMinimum?: never;
|
|
73771
|
+
minimum?: never;
|
|
73703
73772
|
};
|
|
73704
73773
|
} | {
|
|
73705
73774
|
in: string;
|
|
@@ -73713,6 +73782,41 @@ declare const _default: {
|
|
|
73713
73782
|
nullable?: never;
|
|
73714
73783
|
'x-deprecated'?: never;
|
|
73715
73784
|
items?: never;
|
|
73785
|
+
default?: never;
|
|
73786
|
+
exclusiveMinimum?: never;
|
|
73787
|
+
minimum?: never;
|
|
73788
|
+
};
|
|
73789
|
+
} | {
|
|
73790
|
+
in: string;
|
|
73791
|
+
name: string;
|
|
73792
|
+
schema: {
|
|
73793
|
+
default: number;
|
|
73794
|
+
description: string;
|
|
73795
|
+
exclusiveMinimum: boolean;
|
|
73796
|
+
minimum: number;
|
|
73797
|
+
type: string;
|
|
73798
|
+
format?: never;
|
|
73799
|
+
deprecated?: never;
|
|
73800
|
+
nullable?: never;
|
|
73801
|
+
'x-deprecated'?: never;
|
|
73802
|
+
items?: never;
|
|
73803
|
+
minLength?: never;
|
|
73804
|
+
};
|
|
73805
|
+
} | {
|
|
73806
|
+
in: string;
|
|
73807
|
+
name: string;
|
|
73808
|
+
schema: {
|
|
73809
|
+
description: string;
|
|
73810
|
+
nullable: boolean;
|
|
73811
|
+
type: string;
|
|
73812
|
+
format?: never;
|
|
73813
|
+
deprecated?: never;
|
|
73814
|
+
'x-deprecated'?: never;
|
|
73815
|
+
items?: never;
|
|
73816
|
+
minLength?: never;
|
|
73817
|
+
default?: never;
|
|
73818
|
+
exclusiveMinimum?: never;
|
|
73819
|
+
minimum?: never;
|
|
73716
73820
|
};
|
|
73717
73821
|
})[];
|
|
73718
73822
|
responses: {
|
|
@@ -73730,6 +73834,9 @@ declare const _default: {
|
|
|
73730
73834
|
ok: {
|
|
73731
73835
|
type: string;
|
|
73732
73836
|
};
|
|
73837
|
+
pagination: {
|
|
73838
|
+
$ref: string;
|
|
73839
|
+
};
|
|
73733
73840
|
};
|
|
73734
73841
|
required: string[];
|
|
73735
73842
|
type: string;
|
|
@@ -73825,6 +73932,13 @@ declare const _default: {
|
|
|
73825
73932
|
format: string;
|
|
73826
73933
|
type: string;
|
|
73827
73934
|
};
|
|
73935
|
+
limit: {
|
|
73936
|
+
default: number;
|
|
73937
|
+
description: string;
|
|
73938
|
+
exclusiveMinimum: boolean;
|
|
73939
|
+
minimum: number;
|
|
73940
|
+
type: string;
|
|
73941
|
+
};
|
|
73828
73942
|
location_id: {
|
|
73829
73943
|
deprecated: boolean;
|
|
73830
73944
|
format: string;
|
|
@@ -73832,6 +73946,11 @@ declare const _default: {
|
|
|
73832
73946
|
type: string;
|
|
73833
73947
|
'x-deprecated': string;
|
|
73834
73948
|
};
|
|
73949
|
+
page_cursor: {
|
|
73950
|
+
description: string;
|
|
73951
|
+
nullable: boolean;
|
|
73952
|
+
type: string;
|
|
73953
|
+
};
|
|
73835
73954
|
search: {
|
|
73836
73955
|
description: string;
|
|
73837
73956
|
minLength: number;
|
|
@@ -73863,6 +73982,9 @@ declare const _default: {
|
|
|
73863
73982
|
ok: {
|
|
73864
73983
|
type: string;
|
|
73865
73984
|
};
|
|
73985
|
+
pagination: {
|
|
73986
|
+
$ref: string;
|
|
73987
|
+
};
|
|
73866
73988
|
};
|
|
73867
73989
|
required: string[];
|
|
73868
73990
|
type: string;
|
|
@@ -111804,6 +111926,8 @@ type Routes = {
|
|
|
111804
111926
|
can_simulate_disconnection?: boolean | undefined;
|
|
111805
111927
|
can_unlock_with_code?: boolean | undefined;
|
|
111806
111928
|
can_run_thermostat_programs?: boolean | undefined;
|
|
111929
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
111930
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
111807
111931
|
}[] | undefined;
|
|
111808
111932
|
acs_entrances?: {
|
|
111809
111933
|
/** 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 +115074,8 @@ type Routes = {
|
|
|
114950
115074
|
can_simulate_disconnection?: boolean | undefined;
|
|
114951
115075
|
can_unlock_with_code?: boolean | undefined;
|
|
114952
115076
|
can_run_thermostat_programs?: boolean | undefined;
|
|
115077
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
115078
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
114953
115079
|
}[] | undefined;
|
|
114954
115080
|
acs_entrances?: {
|
|
114955
115081
|
/** 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 +117722,8 @@ type Routes = {
|
|
|
117596
117722
|
can_simulate_disconnection?: boolean | undefined;
|
|
117597
117723
|
can_unlock_with_code?: boolean | undefined;
|
|
117598
117724
|
can_run_thermostat_programs?: boolean | undefined;
|
|
117725
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
117726
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
117599
117727
|
}[] | undefined;
|
|
117600
117728
|
connect_webviews?: {
|
|
117601
117729
|
/** ID of the Connect Webview. */
|
|
@@ -125711,6 +125839,10 @@ type Routes = {
|
|
|
125711
125839
|
acs_entrance_ids?: string[] | undefined;
|
|
125712
125840
|
/** String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`. */
|
|
125713
125841
|
search?: string | undefined;
|
|
125842
|
+
/** Maximum number of records to return per page. */
|
|
125843
|
+
limit?: number;
|
|
125844
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
125845
|
+
page_cursor?: (string | undefined) | null;
|
|
125714
125846
|
};
|
|
125715
125847
|
formData: {};
|
|
125716
125848
|
jsonResponse: {
|
|
@@ -125822,6 +125954,15 @@ type Routes = {
|
|
|
125822
125954
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
125823
125955
|
can_unlock_with_code?: boolean | undefined;
|
|
125824
125956
|
}[];
|
|
125957
|
+
/** Information about the current page of results. */
|
|
125958
|
+
pagination: {
|
|
125959
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
125960
|
+
next_page_cursor: string | null;
|
|
125961
|
+
/** Indicates whether there is another page of results after this one. */
|
|
125962
|
+
has_next_page: boolean;
|
|
125963
|
+
/** URL to get the next page of results. */
|
|
125964
|
+
next_page_url: string | null;
|
|
125965
|
+
};
|
|
125825
125966
|
};
|
|
125826
125967
|
};
|
|
125827
125968
|
'/acs/entrances/list_credentials_with_access': {
|
|
@@ -133148,6 +133289,8 @@ type Routes = {
|
|
|
133148
133289
|
can_simulate_disconnection?: boolean | undefined;
|
|
133149
133290
|
can_unlock_with_code?: boolean | undefined;
|
|
133150
133291
|
can_run_thermostat_programs?: boolean | undefined;
|
|
133292
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
133293
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
133151
133294
|
};
|
|
133152
133295
|
};
|
|
133153
133296
|
};
|
|
@@ -133185,9 +133328,9 @@ type Routes = {
|
|
|
133185
133328
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
133186
133329
|
page_cursor?: (string | undefined) | null;
|
|
133187
133330
|
/** */
|
|
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;
|
|
133331
|
+
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
133332
|
/** */
|
|
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;
|
|
133333
|
+
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
133334
|
/**
|
|
133192
133335
|
* @deprecated Use `space_id`.*/
|
|
133193
133336
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -134402,6 +134545,8 @@ type Routes = {
|
|
|
134402
134545
|
can_simulate_disconnection?: boolean | undefined;
|
|
134403
134546
|
can_unlock_with_code?: boolean | undefined;
|
|
134404
134547
|
can_run_thermostat_programs?: boolean | undefined;
|
|
134548
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
134549
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
134405
134550
|
}[];
|
|
134406
134551
|
/** Information about the current page of results. */
|
|
134407
134552
|
pagination: {
|
|
@@ -134443,6 +134588,8 @@ type Routes = {
|
|
|
134443
134588
|
can_simulate_disconnection?: boolean | undefined;
|
|
134444
134589
|
can_unlock_with_code?: boolean | undefined;
|
|
134445
134590
|
can_run_thermostat_programs?: boolean | undefined;
|
|
134591
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
134592
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
134446
134593
|
}[];
|
|
134447
134594
|
};
|
|
134448
134595
|
};
|
|
@@ -134901,6 +135048,8 @@ type Routes = {
|
|
|
134901
135048
|
can_simulate_disconnection?: boolean | undefined;
|
|
134902
135049
|
can_unlock_with_code?: boolean | undefined;
|
|
134903
135050
|
can_run_thermostat_programs?: boolean | undefined;
|
|
135051
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
135052
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
134904
135053
|
};
|
|
134905
135054
|
};
|
|
134906
135055
|
};
|
|
@@ -134938,9 +135087,9 @@ type Routes = {
|
|
|
134938
135087
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
134939
135088
|
page_cursor?: (string | undefined) | null;
|
|
134940
135089
|
/** */
|
|
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;
|
|
135090
|
+
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
135091
|
/** */
|
|
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;
|
|
135092
|
+
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
135093
|
/**
|
|
134945
135094
|
* @deprecated Use `space_id`.*/
|
|
134946
135095
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -135334,6 +135483,8 @@ type Routes = {
|
|
|
135334
135483
|
can_simulate_disconnection?: boolean | undefined;
|
|
135335
135484
|
can_unlock_with_code?: boolean | undefined;
|
|
135336
135485
|
can_run_thermostat_programs?: boolean | undefined;
|
|
135486
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
135487
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
135337
135488
|
}[];
|
|
135338
135489
|
};
|
|
135339
135490
|
};
|
|
@@ -140410,6 +140561,8 @@ type Routes = {
|
|
|
140410
140561
|
can_simulate_disconnection?: boolean | undefined;
|
|
140411
140562
|
can_unlock_with_code?: boolean | undefined;
|
|
140412
140563
|
can_run_thermostat_programs?: boolean | undefined;
|
|
140564
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
140565
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
140413
140566
|
};
|
|
140414
140567
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
140415
140568
|
device: {
|
|
@@ -141614,6 +141767,8 @@ type Routes = {
|
|
|
141614
141767
|
can_simulate_disconnection?: boolean | undefined;
|
|
141615
141768
|
can_unlock_with_code?: boolean | undefined;
|
|
141616
141769
|
can_run_thermostat_programs?: boolean | undefined;
|
|
141770
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
141771
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
141617
141772
|
};
|
|
141618
141773
|
};
|
|
141619
141774
|
};
|
|
@@ -141651,9 +141806,9 @@ type Routes = {
|
|
|
141651
141806
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
141652
141807
|
page_cursor?: (string | undefined) | null;
|
|
141653
141808
|
/** */
|
|
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;
|
|
141809
|
+
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
141810
|
/** */
|
|
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;
|
|
141811
|
+
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
141812
|
/**
|
|
141658
141813
|
* @deprecated Use `space_id`.*/
|
|
141659
141814
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -142868,6 +143023,8 @@ type Routes = {
|
|
|
142868
143023
|
can_simulate_disconnection?: boolean | undefined;
|
|
142869
143024
|
can_unlock_with_code?: boolean | undefined;
|
|
142870
143025
|
can_run_thermostat_programs?: boolean | undefined;
|
|
143026
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
143027
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
142871
143028
|
}[];
|
|
142872
143029
|
devices: {
|
|
142873
143030
|
/** ID of the device. */
|
|
@@ -144071,6 +144228,8 @@ type Routes = {
|
|
|
144071
144228
|
can_simulate_disconnection?: boolean | undefined;
|
|
144072
144229
|
can_unlock_with_code?: boolean | undefined;
|
|
144073
144230
|
can_run_thermostat_programs?: boolean | undefined;
|
|
144231
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
144232
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
144074
144233
|
}[];
|
|
144075
144234
|
};
|
|
144076
144235
|
};
|
|
@@ -149146,9 +149305,9 @@ type Routes = {
|
|
|
149146
149305
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
149147
149306
|
page_cursor?: (string | undefined) | null;
|
|
149148
149307
|
/** */
|
|
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;
|
|
149308
|
+
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
149309
|
/** */
|
|
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;
|
|
149310
|
+
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
149311
|
/**
|
|
149153
149312
|
* @deprecated Use `space_id`.*/
|
|
149154
149313
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -150363,6 +150522,8 @@ type Routes = {
|
|
|
150363
150522
|
can_simulate_disconnection?: boolean | undefined;
|
|
150364
150523
|
can_unlock_with_code?: boolean | undefined;
|
|
150365
150524
|
can_run_thermostat_programs?: boolean | undefined;
|
|
150525
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
150526
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
150366
150527
|
}[];
|
|
150367
150528
|
devices: {
|
|
150368
150529
|
/** ID of the device. */
|
|
@@ -151566,6 +151727,8 @@ type Routes = {
|
|
|
151566
151727
|
can_simulate_disconnection?: boolean | undefined;
|
|
151567
151728
|
can_unlock_with_code?: boolean | undefined;
|
|
151568
151729
|
can_run_thermostat_programs?: boolean | undefined;
|
|
151730
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
151731
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
151569
151732
|
}[];
|
|
151570
151733
|
};
|
|
151571
151734
|
};
|
|
@@ -159963,6 +160126,8 @@ type Routes = {
|
|
|
159963
160126
|
can_simulate_disconnection?: boolean | undefined;
|
|
159964
160127
|
can_unlock_with_code?: boolean | undefined;
|
|
159965
160128
|
can_run_thermostat_programs?: boolean | undefined;
|
|
160129
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
160130
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
159966
160131
|
}[] | undefined;
|
|
159967
160132
|
acs_entrances?: {
|
|
159968
160133
|
/** 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 +165712,8 @@ type Routes = {
|
|
|
165547
165712
|
can_simulate_disconnection?: boolean | undefined;
|
|
165548
165713
|
can_unlock_with_code?: boolean | undefined;
|
|
165549
165714
|
can_run_thermostat_programs?: boolean | undefined;
|
|
165715
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
165716
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
165550
165717
|
};
|
|
165551
165718
|
};
|
|
165552
165719
|
};
|
|
@@ -168116,9 +168283,9 @@ type Routes = {
|
|
|
168116
168283
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
168117
168284
|
page_cursor?: (string | undefined) | null;
|
|
168118
168285
|
/** */
|
|
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;
|
|
168286
|
+
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
168287
|
/** */
|
|
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;
|
|
168288
|
+
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
168289
|
/**
|
|
168123
168290
|
* @deprecated Use `space_id`.*/
|
|
168124
168291
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -169333,6 +169500,8 @@ type Routes = {
|
|
|
169333
169500
|
can_simulate_disconnection?: boolean | undefined;
|
|
169334
169501
|
can_unlock_with_code?: boolean | undefined;
|
|
169335
169502
|
can_run_thermostat_programs?: boolean | undefined;
|
|
169503
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
169504
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
169336
169505
|
}[];
|
|
169337
169506
|
devices: {
|
|
169338
169507
|
/** ID of the device. */
|
|
@@ -170536,6 +170705,8 @@ type Routes = {
|
|
|
170536
170705
|
can_simulate_disconnection?: boolean | undefined;
|
|
170537
170706
|
can_unlock_with_code?: boolean | undefined;
|
|
170538
170707
|
can_run_thermostat_programs?: boolean | undefined;
|
|
170708
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
170709
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
170539
170710
|
}[];
|
|
170540
170711
|
};
|
|
170541
170712
|
};
|
|
@@ -177680,6 +177851,8 @@ type Routes = {
|
|
|
177680
177851
|
can_simulate_disconnection?: boolean | undefined;
|
|
177681
177852
|
can_unlock_with_code?: boolean | undefined;
|
|
177682
177853
|
can_run_thermostat_programs?: boolean | undefined;
|
|
177854
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
177855
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
177683
177856
|
}[];
|
|
177684
177857
|
/**
|
|
177685
177858
|
* @deprecated Use devices.*/
|
|
@@ -178885,6 +179058,8 @@ type Routes = {
|
|
|
178885
179058
|
can_simulate_disconnection?: boolean | undefined;
|
|
178886
179059
|
can_unlock_with_code?: boolean | undefined;
|
|
178887
179060
|
can_run_thermostat_programs?: boolean | undefined;
|
|
179061
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
179062
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
178888
179063
|
}[];
|
|
178889
179064
|
};
|
|
178890
179065
|
};
|
|
@@ -180849,6 +181024,8 @@ type Routes = {
|
|
|
180849
181024
|
can_simulate_disconnection?: boolean | undefined;
|
|
180850
181025
|
can_unlock_with_code?: boolean | undefined;
|
|
180851
181026
|
can_run_thermostat_programs?: boolean | undefined;
|
|
181027
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
181028
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
180852
181029
|
}[] | undefined;
|
|
180853
181030
|
acs_entrances?: {
|
|
180854
181031
|
/** 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 +183672,8 @@ type Routes = {
|
|
|
183495
183672
|
can_simulate_disconnection?: boolean | undefined;
|
|
183496
183673
|
can_unlock_with_code?: boolean | undefined;
|
|
183497
183674
|
can_run_thermostat_programs?: boolean | undefined;
|
|
183675
|
+
can_simulate_hub_connection?: boolean | undefined;
|
|
183676
|
+
can_simulate_hub_disconnection?: boolean | undefined;
|
|
183498
183677
|
}[] | undefined;
|
|
183499
183678
|
connect_webviews?: {
|
|
183500
183679
|
/** ID of the Connect Webview. */
|