@seamapi/types 1.290.0 → 1.292.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 +688 -193
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1099 -82
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +52 -7
- package/lib/seam/connect/models/acs/acs-encoder.js +28 -4
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.js +15 -9
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/events/acs/encoders.d.ts +126 -0
- package/lib/seam/connect/models/events/acs/encoders.js +20 -0
- package/lib/seam/connect/models/events/acs/encoders.js.map +1 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +60 -0
- package/lib/seam/connect/models/events/acs/index.js +2 -0
- package/lib/seam/connect/models/events/acs/index.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +60 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js +41 -12
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +30 -9
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +218 -23
- package/lib/seam/connect/openapi.js +598 -133
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +803 -52
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +40 -6
- package/src/lib/seam/connect/models/acs/acs-system.ts +29 -21
- package/src/lib/seam/connect/models/events/acs/encoders.ts +28 -0
- package/src/lib/seam/connect/models/events/acs/index.ts +2 -0
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +49 -12
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +38 -9
- package/src/lib/seam/connect/openapi.ts +754 -133
- package/src/lib/seam/connect/route-types.ts +805 -50
|
@@ -663,7 +663,7 @@ declare const _default: {
|
|
|
663
663
|
description: string;
|
|
664
664
|
items: {
|
|
665
665
|
description: string;
|
|
666
|
-
oneOf:
|
|
666
|
+
oneOf: {
|
|
667
667
|
description: string;
|
|
668
668
|
properties: {
|
|
669
669
|
created_at: {
|
|
@@ -683,27 +683,7 @@ declare const _default: {
|
|
|
683
683
|
};
|
|
684
684
|
required: string[];
|
|
685
685
|
type: string;
|
|
686
|
-
}
|
|
687
|
-
properties: {
|
|
688
|
-
created_at: {
|
|
689
|
-
description: string;
|
|
690
|
-
format: string;
|
|
691
|
-
type: string;
|
|
692
|
-
};
|
|
693
|
-
error_code: {
|
|
694
|
-
description: string;
|
|
695
|
-
enum: string[];
|
|
696
|
-
type: string;
|
|
697
|
-
};
|
|
698
|
-
message: {
|
|
699
|
-
description: string;
|
|
700
|
-
type: string;
|
|
701
|
-
};
|
|
702
|
-
};
|
|
703
|
-
required: string[];
|
|
704
|
-
type: string;
|
|
705
|
-
description?: never;
|
|
706
|
-
})[];
|
|
686
|
+
}[];
|
|
707
687
|
};
|
|
708
688
|
type: string;
|
|
709
689
|
};
|
|
@@ -3282,17 +3262,21 @@ declare const _default: {
|
|
|
3282
3262
|
nullable: boolean;
|
|
3283
3263
|
properties: {
|
|
3284
3264
|
climate_preset_key: {
|
|
3265
|
+
description: string;
|
|
3285
3266
|
type: string;
|
|
3286
3267
|
};
|
|
3287
3268
|
created_at: {
|
|
3269
|
+
description: string;
|
|
3288
3270
|
format: string;
|
|
3289
3271
|
type: string;
|
|
3290
3272
|
};
|
|
3291
3273
|
device_id: {
|
|
3274
|
+
description: string;
|
|
3292
3275
|
format: string;
|
|
3293
3276
|
type: string;
|
|
3294
3277
|
};
|
|
3295
3278
|
ends_at: {
|
|
3279
|
+
description: string;
|
|
3296
3280
|
format: string;
|
|
3297
3281
|
type: string;
|
|
3298
3282
|
};
|
|
@@ -3300,17 +3284,21 @@ declare const _default: {
|
|
|
3300
3284
|
description: string;
|
|
3301
3285
|
};
|
|
3302
3286
|
max_override_period_minutes: {
|
|
3287
|
+
description: string;
|
|
3303
3288
|
minimum: number;
|
|
3304
3289
|
type: string;
|
|
3305
3290
|
};
|
|
3306
3291
|
name: {
|
|
3292
|
+
description: string;
|
|
3307
3293
|
type: string;
|
|
3308
3294
|
};
|
|
3309
3295
|
starts_at: {
|
|
3296
|
+
description: string;
|
|
3310
3297
|
format: string;
|
|
3311
3298
|
type: string;
|
|
3312
3299
|
};
|
|
3313
3300
|
thermostat_schedule_id: {
|
|
3301
|
+
description: string;
|
|
3314
3302
|
format: string;
|
|
3315
3303
|
type: string;
|
|
3316
3304
|
};
|
|
@@ -3322,46 +3310,58 @@ declare const _default: {
|
|
|
3322
3310
|
items: {
|
|
3323
3311
|
properties: {
|
|
3324
3312
|
can_delete: {
|
|
3313
|
+
description: string;
|
|
3325
3314
|
type: string;
|
|
3326
3315
|
};
|
|
3327
3316
|
can_edit: {
|
|
3317
|
+
description: string;
|
|
3328
3318
|
type: string;
|
|
3329
3319
|
};
|
|
3330
3320
|
climate_preset_key: {
|
|
3321
|
+
description: string;
|
|
3331
3322
|
type: string;
|
|
3332
3323
|
};
|
|
3333
3324
|
cooling_set_point_celsius: {
|
|
3325
|
+
description: string;
|
|
3334
3326
|
format: string;
|
|
3335
3327
|
type: string;
|
|
3336
3328
|
};
|
|
3337
3329
|
cooling_set_point_fahrenheit: {
|
|
3330
|
+
description: string;
|
|
3338
3331
|
format: string;
|
|
3339
3332
|
type: string;
|
|
3340
3333
|
};
|
|
3341
3334
|
display_name: {
|
|
3335
|
+
description: string;
|
|
3342
3336
|
type: string;
|
|
3343
3337
|
};
|
|
3344
3338
|
fan_mode_setting: {
|
|
3339
|
+
description: string;
|
|
3345
3340
|
enum: string[];
|
|
3346
3341
|
type: string;
|
|
3347
3342
|
};
|
|
3348
3343
|
heating_set_point_celsius: {
|
|
3344
|
+
description: string;
|
|
3349
3345
|
format: string;
|
|
3350
3346
|
type: string;
|
|
3351
3347
|
};
|
|
3352
3348
|
heating_set_point_fahrenheit: {
|
|
3349
|
+
description: string;
|
|
3353
3350
|
format: string;
|
|
3354
3351
|
type: string;
|
|
3355
3352
|
};
|
|
3356
3353
|
hvac_mode_setting: {
|
|
3354
|
+
description: string;
|
|
3357
3355
|
enum: string[];
|
|
3358
3356
|
type: string;
|
|
3359
3357
|
};
|
|
3360
3358
|
manual_override_allowed: {
|
|
3359
|
+
description: string;
|
|
3361
3360
|
type: string;
|
|
3362
3361
|
};
|
|
3363
3362
|
name: {
|
|
3364
3363
|
default: null;
|
|
3364
|
+
description: string;
|
|
3365
3365
|
nullable: boolean;
|
|
3366
3366
|
type: string;
|
|
3367
3367
|
};
|
|
@@ -3388,46 +3388,58 @@ declare const _default: {
|
|
|
3388
3388
|
current_climate_setting: {
|
|
3389
3389
|
properties: {
|
|
3390
3390
|
can_delete: {
|
|
3391
|
+
description: string;
|
|
3391
3392
|
type: string;
|
|
3392
3393
|
};
|
|
3393
3394
|
can_edit: {
|
|
3395
|
+
description: string;
|
|
3394
3396
|
type: string;
|
|
3395
3397
|
};
|
|
3396
3398
|
climate_preset_key: {
|
|
3399
|
+
description: string;
|
|
3397
3400
|
type: string;
|
|
3398
3401
|
};
|
|
3399
3402
|
cooling_set_point_celsius: {
|
|
3403
|
+
description: string;
|
|
3400
3404
|
format: string;
|
|
3401
3405
|
type: string;
|
|
3402
3406
|
};
|
|
3403
3407
|
cooling_set_point_fahrenheit: {
|
|
3408
|
+
description: string;
|
|
3404
3409
|
format: string;
|
|
3405
3410
|
type: string;
|
|
3406
3411
|
};
|
|
3407
3412
|
display_name: {
|
|
3413
|
+
description: string;
|
|
3408
3414
|
type: string;
|
|
3409
3415
|
};
|
|
3410
3416
|
fan_mode_setting: {
|
|
3417
|
+
description: string;
|
|
3411
3418
|
enum: string[];
|
|
3412
3419
|
type: string;
|
|
3413
3420
|
};
|
|
3414
3421
|
heating_set_point_celsius: {
|
|
3422
|
+
description: string;
|
|
3415
3423
|
format: string;
|
|
3416
3424
|
type: string;
|
|
3417
3425
|
};
|
|
3418
3426
|
heating_set_point_fahrenheit: {
|
|
3427
|
+
description: string;
|
|
3419
3428
|
format: string;
|
|
3420
3429
|
type: string;
|
|
3421
3430
|
};
|
|
3422
3431
|
hvac_mode_setting: {
|
|
3432
|
+
description: string;
|
|
3423
3433
|
enum: string[];
|
|
3424
3434
|
type: string;
|
|
3425
3435
|
};
|
|
3426
3436
|
manual_override_allowed: {
|
|
3437
|
+
description: string;
|
|
3427
3438
|
type: string;
|
|
3428
3439
|
};
|
|
3429
3440
|
name: {
|
|
3430
3441
|
default: null;
|
|
3442
|
+
description: string;
|
|
3431
3443
|
nullable: boolean;
|
|
3432
3444
|
type: string;
|
|
3433
3445
|
};
|
|
@@ -3438,46 +3450,58 @@ declare const _default: {
|
|
|
3438
3450
|
deprecated: boolean;
|
|
3439
3451
|
properties: {
|
|
3440
3452
|
can_delete: {
|
|
3453
|
+
description: string;
|
|
3441
3454
|
type: string;
|
|
3442
3455
|
};
|
|
3443
3456
|
can_edit: {
|
|
3457
|
+
description: string;
|
|
3444
3458
|
type: string;
|
|
3445
3459
|
};
|
|
3446
3460
|
climate_preset_key: {
|
|
3461
|
+
description: string;
|
|
3447
3462
|
type: string;
|
|
3448
3463
|
};
|
|
3449
3464
|
cooling_set_point_celsius: {
|
|
3465
|
+
description: string;
|
|
3450
3466
|
format: string;
|
|
3451
3467
|
type: string;
|
|
3452
3468
|
};
|
|
3453
3469
|
cooling_set_point_fahrenheit: {
|
|
3470
|
+
description: string;
|
|
3454
3471
|
format: string;
|
|
3455
3472
|
type: string;
|
|
3456
3473
|
};
|
|
3457
3474
|
display_name: {
|
|
3475
|
+
description: string;
|
|
3458
3476
|
type: string;
|
|
3459
3477
|
};
|
|
3460
3478
|
fan_mode_setting: {
|
|
3479
|
+
description: string;
|
|
3461
3480
|
enum: string[];
|
|
3462
3481
|
type: string;
|
|
3463
3482
|
};
|
|
3464
3483
|
heating_set_point_celsius: {
|
|
3484
|
+
description: string;
|
|
3465
3485
|
format: string;
|
|
3466
3486
|
type: string;
|
|
3467
3487
|
};
|
|
3468
3488
|
heating_set_point_fahrenheit: {
|
|
3489
|
+
description: string;
|
|
3469
3490
|
format: string;
|
|
3470
3491
|
type: string;
|
|
3471
3492
|
};
|
|
3472
3493
|
hvac_mode_setting: {
|
|
3494
|
+
description: string;
|
|
3473
3495
|
enum: string[];
|
|
3474
3496
|
type: string;
|
|
3475
3497
|
};
|
|
3476
3498
|
manual_override_allowed: {
|
|
3499
|
+
description: string;
|
|
3477
3500
|
type: string;
|
|
3478
3501
|
};
|
|
3479
3502
|
name: {
|
|
3480
3503
|
default: null;
|
|
3504
|
+
description: string;
|
|
3481
3505
|
nullable: boolean;
|
|
3482
3506
|
type: string;
|
|
3483
3507
|
};
|
|
@@ -4060,17 +4084,21 @@ declare const _default: {
|
|
|
4060
4084
|
thermostat_schedule: {
|
|
4061
4085
|
properties: {
|
|
4062
4086
|
climate_preset_key: {
|
|
4087
|
+
description: string;
|
|
4063
4088
|
type: string;
|
|
4064
4089
|
};
|
|
4065
4090
|
created_at: {
|
|
4091
|
+
description: string;
|
|
4066
4092
|
format: string;
|
|
4067
4093
|
type: string;
|
|
4068
4094
|
};
|
|
4069
4095
|
device_id: {
|
|
4096
|
+
description: string;
|
|
4070
4097
|
format: string;
|
|
4071
4098
|
type: string;
|
|
4072
4099
|
};
|
|
4073
4100
|
ends_at: {
|
|
4101
|
+
description: string;
|
|
4074
4102
|
format: string;
|
|
4075
4103
|
type: string;
|
|
4076
4104
|
};
|
|
@@ -4078,17 +4106,21 @@ declare const _default: {
|
|
|
4078
4106
|
description: string;
|
|
4079
4107
|
};
|
|
4080
4108
|
max_override_period_minutes: {
|
|
4109
|
+
description: string;
|
|
4081
4110
|
minimum: number;
|
|
4082
4111
|
type: string;
|
|
4083
4112
|
};
|
|
4084
4113
|
name: {
|
|
4114
|
+
description: string;
|
|
4085
4115
|
type: string;
|
|
4086
4116
|
};
|
|
4087
4117
|
starts_at: {
|
|
4118
|
+
description: string;
|
|
4088
4119
|
format: string;
|
|
4089
4120
|
type: string;
|
|
4090
4121
|
};
|
|
4091
4122
|
thermostat_schedule_id: {
|
|
4123
|
+
description: string;
|
|
4092
4124
|
format: string;
|
|
4093
4125
|
type: string;
|
|
4094
4126
|
};
|
|
@@ -13105,6 +13137,7 @@ declare const _default: {
|
|
|
13105
13137
|
};
|
|
13106
13138
|
'/devices/list': {
|
|
13107
13139
|
post: {
|
|
13140
|
+
description: string;
|
|
13108
13141
|
operationId: string;
|
|
13109
13142
|
requestBody: {
|
|
13110
13143
|
content: {
|
|
@@ -13112,6 +13145,7 @@ declare const _default: {
|
|
|
13112
13145
|
schema: {
|
|
13113
13146
|
properties: {
|
|
13114
13147
|
connect_webview_id: {
|
|
13148
|
+
description: string;
|
|
13115
13149
|
format: string;
|
|
13116
13150
|
type: string;
|
|
13117
13151
|
};
|
|
@@ -13121,6 +13155,7 @@ declare const _default: {
|
|
|
13121
13155
|
type: string;
|
|
13122
13156
|
};
|
|
13123
13157
|
connected_account_ids: {
|
|
13158
|
+
description: string;
|
|
13124
13159
|
items: {
|
|
13125
13160
|
format: string;
|
|
13126
13161
|
type: string;
|
|
@@ -13128,6 +13163,7 @@ declare const _default: {
|
|
|
13128
13163
|
type: string;
|
|
13129
13164
|
};
|
|
13130
13165
|
created_before: {
|
|
13166
|
+
description: string;
|
|
13131
13167
|
format: string;
|
|
13132
13168
|
type: string;
|
|
13133
13169
|
};
|
|
@@ -13137,9 +13173,11 @@ declare const _default: {
|
|
|
13137
13173
|
type: string;
|
|
13138
13174
|
}[];
|
|
13139
13175
|
};
|
|
13176
|
+
description: string;
|
|
13140
13177
|
type: string;
|
|
13141
13178
|
};
|
|
13142
13179
|
device_ids: {
|
|
13180
|
+
description: string;
|
|
13143
13181
|
items: {
|
|
13144
13182
|
format: string;
|
|
13145
13183
|
type: string;
|
|
@@ -13147,12 +13185,14 @@ declare const _default: {
|
|
|
13147
13185
|
type: string;
|
|
13148
13186
|
};
|
|
13149
13187
|
device_type: {
|
|
13188
|
+
description: string;
|
|
13150
13189
|
oneOf: {
|
|
13151
13190
|
enum: string[];
|
|
13152
13191
|
type: string;
|
|
13153
13192
|
}[];
|
|
13154
13193
|
};
|
|
13155
13194
|
device_types: {
|
|
13195
|
+
description: string;
|
|
13156
13196
|
items: {
|
|
13157
13197
|
oneOf: {
|
|
13158
13198
|
enum: string[];
|
|
@@ -13167,6 +13207,7 @@ declare const _default: {
|
|
|
13167
13207
|
type: string;
|
|
13168
13208
|
};
|
|
13169
13209
|
type: string;
|
|
13210
|
+
'x-undocumented': string;
|
|
13170
13211
|
};
|
|
13171
13212
|
include_if: {
|
|
13172
13213
|
items: {
|
|
@@ -13174,17 +13215,21 @@ declare const _default: {
|
|
|
13174
13215
|
type: string;
|
|
13175
13216
|
};
|
|
13176
13217
|
type: string;
|
|
13218
|
+
'x-undocumented': string;
|
|
13177
13219
|
};
|
|
13178
13220
|
limit: {
|
|
13179
13221
|
default: number;
|
|
13222
|
+
description: string;
|
|
13180
13223
|
format: string;
|
|
13181
13224
|
type: string;
|
|
13182
13225
|
};
|
|
13183
13226
|
manufacturer: {
|
|
13227
|
+
description: string;
|
|
13184
13228
|
enum: string[];
|
|
13185
13229
|
type: string;
|
|
13186
13230
|
};
|
|
13187
13231
|
user_identifier_key: {
|
|
13232
|
+
description: string;
|
|
13188
13233
|
type: string;
|
|
13189
13234
|
};
|
|
13190
13235
|
};
|
|
@@ -13250,6 +13295,7 @@ declare const _default: {
|
|
|
13250
13295
|
'x-fern-sdk-method-name': string;
|
|
13251
13296
|
'x-fern-sdk-return-value': string;
|
|
13252
13297
|
'x-response-key': string;
|
|
13298
|
+
'x-title': string;
|
|
13253
13299
|
};
|
|
13254
13300
|
};
|
|
13255
13301
|
'/devices/list_device_providers': {
|
|
@@ -13604,6 +13650,7 @@ declare const _default: {
|
|
|
13604
13650
|
schema: {
|
|
13605
13651
|
properties: {
|
|
13606
13652
|
connect_webview_id: {
|
|
13653
|
+
description: string;
|
|
13607
13654
|
format: string;
|
|
13608
13655
|
type: string;
|
|
13609
13656
|
};
|
|
@@ -13613,6 +13660,7 @@ declare const _default: {
|
|
|
13613
13660
|
type: string;
|
|
13614
13661
|
};
|
|
13615
13662
|
connected_account_ids: {
|
|
13663
|
+
description: string;
|
|
13616
13664
|
items: {
|
|
13617
13665
|
format: string;
|
|
13618
13666
|
type: string;
|
|
@@ -13620,6 +13668,7 @@ declare const _default: {
|
|
|
13620
13668
|
type: string;
|
|
13621
13669
|
};
|
|
13622
13670
|
created_before: {
|
|
13671
|
+
description: string;
|
|
13623
13672
|
format: string;
|
|
13624
13673
|
type: string;
|
|
13625
13674
|
};
|
|
@@ -13629,9 +13678,11 @@ declare const _default: {
|
|
|
13629
13678
|
type: string;
|
|
13630
13679
|
}[];
|
|
13631
13680
|
};
|
|
13681
|
+
description: string;
|
|
13632
13682
|
type: string;
|
|
13633
13683
|
};
|
|
13634
13684
|
device_ids: {
|
|
13685
|
+
description: string;
|
|
13635
13686
|
items: {
|
|
13636
13687
|
format: string;
|
|
13637
13688
|
type: string;
|
|
@@ -13639,12 +13690,14 @@ declare const _default: {
|
|
|
13639
13690
|
type: string;
|
|
13640
13691
|
};
|
|
13641
13692
|
device_type: {
|
|
13693
|
+
description: string;
|
|
13642
13694
|
oneOf: {
|
|
13643
13695
|
enum: string[];
|
|
13644
13696
|
type: string;
|
|
13645
13697
|
}[];
|
|
13646
13698
|
};
|
|
13647
13699
|
device_types: {
|
|
13700
|
+
description: string;
|
|
13648
13701
|
items: {
|
|
13649
13702
|
oneOf: {
|
|
13650
13703
|
enum: string[];
|
|
@@ -13659,6 +13712,7 @@ declare const _default: {
|
|
|
13659
13712
|
type: string;
|
|
13660
13713
|
};
|
|
13661
13714
|
type: string;
|
|
13715
|
+
'x-undocumented': string;
|
|
13662
13716
|
};
|
|
13663
13717
|
include_if: {
|
|
13664
13718
|
items: {
|
|
@@ -13666,17 +13720,21 @@ declare const _default: {
|
|
|
13666
13720
|
type: string;
|
|
13667
13721
|
};
|
|
13668
13722
|
type: string;
|
|
13723
|
+
'x-undocumented': string;
|
|
13669
13724
|
};
|
|
13670
13725
|
limit: {
|
|
13671
13726
|
default: number;
|
|
13727
|
+
description: string;
|
|
13672
13728
|
format: string;
|
|
13673
13729
|
type: string;
|
|
13674
13730
|
};
|
|
13675
13731
|
manufacturer: {
|
|
13732
|
+
description: string;
|
|
13676
13733
|
enum: string[];
|
|
13677
13734
|
type: string;
|
|
13678
13735
|
};
|
|
13679
13736
|
user_identifier_key: {
|
|
13737
|
+
description: string;
|
|
13680
13738
|
type: string;
|
|
13681
13739
|
};
|
|
13682
13740
|
};
|
|
@@ -14375,6 +14433,7 @@ declare const _default: {
|
|
|
14375
14433
|
schema: {
|
|
14376
14434
|
properties: {
|
|
14377
14435
|
connect_webview_id: {
|
|
14436
|
+
description: string;
|
|
14378
14437
|
format: string;
|
|
14379
14438
|
type: string;
|
|
14380
14439
|
};
|
|
@@ -14384,6 +14443,7 @@ declare const _default: {
|
|
|
14384
14443
|
type: string;
|
|
14385
14444
|
};
|
|
14386
14445
|
connected_account_ids: {
|
|
14446
|
+
description: string;
|
|
14387
14447
|
items: {
|
|
14388
14448
|
format: string;
|
|
14389
14449
|
type: string;
|
|
@@ -14391,6 +14451,7 @@ declare const _default: {
|
|
|
14391
14451
|
type: string;
|
|
14392
14452
|
};
|
|
14393
14453
|
created_before: {
|
|
14454
|
+
description: string;
|
|
14394
14455
|
format: string;
|
|
14395
14456
|
type: string;
|
|
14396
14457
|
};
|
|
@@ -14400,9 +14461,11 @@ declare const _default: {
|
|
|
14400
14461
|
type: string;
|
|
14401
14462
|
}[];
|
|
14402
14463
|
};
|
|
14464
|
+
description: string;
|
|
14403
14465
|
type: string;
|
|
14404
14466
|
};
|
|
14405
14467
|
device_ids: {
|
|
14468
|
+
description: string;
|
|
14406
14469
|
items: {
|
|
14407
14470
|
format: string;
|
|
14408
14471
|
type: string;
|
|
@@ -14410,12 +14473,14 @@ declare const _default: {
|
|
|
14410
14473
|
type: string;
|
|
14411
14474
|
};
|
|
14412
14475
|
device_type: {
|
|
14476
|
+
description: string;
|
|
14413
14477
|
oneOf: {
|
|
14414
14478
|
enum: string[];
|
|
14415
14479
|
type: string;
|
|
14416
14480
|
}[];
|
|
14417
14481
|
};
|
|
14418
14482
|
device_types: {
|
|
14483
|
+
description: string;
|
|
14419
14484
|
items: {
|
|
14420
14485
|
oneOf: {
|
|
14421
14486
|
enum: string[];
|
|
@@ -14430,6 +14495,7 @@ declare const _default: {
|
|
|
14430
14495
|
type: string;
|
|
14431
14496
|
};
|
|
14432
14497
|
type: string;
|
|
14498
|
+
'x-undocumented': string;
|
|
14433
14499
|
};
|
|
14434
14500
|
include_if: {
|
|
14435
14501
|
items: {
|
|
@@ -14437,17 +14503,21 @@ declare const _default: {
|
|
|
14437
14503
|
type: string;
|
|
14438
14504
|
};
|
|
14439
14505
|
type: string;
|
|
14506
|
+
'x-undocumented': string;
|
|
14440
14507
|
};
|
|
14441
14508
|
limit: {
|
|
14442
14509
|
default: number;
|
|
14510
|
+
description: string;
|
|
14443
14511
|
format: string;
|
|
14444
14512
|
type: string;
|
|
14445
14513
|
};
|
|
14446
14514
|
manufacturer: {
|
|
14515
|
+
description: string;
|
|
14447
14516
|
enum: string[];
|
|
14448
14517
|
type: string;
|
|
14449
14518
|
};
|
|
14450
14519
|
user_identifier_key: {
|
|
14520
|
+
description: string;
|
|
14451
14521
|
type: string;
|
|
14452
14522
|
};
|
|
14453
14523
|
};
|
|
@@ -14819,6 +14889,7 @@ declare const _default: {
|
|
|
14819
14889
|
schema: {
|
|
14820
14890
|
properties: {
|
|
14821
14891
|
connect_webview_id: {
|
|
14892
|
+
description: string;
|
|
14822
14893
|
format: string;
|
|
14823
14894
|
type: string;
|
|
14824
14895
|
};
|
|
@@ -14828,6 +14899,7 @@ declare const _default: {
|
|
|
14828
14899
|
type: string;
|
|
14829
14900
|
};
|
|
14830
14901
|
connected_account_ids: {
|
|
14902
|
+
description: string;
|
|
14831
14903
|
items: {
|
|
14832
14904
|
format: string;
|
|
14833
14905
|
type: string;
|
|
@@ -14835,6 +14907,7 @@ declare const _default: {
|
|
|
14835
14907
|
type: string;
|
|
14836
14908
|
};
|
|
14837
14909
|
created_before: {
|
|
14910
|
+
description: string;
|
|
14838
14911
|
format: string;
|
|
14839
14912
|
type: string;
|
|
14840
14913
|
};
|
|
@@ -14844,9 +14917,11 @@ declare const _default: {
|
|
|
14844
14917
|
type: string;
|
|
14845
14918
|
}[];
|
|
14846
14919
|
};
|
|
14920
|
+
description: string;
|
|
14847
14921
|
type: string;
|
|
14848
14922
|
};
|
|
14849
14923
|
device_ids: {
|
|
14924
|
+
description: string;
|
|
14850
14925
|
items: {
|
|
14851
14926
|
format: string;
|
|
14852
14927
|
type: string;
|
|
@@ -14854,12 +14929,14 @@ declare const _default: {
|
|
|
14854
14929
|
type: string;
|
|
14855
14930
|
};
|
|
14856
14931
|
device_type: {
|
|
14932
|
+
description: string;
|
|
14857
14933
|
oneOf: {
|
|
14858
14934
|
enum: string[];
|
|
14859
14935
|
type: string;
|
|
14860
14936
|
}[];
|
|
14861
14937
|
};
|
|
14862
14938
|
device_types: {
|
|
14939
|
+
description: string;
|
|
14863
14940
|
items: {
|
|
14864
14941
|
oneOf: {
|
|
14865
14942
|
enum: string[];
|
|
@@ -14874,6 +14951,7 @@ declare const _default: {
|
|
|
14874
14951
|
type: string;
|
|
14875
14952
|
};
|
|
14876
14953
|
type: string;
|
|
14954
|
+
'x-undocumented': string;
|
|
14877
14955
|
};
|
|
14878
14956
|
include_if: {
|
|
14879
14957
|
items: {
|
|
@@ -14881,17 +14959,21 @@ declare const _default: {
|
|
|
14881
14959
|
type: string;
|
|
14882
14960
|
};
|
|
14883
14961
|
type: string;
|
|
14962
|
+
'x-undocumented': string;
|
|
14884
14963
|
};
|
|
14885
14964
|
limit: {
|
|
14886
14965
|
default: number;
|
|
14966
|
+
description: string;
|
|
14887
14967
|
format: string;
|
|
14888
14968
|
type: string;
|
|
14889
14969
|
};
|
|
14890
14970
|
manufacturer: {
|
|
14971
|
+
description: string;
|
|
14891
14972
|
enum: string[];
|
|
14892
14973
|
type: string;
|
|
14893
14974
|
};
|
|
14894
14975
|
user_identifier_key: {
|
|
14976
|
+
description: string;
|
|
14895
14977
|
type: string;
|
|
14896
14978
|
};
|
|
14897
14979
|
};
|
|
@@ -15877,6 +15959,7 @@ declare const _default: {
|
|
|
15877
15959
|
};
|
|
15878
15960
|
'/thermostats/activate_climate_preset': {
|
|
15879
15961
|
post: {
|
|
15962
|
+
description: string;
|
|
15880
15963
|
operationId: string;
|
|
15881
15964
|
requestBody: {
|
|
15882
15965
|
content: {
|
|
@@ -15884,9 +15967,11 @@ declare const _default: {
|
|
|
15884
15967
|
schema: {
|
|
15885
15968
|
properties: {
|
|
15886
15969
|
climate_preset_key: {
|
|
15970
|
+
description: string;
|
|
15887
15971
|
type: string;
|
|
15888
15972
|
};
|
|
15889
15973
|
device_id: {
|
|
15974
|
+
description: string;
|
|
15890
15975
|
format: string;
|
|
15891
15976
|
type: string;
|
|
15892
15977
|
};
|
|
@@ -15943,6 +16028,7 @@ declare const _default: {
|
|
|
15943
16028
|
'x-fern-sdk-method-name': string;
|
|
15944
16029
|
'x-fern-sdk-return-value': string;
|
|
15945
16030
|
'x-response-key': string;
|
|
16031
|
+
'x-title': string;
|
|
15946
16032
|
};
|
|
15947
16033
|
};
|
|
15948
16034
|
'/thermostats/cool': {
|
|
@@ -15972,6 +16058,7 @@ declare const _default: {
|
|
|
15972
16058
|
sync: {
|
|
15973
16059
|
default: boolean;
|
|
15974
16060
|
type: string;
|
|
16061
|
+
'x-undocumented': string;
|
|
15975
16062
|
};
|
|
15976
16063
|
};
|
|
15977
16064
|
required: string[];
|
|
@@ -16039,6 +16126,7 @@ declare const _default: {
|
|
|
16039
16126
|
};
|
|
16040
16127
|
'/thermostats/create_climate_preset': {
|
|
16041
16128
|
post: {
|
|
16129
|
+
description: string;
|
|
16042
16130
|
operationId: string;
|
|
16043
16131
|
requestBody: {
|
|
16044
16132
|
content: {
|
|
@@ -16046,41 +16134,51 @@ declare const _default: {
|
|
|
16046
16134
|
schema: {
|
|
16047
16135
|
properties: {
|
|
16048
16136
|
climate_preset_key: {
|
|
16137
|
+
description: string;
|
|
16049
16138
|
type: string;
|
|
16050
16139
|
};
|
|
16051
16140
|
cooling_set_point_celsius: {
|
|
16141
|
+
description: string;
|
|
16052
16142
|
format: string;
|
|
16053
16143
|
type: string;
|
|
16054
16144
|
};
|
|
16055
16145
|
cooling_set_point_fahrenheit: {
|
|
16146
|
+
description: string;
|
|
16056
16147
|
format: string;
|
|
16057
16148
|
type: string;
|
|
16058
16149
|
};
|
|
16059
16150
|
device_id: {
|
|
16151
|
+
description: string;
|
|
16060
16152
|
format: string;
|
|
16061
16153
|
type: string;
|
|
16062
16154
|
};
|
|
16063
16155
|
fan_mode_setting: {
|
|
16156
|
+
description: string;
|
|
16064
16157
|
enum: string[];
|
|
16065
16158
|
type: string;
|
|
16066
16159
|
};
|
|
16067
16160
|
heating_set_point_celsius: {
|
|
16161
|
+
description: string;
|
|
16068
16162
|
format: string;
|
|
16069
16163
|
type: string;
|
|
16070
16164
|
};
|
|
16071
16165
|
heating_set_point_fahrenheit: {
|
|
16166
|
+
description: string;
|
|
16072
16167
|
format: string;
|
|
16073
16168
|
type: string;
|
|
16074
16169
|
};
|
|
16075
16170
|
hvac_mode_setting: {
|
|
16171
|
+
description: string;
|
|
16076
16172
|
enum: string[];
|
|
16077
16173
|
type: string;
|
|
16078
16174
|
};
|
|
16079
16175
|
manual_override_allowed: {
|
|
16176
|
+
description: string;
|
|
16080
16177
|
type: string;
|
|
16081
16178
|
};
|
|
16082
16179
|
name: {
|
|
16083
16180
|
default: null;
|
|
16181
|
+
description: string;
|
|
16084
16182
|
nullable: boolean;
|
|
16085
16183
|
type: string;
|
|
16086
16184
|
};
|
|
@@ -16133,10 +16231,12 @@ declare const _default: {
|
|
|
16133
16231
|
'x-fern-sdk-group-name': string[];
|
|
16134
16232
|
'x-fern-sdk-method-name': string;
|
|
16135
16233
|
'x-response-key': null;
|
|
16234
|
+
'x-title': string;
|
|
16136
16235
|
};
|
|
16137
16236
|
};
|
|
16138
16237
|
'/thermostats/delete_climate_preset': {
|
|
16139
16238
|
post: {
|
|
16239
|
+
description: string;
|
|
16140
16240
|
operationId: string;
|
|
16141
16241
|
requestBody: {
|
|
16142
16242
|
content: {
|
|
@@ -16144,9 +16244,11 @@ declare const _default: {
|
|
|
16144
16244
|
schema: {
|
|
16145
16245
|
properties: {
|
|
16146
16246
|
climate_preset_key: {
|
|
16247
|
+
description: string;
|
|
16147
16248
|
type: string;
|
|
16148
16249
|
};
|
|
16149
16250
|
device_id: {
|
|
16251
|
+
description: string;
|
|
16150
16252
|
format: string;
|
|
16151
16253
|
type: string;
|
|
16152
16254
|
};
|
|
@@ -16199,6 +16301,7 @@ declare const _default: {
|
|
|
16199
16301
|
'x-fern-sdk-group-name': string[];
|
|
16200
16302
|
'x-fern-sdk-method-name': string;
|
|
16201
16303
|
'x-response-key': null;
|
|
16304
|
+
'x-title': string;
|
|
16202
16305
|
};
|
|
16203
16306
|
};
|
|
16204
16307
|
'/thermostats/get': {
|
|
@@ -16281,6 +16384,7 @@ declare const _default: {
|
|
|
16281
16384
|
'x-fern-sdk-return-value': string;
|
|
16282
16385
|
'x-response-key': string;
|
|
16283
16386
|
'x-title': string;
|
|
16387
|
+
'x-undocumented': string;
|
|
16284
16388
|
};
|
|
16285
16389
|
};
|
|
16286
16390
|
'/thermostats/heat': {
|
|
@@ -16310,6 +16414,7 @@ declare const _default: {
|
|
|
16310
16414
|
sync: {
|
|
16311
16415
|
default: boolean;
|
|
16312
16416
|
type: string;
|
|
16417
|
+
'x-undocumented': string;
|
|
16313
16418
|
};
|
|
16314
16419
|
};
|
|
16315
16420
|
required: string[];
|
|
@@ -16412,6 +16517,7 @@ declare const _default: {
|
|
|
16412
16517
|
sync: {
|
|
16413
16518
|
default: boolean;
|
|
16414
16519
|
type: string;
|
|
16520
|
+
'x-undocumented': string;
|
|
16415
16521
|
};
|
|
16416
16522
|
};
|
|
16417
16523
|
required: string[];
|
|
@@ -16487,6 +16593,7 @@ declare const _default: {
|
|
|
16487
16593
|
schema: {
|
|
16488
16594
|
properties: {
|
|
16489
16595
|
connect_webview_id: {
|
|
16596
|
+
description: string;
|
|
16490
16597
|
format: string;
|
|
16491
16598
|
type: string;
|
|
16492
16599
|
};
|
|
@@ -16496,6 +16603,7 @@ declare const _default: {
|
|
|
16496
16603
|
type: string;
|
|
16497
16604
|
};
|
|
16498
16605
|
connected_account_ids: {
|
|
16606
|
+
description: string;
|
|
16499
16607
|
items: {
|
|
16500
16608
|
format: string;
|
|
16501
16609
|
type: string;
|
|
@@ -16503,6 +16611,7 @@ declare const _default: {
|
|
|
16503
16611
|
type: string;
|
|
16504
16612
|
};
|
|
16505
16613
|
created_before: {
|
|
16614
|
+
description: string;
|
|
16506
16615
|
format: string;
|
|
16507
16616
|
type: string;
|
|
16508
16617
|
};
|
|
@@ -16512,9 +16621,11 @@ declare const _default: {
|
|
|
16512
16621
|
type: string;
|
|
16513
16622
|
}[];
|
|
16514
16623
|
};
|
|
16624
|
+
description: string;
|
|
16515
16625
|
type: string;
|
|
16516
16626
|
};
|
|
16517
16627
|
device_ids: {
|
|
16628
|
+
description: string;
|
|
16518
16629
|
items: {
|
|
16519
16630
|
format: string;
|
|
16520
16631
|
type: string;
|
|
@@ -16522,12 +16633,14 @@ declare const _default: {
|
|
|
16522
16633
|
type: string;
|
|
16523
16634
|
};
|
|
16524
16635
|
device_type: {
|
|
16636
|
+
description: string;
|
|
16525
16637
|
oneOf: {
|
|
16526
16638
|
enum: string[];
|
|
16527
16639
|
type: string;
|
|
16528
16640
|
}[];
|
|
16529
16641
|
};
|
|
16530
16642
|
device_types: {
|
|
16643
|
+
description: string;
|
|
16531
16644
|
items: {
|
|
16532
16645
|
oneOf: {
|
|
16533
16646
|
enum: string[];
|
|
@@ -16542,6 +16655,7 @@ declare const _default: {
|
|
|
16542
16655
|
type: string;
|
|
16543
16656
|
};
|
|
16544
16657
|
type: string;
|
|
16658
|
+
'x-undocumented': string;
|
|
16545
16659
|
};
|
|
16546
16660
|
include_if: {
|
|
16547
16661
|
items: {
|
|
@@ -16549,17 +16663,21 @@ declare const _default: {
|
|
|
16549
16663
|
type: string;
|
|
16550
16664
|
};
|
|
16551
16665
|
type: string;
|
|
16666
|
+
'x-undocumented': string;
|
|
16552
16667
|
};
|
|
16553
16668
|
limit: {
|
|
16554
16669
|
default: number;
|
|
16670
|
+
description: string;
|
|
16555
16671
|
format: string;
|
|
16556
16672
|
type: string;
|
|
16557
16673
|
};
|
|
16558
16674
|
manufacturer: {
|
|
16675
|
+
description: string;
|
|
16559
16676
|
enum: string[];
|
|
16560
16677
|
type: string;
|
|
16561
16678
|
};
|
|
16562
16679
|
user_identifier_key: {
|
|
16680
|
+
description: string;
|
|
16563
16681
|
type: string;
|
|
16564
16682
|
};
|
|
16565
16683
|
};
|
|
@@ -16651,6 +16769,7 @@ declare const _default: {
|
|
|
16651
16769
|
sync: {
|
|
16652
16770
|
default: boolean;
|
|
16653
16771
|
type: string;
|
|
16772
|
+
'x-undocumented': string;
|
|
16654
16773
|
};
|
|
16655
16774
|
};
|
|
16656
16775
|
required: string[];
|
|
@@ -16718,6 +16837,7 @@ declare const _default: {
|
|
|
16718
16837
|
};
|
|
16719
16838
|
'/thermostats/schedules/create': {
|
|
16720
16839
|
post: {
|
|
16840
|
+
description: string;
|
|
16721
16841
|
operationId: string;
|
|
16722
16842
|
requestBody: {
|
|
16723
16843
|
content: {
|
|
@@ -16725,23 +16845,29 @@ declare const _default: {
|
|
|
16725
16845
|
schema: {
|
|
16726
16846
|
properties: {
|
|
16727
16847
|
climate_preset_key: {
|
|
16848
|
+
description: string;
|
|
16728
16849
|
type: string;
|
|
16729
16850
|
};
|
|
16730
16851
|
device_id: {
|
|
16852
|
+
description: string;
|
|
16731
16853
|
type: string;
|
|
16732
16854
|
};
|
|
16733
16855
|
ends_at: {
|
|
16856
|
+
description: string;
|
|
16734
16857
|
type: string;
|
|
16735
16858
|
};
|
|
16736
16859
|
max_override_period_minutes: {
|
|
16737
16860
|
default: number;
|
|
16861
|
+
description: string;
|
|
16738
16862
|
minimum: number;
|
|
16739
16863
|
type: string;
|
|
16740
16864
|
};
|
|
16741
16865
|
name: {
|
|
16866
|
+
description: string;
|
|
16742
16867
|
type: string;
|
|
16743
16868
|
};
|
|
16744
16869
|
starts_at: {
|
|
16870
|
+
description: string;
|
|
16745
16871
|
type: string;
|
|
16746
16872
|
};
|
|
16747
16873
|
};
|
|
@@ -16805,10 +16931,12 @@ declare const _default: {
|
|
|
16805
16931
|
'x-fern-sdk-method-name': string;
|
|
16806
16932
|
'x-fern-sdk-return-value': string;
|
|
16807
16933
|
'x-response-key': string;
|
|
16934
|
+
'x-title': string;
|
|
16808
16935
|
};
|
|
16809
16936
|
};
|
|
16810
16937
|
'/thermostats/schedules/delete': {
|
|
16811
16938
|
post: {
|
|
16939
|
+
description: string;
|
|
16812
16940
|
operationId: string;
|
|
16813
16941
|
requestBody: {
|
|
16814
16942
|
content: {
|
|
@@ -16816,6 +16944,7 @@ declare const _default: {
|
|
|
16816
16944
|
schema: {
|
|
16817
16945
|
properties: {
|
|
16818
16946
|
thermostat_schedule_id: {
|
|
16947
|
+
description: string;
|
|
16819
16948
|
format: string;
|
|
16820
16949
|
type: string;
|
|
16821
16950
|
};
|
|
@@ -16876,10 +17005,12 @@ declare const _default: {
|
|
|
16876
17005
|
'x-fern-sdk-group-name': string[];
|
|
16877
17006
|
'x-fern-sdk-method-name': string;
|
|
16878
17007
|
'x-response-key': null;
|
|
17008
|
+
'x-title': string;
|
|
16879
17009
|
};
|
|
16880
17010
|
};
|
|
16881
17011
|
'/thermostats/schedules/get': {
|
|
16882
17012
|
post: {
|
|
17013
|
+
description: string;
|
|
16883
17014
|
operationId: string;
|
|
16884
17015
|
requestBody: {
|
|
16885
17016
|
content: {
|
|
@@ -16887,6 +17018,7 @@ declare const _default: {
|
|
|
16887
17018
|
schema: {
|
|
16888
17019
|
properties: {
|
|
16889
17020
|
thermostat_schedule_id: {
|
|
17021
|
+
description: string;
|
|
16890
17022
|
format: string;
|
|
16891
17023
|
type: string;
|
|
16892
17024
|
};
|
|
@@ -16951,10 +17083,12 @@ declare const _default: {
|
|
|
16951
17083
|
'x-fern-sdk-method-name': string;
|
|
16952
17084
|
'x-fern-sdk-return-value': string;
|
|
16953
17085
|
'x-response-key': string;
|
|
17086
|
+
'x-title': string;
|
|
16954
17087
|
};
|
|
16955
17088
|
};
|
|
16956
17089
|
'/thermostats/schedules/list': {
|
|
16957
17090
|
post: {
|
|
17091
|
+
description: string;
|
|
16958
17092
|
operationId: string;
|
|
16959
17093
|
requestBody: {
|
|
16960
17094
|
content: {
|
|
@@ -16962,10 +17096,12 @@ declare const _default: {
|
|
|
16962
17096
|
schema: {
|
|
16963
17097
|
properties: {
|
|
16964
17098
|
device_id: {
|
|
17099
|
+
description: string;
|
|
16965
17100
|
format: string;
|
|
16966
17101
|
type: string;
|
|
16967
17102
|
};
|
|
16968
17103
|
user_identifier_key: {
|
|
17104
|
+
description: string;
|
|
16969
17105
|
type: string;
|
|
16970
17106
|
};
|
|
16971
17107
|
};
|
|
@@ -17032,10 +17168,12 @@ declare const _default: {
|
|
|
17032
17168
|
'x-fern-sdk-method-name': string;
|
|
17033
17169
|
'x-fern-sdk-return-value': string;
|
|
17034
17170
|
'x-response-key': string;
|
|
17171
|
+
'x-title': string;
|
|
17035
17172
|
};
|
|
17036
17173
|
};
|
|
17037
17174
|
'/thermostats/schedules/update': {
|
|
17038
17175
|
patch: {
|
|
17176
|
+
description: string;
|
|
17039
17177
|
operationId: string;
|
|
17040
17178
|
requestBody: {
|
|
17041
17179
|
content: {
|
|
@@ -17043,22 +17181,28 @@ declare const _default: {
|
|
|
17043
17181
|
schema: {
|
|
17044
17182
|
properties: {
|
|
17045
17183
|
climate_preset_key: {
|
|
17184
|
+
description: string;
|
|
17046
17185
|
type: string;
|
|
17047
17186
|
};
|
|
17048
17187
|
ends_at: {
|
|
17188
|
+
description: string;
|
|
17049
17189
|
type: string;
|
|
17050
17190
|
};
|
|
17051
17191
|
max_override_period_minutes: {
|
|
17192
|
+
description: string;
|
|
17052
17193
|
minimum: number;
|
|
17053
17194
|
type: string;
|
|
17054
17195
|
};
|
|
17055
17196
|
name: {
|
|
17197
|
+
description: string;
|
|
17056
17198
|
type: string;
|
|
17057
17199
|
};
|
|
17058
17200
|
starts_at: {
|
|
17201
|
+
description: string;
|
|
17059
17202
|
type: string;
|
|
17060
17203
|
};
|
|
17061
17204
|
thermostat_schedule_id: {
|
|
17205
|
+
description: string;
|
|
17062
17206
|
format: string;
|
|
17063
17207
|
type: string;
|
|
17064
17208
|
};
|
|
@@ -17118,8 +17262,10 @@ declare const _default: {
|
|
|
17118
17262
|
tags: string[];
|
|
17119
17263
|
'x-fern-ignore': boolean;
|
|
17120
17264
|
'x-response-key': null;
|
|
17265
|
+
'x-title': string;
|
|
17121
17266
|
};
|
|
17122
17267
|
post: {
|
|
17268
|
+
description: string;
|
|
17123
17269
|
operationId: string;
|
|
17124
17270
|
requestBody: {
|
|
17125
17271
|
content: {
|
|
@@ -17127,22 +17273,28 @@ declare const _default: {
|
|
|
17127
17273
|
schema: {
|
|
17128
17274
|
properties: {
|
|
17129
17275
|
climate_preset_key: {
|
|
17276
|
+
description: string;
|
|
17130
17277
|
type: string;
|
|
17131
17278
|
};
|
|
17132
17279
|
ends_at: {
|
|
17280
|
+
description: string;
|
|
17133
17281
|
type: string;
|
|
17134
17282
|
};
|
|
17135
17283
|
max_override_period_minutes: {
|
|
17284
|
+
description: string;
|
|
17136
17285
|
minimum: number;
|
|
17137
17286
|
type: string;
|
|
17138
17287
|
};
|
|
17139
17288
|
name: {
|
|
17289
|
+
description: string;
|
|
17140
17290
|
type: string;
|
|
17141
17291
|
};
|
|
17142
17292
|
starts_at: {
|
|
17293
|
+
description: string;
|
|
17143
17294
|
type: string;
|
|
17144
17295
|
};
|
|
17145
17296
|
thermostat_schedule_id: {
|
|
17297
|
+
description: string;
|
|
17146
17298
|
format: string;
|
|
17147
17299
|
type: string;
|
|
17148
17300
|
};
|
|
@@ -17203,10 +17355,12 @@ declare const _default: {
|
|
|
17203
17355
|
'x-fern-sdk-group-name': string[];
|
|
17204
17356
|
'x-fern-sdk-method-name': string;
|
|
17205
17357
|
'x-response-key': null;
|
|
17358
|
+
'x-title': string;
|
|
17206
17359
|
};
|
|
17207
17360
|
};
|
|
17208
17361
|
'/thermostats/set_fallback_climate_preset': {
|
|
17209
17362
|
post: {
|
|
17363
|
+
description: string;
|
|
17210
17364
|
operationId: string;
|
|
17211
17365
|
requestBody: {
|
|
17212
17366
|
content: {
|
|
@@ -17214,9 +17368,11 @@ declare const _default: {
|
|
|
17214
17368
|
schema: {
|
|
17215
17369
|
properties: {
|
|
17216
17370
|
climate_preset_key: {
|
|
17371
|
+
description: string;
|
|
17217
17372
|
type: string;
|
|
17218
17373
|
};
|
|
17219
17374
|
device_id: {
|
|
17375
|
+
description: string;
|
|
17220
17376
|
format: string;
|
|
17221
17377
|
type: string;
|
|
17222
17378
|
};
|
|
@@ -17269,6 +17425,7 @@ declare const _default: {
|
|
|
17269
17425
|
'x-fern-sdk-group-name': string[];
|
|
17270
17426
|
'x-fern-sdk-method-name': string;
|
|
17271
17427
|
'x-response-key': null;
|
|
17428
|
+
'x-title': string;
|
|
17272
17429
|
};
|
|
17273
17430
|
};
|
|
17274
17431
|
'/thermostats/set_fan_mode': {
|
|
@@ -17281,7 +17438,6 @@ declare const _default: {
|
|
|
17281
17438
|
schema: {
|
|
17282
17439
|
properties: {
|
|
17283
17440
|
device_id: {
|
|
17284
|
-
description: string;
|
|
17285
17441
|
format: string;
|
|
17286
17442
|
type: string;
|
|
17287
17443
|
};
|
|
@@ -17299,6 +17455,7 @@ declare const _default: {
|
|
|
17299
17455
|
sync: {
|
|
17300
17456
|
default: boolean;
|
|
17301
17457
|
type: string;
|
|
17458
|
+
'x-undocumented': string;
|
|
17302
17459
|
};
|
|
17303
17460
|
};
|
|
17304
17461
|
required: string[];
|
|
@@ -17366,6 +17523,7 @@ declare const _default: {
|
|
|
17366
17523
|
};
|
|
17367
17524
|
'/thermostats/set_temperature_threshold': {
|
|
17368
17525
|
patch: {
|
|
17526
|
+
description: string;
|
|
17369
17527
|
operationId: string;
|
|
17370
17528
|
requestBody: {
|
|
17371
17529
|
content: {
|
|
@@ -17373,29 +17531,34 @@ declare const _default: {
|
|
|
17373
17531
|
schema: {
|
|
17374
17532
|
properties: {
|
|
17375
17533
|
device_id: {
|
|
17534
|
+
description: string;
|
|
17376
17535
|
format: string;
|
|
17377
17536
|
type: string;
|
|
17378
17537
|
};
|
|
17379
17538
|
lower_limit_celsius: {
|
|
17380
17539
|
default: null;
|
|
17540
|
+
description: string;
|
|
17381
17541
|
format: string;
|
|
17382
17542
|
nullable: boolean;
|
|
17383
17543
|
type: string;
|
|
17384
17544
|
};
|
|
17385
17545
|
lower_limit_fahrenheit: {
|
|
17386
17546
|
default: null;
|
|
17547
|
+
description: string;
|
|
17387
17548
|
format: string;
|
|
17388
17549
|
nullable: boolean;
|
|
17389
17550
|
type: string;
|
|
17390
17551
|
};
|
|
17391
17552
|
upper_limit_celsius: {
|
|
17392
17553
|
default: null;
|
|
17554
|
+
description: string;
|
|
17393
17555
|
format: string;
|
|
17394
17556
|
nullable: boolean;
|
|
17395
17557
|
type: string;
|
|
17396
17558
|
};
|
|
17397
17559
|
upper_limit_fahrenheit: {
|
|
17398
17560
|
default: null;
|
|
17561
|
+
description: string;
|
|
17399
17562
|
format: string;
|
|
17400
17563
|
nullable: boolean;
|
|
17401
17564
|
type: string;
|
|
@@ -17448,8 +17611,10 @@ declare const _default: {
|
|
|
17448
17611
|
tags: string[];
|
|
17449
17612
|
'x-fern-ignore': boolean;
|
|
17450
17613
|
'x-response-key': null;
|
|
17614
|
+
'x-title': string;
|
|
17451
17615
|
};
|
|
17452
17616
|
post: {
|
|
17617
|
+
description: string;
|
|
17453
17618
|
operationId: string;
|
|
17454
17619
|
requestBody: {
|
|
17455
17620
|
content: {
|
|
@@ -17457,29 +17622,34 @@ declare const _default: {
|
|
|
17457
17622
|
schema: {
|
|
17458
17623
|
properties: {
|
|
17459
17624
|
device_id: {
|
|
17625
|
+
description: string;
|
|
17460
17626
|
format: string;
|
|
17461
17627
|
type: string;
|
|
17462
17628
|
};
|
|
17463
17629
|
lower_limit_celsius: {
|
|
17464
17630
|
default: null;
|
|
17631
|
+
description: string;
|
|
17465
17632
|
format: string;
|
|
17466
17633
|
nullable: boolean;
|
|
17467
17634
|
type: string;
|
|
17468
17635
|
};
|
|
17469
17636
|
lower_limit_fahrenheit: {
|
|
17470
17637
|
default: null;
|
|
17638
|
+
description: string;
|
|
17471
17639
|
format: string;
|
|
17472
17640
|
nullable: boolean;
|
|
17473
17641
|
type: string;
|
|
17474
17642
|
};
|
|
17475
17643
|
upper_limit_celsius: {
|
|
17476
17644
|
default: null;
|
|
17645
|
+
description: string;
|
|
17477
17646
|
format: string;
|
|
17478
17647
|
nullable: boolean;
|
|
17479
17648
|
type: string;
|
|
17480
17649
|
};
|
|
17481
17650
|
upper_limit_fahrenheit: {
|
|
17482
17651
|
default: null;
|
|
17652
|
+
description: string;
|
|
17483
17653
|
format: string;
|
|
17484
17654
|
nullable: boolean;
|
|
17485
17655
|
type: string;
|
|
@@ -17533,10 +17703,12 @@ declare const _default: {
|
|
|
17533
17703
|
'x-fern-sdk-group-name': string[];
|
|
17534
17704
|
'x-fern-sdk-method-name': string;
|
|
17535
17705
|
'x-response-key': null;
|
|
17706
|
+
'x-title': string;
|
|
17536
17707
|
};
|
|
17537
17708
|
};
|
|
17538
17709
|
'/thermostats/update_climate_preset': {
|
|
17539
17710
|
patch: {
|
|
17711
|
+
description: string;
|
|
17540
17712
|
operationId: string;
|
|
17541
17713
|
requestBody: {
|
|
17542
17714
|
content: {
|
|
@@ -17544,41 +17716,51 @@ declare const _default: {
|
|
|
17544
17716
|
schema: {
|
|
17545
17717
|
properties: {
|
|
17546
17718
|
climate_preset_key: {
|
|
17719
|
+
description: string;
|
|
17547
17720
|
type: string;
|
|
17548
17721
|
};
|
|
17549
17722
|
cooling_set_point_celsius: {
|
|
17723
|
+
description: string;
|
|
17550
17724
|
format: string;
|
|
17551
17725
|
type: string;
|
|
17552
17726
|
};
|
|
17553
17727
|
cooling_set_point_fahrenheit: {
|
|
17728
|
+
description: string;
|
|
17554
17729
|
format: string;
|
|
17555
17730
|
type: string;
|
|
17556
17731
|
};
|
|
17557
17732
|
device_id: {
|
|
17733
|
+
description: string;
|
|
17558
17734
|
format: string;
|
|
17559
17735
|
type: string;
|
|
17560
17736
|
};
|
|
17561
17737
|
fan_mode_setting: {
|
|
17738
|
+
description: string;
|
|
17562
17739
|
enum: string[];
|
|
17563
17740
|
type: string;
|
|
17564
17741
|
};
|
|
17565
17742
|
heating_set_point_celsius: {
|
|
17743
|
+
description: string;
|
|
17566
17744
|
format: string;
|
|
17567
17745
|
type: string;
|
|
17568
17746
|
};
|
|
17569
17747
|
heating_set_point_fahrenheit: {
|
|
17748
|
+
description: string;
|
|
17570
17749
|
format: string;
|
|
17571
17750
|
type: string;
|
|
17572
17751
|
};
|
|
17573
17752
|
hvac_mode_setting: {
|
|
17753
|
+
description: string;
|
|
17574
17754
|
enum: string[];
|
|
17575
17755
|
type: string;
|
|
17576
17756
|
};
|
|
17577
17757
|
manual_override_allowed: {
|
|
17758
|
+
description: string;
|
|
17578
17759
|
type: string;
|
|
17579
17760
|
};
|
|
17580
17761
|
name: {
|
|
17581
17762
|
default: null;
|
|
17763
|
+
description: string;
|
|
17582
17764
|
nullable: boolean;
|
|
17583
17765
|
type: string;
|
|
17584
17766
|
};
|
|
@@ -17630,8 +17812,10 @@ declare const _default: {
|
|
|
17630
17812
|
tags: string[];
|
|
17631
17813
|
'x-fern-ignore': boolean;
|
|
17632
17814
|
'x-response-key': null;
|
|
17815
|
+
'x-title': string;
|
|
17633
17816
|
};
|
|
17634
17817
|
post: {
|
|
17818
|
+
description: string;
|
|
17635
17819
|
operationId: string;
|
|
17636
17820
|
requestBody: {
|
|
17637
17821
|
content: {
|
|
@@ -17639,41 +17823,51 @@ declare const _default: {
|
|
|
17639
17823
|
schema: {
|
|
17640
17824
|
properties: {
|
|
17641
17825
|
climate_preset_key: {
|
|
17826
|
+
description: string;
|
|
17642
17827
|
type: string;
|
|
17643
17828
|
};
|
|
17644
17829
|
cooling_set_point_celsius: {
|
|
17830
|
+
description: string;
|
|
17645
17831
|
format: string;
|
|
17646
17832
|
type: string;
|
|
17647
17833
|
};
|
|
17648
17834
|
cooling_set_point_fahrenheit: {
|
|
17835
|
+
description: string;
|
|
17649
17836
|
format: string;
|
|
17650
17837
|
type: string;
|
|
17651
17838
|
};
|
|
17652
17839
|
device_id: {
|
|
17840
|
+
description: string;
|
|
17653
17841
|
format: string;
|
|
17654
17842
|
type: string;
|
|
17655
17843
|
};
|
|
17656
17844
|
fan_mode_setting: {
|
|
17845
|
+
description: string;
|
|
17657
17846
|
enum: string[];
|
|
17658
17847
|
type: string;
|
|
17659
17848
|
};
|
|
17660
17849
|
heating_set_point_celsius: {
|
|
17850
|
+
description: string;
|
|
17661
17851
|
format: string;
|
|
17662
17852
|
type: string;
|
|
17663
17853
|
};
|
|
17664
17854
|
heating_set_point_fahrenheit: {
|
|
17855
|
+
description: string;
|
|
17665
17856
|
format: string;
|
|
17666
17857
|
type: string;
|
|
17667
17858
|
};
|
|
17668
17859
|
hvac_mode_setting: {
|
|
17860
|
+
description: string;
|
|
17669
17861
|
enum: string[];
|
|
17670
17862
|
type: string;
|
|
17671
17863
|
};
|
|
17672
17864
|
manual_override_allowed: {
|
|
17865
|
+
description: string;
|
|
17673
17866
|
type: string;
|
|
17674
17867
|
};
|
|
17675
17868
|
name: {
|
|
17676
17869
|
default: null;
|
|
17870
|
+
description: string;
|
|
17677
17871
|
nullable: boolean;
|
|
17678
17872
|
type: string;
|
|
17679
17873
|
};
|
|
@@ -17726,6 +17920,7 @@ declare const _default: {
|
|
|
17726
17920
|
'x-fern-sdk-group-name': string[];
|
|
17727
17921
|
'x-fern-sdk-method-name': string;
|
|
17728
17922
|
'x-response-key': null;
|
|
17923
|
+
'x-title': string;
|
|
17729
17924
|
};
|
|
17730
17925
|
};
|
|
17731
17926
|
'/user_identities/add_acs_user': {
|