@seamapi/types 1.422.1 → 1.423.1
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 +18 -175
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +78 -233
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +6 -3
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +6 -3
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +9 -4
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +8 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +6 -3
- package/lib/seam/connect/openapi.d.ts +10 -212
- package/lib/seam/connect/openapi.js +9 -173
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +54 -15
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +9 -4
- package/src/lib/seam/connect/openapi.ts +11 -190
- package/src/lib/seam/connect/route-types.ts +54 -15
package/dist/connect.d.cts
CHANGED
|
@@ -13235,8 +13235,8 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13235
13235
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
13236
13236
|
heating_set_point_fahrenheit?: number | undefined;
|
|
13237
13237
|
}>, "many">>;
|
|
13238
|
-
fallback_climate_preset_key: z.ZodOptional<z.
|
|
13239
|
-
active_thermostat_schedule: z.ZodOptional<z.
|
|
13238
|
+
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13239
|
+
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
13240
13240
|
thermostat_schedule_id: z.ZodString;
|
|
13241
13241
|
device_id: z.ZodString;
|
|
13242
13242
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -13287,7 +13287,8 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13287
13287
|
}[];
|
|
13288
13288
|
max_override_period_minutes?: number | null | undefined;
|
|
13289
13289
|
is_override_allowed?: boolean | undefined;
|
|
13290
|
-
}
|
|
13290
|
+
}>>>;
|
|
13291
|
+
active_thermostat_schedule_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13291
13292
|
thermostat_daily_programs: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13292
13293
|
thermostat_daily_program_id: z.ZodString;
|
|
13293
13294
|
device_id: z.ZodString;
|
|
@@ -13452,6 +13453,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13452
13453
|
max_override_period_minutes?: number | null | undefined;
|
|
13453
13454
|
is_override_allowed?: boolean | undefined;
|
|
13454
13455
|
} | null | undefined;
|
|
13456
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
13455
13457
|
thermostat_daily_programs?: {
|
|
13456
13458
|
name: string | null;
|
|
13457
13459
|
thermostat_daily_program_id: string;
|
|
@@ -13562,6 +13564,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13562
13564
|
max_override_period_minutes?: number | null | undefined;
|
|
13563
13565
|
is_override_allowed?: boolean | undefined;
|
|
13564
13566
|
} | null | undefined;
|
|
13567
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
13565
13568
|
thermostat_daily_programs?: {
|
|
13566
13569
|
name: string | null;
|
|
13567
13570
|
thermostat_daily_program_id: string;
|
|
@@ -14778,6 +14781,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14778
14781
|
max_override_period_minutes?: number | null | undefined;
|
|
14779
14782
|
is_override_allowed?: boolean | undefined;
|
|
14780
14783
|
} | null | undefined;
|
|
14784
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
14781
14785
|
thermostat_daily_programs?: {
|
|
14782
14786
|
name: string | null;
|
|
14783
14787
|
thermostat_daily_program_id: string;
|
|
@@ -15391,6 +15395,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15391
15395
|
max_override_period_minutes?: number | null | undefined;
|
|
15392
15396
|
is_override_allowed?: boolean | undefined;
|
|
15393
15397
|
} | null | undefined;
|
|
15398
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
15394
15399
|
thermostat_daily_programs?: {
|
|
15395
15400
|
name: string | null;
|
|
15396
15401
|
thermostat_daily_program_id: string;
|
|
@@ -17183,8 +17188,8 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17183
17188
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
17184
17189
|
heating_set_point_fahrenheit?: number | undefined;
|
|
17185
17190
|
}>, "many">>;
|
|
17186
|
-
fallback_climate_preset_key: z.ZodOptional<z.
|
|
17187
|
-
active_thermostat_schedule: z.ZodOptional<z.
|
|
17191
|
+
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17192
|
+
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
17188
17193
|
thermostat_schedule_id: z.ZodString;
|
|
17189
17194
|
device_id: z.ZodString;
|
|
17190
17195
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -17235,7 +17240,8 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17235
17240
|
}[];
|
|
17236
17241
|
max_override_period_minutes?: number | null | undefined;
|
|
17237
17242
|
is_override_allowed?: boolean | undefined;
|
|
17238
|
-
}
|
|
17243
|
+
}>>>;
|
|
17244
|
+
active_thermostat_schedule_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17239
17245
|
thermostat_daily_programs: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17240
17246
|
thermostat_daily_program_id: z.ZodString;
|
|
17241
17247
|
device_id: z.ZodString;
|
|
@@ -17400,6 +17406,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17400
17406
|
max_override_period_minutes?: number | null | undefined;
|
|
17401
17407
|
is_override_allowed?: boolean | undefined;
|
|
17402
17408
|
} | null | undefined;
|
|
17409
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
17403
17410
|
thermostat_daily_programs?: {
|
|
17404
17411
|
name: string | null;
|
|
17405
17412
|
thermostat_daily_program_id: string;
|
|
@@ -17510,6 +17517,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17510
17517
|
max_override_period_minutes?: number | null | undefined;
|
|
17511
17518
|
is_override_allowed?: boolean | undefined;
|
|
17512
17519
|
} | null | undefined;
|
|
17520
|
+
active_thermostat_schedule_id?: string | null | undefined;
|
|
17513
17521
|
thermostat_daily_programs?: {
|
|
17514
17522
|
name: string | null;
|
|
17515
17523
|
thermostat_daily_program_id: string;
|
|
@@ -27600,6 +27608,7 @@ declare const _default: {
|
|
|
27600
27608
|
'x-property-group-key': string;
|
|
27601
27609
|
};
|
|
27602
27610
|
active_thermostat_schedule?: never;
|
|
27611
|
+
active_thermostat_schedule_id?: never;
|
|
27603
27612
|
available_climate_presets?: never;
|
|
27604
27613
|
available_fan_mode_settings?: never;
|
|
27605
27614
|
available_hvac_mode_settings?: never;
|
|
@@ -27632,7 +27641,7 @@ declare const _default: {
|
|
|
27632
27641
|
} | {
|
|
27633
27642
|
properties: {
|
|
27634
27643
|
active_thermostat_schedule: {
|
|
27635
|
-
|
|
27644
|
+
deprecated: boolean;
|
|
27636
27645
|
description: string;
|
|
27637
27646
|
nullable: boolean;
|
|
27638
27647
|
properties: {
|
|
@@ -27707,9 +27716,17 @@ declare const _default: {
|
|
|
27707
27716
|
};
|
|
27708
27717
|
required: string[];
|
|
27709
27718
|
type: string;
|
|
27719
|
+
'x-deprecated': string;
|
|
27710
27720
|
'x-property-group-key': string;
|
|
27711
27721
|
'x-route-path': string;
|
|
27712
27722
|
};
|
|
27723
|
+
active_thermostat_schedule_id: {
|
|
27724
|
+
description: string;
|
|
27725
|
+
format: string;
|
|
27726
|
+
nullable: boolean;
|
|
27727
|
+
type: string;
|
|
27728
|
+
'x-property-group-key': string;
|
|
27729
|
+
};
|
|
27713
27730
|
available_climate_presets: {
|
|
27714
27731
|
description: string;
|
|
27715
27732
|
items: {
|
|
@@ -27941,7 +27958,6 @@ declare const _default: {
|
|
|
27941
27958
|
'x-property-group-key': string;
|
|
27942
27959
|
};
|
|
27943
27960
|
fallback_climate_preset_key: {
|
|
27944
|
-
default: null;
|
|
27945
27961
|
description: string;
|
|
27946
27962
|
minLength: number;
|
|
27947
27963
|
nullable: boolean;
|
|
@@ -51094,78 +51110,6 @@ declare const _default: {
|
|
|
51094
51110
|
};
|
|
51095
51111
|
};
|
|
51096
51112
|
'/devices/simulate/remove': {
|
|
51097
|
-
delete: {
|
|
51098
|
-
description: string;
|
|
51099
|
-
operationId: string;
|
|
51100
|
-
requestBody: {
|
|
51101
|
-
content: {
|
|
51102
|
-
'application/json': {
|
|
51103
|
-
schema: {
|
|
51104
|
-
properties: {
|
|
51105
|
-
device_id: {
|
|
51106
|
-
description: string;
|
|
51107
|
-
format: string;
|
|
51108
|
-
type: string;
|
|
51109
|
-
};
|
|
51110
|
-
};
|
|
51111
|
-
required: string[];
|
|
51112
|
-
type: string;
|
|
51113
|
-
};
|
|
51114
|
-
};
|
|
51115
|
-
};
|
|
51116
|
-
};
|
|
51117
|
-
responses: {
|
|
51118
|
-
200: {
|
|
51119
|
-
content: {
|
|
51120
|
-
'application/json': {
|
|
51121
|
-
schema: {
|
|
51122
|
-
properties: {
|
|
51123
|
-
ok: {
|
|
51124
|
-
type: string;
|
|
51125
|
-
};
|
|
51126
|
-
};
|
|
51127
|
-
required: string[];
|
|
51128
|
-
type: string;
|
|
51129
|
-
};
|
|
51130
|
-
};
|
|
51131
|
-
};
|
|
51132
|
-
description: string;
|
|
51133
|
-
};
|
|
51134
|
-
400: {
|
|
51135
|
-
description: string;
|
|
51136
|
-
};
|
|
51137
|
-
401: {
|
|
51138
|
-
description: string;
|
|
51139
|
-
};
|
|
51140
|
-
};
|
|
51141
|
-
security: ({
|
|
51142
|
-
api_key: never[];
|
|
51143
|
-
pat_with_workspace?: never;
|
|
51144
|
-
console_session_with_workspace?: never;
|
|
51145
|
-
client_session_with_customer?: never;
|
|
51146
|
-
} | {
|
|
51147
|
-
pat_with_workspace: never[];
|
|
51148
|
-
api_key?: never;
|
|
51149
|
-
console_session_with_workspace?: never;
|
|
51150
|
-
client_session_with_customer?: never;
|
|
51151
|
-
} | {
|
|
51152
|
-
console_session_with_workspace: never[];
|
|
51153
|
-
api_key?: never;
|
|
51154
|
-
pat_with_workspace?: never;
|
|
51155
|
-
client_session_with_customer?: never;
|
|
51156
|
-
} | {
|
|
51157
|
-
client_session_with_customer: never[];
|
|
51158
|
-
api_key?: never;
|
|
51159
|
-
pat_with_workspace?: never;
|
|
51160
|
-
console_session_with_workspace?: never;
|
|
51161
|
-
})[];
|
|
51162
|
-
summary: string;
|
|
51163
|
-
tags: string[];
|
|
51164
|
-
'x-fern-sdk-group-name': string[];
|
|
51165
|
-
'x-fern-sdk-method-name': string;
|
|
51166
|
-
'x-response-key': null;
|
|
51167
|
-
'x-title': string;
|
|
51168
|
-
};
|
|
51169
51113
|
post: {
|
|
51170
51114
|
description: string;
|
|
51171
51115
|
operationId: string;
|
|
@@ -55894,144 +55838,6 @@ declare const _default: {
|
|
|
55894
55838
|
};
|
|
55895
55839
|
};
|
|
55896
55840
|
'/phones/simulate/create_sandbox_phone': {
|
|
55897
|
-
get: {
|
|
55898
|
-
description: string;
|
|
55899
|
-
operationId: string;
|
|
55900
|
-
requestBody: {
|
|
55901
|
-
content: {
|
|
55902
|
-
'application/json': {
|
|
55903
|
-
schema: {
|
|
55904
|
-
properties: {
|
|
55905
|
-
assa_abloy_metadata: {
|
|
55906
|
-
default: {};
|
|
55907
|
-
description: string;
|
|
55908
|
-
properties: {
|
|
55909
|
-
application_version: {
|
|
55910
|
-
default: string;
|
|
55911
|
-
description: string;
|
|
55912
|
-
type: string;
|
|
55913
|
-
};
|
|
55914
|
-
ble_capability: {
|
|
55915
|
-
default: boolean;
|
|
55916
|
-
description: string;
|
|
55917
|
-
type: string;
|
|
55918
|
-
};
|
|
55919
|
-
hce_capability: {
|
|
55920
|
-
default: boolean;
|
|
55921
|
-
description: string;
|
|
55922
|
-
type: string;
|
|
55923
|
-
};
|
|
55924
|
-
nfc_capability: {
|
|
55925
|
-
default: boolean;
|
|
55926
|
-
description: string;
|
|
55927
|
-
type: string;
|
|
55928
|
-
};
|
|
55929
|
-
seos_applet_version: {
|
|
55930
|
-
default: string;
|
|
55931
|
-
description: string;
|
|
55932
|
-
type: string;
|
|
55933
|
-
};
|
|
55934
|
-
seos_tsm_endpoint_id: {
|
|
55935
|
-
default: number;
|
|
55936
|
-
description: string;
|
|
55937
|
-
format: string;
|
|
55938
|
-
type: string;
|
|
55939
|
-
};
|
|
55940
|
-
};
|
|
55941
|
-
type: string;
|
|
55942
|
-
};
|
|
55943
|
-
custom_sdk_installation_id: {
|
|
55944
|
-
description: string;
|
|
55945
|
-
type: string;
|
|
55946
|
-
};
|
|
55947
|
-
phone_metadata: {
|
|
55948
|
-
default: {};
|
|
55949
|
-
description: string;
|
|
55950
|
-
properties: {
|
|
55951
|
-
device_manufacturer: {
|
|
55952
|
-
default: string;
|
|
55953
|
-
description: string;
|
|
55954
|
-
type: string;
|
|
55955
|
-
};
|
|
55956
|
-
device_model: {
|
|
55957
|
-
default: string;
|
|
55958
|
-
description: string;
|
|
55959
|
-
type: string;
|
|
55960
|
-
};
|
|
55961
|
-
operating_system: {
|
|
55962
|
-
default: string;
|
|
55963
|
-
description: string;
|
|
55964
|
-
enum: string[];
|
|
55965
|
-
type: string;
|
|
55966
|
-
};
|
|
55967
|
-
os_version: {
|
|
55968
|
-
default: string;
|
|
55969
|
-
description: string;
|
|
55970
|
-
type: string;
|
|
55971
|
-
};
|
|
55972
|
-
};
|
|
55973
|
-
type: string;
|
|
55974
|
-
};
|
|
55975
|
-
user_identity_id: {
|
|
55976
|
-
description: string;
|
|
55977
|
-
format: string;
|
|
55978
|
-
type: string;
|
|
55979
|
-
};
|
|
55980
|
-
};
|
|
55981
|
-
required: string[];
|
|
55982
|
-
type: string;
|
|
55983
|
-
};
|
|
55984
|
-
};
|
|
55985
|
-
};
|
|
55986
|
-
};
|
|
55987
|
-
responses: {
|
|
55988
|
-
200: {
|
|
55989
|
-
content: {
|
|
55990
|
-
'application/json': {
|
|
55991
|
-
schema: {
|
|
55992
|
-
properties: {
|
|
55993
|
-
ok: {
|
|
55994
|
-
type: string;
|
|
55995
|
-
};
|
|
55996
|
-
phone: {
|
|
55997
|
-
$ref: string;
|
|
55998
|
-
};
|
|
55999
|
-
};
|
|
56000
|
-
required: string[];
|
|
56001
|
-
type: string;
|
|
56002
|
-
};
|
|
56003
|
-
};
|
|
56004
|
-
};
|
|
56005
|
-
description: string;
|
|
56006
|
-
};
|
|
56007
|
-
400: {
|
|
56008
|
-
description: string;
|
|
56009
|
-
};
|
|
56010
|
-
401: {
|
|
56011
|
-
description: string;
|
|
56012
|
-
};
|
|
56013
|
-
};
|
|
56014
|
-
security: ({
|
|
56015
|
-
api_key: never[];
|
|
56016
|
-
pat_with_workspace?: never;
|
|
56017
|
-
console_session_with_workspace?: never;
|
|
56018
|
-
} | {
|
|
56019
|
-
pat_with_workspace: never[];
|
|
56020
|
-
api_key?: never;
|
|
56021
|
-
console_session_with_workspace?: never;
|
|
56022
|
-
} | {
|
|
56023
|
-
console_session_with_workspace: never[];
|
|
56024
|
-
api_key?: never;
|
|
56025
|
-
pat_with_workspace?: never;
|
|
56026
|
-
})[];
|
|
56027
|
-
summary: string;
|
|
56028
|
-
tags: string[];
|
|
56029
|
-
'x-fern-sdk-group-name': string[];
|
|
56030
|
-
'x-fern-sdk-method-name': string;
|
|
56031
|
-
'x-fern-sdk-return-value': string;
|
|
56032
|
-
'x-response-key': string;
|
|
56033
|
-
'x-title': string;
|
|
56034
|
-
};
|
|
56035
55841
|
post: {
|
|
56036
55842
|
description: string;
|
|
56037
55843
|
operationId: string;
|
|
@@ -92113,7 +91919,8 @@ interface Routes {
|
|
|
92113
91919
|
}> | undefined;
|
|
92114
91920
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
92115
91921
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
92116
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
91922
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
91923
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
92117
91924
|
active_thermostat_schedule?: ({
|
|
92118
91925
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
92119
91926
|
thermostat_schedule_id: string;
|
|
@@ -92143,6 +91950,8 @@ interface Routes {
|
|
|
92143
91950
|
message: string;
|
|
92144
91951
|
}>;
|
|
92145
91952
|
} | null) | undefined;
|
|
91953
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
91954
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
92146
91955
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
92147
91956
|
thermostat_daily_programs?: (Array<{
|
|
92148
91957
|
/** ID of the thermostat daily program. */
|
|
@@ -93265,7 +93074,8 @@ interface Routes {
|
|
|
93265
93074
|
}> | undefined;
|
|
93266
93075
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
93267
93076
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
93268
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
93077
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
93078
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
93269
93079
|
active_thermostat_schedule?: ({
|
|
93270
93080
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
93271
93081
|
thermostat_schedule_id: string;
|
|
@@ -93295,6 +93105,8 @@ interface Routes {
|
|
|
93295
93105
|
message: string;
|
|
93296
93106
|
}>;
|
|
93297
93107
|
} | null) | undefined;
|
|
93108
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
93109
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
93298
93110
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
93299
93111
|
thermostat_daily_programs?: (Array<{
|
|
93300
93112
|
/** ID of the thermostat daily program. */
|
|
@@ -93750,7 +93562,7 @@ interface Routes {
|
|
|
93750
93562
|
};
|
|
93751
93563
|
'/devices/simulate/remove': {
|
|
93752
93564
|
route: '/devices/simulate/remove';
|
|
93753
|
-
method: '
|
|
93565
|
+
method: 'POST';
|
|
93754
93566
|
queryParams: {};
|
|
93755
93567
|
jsonBody: {
|
|
93756
93568
|
/** ID of the device that you want to simulate removing from Seam. */
|
|
@@ -98178,7 +97990,8 @@ interface Routes {
|
|
|
98178
97990
|
}> | undefined;
|
|
98179
97991
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
98180
97992
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
98181
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
97993
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
97994
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
98182
97995
|
active_thermostat_schedule?: ({
|
|
98183
97996
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
98184
97997
|
thermostat_schedule_id: string;
|
|
@@ -98208,6 +98021,8 @@ interface Routes {
|
|
|
98208
98021
|
message: string;
|
|
98209
98022
|
}>;
|
|
98210
98023
|
} | null) | undefined;
|
|
98024
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
98025
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
98211
98026
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
98212
98027
|
thermostat_daily_programs?: (Array<{
|
|
98213
98028
|
/** ID of the thermostat daily program. */
|
|
@@ -99286,7 +99101,8 @@ interface Routes {
|
|
|
99286
99101
|
}> | undefined;
|
|
99287
99102
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
99288
99103
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
99289
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
99104
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
99105
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
99290
99106
|
active_thermostat_schedule?: ({
|
|
99291
99107
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
99292
99108
|
thermostat_schedule_id: string;
|
|
@@ -99316,6 +99132,8 @@ interface Routes {
|
|
|
99316
99132
|
message: string;
|
|
99317
99133
|
}>;
|
|
99318
99134
|
} | null) | undefined;
|
|
99135
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
99136
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
99319
99137
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
99320
99138
|
thermostat_daily_programs?: (Array<{
|
|
99321
99139
|
/** ID of the thermostat daily program. */
|
|
@@ -100438,7 +100256,8 @@ interface Routes {
|
|
|
100438
100256
|
}> | undefined;
|
|
100439
100257
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
100440
100258
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
100441
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
100259
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
100260
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
100442
100261
|
active_thermostat_schedule?: ({
|
|
100443
100262
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
100444
100263
|
thermostat_schedule_id: string;
|
|
@@ -100468,6 +100287,8 @@ interface Routes {
|
|
|
100468
100287
|
message: string;
|
|
100469
100288
|
}>;
|
|
100470
100289
|
} | null) | undefined;
|
|
100290
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
100291
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
100471
100292
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
100472
100293
|
thermostat_daily_programs?: (Array<{
|
|
100473
100294
|
/** ID of the thermostat daily program. */
|
|
@@ -101545,7 +101366,8 @@ interface Routes {
|
|
|
101545
101366
|
}> | undefined;
|
|
101546
101367
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
101547
101368
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
101548
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
101369
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
101370
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
101549
101371
|
active_thermostat_schedule?: ({
|
|
101550
101372
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
101551
101373
|
thermostat_schedule_id: string;
|
|
@@ -101575,6 +101397,8 @@ interface Routes {
|
|
|
101575
101397
|
message: string;
|
|
101576
101398
|
}>;
|
|
101577
101399
|
} | null) | undefined;
|
|
101400
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
101401
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
101578
101402
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
101579
101403
|
thermostat_daily_programs?: (Array<{
|
|
101580
101404
|
/** ID of the thermostat daily program. */
|
|
@@ -107990,7 +107814,8 @@ interface Routes {
|
|
|
107990
107814
|
}> | undefined;
|
|
107991
107815
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
107992
107816
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
107993
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
107817
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
107818
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
107994
107819
|
active_thermostat_schedule?: ({
|
|
107995
107820
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
107996
107821
|
thermostat_schedule_id: string;
|
|
@@ -108020,6 +107845,8 @@ interface Routes {
|
|
|
108020
107845
|
message: string;
|
|
108021
107846
|
}>;
|
|
108022
107847
|
} | null) | undefined;
|
|
107848
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
107849
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
108023
107850
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
108024
107851
|
thermostat_daily_programs?: (Array<{
|
|
108025
107852
|
/** ID of the thermostat daily program. */
|
|
@@ -109097,7 +108924,8 @@ interface Routes {
|
|
|
109097
108924
|
}> | undefined;
|
|
109098
108925
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
109099
108926
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
109100
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
108927
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
108928
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
109101
108929
|
active_thermostat_schedule?: ({
|
|
109102
108930
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
109103
108931
|
thermostat_schedule_id: string;
|
|
@@ -109127,6 +108955,8 @@ interface Routes {
|
|
|
109127
108955
|
message: string;
|
|
109128
108956
|
}>;
|
|
109129
108957
|
} | null) | undefined;
|
|
108958
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
108959
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
109130
108960
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
109131
108961
|
thermostat_daily_programs?: (Array<{
|
|
109132
108962
|
/** ID of the thermostat daily program. */
|
|
@@ -113729,7 +113559,7 @@ interface Routes {
|
|
|
113729
113559
|
};
|
|
113730
113560
|
'/phones/simulate/create_sandbox_phone': {
|
|
113731
113561
|
route: '/phones/simulate/create_sandbox_phone';
|
|
113732
|
-
method: '
|
|
113562
|
+
method: 'POST';
|
|
113733
113563
|
queryParams: {};
|
|
113734
113564
|
jsonBody: {
|
|
113735
113565
|
/** ID of the custom SDK installation that you want to use for the simulated phone. */
|
|
@@ -119573,7 +119403,8 @@ interface Routes {
|
|
|
119573
119403
|
}> | undefined;
|
|
119574
119404
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
119575
119405
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
119576
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
119406
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
119407
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
119577
119408
|
active_thermostat_schedule?: ({
|
|
119578
119409
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
119579
119410
|
thermostat_schedule_id: string;
|
|
@@ -119603,6 +119434,8 @@ interface Routes {
|
|
|
119603
119434
|
message: string;
|
|
119604
119435
|
}>;
|
|
119605
119436
|
} | null) | undefined;
|
|
119437
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
119438
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
119606
119439
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
119607
119440
|
thermostat_daily_programs?: (Array<{
|
|
119608
119441
|
/** ID of the thermostat daily program. */
|
|
@@ -123367,7 +123200,8 @@ interface Routes {
|
|
|
123367
123200
|
}> | undefined;
|
|
123368
123201
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
123369
123202
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
123370
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
123203
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
123204
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
123371
123205
|
active_thermostat_schedule?: ({
|
|
123372
123206
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
123373
123207
|
thermostat_schedule_id: string;
|
|
@@ -123397,6 +123231,8 @@ interface Routes {
|
|
|
123397
123231
|
message: string;
|
|
123398
123232
|
}>;
|
|
123399
123233
|
} | null) | undefined;
|
|
123234
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
123235
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
123400
123236
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
123401
123237
|
thermostat_daily_programs?: (Array<{
|
|
123402
123238
|
/** ID of the thermostat daily program. */
|
|
@@ -124474,7 +124310,8 @@ interface Routes {
|
|
|
124474
124310
|
}> | undefined;
|
|
124475
124311
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
124476
124312
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
124477
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
124313
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
124314
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
124478
124315
|
active_thermostat_schedule?: ({
|
|
124479
124316
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
124480
124317
|
thermostat_schedule_id: string;
|
|
@@ -124504,6 +124341,8 @@ interface Routes {
|
|
|
124504
124341
|
message: string;
|
|
124505
124342
|
}>;
|
|
124506
124343
|
} | null) | undefined;
|
|
124344
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
124345
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
124507
124346
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
124508
124347
|
thermostat_daily_programs?: (Array<{
|
|
124509
124348
|
/** ID of the thermostat daily program. */
|
|
@@ -132159,7 +131998,8 @@ interface Routes {
|
|
|
132159
131998
|
}> | undefined;
|
|
132160
131999
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
132161
132000
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
132162
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
132001
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
132002
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
132163
132003
|
active_thermostat_schedule?: ({
|
|
132164
132004
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
132165
132005
|
thermostat_schedule_id: string;
|
|
@@ -132189,6 +132029,8 @@ interface Routes {
|
|
|
132189
132029
|
message: string;
|
|
132190
132030
|
}>;
|
|
132191
132031
|
} | null) | undefined;
|
|
132032
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
132033
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
132192
132034
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
132193
132035
|
thermostat_daily_programs?: (Array<{
|
|
132194
132036
|
/** ID of the thermostat daily program. */
|
|
@@ -133268,7 +133110,8 @@ interface Routes {
|
|
|
133268
133110
|
}> | undefined;
|
|
133269
133111
|
/** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
|
|
133270
133112
|
fallback_climate_preset_key?: (string | null) | undefined;
|
|
133271
|
-
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
133113
|
+
/** Active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
|
|
133114
|
+
* @deprecated Use `active_thermostat_schedule_id` with `/thermostats/schedules/get` instead. */
|
|
133272
133115
|
active_thermostat_schedule?: ({
|
|
133273
133116
|
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
133274
133117
|
thermostat_schedule_id: string;
|
|
@@ -133298,6 +133141,8 @@ interface Routes {
|
|
|
133298
133141
|
message: string;
|
|
133299
133142
|
}>;
|
|
133300
133143
|
} | null) | undefined;
|
|
133144
|
+
/** ID of the active [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
133145
|
+
active_thermostat_schedule_id?: (string | null) | undefined;
|
|
133301
133146
|
/** Configured [daily programs](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-programs) for the thermostat. */
|
|
133302
133147
|
thermostat_daily_programs?: (Array<{
|
|
133303
133148
|
/** ID of the thermostat daily program. */
|