@seamapi/types 1.466.1 → 1.467.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 +70 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +180 -10
- package/dist/index.cjs +70 -22
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +119 -0
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +14 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.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 +16 -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 +10 -0
- package/lib/seam/connect/openapi.d.ts +23 -0
- package/lib/seam/connect/openapi.js +35 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +14 -0
- package/src/lib/seam/connect/models/devices/device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +37 -0
- package/src/lib/seam/connect/route-types.ts +168 -0
package/dist/connect.d.cts
CHANGED
|
@@ -12312,6 +12312,8 @@ declare const batch: z.ZodObject<{
|
|
|
12312
12312
|
upper_limit_celsius: number | null;
|
|
12313
12313
|
upper_limit_fahrenheit: number | null;
|
|
12314
12314
|
}>>>;
|
|
12315
|
+
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
12316
|
+
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
12315
12317
|
}, "strip", z.ZodTypeAny, {
|
|
12316
12318
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
12317
12319
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -12442,6 +12444,8 @@ declare const batch: z.ZodObject<{
|
|
|
12442
12444
|
upper_limit_celsius: number | null;
|
|
12443
12445
|
upper_limit_fahrenheit: number | null;
|
|
12444
12446
|
} | undefined;
|
|
12447
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
12448
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
12445
12449
|
}, {
|
|
12446
12450
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
12447
12451
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -12572,6 +12576,8 @@ declare const batch: z.ZodObject<{
|
|
|
12572
12576
|
upper_limit_celsius: number | null;
|
|
12573
12577
|
upper_limit_fahrenheit: number | null;
|
|
12574
12578
|
} | undefined;
|
|
12579
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
12580
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
12575
12581
|
}>>>;
|
|
12576
12582
|
location: z.ZodNullable<z.ZodObject<{
|
|
12577
12583
|
location_name: z.ZodOptional<z.ZodString>;
|
|
@@ -13178,6 +13184,7 @@ declare const batch: z.ZodObject<{
|
|
|
13178
13184
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
13179
13185
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
13180
13186
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
13187
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
13181
13188
|
}, "strip", z.ZodTypeAny, {
|
|
13182
13189
|
display_name: string;
|
|
13183
13190
|
device_id: string;
|
|
@@ -13812,6 +13819,8 @@ declare const batch: z.ZodObject<{
|
|
|
13812
13819
|
upper_limit_celsius: number | null;
|
|
13813
13820
|
upper_limit_fahrenheit: number | null;
|
|
13814
13821
|
} | undefined;
|
|
13822
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
13823
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
13815
13824
|
};
|
|
13816
13825
|
location: {
|
|
13817
13826
|
location_name?: string | undefined;
|
|
@@ -13830,6 +13839,7 @@ declare const batch: z.ZodObject<{
|
|
|
13830
13839
|
can_simulate_connection?: boolean | undefined;
|
|
13831
13840
|
can_simulate_disconnection?: boolean | undefined;
|
|
13832
13841
|
can_unlock_with_code?: boolean | undefined;
|
|
13842
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
13833
13843
|
nickname?: string | undefined;
|
|
13834
13844
|
}, {
|
|
13835
13845
|
display_name: string;
|
|
@@ -14465,6 +14475,8 @@ declare const batch: z.ZodObject<{
|
|
|
14465
14475
|
upper_limit_celsius: number | null;
|
|
14466
14476
|
upper_limit_fahrenheit: number | null;
|
|
14467
14477
|
} | undefined;
|
|
14478
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
14479
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
14468
14480
|
};
|
|
14469
14481
|
location: {
|
|
14470
14482
|
location_name?: string | undefined;
|
|
@@ -14483,6 +14495,7 @@ declare const batch: z.ZodObject<{
|
|
|
14483
14495
|
can_simulate_connection?: boolean | undefined;
|
|
14484
14496
|
can_simulate_disconnection?: boolean | undefined;
|
|
14485
14497
|
can_unlock_with_code?: boolean | undefined;
|
|
14498
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
14486
14499
|
nickname?: string | undefined;
|
|
14487
14500
|
}>, "many">>;
|
|
14488
14501
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -22247,6 +22260,8 @@ declare const batch: z.ZodObject<{
|
|
|
22247
22260
|
upper_limit_celsius: number | null;
|
|
22248
22261
|
upper_limit_fahrenheit: number | null;
|
|
22249
22262
|
}>>>;
|
|
22263
|
+
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
22264
|
+
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
22250
22265
|
}, "strip", z.ZodTypeAny, {
|
|
22251
22266
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
22252
22267
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -22377,6 +22392,8 @@ declare const batch: z.ZodObject<{
|
|
|
22377
22392
|
upper_limit_celsius: number | null;
|
|
22378
22393
|
upper_limit_fahrenheit: number | null;
|
|
22379
22394
|
} | undefined;
|
|
22395
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
22396
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
22380
22397
|
}, {
|
|
22381
22398
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
22382
22399
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -22507,6 +22524,8 @@ declare const batch: z.ZodObject<{
|
|
|
22507
22524
|
upper_limit_celsius: number | null;
|
|
22508
22525
|
upper_limit_fahrenheit: number | null;
|
|
22509
22526
|
} | undefined;
|
|
22527
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
22528
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
22510
22529
|
}>>>;
|
|
22511
22530
|
location: z.ZodNullable<z.ZodObject<{
|
|
22512
22531
|
location_name: z.ZodOptional<z.ZodString>;
|
|
@@ -23113,6 +23132,7 @@ declare const batch: z.ZodObject<{
|
|
|
23113
23132
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
23114
23133
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23115
23134
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
23135
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
23116
23136
|
}, "device_id" | "workspace_id" | "created_at" | "errors" | "connected_account_id" | "warnings" | "device_type" | "capabilities_supported" | "location"> & {
|
|
23117
23137
|
is_managed: z.ZodLiteral<false>;
|
|
23118
23138
|
properties: z.ZodObject<Pick<{
|
|
@@ -23262,6 +23282,7 @@ declare const batch: z.ZodObject<{
|
|
|
23262
23282
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
23263
23283
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
23264
23284
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
23285
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
23265
23286
|
}, "strip", z.ZodTypeAny, {
|
|
23266
23287
|
device_id: string;
|
|
23267
23288
|
workspace_id: string;
|
|
@@ -23489,6 +23510,7 @@ declare const batch: z.ZodObject<{
|
|
|
23489
23510
|
can_simulate_connection?: boolean | undefined;
|
|
23490
23511
|
can_simulate_disconnection?: boolean | undefined;
|
|
23491
23512
|
can_unlock_with_code?: boolean | undefined;
|
|
23513
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
23492
23514
|
}, {
|
|
23493
23515
|
device_id: string;
|
|
23494
23516
|
workspace_id: string;
|
|
@@ -23716,6 +23738,7 @@ declare const batch: z.ZodObject<{
|
|
|
23716
23738
|
can_simulate_connection?: boolean | undefined;
|
|
23717
23739
|
can_simulate_disconnection?: boolean | undefined;
|
|
23718
23740
|
can_unlock_with_code?: boolean | undefined;
|
|
23741
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
23719
23742
|
}>, "many">>;
|
|
23720
23743
|
connect_webviews: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23721
23744
|
connect_webview_id: z.ZodString;
|
|
@@ -24430,6 +24453,8 @@ declare const batch: z.ZodObject<{
|
|
|
24430
24453
|
upper_limit_celsius: number | null;
|
|
24431
24454
|
upper_limit_fahrenheit: number | null;
|
|
24432
24455
|
} | undefined;
|
|
24456
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
24457
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
24433
24458
|
};
|
|
24434
24459
|
location: {
|
|
24435
24460
|
location_name?: string | undefined;
|
|
@@ -24448,6 +24473,7 @@ declare const batch: z.ZodObject<{
|
|
|
24448
24473
|
can_simulate_connection?: boolean | undefined;
|
|
24449
24474
|
can_simulate_disconnection?: boolean | undefined;
|
|
24450
24475
|
can_unlock_with_code?: boolean | undefined;
|
|
24476
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
24451
24477
|
nickname?: string | undefined;
|
|
24452
24478
|
}[] | undefined;
|
|
24453
24479
|
acs_entrances?: {
|
|
@@ -25872,6 +25898,7 @@ declare const batch: z.ZodObject<{
|
|
|
25872
25898
|
can_simulate_connection?: boolean | undefined;
|
|
25873
25899
|
can_simulate_disconnection?: boolean | undefined;
|
|
25874
25900
|
can_unlock_with_code?: boolean | undefined;
|
|
25901
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
25875
25902
|
}[] | undefined;
|
|
25876
25903
|
connect_webviews?: {
|
|
25877
25904
|
status: "pending" | "failed" | "authorized";
|
|
@@ -26542,6 +26569,8 @@ declare const batch: z.ZodObject<{
|
|
|
26542
26569
|
upper_limit_celsius: number | null;
|
|
26543
26570
|
upper_limit_fahrenheit: number | null;
|
|
26544
26571
|
} | undefined;
|
|
26572
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
26573
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
26545
26574
|
};
|
|
26546
26575
|
location: {
|
|
26547
26576
|
location_name?: string | undefined;
|
|
@@ -26560,6 +26589,7 @@ declare const batch: z.ZodObject<{
|
|
|
26560
26589
|
can_simulate_connection?: boolean | undefined;
|
|
26561
26590
|
can_simulate_disconnection?: boolean | undefined;
|
|
26562
26591
|
can_unlock_with_code?: boolean | undefined;
|
|
26592
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
26563
26593
|
nickname?: string | undefined;
|
|
26564
26594
|
}[] | undefined;
|
|
26565
26595
|
acs_entrances?: {
|
|
@@ -27984,6 +28014,7 @@ declare const batch: z.ZodObject<{
|
|
|
27984
28014
|
can_simulate_connection?: boolean | undefined;
|
|
27985
28015
|
can_simulate_disconnection?: boolean | undefined;
|
|
27986
28016
|
can_unlock_with_code?: boolean | undefined;
|
|
28017
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
27987
28018
|
}[] | undefined;
|
|
27988
28019
|
connect_webviews?: {
|
|
27989
28020
|
status: "pending" | "failed" | "authorized";
|
|
@@ -31276,6 +31307,8 @@ declare const device: z.ZodObject<{
|
|
|
31276
31307
|
upper_limit_celsius: number | null;
|
|
31277
31308
|
upper_limit_fahrenheit: number | null;
|
|
31278
31309
|
}>>>;
|
|
31310
|
+
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
31311
|
+
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
31279
31312
|
}, "strip", z.ZodTypeAny, {
|
|
31280
31313
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
31281
31314
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -31406,6 +31439,8 @@ declare const device: z.ZodObject<{
|
|
|
31406
31439
|
upper_limit_celsius: number | null;
|
|
31407
31440
|
upper_limit_fahrenheit: number | null;
|
|
31408
31441
|
} | undefined;
|
|
31442
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
31443
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
31409
31444
|
}, {
|
|
31410
31445
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
31411
31446
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -31536,6 +31571,8 @@ declare const device: z.ZodObject<{
|
|
|
31536
31571
|
upper_limit_celsius: number | null;
|
|
31537
31572
|
upper_limit_fahrenheit: number | null;
|
|
31538
31573
|
} | undefined;
|
|
31574
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
31575
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
31539
31576
|
}>>>;
|
|
31540
31577
|
location: z.ZodNullable<z.ZodObject<{
|
|
31541
31578
|
location_name: z.ZodOptional<z.ZodString>;
|
|
@@ -32142,6 +32179,7 @@ declare const device: z.ZodObject<{
|
|
|
32142
32179
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
32143
32180
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
32144
32181
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
32182
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
32145
32183
|
}, "strip", z.ZodTypeAny, {
|
|
32146
32184
|
display_name: string;
|
|
32147
32185
|
device_id: string;
|
|
@@ -32776,6 +32814,8 @@ declare const device: z.ZodObject<{
|
|
|
32776
32814
|
upper_limit_celsius: number | null;
|
|
32777
32815
|
upper_limit_fahrenheit: number | null;
|
|
32778
32816
|
} | undefined;
|
|
32817
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
32818
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
32779
32819
|
};
|
|
32780
32820
|
location: {
|
|
32781
32821
|
location_name?: string | undefined;
|
|
@@ -32794,6 +32834,7 @@ declare const device: z.ZodObject<{
|
|
|
32794
32834
|
can_simulate_connection?: boolean | undefined;
|
|
32795
32835
|
can_simulate_disconnection?: boolean | undefined;
|
|
32796
32836
|
can_unlock_with_code?: boolean | undefined;
|
|
32837
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
32797
32838
|
nickname?: string | undefined;
|
|
32798
32839
|
}, {
|
|
32799
32840
|
display_name: string;
|
|
@@ -33429,6 +33470,8 @@ declare const device: z.ZodObject<{
|
|
|
33429
33470
|
upper_limit_celsius: number | null;
|
|
33430
33471
|
upper_limit_fahrenheit: number | null;
|
|
33431
33472
|
} | undefined;
|
|
33473
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
33474
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
33432
33475
|
};
|
|
33433
33476
|
location: {
|
|
33434
33477
|
location_name?: string | undefined;
|
|
@@ -33447,6 +33490,7 @@ declare const device: z.ZodObject<{
|
|
|
33447
33490
|
can_simulate_connection?: boolean | undefined;
|
|
33448
33491
|
can_simulate_disconnection?: boolean | undefined;
|
|
33449
33492
|
can_unlock_with_code?: boolean | undefined;
|
|
33493
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
33450
33494
|
nickname?: string | undefined;
|
|
33451
33495
|
}>;
|
|
33452
33496
|
type Device = z.infer<typeof device>;
|
|
@@ -33520,6 +33564,7 @@ declare const device_provider: z.ZodObject<{
|
|
|
33520
33564
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
33521
33565
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
33522
33566
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
33567
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
33523
33568
|
}, "strip", z.ZodTypeAny, {
|
|
33524
33569
|
display_name: string;
|
|
33525
33570
|
image_url: string;
|
|
@@ -33537,6 +33582,7 @@ declare const device_provider: z.ZodObject<{
|
|
|
33537
33582
|
can_simulate_connection?: boolean | undefined;
|
|
33538
33583
|
can_simulate_disconnection?: boolean | undefined;
|
|
33539
33584
|
can_unlock_with_code?: boolean | undefined;
|
|
33585
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
33540
33586
|
}, {
|
|
33541
33587
|
display_name: string;
|
|
33542
33588
|
image_url: string;
|
|
@@ -33554,6 +33600,7 @@ declare const device_provider: z.ZodObject<{
|
|
|
33554
33600
|
can_simulate_connection?: boolean | undefined;
|
|
33555
33601
|
can_simulate_disconnection?: boolean | undefined;
|
|
33556
33602
|
can_unlock_with_code?: boolean | undefined;
|
|
33603
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
33557
33604
|
}>;
|
|
33558
33605
|
type DeviceProvider = z.infer<typeof device_provider>;
|
|
33559
33606
|
|
|
@@ -35525,6 +35572,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35525
35572
|
upper_limit_celsius: number | null;
|
|
35526
35573
|
upper_limit_fahrenheit: number | null;
|
|
35527
35574
|
}>>>;
|
|
35575
|
+
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
35576
|
+
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
35528
35577
|
}, "strip", z.ZodTypeAny, {
|
|
35529
35578
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
35530
35579
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -35655,6 +35704,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35655
35704
|
upper_limit_celsius: number | null;
|
|
35656
35705
|
upper_limit_fahrenheit: number | null;
|
|
35657
35706
|
} | undefined;
|
|
35707
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
35708
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
35658
35709
|
}, {
|
|
35659
35710
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
35660
35711
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -35785,6 +35836,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
35785
35836
|
upper_limit_celsius: number | null;
|
|
35786
35837
|
upper_limit_fahrenheit: number | null;
|
|
35787
35838
|
} | undefined;
|
|
35839
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
35840
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
35788
35841
|
}>>>;
|
|
35789
35842
|
location: z.ZodNullable<z.ZodObject<{
|
|
35790
35843
|
location_name: z.ZodOptional<z.ZodString>;
|
|
@@ -36391,6 +36444,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
36391
36444
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
36392
36445
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
36393
36446
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
36447
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
36394
36448
|
}, "device_id" | "workspace_id" | "created_at" | "errors" | "connected_account_id" | "warnings" | "device_type" | "capabilities_supported" | "location"> & {
|
|
36395
36449
|
is_managed: z.ZodLiteral<false>;
|
|
36396
36450
|
properties: z.ZodObject<Pick<{
|
|
@@ -36540,6 +36594,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
36540
36594
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
36541
36595
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
36542
36596
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
36597
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
36543
36598
|
}, "strip", z.ZodTypeAny, {
|
|
36544
36599
|
device_id: string;
|
|
36545
36600
|
workspace_id: string;
|
|
@@ -36767,6 +36822,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
36767
36822
|
can_simulate_connection?: boolean | undefined;
|
|
36768
36823
|
can_simulate_disconnection?: boolean | undefined;
|
|
36769
36824
|
can_unlock_with_code?: boolean | undefined;
|
|
36825
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
36770
36826
|
}, {
|
|
36771
36827
|
device_id: string;
|
|
36772
36828
|
workspace_id: string;
|
|
@@ -36994,6 +37050,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
36994
37050
|
can_simulate_connection?: boolean | undefined;
|
|
36995
37051
|
can_simulate_disconnection?: boolean | undefined;
|
|
36996
37052
|
can_unlock_with_code?: boolean | undefined;
|
|
37053
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
36997
37054
|
}>;
|
|
36998
37055
|
type UnmanagedDevice = z.infer<typeof unmanaged_device>;
|
|
36999
37056
|
|
|
@@ -44720,6 +44777,9 @@ declare const _default: {
|
|
|
44720
44777
|
can_remotely_unlock: {
|
|
44721
44778
|
type: string;
|
|
44722
44779
|
};
|
|
44780
|
+
can_run_thermostat_programs: {
|
|
44781
|
+
type: string;
|
|
44782
|
+
};
|
|
44723
44783
|
can_simulate_connection: {
|
|
44724
44784
|
type: string;
|
|
44725
44785
|
};
|
|
@@ -46406,6 +46466,7 @@ declare const _default: {
|
|
|
46406
46466
|
max_cooling_set_point_fahrenheit?: never;
|
|
46407
46467
|
max_heating_set_point_celsius?: never;
|
|
46408
46468
|
max_heating_set_point_fahrenheit?: never;
|
|
46469
|
+
max_thermostat_daily_program_periods_per_day?: never;
|
|
46409
46470
|
min_cooling_set_point_celsius?: never;
|
|
46410
46471
|
min_cooling_set_point_fahrenheit?: never;
|
|
46411
46472
|
min_heating_cooling_delta_celsius?: never;
|
|
@@ -46416,6 +46477,7 @@ declare const _default: {
|
|
|
46416
46477
|
temperature_celsius?: never;
|
|
46417
46478
|
temperature_fahrenheit?: never;
|
|
46418
46479
|
temperature_threshold?: never;
|
|
46480
|
+
thermostat_daily_program_period_precision_minutes?: never;
|
|
46419
46481
|
thermostat_daily_programs?: never;
|
|
46420
46482
|
thermostat_weekly_program?: never;
|
|
46421
46483
|
};
|
|
@@ -46882,6 +46944,12 @@ declare const _default: {
|
|
|
46882
46944
|
type: string;
|
|
46883
46945
|
'x-property-group-key': string;
|
|
46884
46946
|
};
|
|
46947
|
+
max_thermostat_daily_program_periods_per_day: {
|
|
46948
|
+
description: string;
|
|
46949
|
+
format: string;
|
|
46950
|
+
type: string;
|
|
46951
|
+
'x-property-group-key': string;
|
|
46952
|
+
};
|
|
46885
46953
|
min_cooling_set_point_celsius: {
|
|
46886
46954
|
description: string;
|
|
46887
46955
|
format: string;
|
|
@@ -46970,6 +47038,12 @@ declare const _default: {
|
|
|
46970
47038
|
type: string;
|
|
46971
47039
|
'x-property-group-key': string;
|
|
46972
47040
|
};
|
|
47041
|
+
thermostat_daily_program_period_precision_minutes: {
|
|
47042
|
+
description: string;
|
|
47043
|
+
format: string;
|
|
47044
|
+
type: string;
|
|
47045
|
+
'x-property-group-key': string;
|
|
47046
|
+
};
|
|
46973
47047
|
thermostat_daily_programs: {
|
|
46974
47048
|
description: string;
|
|
46975
47049
|
items: {
|
|
@@ -47256,6 +47330,9 @@ declare const _default: {
|
|
|
47256
47330
|
can_remotely_unlock: {
|
|
47257
47331
|
type: string;
|
|
47258
47332
|
};
|
|
47333
|
+
can_run_thermostat_programs: {
|
|
47334
|
+
type: string;
|
|
47335
|
+
};
|
|
47259
47336
|
can_simulate_connection: {
|
|
47260
47337
|
type: string;
|
|
47261
47338
|
};
|
|
@@ -53124,6 +53201,9 @@ declare const _default: {
|
|
|
53124
53201
|
can_remotely_unlock: {
|
|
53125
53202
|
type: string;
|
|
53126
53203
|
};
|
|
53204
|
+
can_run_thermostat_programs: {
|
|
53205
|
+
type: string;
|
|
53206
|
+
};
|
|
53127
53207
|
can_simulate_connection: {
|
|
53128
53208
|
type: string;
|
|
53129
53209
|
};
|
|
@@ -102045,6 +102125,10 @@ type Routes = {
|
|
|
102045
102125
|
*/
|
|
102046
102126
|
upper_limit_fahrenheit: number | null;
|
|
102047
102127
|
} | undefined) | undefined;
|
|
102128
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
102129
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
102130
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
102131
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
102048
102132
|
});
|
|
102049
102133
|
/** Location information for the device. */
|
|
102050
102134
|
location: {
|
|
@@ -102354,6 +102438,7 @@ type Routes = {
|
|
|
102354
102438
|
can_simulate_connection?: boolean | undefined;
|
|
102355
102439
|
can_simulate_disconnection?: boolean | undefined;
|
|
102356
102440
|
can_unlock_with_code?: boolean | undefined;
|
|
102441
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
102357
102442
|
}[] | undefined;
|
|
102358
102443
|
acs_entrances?: {
|
|
102359
102444
|
/** 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). */
|
|
@@ -105146,6 +105231,10 @@ type Routes = {
|
|
|
105146
105231
|
*/
|
|
105147
105232
|
upper_limit_fahrenheit: number | null;
|
|
105148
105233
|
} | undefined) | undefined;
|
|
105234
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
105235
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
105236
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
105237
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
105149
105238
|
});
|
|
105150
105239
|
/** Location information for the device. */
|
|
105151
105240
|
location: {
|
|
@@ -105455,6 +105544,7 @@ type Routes = {
|
|
|
105455
105544
|
can_simulate_connection?: boolean | undefined;
|
|
105456
105545
|
can_simulate_disconnection?: boolean | undefined;
|
|
105457
105546
|
can_unlock_with_code?: boolean | undefined;
|
|
105547
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
105458
105548
|
}[] | undefined;
|
|
105459
105549
|
acs_entrances?: {
|
|
105460
105550
|
/** 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). */
|
|
@@ -107833,6 +107923,7 @@ type Routes = {
|
|
|
107833
107923
|
can_simulate_connection?: boolean | undefined;
|
|
107834
107924
|
can_simulate_disconnection?: boolean | undefined;
|
|
107835
107925
|
can_unlock_with_code?: boolean | undefined;
|
|
107926
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
107836
107927
|
}[] | undefined;
|
|
107837
107928
|
connect_webviews?: {
|
|
107838
107929
|
/** ID of the Connect Webview. */
|
|
@@ -120072,6 +120163,10 @@ type Routes = {
|
|
|
120072
120163
|
*/
|
|
120073
120164
|
upper_limit_fahrenheit: number | null;
|
|
120074
120165
|
} | undefined) | undefined;
|
|
120166
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
120167
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
120168
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
120169
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
120075
120170
|
});
|
|
120076
120171
|
/** Location information for the device. */
|
|
120077
120172
|
location: {
|
|
@@ -120381,6 +120476,7 @@ type Routes = {
|
|
|
120381
120476
|
can_simulate_connection?: boolean | undefined;
|
|
120382
120477
|
can_simulate_disconnection?: boolean | undefined;
|
|
120383
120478
|
can_unlock_with_code?: boolean | undefined;
|
|
120479
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
120384
120480
|
};
|
|
120385
120481
|
};
|
|
120386
120482
|
};
|
|
@@ -120418,9 +120514,9 @@ type Routes = {
|
|
|
120418
120514
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
120419
120515
|
page_cursor?: (string | undefined) | null;
|
|
120420
120516
|
/** */
|
|
120421
|
-
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')[] | undefined;
|
|
120517
|
+
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;
|
|
120422
120518
|
/** */
|
|
120423
|
-
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')[] | undefined;
|
|
120519
|
+
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;
|
|
120424
120520
|
/**
|
|
120425
120521
|
* @deprecated Use `space_id`.*/
|
|
120426
120522
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -121321,6 +121417,10 @@ type Routes = {
|
|
|
121321
121417
|
*/
|
|
121322
121418
|
upper_limit_fahrenheit: number | null;
|
|
121323
121419
|
} | undefined) | undefined;
|
|
121420
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
121421
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
121422
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
121423
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
121324
121424
|
});
|
|
121325
121425
|
/** Location information for the device. */
|
|
121326
121426
|
location: {
|
|
@@ -121630,6 +121730,7 @@ type Routes = {
|
|
|
121630
121730
|
can_simulate_connection?: boolean | undefined;
|
|
121631
121731
|
can_simulate_disconnection?: boolean | undefined;
|
|
121632
121732
|
can_unlock_with_code?: boolean | undefined;
|
|
121733
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
121633
121734
|
}[];
|
|
121634
121735
|
/** Information about the current page of results. */
|
|
121635
121736
|
pagination: {
|
|
@@ -121670,6 +121771,7 @@ type Routes = {
|
|
|
121670
121771
|
can_simulate_connection?: boolean | undefined;
|
|
121671
121772
|
can_simulate_disconnection?: boolean | undefined;
|
|
121672
121773
|
can_unlock_with_code?: boolean | undefined;
|
|
121774
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
121673
121775
|
}[];
|
|
121674
121776
|
};
|
|
121675
121777
|
};
|
|
@@ -122127,6 +122229,7 @@ type Routes = {
|
|
|
122127
122229
|
can_simulate_connection?: boolean | undefined;
|
|
122128
122230
|
can_simulate_disconnection?: boolean | undefined;
|
|
122129
122231
|
can_unlock_with_code?: boolean | undefined;
|
|
122232
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
122130
122233
|
};
|
|
122131
122234
|
};
|
|
122132
122235
|
};
|
|
@@ -122164,9 +122267,9 @@ type Routes = {
|
|
|
122164
122267
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
122165
122268
|
page_cursor?: (string | undefined) | null;
|
|
122166
122269
|
/** */
|
|
122167
|
-
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')[] | undefined;
|
|
122270
|
+
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;
|
|
122168
122271
|
/** */
|
|
122169
|
-
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')[] | undefined;
|
|
122272
|
+
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;
|
|
122170
122273
|
/**
|
|
122171
122274
|
* @deprecated Use `space_id`.*/
|
|
122172
122275
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -122559,6 +122662,7 @@ type Routes = {
|
|
|
122559
122662
|
can_simulate_connection?: boolean | undefined;
|
|
122560
122663
|
can_simulate_disconnection?: boolean | undefined;
|
|
122561
122664
|
can_unlock_with_code?: boolean | undefined;
|
|
122665
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
122562
122666
|
}[];
|
|
122563
122667
|
};
|
|
122564
122668
|
};
|
|
@@ -127299,6 +127403,10 @@ type Routes = {
|
|
|
127299
127403
|
*/
|
|
127300
127404
|
upper_limit_fahrenheit: number | null;
|
|
127301
127405
|
} | undefined) | undefined;
|
|
127406
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
127407
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
127408
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
127409
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
127302
127410
|
});
|
|
127303
127411
|
/** Location information for the device. */
|
|
127304
127412
|
location: {
|
|
@@ -127608,6 +127716,7 @@ type Routes = {
|
|
|
127608
127716
|
can_simulate_connection?: boolean | undefined;
|
|
127609
127717
|
can_simulate_disconnection?: boolean | undefined;
|
|
127610
127718
|
can_unlock_with_code?: boolean | undefined;
|
|
127719
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
127611
127720
|
};
|
|
127612
127721
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
127613
127722
|
device: {
|
|
@@ -128498,6 +128607,10 @@ type Routes = {
|
|
|
128498
128607
|
*/
|
|
128499
128608
|
upper_limit_fahrenheit: number | null;
|
|
128500
128609
|
} | undefined) | undefined;
|
|
128610
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
128611
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
128612
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
128613
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
128501
128614
|
});
|
|
128502
128615
|
/** Location information for the device. */
|
|
128503
128616
|
location: {
|
|
@@ -128807,6 +128920,7 @@ type Routes = {
|
|
|
128807
128920
|
can_simulate_connection?: boolean | undefined;
|
|
128808
128921
|
can_simulate_disconnection?: boolean | undefined;
|
|
128809
128922
|
can_unlock_with_code?: boolean | undefined;
|
|
128923
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
128810
128924
|
};
|
|
128811
128925
|
};
|
|
128812
128926
|
};
|
|
@@ -128844,9 +128958,9 @@ type Routes = {
|
|
|
128844
128958
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
128845
128959
|
page_cursor?: (string | undefined) | null;
|
|
128846
128960
|
/** */
|
|
128847
|
-
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')[] | undefined;
|
|
128961
|
+
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;
|
|
128848
128962
|
/** */
|
|
128849
|
-
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')[] | undefined;
|
|
128963
|
+
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;
|
|
128850
128964
|
/**
|
|
128851
128965
|
* @deprecated Use `space_id`.*/
|
|
128852
128966
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -129747,6 +129861,10 @@ type Routes = {
|
|
|
129747
129861
|
*/
|
|
129748
129862
|
upper_limit_fahrenheit: number | null;
|
|
129749
129863
|
} | undefined) | undefined;
|
|
129864
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
129865
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
129866
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
129867
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
129750
129868
|
});
|
|
129751
129869
|
/** Location information for the device. */
|
|
129752
129870
|
location: {
|
|
@@ -130056,6 +130174,7 @@ type Routes = {
|
|
|
130056
130174
|
can_simulate_connection?: boolean | undefined;
|
|
130057
130175
|
can_simulate_disconnection?: boolean | undefined;
|
|
130058
130176
|
can_unlock_with_code?: boolean | undefined;
|
|
130177
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
130059
130178
|
}[];
|
|
130060
130179
|
devices: {
|
|
130061
130180
|
/** ID of the device. */
|
|
@@ -130945,6 +131064,10 @@ type Routes = {
|
|
|
130945
131064
|
*/
|
|
130946
131065
|
upper_limit_fahrenheit: number | null;
|
|
130947
131066
|
} | undefined) | undefined;
|
|
131067
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
131068
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
131069
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
131070
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
130948
131071
|
});
|
|
130949
131072
|
/** Location information for the device. */
|
|
130950
131073
|
location: {
|
|
@@ -131254,6 +131377,7 @@ type Routes = {
|
|
|
131254
131377
|
can_simulate_connection?: boolean | undefined;
|
|
131255
131378
|
can_simulate_disconnection?: boolean | undefined;
|
|
131256
131379
|
can_unlock_with_code?: boolean | undefined;
|
|
131380
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
131257
131381
|
}[];
|
|
131258
131382
|
};
|
|
131259
131383
|
};
|
|
@@ -136329,9 +136453,9 @@ type Routes = {
|
|
|
136329
136453
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
136330
136454
|
page_cursor?: (string | undefined) | null;
|
|
136331
136455
|
/** */
|
|
136332
|
-
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')[] | undefined;
|
|
136456
|
+
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;
|
|
136333
136457
|
/** */
|
|
136334
|
-
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')[] | undefined;
|
|
136458
|
+
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;
|
|
136335
136459
|
/**
|
|
136336
136460
|
* @deprecated Use `space_id`.*/
|
|
136337
136461
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -137232,6 +137356,10 @@ type Routes = {
|
|
|
137232
137356
|
*/
|
|
137233
137357
|
upper_limit_fahrenheit: number | null;
|
|
137234
137358
|
} | undefined) | undefined;
|
|
137359
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
137360
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
137361
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
137362
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
137235
137363
|
});
|
|
137236
137364
|
/** Location information for the device. */
|
|
137237
137365
|
location: {
|
|
@@ -137541,6 +137669,7 @@ type Routes = {
|
|
|
137541
137669
|
can_simulate_connection?: boolean | undefined;
|
|
137542
137670
|
can_simulate_disconnection?: boolean | undefined;
|
|
137543
137671
|
can_unlock_with_code?: boolean | undefined;
|
|
137672
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
137544
137673
|
}[];
|
|
137545
137674
|
devices: {
|
|
137546
137675
|
/** ID of the device. */
|
|
@@ -138430,6 +138559,10 @@ type Routes = {
|
|
|
138430
138559
|
*/
|
|
138431
138560
|
upper_limit_fahrenheit: number | null;
|
|
138432
138561
|
} | undefined) | undefined;
|
|
138562
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
138563
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
138564
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
138565
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
138433
138566
|
});
|
|
138434
138567
|
/** Location information for the device. */
|
|
138435
138568
|
location: {
|
|
@@ -138739,6 +138872,7 @@ type Routes = {
|
|
|
138739
138872
|
can_simulate_connection?: boolean | undefined;
|
|
138740
138873
|
can_simulate_disconnection?: boolean | undefined;
|
|
138741
138874
|
can_unlock_with_code?: boolean | undefined;
|
|
138875
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
138742
138876
|
}[];
|
|
138743
138877
|
};
|
|
138744
138878
|
};
|
|
@@ -144952,6 +145086,10 @@ type Routes = {
|
|
|
144952
145086
|
*/
|
|
144953
145087
|
upper_limit_fahrenheit: number | null;
|
|
144954
145088
|
} | undefined) | undefined;
|
|
145089
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
145090
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
145091
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
145092
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
144955
145093
|
});
|
|
144956
145094
|
/** Location information for the device. */
|
|
144957
145095
|
location: {
|
|
@@ -145261,6 +145399,7 @@ type Routes = {
|
|
|
145261
145399
|
can_simulate_connection?: boolean | undefined;
|
|
145262
145400
|
can_simulate_disconnection?: boolean | undefined;
|
|
145263
145401
|
can_unlock_with_code?: boolean | undefined;
|
|
145402
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
145264
145403
|
}[] | undefined;
|
|
145265
145404
|
acs_entrances?: {
|
|
145266
145405
|
/** 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). */
|
|
@@ -150526,6 +150665,10 @@ type Routes = {
|
|
|
150526
150665
|
*/
|
|
150527
150666
|
upper_limit_fahrenheit: number | null;
|
|
150528
150667
|
} | undefined) | undefined;
|
|
150668
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
150669
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
150670
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
150671
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
150529
150672
|
});
|
|
150530
150673
|
/** Location information for the device. */
|
|
150531
150674
|
location: {
|
|
@@ -150835,6 +150978,7 @@ type Routes = {
|
|
|
150835
150978
|
can_simulate_connection?: boolean | undefined;
|
|
150836
150979
|
can_simulate_disconnection?: boolean | undefined;
|
|
150837
150980
|
can_unlock_with_code?: boolean | undefined;
|
|
150981
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
150838
150982
|
};
|
|
150839
150983
|
};
|
|
150840
150984
|
};
|
|
@@ -153404,9 +153548,9 @@ type Routes = {
|
|
|
153404
153548
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
153405
153549
|
page_cursor?: (string | undefined) | null;
|
|
153406
153550
|
/** */
|
|
153407
|
-
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')[] | undefined;
|
|
153551
|
+
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;
|
|
153408
153552
|
/** */
|
|
153409
|
-
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')[] | undefined;
|
|
153553
|
+
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;
|
|
153410
153554
|
/**
|
|
153411
153555
|
* @deprecated Use `space_id`.*/
|
|
153412
153556
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -154307,6 +154451,10 @@ type Routes = {
|
|
|
154307
154451
|
*/
|
|
154308
154452
|
upper_limit_fahrenheit: number | null;
|
|
154309
154453
|
} | undefined) | undefined;
|
|
154454
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
154455
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
154456
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
154457
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
154310
154458
|
});
|
|
154311
154459
|
/** Location information for the device. */
|
|
154312
154460
|
location: {
|
|
@@ -154616,6 +154764,7 @@ type Routes = {
|
|
|
154616
154764
|
can_simulate_connection?: boolean | undefined;
|
|
154617
154765
|
can_simulate_disconnection?: boolean | undefined;
|
|
154618
154766
|
can_unlock_with_code?: boolean | undefined;
|
|
154767
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
154619
154768
|
}[];
|
|
154620
154769
|
devices: {
|
|
154621
154770
|
/** ID of the device. */
|
|
@@ -155505,6 +155654,10 @@ type Routes = {
|
|
|
155505
155654
|
*/
|
|
155506
155655
|
upper_limit_fahrenheit: number | null;
|
|
155507
155656
|
} | undefined) | undefined;
|
|
155657
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
155658
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
155659
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
155660
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
155508
155661
|
});
|
|
155509
155662
|
/** Location information for the device. */
|
|
155510
155663
|
location: {
|
|
@@ -155814,6 +155967,7 @@ type Routes = {
|
|
|
155814
155967
|
can_simulate_connection?: boolean | undefined;
|
|
155815
155968
|
can_simulate_disconnection?: boolean | undefined;
|
|
155816
155969
|
can_unlock_with_code?: boolean | undefined;
|
|
155970
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
155817
155971
|
}[];
|
|
155818
155972
|
};
|
|
155819
155973
|
};
|
|
@@ -163161,6 +163315,10 @@ type Routes = {
|
|
|
163161
163315
|
*/
|
|
163162
163316
|
upper_limit_fahrenheit: number | null;
|
|
163163
163317
|
} | undefined) | undefined;
|
|
163318
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
163319
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
163320
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
163321
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
163164
163322
|
});
|
|
163165
163323
|
/** Location information for the device. */
|
|
163166
163324
|
location: {
|
|
@@ -163470,6 +163628,7 @@ type Routes = {
|
|
|
163470
163628
|
can_simulate_connection?: boolean | undefined;
|
|
163471
163629
|
can_simulate_disconnection?: boolean | undefined;
|
|
163472
163630
|
can_unlock_with_code?: boolean | undefined;
|
|
163631
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
163473
163632
|
}[];
|
|
163474
163633
|
/**
|
|
163475
163634
|
* @deprecated Use devices.*/
|
|
@@ -164361,6 +164520,10 @@ type Routes = {
|
|
|
164361
164520
|
*/
|
|
164362
164521
|
upper_limit_fahrenheit: number | null;
|
|
164363
164522
|
} | undefined) | undefined;
|
|
164523
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
164524
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
164525
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
164526
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
164364
164527
|
});
|
|
164365
164528
|
/** Location information for the device. */
|
|
164366
164529
|
location: {
|
|
@@ -164670,6 +164833,7 @@ type Routes = {
|
|
|
164670
164833
|
can_simulate_connection?: boolean | undefined;
|
|
164671
164834
|
can_simulate_disconnection?: boolean | undefined;
|
|
164672
164835
|
can_unlock_with_code?: boolean | undefined;
|
|
164836
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
164673
164837
|
}[];
|
|
164674
164838
|
};
|
|
164675
164839
|
};
|
|
@@ -166232,6 +166396,10 @@ type Routes = {
|
|
|
166232
166396
|
*/
|
|
166233
166397
|
upper_limit_fahrenheit: number | null;
|
|
166234
166398
|
} | undefined) | undefined;
|
|
166399
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
166400
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
166401
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
166402
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
166235
166403
|
});
|
|
166236
166404
|
/** Location information for the device. */
|
|
166237
166405
|
location: {
|
|
@@ -166541,6 +166709,7 @@ type Routes = {
|
|
|
166541
166709
|
can_simulate_connection?: boolean | undefined;
|
|
166542
166710
|
can_simulate_disconnection?: boolean | undefined;
|
|
166543
166711
|
can_unlock_with_code?: boolean | undefined;
|
|
166712
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
166544
166713
|
}[] | undefined;
|
|
166545
166714
|
acs_entrances?: {
|
|
166546
166715
|
/** 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). */
|
|
@@ -168919,6 +169088,7 @@ type Routes = {
|
|
|
168919
169088
|
can_simulate_connection?: boolean | undefined;
|
|
168920
169089
|
can_simulate_disconnection?: boolean | undefined;
|
|
168921
169090
|
can_unlock_with_code?: boolean | undefined;
|
|
169091
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
168922
169092
|
}[] | undefined;
|
|
168923
169093
|
connect_webviews?: {
|
|
168924
169094
|
/** ID of the Connect Webview. */
|