@seamapi/types 1.292.2 → 1.293.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +42 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +161 -43
- package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.js → assa-abloy-vostio.js} +1 -1
- package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.js.map → assa-abloy-vostio.js.map} +1 -1
- package/lib/seam/connect/models/acs/metadata/{dormakaba_community.js → dormakaba-community.js} +1 -1
- package/lib/seam/connect/models/acs/metadata/{dormakaba_community.js.map → dormakaba-community.js.map} +1 -1
- package/lib/seam/connect/models/acs/metadata/index.d.ts +2 -2
- package/lib/seam/connect/models/acs/metadata/index.js +2 -2
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +5 -0
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/phone.d.ts +5 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js +5 -3
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +3 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +8 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +31 -1
- package/lib/seam/connect/openapi.js +25 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +115 -42
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/index.ts +2 -2
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +7 -5
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +10 -0
- package/src/lib/seam/connect/openapi.ts +32 -10
- package/src/lib/seam/connect/route-types.ts +115 -42
- /package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.d.ts → assa-abloy-vostio.d.ts} +0 -0
- /package/lib/seam/connect/models/acs/metadata/{dormakaba_community.d.ts → dormakaba-community.d.ts} +0 -0
- /package/src/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.ts → assa-abloy-vostio.ts} +0 -0
- /package/src/lib/seam/connect/models/acs/metadata/{dormakaba_community.ts → dormakaba-community.ts} +0 -0
|
@@ -11436,7 +11436,8 @@ export interface Routes {
|
|
|
11436
11436
|
heating_set_point_fahrenheit?:
|
|
11437
11437
|
| (number | undefined)
|
|
11438
11438
|
| undefined
|
|
11439
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11439
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11440
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11440
11441
|
manual_override_allowed?: boolean | undefined
|
|
11441
11442
|
}
|
|
11442
11443
|
| undefined
|
|
@@ -11474,7 +11475,8 @@ export interface Routes {
|
|
|
11474
11475
|
heating_set_point_fahrenheit?:
|
|
11475
11476
|
| (number | undefined)
|
|
11476
11477
|
| undefined
|
|
11477
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11478
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11479
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11478
11480
|
manual_override_allowed?: boolean | undefined
|
|
11479
11481
|
}
|
|
11480
11482
|
| undefined
|
|
@@ -11504,7 +11506,8 @@ export interface Routes {
|
|
|
11504
11506
|
cooling_set_point_fahrenheit?: number | undefined
|
|
11505
11507
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
11506
11508
|
heating_set_point_fahrenheit?: number | undefined
|
|
11507
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11509
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
11510
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
11508
11511
|
manual_override_allowed: boolean
|
|
11509
11512
|
}>
|
|
11510
11513
|
| undefined
|
|
@@ -11524,6 +11527,8 @@ export interface Routes {
|
|
|
11524
11527
|
max_override_period_minutes: number
|
|
11525
11528
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
11526
11529
|
starts_at: string
|
|
11530
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
11531
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
11527
11532
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
11528
11533
|
ends_at: string
|
|
11529
11534
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -12310,7 +12315,8 @@ export interface Routes {
|
|
|
12310
12315
|
heating_set_point_fahrenheit?:
|
|
12311
12316
|
| (number | undefined)
|
|
12312
12317
|
| undefined
|
|
12313
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12318
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12319
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12314
12320
|
manual_override_allowed?: boolean | undefined
|
|
12315
12321
|
}
|
|
12316
12322
|
| undefined
|
|
@@ -12348,7 +12354,8 @@ export interface Routes {
|
|
|
12348
12354
|
heating_set_point_fahrenheit?:
|
|
12349
12355
|
| (number | undefined)
|
|
12350
12356
|
| undefined
|
|
12351
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12357
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12358
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12352
12359
|
manual_override_allowed?: boolean | undefined
|
|
12353
12360
|
}
|
|
12354
12361
|
| undefined
|
|
@@ -12378,7 +12385,8 @@ export interface Routes {
|
|
|
12378
12385
|
cooling_set_point_fahrenheit?: number | undefined
|
|
12379
12386
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
12380
12387
|
heating_set_point_fahrenheit?: number | undefined
|
|
12381
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12388
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
12389
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
12382
12390
|
manual_override_allowed: boolean
|
|
12383
12391
|
}>
|
|
12384
12392
|
| undefined
|
|
@@ -12398,6 +12406,8 @@ export interface Routes {
|
|
|
12398
12406
|
max_override_period_minutes: number
|
|
12399
12407
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
12400
12408
|
starts_at: string
|
|
12409
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
12410
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
12401
12411
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
12402
12412
|
ends_at: string
|
|
12403
12413
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -13899,7 +13909,8 @@ export interface Routes {
|
|
|
13899
13909
|
heating_set_point_fahrenheit?:
|
|
13900
13910
|
| (number | undefined)
|
|
13901
13911
|
| undefined
|
|
13902
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
13912
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
13913
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
13903
13914
|
manual_override_allowed?: boolean | undefined
|
|
13904
13915
|
}
|
|
13905
13916
|
| undefined
|
|
@@ -13937,7 +13948,8 @@ export interface Routes {
|
|
|
13937
13948
|
heating_set_point_fahrenheit?:
|
|
13938
13949
|
| (number | undefined)
|
|
13939
13950
|
| undefined
|
|
13940
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
13951
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
13952
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
13941
13953
|
manual_override_allowed?: boolean | undefined
|
|
13942
13954
|
}
|
|
13943
13955
|
| undefined
|
|
@@ -13967,7 +13979,8 @@ export interface Routes {
|
|
|
13967
13979
|
cooling_set_point_fahrenheit?: number | undefined
|
|
13968
13980
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
13969
13981
|
heating_set_point_fahrenheit?: number | undefined
|
|
13970
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
13982
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
13983
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
13971
13984
|
manual_override_allowed: boolean
|
|
13972
13985
|
}>
|
|
13973
13986
|
| undefined
|
|
@@ -13987,6 +14000,8 @@ export interface Routes {
|
|
|
13987
14000
|
max_override_period_minutes: number
|
|
13988
14001
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
13989
14002
|
starts_at: string
|
|
14003
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
14004
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
13990
14005
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
13991
14006
|
ends_at: string
|
|
13992
14007
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -14590,7 +14605,8 @@ export interface Routes {
|
|
|
14590
14605
|
heating_set_point_fahrenheit?:
|
|
14591
14606
|
| (number | undefined)
|
|
14592
14607
|
| undefined
|
|
14593
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14608
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14609
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
14594
14610
|
manual_override_allowed?: boolean | undefined
|
|
14595
14611
|
}
|
|
14596
14612
|
| undefined
|
|
@@ -14628,7 +14644,8 @@ export interface Routes {
|
|
|
14628
14644
|
heating_set_point_fahrenheit?:
|
|
14629
14645
|
| (number | undefined)
|
|
14630
14646
|
| undefined
|
|
14631
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14647
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14648
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
14632
14649
|
manual_override_allowed?: boolean | undefined
|
|
14633
14650
|
}
|
|
14634
14651
|
| undefined
|
|
@@ -14658,7 +14675,8 @@ export interface Routes {
|
|
|
14658
14675
|
cooling_set_point_fahrenheit?: number | undefined
|
|
14659
14676
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
14660
14677
|
heating_set_point_fahrenheit?: number | undefined
|
|
14661
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14678
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
14679
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
14662
14680
|
manual_override_allowed: boolean
|
|
14663
14681
|
}>
|
|
14664
14682
|
| undefined
|
|
@@ -14678,6 +14696,8 @@ export interface Routes {
|
|
|
14678
14696
|
max_override_period_minutes: number
|
|
14679
14697
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
14680
14698
|
starts_at: string
|
|
14699
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
14700
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
14681
14701
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
14682
14702
|
ends_at: string
|
|
14683
14703
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -15464,7 +15484,8 @@ export interface Routes {
|
|
|
15464
15484
|
heating_set_point_fahrenheit?:
|
|
15465
15485
|
| (number | undefined)
|
|
15466
15486
|
| undefined
|
|
15467
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15487
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15488
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
15468
15489
|
manual_override_allowed?: boolean | undefined
|
|
15469
15490
|
}
|
|
15470
15491
|
| undefined
|
|
@@ -15502,7 +15523,8 @@ export interface Routes {
|
|
|
15502
15523
|
heating_set_point_fahrenheit?:
|
|
15503
15524
|
| (number | undefined)
|
|
15504
15525
|
| undefined
|
|
15505
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15526
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15527
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
15506
15528
|
manual_override_allowed?: boolean | undefined
|
|
15507
15529
|
}
|
|
15508
15530
|
| undefined
|
|
@@ -15532,7 +15554,8 @@ export interface Routes {
|
|
|
15532
15554
|
cooling_set_point_fahrenheit?: number | undefined
|
|
15533
15555
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
15534
15556
|
heating_set_point_fahrenheit?: number | undefined
|
|
15535
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15557
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
15558
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
15536
15559
|
manual_override_allowed: boolean
|
|
15537
15560
|
}>
|
|
15538
15561
|
| undefined
|
|
@@ -15552,6 +15575,8 @@ export interface Routes {
|
|
|
15552
15575
|
max_override_period_minutes: number
|
|
15553
15576
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
15554
15577
|
starts_at: string
|
|
15578
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
15579
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
15555
15580
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
15556
15581
|
ends_at: string
|
|
15557
15582
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -16155,7 +16180,8 @@ export interface Routes {
|
|
|
16155
16180
|
heating_set_point_fahrenheit?:
|
|
16156
16181
|
| (number | undefined)
|
|
16157
16182
|
| undefined
|
|
16158
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
16183
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
16184
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
16159
16185
|
manual_override_allowed?: boolean | undefined
|
|
16160
16186
|
}
|
|
16161
16187
|
| undefined
|
|
@@ -16193,7 +16219,8 @@ export interface Routes {
|
|
|
16193
16219
|
heating_set_point_fahrenheit?:
|
|
16194
16220
|
| (number | undefined)
|
|
16195
16221
|
| undefined
|
|
16196
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
16222
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
16223
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
16197
16224
|
manual_override_allowed?: boolean | undefined
|
|
16198
16225
|
}
|
|
16199
16226
|
| undefined
|
|
@@ -16223,7 +16250,8 @@ export interface Routes {
|
|
|
16223
16250
|
cooling_set_point_fahrenheit?: number | undefined
|
|
16224
16251
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
16225
16252
|
heating_set_point_fahrenheit?: number | undefined
|
|
16226
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
16253
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
16254
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
16227
16255
|
manual_override_allowed: boolean
|
|
16228
16256
|
}>
|
|
16229
16257
|
| undefined
|
|
@@ -16243,6 +16271,8 @@ export interface Routes {
|
|
|
16243
16271
|
max_override_period_minutes: number
|
|
16244
16272
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
16245
16273
|
starts_at: string
|
|
16274
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
16275
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
16246
16276
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
16247
16277
|
ends_at: string
|
|
16248
16278
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -18781,7 +18811,8 @@ export interface Routes {
|
|
|
18781
18811
|
heating_set_point_fahrenheit?:
|
|
18782
18812
|
| (number | undefined)
|
|
18783
18813
|
| undefined
|
|
18784
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
18814
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
18815
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
18785
18816
|
manual_override_allowed?: boolean | undefined
|
|
18786
18817
|
}
|
|
18787
18818
|
| undefined
|
|
@@ -18819,7 +18850,8 @@ export interface Routes {
|
|
|
18819
18850
|
heating_set_point_fahrenheit?:
|
|
18820
18851
|
| (number | undefined)
|
|
18821
18852
|
| undefined
|
|
18822
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
18853
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
18854
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
18823
18855
|
manual_override_allowed?: boolean | undefined
|
|
18824
18856
|
}
|
|
18825
18857
|
| undefined
|
|
@@ -18849,7 +18881,8 @@ export interface Routes {
|
|
|
18849
18881
|
cooling_set_point_fahrenheit?: number | undefined
|
|
18850
18882
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
18851
18883
|
heating_set_point_fahrenheit?: number | undefined
|
|
18852
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
18884
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
18885
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
18853
18886
|
manual_override_allowed: boolean
|
|
18854
18887
|
}>
|
|
18855
18888
|
| undefined
|
|
@@ -18869,6 +18902,8 @@ export interface Routes {
|
|
|
18869
18902
|
max_override_period_minutes: number
|
|
18870
18903
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
18871
18904
|
starts_at: string
|
|
18905
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
18906
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
18872
18907
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
18873
18908
|
ends_at: string
|
|
18874
18909
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -19472,7 +19507,8 @@ export interface Routes {
|
|
|
19472
19507
|
heating_set_point_fahrenheit?:
|
|
19473
19508
|
| (number | undefined)
|
|
19474
19509
|
| undefined
|
|
19475
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19510
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19511
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
19476
19512
|
manual_override_allowed?: boolean | undefined
|
|
19477
19513
|
}
|
|
19478
19514
|
| undefined
|
|
@@ -19510,7 +19546,8 @@ export interface Routes {
|
|
|
19510
19546
|
heating_set_point_fahrenheit?:
|
|
19511
19547
|
| (number | undefined)
|
|
19512
19548
|
| undefined
|
|
19513
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19549
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19550
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
19514
19551
|
manual_override_allowed?: boolean | undefined
|
|
19515
19552
|
}
|
|
19516
19553
|
| undefined
|
|
@@ -19540,7 +19577,8 @@ export interface Routes {
|
|
|
19540
19577
|
cooling_set_point_fahrenheit?: number | undefined
|
|
19541
19578
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
19542
19579
|
heating_set_point_fahrenheit?: number | undefined
|
|
19543
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19580
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
19581
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
19544
19582
|
manual_override_allowed: boolean
|
|
19545
19583
|
}>
|
|
19546
19584
|
| undefined
|
|
@@ -19560,6 +19598,8 @@ export interface Routes {
|
|
|
19560
19598
|
max_override_period_minutes: number
|
|
19561
19599
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
19562
19600
|
starts_at: string
|
|
19601
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
19602
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
19563
19603
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
19564
19604
|
ends_at: string
|
|
19565
19605
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -24218,6 +24258,7 @@ export interface Routes {
|
|
|
24218
24258
|
jsonBody: {
|
|
24219
24259
|
/** ID of the desired thermostat device. */
|
|
24220
24260
|
device_id: string
|
|
24261
|
+
manual_override_allowed?: boolean
|
|
24221
24262
|
/** Unique key to identify the climate preset. */
|
|
24222
24263
|
climate_preset_key: string
|
|
24223
24264
|
/** User-friendly name to identify the climate preset. */
|
|
@@ -24234,8 +24275,6 @@ export interface Routes {
|
|
|
24234
24275
|
cooling_set_point_fahrenheit?: number | undefined
|
|
24235
24276
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
24236
24277
|
heating_set_point_fahrenheit?: number | undefined
|
|
24237
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
24238
|
-
manual_override_allowed: boolean
|
|
24239
24278
|
}
|
|
24240
24279
|
commonParams: {}
|
|
24241
24280
|
formData: {}
|
|
@@ -24795,7 +24834,8 @@ export interface Routes {
|
|
|
24795
24834
|
heating_set_point_fahrenheit?:
|
|
24796
24835
|
| (number | undefined)
|
|
24797
24836
|
| undefined
|
|
24798
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24837
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24838
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24799
24839
|
manual_override_allowed?: boolean | undefined
|
|
24800
24840
|
}
|
|
24801
24841
|
| undefined
|
|
@@ -24833,7 +24873,8 @@ export interface Routes {
|
|
|
24833
24873
|
heating_set_point_fahrenheit?:
|
|
24834
24874
|
| (number | undefined)
|
|
24835
24875
|
| undefined
|
|
24836
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24876
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24877
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24837
24878
|
manual_override_allowed?: boolean | undefined
|
|
24838
24879
|
}
|
|
24839
24880
|
| undefined
|
|
@@ -24863,7 +24904,8 @@ export interface Routes {
|
|
|
24863
24904
|
cooling_set_point_fahrenheit?: number | undefined
|
|
24864
24905
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
24865
24906
|
heating_set_point_fahrenheit?: number | undefined
|
|
24866
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24907
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
24908
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
24867
24909
|
manual_override_allowed: boolean
|
|
24868
24910
|
}>
|
|
24869
24911
|
| undefined
|
|
@@ -24883,6 +24925,8 @@ export interface Routes {
|
|
|
24883
24925
|
max_override_period_minutes: number
|
|
24884
24926
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
24885
24927
|
starts_at: string
|
|
24928
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
24929
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
24886
24930
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
24887
24931
|
ends_at: string
|
|
24888
24932
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -27403,7 +27447,8 @@ export interface Routes {
|
|
|
27403
27447
|
heating_set_point_fahrenheit?:
|
|
27404
27448
|
| (number | undefined)
|
|
27405
27449
|
| undefined
|
|
27406
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
27450
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
27451
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
27407
27452
|
manual_override_allowed?: boolean | undefined
|
|
27408
27453
|
}
|
|
27409
27454
|
| undefined
|
|
@@ -27441,7 +27486,8 @@ export interface Routes {
|
|
|
27441
27486
|
heating_set_point_fahrenheit?:
|
|
27442
27487
|
| (number | undefined)
|
|
27443
27488
|
| undefined
|
|
27444
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
27489
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
27490
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
27445
27491
|
manual_override_allowed?: boolean | undefined
|
|
27446
27492
|
}
|
|
27447
27493
|
| undefined
|
|
@@ -27471,7 +27517,8 @@ export interface Routes {
|
|
|
27471
27517
|
cooling_set_point_fahrenheit?: number | undefined
|
|
27472
27518
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
27473
27519
|
heating_set_point_fahrenheit?: number | undefined
|
|
27474
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
27520
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
27521
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
27475
27522
|
manual_override_allowed: boolean
|
|
27476
27523
|
}>
|
|
27477
27524
|
| undefined
|
|
@@ -27491,6 +27538,8 @@ export interface Routes {
|
|
|
27491
27538
|
max_override_period_minutes: number
|
|
27492
27539
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
27493
27540
|
starts_at: string
|
|
27541
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
27542
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
27494
27543
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
27495
27544
|
ends_at: string
|
|
27496
27545
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -28094,7 +28143,8 @@ export interface Routes {
|
|
|
28094
28143
|
heating_set_point_fahrenheit?:
|
|
28095
28144
|
| (number | undefined)
|
|
28096
28145
|
| undefined
|
|
28097
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
28146
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
28147
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
28098
28148
|
manual_override_allowed?: boolean | undefined
|
|
28099
28149
|
}
|
|
28100
28150
|
| undefined
|
|
@@ -28132,7 +28182,8 @@ export interface Routes {
|
|
|
28132
28182
|
heating_set_point_fahrenheit?:
|
|
28133
28183
|
| (number | undefined)
|
|
28134
28184
|
| undefined
|
|
28135
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
28185
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
28186
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
28136
28187
|
manual_override_allowed?: boolean | undefined
|
|
28137
28188
|
}
|
|
28138
28189
|
| undefined
|
|
@@ -28162,7 +28213,8 @@ export interface Routes {
|
|
|
28162
28213
|
cooling_set_point_fahrenheit?: number | undefined
|
|
28163
28214
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
28164
28215
|
heating_set_point_fahrenheit?: number | undefined
|
|
28165
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
28216
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
28217
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
28166
28218
|
manual_override_allowed: boolean
|
|
28167
28219
|
}>
|
|
28168
28220
|
| undefined
|
|
@@ -28182,6 +28234,8 @@ export interface Routes {
|
|
|
28182
28234
|
max_override_period_minutes: number
|
|
28183
28235
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
28184
28236
|
starts_at: string
|
|
28237
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
28238
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
28185
28239
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
28186
28240
|
ends_at: string
|
|
28187
28241
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -29138,6 +29192,7 @@ export interface Routes {
|
|
|
29138
29192
|
starts_at: string
|
|
29139
29193
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
29140
29194
|
ends_at: string
|
|
29195
|
+
is_override_allowed?: boolean | undefined
|
|
29141
29196
|
}
|
|
29142
29197
|
commonParams: {}
|
|
29143
29198
|
formData: {}
|
|
@@ -29156,6 +29211,8 @@ export interface Routes {
|
|
|
29156
29211
|
max_override_period_minutes: number
|
|
29157
29212
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
29158
29213
|
starts_at: string
|
|
29214
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
29215
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
29159
29216
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
29160
29217
|
ends_at: string
|
|
29161
29218
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -29202,6 +29259,8 @@ export interface Routes {
|
|
|
29202
29259
|
max_override_period_minutes: number
|
|
29203
29260
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
29204
29261
|
starts_at: string
|
|
29262
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
29263
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
29205
29264
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
29206
29265
|
ends_at: string
|
|
29207
29266
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -29237,6 +29296,8 @@ export interface Routes {
|
|
|
29237
29296
|
max_override_period_minutes: number
|
|
29238
29297
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
29239
29298
|
starts_at: string
|
|
29299
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
29300
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
29240
29301
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
29241
29302
|
ends_at: string
|
|
29242
29303
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -29263,6 +29324,7 @@ export interface Routes {
|
|
|
29263
29324
|
starts_at?: string | undefined
|
|
29264
29325
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
29265
29326
|
ends_at?: string | undefined
|
|
29327
|
+
is_override_allowed?: boolean | undefined
|
|
29266
29328
|
}
|
|
29267
29329
|
commonParams: {}
|
|
29268
29330
|
formData: {}
|
|
@@ -30190,7 +30252,8 @@ export interface Routes {
|
|
|
30190
30252
|
cooling_set_point_fahrenheit?: number | undefined
|
|
30191
30253
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
30192
30254
|
heating_set_point_fahrenheit?: number | undefined
|
|
30193
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
30255
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
30256
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
30194
30257
|
manual_override_allowed: boolean
|
|
30195
30258
|
}
|
|
30196
30259
|
commonParams: {}
|
|
@@ -30915,7 +30978,8 @@ export interface Routes {
|
|
|
30915
30978
|
heating_set_point_fahrenheit?:
|
|
30916
30979
|
| (number | undefined)
|
|
30917
30980
|
| undefined
|
|
30918
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
30981
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
30982
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
30919
30983
|
manual_override_allowed?: boolean | undefined
|
|
30920
30984
|
}
|
|
30921
30985
|
| undefined
|
|
@@ -30953,7 +31017,8 @@ export interface Routes {
|
|
|
30953
31017
|
heating_set_point_fahrenheit?:
|
|
30954
31018
|
| (number | undefined)
|
|
30955
31019
|
| undefined
|
|
30956
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
31020
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
31021
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
30957
31022
|
manual_override_allowed?: boolean | undefined
|
|
30958
31023
|
}
|
|
30959
31024
|
| undefined
|
|
@@ -30983,7 +31048,8 @@ export interface Routes {
|
|
|
30983
31048
|
cooling_set_point_fahrenheit?: number | undefined
|
|
30984
31049
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
30985
31050
|
heating_set_point_fahrenheit?: number | undefined
|
|
30986
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
31051
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
31052
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
30987
31053
|
manual_override_allowed: boolean
|
|
30988
31054
|
}>
|
|
30989
31055
|
| undefined
|
|
@@ -31003,6 +31069,8 @@ export interface Routes {
|
|
|
31003
31069
|
max_override_period_minutes: number
|
|
31004
31070
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
31005
31071
|
starts_at: string
|
|
31072
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
31073
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
31006
31074
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
31007
31075
|
ends_at: string
|
|
31008
31076
|
/** Date and time at which the thermostat schedule was created. */
|
|
@@ -31608,7 +31676,8 @@ export interface Routes {
|
|
|
31608
31676
|
heating_set_point_fahrenheit?:
|
|
31609
31677
|
| (number | undefined)
|
|
31610
31678
|
| undefined
|
|
31611
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
31679
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
31680
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
31612
31681
|
manual_override_allowed?: boolean | undefined
|
|
31613
31682
|
}
|
|
31614
31683
|
| undefined
|
|
@@ -31646,7 +31715,8 @@ export interface Routes {
|
|
|
31646
31715
|
heating_set_point_fahrenheit?:
|
|
31647
31716
|
| (number | undefined)
|
|
31648
31717
|
| undefined
|
|
31649
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
31718
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
31719
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
31650
31720
|
manual_override_allowed?: boolean | undefined
|
|
31651
31721
|
}
|
|
31652
31722
|
| undefined
|
|
@@ -31676,7 +31746,8 @@ export interface Routes {
|
|
|
31676
31746
|
cooling_set_point_fahrenheit?: number | undefined
|
|
31677
31747
|
/** Temperature to which the thermostat should heat (in °F). */
|
|
31678
31748
|
heating_set_point_fahrenheit?: number | undefined
|
|
31679
|
-
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
31749
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings.
|
|
31750
|
+
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
31680
31751
|
manual_override_allowed: boolean
|
|
31681
31752
|
}>
|
|
31682
31753
|
| undefined
|
|
@@ -31696,6 +31767,8 @@ export interface Routes {
|
|
|
31696
31767
|
max_override_period_minutes: number
|
|
31697
31768
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
31698
31769
|
starts_at: string
|
|
31770
|
+
/** Indicates whether a person at the thermostat can change the thermostat's settings. */
|
|
31771
|
+
unstable_is_override_allowed?: boolean | undefined
|
|
31699
31772
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
31700
31773
|
ends_at: string
|
|
31701
31774
|
/** Date and time at which the thermostat schedule was created. */
|
/package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.d.ts → assa-abloy-vostio.d.ts}
RENAMED
|
File without changes
|
/package/lib/seam/connect/models/acs/metadata/{dormakaba_community.d.ts → dormakaba-community.d.ts}
RENAMED
|
File without changes
|
/package/src/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.ts → assa-abloy-vostio.ts}
RENAMED
|
File without changes
|
/package/src/lib/seam/connect/models/acs/metadata/{dormakaba_community.ts → dormakaba-community.ts}
RENAMED
|
File without changes
|