@seamapi/types 1.322.0 → 1.322.2

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;
@@ -16599,8 +16675,6 @@ declare const _default: {
16599
16675
  format: string;
16600
16676
  type: string;
16601
16677
  'x-title': string;
16602
- deprecated?: never;
16603
- 'x-deprecated'?: never;
16604
16678
  };
16605
16679
  created_at: {
16606
16680
  description: string;
@@ -16694,8 +16768,6 @@ declare const _default: {
16694
16768
  format: string;
16695
16769
  type: string;
16696
16770
  'x-title': string;
16697
- deprecated?: never;
16698
- 'x-deprecated'?: never;
16699
16771
  };
16700
16772
  created_at: {
16701
16773
  description: string;
@@ -16788,8 +16860,6 @@ declare const _default: {
16788
16860
  format: string;
16789
16861
  type: string;
16790
16862
  'x-title': string;
16791
- deprecated?: never;
16792
- 'x-deprecated'?: never;
16793
16863
  };
16794
16864
  created_at: {
16795
16865
  description: string;
@@ -16879,8 +16949,6 @@ declare const _default: {
16879
16949
  format: string;
16880
16950
  type: string;
16881
16951
  'x-title': string;
16882
- deprecated?: never;
16883
- 'x-deprecated'?: never;
16884
16952
  };
16885
16953
  created_at: {
16886
16954
  description: string;
@@ -16963,11 +17031,9 @@ declare const _default: {
16963
17031
  'x-title': string;
16964
17032
  };
16965
17033
  connected_account_id: {
16966
- deprecated: boolean;
16967
17034
  description: string;
16968
17035
  format: string;
16969
17036
  type: string;
16970
- 'x-deprecated': string;
16971
17037
  'x-title': string;
16972
17038
  };
16973
17039
  created_at: {
@@ -17051,11 +17117,9 @@ declare const _default: {
17051
17117
  'x-title': string;
17052
17118
  };
17053
17119
  connected_account_id: {
17054
- deprecated: boolean;
17055
17120
  description: string;
17056
17121
  format: string;
17057
17122
  type: string;
17058
- 'x-deprecated': string;
17059
17123
  'x-title': string;
17060
17124
  };
17061
17125
  created_at: {
@@ -17138,11 +17202,9 @@ declare const _default: {
17138
17202
  type: string;
17139
17203
  };
17140
17204
  connected_account_id: {
17141
- deprecated: boolean;
17142
17205
  description: string;
17143
17206
  format: string;
17144
17207
  type: string;
17145
- 'x-deprecated': string;
17146
17208
  'x-title': string;
17147
17209
  };
17148
17210
  created_at: {
@@ -17226,11 +17288,9 @@ declare const _default: {
17226
17288
  'x-title': string;
17227
17289
  };
17228
17290
  connected_account_id: {
17229
- deprecated: boolean;
17230
17291
  description: string;
17231
17292
  format: string;
17232
17293
  type: string;
17233
- 'x-deprecated': string;
17234
17294
  'x-title': string;
17235
17295
  };
17236
17296
  created_at: {
@@ -17390,8 +17450,6 @@ declare const _default: {
17390
17450
  format: string;
17391
17451
  type: string;
17392
17452
  'x-title': string;
17393
- deprecated?: never;
17394
- 'x-deprecated'?: never;
17395
17453
  };
17396
17454
  created_at: {
17397
17455
  description: string;
@@ -17475,8 +17533,6 @@ declare const _default: {
17475
17533
  format: string;
17476
17534
  type: string;
17477
17535
  'x-title': string;
17478
- deprecated?: never;
17479
- 'x-deprecated'?: never;
17480
17536
  };
17481
17537
  created_at: {
17482
17538
  description: string;
@@ -17552,8 +17608,6 @@ declare const _default: {
17552
17608
  format: string;
17553
17609
  type: string;
17554
17610
  'x-title': string;
17555
- deprecated?: never;
17556
- 'x-deprecated'?: never;
17557
17611
  };
17558
17612
  created_at: {
17559
17613
  description: string;
@@ -17793,8 +17847,6 @@ declare const _default: {
17793
17847
  format: string;
17794
17848
  type: string;
17795
17849
  'x-title'?: never;
17796
- deprecated?: never;
17797
- 'x-deprecated'?: never;
17798
17850
  };
17799
17851
  created_at: {
17800
17852
  description: string;
@@ -17877,8 +17929,6 @@ declare const _default: {
17877
17929
  format: string;
17878
17930
  type: string;
17879
17931
  'x-title'?: never;
17880
- deprecated?: never;
17881
- 'x-deprecated'?: never;
17882
17932
  };
17883
17933
  created_at: {
17884
17934
  description: string;
@@ -17972,8 +18022,6 @@ declare const _default: {
17972
18022
  format: string;
17973
18023
  type: string;
17974
18024
  'x-title'?: never;
17975
- deprecated?: never;
17976
- 'x-deprecated'?: never;
17977
18025
  };
17978
18026
  created_at: {
17979
18027
  description: string;
@@ -18067,8 +18115,6 @@ declare const _default: {
18067
18115
  format: string;
18068
18116
  type: string;
18069
18117
  'x-title'?: never;
18070
- deprecated?: never;
18071
- 'x-deprecated'?: never;
18072
18118
  };
18073
18119
  created_at: {
18074
18120
  description: string;
@@ -18149,8 +18195,6 @@ declare const _default: {
18149
18195
  format: string;
18150
18196
  type: string;
18151
18197
  'x-title'?: never;
18152
- deprecated?: never;
18153
- 'x-deprecated'?: never;
18154
18198
  };
18155
18199
  created_at: {
18156
18200
  description: string;
@@ -18270,8 +18314,6 @@ declare const _default: {
18270
18314
  format: string;
18271
18315
  type: string;
18272
18316
  'x-title'?: never;
18273
- deprecated?: never;
18274
- 'x-deprecated'?: never;
18275
18317
  };
18276
18318
  created_at: {
18277
18319
  description: string;
@@ -18362,8 +18404,6 @@ declare const _default: {
18362
18404
  format: string;
18363
18405
  type: string;
18364
18406
  'x-title'?: never;
18365
- deprecated?: never;
18366
- 'x-deprecated'?: never;
18367
18407
  };
18368
18408
  created_at: {
18369
18409
  description: string;
@@ -18449,8 +18489,6 @@ declare const _default: {
18449
18489
  format: string;
18450
18490
  type: string;
18451
18491
  'x-title'?: never;
18452
- deprecated?: never;
18453
- 'x-deprecated'?: never;
18454
18492
  };
18455
18493
  created_at: {
18456
18494
  description: string;
@@ -18540,8 +18578,6 @@ declare const _default: {
18540
18578
  format: string;
18541
18579
  type: string;
18542
18580
  'x-title'?: never;
18543
- deprecated?: never;
18544
- 'x-deprecated'?: never;
18545
18581
  };
18546
18582
  cooling_set_point_celsius: {
18547
18583
  description: string;
@@ -18652,8 +18688,6 @@ declare const _default: {
18652
18688
  format: string;
18653
18689
  type: string;
18654
18690
  'x-title'?: never;
18655
- deprecated?: never;
18656
- 'x-deprecated'?: never;
18657
18691
  };
18658
18692
  created_at: {
18659
18693
  description: string;
@@ -19190,6 +19224,19 @@ declare const _default: {
19190
19224
  };
19191
19225
  errors: {
19192
19226
  description: string;
19227
+ items: {
19228
+ properties: {
19229
+ error_code: {
19230
+ type: string;
19231
+ };
19232
+ message: {
19233
+ type: string;
19234
+ };
19235
+ };
19236
+ required: string[];
19237
+ type: string;
19238
+ };
19239
+ type: string;
19193
19240
  };
19194
19241
  max_override_period_minutes: {
19195
19242
  description: string;
@@ -47216,7 +47263,10 @@ interface Routes {
47216
47263
  /** Date and time at which the thermostat schedule was created. */
47217
47264
  created_at: string;
47218
47265
  /** 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;
47266
+ errors: Array<{
47267
+ error_code: string;
47268
+ message: string;
47269
+ }>;
47220
47270
  } | null) | undefined;
47221
47271
  min_cooling_set_point_celsius?: number | undefined;
47222
47272
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -47770,7 +47820,10 @@ interface Routes {
47770
47820
  /** Date and time at which the thermostat schedule was created. */
47771
47821
  created_at: string;
47772
47822
  /** 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;
47823
+ errors: Array<{
47824
+ error_code: string;
47825
+ message: string;
47826
+ }>;
47774
47827
  } | null) | undefined;
47775
47828
  min_cooling_set_point_celsius?: number | undefined;
47776
47829
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -48471,8 +48524,7 @@ interface Routes {
48471
48524
  created_at: string;
48472
48525
  /** Time when the event occurred. */
48473
48526
  occurred_at: string;
48474
- /** ID of the connected account.
48475
- * @deprecated Will be removed. */
48527
+ /** ID of the connected account. */
48476
48528
  connected_account_id?: string | undefined;
48477
48529
  /** ID of the ACS system. */
48478
48530
  acs_system_id: string;
@@ -48486,8 +48538,7 @@ interface Routes {
48486
48538
  created_at: string;
48487
48539
  /** Time when the event occurred. */
48488
48540
  occurred_at: string;
48489
- /** ID of the connected account.
48490
- * @deprecated Will be removed. */
48541
+ /** ID of the connected account. */
48491
48542
  connected_account_id?: string | undefined;
48492
48543
  /** ID of the ACS system. */
48493
48544
  acs_system_id: string;
@@ -48501,8 +48552,7 @@ interface Routes {
48501
48552
  created_at: string;
48502
48553
  /** Time when the event occurred. */
48503
48554
  occurred_at: string;
48504
- /** ID of the connected account.
48505
- * @deprecated Will be removed. */
48555
+ /** ID of the connected account. */
48506
48556
  connected_account_id?: string | undefined;
48507
48557
  /** ID of the ACS system. */
48508
48558
  acs_system_id: string;
@@ -48516,8 +48566,7 @@ interface Routes {
48516
48566
  created_at: string;
48517
48567
  /** Time when the event occurred. */
48518
48568
  occurred_at: string;
48519
- /** ID of the connected account.
48520
- * @deprecated Will be removed. */
48569
+ /** ID of the connected account. */
48521
48570
  connected_account_id?: string | undefined;
48522
48571
  /** ID of the ACS system. */
48523
48572
  acs_system_id: string;
@@ -48532,8 +48581,7 @@ interface Routes {
48532
48581
  created_at: string;
48533
48582
  /** Time when the event occurred. */
48534
48583
  occurred_at: string;
48535
- /** ID of the connected account.
48536
- * @deprecated Will be removed. */
48584
+ /** ID of the connected account. */
48537
48585
  connected_account_id?: string | undefined;
48538
48586
  /** ID of the ACS system. */
48539
48587
  acs_system_id: string;
@@ -48548,8 +48596,7 @@ interface Routes {
48548
48596
  created_at: string;
48549
48597
  /** Time when the event occurred. */
48550
48598
  occurred_at: string;
48551
- /** ID of the connected account.
48552
- * @deprecated Will be removed. */
48599
+ /** ID of the connected account. */
48553
48600
  connected_account_id?: string | undefined;
48554
48601
  /** ID of the ACS system. */
48555
48602
  acs_system_id: string;
@@ -48564,8 +48611,7 @@ interface Routes {
48564
48611
  created_at: string;
48565
48612
  /** Time when the event occurred. */
48566
48613
  occurred_at: string;
48567
- /** ID of the connected account.
48568
- * @deprecated Will be removed. */
48614
+ /** ID of the connected account. */
48569
48615
  connected_account_id?: string | undefined;
48570
48616
  /** ID of the ACS system. */
48571
48617
  acs_system_id: string;
@@ -48581,8 +48627,7 @@ interface Routes {
48581
48627
  created_at: string;
48582
48628
  /** Time when the event occurred. */
48583
48629
  occurred_at: string;
48584
- /** ID of the connected account.
48585
- * @deprecated Will be removed. */
48630
+ /** ID of the connected account. */
48586
48631
  connected_account_id?: string | undefined;
48587
48632
  /** ID of the ACS system. */
48588
48633
  acs_system_id: string;
@@ -49620,8 +49665,7 @@ interface Routes {
49620
49665
  created_at: string;
49621
49666
  /** Time when the event occurred. */
49622
49667
  occurred_at: string;
49623
- /** ID of the connected account.
49624
- * @deprecated Will be removed. */
49668
+ /** ID of the connected account. */
49625
49669
  connected_account_id?: string | undefined;
49626
49670
  /** ID of the ACS system. */
49627
49671
  acs_system_id: string;
@@ -49635,8 +49679,7 @@ interface Routes {
49635
49679
  created_at: string;
49636
49680
  /** Time when the event occurred. */
49637
49681
  occurred_at: string;
49638
- /** ID of the connected account.
49639
- * @deprecated Will be removed. */
49682
+ /** ID of the connected account. */
49640
49683
  connected_account_id?: string | undefined;
49641
49684
  /** ID of the ACS system. */
49642
49685
  acs_system_id: string;
@@ -49650,8 +49693,7 @@ interface Routes {
49650
49693
  created_at: string;
49651
49694
  /** Time when the event occurred. */
49652
49695
  occurred_at: string;
49653
- /** ID of the connected account.
49654
- * @deprecated Will be removed. */
49696
+ /** ID of the connected account. */
49655
49697
  connected_account_id?: string | undefined;
49656
49698
  /** ID of the ACS system. */
49657
49699
  acs_system_id: string;
@@ -49665,8 +49707,7 @@ interface Routes {
49665
49707
  created_at: string;
49666
49708
  /** Time when the event occurred. */
49667
49709
  occurred_at: string;
49668
- /** ID of the connected account.
49669
- * @deprecated Will be removed. */
49710
+ /** ID of the connected account. */
49670
49711
  connected_account_id?: string | undefined;
49671
49712
  /** ID of the ACS system. */
49672
49713
  acs_system_id: string;
@@ -49681,8 +49722,7 @@ interface Routes {
49681
49722
  created_at: string;
49682
49723
  /** Time when the event occurred. */
49683
49724
  occurred_at: string;
49684
- /** ID of the connected account.
49685
- * @deprecated Will be removed. */
49725
+ /** ID of the connected account. */
49686
49726
  connected_account_id?: string | undefined;
49687
49727
  /** ID of the ACS system. */
49688
49728
  acs_system_id: string;
@@ -49697,8 +49737,7 @@ interface Routes {
49697
49737
  created_at: string;
49698
49738
  /** Time when the event occurred. */
49699
49739
  occurred_at: string;
49700
- /** ID of the connected account.
49701
- * @deprecated Will be removed. */
49740
+ /** ID of the connected account. */
49702
49741
  connected_account_id?: string | undefined;
49703
49742
  /** ID of the ACS system. */
49704
49743
  acs_system_id: string;
@@ -49713,8 +49752,7 @@ interface Routes {
49713
49752
  created_at: string;
49714
49753
  /** Time when the event occurred. */
49715
49754
  occurred_at: string;
49716
- /** ID of the connected account.
49717
- * @deprecated Will be removed. */
49755
+ /** ID of the connected account. */
49718
49756
  connected_account_id?: string | undefined;
49719
49757
  /** ID of the ACS system. */
49720
49758
  acs_system_id: string;
@@ -49730,8 +49768,7 @@ interface Routes {
49730
49768
  created_at: string;
49731
49769
  /** Time when the event occurred. */
49732
49770
  occurred_at: string;
49733
- /** ID of the connected account.
49734
- * @deprecated Will be removed. */
49771
+ /** ID of the connected account. */
49735
49772
  connected_account_id?: string | undefined;
49736
49773
  /** ID of the ACS system. */
49737
49774
  acs_system_id: string;
@@ -50923,7 +50960,10 @@ interface Routes {
50923
50960
  /** Date and time at which the thermostat schedule was created. */
50924
50961
  created_at: string;
50925
50962
  /** 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;
50963
+ errors: Array<{
50964
+ error_code: string;
50965
+ message: string;
50966
+ }>;
50927
50967
  } | null) | undefined;
50928
50968
  min_cooling_set_point_celsius?: number | undefined;
50929
50969
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -51440,7 +51480,10 @@ interface Routes {
51440
51480
  /** Date and time at which the thermostat schedule was created. */
51441
51481
  created_at: string;
51442
51482
  /** 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;
51483
+ errors: Array<{
51484
+ error_code: string;
51485
+ message: string;
51486
+ }>;
51444
51487
  } | null) | undefined;
51445
51488
  min_cooling_set_point_celsius?: number | undefined;
51446
51489
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -51994,7 +52037,10 @@ interface Routes {
51994
52037
  /** Date and time at which the thermostat schedule was created. */
51995
52038
  created_at: string;
51996
52039
  /** 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;
52040
+ errors: Array<{
52041
+ error_code: string;
52042
+ message: string;
52043
+ }>;
51998
52044
  } | null) | undefined;
51999
52045
  min_cooling_set_point_celsius?: number | undefined;
52000
52046
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -52511,7 +52557,10 @@ interface Routes {
52511
52557
  /** Date and time at which the thermostat schedule was created. */
52512
52558
  created_at: string;
52513
52559
  /** 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;
52560
+ errors: Array<{
52561
+ error_code: string;
52562
+ message: string;
52563
+ }>;
52515
52564
  } | null) | undefined;
52516
52565
  min_cooling_set_point_celsius?: number | undefined;
52517
52566
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -54709,7 +54758,10 @@ interface Routes {
54709
54758
  /** Date and time at which the thermostat schedule was created. */
54710
54759
  created_at: string;
54711
54760
  /** 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;
54761
+ errors: Array<{
54762
+ error_code: string;
54763
+ message: string;
54764
+ }>;
54713
54765
  } | null) | undefined;
54714
54766
  min_cooling_set_point_celsius?: number | undefined;
54715
54767
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -55226,7 +55278,10 @@ interface Routes {
55226
55278
  /** Date and time at which the thermostat schedule was created. */
55227
55279
  created_at: string;
55228
55280
  /** 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;
55281
+ errors: Array<{
55282
+ error_code: string;
55283
+ message: string;
55284
+ }>;
55230
55285
  } | null) | undefined;
55231
55286
  min_cooling_set_point_celsius?: number | undefined;
55232
55287
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -60082,7 +60137,10 @@ interface Routes {
60082
60137
  /** Date and time at which the thermostat schedule was created. */
60083
60138
  created_at: string;
60084
60139
  /** 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;
60140
+ errors: Array<{
60141
+ error_code: string;
60142
+ message: string;
60143
+ }>;
60086
60144
  } | null) | undefined;
60087
60145
  min_cooling_set_point_celsius?: number | undefined;
60088
60146
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -62262,7 +62320,10 @@ interface Routes {
62262
62320
  /** Date and time at which the thermostat schedule was created. */
62263
62321
  created_at: string;
62264
62322
  /** 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;
62323
+ errors: Array<{
62324
+ error_code: string;
62325
+ message: string;
62326
+ }>;
62266
62327
  } | null) | undefined;
62267
62328
  min_cooling_set_point_celsius?: number | undefined;
62268
62329
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -62779,7 +62840,10 @@ interface Routes {
62779
62840
  /** Date and time at which the thermostat schedule was created. */
62780
62841
  created_at: string;
62781
62842
  /** 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;
62843
+ errors: Array<{
62844
+ error_code: string;
62845
+ message: string;
62846
+ }>;
62783
62847
  } | null) | undefined;
62784
62848
  min_cooling_set_point_celsius?: number | undefined;
62785
62849
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -63694,7 +63758,10 @@ interface Routes {
63694
63758
  /** Date and time at which the thermostat schedule was created. */
63695
63759
  created_at: string;
63696
63760
  /** 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;
63761
+ errors: Array<{
63762
+ error_code: string;
63763
+ message: string;
63764
+ }>;
63698
63765
  };
63699
63766
  };
63700
63767
  };
@@ -63742,7 +63809,10 @@ interface Routes {
63742
63809
  /** Date and time at which the thermostat schedule was created. */
63743
63810
  created_at: string;
63744
63811
  /** 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;
63812
+ errors: Array<{
63813
+ error_code: string;
63814
+ message: string;
63815
+ }>;
63746
63816
  };
63747
63817
  };
63748
63818
  };
@@ -63779,7 +63849,10 @@ interface Routes {
63779
63849
  /** Date and time at which the thermostat schedule was created. */
63780
63850
  created_at: string;
63781
63851
  /** 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;
63852
+ errors: Array<{
63853
+ error_code: string;
63854
+ message: string;
63855
+ }>;
63783
63856
  }>;
63784
63857
  };
63785
63858
  };
@@ -66211,7 +66284,10 @@ interface Routes {
66211
66284
  /** Date and time at which the thermostat schedule was created. */
66212
66285
  created_at: string;
66213
66286
  /** 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;
66287
+ errors: Array<{
66288
+ error_code: string;
66289
+ message: string;
66290
+ }>;
66215
66291
  } | null) | undefined;
66216
66292
  min_cooling_set_point_celsius?: number | undefined;
66217
66293
  min_cooling_set_point_fahrenheit?: number | undefined;
@@ -66730,7 +66806,10 @@ interface Routes {
66730
66806
  /** Date and time at which the thermostat schedule was created. */
66731
66807
  created_at: string;
66732
66808
  /** 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;
66809
+ errors: Array<{
66810
+ error_code: string;
66811
+ message: string;
66812
+ }>;
66734
66813
  } | null) | undefined;
66735
66814
  min_cooling_set_point_celsius?: number | undefined;
66736
66815
  min_cooling_set_point_fahrenheit?: number | undefined;