@seamapi/types 1.60.0 → 1.60.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 +60 -33
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +265 -132
- package/lib/seam/connect/openapi.d.ts +203 -132
- package/lib/seam/connect/openapi.js +60 -33
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +62 -0
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +15 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +33 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js +3 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +27 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +64 -33
- package/src/lib/seam/connect/route-types.ts +62 -0
- package/src/lib/seam/connect/unstable/models/capability-properties/thermostat.ts +5 -0
|
@@ -1903,6 +1903,8 @@ export interface Routes {
|
|
|
1903
1903
|
schedule_starts_at: string;
|
|
1904
1904
|
schedule_ends_at: string;
|
|
1905
1905
|
created_at: string;
|
|
1906
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
1907
|
+
errors?: any;
|
|
1906
1908
|
automatic_heating_enabled?: boolean | undefined;
|
|
1907
1909
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1908
1910
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -1965,6 +1967,8 @@ export interface Routes {
|
|
|
1965
1967
|
schedule_starts_at: string;
|
|
1966
1968
|
schedule_ends_at: string;
|
|
1967
1969
|
created_at: string;
|
|
1970
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
1971
|
+
errors?: any;
|
|
1968
1972
|
automatic_heating_enabled?: boolean | undefined;
|
|
1969
1973
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1970
1974
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -2021,6 +2025,8 @@ export interface Routes {
|
|
|
2021
2025
|
schedule_starts_at: string;
|
|
2022
2026
|
schedule_ends_at: string;
|
|
2023
2027
|
created_at: string;
|
|
2028
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
2029
|
+
errors?: any;
|
|
2024
2030
|
automatic_heating_enabled?: boolean | undefined;
|
|
2025
2031
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2026
2032
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -2362,6 +2368,8 @@ export interface Routes {
|
|
|
2362
2368
|
schedule_starts_at: string;
|
|
2363
2369
|
schedule_ends_at: string;
|
|
2364
2370
|
created_at: string;
|
|
2371
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
2372
|
+
errors?: any;
|
|
2365
2373
|
automatic_heating_enabled?: boolean | undefined;
|
|
2366
2374
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2367
2375
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -2424,6 +2432,8 @@ export interface Routes {
|
|
|
2424
2432
|
schedule_starts_at: string;
|
|
2425
2433
|
schedule_ends_at: string;
|
|
2426
2434
|
created_at: string;
|
|
2435
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
2436
|
+
errors?: any;
|
|
2427
2437
|
automatic_heating_enabled?: boolean | undefined;
|
|
2428
2438
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2429
2439
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -2480,6 +2490,8 @@ export interface Routes {
|
|
|
2480
2490
|
schedule_starts_at: string;
|
|
2481
2491
|
schedule_ends_at: string;
|
|
2482
2492
|
created_at: string;
|
|
2493
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
2494
|
+
errors?: any;
|
|
2483
2495
|
automatic_heating_enabled?: boolean | undefined;
|
|
2484
2496
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2485
2497
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3100,6 +3112,8 @@ export interface Routes {
|
|
|
3100
3112
|
schedule_starts_at: string;
|
|
3101
3113
|
schedule_ends_at: string;
|
|
3102
3114
|
created_at: string;
|
|
3115
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
3116
|
+
errors?: any;
|
|
3103
3117
|
automatic_heating_enabled?: boolean | undefined;
|
|
3104
3118
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3105
3119
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3162,6 +3176,8 @@ export interface Routes {
|
|
|
3162
3176
|
schedule_starts_at: string;
|
|
3163
3177
|
schedule_ends_at: string;
|
|
3164
3178
|
created_at: string;
|
|
3179
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
3180
|
+
errors?: any;
|
|
3165
3181
|
automatic_heating_enabled?: boolean | undefined;
|
|
3166
3182
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3167
3183
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3218,6 +3234,8 @@ export interface Routes {
|
|
|
3218
3234
|
schedule_starts_at: string;
|
|
3219
3235
|
schedule_ends_at: string;
|
|
3220
3236
|
created_at: string;
|
|
3237
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
3238
|
+
errors?: any;
|
|
3221
3239
|
automatic_heating_enabled?: boolean | undefined;
|
|
3222
3240
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3223
3241
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3537,6 +3555,8 @@ export interface Routes {
|
|
|
3537
3555
|
schedule_starts_at: string;
|
|
3538
3556
|
schedule_ends_at: string;
|
|
3539
3557
|
created_at: string;
|
|
3558
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
3559
|
+
errors?: any;
|
|
3540
3560
|
automatic_heating_enabled?: boolean | undefined;
|
|
3541
3561
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3542
3562
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3599,6 +3619,8 @@ export interface Routes {
|
|
|
3599
3619
|
schedule_starts_at: string;
|
|
3600
3620
|
schedule_ends_at: string;
|
|
3601
3621
|
created_at: string;
|
|
3622
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
3623
|
+
errors?: any;
|
|
3602
3624
|
automatic_heating_enabled?: boolean | undefined;
|
|
3603
3625
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3604
3626
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3655,6 +3677,8 @@ export interface Routes {
|
|
|
3655
3677
|
schedule_starts_at: string;
|
|
3656
3678
|
schedule_ends_at: string;
|
|
3657
3679
|
created_at: string;
|
|
3680
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
3681
|
+
errors?: any;
|
|
3658
3682
|
automatic_heating_enabled?: boolean | undefined;
|
|
3659
3683
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3660
3684
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -3996,6 +4020,8 @@ export interface Routes {
|
|
|
3996
4020
|
schedule_starts_at: string;
|
|
3997
4021
|
schedule_ends_at: string;
|
|
3998
4022
|
created_at: string;
|
|
4023
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4024
|
+
errors?: any;
|
|
3999
4025
|
automatic_heating_enabled?: boolean | undefined;
|
|
4000
4026
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4001
4027
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4058,6 +4084,8 @@ export interface Routes {
|
|
|
4058
4084
|
schedule_starts_at: string;
|
|
4059
4085
|
schedule_ends_at: string;
|
|
4060
4086
|
created_at: string;
|
|
4087
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4088
|
+
errors?: any;
|
|
4061
4089
|
automatic_heating_enabled?: boolean | undefined;
|
|
4062
4090
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4063
4091
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4114,6 +4142,8 @@ export interface Routes {
|
|
|
4114
4142
|
schedule_starts_at: string;
|
|
4115
4143
|
schedule_ends_at: string;
|
|
4116
4144
|
created_at: string;
|
|
4145
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4146
|
+
errors?: any;
|
|
4117
4147
|
automatic_heating_enabled?: boolean | undefined;
|
|
4118
4148
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4119
4149
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4433,6 +4463,8 @@ export interface Routes {
|
|
|
4433
4463
|
schedule_starts_at: string;
|
|
4434
4464
|
schedule_ends_at: string;
|
|
4435
4465
|
created_at: string;
|
|
4466
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4467
|
+
errors?: any;
|
|
4436
4468
|
automatic_heating_enabled?: boolean | undefined;
|
|
4437
4469
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4438
4470
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4495,6 +4527,8 @@ export interface Routes {
|
|
|
4495
4527
|
schedule_starts_at: string;
|
|
4496
4528
|
schedule_ends_at: string;
|
|
4497
4529
|
created_at: string;
|
|
4530
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4531
|
+
errors?: any;
|
|
4498
4532
|
automatic_heating_enabled?: boolean | undefined;
|
|
4499
4533
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4500
4534
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4551,6 +4585,8 @@ export interface Routes {
|
|
|
4551
4585
|
schedule_starts_at: string;
|
|
4552
4586
|
schedule_ends_at: string;
|
|
4553
4587
|
created_at: string;
|
|
4588
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4589
|
+
errors?: any;
|
|
4554
4590
|
automatic_heating_enabled?: boolean | undefined;
|
|
4555
4591
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4556
4592
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4873,6 +4909,8 @@ export interface Routes {
|
|
|
4873
4909
|
schedule_starts_at: string;
|
|
4874
4910
|
schedule_ends_at: string;
|
|
4875
4911
|
created_at: string;
|
|
4912
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4913
|
+
errors?: any;
|
|
4876
4914
|
automatic_heating_enabled?: boolean | undefined;
|
|
4877
4915
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4878
4916
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4914,6 +4952,8 @@ export interface Routes {
|
|
|
4914
4952
|
schedule_starts_at: string;
|
|
4915
4953
|
schedule_ends_at: string;
|
|
4916
4954
|
created_at: string;
|
|
4955
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4956
|
+
errors?: any;
|
|
4917
4957
|
automatic_heating_enabled?: boolean | undefined;
|
|
4918
4958
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4919
4959
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4944,6 +4984,8 @@ export interface Routes {
|
|
|
4944
4984
|
schedule_starts_at: string;
|
|
4945
4985
|
schedule_ends_at: string;
|
|
4946
4986
|
created_at: string;
|
|
4987
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
4988
|
+
errors?: any;
|
|
4947
4989
|
automatic_heating_enabled?: boolean | undefined;
|
|
4948
4990
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4949
4991
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -4985,6 +5027,8 @@ export interface Routes {
|
|
|
4985
5027
|
schedule_starts_at: string;
|
|
4986
5028
|
schedule_ends_at: string;
|
|
4987
5029
|
created_at: string;
|
|
5030
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5031
|
+
errors?: any;
|
|
4988
5032
|
automatic_heating_enabled?: boolean | undefined;
|
|
4989
5033
|
automatic_cooling_enabled?: boolean | undefined;
|
|
4990
5034
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -5300,6 +5344,8 @@ export interface Routes {
|
|
|
5300
5344
|
schedule_starts_at: string;
|
|
5301
5345
|
schedule_ends_at: string;
|
|
5302
5346
|
created_at: string;
|
|
5347
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5348
|
+
errors?: any;
|
|
5303
5349
|
automatic_heating_enabled?: boolean | undefined;
|
|
5304
5350
|
automatic_cooling_enabled?: boolean | undefined;
|
|
5305
5351
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -5362,6 +5408,8 @@ export interface Routes {
|
|
|
5362
5408
|
schedule_starts_at: string;
|
|
5363
5409
|
schedule_ends_at: string;
|
|
5364
5410
|
created_at: string;
|
|
5411
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5412
|
+
errors?: any;
|
|
5365
5413
|
automatic_heating_enabled?: boolean | undefined;
|
|
5366
5414
|
automatic_cooling_enabled?: boolean | undefined;
|
|
5367
5415
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -5418,6 +5466,8 @@ export interface Routes {
|
|
|
5418
5466
|
schedule_starts_at: string;
|
|
5419
5467
|
schedule_ends_at: string;
|
|
5420
5468
|
created_at: string;
|
|
5469
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5470
|
+
errors?: any;
|
|
5421
5471
|
automatic_heating_enabled?: boolean | undefined;
|
|
5422
5472
|
automatic_cooling_enabled?: boolean | undefined;
|
|
5423
5473
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -5789,6 +5839,8 @@ export interface Routes {
|
|
|
5789
5839
|
schedule_starts_at: string;
|
|
5790
5840
|
schedule_ends_at: string;
|
|
5791
5841
|
created_at: string;
|
|
5842
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5843
|
+
errors?: any;
|
|
5792
5844
|
automatic_heating_enabled?: boolean | undefined;
|
|
5793
5845
|
automatic_cooling_enabled?: boolean | undefined;
|
|
5794
5846
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -5851,6 +5903,8 @@ export interface Routes {
|
|
|
5851
5903
|
schedule_starts_at: string;
|
|
5852
5904
|
schedule_ends_at: string;
|
|
5853
5905
|
created_at: string;
|
|
5906
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5907
|
+
errors?: any;
|
|
5854
5908
|
automatic_heating_enabled?: boolean | undefined;
|
|
5855
5909
|
automatic_cooling_enabled?: boolean | undefined;
|
|
5856
5910
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -5907,6 +5961,8 @@ export interface Routes {
|
|
|
5907
5961
|
schedule_starts_at: string;
|
|
5908
5962
|
schedule_ends_at: string;
|
|
5909
5963
|
created_at: string;
|
|
5964
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
5965
|
+
errors?: any;
|
|
5910
5966
|
automatic_heating_enabled?: boolean | undefined;
|
|
5911
5967
|
automatic_cooling_enabled?: boolean | undefined;
|
|
5912
5968
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -6375,6 +6431,8 @@ export interface Routes {
|
|
|
6375
6431
|
schedule_starts_at: string;
|
|
6376
6432
|
schedule_ends_at: string;
|
|
6377
6433
|
created_at: string;
|
|
6434
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
6435
|
+
errors?: any;
|
|
6378
6436
|
automatic_heating_enabled?: boolean | undefined;
|
|
6379
6437
|
automatic_cooling_enabled?: boolean | undefined;
|
|
6380
6438
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -6437,6 +6495,8 @@ export interface Routes {
|
|
|
6437
6495
|
schedule_starts_at: string;
|
|
6438
6496
|
schedule_ends_at: string;
|
|
6439
6497
|
created_at: string;
|
|
6498
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
6499
|
+
errors?: any;
|
|
6440
6500
|
automatic_heating_enabled?: boolean | undefined;
|
|
6441
6501
|
automatic_cooling_enabled?: boolean | undefined;
|
|
6442
6502
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -6493,6 +6553,8 @@ export interface Routes {
|
|
|
6493
6553
|
schedule_starts_at: string;
|
|
6494
6554
|
schedule_ends_at: string;
|
|
6495
6555
|
created_at: string;
|
|
6556
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
6557
|
+
errors?: any;
|
|
6496
6558
|
automatic_heating_enabled?: boolean | undefined;
|
|
6497
6559
|
automatic_cooling_enabled?: boolean | undefined;
|
|
6498
6560
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -149,6 +149,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
149
149
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
150
150
|
schedule_starts_at: z.ZodString;
|
|
151
151
|
schedule_ends_at: z.ZodString;
|
|
152
|
+
errors: z.ZodAny;
|
|
152
153
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
153
154
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
154
155
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -165,6 +166,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
165
166
|
schedule_starts_at: string;
|
|
166
167
|
schedule_ends_at: string;
|
|
167
168
|
name?: string | undefined;
|
|
169
|
+
errors?: any;
|
|
168
170
|
automatic_heating_enabled?: boolean | undefined;
|
|
169
171
|
automatic_cooling_enabled?: boolean | undefined;
|
|
170
172
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -181,6 +183,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
181
183
|
schedule_starts_at: string;
|
|
182
184
|
schedule_ends_at: string;
|
|
183
185
|
name?: string | undefined;
|
|
186
|
+
errors?: any;
|
|
184
187
|
automatic_heating_enabled?: boolean | undefined;
|
|
185
188
|
automatic_cooling_enabled?: boolean | undefined;
|
|
186
189
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -243,6 +246,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
243
246
|
schedule_starts_at: string;
|
|
244
247
|
schedule_ends_at: string;
|
|
245
248
|
name?: string | undefined;
|
|
249
|
+
errors?: any;
|
|
246
250
|
automatic_heating_enabled?: boolean | undefined;
|
|
247
251
|
automatic_cooling_enabled?: boolean | undefined;
|
|
248
252
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -305,6 +309,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
305
309
|
schedule_starts_at: string;
|
|
306
310
|
schedule_ends_at: string;
|
|
307
311
|
name?: string | undefined;
|
|
312
|
+
errors?: any;
|
|
308
313
|
automatic_heating_enabled?: boolean | undefined;
|
|
309
314
|
automatic_cooling_enabled?: boolean | undefined;
|
|
310
315
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -402,6 +407,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
402
407
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
403
408
|
schedule_starts_at: z.ZodString;
|
|
404
409
|
schedule_ends_at: z.ZodString;
|
|
410
|
+
errors: z.ZodAny;
|
|
405
411
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
406
412
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
407
413
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -418,6 +424,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
418
424
|
schedule_starts_at: string;
|
|
419
425
|
schedule_ends_at: string;
|
|
420
426
|
name?: string | undefined;
|
|
427
|
+
errors?: any;
|
|
421
428
|
automatic_heating_enabled?: boolean | undefined;
|
|
422
429
|
automatic_cooling_enabled?: boolean | undefined;
|
|
423
430
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -434,6 +441,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
434
441
|
schedule_starts_at: string;
|
|
435
442
|
schedule_ends_at: string;
|
|
436
443
|
name?: string | undefined;
|
|
444
|
+
errors?: any;
|
|
437
445
|
automatic_heating_enabled?: boolean | undefined;
|
|
438
446
|
automatic_cooling_enabled?: boolean | undefined;
|
|
439
447
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -490,6 +498,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
490
498
|
schedule_starts_at: string;
|
|
491
499
|
schedule_ends_at: string;
|
|
492
500
|
name?: string | undefined;
|
|
501
|
+
errors?: any;
|
|
493
502
|
automatic_heating_enabled?: boolean | undefined;
|
|
494
503
|
automatic_cooling_enabled?: boolean | undefined;
|
|
495
504
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -546,6 +555,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
546
555
|
schedule_starts_at: string;
|
|
547
556
|
schedule_ends_at: string;
|
|
548
557
|
name?: string | undefined;
|
|
558
|
+
errors?: any;
|
|
549
559
|
automatic_heating_enabled?: boolean | undefined;
|
|
550
560
|
automatic_cooling_enabled?: boolean | undefined;
|
|
551
561
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -638,6 +648,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
638
648
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
639
649
|
schedule_starts_at: z.ZodString;
|
|
640
650
|
schedule_ends_at: z.ZodString;
|
|
651
|
+
errors: z.ZodAny;
|
|
641
652
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
642
653
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
643
654
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -654,6 +665,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
654
665
|
schedule_starts_at: string;
|
|
655
666
|
schedule_ends_at: string;
|
|
656
667
|
name?: string | undefined;
|
|
668
|
+
errors?: any;
|
|
657
669
|
automatic_heating_enabled?: boolean | undefined;
|
|
658
670
|
automatic_cooling_enabled?: boolean | undefined;
|
|
659
671
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -670,6 +682,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
670
682
|
schedule_starts_at: string;
|
|
671
683
|
schedule_ends_at: string;
|
|
672
684
|
name?: string | undefined;
|
|
685
|
+
errors?: any;
|
|
673
686
|
automatic_heating_enabled?: boolean | undefined;
|
|
674
687
|
automatic_cooling_enabled?: boolean | undefined;
|
|
675
688
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -726,6 +739,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
726
739
|
schedule_starts_at: string;
|
|
727
740
|
schedule_ends_at: string;
|
|
728
741
|
name?: string | undefined;
|
|
742
|
+
errors?: any;
|
|
729
743
|
automatic_heating_enabled?: boolean | undefined;
|
|
730
744
|
automatic_cooling_enabled?: boolean | undefined;
|
|
731
745
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -782,6 +796,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
782
796
|
schedule_starts_at: string;
|
|
783
797
|
schedule_ends_at: string;
|
|
784
798
|
name?: string | undefined;
|
|
799
|
+
errors?: any;
|
|
785
800
|
automatic_heating_enabled?: boolean | undefined;
|
|
786
801
|
automatic_cooling_enabled?: boolean | undefined;
|
|
787
802
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|