@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
package/dist/connect.d.cts
CHANGED
|
@@ -493,6 +493,10 @@ declare const _default: {
|
|
|
493
493
|
device_id: {
|
|
494
494
|
type: string;
|
|
495
495
|
};
|
|
496
|
+
errors: {
|
|
497
|
+
description: string;
|
|
498
|
+
nullable: boolean;
|
|
499
|
+
};
|
|
496
500
|
heating_set_point_celsius: {
|
|
497
501
|
type: string;
|
|
498
502
|
};
|
|
@@ -1505,6 +1509,10 @@ declare const _default: {
|
|
|
1505
1509
|
device_id: {
|
|
1506
1510
|
type: string;
|
|
1507
1511
|
};
|
|
1512
|
+
errors: {
|
|
1513
|
+
description: string;
|
|
1514
|
+
nullable: boolean;
|
|
1515
|
+
};
|
|
1508
1516
|
heating_set_point_celsius: {
|
|
1509
1517
|
type: string;
|
|
1510
1518
|
};
|
|
@@ -1707,6 +1715,10 @@ declare const _default: {
|
|
|
1707
1715
|
device_id: {
|
|
1708
1716
|
type: string;
|
|
1709
1717
|
};
|
|
1718
|
+
errors: {
|
|
1719
|
+
description: string;
|
|
1720
|
+
nullable: boolean;
|
|
1721
|
+
};
|
|
1710
1722
|
heating_set_point_celsius: {
|
|
1711
1723
|
type: string;
|
|
1712
1724
|
};
|
|
@@ -1897,6 +1909,10 @@ declare const _default: {
|
|
|
1897
1909
|
device_id: {
|
|
1898
1910
|
type: string;
|
|
1899
1911
|
};
|
|
1912
|
+
errors: {
|
|
1913
|
+
description: string;
|
|
1914
|
+
nullable: boolean;
|
|
1915
|
+
};
|
|
1900
1916
|
heating_set_point_celsius: {
|
|
1901
1917
|
type: string;
|
|
1902
1918
|
};
|
|
@@ -2574,20 +2590,25 @@ declare const _default: {
|
|
|
2574
2590
|
};
|
|
2575
2591
|
};
|
|
2576
2592
|
security: ({
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2593
|
+
client_session: never[];
|
|
2594
|
+
pat_with_workspace?: never;
|
|
2595
|
+
console_session?: never;
|
|
2596
|
+
api_key?: never;
|
|
2581
2597
|
} | {
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2598
|
+
pat_with_workspace: never[];
|
|
2599
|
+
client_session?: never;
|
|
2600
|
+
console_session?: never;
|
|
2601
|
+
api_key?: never;
|
|
2586
2602
|
} | {
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2603
|
+
console_session: never[];
|
|
2604
|
+
client_session?: never;
|
|
2605
|
+
pat_with_workspace?: never;
|
|
2606
|
+
api_key?: never;
|
|
2607
|
+
} | {
|
|
2608
|
+
api_key: never[];
|
|
2609
|
+
client_session?: never;
|
|
2610
|
+
pat_with_workspace?: never;
|
|
2611
|
+
console_session?: never;
|
|
2591
2612
|
})[];
|
|
2592
2613
|
summary: string;
|
|
2593
2614
|
tags: string[];
|
|
@@ -2698,20 +2719,25 @@ declare const _default: {
|
|
|
2698
2719
|
};
|
|
2699
2720
|
};
|
|
2700
2721
|
security: ({
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2722
|
+
client_session: never[];
|
|
2723
|
+
pat_with_workspace?: never;
|
|
2724
|
+
console_session?: never;
|
|
2725
|
+
api_key?: never;
|
|
2705
2726
|
} | {
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2727
|
+
pat_with_workspace: never[];
|
|
2728
|
+
client_session?: never;
|
|
2729
|
+
console_session?: never;
|
|
2730
|
+
api_key?: never;
|
|
2710
2731
|
} | {
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2732
|
+
console_session: never[];
|
|
2733
|
+
client_session?: never;
|
|
2734
|
+
pat_with_workspace?: never;
|
|
2735
|
+
api_key?: never;
|
|
2736
|
+
} | {
|
|
2737
|
+
api_key: never[];
|
|
2738
|
+
client_session?: never;
|
|
2739
|
+
pat_with_workspace?: never;
|
|
2740
|
+
console_session?: never;
|
|
2715
2741
|
})[];
|
|
2716
2742
|
summary: string;
|
|
2717
2743
|
tags: string[];
|
|
@@ -2820,20 +2846,25 @@ declare const _default: {
|
|
|
2820
2846
|
};
|
|
2821
2847
|
};
|
|
2822
2848
|
security: ({
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2849
|
+
client_session: never[];
|
|
2850
|
+
pat_with_workspace?: never;
|
|
2851
|
+
console_session?: never;
|
|
2852
|
+
api_key?: never;
|
|
2827
2853
|
} | {
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2854
|
+
pat_with_workspace: never[];
|
|
2855
|
+
client_session?: never;
|
|
2856
|
+
console_session?: never;
|
|
2857
|
+
api_key?: never;
|
|
2832
2858
|
} | {
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2859
|
+
console_session: never[];
|
|
2860
|
+
client_session?: never;
|
|
2861
|
+
pat_with_workspace?: never;
|
|
2862
|
+
api_key?: never;
|
|
2863
|
+
} | {
|
|
2864
|
+
api_key: never[];
|
|
2865
|
+
client_session?: never;
|
|
2866
|
+
pat_with_workspace?: never;
|
|
2867
|
+
console_session?: never;
|
|
2837
2868
|
})[];
|
|
2838
2869
|
summary: string;
|
|
2839
2870
|
tags: string[];
|
|
@@ -2895,20 +2926,25 @@ declare const _default: {
|
|
|
2895
2926
|
};
|
|
2896
2927
|
};
|
|
2897
2928
|
security: ({
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2929
|
+
client_session: never[];
|
|
2930
|
+
pat_with_workspace?: never;
|
|
2931
|
+
console_session?: never;
|
|
2932
|
+
api_key?: never;
|
|
2902
2933
|
} | {
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2934
|
+
pat_with_workspace: never[];
|
|
2935
|
+
client_session?: never;
|
|
2936
|
+
console_session?: never;
|
|
2937
|
+
api_key?: never;
|
|
2907
2938
|
} | {
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2939
|
+
console_session: never[];
|
|
2940
|
+
client_session?: never;
|
|
2941
|
+
pat_with_workspace?: never;
|
|
2942
|
+
api_key?: never;
|
|
2943
|
+
} | {
|
|
2944
|
+
api_key: never[];
|
|
2945
|
+
client_session?: never;
|
|
2946
|
+
pat_with_workspace?: never;
|
|
2947
|
+
console_session?: never;
|
|
2912
2948
|
})[];
|
|
2913
2949
|
summary: string;
|
|
2914
2950
|
tags: string[];
|
|
@@ -2964,20 +3000,25 @@ declare const _default: {
|
|
|
2964
3000
|
};
|
|
2965
3001
|
};
|
|
2966
3002
|
security: ({
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
3003
|
+
client_session: never[];
|
|
3004
|
+
pat_with_workspace?: never;
|
|
3005
|
+
console_session?: never;
|
|
3006
|
+
api_key?: never;
|
|
2971
3007
|
} | {
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
3008
|
+
pat_with_workspace: never[];
|
|
3009
|
+
client_session?: never;
|
|
3010
|
+
console_session?: never;
|
|
3011
|
+
api_key?: never;
|
|
2976
3012
|
} | {
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
3013
|
+
console_session: never[];
|
|
3014
|
+
client_session?: never;
|
|
3015
|
+
pat_with_workspace?: never;
|
|
3016
|
+
api_key?: never;
|
|
3017
|
+
} | {
|
|
3018
|
+
api_key: never[];
|
|
3019
|
+
client_session?: never;
|
|
3020
|
+
pat_with_workspace?: never;
|
|
3021
|
+
console_session?: never;
|
|
2981
3022
|
})[];
|
|
2982
3023
|
summary: string;
|
|
2983
3024
|
tags: string[];
|
|
@@ -3125,20 +3166,25 @@ declare const _default: {
|
|
|
3125
3166
|
};
|
|
3126
3167
|
};
|
|
3127
3168
|
security: ({
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3169
|
+
client_session: never[];
|
|
3170
|
+
pat_with_workspace?: never;
|
|
3171
|
+
console_session?: never;
|
|
3172
|
+
api_key?: never;
|
|
3132
3173
|
} | {
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3174
|
+
pat_with_workspace: never[];
|
|
3175
|
+
client_session?: never;
|
|
3176
|
+
console_session?: never;
|
|
3177
|
+
api_key?: never;
|
|
3137
3178
|
} | {
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3179
|
+
console_session: never[];
|
|
3180
|
+
client_session?: never;
|
|
3181
|
+
pat_with_workspace?: never;
|
|
3182
|
+
api_key?: never;
|
|
3183
|
+
} | {
|
|
3184
|
+
api_key: never[];
|
|
3185
|
+
client_session?: never;
|
|
3186
|
+
pat_with_workspace?: never;
|
|
3187
|
+
console_session?: never;
|
|
3142
3188
|
})[];
|
|
3143
3189
|
summary: string;
|
|
3144
3190
|
tags: string[];
|
|
@@ -3194,20 +3240,25 @@ declare const _default: {
|
|
|
3194
3240
|
};
|
|
3195
3241
|
};
|
|
3196
3242
|
security: ({
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3243
|
+
client_session: never[];
|
|
3244
|
+
pat_with_workspace?: never;
|
|
3245
|
+
console_session?: never;
|
|
3246
|
+
api_key?: never;
|
|
3201
3247
|
} | {
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3248
|
+
pat_with_workspace: never[];
|
|
3249
|
+
client_session?: never;
|
|
3250
|
+
console_session?: never;
|
|
3251
|
+
api_key?: never;
|
|
3206
3252
|
} | {
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3253
|
+
console_session: never[];
|
|
3254
|
+
client_session?: never;
|
|
3255
|
+
pat_with_workspace?: never;
|
|
3256
|
+
api_key?: never;
|
|
3257
|
+
} | {
|
|
3258
|
+
api_key: never[];
|
|
3259
|
+
client_session?: never;
|
|
3260
|
+
pat_with_workspace?: never;
|
|
3261
|
+
console_session?: never;
|
|
3211
3262
|
})[];
|
|
3212
3263
|
summary: string;
|
|
3213
3264
|
tags: string[];
|
|
@@ -3272,20 +3323,25 @@ declare const _default: {
|
|
|
3272
3323
|
};
|
|
3273
3324
|
};
|
|
3274
3325
|
security: ({
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3326
|
+
client_session: never[];
|
|
3327
|
+
pat_with_workspace?: never;
|
|
3328
|
+
console_session?: never;
|
|
3329
|
+
api_key?: never;
|
|
3279
3330
|
} | {
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3331
|
+
pat_with_workspace: never[];
|
|
3332
|
+
client_session?: never;
|
|
3333
|
+
console_session?: never;
|
|
3334
|
+
api_key?: never;
|
|
3284
3335
|
} | {
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3336
|
+
console_session: never[];
|
|
3337
|
+
client_session?: never;
|
|
3338
|
+
pat_with_workspace?: never;
|
|
3339
|
+
api_key?: never;
|
|
3340
|
+
} | {
|
|
3341
|
+
api_key: never[];
|
|
3342
|
+
client_session?: never;
|
|
3343
|
+
pat_with_workspace?: never;
|
|
3344
|
+
console_session?: never;
|
|
3289
3345
|
})[];
|
|
3290
3346
|
summary: string;
|
|
3291
3347
|
tags: string[];
|
|
@@ -3927,20 +3983,25 @@ declare const _default: {
|
|
|
3927
3983
|
};
|
|
3928
3984
|
};
|
|
3929
3985
|
security: ({
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
|
|
3933
|
-
|
|
3986
|
+
client_session: never[];
|
|
3987
|
+
pat_with_workspace?: never;
|
|
3988
|
+
console_session?: never;
|
|
3989
|
+
api_key?: never;
|
|
3934
3990
|
} | {
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
3991
|
+
pat_with_workspace: never[];
|
|
3992
|
+
client_session?: never;
|
|
3993
|
+
console_session?: never;
|
|
3994
|
+
api_key?: never;
|
|
3939
3995
|
} | {
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
|
|
3943
|
-
|
|
3996
|
+
console_session: never[];
|
|
3997
|
+
client_session?: never;
|
|
3998
|
+
pat_with_workspace?: never;
|
|
3999
|
+
api_key?: never;
|
|
4000
|
+
} | {
|
|
4001
|
+
api_key: never[];
|
|
4002
|
+
client_session?: never;
|
|
4003
|
+
pat_with_workspace?: never;
|
|
4004
|
+
console_session?: never;
|
|
3944
4005
|
})[];
|
|
3945
4006
|
summary: string;
|
|
3946
4007
|
tags: string[];
|
|
@@ -4051,20 +4112,25 @@ declare const _default: {
|
|
|
4051
4112
|
};
|
|
4052
4113
|
};
|
|
4053
4114
|
security: ({
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
|
|
4115
|
+
client_session: never[];
|
|
4116
|
+
pat_with_workspace?: never;
|
|
4117
|
+
console_session?: never;
|
|
4118
|
+
api_key?: never;
|
|
4058
4119
|
} | {
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4120
|
+
pat_with_workspace: never[];
|
|
4121
|
+
client_session?: never;
|
|
4122
|
+
console_session?: never;
|
|
4123
|
+
api_key?: never;
|
|
4063
4124
|
} | {
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4125
|
+
console_session: never[];
|
|
4126
|
+
client_session?: never;
|
|
4127
|
+
pat_with_workspace?: never;
|
|
4128
|
+
api_key?: never;
|
|
4129
|
+
} | {
|
|
4130
|
+
api_key: never[];
|
|
4131
|
+
client_session?: never;
|
|
4132
|
+
pat_with_workspace?: never;
|
|
4133
|
+
console_session?: never;
|
|
4068
4134
|
})[];
|
|
4069
4135
|
summary: string;
|
|
4070
4136
|
tags: string[];
|
|
@@ -4177,20 +4243,25 @@ declare const _default: {
|
|
|
4177
4243
|
};
|
|
4178
4244
|
};
|
|
4179
4245
|
security: ({
|
|
4180
|
-
|
|
4181
|
-
|
|
4182
|
-
|
|
4183
|
-
|
|
4246
|
+
client_session: never[];
|
|
4247
|
+
pat_with_workspace?: never;
|
|
4248
|
+
console_session?: never;
|
|
4249
|
+
api_key?: never;
|
|
4184
4250
|
} | {
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4251
|
+
pat_with_workspace: never[];
|
|
4252
|
+
client_session?: never;
|
|
4253
|
+
console_session?: never;
|
|
4254
|
+
api_key?: never;
|
|
4189
4255
|
} | {
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
|
|
4256
|
+
console_session: never[];
|
|
4257
|
+
client_session?: never;
|
|
4258
|
+
pat_with_workspace?: never;
|
|
4259
|
+
api_key?: never;
|
|
4260
|
+
} | {
|
|
4261
|
+
api_key: never[];
|
|
4262
|
+
client_session?: never;
|
|
4263
|
+
pat_with_workspace?: never;
|
|
4264
|
+
console_session?: never;
|
|
4194
4265
|
})[];
|
|
4195
4266
|
summary: string;
|
|
4196
4267
|
tags: string[];
|
|
@@ -15744,6 +15815,8 @@ interface Routes {
|
|
|
15744
15815
|
schedule_starts_at: string;
|
|
15745
15816
|
schedule_ends_at: string;
|
|
15746
15817
|
created_at: string;
|
|
15818
|
+
/** 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. */
|
|
15819
|
+
errors?: any;
|
|
15747
15820
|
automatic_heating_enabled?: boolean | undefined;
|
|
15748
15821
|
automatic_cooling_enabled?: boolean | undefined;
|
|
15749
15822
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -15806,6 +15879,8 @@ interface Routes {
|
|
|
15806
15879
|
schedule_starts_at: string;
|
|
15807
15880
|
schedule_ends_at: string;
|
|
15808
15881
|
created_at: string;
|
|
15882
|
+
/** 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. */
|
|
15883
|
+
errors?: any;
|
|
15809
15884
|
automatic_heating_enabled?: boolean | undefined;
|
|
15810
15885
|
automatic_cooling_enabled?: boolean | undefined;
|
|
15811
15886
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -15862,6 +15937,8 @@ interface Routes {
|
|
|
15862
15937
|
schedule_starts_at: string;
|
|
15863
15938
|
schedule_ends_at: string;
|
|
15864
15939
|
created_at: string;
|
|
15940
|
+
/** 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. */
|
|
15941
|
+
errors?: any;
|
|
15865
15942
|
automatic_heating_enabled?: boolean | undefined;
|
|
15866
15943
|
automatic_cooling_enabled?: boolean | undefined;
|
|
15867
15944
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16203,6 +16280,8 @@ interface Routes {
|
|
|
16203
16280
|
schedule_starts_at: string;
|
|
16204
16281
|
schedule_ends_at: string;
|
|
16205
16282
|
created_at: string;
|
|
16283
|
+
/** 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. */
|
|
16284
|
+
errors?: any;
|
|
16206
16285
|
automatic_heating_enabled?: boolean | undefined;
|
|
16207
16286
|
automatic_cooling_enabled?: boolean | undefined;
|
|
16208
16287
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16265,6 +16344,8 @@ interface Routes {
|
|
|
16265
16344
|
schedule_starts_at: string;
|
|
16266
16345
|
schedule_ends_at: string;
|
|
16267
16346
|
created_at: string;
|
|
16347
|
+
/** 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. */
|
|
16348
|
+
errors?: any;
|
|
16268
16349
|
automatic_heating_enabled?: boolean | undefined;
|
|
16269
16350
|
automatic_cooling_enabled?: boolean | undefined;
|
|
16270
16351
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16321,6 +16402,8 @@ interface Routes {
|
|
|
16321
16402
|
schedule_starts_at: string;
|
|
16322
16403
|
schedule_ends_at: string;
|
|
16323
16404
|
created_at: string;
|
|
16405
|
+
/** 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. */
|
|
16406
|
+
errors?: any;
|
|
16324
16407
|
automatic_heating_enabled?: boolean | undefined;
|
|
16325
16408
|
automatic_cooling_enabled?: boolean | undefined;
|
|
16326
16409
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16941,6 +17024,8 @@ interface Routes {
|
|
|
16941
17024
|
schedule_starts_at: string;
|
|
16942
17025
|
schedule_ends_at: string;
|
|
16943
17026
|
created_at: string;
|
|
17027
|
+
/** 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. */
|
|
17028
|
+
errors?: any;
|
|
16944
17029
|
automatic_heating_enabled?: boolean | undefined;
|
|
16945
17030
|
automatic_cooling_enabled?: boolean | undefined;
|
|
16946
17031
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17003,6 +17088,8 @@ interface Routes {
|
|
|
17003
17088
|
schedule_starts_at: string;
|
|
17004
17089
|
schedule_ends_at: string;
|
|
17005
17090
|
created_at: string;
|
|
17091
|
+
/** 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. */
|
|
17092
|
+
errors?: any;
|
|
17006
17093
|
automatic_heating_enabled?: boolean | undefined;
|
|
17007
17094
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17008
17095
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17059,6 +17146,8 @@ interface Routes {
|
|
|
17059
17146
|
schedule_starts_at: string;
|
|
17060
17147
|
schedule_ends_at: string;
|
|
17061
17148
|
created_at: string;
|
|
17149
|
+
/** 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. */
|
|
17150
|
+
errors?: any;
|
|
17062
17151
|
automatic_heating_enabled?: boolean | undefined;
|
|
17063
17152
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17064
17153
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17378,6 +17467,8 @@ interface Routes {
|
|
|
17378
17467
|
schedule_starts_at: string;
|
|
17379
17468
|
schedule_ends_at: string;
|
|
17380
17469
|
created_at: string;
|
|
17470
|
+
/** 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. */
|
|
17471
|
+
errors?: any;
|
|
17381
17472
|
automatic_heating_enabled?: boolean | undefined;
|
|
17382
17473
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17383
17474
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17440,6 +17531,8 @@ interface Routes {
|
|
|
17440
17531
|
schedule_starts_at: string;
|
|
17441
17532
|
schedule_ends_at: string;
|
|
17442
17533
|
created_at: string;
|
|
17534
|
+
/** 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. */
|
|
17535
|
+
errors?: any;
|
|
17443
17536
|
automatic_heating_enabled?: boolean | undefined;
|
|
17444
17537
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17445
17538
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17496,6 +17589,8 @@ interface Routes {
|
|
|
17496
17589
|
schedule_starts_at: string;
|
|
17497
17590
|
schedule_ends_at: string;
|
|
17498
17591
|
created_at: string;
|
|
17592
|
+
/** 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. */
|
|
17593
|
+
errors?: any;
|
|
17499
17594
|
automatic_heating_enabled?: boolean | undefined;
|
|
17500
17595
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17501
17596
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17837,6 +17932,8 @@ interface Routes {
|
|
|
17837
17932
|
schedule_starts_at: string;
|
|
17838
17933
|
schedule_ends_at: string;
|
|
17839
17934
|
created_at: string;
|
|
17935
|
+
/** 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. */
|
|
17936
|
+
errors?: any;
|
|
17840
17937
|
automatic_heating_enabled?: boolean | undefined;
|
|
17841
17938
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17842
17939
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17899,6 +17996,8 @@ interface Routes {
|
|
|
17899
17996
|
schedule_starts_at: string;
|
|
17900
17997
|
schedule_ends_at: string;
|
|
17901
17998
|
created_at: string;
|
|
17999
|
+
/** 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. */
|
|
18000
|
+
errors?: any;
|
|
17902
18001
|
automatic_heating_enabled?: boolean | undefined;
|
|
17903
18002
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17904
18003
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17955,6 +18054,8 @@ interface Routes {
|
|
|
17955
18054
|
schedule_starts_at: string;
|
|
17956
18055
|
schedule_ends_at: string;
|
|
17957
18056
|
created_at: string;
|
|
18057
|
+
/** 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. */
|
|
18058
|
+
errors?: any;
|
|
17958
18059
|
automatic_heating_enabled?: boolean | undefined;
|
|
17959
18060
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17960
18061
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18274,6 +18375,8 @@ interface Routes {
|
|
|
18274
18375
|
schedule_starts_at: string;
|
|
18275
18376
|
schedule_ends_at: string;
|
|
18276
18377
|
created_at: string;
|
|
18378
|
+
/** 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. */
|
|
18379
|
+
errors?: any;
|
|
18277
18380
|
automatic_heating_enabled?: boolean | undefined;
|
|
18278
18381
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18279
18382
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18336,6 +18439,8 @@ interface Routes {
|
|
|
18336
18439
|
schedule_starts_at: string;
|
|
18337
18440
|
schedule_ends_at: string;
|
|
18338
18441
|
created_at: string;
|
|
18442
|
+
/** 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. */
|
|
18443
|
+
errors?: any;
|
|
18339
18444
|
automatic_heating_enabled?: boolean | undefined;
|
|
18340
18445
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18341
18446
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18392,6 +18497,8 @@ interface Routes {
|
|
|
18392
18497
|
schedule_starts_at: string;
|
|
18393
18498
|
schedule_ends_at: string;
|
|
18394
18499
|
created_at: string;
|
|
18500
|
+
/** 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. */
|
|
18501
|
+
errors?: any;
|
|
18395
18502
|
automatic_heating_enabled?: boolean | undefined;
|
|
18396
18503
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18397
18504
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18714,6 +18821,8 @@ interface Routes {
|
|
|
18714
18821
|
schedule_starts_at: string;
|
|
18715
18822
|
schedule_ends_at: string;
|
|
18716
18823
|
created_at: string;
|
|
18824
|
+
/** 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. */
|
|
18825
|
+
errors?: any;
|
|
18717
18826
|
automatic_heating_enabled?: boolean | undefined;
|
|
18718
18827
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18719
18828
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18755,6 +18864,8 @@ interface Routes {
|
|
|
18755
18864
|
schedule_starts_at: string;
|
|
18756
18865
|
schedule_ends_at: string;
|
|
18757
18866
|
created_at: string;
|
|
18867
|
+
/** 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. */
|
|
18868
|
+
errors?: any;
|
|
18758
18869
|
automatic_heating_enabled?: boolean | undefined;
|
|
18759
18870
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18760
18871
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18785,6 +18896,8 @@ interface Routes {
|
|
|
18785
18896
|
schedule_starts_at: string;
|
|
18786
18897
|
schedule_ends_at: string;
|
|
18787
18898
|
created_at: string;
|
|
18899
|
+
/** 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. */
|
|
18900
|
+
errors?: any;
|
|
18788
18901
|
automatic_heating_enabled?: boolean | undefined;
|
|
18789
18902
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18790
18903
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18826,6 +18939,8 @@ interface Routes {
|
|
|
18826
18939
|
schedule_starts_at: string;
|
|
18827
18940
|
schedule_ends_at: string;
|
|
18828
18941
|
created_at: string;
|
|
18942
|
+
/** 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. */
|
|
18943
|
+
errors?: any;
|
|
18829
18944
|
automatic_heating_enabled?: boolean | undefined;
|
|
18830
18945
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18831
18946
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19141,6 +19256,8 @@ interface Routes {
|
|
|
19141
19256
|
schedule_starts_at: string;
|
|
19142
19257
|
schedule_ends_at: string;
|
|
19143
19258
|
created_at: string;
|
|
19259
|
+
/** 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. */
|
|
19260
|
+
errors?: any;
|
|
19144
19261
|
automatic_heating_enabled?: boolean | undefined;
|
|
19145
19262
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19146
19263
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19203,6 +19320,8 @@ interface Routes {
|
|
|
19203
19320
|
schedule_starts_at: string;
|
|
19204
19321
|
schedule_ends_at: string;
|
|
19205
19322
|
created_at: string;
|
|
19323
|
+
/** 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. */
|
|
19324
|
+
errors?: any;
|
|
19206
19325
|
automatic_heating_enabled?: boolean | undefined;
|
|
19207
19326
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19208
19327
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19259,6 +19378,8 @@ interface Routes {
|
|
|
19259
19378
|
schedule_starts_at: string;
|
|
19260
19379
|
schedule_ends_at: string;
|
|
19261
19380
|
created_at: string;
|
|
19381
|
+
/** 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. */
|
|
19382
|
+
errors?: any;
|
|
19262
19383
|
automatic_heating_enabled?: boolean | undefined;
|
|
19263
19384
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19264
19385
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19630,6 +19751,8 @@ interface Routes {
|
|
|
19630
19751
|
schedule_starts_at: string;
|
|
19631
19752
|
schedule_ends_at: string;
|
|
19632
19753
|
created_at: string;
|
|
19754
|
+
/** 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. */
|
|
19755
|
+
errors?: any;
|
|
19633
19756
|
automatic_heating_enabled?: boolean | undefined;
|
|
19634
19757
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19635
19758
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19692,6 +19815,8 @@ interface Routes {
|
|
|
19692
19815
|
schedule_starts_at: string;
|
|
19693
19816
|
schedule_ends_at: string;
|
|
19694
19817
|
created_at: string;
|
|
19818
|
+
/** 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. */
|
|
19819
|
+
errors?: any;
|
|
19695
19820
|
automatic_heating_enabled?: boolean | undefined;
|
|
19696
19821
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19697
19822
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19748,6 +19873,8 @@ interface Routes {
|
|
|
19748
19873
|
schedule_starts_at: string;
|
|
19749
19874
|
schedule_ends_at: string;
|
|
19750
19875
|
created_at: string;
|
|
19876
|
+
/** 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. */
|
|
19877
|
+
errors?: any;
|
|
19751
19878
|
automatic_heating_enabled?: boolean | undefined;
|
|
19752
19879
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19753
19880
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -20216,6 +20343,8 @@ interface Routes {
|
|
|
20216
20343
|
schedule_starts_at: string;
|
|
20217
20344
|
schedule_ends_at: string;
|
|
20218
20345
|
created_at: string;
|
|
20346
|
+
/** 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. */
|
|
20347
|
+
errors?: any;
|
|
20219
20348
|
automatic_heating_enabled?: boolean | undefined;
|
|
20220
20349
|
automatic_cooling_enabled?: boolean | undefined;
|
|
20221
20350
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -20278,6 +20407,8 @@ interface Routes {
|
|
|
20278
20407
|
schedule_starts_at: string;
|
|
20279
20408
|
schedule_ends_at: string;
|
|
20280
20409
|
created_at: string;
|
|
20410
|
+
/** 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. */
|
|
20411
|
+
errors?: any;
|
|
20281
20412
|
automatic_heating_enabled?: boolean | undefined;
|
|
20282
20413
|
automatic_cooling_enabled?: boolean | undefined;
|
|
20283
20414
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -20334,6 +20465,8 @@ interface Routes {
|
|
|
20334
20465
|
schedule_starts_at: string;
|
|
20335
20466
|
schedule_ends_at: string;
|
|
20336
20467
|
created_at: string;
|
|
20468
|
+
/** 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. */
|
|
20469
|
+
errors?: any;
|
|
20337
20470
|
automatic_heating_enabled?: boolean | undefined;
|
|
20338
20471
|
automatic_cooling_enabled?: boolean | undefined;
|
|
20339
20472
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|