@seamapi/types 1.223.0 → 1.224.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +151 -572
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1156 -4189
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +10 -500
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +23 -1419
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +6 -23
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +31 -753
- package/lib/seam/connect/models/devices/phone.d.ts +10 -500
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +10 -500
- package/lib/seam/connect/openapi.d.ts +235 -640
- package/lib/seam/connect/openapi.js +137 -535
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +138 -1554
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +37 -67
- package/src/lib/seam/connect/openapi.ts +138 -538
- package/src/lib/seam/connect/route-types.ts +924 -3228
|
@@ -2920,599 +2920,199 @@ export default {
|
|
|
2920
2920
|
type: 'object',
|
|
2921
2921
|
},
|
|
2922
2922
|
{
|
|
2923
|
-
|
|
2924
|
-
{
|
|
2923
|
+
properties: {
|
|
2924
|
+
active_climate_setting_schedule: {
|
|
2925
2925
|
properties: {
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
climate_setting_schedule_id: {
|
|
2931
|
-
format: 'uuid',
|
|
2932
|
-
type: 'string',
|
|
2933
|
-
},
|
|
2934
|
-
cooling_set_point_celsius: {
|
|
2935
|
-
format: 'float',
|
|
2936
|
-
type: 'number',
|
|
2937
|
-
},
|
|
2938
|
-
cooling_set_point_fahrenheit: {
|
|
2939
|
-
format: 'float',
|
|
2940
|
-
type: 'number',
|
|
2941
|
-
},
|
|
2942
|
-
created_at: {
|
|
2943
|
-
format: 'date-time',
|
|
2944
|
-
type: 'string',
|
|
2945
|
-
},
|
|
2946
|
-
device_id: { format: 'uuid', type: 'string' },
|
|
2947
|
-
errors: {
|
|
2948
|
-
description:
|
|
2949
|
-
'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.',
|
|
2950
|
-
},
|
|
2951
|
-
heating_set_point_celsius: {
|
|
2952
|
-
format: 'float',
|
|
2953
|
-
type: 'number',
|
|
2954
|
-
},
|
|
2955
|
-
heating_set_point_fahrenheit: {
|
|
2956
|
-
format: 'float',
|
|
2957
|
-
type: 'number',
|
|
2958
|
-
},
|
|
2959
|
-
hvac_mode_setting: {
|
|
2960
|
-
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2961
|
-
type: 'string',
|
|
2962
|
-
},
|
|
2963
|
-
manual_override_allowed: { type: 'boolean' },
|
|
2964
|
-
name: { type: 'string' },
|
|
2965
|
-
schedule_ends_at: { type: 'string' },
|
|
2966
|
-
schedule_starts_at: { type: 'string' },
|
|
2967
|
-
schedule_type: {
|
|
2968
|
-
enum: ['time_bound'],
|
|
2969
|
-
type: 'string',
|
|
2970
|
-
},
|
|
2971
|
-
},
|
|
2972
|
-
required: [
|
|
2973
|
-
'climate_setting_schedule_id',
|
|
2974
|
-
'schedule_type',
|
|
2975
|
-
'device_id',
|
|
2976
|
-
'schedule_starts_at',
|
|
2977
|
-
'schedule_ends_at',
|
|
2978
|
-
'created_at',
|
|
2979
|
-
],
|
|
2980
|
-
type: 'object',
|
|
2981
|
-
},
|
|
2982
|
-
available_hvac_mode_settings: {
|
|
2983
|
-
items: {
|
|
2984
|
-
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2985
|
-
type: 'string',
|
|
2986
|
-
},
|
|
2987
|
-
type: 'array',
|
|
2988
|
-
},
|
|
2989
|
-
can_enable_automatic_cooling: { type: 'boolean' },
|
|
2990
|
-
can_enable_automatic_heating: { type: 'boolean' },
|
|
2991
|
-
current_climate_setting: {
|
|
2992
|
-
properties: {
|
|
2993
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
2994
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
2995
|
-
cooling_set_point_celsius: {
|
|
2996
|
-
format: 'float',
|
|
2997
|
-
type: 'number',
|
|
2998
|
-
},
|
|
2999
|
-
cooling_set_point_fahrenheit: {
|
|
3000
|
-
format: 'float',
|
|
3001
|
-
type: 'number',
|
|
3002
|
-
},
|
|
3003
|
-
heating_set_point_celsius: {
|
|
3004
|
-
format: 'float',
|
|
3005
|
-
type: 'number',
|
|
3006
|
-
},
|
|
3007
|
-
heating_set_point_fahrenheit: {
|
|
3008
|
-
format: 'float',
|
|
3009
|
-
type: 'number',
|
|
3010
|
-
},
|
|
3011
|
-
hvac_mode_setting: {
|
|
3012
|
-
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
3013
|
-
type: 'string',
|
|
3014
|
-
},
|
|
3015
|
-
manual_override_allowed: { type: 'boolean' },
|
|
3016
|
-
},
|
|
3017
|
-
required: [
|
|
3018
|
-
'automatic_heating_enabled',
|
|
3019
|
-
'automatic_cooling_enabled',
|
|
3020
|
-
'hvac_mode_setting',
|
|
3021
|
-
'manual_override_allowed',
|
|
3022
|
-
],
|
|
3023
|
-
type: 'object',
|
|
3024
|
-
},
|
|
3025
|
-
default_climate_setting: {
|
|
3026
|
-
properties: {
|
|
3027
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
3028
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
3029
|
-
cooling_set_point_celsius: {
|
|
3030
|
-
format: 'float',
|
|
3031
|
-
type: 'number',
|
|
3032
|
-
},
|
|
3033
|
-
cooling_set_point_fahrenheit: {
|
|
3034
|
-
format: 'float',
|
|
3035
|
-
type: 'number',
|
|
3036
|
-
},
|
|
3037
|
-
heating_set_point_celsius: {
|
|
3038
|
-
format: 'float',
|
|
3039
|
-
type: 'number',
|
|
3040
|
-
},
|
|
3041
|
-
heating_set_point_fahrenheit: {
|
|
3042
|
-
format: 'float',
|
|
3043
|
-
type: 'number',
|
|
3044
|
-
},
|
|
3045
|
-
hvac_mode_setting: {
|
|
3046
|
-
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
3047
|
-
type: 'string',
|
|
3048
|
-
},
|
|
3049
|
-
manual_override_allowed: { type: 'boolean' },
|
|
3050
|
-
},
|
|
3051
|
-
required: [
|
|
3052
|
-
'automatic_heating_enabled',
|
|
3053
|
-
'automatic_cooling_enabled',
|
|
3054
|
-
'hvac_mode_setting',
|
|
3055
|
-
'manual_override_allowed',
|
|
3056
|
-
],
|
|
3057
|
-
type: 'object',
|
|
3058
|
-
},
|
|
3059
|
-
fan_mode_setting: {
|
|
3060
|
-
enum: ['auto', 'on'],
|
|
2926
|
+
automatic_cooling_enabled: { type: 'boolean' },
|
|
2927
|
+
automatic_heating_enabled: { type: 'boolean' },
|
|
2928
|
+
climate_setting_schedule_id: {
|
|
2929
|
+
format: 'uuid',
|
|
3061
2930
|
type: 'string',
|
|
3062
2931
|
},
|
|
3063
|
-
|
|
3064
|
-
type: 'boolean',
|
|
3065
|
-
},
|
|
3066
|
-
is_cooling: { type: 'boolean' },
|
|
3067
|
-
is_cooling_available: {
|
|
3068
|
-
enum: [true],
|
|
3069
|
-
type: 'boolean',
|
|
3070
|
-
},
|
|
3071
|
-
is_fan_running: { type: 'boolean' },
|
|
3072
|
-
is_heating: { type: 'boolean' },
|
|
3073
|
-
is_heating_available: {
|
|
3074
|
-
enum: [true],
|
|
3075
|
-
type: 'boolean',
|
|
3076
|
-
},
|
|
3077
|
-
is_temporary_manual_override_active: {
|
|
3078
|
-
type: 'boolean',
|
|
3079
|
-
},
|
|
3080
|
-
max_cooling_set_point_celsius: {
|
|
3081
|
-
format: 'float',
|
|
3082
|
-
type: 'number',
|
|
3083
|
-
},
|
|
3084
|
-
max_cooling_set_point_fahrenheit: {
|
|
3085
|
-
format: 'float',
|
|
3086
|
-
type: 'number',
|
|
3087
|
-
},
|
|
3088
|
-
max_heating_set_point_celsius: {
|
|
2932
|
+
cooling_set_point_celsius: {
|
|
3089
2933
|
format: 'float',
|
|
3090
2934
|
type: 'number',
|
|
3091
2935
|
},
|
|
3092
|
-
|
|
2936
|
+
cooling_set_point_fahrenheit: {
|
|
3093
2937
|
format: 'float',
|
|
3094
2938
|
type: 'number',
|
|
3095
2939
|
},
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
format: 'float',
|
|
3102
|
-
type: 'number',
|
|
3103
|
-
},
|
|
3104
|
-
min_heating_cooling_delta_celsius: {
|
|
3105
|
-
format: 'float',
|
|
3106
|
-
type: 'number',
|
|
3107
|
-
},
|
|
3108
|
-
min_heating_cooling_delta_fahrenheit: {
|
|
3109
|
-
format: 'float',
|
|
3110
|
-
type: 'number',
|
|
3111
|
-
},
|
|
3112
|
-
min_heating_set_point_celsius: {
|
|
3113
|
-
format: 'float',
|
|
3114
|
-
type: 'number',
|
|
2940
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
2941
|
+
device_id: { format: 'uuid', type: 'string' },
|
|
2942
|
+
errors: {
|
|
2943
|
+
description:
|
|
2944
|
+
'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.',
|
|
3115
2945
|
},
|
|
3116
|
-
|
|
2946
|
+
heating_set_point_celsius: {
|
|
3117
2947
|
format: 'float',
|
|
3118
2948
|
type: 'number',
|
|
3119
2949
|
},
|
|
3120
|
-
|
|
2950
|
+
heating_set_point_fahrenheit: {
|
|
3121
2951
|
format: 'float',
|
|
3122
|
-
maximum: 1,
|
|
3123
|
-
minimum: 0,
|
|
3124
2952
|
type: 'number',
|
|
3125
2953
|
},
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
type: '
|
|
2954
|
+
hvac_mode_setting: {
|
|
2955
|
+
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2956
|
+
type: 'string',
|
|
3129
2957
|
},
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
2958
|
+
manual_override_allowed: { type: 'boolean' },
|
|
2959
|
+
name: { type: 'string' },
|
|
2960
|
+
schedule_ends_at: { type: 'string' },
|
|
2961
|
+
schedule_starts_at: { type: 'string' },
|
|
2962
|
+
schedule_type: {
|
|
2963
|
+
enum: ['time_bound'],
|
|
2964
|
+
type: 'string',
|
|
3133
2965
|
},
|
|
3134
2966
|
},
|
|
2967
|
+
required: [
|
|
2968
|
+
'climate_setting_schedule_id',
|
|
2969
|
+
'schedule_type',
|
|
2970
|
+
'device_id',
|
|
2971
|
+
'schedule_starts_at',
|
|
2972
|
+
'schedule_ends_at',
|
|
2973
|
+
'created_at',
|
|
2974
|
+
],
|
|
3135
2975
|
type: 'object',
|
|
3136
2976
|
},
|
|
3137
|
-
{
|
|
2977
|
+
available_hvac_mode_settings: {
|
|
2978
|
+
items: {
|
|
2979
|
+
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2980
|
+
type: 'string',
|
|
2981
|
+
},
|
|
2982
|
+
type: 'array',
|
|
2983
|
+
},
|
|
2984
|
+
can_enable_automatic_cooling: { type: 'boolean' },
|
|
2985
|
+
can_enable_automatic_heating: { type: 'boolean' },
|
|
2986
|
+
current_climate_setting: {
|
|
3138
2987
|
properties: {
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
3143
|
-
climate_setting_schedule_id: {
|
|
3144
|
-
format: 'uuid',
|
|
3145
|
-
type: 'string',
|
|
3146
|
-
},
|
|
3147
|
-
cooling_set_point_celsius: {
|
|
3148
|
-
format: 'float',
|
|
3149
|
-
type: 'number',
|
|
3150
|
-
},
|
|
3151
|
-
cooling_set_point_fahrenheit: {
|
|
3152
|
-
format: 'float',
|
|
3153
|
-
type: 'number',
|
|
3154
|
-
},
|
|
3155
|
-
created_at: {
|
|
3156
|
-
format: 'date-time',
|
|
3157
|
-
type: 'string',
|
|
3158
|
-
},
|
|
3159
|
-
device_id: { format: 'uuid', type: 'string' },
|
|
3160
|
-
errors: {
|
|
3161
|
-
description:
|
|
3162
|
-
'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.',
|
|
3163
|
-
},
|
|
3164
|
-
heating_set_point_celsius: {
|
|
3165
|
-
format: 'float',
|
|
3166
|
-
type: 'number',
|
|
3167
|
-
},
|
|
3168
|
-
heating_set_point_fahrenheit: {
|
|
3169
|
-
format: 'float',
|
|
3170
|
-
type: 'number',
|
|
3171
|
-
},
|
|
3172
|
-
hvac_mode_setting: {
|
|
3173
|
-
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
3174
|
-
type: 'string',
|
|
3175
|
-
},
|
|
3176
|
-
manual_override_allowed: { type: 'boolean' },
|
|
3177
|
-
name: { type: 'string' },
|
|
3178
|
-
schedule_ends_at: { type: 'string' },
|
|
3179
|
-
schedule_starts_at: { type: 'string' },
|
|
3180
|
-
schedule_type: {
|
|
3181
|
-
enum: ['time_bound'],
|
|
3182
|
-
type: 'string',
|
|
3183
|
-
},
|
|
3184
|
-
},
|
|
3185
|
-
required: [
|
|
3186
|
-
'climate_setting_schedule_id',
|
|
3187
|
-
'schedule_type',
|
|
3188
|
-
'device_id',
|
|
3189
|
-
'schedule_starts_at',
|
|
3190
|
-
'schedule_ends_at',
|
|
3191
|
-
'created_at',
|
|
3192
|
-
],
|
|
3193
|
-
type: 'object',
|
|
3194
|
-
},
|
|
3195
|
-
available_hvac_mode_settings: {
|
|
3196
|
-
items: {
|
|
3197
|
-
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
3198
|
-
type: 'string',
|
|
3199
|
-
},
|
|
3200
|
-
type: 'array',
|
|
3201
|
-
},
|
|
3202
|
-
can_enable_automatic_cooling: { type: 'boolean' },
|
|
3203
|
-
can_enable_automatic_heating: { type: 'boolean' },
|
|
3204
|
-
current_climate_setting: {
|
|
3205
|
-
properties: {
|
|
3206
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
3207
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
3208
|
-
cooling_set_point_celsius: {
|
|
3209
|
-
format: 'float',
|
|
3210
|
-
type: 'number',
|
|
3211
|
-
},
|
|
3212
|
-
cooling_set_point_fahrenheit: {
|
|
3213
|
-
format: 'float',
|
|
3214
|
-
type: 'number',
|
|
3215
|
-
},
|
|
3216
|
-
heating_set_point_celsius: {
|
|
3217
|
-
format: 'float',
|
|
3218
|
-
type: 'number',
|
|
3219
|
-
},
|
|
3220
|
-
heating_set_point_fahrenheit: {
|
|
3221
|
-
format: 'float',
|
|
3222
|
-
type: 'number',
|
|
3223
|
-
},
|
|
3224
|
-
hvac_mode_setting: {
|
|
3225
|
-
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
3226
|
-
type: 'string',
|
|
3227
|
-
},
|
|
3228
|
-
manual_override_allowed: { type: 'boolean' },
|
|
3229
|
-
},
|
|
3230
|
-
required: [
|
|
3231
|
-
'automatic_heating_enabled',
|
|
3232
|
-
'automatic_cooling_enabled',
|
|
3233
|
-
'hvac_mode_setting',
|
|
3234
|
-
'manual_override_allowed',
|
|
3235
|
-
],
|
|
3236
|
-
type: 'object',
|
|
3237
|
-
},
|
|
3238
|
-
default_climate_setting: {
|
|
3239
|
-
properties: {
|
|
3240
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
3241
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
3242
|
-
cooling_set_point_celsius: {
|
|
3243
|
-
format: 'float',
|
|
3244
|
-
type: 'number',
|
|
3245
|
-
},
|
|
3246
|
-
cooling_set_point_fahrenheit: {
|
|
3247
|
-
format: 'float',
|
|
3248
|
-
type: 'number',
|
|
3249
|
-
},
|
|
3250
|
-
heating_set_point_celsius: {
|
|
3251
|
-
format: 'float',
|
|
3252
|
-
type: 'number',
|
|
3253
|
-
},
|
|
3254
|
-
heating_set_point_fahrenheit: {
|
|
3255
|
-
format: 'float',
|
|
3256
|
-
type: 'number',
|
|
3257
|
-
},
|
|
3258
|
-
hvac_mode_setting: {
|
|
3259
|
-
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
3260
|
-
type: 'string',
|
|
3261
|
-
},
|
|
3262
|
-
manual_override_allowed: { type: 'boolean' },
|
|
3263
|
-
},
|
|
3264
|
-
required: [
|
|
3265
|
-
'automatic_heating_enabled',
|
|
3266
|
-
'automatic_cooling_enabled',
|
|
3267
|
-
'hvac_mode_setting',
|
|
3268
|
-
'manual_override_allowed',
|
|
3269
|
-
],
|
|
3270
|
-
type: 'object',
|
|
3271
|
-
},
|
|
3272
|
-
fan_mode_setting: {
|
|
3273
|
-
enum: ['auto', 'on'],
|
|
3274
|
-
type: 'string',
|
|
3275
|
-
},
|
|
3276
|
-
is_climate_setting_schedule_active: {
|
|
3277
|
-
type: 'boolean',
|
|
3278
|
-
},
|
|
3279
|
-
is_cooling: { type: 'boolean' },
|
|
3280
|
-
is_cooling_available: {
|
|
3281
|
-
enum: [false],
|
|
3282
|
-
type: 'boolean',
|
|
3283
|
-
},
|
|
3284
|
-
is_fan_running: { type: 'boolean' },
|
|
3285
|
-
is_heating: { type: 'boolean' },
|
|
3286
|
-
is_heating_available: {
|
|
3287
|
-
enum: [true],
|
|
3288
|
-
type: 'boolean',
|
|
3289
|
-
},
|
|
3290
|
-
is_temporary_manual_override_active: {
|
|
3291
|
-
type: 'boolean',
|
|
3292
|
-
},
|
|
3293
|
-
max_heating_set_point_celsius: {
|
|
3294
|
-
format: 'float',
|
|
3295
|
-
type: 'number',
|
|
3296
|
-
},
|
|
3297
|
-
max_heating_set_point_fahrenheit: {
|
|
2988
|
+
automatic_cooling_enabled: { type: 'boolean' },
|
|
2989
|
+
automatic_heating_enabled: { type: 'boolean' },
|
|
2990
|
+
cooling_set_point_celsius: {
|
|
3298
2991
|
format: 'float',
|
|
3299
2992
|
type: 'number',
|
|
3300
2993
|
},
|
|
3301
|
-
|
|
2994
|
+
cooling_set_point_fahrenheit: {
|
|
3302
2995
|
format: 'float',
|
|
3303
2996
|
type: 'number',
|
|
3304
2997
|
},
|
|
3305
|
-
|
|
2998
|
+
heating_set_point_celsius: {
|
|
3306
2999
|
format: 'float',
|
|
3307
3000
|
type: 'number',
|
|
3308
3001
|
},
|
|
3309
|
-
|
|
3310
|
-
format: 'float',
|
|
3311
|
-
maximum: 1,
|
|
3312
|
-
minimum: 0,
|
|
3313
|
-
type: 'number',
|
|
3314
|
-
},
|
|
3315
|
-
temperature_celsius: {
|
|
3002
|
+
heating_set_point_fahrenheit: {
|
|
3316
3003
|
format: 'float',
|
|
3317
3004
|
type: 'number',
|
|
3318
3005
|
},
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
type: '
|
|
3006
|
+
hvac_mode_setting: {
|
|
3007
|
+
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
3008
|
+
type: 'string',
|
|
3322
3009
|
},
|
|
3010
|
+
manual_override_allowed: { type: 'boolean' },
|
|
3323
3011
|
},
|
|
3012
|
+
required: [
|
|
3013
|
+
'automatic_heating_enabled',
|
|
3014
|
+
'automatic_cooling_enabled',
|
|
3015
|
+
'hvac_mode_setting',
|
|
3016
|
+
'manual_override_allowed',
|
|
3017
|
+
],
|
|
3324
3018
|
type: 'object',
|
|
3325
3019
|
},
|
|
3326
|
-
{
|
|
3020
|
+
default_climate_setting: {
|
|
3327
3021
|
properties: {
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
3332
|
-
climate_setting_schedule_id: {
|
|
3333
|
-
format: 'uuid',
|
|
3334
|
-
type: 'string',
|
|
3335
|
-
},
|
|
3336
|
-
cooling_set_point_celsius: {
|
|
3337
|
-
format: 'float',
|
|
3338
|
-
type: 'number',
|
|
3339
|
-
},
|
|
3340
|
-
cooling_set_point_fahrenheit: {
|
|
3341
|
-
format: 'float',
|
|
3342
|
-
type: 'number',
|
|
3343
|
-
},
|
|
3344
|
-
created_at: {
|
|
3345
|
-
format: 'date-time',
|
|
3346
|
-
type: 'string',
|
|
3347
|
-
},
|
|
3348
|
-
device_id: { format: 'uuid', type: 'string' },
|
|
3349
|
-
errors: {
|
|
3350
|
-
description:
|
|
3351
|
-
'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.',
|
|
3352
|
-
},
|
|
3353
|
-
heating_set_point_celsius: {
|
|
3354
|
-
format: 'float',
|
|
3355
|
-
type: 'number',
|
|
3356
|
-
},
|
|
3357
|
-
heating_set_point_fahrenheit: {
|
|
3358
|
-
format: 'float',
|
|
3359
|
-
type: 'number',
|
|
3360
|
-
},
|
|
3361
|
-
hvac_mode_setting: {
|
|
3362
|
-
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
3363
|
-
type: 'string',
|
|
3364
|
-
},
|
|
3365
|
-
manual_override_allowed: { type: 'boolean' },
|
|
3366
|
-
name: { type: 'string' },
|
|
3367
|
-
schedule_ends_at: { type: 'string' },
|
|
3368
|
-
schedule_starts_at: { type: 'string' },
|
|
3369
|
-
schedule_type: {
|
|
3370
|
-
enum: ['time_bound'],
|
|
3371
|
-
type: 'string',
|
|
3372
|
-
},
|
|
3373
|
-
},
|
|
3374
|
-
required: [
|
|
3375
|
-
'climate_setting_schedule_id',
|
|
3376
|
-
'schedule_type',
|
|
3377
|
-
'device_id',
|
|
3378
|
-
'schedule_starts_at',
|
|
3379
|
-
'schedule_ends_at',
|
|
3380
|
-
'created_at',
|
|
3381
|
-
],
|
|
3382
|
-
type: 'object',
|
|
3383
|
-
},
|
|
3384
|
-
available_hvac_mode_settings: {
|
|
3385
|
-
items: {
|
|
3386
|
-
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
3387
|
-
type: 'string',
|
|
3388
|
-
},
|
|
3389
|
-
type: 'array',
|
|
3390
|
-
},
|
|
3391
|
-
can_enable_automatic_cooling: { type: 'boolean' },
|
|
3392
|
-
can_enable_automatic_heating: { type: 'boolean' },
|
|
3393
|
-
current_climate_setting: {
|
|
3394
|
-
properties: {
|
|
3395
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
3396
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
3397
|
-
cooling_set_point_celsius: {
|
|
3398
|
-
format: 'float',
|
|
3399
|
-
type: 'number',
|
|
3400
|
-
},
|
|
3401
|
-
cooling_set_point_fahrenheit: {
|
|
3402
|
-
format: 'float',
|
|
3403
|
-
type: 'number',
|
|
3404
|
-
},
|
|
3405
|
-
heating_set_point_celsius: {
|
|
3406
|
-
format: 'float',
|
|
3407
|
-
type: 'number',
|
|
3408
|
-
},
|
|
3409
|
-
heating_set_point_fahrenheit: {
|
|
3410
|
-
format: 'float',
|
|
3411
|
-
type: 'number',
|
|
3412
|
-
},
|
|
3413
|
-
hvac_mode_setting: {
|
|
3414
|
-
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
3415
|
-
type: 'string',
|
|
3416
|
-
},
|
|
3417
|
-
manual_override_allowed: { type: 'boolean' },
|
|
3418
|
-
},
|
|
3419
|
-
required: [
|
|
3420
|
-
'automatic_heating_enabled',
|
|
3421
|
-
'automatic_cooling_enabled',
|
|
3422
|
-
'hvac_mode_setting',
|
|
3423
|
-
'manual_override_allowed',
|
|
3424
|
-
],
|
|
3425
|
-
type: 'object',
|
|
3426
|
-
},
|
|
3427
|
-
default_climate_setting: {
|
|
3428
|
-
properties: {
|
|
3429
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
3430
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
3431
|
-
cooling_set_point_celsius: {
|
|
3432
|
-
format: 'float',
|
|
3433
|
-
type: 'number',
|
|
3434
|
-
},
|
|
3435
|
-
cooling_set_point_fahrenheit: {
|
|
3436
|
-
format: 'float',
|
|
3437
|
-
type: 'number',
|
|
3438
|
-
},
|
|
3439
|
-
heating_set_point_celsius: {
|
|
3440
|
-
format: 'float',
|
|
3441
|
-
type: 'number',
|
|
3442
|
-
},
|
|
3443
|
-
heating_set_point_fahrenheit: {
|
|
3444
|
-
format: 'float',
|
|
3445
|
-
type: 'number',
|
|
3446
|
-
},
|
|
3447
|
-
hvac_mode_setting: {
|
|
3448
|
-
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
3449
|
-
type: 'string',
|
|
3450
|
-
},
|
|
3451
|
-
manual_override_allowed: { type: 'boolean' },
|
|
3452
|
-
},
|
|
3453
|
-
required: [
|
|
3454
|
-
'automatic_heating_enabled',
|
|
3455
|
-
'automatic_cooling_enabled',
|
|
3456
|
-
'hvac_mode_setting',
|
|
3457
|
-
'manual_override_allowed',
|
|
3458
|
-
],
|
|
3459
|
-
type: 'object',
|
|
3460
|
-
},
|
|
3461
|
-
fan_mode_setting: {
|
|
3462
|
-
enum: ['auto', 'on'],
|
|
3463
|
-
type: 'string',
|
|
3464
|
-
},
|
|
3465
|
-
is_climate_setting_schedule_active: {
|
|
3466
|
-
type: 'boolean',
|
|
3467
|
-
},
|
|
3468
|
-
is_cooling: { type: 'boolean' },
|
|
3469
|
-
is_cooling_available: {
|
|
3470
|
-
enum: [true],
|
|
3471
|
-
type: 'boolean',
|
|
3472
|
-
},
|
|
3473
|
-
is_fan_running: { type: 'boolean' },
|
|
3474
|
-
is_heating: { type: 'boolean' },
|
|
3475
|
-
is_heating_available: {
|
|
3476
|
-
enum: [false],
|
|
3477
|
-
type: 'boolean',
|
|
3478
|
-
},
|
|
3479
|
-
is_temporary_manual_override_active: {
|
|
3480
|
-
type: 'boolean',
|
|
3481
|
-
},
|
|
3482
|
-
max_cooling_set_point_celsius: {
|
|
3483
|
-
format: 'float',
|
|
3484
|
-
type: 'number',
|
|
3485
|
-
},
|
|
3486
|
-
max_cooling_set_point_fahrenheit: {
|
|
3022
|
+
automatic_cooling_enabled: { type: 'boolean' },
|
|
3023
|
+
automatic_heating_enabled: { type: 'boolean' },
|
|
3024
|
+
cooling_set_point_celsius: {
|
|
3487
3025
|
format: 'float',
|
|
3488
3026
|
type: 'number',
|
|
3489
3027
|
},
|
|
3490
|
-
|
|
3028
|
+
cooling_set_point_fahrenheit: {
|
|
3491
3029
|
format: 'float',
|
|
3492
3030
|
type: 'number',
|
|
3493
3031
|
},
|
|
3494
|
-
|
|
3032
|
+
heating_set_point_celsius: {
|
|
3495
3033
|
format: 'float',
|
|
3496
3034
|
type: 'number',
|
|
3497
3035
|
},
|
|
3498
|
-
|
|
3036
|
+
heating_set_point_fahrenheit: {
|
|
3499
3037
|
format: 'float',
|
|
3500
|
-
maximum: 1,
|
|
3501
|
-
minimum: 0,
|
|
3502
3038
|
type: 'number',
|
|
3503
3039
|
},
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
type: '
|
|
3507
|
-
},
|
|
3508
|
-
temperature_fahrenheit: {
|
|
3509
|
-
format: 'float',
|
|
3510
|
-
type: 'number',
|
|
3040
|
+
hvac_mode_setting: {
|
|
3041
|
+
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
3042
|
+
type: 'string',
|
|
3511
3043
|
},
|
|
3044
|
+
manual_override_allowed: { type: 'boolean' },
|
|
3512
3045
|
},
|
|
3046
|
+
required: [
|
|
3047
|
+
'automatic_heating_enabled',
|
|
3048
|
+
'automatic_cooling_enabled',
|
|
3049
|
+
'hvac_mode_setting',
|
|
3050
|
+
'manual_override_allowed',
|
|
3051
|
+
],
|
|
3513
3052
|
type: 'object',
|
|
3514
3053
|
},
|
|
3515
|
-
|
|
3054
|
+
fan_mode_setting: {
|
|
3055
|
+
enum: ['auto', 'on'],
|
|
3056
|
+
type: 'string',
|
|
3057
|
+
},
|
|
3058
|
+
is_climate_setting_schedule_active: { type: 'boolean' },
|
|
3059
|
+
is_cooling: { type: 'boolean' },
|
|
3060
|
+
is_fan_running: { type: 'boolean' },
|
|
3061
|
+
is_heating: { type: 'boolean' },
|
|
3062
|
+
is_temporary_manual_override_active: { type: 'boolean' },
|
|
3063
|
+
max_cooling_set_point_celsius: {
|
|
3064
|
+
format: 'float',
|
|
3065
|
+
type: 'number',
|
|
3066
|
+
},
|
|
3067
|
+
max_cooling_set_point_fahrenheit: {
|
|
3068
|
+
format: 'float',
|
|
3069
|
+
type: 'number',
|
|
3070
|
+
},
|
|
3071
|
+
max_heating_set_point_celsius: {
|
|
3072
|
+
format: 'float',
|
|
3073
|
+
type: 'number',
|
|
3074
|
+
},
|
|
3075
|
+
max_heating_set_point_fahrenheit: {
|
|
3076
|
+
format: 'float',
|
|
3077
|
+
type: 'number',
|
|
3078
|
+
},
|
|
3079
|
+
min_cooling_set_point_celsius: {
|
|
3080
|
+
format: 'float',
|
|
3081
|
+
type: 'number',
|
|
3082
|
+
},
|
|
3083
|
+
min_cooling_set_point_fahrenheit: {
|
|
3084
|
+
format: 'float',
|
|
3085
|
+
type: 'number',
|
|
3086
|
+
},
|
|
3087
|
+
min_heating_cooling_delta_celsius: {
|
|
3088
|
+
format: 'float',
|
|
3089
|
+
type: 'number',
|
|
3090
|
+
},
|
|
3091
|
+
min_heating_cooling_delta_fahrenheit: {
|
|
3092
|
+
format: 'float',
|
|
3093
|
+
type: 'number',
|
|
3094
|
+
},
|
|
3095
|
+
min_heating_set_point_celsius: {
|
|
3096
|
+
format: 'float',
|
|
3097
|
+
type: 'number',
|
|
3098
|
+
},
|
|
3099
|
+
min_heating_set_point_fahrenheit: {
|
|
3100
|
+
format: 'float',
|
|
3101
|
+
type: 'number',
|
|
3102
|
+
},
|
|
3103
|
+
relative_humidity: {
|
|
3104
|
+
format: 'float',
|
|
3105
|
+
maximum: 1,
|
|
3106
|
+
minimum: 0,
|
|
3107
|
+
type: 'number',
|
|
3108
|
+
},
|
|
3109
|
+
temperature_celsius: { format: 'float', type: 'number' },
|
|
3110
|
+
temperature_fahrenheit: {
|
|
3111
|
+
format: 'float',
|
|
3112
|
+
type: 'number',
|
|
3113
|
+
},
|
|
3114
|
+
},
|
|
3115
|
+
type: 'object',
|
|
3516
3116
|
},
|
|
3517
3117
|
],
|
|
3518
3118
|
},
|