@seamapi/types 1.291.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 +651 -177
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1005 -39
- 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 +216 -1
- package/lib/seam/connect/openapi.js +588 -130
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +789 -38
- package/package.json +1 -1
- 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 +741 -130
- package/src/lib/seam/connect/route-types.ts +789 -38
|
@@ -3262,17 +3262,21 @@ declare const _default: {
|
|
|
3262
3262
|
nullable: boolean;
|
|
3263
3263
|
properties: {
|
|
3264
3264
|
climate_preset_key: {
|
|
3265
|
+
description: string;
|
|
3265
3266
|
type: string;
|
|
3266
3267
|
};
|
|
3267
3268
|
created_at: {
|
|
3269
|
+
description: string;
|
|
3268
3270
|
format: string;
|
|
3269
3271
|
type: string;
|
|
3270
3272
|
};
|
|
3271
3273
|
device_id: {
|
|
3274
|
+
description: string;
|
|
3272
3275
|
format: string;
|
|
3273
3276
|
type: string;
|
|
3274
3277
|
};
|
|
3275
3278
|
ends_at: {
|
|
3279
|
+
description: string;
|
|
3276
3280
|
format: string;
|
|
3277
3281
|
type: string;
|
|
3278
3282
|
};
|
|
@@ -3280,17 +3284,21 @@ declare const _default: {
|
|
|
3280
3284
|
description: string;
|
|
3281
3285
|
};
|
|
3282
3286
|
max_override_period_minutes: {
|
|
3287
|
+
description: string;
|
|
3283
3288
|
minimum: number;
|
|
3284
3289
|
type: string;
|
|
3285
3290
|
};
|
|
3286
3291
|
name: {
|
|
3292
|
+
description: string;
|
|
3287
3293
|
type: string;
|
|
3288
3294
|
};
|
|
3289
3295
|
starts_at: {
|
|
3296
|
+
description: string;
|
|
3290
3297
|
format: string;
|
|
3291
3298
|
type: string;
|
|
3292
3299
|
};
|
|
3293
3300
|
thermostat_schedule_id: {
|
|
3301
|
+
description: string;
|
|
3294
3302
|
format: string;
|
|
3295
3303
|
type: string;
|
|
3296
3304
|
};
|
|
@@ -3302,46 +3310,58 @@ declare const _default: {
|
|
|
3302
3310
|
items: {
|
|
3303
3311
|
properties: {
|
|
3304
3312
|
can_delete: {
|
|
3313
|
+
description: string;
|
|
3305
3314
|
type: string;
|
|
3306
3315
|
};
|
|
3307
3316
|
can_edit: {
|
|
3317
|
+
description: string;
|
|
3308
3318
|
type: string;
|
|
3309
3319
|
};
|
|
3310
3320
|
climate_preset_key: {
|
|
3321
|
+
description: string;
|
|
3311
3322
|
type: string;
|
|
3312
3323
|
};
|
|
3313
3324
|
cooling_set_point_celsius: {
|
|
3325
|
+
description: string;
|
|
3314
3326
|
format: string;
|
|
3315
3327
|
type: string;
|
|
3316
3328
|
};
|
|
3317
3329
|
cooling_set_point_fahrenheit: {
|
|
3330
|
+
description: string;
|
|
3318
3331
|
format: string;
|
|
3319
3332
|
type: string;
|
|
3320
3333
|
};
|
|
3321
3334
|
display_name: {
|
|
3335
|
+
description: string;
|
|
3322
3336
|
type: string;
|
|
3323
3337
|
};
|
|
3324
3338
|
fan_mode_setting: {
|
|
3339
|
+
description: string;
|
|
3325
3340
|
enum: string[];
|
|
3326
3341
|
type: string;
|
|
3327
3342
|
};
|
|
3328
3343
|
heating_set_point_celsius: {
|
|
3344
|
+
description: string;
|
|
3329
3345
|
format: string;
|
|
3330
3346
|
type: string;
|
|
3331
3347
|
};
|
|
3332
3348
|
heating_set_point_fahrenheit: {
|
|
3349
|
+
description: string;
|
|
3333
3350
|
format: string;
|
|
3334
3351
|
type: string;
|
|
3335
3352
|
};
|
|
3336
3353
|
hvac_mode_setting: {
|
|
3354
|
+
description: string;
|
|
3337
3355
|
enum: string[];
|
|
3338
3356
|
type: string;
|
|
3339
3357
|
};
|
|
3340
3358
|
manual_override_allowed: {
|
|
3359
|
+
description: string;
|
|
3341
3360
|
type: string;
|
|
3342
3361
|
};
|
|
3343
3362
|
name: {
|
|
3344
3363
|
default: null;
|
|
3364
|
+
description: string;
|
|
3345
3365
|
nullable: boolean;
|
|
3346
3366
|
type: string;
|
|
3347
3367
|
};
|
|
@@ -3368,46 +3388,58 @@ declare const _default: {
|
|
|
3368
3388
|
current_climate_setting: {
|
|
3369
3389
|
properties: {
|
|
3370
3390
|
can_delete: {
|
|
3391
|
+
description: string;
|
|
3371
3392
|
type: string;
|
|
3372
3393
|
};
|
|
3373
3394
|
can_edit: {
|
|
3395
|
+
description: string;
|
|
3374
3396
|
type: string;
|
|
3375
3397
|
};
|
|
3376
3398
|
climate_preset_key: {
|
|
3399
|
+
description: string;
|
|
3377
3400
|
type: string;
|
|
3378
3401
|
};
|
|
3379
3402
|
cooling_set_point_celsius: {
|
|
3403
|
+
description: string;
|
|
3380
3404
|
format: string;
|
|
3381
3405
|
type: string;
|
|
3382
3406
|
};
|
|
3383
3407
|
cooling_set_point_fahrenheit: {
|
|
3408
|
+
description: string;
|
|
3384
3409
|
format: string;
|
|
3385
3410
|
type: string;
|
|
3386
3411
|
};
|
|
3387
3412
|
display_name: {
|
|
3413
|
+
description: string;
|
|
3388
3414
|
type: string;
|
|
3389
3415
|
};
|
|
3390
3416
|
fan_mode_setting: {
|
|
3417
|
+
description: string;
|
|
3391
3418
|
enum: string[];
|
|
3392
3419
|
type: string;
|
|
3393
3420
|
};
|
|
3394
3421
|
heating_set_point_celsius: {
|
|
3422
|
+
description: string;
|
|
3395
3423
|
format: string;
|
|
3396
3424
|
type: string;
|
|
3397
3425
|
};
|
|
3398
3426
|
heating_set_point_fahrenheit: {
|
|
3427
|
+
description: string;
|
|
3399
3428
|
format: string;
|
|
3400
3429
|
type: string;
|
|
3401
3430
|
};
|
|
3402
3431
|
hvac_mode_setting: {
|
|
3432
|
+
description: string;
|
|
3403
3433
|
enum: string[];
|
|
3404
3434
|
type: string;
|
|
3405
3435
|
};
|
|
3406
3436
|
manual_override_allowed: {
|
|
3437
|
+
description: string;
|
|
3407
3438
|
type: string;
|
|
3408
3439
|
};
|
|
3409
3440
|
name: {
|
|
3410
3441
|
default: null;
|
|
3442
|
+
description: string;
|
|
3411
3443
|
nullable: boolean;
|
|
3412
3444
|
type: string;
|
|
3413
3445
|
};
|
|
@@ -3418,46 +3450,58 @@ declare const _default: {
|
|
|
3418
3450
|
deprecated: boolean;
|
|
3419
3451
|
properties: {
|
|
3420
3452
|
can_delete: {
|
|
3453
|
+
description: string;
|
|
3421
3454
|
type: string;
|
|
3422
3455
|
};
|
|
3423
3456
|
can_edit: {
|
|
3457
|
+
description: string;
|
|
3424
3458
|
type: string;
|
|
3425
3459
|
};
|
|
3426
3460
|
climate_preset_key: {
|
|
3461
|
+
description: string;
|
|
3427
3462
|
type: string;
|
|
3428
3463
|
};
|
|
3429
3464
|
cooling_set_point_celsius: {
|
|
3465
|
+
description: string;
|
|
3430
3466
|
format: string;
|
|
3431
3467
|
type: string;
|
|
3432
3468
|
};
|
|
3433
3469
|
cooling_set_point_fahrenheit: {
|
|
3470
|
+
description: string;
|
|
3434
3471
|
format: string;
|
|
3435
3472
|
type: string;
|
|
3436
3473
|
};
|
|
3437
3474
|
display_name: {
|
|
3475
|
+
description: string;
|
|
3438
3476
|
type: string;
|
|
3439
3477
|
};
|
|
3440
3478
|
fan_mode_setting: {
|
|
3479
|
+
description: string;
|
|
3441
3480
|
enum: string[];
|
|
3442
3481
|
type: string;
|
|
3443
3482
|
};
|
|
3444
3483
|
heating_set_point_celsius: {
|
|
3484
|
+
description: string;
|
|
3445
3485
|
format: string;
|
|
3446
3486
|
type: string;
|
|
3447
3487
|
};
|
|
3448
3488
|
heating_set_point_fahrenheit: {
|
|
3489
|
+
description: string;
|
|
3449
3490
|
format: string;
|
|
3450
3491
|
type: string;
|
|
3451
3492
|
};
|
|
3452
3493
|
hvac_mode_setting: {
|
|
3494
|
+
description: string;
|
|
3453
3495
|
enum: string[];
|
|
3454
3496
|
type: string;
|
|
3455
3497
|
};
|
|
3456
3498
|
manual_override_allowed: {
|
|
3499
|
+
description: string;
|
|
3457
3500
|
type: string;
|
|
3458
3501
|
};
|
|
3459
3502
|
name: {
|
|
3460
3503
|
default: null;
|
|
3504
|
+
description: string;
|
|
3461
3505
|
nullable: boolean;
|
|
3462
3506
|
type: string;
|
|
3463
3507
|
};
|
|
@@ -4040,17 +4084,21 @@ declare const _default: {
|
|
|
4040
4084
|
thermostat_schedule: {
|
|
4041
4085
|
properties: {
|
|
4042
4086
|
climate_preset_key: {
|
|
4087
|
+
description: string;
|
|
4043
4088
|
type: string;
|
|
4044
4089
|
};
|
|
4045
4090
|
created_at: {
|
|
4091
|
+
description: string;
|
|
4046
4092
|
format: string;
|
|
4047
4093
|
type: string;
|
|
4048
4094
|
};
|
|
4049
4095
|
device_id: {
|
|
4096
|
+
description: string;
|
|
4050
4097
|
format: string;
|
|
4051
4098
|
type: string;
|
|
4052
4099
|
};
|
|
4053
4100
|
ends_at: {
|
|
4101
|
+
description: string;
|
|
4054
4102
|
format: string;
|
|
4055
4103
|
type: string;
|
|
4056
4104
|
};
|
|
@@ -4058,17 +4106,21 @@ declare const _default: {
|
|
|
4058
4106
|
description: string;
|
|
4059
4107
|
};
|
|
4060
4108
|
max_override_period_minutes: {
|
|
4109
|
+
description: string;
|
|
4061
4110
|
minimum: number;
|
|
4062
4111
|
type: string;
|
|
4063
4112
|
};
|
|
4064
4113
|
name: {
|
|
4114
|
+
description: string;
|
|
4065
4115
|
type: string;
|
|
4066
4116
|
};
|
|
4067
4117
|
starts_at: {
|
|
4118
|
+
description: string;
|
|
4068
4119
|
format: string;
|
|
4069
4120
|
type: string;
|
|
4070
4121
|
};
|
|
4071
4122
|
thermostat_schedule_id: {
|
|
4123
|
+
description: string;
|
|
4072
4124
|
format: string;
|
|
4073
4125
|
type: string;
|
|
4074
4126
|
};
|
|
@@ -13085,6 +13137,7 @@ declare const _default: {
|
|
|
13085
13137
|
};
|
|
13086
13138
|
'/devices/list': {
|
|
13087
13139
|
post: {
|
|
13140
|
+
description: string;
|
|
13088
13141
|
operationId: string;
|
|
13089
13142
|
requestBody: {
|
|
13090
13143
|
content: {
|
|
@@ -13092,6 +13145,7 @@ declare const _default: {
|
|
|
13092
13145
|
schema: {
|
|
13093
13146
|
properties: {
|
|
13094
13147
|
connect_webview_id: {
|
|
13148
|
+
description: string;
|
|
13095
13149
|
format: string;
|
|
13096
13150
|
type: string;
|
|
13097
13151
|
};
|
|
@@ -13101,6 +13155,7 @@ declare const _default: {
|
|
|
13101
13155
|
type: string;
|
|
13102
13156
|
};
|
|
13103
13157
|
connected_account_ids: {
|
|
13158
|
+
description: string;
|
|
13104
13159
|
items: {
|
|
13105
13160
|
format: string;
|
|
13106
13161
|
type: string;
|
|
@@ -13108,6 +13163,7 @@ declare const _default: {
|
|
|
13108
13163
|
type: string;
|
|
13109
13164
|
};
|
|
13110
13165
|
created_before: {
|
|
13166
|
+
description: string;
|
|
13111
13167
|
format: string;
|
|
13112
13168
|
type: string;
|
|
13113
13169
|
};
|
|
@@ -13117,9 +13173,11 @@ declare const _default: {
|
|
|
13117
13173
|
type: string;
|
|
13118
13174
|
}[];
|
|
13119
13175
|
};
|
|
13176
|
+
description: string;
|
|
13120
13177
|
type: string;
|
|
13121
13178
|
};
|
|
13122
13179
|
device_ids: {
|
|
13180
|
+
description: string;
|
|
13123
13181
|
items: {
|
|
13124
13182
|
format: string;
|
|
13125
13183
|
type: string;
|
|
@@ -13127,12 +13185,14 @@ declare const _default: {
|
|
|
13127
13185
|
type: string;
|
|
13128
13186
|
};
|
|
13129
13187
|
device_type: {
|
|
13188
|
+
description: string;
|
|
13130
13189
|
oneOf: {
|
|
13131
13190
|
enum: string[];
|
|
13132
13191
|
type: string;
|
|
13133
13192
|
}[];
|
|
13134
13193
|
};
|
|
13135
13194
|
device_types: {
|
|
13195
|
+
description: string;
|
|
13136
13196
|
items: {
|
|
13137
13197
|
oneOf: {
|
|
13138
13198
|
enum: string[];
|
|
@@ -13147,6 +13207,7 @@ declare const _default: {
|
|
|
13147
13207
|
type: string;
|
|
13148
13208
|
};
|
|
13149
13209
|
type: string;
|
|
13210
|
+
'x-undocumented': string;
|
|
13150
13211
|
};
|
|
13151
13212
|
include_if: {
|
|
13152
13213
|
items: {
|
|
@@ -13154,17 +13215,21 @@ declare const _default: {
|
|
|
13154
13215
|
type: string;
|
|
13155
13216
|
};
|
|
13156
13217
|
type: string;
|
|
13218
|
+
'x-undocumented': string;
|
|
13157
13219
|
};
|
|
13158
13220
|
limit: {
|
|
13159
13221
|
default: number;
|
|
13222
|
+
description: string;
|
|
13160
13223
|
format: string;
|
|
13161
13224
|
type: string;
|
|
13162
13225
|
};
|
|
13163
13226
|
manufacturer: {
|
|
13227
|
+
description: string;
|
|
13164
13228
|
enum: string[];
|
|
13165
13229
|
type: string;
|
|
13166
13230
|
};
|
|
13167
13231
|
user_identifier_key: {
|
|
13232
|
+
description: string;
|
|
13168
13233
|
type: string;
|
|
13169
13234
|
};
|
|
13170
13235
|
};
|
|
@@ -13230,6 +13295,7 @@ declare const _default: {
|
|
|
13230
13295
|
'x-fern-sdk-method-name': string;
|
|
13231
13296
|
'x-fern-sdk-return-value': string;
|
|
13232
13297
|
'x-response-key': string;
|
|
13298
|
+
'x-title': string;
|
|
13233
13299
|
};
|
|
13234
13300
|
};
|
|
13235
13301
|
'/devices/list_device_providers': {
|
|
@@ -13584,6 +13650,7 @@ declare const _default: {
|
|
|
13584
13650
|
schema: {
|
|
13585
13651
|
properties: {
|
|
13586
13652
|
connect_webview_id: {
|
|
13653
|
+
description: string;
|
|
13587
13654
|
format: string;
|
|
13588
13655
|
type: string;
|
|
13589
13656
|
};
|
|
@@ -13593,6 +13660,7 @@ declare const _default: {
|
|
|
13593
13660
|
type: string;
|
|
13594
13661
|
};
|
|
13595
13662
|
connected_account_ids: {
|
|
13663
|
+
description: string;
|
|
13596
13664
|
items: {
|
|
13597
13665
|
format: string;
|
|
13598
13666
|
type: string;
|
|
@@ -13600,6 +13668,7 @@ declare const _default: {
|
|
|
13600
13668
|
type: string;
|
|
13601
13669
|
};
|
|
13602
13670
|
created_before: {
|
|
13671
|
+
description: string;
|
|
13603
13672
|
format: string;
|
|
13604
13673
|
type: string;
|
|
13605
13674
|
};
|
|
@@ -13609,9 +13678,11 @@ declare const _default: {
|
|
|
13609
13678
|
type: string;
|
|
13610
13679
|
}[];
|
|
13611
13680
|
};
|
|
13681
|
+
description: string;
|
|
13612
13682
|
type: string;
|
|
13613
13683
|
};
|
|
13614
13684
|
device_ids: {
|
|
13685
|
+
description: string;
|
|
13615
13686
|
items: {
|
|
13616
13687
|
format: string;
|
|
13617
13688
|
type: string;
|
|
@@ -13619,12 +13690,14 @@ declare const _default: {
|
|
|
13619
13690
|
type: string;
|
|
13620
13691
|
};
|
|
13621
13692
|
device_type: {
|
|
13693
|
+
description: string;
|
|
13622
13694
|
oneOf: {
|
|
13623
13695
|
enum: string[];
|
|
13624
13696
|
type: string;
|
|
13625
13697
|
}[];
|
|
13626
13698
|
};
|
|
13627
13699
|
device_types: {
|
|
13700
|
+
description: string;
|
|
13628
13701
|
items: {
|
|
13629
13702
|
oneOf: {
|
|
13630
13703
|
enum: string[];
|
|
@@ -13639,6 +13712,7 @@ declare const _default: {
|
|
|
13639
13712
|
type: string;
|
|
13640
13713
|
};
|
|
13641
13714
|
type: string;
|
|
13715
|
+
'x-undocumented': string;
|
|
13642
13716
|
};
|
|
13643
13717
|
include_if: {
|
|
13644
13718
|
items: {
|
|
@@ -13646,17 +13720,21 @@ declare const _default: {
|
|
|
13646
13720
|
type: string;
|
|
13647
13721
|
};
|
|
13648
13722
|
type: string;
|
|
13723
|
+
'x-undocumented': string;
|
|
13649
13724
|
};
|
|
13650
13725
|
limit: {
|
|
13651
13726
|
default: number;
|
|
13727
|
+
description: string;
|
|
13652
13728
|
format: string;
|
|
13653
13729
|
type: string;
|
|
13654
13730
|
};
|
|
13655
13731
|
manufacturer: {
|
|
13732
|
+
description: string;
|
|
13656
13733
|
enum: string[];
|
|
13657
13734
|
type: string;
|
|
13658
13735
|
};
|
|
13659
13736
|
user_identifier_key: {
|
|
13737
|
+
description: string;
|
|
13660
13738
|
type: string;
|
|
13661
13739
|
};
|
|
13662
13740
|
};
|
|
@@ -14355,6 +14433,7 @@ declare const _default: {
|
|
|
14355
14433
|
schema: {
|
|
14356
14434
|
properties: {
|
|
14357
14435
|
connect_webview_id: {
|
|
14436
|
+
description: string;
|
|
14358
14437
|
format: string;
|
|
14359
14438
|
type: string;
|
|
14360
14439
|
};
|
|
@@ -14364,6 +14443,7 @@ declare const _default: {
|
|
|
14364
14443
|
type: string;
|
|
14365
14444
|
};
|
|
14366
14445
|
connected_account_ids: {
|
|
14446
|
+
description: string;
|
|
14367
14447
|
items: {
|
|
14368
14448
|
format: string;
|
|
14369
14449
|
type: string;
|
|
@@ -14371,6 +14451,7 @@ declare const _default: {
|
|
|
14371
14451
|
type: string;
|
|
14372
14452
|
};
|
|
14373
14453
|
created_before: {
|
|
14454
|
+
description: string;
|
|
14374
14455
|
format: string;
|
|
14375
14456
|
type: string;
|
|
14376
14457
|
};
|
|
@@ -14380,9 +14461,11 @@ declare const _default: {
|
|
|
14380
14461
|
type: string;
|
|
14381
14462
|
}[];
|
|
14382
14463
|
};
|
|
14464
|
+
description: string;
|
|
14383
14465
|
type: string;
|
|
14384
14466
|
};
|
|
14385
14467
|
device_ids: {
|
|
14468
|
+
description: string;
|
|
14386
14469
|
items: {
|
|
14387
14470
|
format: string;
|
|
14388
14471
|
type: string;
|
|
@@ -14390,12 +14473,14 @@ declare const _default: {
|
|
|
14390
14473
|
type: string;
|
|
14391
14474
|
};
|
|
14392
14475
|
device_type: {
|
|
14476
|
+
description: string;
|
|
14393
14477
|
oneOf: {
|
|
14394
14478
|
enum: string[];
|
|
14395
14479
|
type: string;
|
|
14396
14480
|
}[];
|
|
14397
14481
|
};
|
|
14398
14482
|
device_types: {
|
|
14483
|
+
description: string;
|
|
14399
14484
|
items: {
|
|
14400
14485
|
oneOf: {
|
|
14401
14486
|
enum: string[];
|
|
@@ -14410,6 +14495,7 @@ declare const _default: {
|
|
|
14410
14495
|
type: string;
|
|
14411
14496
|
};
|
|
14412
14497
|
type: string;
|
|
14498
|
+
'x-undocumented': string;
|
|
14413
14499
|
};
|
|
14414
14500
|
include_if: {
|
|
14415
14501
|
items: {
|
|
@@ -14417,17 +14503,21 @@ declare const _default: {
|
|
|
14417
14503
|
type: string;
|
|
14418
14504
|
};
|
|
14419
14505
|
type: string;
|
|
14506
|
+
'x-undocumented': string;
|
|
14420
14507
|
};
|
|
14421
14508
|
limit: {
|
|
14422
14509
|
default: number;
|
|
14510
|
+
description: string;
|
|
14423
14511
|
format: string;
|
|
14424
14512
|
type: string;
|
|
14425
14513
|
};
|
|
14426
14514
|
manufacturer: {
|
|
14515
|
+
description: string;
|
|
14427
14516
|
enum: string[];
|
|
14428
14517
|
type: string;
|
|
14429
14518
|
};
|
|
14430
14519
|
user_identifier_key: {
|
|
14520
|
+
description: string;
|
|
14431
14521
|
type: string;
|
|
14432
14522
|
};
|
|
14433
14523
|
};
|
|
@@ -14799,6 +14889,7 @@ declare const _default: {
|
|
|
14799
14889
|
schema: {
|
|
14800
14890
|
properties: {
|
|
14801
14891
|
connect_webview_id: {
|
|
14892
|
+
description: string;
|
|
14802
14893
|
format: string;
|
|
14803
14894
|
type: string;
|
|
14804
14895
|
};
|
|
@@ -14808,6 +14899,7 @@ declare const _default: {
|
|
|
14808
14899
|
type: string;
|
|
14809
14900
|
};
|
|
14810
14901
|
connected_account_ids: {
|
|
14902
|
+
description: string;
|
|
14811
14903
|
items: {
|
|
14812
14904
|
format: string;
|
|
14813
14905
|
type: string;
|
|
@@ -14815,6 +14907,7 @@ declare const _default: {
|
|
|
14815
14907
|
type: string;
|
|
14816
14908
|
};
|
|
14817
14909
|
created_before: {
|
|
14910
|
+
description: string;
|
|
14818
14911
|
format: string;
|
|
14819
14912
|
type: string;
|
|
14820
14913
|
};
|
|
@@ -14824,9 +14917,11 @@ declare const _default: {
|
|
|
14824
14917
|
type: string;
|
|
14825
14918
|
}[];
|
|
14826
14919
|
};
|
|
14920
|
+
description: string;
|
|
14827
14921
|
type: string;
|
|
14828
14922
|
};
|
|
14829
14923
|
device_ids: {
|
|
14924
|
+
description: string;
|
|
14830
14925
|
items: {
|
|
14831
14926
|
format: string;
|
|
14832
14927
|
type: string;
|
|
@@ -14834,12 +14929,14 @@ declare const _default: {
|
|
|
14834
14929
|
type: string;
|
|
14835
14930
|
};
|
|
14836
14931
|
device_type: {
|
|
14932
|
+
description: string;
|
|
14837
14933
|
oneOf: {
|
|
14838
14934
|
enum: string[];
|
|
14839
14935
|
type: string;
|
|
14840
14936
|
}[];
|
|
14841
14937
|
};
|
|
14842
14938
|
device_types: {
|
|
14939
|
+
description: string;
|
|
14843
14940
|
items: {
|
|
14844
14941
|
oneOf: {
|
|
14845
14942
|
enum: string[];
|
|
@@ -14854,6 +14951,7 @@ declare const _default: {
|
|
|
14854
14951
|
type: string;
|
|
14855
14952
|
};
|
|
14856
14953
|
type: string;
|
|
14954
|
+
'x-undocumented': string;
|
|
14857
14955
|
};
|
|
14858
14956
|
include_if: {
|
|
14859
14957
|
items: {
|
|
@@ -14861,17 +14959,21 @@ declare const _default: {
|
|
|
14861
14959
|
type: string;
|
|
14862
14960
|
};
|
|
14863
14961
|
type: string;
|
|
14962
|
+
'x-undocumented': string;
|
|
14864
14963
|
};
|
|
14865
14964
|
limit: {
|
|
14866
14965
|
default: number;
|
|
14966
|
+
description: string;
|
|
14867
14967
|
format: string;
|
|
14868
14968
|
type: string;
|
|
14869
14969
|
};
|
|
14870
14970
|
manufacturer: {
|
|
14971
|
+
description: string;
|
|
14871
14972
|
enum: string[];
|
|
14872
14973
|
type: string;
|
|
14873
14974
|
};
|
|
14874
14975
|
user_identifier_key: {
|
|
14976
|
+
description: string;
|
|
14875
14977
|
type: string;
|
|
14876
14978
|
};
|
|
14877
14979
|
};
|
|
@@ -15857,6 +15959,7 @@ declare const _default: {
|
|
|
15857
15959
|
};
|
|
15858
15960
|
'/thermostats/activate_climate_preset': {
|
|
15859
15961
|
post: {
|
|
15962
|
+
description: string;
|
|
15860
15963
|
operationId: string;
|
|
15861
15964
|
requestBody: {
|
|
15862
15965
|
content: {
|
|
@@ -15864,9 +15967,11 @@ declare const _default: {
|
|
|
15864
15967
|
schema: {
|
|
15865
15968
|
properties: {
|
|
15866
15969
|
climate_preset_key: {
|
|
15970
|
+
description: string;
|
|
15867
15971
|
type: string;
|
|
15868
15972
|
};
|
|
15869
15973
|
device_id: {
|
|
15974
|
+
description: string;
|
|
15870
15975
|
format: string;
|
|
15871
15976
|
type: string;
|
|
15872
15977
|
};
|
|
@@ -15923,6 +16028,7 @@ declare const _default: {
|
|
|
15923
16028
|
'x-fern-sdk-method-name': string;
|
|
15924
16029
|
'x-fern-sdk-return-value': string;
|
|
15925
16030
|
'x-response-key': string;
|
|
16031
|
+
'x-title': string;
|
|
15926
16032
|
};
|
|
15927
16033
|
};
|
|
15928
16034
|
'/thermostats/cool': {
|
|
@@ -15952,6 +16058,7 @@ declare const _default: {
|
|
|
15952
16058
|
sync: {
|
|
15953
16059
|
default: boolean;
|
|
15954
16060
|
type: string;
|
|
16061
|
+
'x-undocumented': string;
|
|
15955
16062
|
};
|
|
15956
16063
|
};
|
|
15957
16064
|
required: string[];
|
|
@@ -16019,6 +16126,7 @@ declare const _default: {
|
|
|
16019
16126
|
};
|
|
16020
16127
|
'/thermostats/create_climate_preset': {
|
|
16021
16128
|
post: {
|
|
16129
|
+
description: string;
|
|
16022
16130
|
operationId: string;
|
|
16023
16131
|
requestBody: {
|
|
16024
16132
|
content: {
|
|
@@ -16026,41 +16134,51 @@ declare const _default: {
|
|
|
16026
16134
|
schema: {
|
|
16027
16135
|
properties: {
|
|
16028
16136
|
climate_preset_key: {
|
|
16137
|
+
description: string;
|
|
16029
16138
|
type: string;
|
|
16030
16139
|
};
|
|
16031
16140
|
cooling_set_point_celsius: {
|
|
16141
|
+
description: string;
|
|
16032
16142
|
format: string;
|
|
16033
16143
|
type: string;
|
|
16034
16144
|
};
|
|
16035
16145
|
cooling_set_point_fahrenheit: {
|
|
16146
|
+
description: string;
|
|
16036
16147
|
format: string;
|
|
16037
16148
|
type: string;
|
|
16038
16149
|
};
|
|
16039
16150
|
device_id: {
|
|
16151
|
+
description: string;
|
|
16040
16152
|
format: string;
|
|
16041
16153
|
type: string;
|
|
16042
16154
|
};
|
|
16043
16155
|
fan_mode_setting: {
|
|
16156
|
+
description: string;
|
|
16044
16157
|
enum: string[];
|
|
16045
16158
|
type: string;
|
|
16046
16159
|
};
|
|
16047
16160
|
heating_set_point_celsius: {
|
|
16161
|
+
description: string;
|
|
16048
16162
|
format: string;
|
|
16049
16163
|
type: string;
|
|
16050
16164
|
};
|
|
16051
16165
|
heating_set_point_fahrenheit: {
|
|
16166
|
+
description: string;
|
|
16052
16167
|
format: string;
|
|
16053
16168
|
type: string;
|
|
16054
16169
|
};
|
|
16055
16170
|
hvac_mode_setting: {
|
|
16171
|
+
description: string;
|
|
16056
16172
|
enum: string[];
|
|
16057
16173
|
type: string;
|
|
16058
16174
|
};
|
|
16059
16175
|
manual_override_allowed: {
|
|
16176
|
+
description: string;
|
|
16060
16177
|
type: string;
|
|
16061
16178
|
};
|
|
16062
16179
|
name: {
|
|
16063
16180
|
default: null;
|
|
16181
|
+
description: string;
|
|
16064
16182
|
nullable: boolean;
|
|
16065
16183
|
type: string;
|
|
16066
16184
|
};
|
|
@@ -16113,10 +16231,12 @@ declare const _default: {
|
|
|
16113
16231
|
'x-fern-sdk-group-name': string[];
|
|
16114
16232
|
'x-fern-sdk-method-name': string;
|
|
16115
16233
|
'x-response-key': null;
|
|
16234
|
+
'x-title': string;
|
|
16116
16235
|
};
|
|
16117
16236
|
};
|
|
16118
16237
|
'/thermostats/delete_climate_preset': {
|
|
16119
16238
|
post: {
|
|
16239
|
+
description: string;
|
|
16120
16240
|
operationId: string;
|
|
16121
16241
|
requestBody: {
|
|
16122
16242
|
content: {
|
|
@@ -16124,9 +16244,11 @@ declare const _default: {
|
|
|
16124
16244
|
schema: {
|
|
16125
16245
|
properties: {
|
|
16126
16246
|
climate_preset_key: {
|
|
16247
|
+
description: string;
|
|
16127
16248
|
type: string;
|
|
16128
16249
|
};
|
|
16129
16250
|
device_id: {
|
|
16251
|
+
description: string;
|
|
16130
16252
|
format: string;
|
|
16131
16253
|
type: string;
|
|
16132
16254
|
};
|
|
@@ -16179,6 +16301,7 @@ declare const _default: {
|
|
|
16179
16301
|
'x-fern-sdk-group-name': string[];
|
|
16180
16302
|
'x-fern-sdk-method-name': string;
|
|
16181
16303
|
'x-response-key': null;
|
|
16304
|
+
'x-title': string;
|
|
16182
16305
|
};
|
|
16183
16306
|
};
|
|
16184
16307
|
'/thermostats/get': {
|
|
@@ -16261,6 +16384,7 @@ declare const _default: {
|
|
|
16261
16384
|
'x-fern-sdk-return-value': string;
|
|
16262
16385
|
'x-response-key': string;
|
|
16263
16386
|
'x-title': string;
|
|
16387
|
+
'x-undocumented': string;
|
|
16264
16388
|
};
|
|
16265
16389
|
};
|
|
16266
16390
|
'/thermostats/heat': {
|
|
@@ -16290,6 +16414,7 @@ declare const _default: {
|
|
|
16290
16414
|
sync: {
|
|
16291
16415
|
default: boolean;
|
|
16292
16416
|
type: string;
|
|
16417
|
+
'x-undocumented': string;
|
|
16293
16418
|
};
|
|
16294
16419
|
};
|
|
16295
16420
|
required: string[];
|
|
@@ -16392,6 +16517,7 @@ declare const _default: {
|
|
|
16392
16517
|
sync: {
|
|
16393
16518
|
default: boolean;
|
|
16394
16519
|
type: string;
|
|
16520
|
+
'x-undocumented': string;
|
|
16395
16521
|
};
|
|
16396
16522
|
};
|
|
16397
16523
|
required: string[];
|
|
@@ -16467,6 +16593,7 @@ declare const _default: {
|
|
|
16467
16593
|
schema: {
|
|
16468
16594
|
properties: {
|
|
16469
16595
|
connect_webview_id: {
|
|
16596
|
+
description: string;
|
|
16470
16597
|
format: string;
|
|
16471
16598
|
type: string;
|
|
16472
16599
|
};
|
|
@@ -16476,6 +16603,7 @@ declare const _default: {
|
|
|
16476
16603
|
type: string;
|
|
16477
16604
|
};
|
|
16478
16605
|
connected_account_ids: {
|
|
16606
|
+
description: string;
|
|
16479
16607
|
items: {
|
|
16480
16608
|
format: string;
|
|
16481
16609
|
type: string;
|
|
@@ -16483,6 +16611,7 @@ declare const _default: {
|
|
|
16483
16611
|
type: string;
|
|
16484
16612
|
};
|
|
16485
16613
|
created_before: {
|
|
16614
|
+
description: string;
|
|
16486
16615
|
format: string;
|
|
16487
16616
|
type: string;
|
|
16488
16617
|
};
|
|
@@ -16492,9 +16621,11 @@ declare const _default: {
|
|
|
16492
16621
|
type: string;
|
|
16493
16622
|
}[];
|
|
16494
16623
|
};
|
|
16624
|
+
description: string;
|
|
16495
16625
|
type: string;
|
|
16496
16626
|
};
|
|
16497
16627
|
device_ids: {
|
|
16628
|
+
description: string;
|
|
16498
16629
|
items: {
|
|
16499
16630
|
format: string;
|
|
16500
16631
|
type: string;
|
|
@@ -16502,12 +16633,14 @@ declare const _default: {
|
|
|
16502
16633
|
type: string;
|
|
16503
16634
|
};
|
|
16504
16635
|
device_type: {
|
|
16636
|
+
description: string;
|
|
16505
16637
|
oneOf: {
|
|
16506
16638
|
enum: string[];
|
|
16507
16639
|
type: string;
|
|
16508
16640
|
}[];
|
|
16509
16641
|
};
|
|
16510
16642
|
device_types: {
|
|
16643
|
+
description: string;
|
|
16511
16644
|
items: {
|
|
16512
16645
|
oneOf: {
|
|
16513
16646
|
enum: string[];
|
|
@@ -16522,6 +16655,7 @@ declare const _default: {
|
|
|
16522
16655
|
type: string;
|
|
16523
16656
|
};
|
|
16524
16657
|
type: string;
|
|
16658
|
+
'x-undocumented': string;
|
|
16525
16659
|
};
|
|
16526
16660
|
include_if: {
|
|
16527
16661
|
items: {
|
|
@@ -16529,17 +16663,21 @@ declare const _default: {
|
|
|
16529
16663
|
type: string;
|
|
16530
16664
|
};
|
|
16531
16665
|
type: string;
|
|
16666
|
+
'x-undocumented': string;
|
|
16532
16667
|
};
|
|
16533
16668
|
limit: {
|
|
16534
16669
|
default: number;
|
|
16670
|
+
description: string;
|
|
16535
16671
|
format: string;
|
|
16536
16672
|
type: string;
|
|
16537
16673
|
};
|
|
16538
16674
|
manufacturer: {
|
|
16675
|
+
description: string;
|
|
16539
16676
|
enum: string[];
|
|
16540
16677
|
type: string;
|
|
16541
16678
|
};
|
|
16542
16679
|
user_identifier_key: {
|
|
16680
|
+
description: string;
|
|
16543
16681
|
type: string;
|
|
16544
16682
|
};
|
|
16545
16683
|
};
|
|
@@ -16631,6 +16769,7 @@ declare const _default: {
|
|
|
16631
16769
|
sync: {
|
|
16632
16770
|
default: boolean;
|
|
16633
16771
|
type: string;
|
|
16772
|
+
'x-undocumented': string;
|
|
16634
16773
|
};
|
|
16635
16774
|
};
|
|
16636
16775
|
required: string[];
|
|
@@ -16698,6 +16837,7 @@ declare const _default: {
|
|
|
16698
16837
|
};
|
|
16699
16838
|
'/thermostats/schedules/create': {
|
|
16700
16839
|
post: {
|
|
16840
|
+
description: string;
|
|
16701
16841
|
operationId: string;
|
|
16702
16842
|
requestBody: {
|
|
16703
16843
|
content: {
|
|
@@ -16705,23 +16845,29 @@ declare const _default: {
|
|
|
16705
16845
|
schema: {
|
|
16706
16846
|
properties: {
|
|
16707
16847
|
climate_preset_key: {
|
|
16848
|
+
description: string;
|
|
16708
16849
|
type: string;
|
|
16709
16850
|
};
|
|
16710
16851
|
device_id: {
|
|
16852
|
+
description: string;
|
|
16711
16853
|
type: string;
|
|
16712
16854
|
};
|
|
16713
16855
|
ends_at: {
|
|
16856
|
+
description: string;
|
|
16714
16857
|
type: string;
|
|
16715
16858
|
};
|
|
16716
16859
|
max_override_period_minutes: {
|
|
16717
16860
|
default: number;
|
|
16861
|
+
description: string;
|
|
16718
16862
|
minimum: number;
|
|
16719
16863
|
type: string;
|
|
16720
16864
|
};
|
|
16721
16865
|
name: {
|
|
16866
|
+
description: string;
|
|
16722
16867
|
type: string;
|
|
16723
16868
|
};
|
|
16724
16869
|
starts_at: {
|
|
16870
|
+
description: string;
|
|
16725
16871
|
type: string;
|
|
16726
16872
|
};
|
|
16727
16873
|
};
|
|
@@ -16785,10 +16931,12 @@ declare const _default: {
|
|
|
16785
16931
|
'x-fern-sdk-method-name': string;
|
|
16786
16932
|
'x-fern-sdk-return-value': string;
|
|
16787
16933
|
'x-response-key': string;
|
|
16934
|
+
'x-title': string;
|
|
16788
16935
|
};
|
|
16789
16936
|
};
|
|
16790
16937
|
'/thermostats/schedules/delete': {
|
|
16791
16938
|
post: {
|
|
16939
|
+
description: string;
|
|
16792
16940
|
operationId: string;
|
|
16793
16941
|
requestBody: {
|
|
16794
16942
|
content: {
|
|
@@ -16796,6 +16944,7 @@ declare const _default: {
|
|
|
16796
16944
|
schema: {
|
|
16797
16945
|
properties: {
|
|
16798
16946
|
thermostat_schedule_id: {
|
|
16947
|
+
description: string;
|
|
16799
16948
|
format: string;
|
|
16800
16949
|
type: string;
|
|
16801
16950
|
};
|
|
@@ -16856,10 +17005,12 @@ declare const _default: {
|
|
|
16856
17005
|
'x-fern-sdk-group-name': string[];
|
|
16857
17006
|
'x-fern-sdk-method-name': string;
|
|
16858
17007
|
'x-response-key': null;
|
|
17008
|
+
'x-title': string;
|
|
16859
17009
|
};
|
|
16860
17010
|
};
|
|
16861
17011
|
'/thermostats/schedules/get': {
|
|
16862
17012
|
post: {
|
|
17013
|
+
description: string;
|
|
16863
17014
|
operationId: string;
|
|
16864
17015
|
requestBody: {
|
|
16865
17016
|
content: {
|
|
@@ -16867,6 +17018,7 @@ declare const _default: {
|
|
|
16867
17018
|
schema: {
|
|
16868
17019
|
properties: {
|
|
16869
17020
|
thermostat_schedule_id: {
|
|
17021
|
+
description: string;
|
|
16870
17022
|
format: string;
|
|
16871
17023
|
type: string;
|
|
16872
17024
|
};
|
|
@@ -16931,10 +17083,12 @@ declare const _default: {
|
|
|
16931
17083
|
'x-fern-sdk-method-name': string;
|
|
16932
17084
|
'x-fern-sdk-return-value': string;
|
|
16933
17085
|
'x-response-key': string;
|
|
17086
|
+
'x-title': string;
|
|
16934
17087
|
};
|
|
16935
17088
|
};
|
|
16936
17089
|
'/thermostats/schedules/list': {
|
|
16937
17090
|
post: {
|
|
17091
|
+
description: string;
|
|
16938
17092
|
operationId: string;
|
|
16939
17093
|
requestBody: {
|
|
16940
17094
|
content: {
|
|
@@ -16942,10 +17096,12 @@ declare const _default: {
|
|
|
16942
17096
|
schema: {
|
|
16943
17097
|
properties: {
|
|
16944
17098
|
device_id: {
|
|
17099
|
+
description: string;
|
|
16945
17100
|
format: string;
|
|
16946
17101
|
type: string;
|
|
16947
17102
|
};
|
|
16948
17103
|
user_identifier_key: {
|
|
17104
|
+
description: string;
|
|
16949
17105
|
type: string;
|
|
16950
17106
|
};
|
|
16951
17107
|
};
|
|
@@ -17012,10 +17168,12 @@ declare const _default: {
|
|
|
17012
17168
|
'x-fern-sdk-method-name': string;
|
|
17013
17169
|
'x-fern-sdk-return-value': string;
|
|
17014
17170
|
'x-response-key': string;
|
|
17171
|
+
'x-title': string;
|
|
17015
17172
|
};
|
|
17016
17173
|
};
|
|
17017
17174
|
'/thermostats/schedules/update': {
|
|
17018
17175
|
patch: {
|
|
17176
|
+
description: string;
|
|
17019
17177
|
operationId: string;
|
|
17020
17178
|
requestBody: {
|
|
17021
17179
|
content: {
|
|
@@ -17023,22 +17181,28 @@ declare const _default: {
|
|
|
17023
17181
|
schema: {
|
|
17024
17182
|
properties: {
|
|
17025
17183
|
climate_preset_key: {
|
|
17184
|
+
description: string;
|
|
17026
17185
|
type: string;
|
|
17027
17186
|
};
|
|
17028
17187
|
ends_at: {
|
|
17188
|
+
description: string;
|
|
17029
17189
|
type: string;
|
|
17030
17190
|
};
|
|
17031
17191
|
max_override_period_minutes: {
|
|
17192
|
+
description: string;
|
|
17032
17193
|
minimum: number;
|
|
17033
17194
|
type: string;
|
|
17034
17195
|
};
|
|
17035
17196
|
name: {
|
|
17197
|
+
description: string;
|
|
17036
17198
|
type: string;
|
|
17037
17199
|
};
|
|
17038
17200
|
starts_at: {
|
|
17201
|
+
description: string;
|
|
17039
17202
|
type: string;
|
|
17040
17203
|
};
|
|
17041
17204
|
thermostat_schedule_id: {
|
|
17205
|
+
description: string;
|
|
17042
17206
|
format: string;
|
|
17043
17207
|
type: string;
|
|
17044
17208
|
};
|
|
@@ -17098,8 +17262,10 @@ declare const _default: {
|
|
|
17098
17262
|
tags: string[];
|
|
17099
17263
|
'x-fern-ignore': boolean;
|
|
17100
17264
|
'x-response-key': null;
|
|
17265
|
+
'x-title': string;
|
|
17101
17266
|
};
|
|
17102
17267
|
post: {
|
|
17268
|
+
description: string;
|
|
17103
17269
|
operationId: string;
|
|
17104
17270
|
requestBody: {
|
|
17105
17271
|
content: {
|
|
@@ -17107,22 +17273,28 @@ declare const _default: {
|
|
|
17107
17273
|
schema: {
|
|
17108
17274
|
properties: {
|
|
17109
17275
|
climate_preset_key: {
|
|
17276
|
+
description: string;
|
|
17110
17277
|
type: string;
|
|
17111
17278
|
};
|
|
17112
17279
|
ends_at: {
|
|
17280
|
+
description: string;
|
|
17113
17281
|
type: string;
|
|
17114
17282
|
};
|
|
17115
17283
|
max_override_period_minutes: {
|
|
17284
|
+
description: string;
|
|
17116
17285
|
minimum: number;
|
|
17117
17286
|
type: string;
|
|
17118
17287
|
};
|
|
17119
17288
|
name: {
|
|
17289
|
+
description: string;
|
|
17120
17290
|
type: string;
|
|
17121
17291
|
};
|
|
17122
17292
|
starts_at: {
|
|
17293
|
+
description: string;
|
|
17123
17294
|
type: string;
|
|
17124
17295
|
};
|
|
17125
17296
|
thermostat_schedule_id: {
|
|
17297
|
+
description: string;
|
|
17126
17298
|
format: string;
|
|
17127
17299
|
type: string;
|
|
17128
17300
|
};
|
|
@@ -17183,10 +17355,12 @@ declare const _default: {
|
|
|
17183
17355
|
'x-fern-sdk-group-name': string[];
|
|
17184
17356
|
'x-fern-sdk-method-name': string;
|
|
17185
17357
|
'x-response-key': null;
|
|
17358
|
+
'x-title': string;
|
|
17186
17359
|
};
|
|
17187
17360
|
};
|
|
17188
17361
|
'/thermostats/set_fallback_climate_preset': {
|
|
17189
17362
|
post: {
|
|
17363
|
+
description: string;
|
|
17190
17364
|
operationId: string;
|
|
17191
17365
|
requestBody: {
|
|
17192
17366
|
content: {
|
|
@@ -17194,9 +17368,11 @@ declare const _default: {
|
|
|
17194
17368
|
schema: {
|
|
17195
17369
|
properties: {
|
|
17196
17370
|
climate_preset_key: {
|
|
17371
|
+
description: string;
|
|
17197
17372
|
type: string;
|
|
17198
17373
|
};
|
|
17199
17374
|
device_id: {
|
|
17375
|
+
description: string;
|
|
17200
17376
|
format: string;
|
|
17201
17377
|
type: string;
|
|
17202
17378
|
};
|
|
@@ -17249,6 +17425,7 @@ declare const _default: {
|
|
|
17249
17425
|
'x-fern-sdk-group-name': string[];
|
|
17250
17426
|
'x-fern-sdk-method-name': string;
|
|
17251
17427
|
'x-response-key': null;
|
|
17428
|
+
'x-title': string;
|
|
17252
17429
|
};
|
|
17253
17430
|
};
|
|
17254
17431
|
'/thermostats/set_fan_mode': {
|
|
@@ -17261,7 +17438,6 @@ declare const _default: {
|
|
|
17261
17438
|
schema: {
|
|
17262
17439
|
properties: {
|
|
17263
17440
|
device_id: {
|
|
17264
|
-
description: string;
|
|
17265
17441
|
format: string;
|
|
17266
17442
|
type: string;
|
|
17267
17443
|
};
|
|
@@ -17279,6 +17455,7 @@ declare const _default: {
|
|
|
17279
17455
|
sync: {
|
|
17280
17456
|
default: boolean;
|
|
17281
17457
|
type: string;
|
|
17458
|
+
'x-undocumented': string;
|
|
17282
17459
|
};
|
|
17283
17460
|
};
|
|
17284
17461
|
required: string[];
|
|
@@ -17346,6 +17523,7 @@ declare const _default: {
|
|
|
17346
17523
|
};
|
|
17347
17524
|
'/thermostats/set_temperature_threshold': {
|
|
17348
17525
|
patch: {
|
|
17526
|
+
description: string;
|
|
17349
17527
|
operationId: string;
|
|
17350
17528
|
requestBody: {
|
|
17351
17529
|
content: {
|
|
@@ -17353,29 +17531,34 @@ declare const _default: {
|
|
|
17353
17531
|
schema: {
|
|
17354
17532
|
properties: {
|
|
17355
17533
|
device_id: {
|
|
17534
|
+
description: string;
|
|
17356
17535
|
format: string;
|
|
17357
17536
|
type: string;
|
|
17358
17537
|
};
|
|
17359
17538
|
lower_limit_celsius: {
|
|
17360
17539
|
default: null;
|
|
17540
|
+
description: string;
|
|
17361
17541
|
format: string;
|
|
17362
17542
|
nullable: boolean;
|
|
17363
17543
|
type: string;
|
|
17364
17544
|
};
|
|
17365
17545
|
lower_limit_fahrenheit: {
|
|
17366
17546
|
default: null;
|
|
17547
|
+
description: string;
|
|
17367
17548
|
format: string;
|
|
17368
17549
|
nullable: boolean;
|
|
17369
17550
|
type: string;
|
|
17370
17551
|
};
|
|
17371
17552
|
upper_limit_celsius: {
|
|
17372
17553
|
default: null;
|
|
17554
|
+
description: string;
|
|
17373
17555
|
format: string;
|
|
17374
17556
|
nullable: boolean;
|
|
17375
17557
|
type: string;
|
|
17376
17558
|
};
|
|
17377
17559
|
upper_limit_fahrenheit: {
|
|
17378
17560
|
default: null;
|
|
17561
|
+
description: string;
|
|
17379
17562
|
format: string;
|
|
17380
17563
|
nullable: boolean;
|
|
17381
17564
|
type: string;
|
|
@@ -17428,8 +17611,10 @@ declare const _default: {
|
|
|
17428
17611
|
tags: string[];
|
|
17429
17612
|
'x-fern-ignore': boolean;
|
|
17430
17613
|
'x-response-key': null;
|
|
17614
|
+
'x-title': string;
|
|
17431
17615
|
};
|
|
17432
17616
|
post: {
|
|
17617
|
+
description: string;
|
|
17433
17618
|
operationId: string;
|
|
17434
17619
|
requestBody: {
|
|
17435
17620
|
content: {
|
|
@@ -17437,29 +17622,34 @@ declare const _default: {
|
|
|
17437
17622
|
schema: {
|
|
17438
17623
|
properties: {
|
|
17439
17624
|
device_id: {
|
|
17625
|
+
description: string;
|
|
17440
17626
|
format: string;
|
|
17441
17627
|
type: string;
|
|
17442
17628
|
};
|
|
17443
17629
|
lower_limit_celsius: {
|
|
17444
17630
|
default: null;
|
|
17631
|
+
description: string;
|
|
17445
17632
|
format: string;
|
|
17446
17633
|
nullable: boolean;
|
|
17447
17634
|
type: string;
|
|
17448
17635
|
};
|
|
17449
17636
|
lower_limit_fahrenheit: {
|
|
17450
17637
|
default: null;
|
|
17638
|
+
description: string;
|
|
17451
17639
|
format: string;
|
|
17452
17640
|
nullable: boolean;
|
|
17453
17641
|
type: string;
|
|
17454
17642
|
};
|
|
17455
17643
|
upper_limit_celsius: {
|
|
17456
17644
|
default: null;
|
|
17645
|
+
description: string;
|
|
17457
17646
|
format: string;
|
|
17458
17647
|
nullable: boolean;
|
|
17459
17648
|
type: string;
|
|
17460
17649
|
};
|
|
17461
17650
|
upper_limit_fahrenheit: {
|
|
17462
17651
|
default: null;
|
|
17652
|
+
description: string;
|
|
17463
17653
|
format: string;
|
|
17464
17654
|
nullable: boolean;
|
|
17465
17655
|
type: string;
|
|
@@ -17513,10 +17703,12 @@ declare const _default: {
|
|
|
17513
17703
|
'x-fern-sdk-group-name': string[];
|
|
17514
17704
|
'x-fern-sdk-method-name': string;
|
|
17515
17705
|
'x-response-key': null;
|
|
17706
|
+
'x-title': string;
|
|
17516
17707
|
};
|
|
17517
17708
|
};
|
|
17518
17709
|
'/thermostats/update_climate_preset': {
|
|
17519
17710
|
patch: {
|
|
17711
|
+
description: string;
|
|
17520
17712
|
operationId: string;
|
|
17521
17713
|
requestBody: {
|
|
17522
17714
|
content: {
|
|
@@ -17524,41 +17716,51 @@ declare const _default: {
|
|
|
17524
17716
|
schema: {
|
|
17525
17717
|
properties: {
|
|
17526
17718
|
climate_preset_key: {
|
|
17719
|
+
description: string;
|
|
17527
17720
|
type: string;
|
|
17528
17721
|
};
|
|
17529
17722
|
cooling_set_point_celsius: {
|
|
17723
|
+
description: string;
|
|
17530
17724
|
format: string;
|
|
17531
17725
|
type: string;
|
|
17532
17726
|
};
|
|
17533
17727
|
cooling_set_point_fahrenheit: {
|
|
17728
|
+
description: string;
|
|
17534
17729
|
format: string;
|
|
17535
17730
|
type: string;
|
|
17536
17731
|
};
|
|
17537
17732
|
device_id: {
|
|
17733
|
+
description: string;
|
|
17538
17734
|
format: string;
|
|
17539
17735
|
type: string;
|
|
17540
17736
|
};
|
|
17541
17737
|
fan_mode_setting: {
|
|
17738
|
+
description: string;
|
|
17542
17739
|
enum: string[];
|
|
17543
17740
|
type: string;
|
|
17544
17741
|
};
|
|
17545
17742
|
heating_set_point_celsius: {
|
|
17743
|
+
description: string;
|
|
17546
17744
|
format: string;
|
|
17547
17745
|
type: string;
|
|
17548
17746
|
};
|
|
17549
17747
|
heating_set_point_fahrenheit: {
|
|
17748
|
+
description: string;
|
|
17550
17749
|
format: string;
|
|
17551
17750
|
type: string;
|
|
17552
17751
|
};
|
|
17553
17752
|
hvac_mode_setting: {
|
|
17753
|
+
description: string;
|
|
17554
17754
|
enum: string[];
|
|
17555
17755
|
type: string;
|
|
17556
17756
|
};
|
|
17557
17757
|
manual_override_allowed: {
|
|
17758
|
+
description: string;
|
|
17558
17759
|
type: string;
|
|
17559
17760
|
};
|
|
17560
17761
|
name: {
|
|
17561
17762
|
default: null;
|
|
17763
|
+
description: string;
|
|
17562
17764
|
nullable: boolean;
|
|
17563
17765
|
type: string;
|
|
17564
17766
|
};
|
|
@@ -17610,8 +17812,10 @@ declare const _default: {
|
|
|
17610
17812
|
tags: string[];
|
|
17611
17813
|
'x-fern-ignore': boolean;
|
|
17612
17814
|
'x-response-key': null;
|
|
17815
|
+
'x-title': string;
|
|
17613
17816
|
};
|
|
17614
17817
|
post: {
|
|
17818
|
+
description: string;
|
|
17615
17819
|
operationId: string;
|
|
17616
17820
|
requestBody: {
|
|
17617
17821
|
content: {
|
|
@@ -17619,41 +17823,51 @@ declare const _default: {
|
|
|
17619
17823
|
schema: {
|
|
17620
17824
|
properties: {
|
|
17621
17825
|
climate_preset_key: {
|
|
17826
|
+
description: string;
|
|
17622
17827
|
type: string;
|
|
17623
17828
|
};
|
|
17624
17829
|
cooling_set_point_celsius: {
|
|
17830
|
+
description: string;
|
|
17625
17831
|
format: string;
|
|
17626
17832
|
type: string;
|
|
17627
17833
|
};
|
|
17628
17834
|
cooling_set_point_fahrenheit: {
|
|
17835
|
+
description: string;
|
|
17629
17836
|
format: string;
|
|
17630
17837
|
type: string;
|
|
17631
17838
|
};
|
|
17632
17839
|
device_id: {
|
|
17840
|
+
description: string;
|
|
17633
17841
|
format: string;
|
|
17634
17842
|
type: string;
|
|
17635
17843
|
};
|
|
17636
17844
|
fan_mode_setting: {
|
|
17845
|
+
description: string;
|
|
17637
17846
|
enum: string[];
|
|
17638
17847
|
type: string;
|
|
17639
17848
|
};
|
|
17640
17849
|
heating_set_point_celsius: {
|
|
17850
|
+
description: string;
|
|
17641
17851
|
format: string;
|
|
17642
17852
|
type: string;
|
|
17643
17853
|
};
|
|
17644
17854
|
heating_set_point_fahrenheit: {
|
|
17855
|
+
description: string;
|
|
17645
17856
|
format: string;
|
|
17646
17857
|
type: string;
|
|
17647
17858
|
};
|
|
17648
17859
|
hvac_mode_setting: {
|
|
17860
|
+
description: string;
|
|
17649
17861
|
enum: string[];
|
|
17650
17862
|
type: string;
|
|
17651
17863
|
};
|
|
17652
17864
|
manual_override_allowed: {
|
|
17865
|
+
description: string;
|
|
17653
17866
|
type: string;
|
|
17654
17867
|
};
|
|
17655
17868
|
name: {
|
|
17656
17869
|
default: null;
|
|
17870
|
+
description: string;
|
|
17657
17871
|
nullable: boolean;
|
|
17658
17872
|
type: string;
|
|
17659
17873
|
};
|
|
@@ -17706,6 +17920,7 @@ declare const _default: {
|
|
|
17706
17920
|
'x-fern-sdk-group-name': string[];
|
|
17707
17921
|
'x-fern-sdk-method-name': string;
|
|
17708
17922
|
'x-response-key': null;
|
|
17923
|
+
'x-title': string;
|
|
17709
17924
|
};
|
|
17710
17925
|
};
|
|
17711
17926
|
'/user_identities/add_acs_user': {
|