@seamapi/types 1.322.0 → 1.322.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.
@@ -7046,27 +7046,42 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
7046
7046
  unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
7047
7047
  ends_at: z.ZodString;
7048
7048
  created_at: z.ZodString;
7049
- errors: z.ZodAny;
7049
+ errors: z.ZodArray<z.ZodObject<{
7050
+ error_code: z.ZodString;
7051
+ message: z.ZodString;
7052
+ }, "strip", z.ZodTypeAny, {
7053
+ message: string;
7054
+ error_code: string;
7055
+ }, {
7056
+ message: string;
7057
+ error_code: string;
7058
+ }>, "many">;
7050
7059
  }, "strip", z.ZodTypeAny, {
7051
7060
  created_at: string;
7061
+ errors: {
7062
+ message: string;
7063
+ error_code: string;
7064
+ }[];
7052
7065
  climate_preset_key: string;
7053
7066
  thermostat_schedule_id: string;
7054
7067
  device_id: string;
7055
7068
  max_override_period_minutes: number;
7056
7069
  starts_at: string;
7057
7070
  ends_at: string;
7058
- errors?: any;
7059
7071
  name?: string | undefined;
7060
7072
  unstable_is_override_allowed?: boolean | undefined;
7061
7073
  }, {
7062
7074
  created_at: string;
7075
+ errors: {
7076
+ message: string;
7077
+ error_code: string;
7078
+ }[];
7063
7079
  climate_preset_key: string;
7064
7080
  thermostat_schedule_id: string;
7065
7081
  device_id: string;
7066
7082
  max_override_period_minutes: number;
7067
7083
  starts_at: string;
7068
7084
  ends_at: string;
7069
- errors?: any;
7070
7085
  name?: string | undefined;
7071
7086
  unstable_is_override_allowed?: boolean | undefined;
7072
7087
  }>>>>;
@@ -7152,13 +7167,16 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
7152
7167
  fallback_climate_preset_key?: string | null | undefined;
7153
7168
  active_thermostat_schedule?: {
7154
7169
  created_at: string;
7170
+ errors: {
7171
+ message: string;
7172
+ error_code: string;
7173
+ }[];
7155
7174
  climate_preset_key: string;
7156
7175
  thermostat_schedule_id: string;
7157
7176
  device_id: string;
7158
7177
  max_override_period_minutes: number;
7159
7178
  starts_at: string;
7160
7179
  ends_at: string;
7161
- errors?: any;
7162
7180
  name?: string | undefined;
7163
7181
  unstable_is_override_allowed?: boolean | undefined;
7164
7182
  } | null | undefined;
@@ -7234,13 +7252,16 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
7234
7252
  fallback_climate_preset_key?: string | null | undefined;
7235
7253
  active_thermostat_schedule?: {
7236
7254
  created_at: string;
7255
+ errors: {
7256
+ message: string;
7257
+ error_code: string;
7258
+ }[];
7237
7259
  climate_preset_key: string;
7238
7260
  thermostat_schedule_id: string;
7239
7261
  device_id: string;
7240
7262
  max_override_period_minutes: number;
7241
7263
  starts_at: string;
7242
7264
  ends_at: string;
7243
- errors?: any;
7244
7265
  name?: string | undefined;
7245
7266
  unstable_is_override_allowed?: boolean | undefined;
7246
7267
  } | null | undefined;
@@ -7694,13 +7715,16 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
7694
7715
  fallback_climate_preset_key?: string | null | undefined;
7695
7716
  active_thermostat_schedule?: {
7696
7717
  created_at: string;
7718
+ errors: {
7719
+ message: string;
7720
+ error_code: string;
7721
+ }[];
7697
7722
  climate_preset_key: string;
7698
7723
  thermostat_schedule_id: string;
7699
7724
  device_id: string;
7700
7725
  max_override_period_minutes: number;
7701
7726
  starts_at: string;
7702
7727
  ends_at: string;
7703
- errors?: any;
7704
7728
  name?: string | undefined;
7705
7729
  unstable_is_override_allowed?: boolean | undefined;
7706
7730
  } | null | undefined;
@@ -8106,13 +8130,16 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
8106
8130
  fallback_climate_preset_key?: string | null | undefined;
8107
8131
  active_thermostat_schedule?: {
8108
8132
  created_at: string;
8133
+ errors: {
8134
+ message: string;
8135
+ error_code: string;
8136
+ }[];
8109
8137
  climate_preset_key: string;
8110
8138
  thermostat_schedule_id: string;
8111
8139
  device_id: string;
8112
8140
  max_override_period_minutes: number;
8113
8141
  starts_at: string;
8114
8142
  ends_at: string;
8115
- errors?: any;
8116
8143
  name?: string | undefined;
8117
8144
  unstable_is_override_allowed?: boolean | undefined;
8118
8145
  } | null | undefined;
@@ -9850,27 +9877,42 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
9850
9877
  unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
9851
9878
  ends_at: z.ZodString;
9852
9879
  created_at: z.ZodString;
9853
- errors: z.ZodAny;
9880
+ errors: z.ZodArray<z.ZodObject<{
9881
+ error_code: z.ZodString;
9882
+ message: z.ZodString;
9883
+ }, "strip", z.ZodTypeAny, {
9884
+ message: string;
9885
+ error_code: string;
9886
+ }, {
9887
+ message: string;
9888
+ error_code: string;
9889
+ }>, "many">;
9854
9890
  }, "strip", z.ZodTypeAny, {
9855
9891
  created_at: string;
9892
+ errors: {
9893
+ message: string;
9894
+ error_code: string;
9895
+ }[];
9856
9896
  climate_preset_key: string;
9857
9897
  thermostat_schedule_id: string;
9858
9898
  device_id: string;
9859
9899
  max_override_period_minutes: number;
9860
9900
  starts_at: string;
9861
9901
  ends_at: string;
9862
- errors?: any;
9863
9902
  name?: string | undefined;
9864
9903
  unstable_is_override_allowed?: boolean | undefined;
9865
9904
  }, {
9866
9905
  created_at: string;
9906
+ errors: {
9907
+ message: string;
9908
+ error_code: string;
9909
+ }[];
9867
9910
  climate_preset_key: string;
9868
9911
  thermostat_schedule_id: string;
9869
9912
  device_id: string;
9870
9913
  max_override_period_minutes: number;
9871
9914
  starts_at: string;
9872
9915
  ends_at: string;
9873
- errors?: any;
9874
9916
  name?: string | undefined;
9875
9917
  unstable_is_override_allowed?: boolean | undefined;
9876
9918
  }>>>>;
@@ -9956,13 +9998,16 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
9956
9998
  fallback_climate_preset_key?: string | null | undefined;
9957
9999
  active_thermostat_schedule?: {
9958
10000
  created_at: string;
10001
+ errors: {
10002
+ message: string;
10003
+ error_code: string;
10004
+ }[];
9959
10005
  climate_preset_key: string;
9960
10006
  thermostat_schedule_id: string;
9961
10007
  device_id: string;
9962
10008
  max_override_period_minutes: number;
9963
10009
  starts_at: string;
9964
10010
  ends_at: string;
9965
- errors?: any;
9966
10011
  name?: string | undefined;
9967
10012
  unstable_is_override_allowed?: boolean | undefined;
9968
10013
  } | null | undefined;
@@ -10038,13 +10083,16 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
10038
10083
  fallback_climate_preset_key?: string | null | undefined;
10039
10084
  active_thermostat_schedule?: {
10040
10085
  created_at: string;
10086
+ errors: {
10087
+ message: string;
10088
+ error_code: string;
10089
+ }[];
10041
10090
  climate_preset_key: string;
10042
10091
  thermostat_schedule_id: string;
10043
10092
  device_id: string;
10044
10093
  max_override_period_minutes: number;
10045
10094
  starts_at: string;
10046
10095
  ends_at: string;
10047
- errors?: any;
10048
10096
  name?: string | undefined;
10049
10097
  unstable_is_override_allowed?: boolean | undefined;
10050
10098
  } | null | undefined;
@@ -12498,27 +12546,42 @@ declare const thermostat_schedule: z.ZodObject<{
12498
12546
  unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
12499
12547
  ends_at: z.ZodString;
12500
12548
  created_at: z.ZodString;
12501
- errors: z.ZodAny;
12549
+ errors: z.ZodArray<z.ZodObject<{
12550
+ error_code: z.ZodString;
12551
+ message: z.ZodString;
12552
+ }, "strip", z.ZodTypeAny, {
12553
+ message: string;
12554
+ error_code: string;
12555
+ }, {
12556
+ message: string;
12557
+ error_code: string;
12558
+ }>, "many">;
12502
12559
  }, "strip", z.ZodTypeAny, {
12503
12560
  created_at: string;
12561
+ errors: {
12562
+ message: string;
12563
+ error_code: string;
12564
+ }[];
12504
12565
  climate_preset_key: string;
12505
12566
  thermostat_schedule_id: string;
12506
12567
  device_id: string;
12507
12568
  max_override_period_minutes: number;
12508
12569
  starts_at: string;
12509
12570
  ends_at: string;
12510
- errors?: any;
12511
12571
  name?: string | undefined;
12512
12572
  unstable_is_override_allowed?: boolean | undefined;
12513
12573
  }, {
12514
12574
  created_at: string;
12575
+ errors: {
12576
+ message: string;
12577
+ error_code: string;
12578
+ }[];
12515
12579
  climate_preset_key: string;
12516
12580
  thermostat_schedule_id: string;
12517
12581
  device_id: string;
12518
12582
  max_override_period_minutes: number;
12519
12583
  starts_at: string;
12520
12584
  ends_at: string;
12521
- errors?: any;
12522
12585
  name?: string | undefined;
12523
12586
  unstable_is_override_allowed?: boolean | undefined;
12524
12587
  }>;
@@ -16111,6 +16174,19 @@ declare const _default: {
16111
16174
  };
16112
16175
  errors: {
16113
16176
  description: string;
16177
+ items: {
16178
+ properties: {
16179
+ error_code: {
16180
+ type: string;
16181
+ };
16182
+ message: {
16183
+ type: string;
16184
+ };
16185
+ };
16186
+ required: string[];
16187
+ type: string;
16188
+ };
16189
+ type: string;
16114
16190
  };
16115
16191
  max_override_period_minutes: {
16116
16192
  description: string;
@@ -19190,6 +19266,19 @@ declare const _default: {
19190
19266
  };
19191
19267
  errors: {
19192
19268
  description: string;
19269
+ items: {
19270
+ properties: {
19271
+ error_code: {
19272
+ type: string;
19273
+ };
19274
+ message: {
19275
+ type: string;
19276
+ };
19277
+ };
19278
+ required: string[];
19279
+ type: string;
19280
+ };
19281
+ type: string;
19193
19282
  };
19194
19283
  max_override_period_minutes: {
19195
19284
  description: string;
@@ -47216,7 +47305,10 @@ interface Routes {
47216
47305
  /** Date and time at which the thermostat schedule was created. */
47217
47306
  created_at: string;
47218
47307
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
47219
- errors?: any;
47308
+ errors: Array<{
47309
+ error_code: string;
47310
+ message: string;
47311
+ }>;
47220
47312
  } | null) | undefined;
47221
47313
  min_cooling_set_point_celsius?: number | undefined;
47222
47314
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -47770,7 +47862,10 @@ interface Routes {
47770
47862
  /** Date and time at which the thermostat schedule was created. */
47771
47863
  created_at: string;
47772
47864
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
47773
- errors?: any;
47865
+ errors: Array<{
47866
+ error_code: string;
47867
+ message: string;
47868
+ }>;
47774
47869
  } | null) | undefined;
47775
47870
  min_cooling_set_point_celsius?: number | undefined;
47776
47871
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -50923,7 +51018,10 @@ interface Routes {
50923
51018
  /** Date and time at which the thermostat schedule was created. */
50924
51019
  created_at: string;
50925
51020
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
50926
- errors?: any;
51021
+ errors: Array<{
51022
+ error_code: string;
51023
+ message: string;
51024
+ }>;
50927
51025
  } | null) | undefined;
50928
51026
  min_cooling_set_point_celsius?: number | undefined;
50929
51027
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -51440,7 +51538,10 @@ interface Routes {
51440
51538
  /** Date and time at which the thermostat schedule was created. */
51441
51539
  created_at: string;
51442
51540
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
51443
- errors?: any;
51541
+ errors: Array<{
51542
+ error_code: string;
51543
+ message: string;
51544
+ }>;
51444
51545
  } | null) | undefined;
51445
51546
  min_cooling_set_point_celsius?: number | undefined;
51446
51547
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -51994,7 +52095,10 @@ interface Routes {
51994
52095
  /** Date and time at which the thermostat schedule was created. */
51995
52096
  created_at: string;
51996
52097
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
51997
- errors?: any;
52098
+ errors: Array<{
52099
+ error_code: string;
52100
+ message: string;
52101
+ }>;
51998
52102
  } | null) | undefined;
51999
52103
  min_cooling_set_point_celsius?: number | undefined;
52000
52104
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -52511,7 +52615,10 @@ interface Routes {
52511
52615
  /** Date and time at which the thermostat schedule was created. */
52512
52616
  created_at: string;
52513
52617
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
52514
- errors?: any;
52618
+ errors: Array<{
52619
+ error_code: string;
52620
+ message: string;
52621
+ }>;
52515
52622
  } | null) | undefined;
52516
52623
  min_cooling_set_point_celsius?: number | undefined;
52517
52624
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -54709,7 +54816,10 @@ interface Routes {
54709
54816
  /** Date and time at which the thermostat schedule was created. */
54710
54817
  created_at: string;
54711
54818
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
54712
- errors?: any;
54819
+ errors: Array<{
54820
+ error_code: string;
54821
+ message: string;
54822
+ }>;
54713
54823
  } | null) | undefined;
54714
54824
  min_cooling_set_point_celsius?: number | undefined;
54715
54825
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -55226,7 +55336,10 @@ interface Routes {
55226
55336
  /** Date and time at which the thermostat schedule was created. */
55227
55337
  created_at: string;
55228
55338
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
55229
- errors?: any;
55339
+ errors: Array<{
55340
+ error_code: string;
55341
+ message: string;
55342
+ }>;
55230
55343
  } | null) | undefined;
55231
55344
  min_cooling_set_point_celsius?: number | undefined;
55232
55345
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -60082,7 +60195,10 @@ interface Routes {
60082
60195
  /** Date and time at which the thermostat schedule was created. */
60083
60196
  created_at: string;
60084
60197
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
60085
- errors?: any;
60198
+ errors: Array<{
60199
+ error_code: string;
60200
+ message: string;
60201
+ }>;
60086
60202
  } | null) | undefined;
60087
60203
  min_cooling_set_point_celsius?: number | undefined;
60088
60204
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -62262,7 +62378,10 @@ interface Routes {
62262
62378
  /** Date and time at which the thermostat schedule was created. */
62263
62379
  created_at: string;
62264
62380
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
62265
- errors?: any;
62381
+ errors: Array<{
62382
+ error_code: string;
62383
+ message: string;
62384
+ }>;
62266
62385
  } | null) | undefined;
62267
62386
  min_cooling_set_point_celsius?: number | undefined;
62268
62387
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -62779,7 +62898,10 @@ interface Routes {
62779
62898
  /** Date and time at which the thermostat schedule was created. */
62780
62899
  created_at: string;
62781
62900
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
62782
- errors?: any;
62901
+ errors: Array<{
62902
+ error_code: string;
62903
+ message: string;
62904
+ }>;
62783
62905
  } | null) | undefined;
62784
62906
  min_cooling_set_point_celsius?: number | undefined;
62785
62907
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -63694,7 +63816,10 @@ interface Routes {
63694
63816
  /** Date and time at which the thermostat schedule was created. */
63695
63817
  created_at: string;
63696
63818
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
63697
- errors?: any;
63819
+ errors: Array<{
63820
+ error_code: string;
63821
+ message: string;
63822
+ }>;
63698
63823
  };
63699
63824
  };
63700
63825
  };
@@ -63742,7 +63867,10 @@ interface Routes {
63742
63867
  /** Date and time at which the thermostat schedule was created. */
63743
63868
  created_at: string;
63744
63869
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
63745
- errors?: any;
63870
+ errors: Array<{
63871
+ error_code: string;
63872
+ message: string;
63873
+ }>;
63746
63874
  };
63747
63875
  };
63748
63876
  };
@@ -63779,7 +63907,10 @@ interface Routes {
63779
63907
  /** Date and time at which the thermostat schedule was created. */
63780
63908
  created_at: string;
63781
63909
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
63782
- errors?: any;
63910
+ errors: Array<{
63911
+ error_code: string;
63912
+ message: string;
63913
+ }>;
63783
63914
  }>;
63784
63915
  };
63785
63916
  };
@@ -66211,7 +66342,10 @@ interface Routes {
66211
66342
  /** Date and time at which the thermostat schedule was created. */
66212
66343
  created_at: string;
66213
66344
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
66214
- errors?: any;
66345
+ errors: Array<{
66346
+ error_code: string;
66347
+ message: string;
66348
+ }>;
66215
66349
  } | null) | undefined;
66216
66350
  min_cooling_set_point_celsius?: number | undefined;
66217
66351
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -66730,7 +66864,10 @@ interface Routes {
66730
66864
  /** Date and time at which the thermostat schedule was created. */
66731
66865
  created_at: string;
66732
66866
  /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
66733
- errors?: any;
66867
+ errors: Array<{
66868
+ error_code: string;
66869
+ message: string;
66870
+ }>;
66734
66871
  } | null) | undefined;
66735
66872
  min_cooling_set_point_celsius?: number | undefined;
66736
66873
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -216,9 +216,22 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
216
216
  unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
217
217
  ends_at: z.ZodString;
218
218
  created_at: z.ZodString;
219
- errors: z.ZodAny;
219
+ errors: z.ZodArray<z.ZodObject<{
220
+ error_code: z.ZodString;
221
+ message: z.ZodString;
222
+ }, "strip", z.ZodTypeAny, {
223
+ message: string;
224
+ error_code: string;
225
+ }, {
226
+ message: string;
227
+ error_code: string;
228
+ }>, "many">;
220
229
  }, "strip", z.ZodTypeAny, {
221
230
  created_at: string;
231
+ errors: {
232
+ message: string;
233
+ error_code: string;
234
+ }[];
222
235
  climate_preset_key: string;
223
236
  thermostat_schedule_id: string;
224
237
  device_id: string;
@@ -226,10 +239,13 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
226
239
  starts_at: string;
227
240
  ends_at: string;
228
241
  name?: string | undefined;
229
- errors?: any;
230
242
  unstable_is_override_allowed?: boolean | undefined;
231
243
  }, {
232
244
  created_at: string;
245
+ errors: {
246
+ message: string;
247
+ error_code: string;
248
+ }[];
233
249
  climate_preset_key: string;
234
250
  thermostat_schedule_id: string;
235
251
  device_id: string;
@@ -237,7 +253,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
237
253
  starts_at: string;
238
254
  ends_at: string;
239
255
  name?: string | undefined;
240
- errors?: any;
241
256
  unstable_is_override_allowed?: boolean | undefined;
242
257
  }>>>>;
243
258
  min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
@@ -322,6 +337,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
322
337
  fallback_climate_preset_key?: string | null | undefined;
323
338
  active_thermostat_schedule?: {
324
339
  created_at: string;
340
+ errors: {
341
+ message: string;
342
+ error_code: string;
343
+ }[];
325
344
  climate_preset_key: string;
326
345
  thermostat_schedule_id: string;
327
346
  device_id: string;
@@ -329,7 +348,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
329
348
  starts_at: string;
330
349
  ends_at: string;
331
350
  name?: string | undefined;
332
- errors?: any;
333
351
  unstable_is_override_allowed?: boolean | undefined;
334
352
  } | null | undefined;
335
353
  min_cooling_set_point_celsius?: number | undefined;
@@ -404,6 +422,10 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
404
422
  fallback_climate_preset_key?: string | null | undefined;
405
423
  active_thermostat_schedule?: {
406
424
  created_at: string;
425
+ errors: {
426
+ message: string;
427
+ error_code: string;
428
+ }[];
407
429
  climate_preset_key: string;
408
430
  thermostat_schedule_id: string;
409
431
  device_id: string;
@@ -411,7 +433,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
411
433
  starts_at: string;
412
434
  ends_at: string;
413
435
  name?: string | undefined;
414
- errors?: any;
415
436
  unstable_is_override_allowed?: boolean | undefined;
416
437
  } | null | undefined;
417
438
  min_cooling_set_point_celsius?: number | undefined;
@@ -141,9 +141,22 @@ export declare const thermostat_capability_properties: z.ZodObject<{
141
141
  unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
142
142
  ends_at: z.ZodString;
143
143
  created_at: z.ZodString;
144
- errors: z.ZodAny;
144
+ errors: z.ZodArray<z.ZodObject<{
145
+ error_code: z.ZodString;
146
+ message: z.ZodString;
147
+ }, "strip", z.ZodTypeAny, {
148
+ message: string;
149
+ error_code: string;
150
+ }, {
151
+ message: string;
152
+ error_code: string;
153
+ }>, "many">;
145
154
  }, "strip", z.ZodTypeAny, {
146
155
  created_at: string;
156
+ errors: {
157
+ message: string;
158
+ error_code: string;
159
+ }[];
147
160
  climate_preset_key: string;
148
161
  thermostat_schedule_id: string;
149
162
  device_id: string;
@@ -151,10 +164,13 @@ export declare const thermostat_capability_properties: z.ZodObject<{
151
164
  starts_at: string;
152
165
  ends_at: string;
153
166
  name?: string | undefined;
154
- errors?: any;
155
167
  unstable_is_override_allowed?: boolean | undefined;
156
168
  }, {
157
169
  created_at: string;
170
+ errors: {
171
+ message: string;
172
+ error_code: string;
173
+ }[];
158
174
  climate_preset_key: string;
159
175
  thermostat_schedule_id: string;
160
176
  device_id: string;
@@ -162,7 +178,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
162
178
  starts_at: string;
163
179
  ends_at: string;
164
180
  name?: string | undefined;
165
- errors?: any;
166
181
  unstable_is_override_allowed?: boolean | undefined;
167
182
  }>>>>;
168
183
  min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
@@ -247,6 +262,10 @@ export declare const thermostat_capability_properties: z.ZodObject<{
247
262
  fallback_climate_preset_key?: string | null | undefined;
248
263
  active_thermostat_schedule?: {
249
264
  created_at: string;
265
+ errors: {
266
+ message: string;
267
+ error_code: string;
268
+ }[];
250
269
  climate_preset_key: string;
251
270
  thermostat_schedule_id: string;
252
271
  device_id: string;
@@ -254,7 +273,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
254
273
  starts_at: string;
255
274
  ends_at: string;
256
275
  name?: string | undefined;
257
- errors?: any;
258
276
  unstable_is_override_allowed?: boolean | undefined;
259
277
  } | null | undefined;
260
278
  min_cooling_set_point_celsius?: number | undefined;
@@ -329,6 +347,10 @@ export declare const thermostat_capability_properties: z.ZodObject<{
329
347
  fallback_climate_preset_key?: string | null | undefined;
330
348
  active_thermostat_schedule?: {
331
349
  created_at: string;
350
+ errors: {
351
+ message: string;
352
+ error_code: string;
353
+ }[];
332
354
  climate_preset_key: string;
333
355
  thermostat_schedule_id: string;
334
356
  device_id: string;
@@ -336,7 +358,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
336
358
  starts_at: string;
337
359
  ends_at: string;
338
360
  name?: string | undefined;
339
- errors?: any;
340
361
  unstable_is_override_allowed?: boolean | undefined;
341
362
  } | null | undefined;
342
363
  min_cooling_set_point_celsius?: number | undefined;