@seamapi/types 1.226.0 → 1.228.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 +50 -26
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +105 -224
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +0 -30
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +0 -30
- package/lib/seam/connect/models/devices/device.d.ts +0 -42
- package/lib/seam/connect/models/devices/phone.d.ts +0 -30
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -30
- package/lib/seam/connect/models/thermostats/climate-setting-schedule.d.ts +0 -6
- package/lib/seam/connect/models/thermostats/climate-setting.d.ts +0 -6
- package/lib/seam/connect/models/thermostats/climate-setting.js +0 -2
- package/lib/seam/connect/models/thermostats/climate-setting.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +69 -60
- package/lib/seam/connect/openapi.js +50 -24
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +36 -86
- package/package.json +1 -1
- package/src/lib/seam/connect/models/thermostats/climate-setting.ts +0 -2
- package/src/lib/seam/connect/openapi.ts +50 -24
- package/src/lib/seam/connect/route-types.ts +47 -86
|
@@ -2171,6 +2171,42 @@ export interface Routes {
|
|
|
2171
2171
|
}>;
|
|
2172
2172
|
};
|
|
2173
2173
|
};
|
|
2174
|
+
'/acs/access_groups/list_accessible_entrances': {
|
|
2175
|
+
route: '/acs/access_groups/list_accessible_entrances';
|
|
2176
|
+
method: 'GET' | 'POST';
|
|
2177
|
+
queryParams: {};
|
|
2178
|
+
jsonBody: {};
|
|
2179
|
+
commonParams: {
|
|
2180
|
+
acs_access_group_id: string;
|
|
2181
|
+
};
|
|
2182
|
+
formData: {};
|
|
2183
|
+
jsonResponse: {
|
|
2184
|
+
acs_entrances: Array<{
|
|
2185
|
+
acs_system_id: string;
|
|
2186
|
+
acs_entrance_id: string;
|
|
2187
|
+
created_at: string;
|
|
2188
|
+
display_name: string;
|
|
2189
|
+
errors: Array<{
|
|
2190
|
+
error_code: string;
|
|
2191
|
+
message: string;
|
|
2192
|
+
}>;
|
|
2193
|
+
latch_metadata?: {
|
|
2194
|
+
accessibility_type: string;
|
|
2195
|
+
door_name: string;
|
|
2196
|
+
door_type: string;
|
|
2197
|
+
is_connected: boolean;
|
|
2198
|
+
} | undefined;
|
|
2199
|
+
visionline_metadata?: {
|
|
2200
|
+
door_name: string;
|
|
2201
|
+
door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
|
|
2202
|
+
profiles?: Array<{
|
|
2203
|
+
visionline_door_profile_id: string;
|
|
2204
|
+
visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch';
|
|
2205
|
+
}> | undefined;
|
|
2206
|
+
} | undefined;
|
|
2207
|
+
}>;
|
|
2208
|
+
};
|
|
2209
|
+
};
|
|
2174
2210
|
'/acs/access_groups/list_users': {
|
|
2175
2211
|
route: '/acs/access_groups/list_users';
|
|
2176
2212
|
method: 'GET' | 'POST';
|
|
@@ -4768,8 +4804,6 @@ export interface Routes {
|
|
|
4768
4804
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
4769
4805
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
4770
4806
|
current_climate_setting?: {
|
|
4771
|
-
automatic_heating_enabled: boolean;
|
|
4772
|
-
automatic_cooling_enabled: boolean;
|
|
4773
4807
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
4774
4808
|
cooling_set_point_celsius?: number | undefined;
|
|
4775
4809
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -4778,8 +4812,6 @@ export interface Routes {
|
|
|
4778
4812
|
manual_override_allowed: boolean;
|
|
4779
4813
|
} | undefined;
|
|
4780
4814
|
default_climate_setting?: {
|
|
4781
|
-
automatic_heating_enabled: boolean;
|
|
4782
|
-
automatic_cooling_enabled: boolean;
|
|
4783
4815
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
4784
4816
|
cooling_set_point_celsius?: number | undefined;
|
|
4785
4817
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -4798,8 +4830,6 @@ export interface Routes {
|
|
|
4798
4830
|
created_at: string;
|
|
4799
4831
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4800
4832
|
errors?: any;
|
|
4801
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
4802
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
4803
4833
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
4804
4834
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
4805
4835
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -5189,8 +5219,6 @@ export interface Routes {
|
|
|
5189
5219
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
5190
5220
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
5191
5221
|
current_climate_setting?: {
|
|
5192
|
-
automatic_heating_enabled: boolean;
|
|
5193
|
-
automatic_cooling_enabled: boolean;
|
|
5194
5222
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
5195
5223
|
cooling_set_point_celsius?: number | undefined;
|
|
5196
5224
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -5199,8 +5227,6 @@ export interface Routes {
|
|
|
5199
5227
|
manual_override_allowed: boolean;
|
|
5200
5228
|
} | undefined;
|
|
5201
5229
|
default_climate_setting?: {
|
|
5202
|
-
automatic_heating_enabled: boolean;
|
|
5203
|
-
automatic_cooling_enabled: boolean;
|
|
5204
5230
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
5205
5231
|
cooling_set_point_celsius?: number | undefined;
|
|
5206
5232
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -5219,8 +5245,6 @@ export interface Routes {
|
|
|
5219
5245
|
created_at: string;
|
|
5220
5246
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5221
5247
|
errors?: any;
|
|
5222
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
5223
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
5224
5248
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
5225
5249
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
5226
5250
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -5978,8 +6002,6 @@ export interface Routes {
|
|
|
5978
6002
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
5979
6003
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
5980
6004
|
current_climate_setting?: {
|
|
5981
|
-
automatic_heating_enabled: boolean;
|
|
5982
|
-
automatic_cooling_enabled: boolean;
|
|
5983
6005
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
5984
6006
|
cooling_set_point_celsius?: number | undefined;
|
|
5985
6007
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -5988,8 +6010,6 @@ export interface Routes {
|
|
|
5988
6010
|
manual_override_allowed: boolean;
|
|
5989
6011
|
} | undefined;
|
|
5990
6012
|
default_climate_setting?: {
|
|
5991
|
-
automatic_heating_enabled: boolean;
|
|
5992
|
-
automatic_cooling_enabled: boolean;
|
|
5993
6013
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
5994
6014
|
cooling_set_point_celsius?: number | undefined;
|
|
5995
6015
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -6008,8 +6028,6 @@ export interface Routes {
|
|
|
6008
6028
|
created_at: string;
|
|
6009
6029
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
6010
6030
|
errors?: any;
|
|
6011
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
6012
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
6013
6031
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
6014
6032
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
6015
6033
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -6374,8 +6392,6 @@ export interface Routes {
|
|
|
6374
6392
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
6375
6393
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
6376
6394
|
current_climate_setting?: {
|
|
6377
|
-
automatic_heating_enabled: boolean;
|
|
6378
|
-
automatic_cooling_enabled: boolean;
|
|
6379
6395
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
6380
6396
|
cooling_set_point_celsius?: number | undefined;
|
|
6381
6397
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -6384,8 +6400,6 @@ export interface Routes {
|
|
|
6384
6400
|
manual_override_allowed: boolean;
|
|
6385
6401
|
} | undefined;
|
|
6386
6402
|
default_climate_setting?: {
|
|
6387
|
-
automatic_heating_enabled: boolean;
|
|
6388
|
-
automatic_cooling_enabled: boolean;
|
|
6389
6403
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
6390
6404
|
cooling_set_point_celsius?: number | undefined;
|
|
6391
6405
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -6404,8 +6418,6 @@ export interface Routes {
|
|
|
6404
6418
|
created_at: string;
|
|
6405
6419
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
6406
6420
|
errors?: any;
|
|
6407
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
6408
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
6409
6421
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
6410
6422
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
6411
6423
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -6795,8 +6807,6 @@ export interface Routes {
|
|
|
6795
6807
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
6796
6808
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
6797
6809
|
current_climate_setting?: {
|
|
6798
|
-
automatic_heating_enabled: boolean;
|
|
6799
|
-
automatic_cooling_enabled: boolean;
|
|
6800
6810
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
6801
6811
|
cooling_set_point_celsius?: number | undefined;
|
|
6802
6812
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -6805,8 +6815,6 @@ export interface Routes {
|
|
|
6805
6815
|
manual_override_allowed: boolean;
|
|
6806
6816
|
} | undefined;
|
|
6807
6817
|
default_climate_setting?: {
|
|
6808
|
-
automatic_heating_enabled: boolean;
|
|
6809
|
-
automatic_cooling_enabled: boolean;
|
|
6810
6818
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
6811
6819
|
cooling_set_point_celsius?: number | undefined;
|
|
6812
6820
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -6825,8 +6833,6 @@ export interface Routes {
|
|
|
6825
6833
|
created_at: string;
|
|
6826
6834
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
6827
6835
|
errors?: any;
|
|
6828
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
6829
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
6830
6836
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
6831
6837
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
6832
6838
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -7191,8 +7197,6 @@ export interface Routes {
|
|
|
7191
7197
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
7192
7198
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
7193
7199
|
current_climate_setting?: {
|
|
7194
|
-
automatic_heating_enabled: boolean;
|
|
7195
|
-
automatic_cooling_enabled: boolean;
|
|
7196
7200
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
7197
7201
|
cooling_set_point_celsius?: number | undefined;
|
|
7198
7202
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -7201,8 +7205,6 @@ export interface Routes {
|
|
|
7201
7205
|
manual_override_allowed: boolean;
|
|
7202
7206
|
} | undefined;
|
|
7203
7207
|
default_climate_setting?: {
|
|
7204
|
-
automatic_heating_enabled: boolean;
|
|
7205
|
-
automatic_cooling_enabled: boolean;
|
|
7206
7208
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
7207
7209
|
cooling_set_point_celsius?: number | undefined;
|
|
7208
7210
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -7221,8 +7223,6 @@ export interface Routes {
|
|
|
7221
7223
|
created_at: string;
|
|
7222
7224
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
7223
7225
|
errors?: any;
|
|
7224
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
7225
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
7226
7226
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
7227
7227
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
7228
7228
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -8394,8 +8394,6 @@ export interface Routes {
|
|
|
8394
8394
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
8395
8395
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
8396
8396
|
current_climate_setting?: {
|
|
8397
|
-
automatic_heating_enabled: boolean;
|
|
8398
|
-
automatic_cooling_enabled: boolean;
|
|
8399
8397
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
8400
8398
|
cooling_set_point_celsius?: number | undefined;
|
|
8401
8399
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -8404,8 +8402,6 @@ export interface Routes {
|
|
|
8404
8402
|
manual_override_allowed: boolean;
|
|
8405
8403
|
} | undefined;
|
|
8406
8404
|
default_climate_setting?: {
|
|
8407
|
-
automatic_heating_enabled: boolean;
|
|
8408
|
-
automatic_cooling_enabled: boolean;
|
|
8409
8405
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
8410
8406
|
cooling_set_point_celsius?: number | undefined;
|
|
8411
8407
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -8424,8 +8420,6 @@ export interface Routes {
|
|
|
8424
8420
|
created_at: string;
|
|
8425
8421
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
8426
8422
|
errors?: any;
|
|
8427
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
8428
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
8429
8423
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
8430
8424
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
8431
8425
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -8790,8 +8784,6 @@ export interface Routes {
|
|
|
8790
8784
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
8791
8785
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
8792
8786
|
current_climate_setting?: {
|
|
8793
|
-
automatic_heating_enabled: boolean;
|
|
8794
|
-
automatic_cooling_enabled: boolean;
|
|
8795
8787
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
8796
8788
|
cooling_set_point_celsius?: number | undefined;
|
|
8797
8789
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -8800,8 +8792,6 @@ export interface Routes {
|
|
|
8800
8792
|
manual_override_allowed: boolean;
|
|
8801
8793
|
} | undefined;
|
|
8802
8794
|
default_climate_setting?: {
|
|
8803
|
-
automatic_heating_enabled: boolean;
|
|
8804
|
-
automatic_cooling_enabled: boolean;
|
|
8805
8795
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
8806
8796
|
cooling_set_point_celsius?: number | undefined;
|
|
8807
8797
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -8820,8 +8810,6 @@ export interface Routes {
|
|
|
8820
8810
|
created_at: string;
|
|
8821
8811
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
8822
8812
|
errors?: any;
|
|
8823
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
8824
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
8825
8813
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
8826
8814
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
8827
8815
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -10251,8 +10239,6 @@ export interface Routes {
|
|
|
10251
10239
|
name?: string | undefined;
|
|
10252
10240
|
schedule_starts_at: string;
|
|
10253
10241
|
schedule_ends_at: string;
|
|
10254
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
10255
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
10256
10242
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
10257
10243
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
10258
10244
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -10273,8 +10259,6 @@ export interface Routes {
|
|
|
10273
10259
|
created_at: string;
|
|
10274
10260
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
10275
10261
|
errors?: any;
|
|
10276
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
10277
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
10278
10262
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
10279
10263
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
10280
10264
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -10316,8 +10300,6 @@ export interface Routes {
|
|
|
10316
10300
|
created_at: string;
|
|
10317
10301
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
10318
10302
|
errors?: any;
|
|
10319
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
10320
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
10321
10303
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
10322
10304
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
10323
10305
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -10348,8 +10330,6 @@ export interface Routes {
|
|
|
10348
10330
|
created_at: string;
|
|
10349
10331
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
10350
10332
|
errors?: any;
|
|
10351
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
10352
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
10353
10333
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
10354
10334
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
10355
10335
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -10369,8 +10349,6 @@ export interface Routes {
|
|
|
10369
10349
|
name?: string | undefined;
|
|
10370
10350
|
schedule_starts_at?: string | undefined;
|
|
10371
10351
|
schedule_ends_at?: string | undefined;
|
|
10372
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
10373
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
10374
10352
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
10375
10353
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
10376
10354
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -10391,8 +10369,6 @@ export interface Routes {
|
|
|
10391
10369
|
created_at: string;
|
|
10392
10370
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
10393
10371
|
errors?: any;
|
|
10394
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
10395
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
10396
10372
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
10397
10373
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
10398
10374
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -11096,8 +11072,6 @@ export interface Routes {
|
|
|
11096
11072
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
11097
11073
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
11098
11074
|
current_climate_setting?: {
|
|
11099
|
-
automatic_heating_enabled: boolean;
|
|
11100
|
-
automatic_cooling_enabled: boolean;
|
|
11101
11075
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
11102
11076
|
cooling_set_point_celsius?: number | undefined;
|
|
11103
11077
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -11106,8 +11080,6 @@ export interface Routes {
|
|
|
11106
11080
|
manual_override_allowed: boolean;
|
|
11107
11081
|
} | undefined;
|
|
11108
11082
|
default_climate_setting?: {
|
|
11109
|
-
automatic_heating_enabled: boolean;
|
|
11110
|
-
automatic_cooling_enabled: boolean;
|
|
11111
11083
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
11112
11084
|
cooling_set_point_celsius?: number | undefined;
|
|
11113
11085
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -11126,8 +11098,6 @@ export interface Routes {
|
|
|
11126
11098
|
created_at: string;
|
|
11127
11099
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
11128
11100
|
errors?: any;
|
|
11129
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
11130
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
11131
11101
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
11132
11102
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
11133
11103
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -12271,8 +12241,6 @@ export interface Routes {
|
|
|
12271
12241
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
12272
12242
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
12273
12243
|
current_climate_setting?: {
|
|
12274
|
-
automatic_heating_enabled: boolean;
|
|
12275
|
-
automatic_cooling_enabled: boolean;
|
|
12276
12244
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
12277
12245
|
cooling_set_point_celsius?: number | undefined;
|
|
12278
12246
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -12281,8 +12249,6 @@ export interface Routes {
|
|
|
12281
12249
|
manual_override_allowed: boolean;
|
|
12282
12250
|
} | undefined;
|
|
12283
12251
|
default_climate_setting?: {
|
|
12284
|
-
automatic_heating_enabled: boolean;
|
|
12285
|
-
automatic_cooling_enabled: boolean;
|
|
12286
12252
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
12287
12253
|
cooling_set_point_celsius?: number | undefined;
|
|
12288
12254
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -12301,8 +12267,6 @@ export interface Routes {
|
|
|
12301
12267
|
created_at: string;
|
|
12302
12268
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
12303
12269
|
errors?: any;
|
|
12304
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
12305
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
12306
12270
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
12307
12271
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
12308
12272
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -13119,8 +13083,6 @@ export interface Routes {
|
|
|
13119
13083
|
jsonBody: {
|
|
13120
13084
|
device_id: string;
|
|
13121
13085
|
default_climate_setting: {
|
|
13122
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
13123
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
13124
13086
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
13125
13087
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
13126
13088
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -13629,8 +13591,6 @@ export interface Routes {
|
|
|
13629
13591
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
13630
13592
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
13631
13593
|
current_climate_setting?: {
|
|
13632
|
-
automatic_heating_enabled: boolean;
|
|
13633
|
-
automatic_cooling_enabled: boolean;
|
|
13634
13594
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
13635
13595
|
cooling_set_point_celsius?: number | undefined;
|
|
13636
13596
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -13639,8 +13599,6 @@ export interface Routes {
|
|
|
13639
13599
|
manual_override_allowed: boolean;
|
|
13640
13600
|
} | undefined;
|
|
13641
13601
|
default_climate_setting?: {
|
|
13642
|
-
automatic_heating_enabled: boolean;
|
|
13643
|
-
automatic_cooling_enabled: boolean;
|
|
13644
13602
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
13645
13603
|
cooling_set_point_celsius?: number | undefined;
|
|
13646
13604
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -13659,8 +13617,6 @@ export interface Routes {
|
|
|
13659
13617
|
created_at: string;
|
|
13660
13618
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
13661
13619
|
errors?: any;
|
|
13662
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
13663
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
13664
13620
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
13665
13621
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
13666
13622
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -14027,8 +13983,6 @@ export interface Routes {
|
|
|
14027
13983
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
14028
13984
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
14029
13985
|
current_climate_setting?: {
|
|
14030
|
-
automatic_heating_enabled: boolean;
|
|
14031
|
-
automatic_cooling_enabled: boolean;
|
|
14032
13986
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
14033
13987
|
cooling_set_point_celsius?: number | undefined;
|
|
14034
13988
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -14037,8 +13991,6 @@ export interface Routes {
|
|
|
14037
13991
|
manual_override_allowed: boolean;
|
|
14038
13992
|
} | undefined;
|
|
14039
13993
|
default_climate_setting?: {
|
|
14040
|
-
automatic_heating_enabled: boolean;
|
|
14041
|
-
automatic_cooling_enabled: boolean;
|
|
14042
13994
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
14043
13995
|
cooling_set_point_celsius?: number | undefined;
|
|
14044
13996
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -14057,8 +14009,6 @@ export interface Routes {
|
|
|
14057
14009
|
created_at: string;
|
|
14058
14010
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
14059
14011
|
errors?: any;
|
|
14060
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
14061
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
14062
14012
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
14063
14013
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
14064
14014
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
package/package.json
CHANGED
|
@@ -3,8 +3,6 @@ import { z } from 'zod'
|
|
|
3
3
|
import { hvac_mode_setting } from './modes.js'
|
|
4
4
|
|
|
5
5
|
export const climate_setting = z.object({
|
|
6
|
-
automatic_heating_enabled: z.boolean(),
|
|
7
|
-
automatic_cooling_enabled: z.boolean(),
|
|
8
6
|
hvac_mode_setting,
|
|
9
7
|
cooling_set_point_celsius: z.number().optional(),
|
|
10
8
|
heating_set_point_celsius: z.number().optional(),
|
|
@@ -1862,8 +1862,6 @@ export default {
|
|
|
1862
1862
|
},
|
|
1863
1863
|
climate_setting_schedule: {
|
|
1864
1864
|
properties: {
|
|
1865
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
1866
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
1867
1865
|
climate_setting_schedule_id: { format: 'uuid', type: 'string' },
|
|
1868
1866
|
cooling_set_point_celsius: { format: 'float', type: 'number' },
|
|
1869
1867
|
cooling_set_point_fahrenheit: { format: 'float', type: 'number' },
|
|
@@ -2923,8 +2921,6 @@ export default {
|
|
|
2923
2921
|
properties: {
|
|
2924
2922
|
active_climate_setting_schedule: {
|
|
2925
2923
|
properties: {
|
|
2926
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
2927
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
2928
2924
|
climate_setting_schedule_id: {
|
|
2929
2925
|
format: 'uuid',
|
|
2930
2926
|
type: 'string',
|
|
@@ -2983,8 +2979,6 @@ export default {
|
|
|
2983
2979
|
},
|
|
2984
2980
|
current_climate_setting: {
|
|
2985
2981
|
properties: {
|
|
2986
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
2987
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
2988
2982
|
cooling_set_point_celsius: {
|
|
2989
2983
|
format: 'float',
|
|
2990
2984
|
type: 'number',
|
|
@@ -3008,8 +3002,6 @@ export default {
|
|
|
3008
3002
|
manual_override_allowed: { type: 'boolean' },
|
|
3009
3003
|
},
|
|
3010
3004
|
required: [
|
|
3011
|
-
'automatic_heating_enabled',
|
|
3012
|
-
'automatic_cooling_enabled',
|
|
3013
3005
|
'hvac_mode_setting',
|
|
3014
3006
|
'manual_override_allowed',
|
|
3015
3007
|
],
|
|
@@ -3017,8 +3009,6 @@ export default {
|
|
|
3017
3009
|
},
|
|
3018
3010
|
default_climate_setting: {
|
|
3019
3011
|
properties: {
|
|
3020
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
3021
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
3022
3012
|
cooling_set_point_celsius: {
|
|
3023
3013
|
format: 'float',
|
|
3024
3014
|
type: 'number',
|
|
@@ -3042,8 +3032,6 @@ export default {
|
|
|
3042
3032
|
manual_override_allowed: { type: 'boolean' },
|
|
3043
3033
|
},
|
|
3044
3034
|
required: [
|
|
3045
|
-
'automatic_heating_enabled',
|
|
3046
|
-
'automatic_cooling_enabled',
|
|
3047
3035
|
'hvac_mode_setting',
|
|
3048
3036
|
'manual_override_allowed',
|
|
3049
3037
|
],
|
|
@@ -5323,6 +5311,56 @@ export default {
|
|
|
5323
5311
|
'x-fern-sdk-return-value': 'acs_access_groups',
|
|
5324
5312
|
},
|
|
5325
5313
|
},
|
|
5314
|
+
'/acs/access_groups/list_accessible_entrances': {
|
|
5315
|
+
post: {
|
|
5316
|
+
operationId: 'acsAccessGroupsListAccessibleEntrancesPost',
|
|
5317
|
+
requestBody: {
|
|
5318
|
+
content: {
|
|
5319
|
+
'application/json': {
|
|
5320
|
+
schema: {
|
|
5321
|
+
properties: {
|
|
5322
|
+
acs_access_group_id: { format: 'uuid', type: 'string' },
|
|
5323
|
+
},
|
|
5324
|
+
required: ['acs_access_group_id'],
|
|
5325
|
+
type: 'object',
|
|
5326
|
+
},
|
|
5327
|
+
},
|
|
5328
|
+
},
|
|
5329
|
+
},
|
|
5330
|
+
responses: {
|
|
5331
|
+
200: {
|
|
5332
|
+
content: {
|
|
5333
|
+
'application/json': {
|
|
5334
|
+
schema: {
|
|
5335
|
+
properties: {
|
|
5336
|
+
acs_entrances: {
|
|
5337
|
+
items: { $ref: '#/components/schemas/acs_entrance' },
|
|
5338
|
+
type: 'array',
|
|
5339
|
+
},
|
|
5340
|
+
ok: { type: 'boolean' },
|
|
5341
|
+
},
|
|
5342
|
+
required: ['acs_entrances', 'ok'],
|
|
5343
|
+
type: 'object',
|
|
5344
|
+
},
|
|
5345
|
+
},
|
|
5346
|
+
},
|
|
5347
|
+
description: 'OK',
|
|
5348
|
+
},
|
|
5349
|
+
400: { description: 'Bad Request' },
|
|
5350
|
+
401: { description: 'Unauthorized' },
|
|
5351
|
+
},
|
|
5352
|
+
security: [
|
|
5353
|
+
{ api_key: [] },
|
|
5354
|
+
{ pat_with_workspace: [] },
|
|
5355
|
+
{ console_session: [] },
|
|
5356
|
+
],
|
|
5357
|
+
summary: '/acs/access_groups/list_accessible_entrances',
|
|
5358
|
+
tags: ['/acs'],
|
|
5359
|
+
'x-fern-sdk-group-name': ['acs', 'access_groups'],
|
|
5360
|
+
'x-fern-sdk-method-name': 'list_accessible_entrances',
|
|
5361
|
+
'x-fern-sdk-return-value': 'acs_entrances',
|
|
5362
|
+
},
|
|
5363
|
+
},
|
|
5326
5364
|
'/acs/access_groups/list_users': {
|
|
5327
5365
|
post: {
|
|
5328
5366
|
operationId: 'acsAccessGroupsListUsersPost',
|
|
@@ -10877,8 +10915,6 @@ export default {
|
|
|
10877
10915
|
'application/json': {
|
|
10878
10916
|
schema: {
|
|
10879
10917
|
properties: {
|
|
10880
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
10881
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
10882
10918
|
cooling_set_point_celsius: {
|
|
10883
10919
|
format: 'float',
|
|
10884
10920
|
type: 'number',
|
|
@@ -11160,8 +11196,6 @@ export default {
|
|
|
11160
11196
|
'application/json': {
|
|
11161
11197
|
schema: {
|
|
11162
11198
|
properties: {
|
|
11163
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
11164
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
11165
11199
|
climate_setting_schedule_id: {
|
|
11166
11200
|
format: 'uuid',
|
|
11167
11201
|
type: 'string',
|
|
@@ -11240,8 +11274,6 @@ export default {
|
|
|
11240
11274
|
'application/json': {
|
|
11241
11275
|
schema: {
|
|
11242
11276
|
properties: {
|
|
11243
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
11244
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
11245
11277
|
climate_setting_schedule_id: {
|
|
11246
11278
|
format: 'uuid',
|
|
11247
11279
|
type: 'string',
|
|
@@ -11321,8 +11353,6 @@ export default {
|
|
|
11321
11353
|
'application/json': {
|
|
11322
11354
|
schema: {
|
|
11323
11355
|
properties: {
|
|
11324
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
11325
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
11326
11356
|
climate_setting_schedule_id: {
|
|
11327
11357
|
format: 'uuid',
|
|
11328
11358
|
type: 'string',
|
|
@@ -11986,8 +12016,6 @@ export default {
|
|
|
11986
12016
|
properties: {
|
|
11987
12017
|
default_climate_setting: {
|
|
11988
12018
|
properties: {
|
|
11989
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
11990
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
11991
12019
|
cooling_set_point_celsius: {
|
|
11992
12020
|
format: 'float',
|
|
11993
12021
|
type: 'number',
|
|
@@ -12055,8 +12083,6 @@ export default {
|
|
|
12055
12083
|
properties: {
|
|
12056
12084
|
default_climate_setting: {
|
|
12057
12085
|
properties: {
|
|
12058
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
12059
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
12060
12086
|
cooling_set_point_celsius: {
|
|
12061
12087
|
format: 'float',
|
|
12062
12088
|
type: 'number',
|