@seamapi/types 1.526.0 → 1.528.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 +59 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +71 -10
- package/dist/index.cjs +59 -21
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +37 -0
- package/lib/seam/connect/models/customer/customer-delete-data.d.ts +3 -0
- package/lib/seam/connect/models/customer/customer-delete-data.js +5 -0
- package/lib/seam/connect/models/customer/customer-delete-data.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.d.ts +6 -0
- package/lib/seam/connect/models/devices/device.js +1 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +4 -0
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +37 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +34 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-delete-data.ts +6 -0
- package/src/lib/seam/connect/models/devices/device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +38 -0
- package/src/lib/seam/connect/route-types.ts +34 -0
package/dist/connect.d.cts
CHANGED
|
@@ -13127,6 +13127,7 @@ declare const batch: z.ZodObject<{
|
|
|
13127
13127
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
13128
13128
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
13129
13129
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
13130
|
+
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
13130
13131
|
}, "strip", z.ZodTypeAny, {
|
|
13131
13132
|
display_name: string;
|
|
13132
13133
|
device_id: string;
|
|
@@ -13766,6 +13767,7 @@ declare const batch: z.ZodObject<{
|
|
|
13766
13767
|
can_run_thermostat_programs?: boolean | undefined;
|
|
13767
13768
|
can_simulate_hub_connection?: boolean | undefined;
|
|
13768
13769
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
13770
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
13769
13771
|
nickname?: string | undefined;
|
|
13770
13772
|
}, {
|
|
13771
13773
|
display_name: string;
|
|
@@ -14406,6 +14408,7 @@ declare const batch: z.ZodObject<{
|
|
|
14406
14408
|
can_run_thermostat_programs?: boolean | undefined;
|
|
14407
14409
|
can_simulate_hub_connection?: boolean | undefined;
|
|
14408
14410
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
14411
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
14409
14412
|
nickname?: string | undefined;
|
|
14410
14413
|
}>, "many">>;
|
|
14411
14414
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -23588,6 +23591,7 @@ declare const batch: z.ZodObject<{
|
|
|
23588
23591
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
23589
23592
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
23590
23593
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23594
|
+
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
23591
23595
|
}, "device_id" | "workspace_id" | "created_at" | "errors" | "connected_account_id" | "warnings" | "device_type" | "capabilities_supported" | "location"> & {
|
|
23592
23596
|
is_managed: z.ZodLiteral<false>;
|
|
23593
23597
|
properties: z.ZodObject<Pick<{
|
|
@@ -23740,6 +23744,7 @@ declare const batch: z.ZodObject<{
|
|
|
23740
23744
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
23741
23745
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
23742
23746
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23747
|
+
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
23743
23748
|
}, "strip", z.ZodTypeAny, {
|
|
23744
23749
|
device_id: string;
|
|
23745
23750
|
workspace_id: string;
|
|
@@ -23970,6 +23975,7 @@ declare const batch: z.ZodObject<{
|
|
|
23970
23975
|
can_run_thermostat_programs?: boolean | undefined;
|
|
23971
23976
|
can_simulate_hub_connection?: boolean | undefined;
|
|
23972
23977
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
23978
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
23973
23979
|
}, {
|
|
23974
23980
|
device_id: string;
|
|
23975
23981
|
workspace_id: string;
|
|
@@ -24200,6 +24206,7 @@ declare const batch: z.ZodObject<{
|
|
|
24200
24206
|
can_run_thermostat_programs?: boolean | undefined;
|
|
24201
24207
|
can_simulate_hub_connection?: boolean | undefined;
|
|
24202
24208
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
24209
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
24203
24210
|
}>, "many">>;
|
|
24204
24211
|
connect_webviews: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24205
24212
|
connect_webview_id: z.ZodString;
|
|
@@ -31216,6 +31223,7 @@ declare const batch: z.ZodObject<{
|
|
|
31216
31223
|
can_run_thermostat_programs?: boolean | undefined;
|
|
31217
31224
|
can_simulate_hub_connection?: boolean | undefined;
|
|
31218
31225
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
31226
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
31219
31227
|
nickname?: string | undefined;
|
|
31220
31228
|
}[] | undefined;
|
|
31221
31229
|
acs_entrances?: {
|
|
@@ -32830,6 +32838,7 @@ declare const batch: z.ZodObject<{
|
|
|
32830
32838
|
can_run_thermostat_programs?: boolean | undefined;
|
|
32831
32839
|
can_simulate_hub_connection?: boolean | undefined;
|
|
32832
32840
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
32841
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
32833
32842
|
}[] | undefined;
|
|
32834
32843
|
connect_webviews?: {
|
|
32835
32844
|
status: "pending" | "failed" | "authorized";
|
|
@@ -35065,6 +35074,7 @@ declare const batch: z.ZodObject<{
|
|
|
35065
35074
|
can_run_thermostat_programs?: boolean | undefined;
|
|
35066
35075
|
can_simulate_hub_connection?: boolean | undefined;
|
|
35067
35076
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
35077
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
35068
35078
|
nickname?: string | undefined;
|
|
35069
35079
|
}[] | undefined;
|
|
35070
35080
|
acs_entrances?: {
|
|
@@ -36679,6 +36689,7 @@ declare const batch: z.ZodObject<{
|
|
|
36679
36689
|
can_run_thermostat_programs?: boolean | undefined;
|
|
36680
36690
|
can_simulate_hub_connection?: boolean | undefined;
|
|
36681
36691
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
36692
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
36682
36693
|
}[] | undefined;
|
|
36683
36694
|
connect_webviews?: {
|
|
36684
36695
|
status: "pending" | "failed" | "authorized";
|
|
@@ -42332,6 +42343,7 @@ declare const device: z.ZodObject<{
|
|
|
42332
42343
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
42333
42344
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
42334
42345
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
42346
|
+
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
42335
42347
|
}, "strip", z.ZodTypeAny, {
|
|
42336
42348
|
display_name: string;
|
|
42337
42349
|
device_id: string;
|
|
@@ -42971,6 +42983,7 @@ declare const device: z.ZodObject<{
|
|
|
42971
42983
|
can_run_thermostat_programs?: boolean | undefined;
|
|
42972
42984
|
can_simulate_hub_connection?: boolean | undefined;
|
|
42973
42985
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
42986
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
42974
42987
|
nickname?: string | undefined;
|
|
42975
42988
|
}, {
|
|
42976
42989
|
display_name: string;
|
|
@@ -43611,6 +43624,7 @@ declare const device: z.ZodObject<{
|
|
|
43611
43624
|
can_run_thermostat_programs?: boolean | undefined;
|
|
43612
43625
|
can_simulate_hub_connection?: boolean | undefined;
|
|
43613
43626
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
43627
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
43614
43628
|
nickname?: string | undefined;
|
|
43615
43629
|
}>;
|
|
43616
43630
|
type Device = z.infer<typeof device>;
|
|
@@ -43687,6 +43701,7 @@ declare const device_provider: z.ZodObject<{
|
|
|
43687
43701
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
43688
43702
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
43689
43703
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
43704
|
+
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
43690
43705
|
}, "strip", z.ZodTypeAny, {
|
|
43691
43706
|
display_name: string;
|
|
43692
43707
|
image_url: string;
|
|
@@ -43707,6 +43722,7 @@ declare const device_provider: z.ZodObject<{
|
|
|
43707
43722
|
can_run_thermostat_programs?: boolean | undefined;
|
|
43708
43723
|
can_simulate_hub_connection?: boolean | undefined;
|
|
43709
43724
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
43725
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
43710
43726
|
}, {
|
|
43711
43727
|
display_name: string;
|
|
43712
43728
|
image_url: string;
|
|
@@ -43727,6 +43743,7 @@ declare const device_provider: z.ZodObject<{
|
|
|
43727
43743
|
can_run_thermostat_programs?: boolean | undefined;
|
|
43728
43744
|
can_simulate_hub_connection?: boolean | undefined;
|
|
43729
43745
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
43746
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
43730
43747
|
}>;
|
|
43731
43748
|
type DeviceProvider = z.infer<typeof device_provider>;
|
|
43732
43749
|
|
|
@@ -46483,6 +46500,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46483
46500
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
46484
46501
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
46485
46502
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
46503
|
+
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
46486
46504
|
}, "device_id" | "workspace_id" | "created_at" | "errors" | "connected_account_id" | "warnings" | "device_type" | "capabilities_supported" | "location"> & {
|
|
46487
46505
|
is_managed: z.ZodLiteral<false>;
|
|
46488
46506
|
properties: z.ZodObject<Pick<{
|
|
@@ -46635,6 +46653,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46635
46653
|
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
46636
46654
|
can_simulate_hub_connection: z.ZodOptional<z.ZodBoolean>;
|
|
46637
46655
|
can_simulate_hub_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
46656
|
+
can_simulate_paid_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
46638
46657
|
}, "strip", z.ZodTypeAny, {
|
|
46639
46658
|
device_id: string;
|
|
46640
46659
|
workspace_id: string;
|
|
@@ -46865,6 +46884,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46865
46884
|
can_run_thermostat_programs?: boolean | undefined;
|
|
46866
46885
|
can_simulate_hub_connection?: boolean | undefined;
|
|
46867
46886
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
46887
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
46868
46888
|
}, {
|
|
46869
46889
|
device_id: string;
|
|
46870
46890
|
workspace_id: string;
|
|
@@ -47095,6 +47115,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47095
47115
|
can_run_thermostat_programs?: boolean | undefined;
|
|
47096
47116
|
can_simulate_hub_connection?: boolean | undefined;
|
|
47097
47117
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
47118
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
47098
47119
|
}>;
|
|
47099
47120
|
type UnmanagedDevice = z.infer<typeof unmanaged_device>;
|
|
47100
47121
|
|
|
@@ -54962,6 +54983,9 @@ declare const _default: {
|
|
|
54962
54983
|
can_simulate_hub_disconnection: {
|
|
54963
54984
|
type: string;
|
|
54964
54985
|
};
|
|
54986
|
+
can_simulate_paid_subscription: {
|
|
54987
|
+
type: string;
|
|
54988
|
+
};
|
|
54965
54989
|
can_simulate_removal: {
|
|
54966
54990
|
type: string;
|
|
54967
54991
|
};
|
|
@@ -57434,6 +57458,9 @@ declare const _default: {
|
|
|
57434
57458
|
can_simulate_hub_disconnection: {
|
|
57435
57459
|
type: string;
|
|
57436
57460
|
};
|
|
57461
|
+
can_simulate_paid_subscription: {
|
|
57462
|
+
type: string;
|
|
57463
|
+
};
|
|
57437
57464
|
can_simulate_removal: {
|
|
57438
57465
|
type: string;
|
|
57439
57466
|
};
|
|
@@ -63378,6 +63405,9 @@ declare const _default: {
|
|
|
63378
63405
|
can_simulate_hub_disconnection: {
|
|
63379
63406
|
type: string;
|
|
63380
63407
|
};
|
|
63408
|
+
can_simulate_paid_subscription: {
|
|
63409
|
+
type: string;
|
|
63410
|
+
};
|
|
63381
63411
|
can_simulate_removal: {
|
|
63382
63412
|
type: string;
|
|
63383
63413
|
};
|
|
@@ -80355,6 +80385,13 @@ declare const _default: {
|
|
|
80355
80385
|
};
|
|
80356
80386
|
type: string;
|
|
80357
80387
|
};
|
|
80388
|
+
customer_keys: {
|
|
80389
|
+
description: string;
|
|
80390
|
+
items: {
|
|
80391
|
+
type: string;
|
|
80392
|
+
};
|
|
80393
|
+
type: string;
|
|
80394
|
+
};
|
|
80358
80395
|
facility_keys: {
|
|
80359
80396
|
description: string;
|
|
80360
80397
|
items: {
|
|
@@ -112429,6 +112466,7 @@ type Routes = {
|
|
|
112429
112466
|
can_run_thermostat_programs?: boolean | undefined;
|
|
112430
112467
|
can_simulate_hub_connection?: boolean | undefined;
|
|
112431
112468
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
112469
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
112432
112470
|
}[] | undefined;
|
|
112433
112471
|
acs_entrances?: {
|
|
112434
112472
|
/** 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). */
|
|
@@ -115551,6 +115589,7 @@ type Routes = {
|
|
|
115551
115589
|
can_run_thermostat_programs?: boolean | undefined;
|
|
115552
115590
|
can_simulate_hub_connection?: boolean | undefined;
|
|
115553
115591
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
115592
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
115554
115593
|
}[] | undefined;
|
|
115555
115594
|
acs_entrances?: {
|
|
115556
115595
|
/** 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). */
|
|
@@ -118201,6 +118240,7 @@ type Routes = {
|
|
|
118201
118240
|
can_run_thermostat_programs?: boolean | undefined;
|
|
118202
118241
|
can_simulate_hub_connection?: boolean | undefined;
|
|
118203
118242
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
118243
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
118204
118244
|
}[] | undefined;
|
|
118205
118245
|
connect_webviews?: {
|
|
118206
118246
|
/** ID of the Connect Webview. */
|
|
@@ -132382,6 +132422,8 @@ type Routes = {
|
|
|
132382
132422
|
queryParams: {};
|
|
132383
132423
|
jsonBody: {};
|
|
132384
132424
|
commonParams: {
|
|
132425
|
+
/** List of customer keys to delete all data for. */
|
|
132426
|
+
customer_keys?: string[] | undefined;
|
|
132385
132427
|
/** List of space keys to delete. */
|
|
132386
132428
|
space_keys?: string[] | undefined;
|
|
132387
132429
|
/** List of property keys to delete. */
|
|
@@ -133863,6 +133905,7 @@ type Routes = {
|
|
|
133863
133905
|
can_run_thermostat_programs?: boolean | undefined;
|
|
133864
133906
|
can_simulate_hub_connection?: boolean | undefined;
|
|
133865
133907
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
133908
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
133866
133909
|
};
|
|
133867
133910
|
};
|
|
133868
133911
|
};
|
|
@@ -133901,9 +133944,9 @@ type Routes = {
|
|
|
133901
133944
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
133902
133945
|
page_cursor?: (string | undefined) | null;
|
|
133903
133946
|
/** */
|
|
133904
|
-
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;
|
|
133947
|
+
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' | 'can_simulate_paid_subscription')[] | undefined;
|
|
133905
133948
|
/** */
|
|
133906
|
-
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;
|
|
133949
|
+
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' | 'can_simulate_paid_subscription')[] | undefined;
|
|
133907
133950
|
/**
|
|
133908
133951
|
* @deprecated Use `space_id`.*/
|
|
133909
133952
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -135086,6 +135129,7 @@ type Routes = {
|
|
|
135086
135129
|
can_run_thermostat_programs?: boolean | undefined;
|
|
135087
135130
|
can_simulate_hub_connection?: boolean | undefined;
|
|
135088
135131
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
135132
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
135089
135133
|
}[];
|
|
135090
135134
|
/** Information about the current page of results. */
|
|
135091
135135
|
pagination: {
|
|
@@ -135129,6 +135173,7 @@ type Routes = {
|
|
|
135129
135173
|
can_run_thermostat_programs?: boolean | undefined;
|
|
135130
135174
|
can_simulate_hub_connection?: boolean | undefined;
|
|
135131
135175
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
135176
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
135132
135177
|
}[];
|
|
135133
135178
|
};
|
|
135134
135179
|
};
|
|
@@ -135591,6 +135636,7 @@ type Routes = {
|
|
|
135591
135636
|
can_run_thermostat_programs?: boolean | undefined;
|
|
135592
135637
|
can_simulate_hub_connection?: boolean | undefined;
|
|
135593
135638
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
135639
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
135594
135640
|
};
|
|
135595
135641
|
};
|
|
135596
135642
|
};
|
|
@@ -135629,9 +135675,9 @@ type Routes = {
|
|
|
135629
135675
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
135630
135676
|
page_cursor?: (string | undefined) | null;
|
|
135631
135677
|
/** */
|
|
135632
|
-
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;
|
|
135678
|
+
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' | 'can_simulate_paid_subscription')[] | undefined;
|
|
135633
135679
|
/** */
|
|
135634
|
-
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;
|
|
135680
|
+
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' | 'can_simulate_paid_subscription')[] | undefined;
|
|
135635
135681
|
/**
|
|
135636
135682
|
* @deprecated Use `space_id`.*/
|
|
135637
135683
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -136029,6 +136075,7 @@ type Routes = {
|
|
|
136029
136075
|
can_run_thermostat_programs?: boolean | undefined;
|
|
136030
136076
|
can_simulate_hub_connection?: boolean | undefined;
|
|
136031
136077
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
136078
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
136032
136079
|
}[];
|
|
136033
136080
|
};
|
|
136034
136081
|
};
|
|
@@ -141115,6 +141162,7 @@ type Routes = {
|
|
|
141115
141162
|
can_run_thermostat_programs?: boolean | undefined;
|
|
141116
141163
|
can_simulate_hub_connection?: boolean | undefined;
|
|
141117
141164
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
141165
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
141118
141166
|
};
|
|
141119
141167
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
141120
141168
|
device: {
|
|
@@ -142287,6 +142335,7 @@ type Routes = {
|
|
|
142287
142335
|
can_run_thermostat_programs?: boolean | undefined;
|
|
142288
142336
|
can_simulate_hub_connection?: boolean | undefined;
|
|
142289
142337
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
142338
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
142290
142339
|
};
|
|
142291
142340
|
};
|
|
142292
142341
|
};
|
|
@@ -142325,9 +142374,9 @@ type Routes = {
|
|
|
142325
142374
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
142326
142375
|
page_cursor?: (string | undefined) | null;
|
|
142327
142376
|
/** */
|
|
142328
|
-
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;
|
|
142377
|
+
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' | 'can_simulate_paid_subscription')[] | undefined;
|
|
142329
142378
|
/** */
|
|
142330
|
-
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;
|
|
142379
|
+
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' | 'can_simulate_paid_subscription')[] | undefined;
|
|
142331
142380
|
/**
|
|
142332
142381
|
* @deprecated Use `space_id`.*/
|
|
142333
142382
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -143510,6 +143559,7 @@ type Routes = {
|
|
|
143510
143559
|
can_run_thermostat_programs?: boolean | undefined;
|
|
143511
143560
|
can_simulate_hub_connection?: boolean | undefined;
|
|
143512
143561
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
143562
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
143513
143563
|
}[];
|
|
143514
143564
|
devices: {
|
|
143515
143565
|
/** ID of the device. */
|
|
@@ -144681,6 +144731,7 @@ type Routes = {
|
|
|
144681
144731
|
can_run_thermostat_programs?: boolean | undefined;
|
|
144682
144732
|
can_simulate_hub_connection?: boolean | undefined;
|
|
144683
144733
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
144734
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
144684
144735
|
}[];
|
|
144685
144736
|
};
|
|
144686
144737
|
};
|
|
@@ -149757,9 +149808,9 @@ type Routes = {
|
|
|
149757
149808
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
149758
149809
|
page_cursor?: (string | undefined) | null;
|
|
149759
149810
|
/** */
|
|
149760
|
-
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;
|
|
149811
|
+
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' | 'can_simulate_paid_subscription')[] | undefined;
|
|
149761
149812
|
/** */
|
|
149762
|
-
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;
|
|
149813
|
+
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' | 'can_simulate_paid_subscription')[] | undefined;
|
|
149763
149814
|
/**
|
|
149764
149815
|
* @deprecated Use `space_id`.*/
|
|
149765
149816
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -150942,6 +150993,7 @@ type Routes = {
|
|
|
150942
150993
|
can_run_thermostat_programs?: boolean | undefined;
|
|
150943
150994
|
can_simulate_hub_connection?: boolean | undefined;
|
|
150944
150995
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
150996
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
150945
150997
|
}[];
|
|
150946
150998
|
devices: {
|
|
150947
150999
|
/** ID of the device. */
|
|
@@ -152113,6 +152165,7 @@ type Routes = {
|
|
|
152113
152165
|
can_run_thermostat_programs?: boolean | undefined;
|
|
152114
152166
|
can_simulate_hub_connection?: boolean | undefined;
|
|
152115
152167
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
152168
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
152116
152169
|
}[];
|
|
152117
152170
|
};
|
|
152118
152171
|
};
|
|
@@ -160576,6 +160629,7 @@ type Routes = {
|
|
|
160576
160629
|
can_run_thermostat_programs?: boolean | undefined;
|
|
160577
160630
|
can_simulate_hub_connection?: boolean | undefined;
|
|
160578
160631
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
160632
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
160579
160633
|
}[] | undefined;
|
|
160580
160634
|
acs_entrances?: {
|
|
160581
160635
|
/** 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). */
|
|
@@ -166130,6 +166184,7 @@ type Routes = {
|
|
|
166130
166184
|
can_run_thermostat_programs?: boolean | undefined;
|
|
166131
166185
|
can_simulate_hub_connection?: boolean | undefined;
|
|
166132
166186
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
166187
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
166133
166188
|
};
|
|
166134
166189
|
};
|
|
166135
166190
|
};
|
|
@@ -168700,9 +168755,9 @@ type Routes = {
|
|
|
168700
168755
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
168701
168756
|
page_cursor?: (string | undefined) | null;
|
|
168702
168757
|
/** */
|
|
168703
|
-
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;
|
|
168758
|
+
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' | 'can_simulate_paid_subscription')[] | undefined;
|
|
168704
168759
|
/** */
|
|
168705
|
-
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;
|
|
168760
|
+
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' | 'can_simulate_paid_subscription')[] | undefined;
|
|
168706
168761
|
/**
|
|
168707
168762
|
* @deprecated Use `space_id`.*/
|
|
168708
168763
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -169885,6 +169940,7 @@ type Routes = {
|
|
|
169885
169940
|
can_run_thermostat_programs?: boolean | undefined;
|
|
169886
169941
|
can_simulate_hub_connection?: boolean | undefined;
|
|
169887
169942
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
169943
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
169888
169944
|
}[];
|
|
169889
169945
|
devices: {
|
|
169890
169946
|
/** ID of the device. */
|
|
@@ -171056,6 +171112,7 @@ type Routes = {
|
|
|
171056
171112
|
can_run_thermostat_programs?: boolean | undefined;
|
|
171057
171113
|
can_simulate_hub_connection?: boolean | undefined;
|
|
171058
171114
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
171115
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
171059
171116
|
}[];
|
|
171060
171117
|
};
|
|
171061
171118
|
};
|
|
@@ -178168,6 +178225,7 @@ type Routes = {
|
|
|
178168
178225
|
can_run_thermostat_programs?: boolean | undefined;
|
|
178169
178226
|
can_simulate_hub_connection?: boolean | undefined;
|
|
178170
178227
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
178228
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
178171
178229
|
}[];
|
|
178172
178230
|
/**
|
|
178173
178231
|
* @deprecated Use devices.*/
|
|
@@ -179341,6 +179399,7 @@ type Routes = {
|
|
|
179341
179399
|
can_run_thermostat_programs?: boolean | undefined;
|
|
179342
179400
|
can_simulate_hub_connection?: boolean | undefined;
|
|
179343
179401
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
179402
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
179344
179403
|
}[];
|
|
179345
179404
|
};
|
|
179346
179405
|
};
|
|
@@ -181276,6 +181335,7 @@ type Routes = {
|
|
|
181276
181335
|
can_run_thermostat_programs?: boolean | undefined;
|
|
181277
181336
|
can_simulate_hub_connection?: boolean | undefined;
|
|
181278
181337
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
181338
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
181279
181339
|
}[] | undefined;
|
|
181280
181340
|
acs_entrances?: {
|
|
181281
181341
|
/** 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). */
|
|
@@ -183926,6 +183986,7 @@ type Routes = {
|
|
|
183926
183986
|
can_run_thermostat_programs?: boolean | undefined;
|
|
183927
183987
|
can_simulate_hub_connection?: boolean | undefined;
|
|
183928
183988
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
183989
|
+
can_simulate_paid_subscription?: boolean | undefined;
|
|
183929
183990
|
}[] | undefined;
|
|
183930
183991
|
connect_webviews?: {
|
|
183931
183992
|
/** ID of the Connect Webview. */
|