@seamapi/types 1.433.0 → 1.435.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.
Files changed (28) hide show
  1. package/dist/connect.cjs +188 -13
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +882 -28
  4. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +99 -0
  5. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +99 -0
  6. package/lib/seam/connect/models/devices/device-metadata.d.ts +8 -8
  7. package/lib/seam/connect/models/devices/device.d.ts +145 -16
  8. package/lib/seam/connect/models/devices/device.js +14 -8
  9. package/lib/seam/connect/models/devices/device.js.map +1 -1
  10. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +107 -8
  11. package/lib/seam/connect/models/events/devices.d.ts +26 -0
  12. package/lib/seam/connect/models/events/seam-event.d.ts +13 -0
  13. package/lib/seam/connect/models/thermostats/climate-preset.d.ts +46 -0
  14. package/lib/seam/connect/models/thermostats/climate-preset.js +15 -0
  15. package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
  16. package/lib/seam/connect/models/user-identities/user-identity.d.ts +49 -4
  17. package/lib/seam/connect/models/user-identities/user-identity.js +12 -1
  18. package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
  19. package/lib/seam/connect/openapi.d.ts +120 -0
  20. package/lib/seam/connect/openapi.js +149 -0
  21. package/lib/seam/connect/openapi.js.map +1 -1
  22. package/lib/seam/connect/route-types.d.ts +472 -0
  23. package/package.json +2 -2
  24. package/src/lib/seam/connect/models/devices/device.ts +20 -18
  25. package/src/lib/seam/connect/models/thermostats/climate-preset.ts +17 -0
  26. package/src/lib/seam/connect/models/user-identities/user-identity.ts +19 -1
  27. package/src/lib/seam/connect/openapi.ts +177 -0
  28. package/src/lib/seam/connect/route-types.ts +665 -24
@@ -12454,6 +12454,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
12454
12454
  product_type: string;
12455
12455
  }>>;
12456
12456
  }, "strip", z.ZodTypeAny, {
12457
+ ecobee_metadata?: {
12458
+ device_name: string;
12459
+ ecobee_device_id: string;
12460
+ } | undefined;
12457
12461
  salto_ks_metadata?: {
12458
12462
  lock_type: string;
12459
12463
  lock_id: string;
@@ -12611,10 +12615,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
12611
12615
  device_custom_name: string;
12612
12616
  display_name?: string | undefined;
12613
12617
  } | undefined;
12614
- ecobee_metadata?: {
12615
- device_name: string;
12616
- ecobee_device_id: string;
12617
- } | undefined;
12618
12618
  honeywell_resideo_metadata?: {
12619
12619
  device_name: string;
12620
12620
  honeywell_resideo_device_id: string;
@@ -12686,6 +12686,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
12686
12686
  product_type: string;
12687
12687
  } | undefined;
12688
12688
  }, {
12689
+ ecobee_metadata?: {
12690
+ device_name: string;
12691
+ ecobee_device_id: string;
12692
+ } | undefined;
12689
12693
  salto_ks_metadata?: {
12690
12694
  lock_type: string;
12691
12695
  lock_id: string;
@@ -12843,10 +12847,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
12843
12847
  device_custom_name: string;
12844
12848
  display_name?: string | undefined;
12845
12849
  } | undefined;
12846
- ecobee_metadata?: {
12847
- device_name: string;
12848
- ecobee_device_id: string;
12849
- } | undefined;
12850
12850
  honeywell_resideo_metadata?: {
12851
12851
  device_name: string;
12852
12852
  honeywell_resideo_device_id: string;
@@ -13015,6 +13015,19 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13015
13015
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
13016
13016
  heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
13017
13017
  manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
13018
+ ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
13019
+ climate_ref: z.ZodString;
13020
+ is_optimized: z.ZodBoolean;
13021
+ owner: z.ZodEnum<["user", "system"]>;
13022
+ }, "strip", z.ZodTypeAny, {
13023
+ climate_ref: string;
13024
+ is_optimized: boolean;
13025
+ owner: "user" | "system";
13026
+ }, {
13027
+ climate_ref: string;
13028
+ is_optimized: boolean;
13029
+ owner: "user" | "system";
13030
+ }>>>;
13018
13031
  }, "strip", z.ZodTypeAny, {
13019
13032
  climate_preset_key?: string | undefined;
13020
13033
  can_edit?: boolean | undefined;
@@ -13030,6 +13043,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13030
13043
  cooling_set_point_fahrenheit?: number | undefined;
13031
13044
  heating_set_point_fahrenheit?: number | undefined;
13032
13045
  manual_override_allowed?: boolean | undefined;
13046
+ ecobee_metadata?: {
13047
+ climate_ref: string;
13048
+ is_optimized: boolean;
13049
+ owner: "user" | "system";
13050
+ } | undefined;
13033
13051
  }, {
13034
13052
  climate_preset_key?: string | undefined;
13035
13053
  can_edit?: boolean | undefined;
@@ -13045,6 +13063,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13045
13063
  cooling_set_point_fahrenheit?: number | undefined;
13046
13064
  heating_set_point_fahrenheit?: number | undefined;
13047
13065
  manual_override_allowed?: boolean | undefined;
13066
+ ecobee_metadata?: {
13067
+ climate_ref: string;
13068
+ is_optimized: boolean;
13069
+ owner: "user" | "system";
13070
+ } | undefined;
13048
13071
  }>>;
13049
13072
  default_climate_setting: z.ZodOptional<z.ZodObject<{
13050
13073
  climate_preset_key: z.ZodOptional<z.ZodString>;
@@ -13061,6 +13084,19 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13061
13084
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
13062
13085
  heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
13063
13086
  manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
13087
+ ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
13088
+ climate_ref: z.ZodString;
13089
+ is_optimized: z.ZodBoolean;
13090
+ owner: z.ZodEnum<["user", "system"]>;
13091
+ }, "strip", z.ZodTypeAny, {
13092
+ climate_ref: string;
13093
+ is_optimized: boolean;
13094
+ owner: "user" | "system";
13095
+ }, {
13096
+ climate_ref: string;
13097
+ is_optimized: boolean;
13098
+ owner: "user" | "system";
13099
+ }>>>;
13064
13100
  }, "strip", z.ZodTypeAny, {
13065
13101
  climate_preset_key?: string | undefined;
13066
13102
  can_edit?: boolean | undefined;
@@ -13076,6 +13112,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13076
13112
  cooling_set_point_fahrenheit?: number | undefined;
13077
13113
  heating_set_point_fahrenheit?: number | undefined;
13078
13114
  manual_override_allowed?: boolean | undefined;
13115
+ ecobee_metadata?: {
13116
+ climate_ref: string;
13117
+ is_optimized: boolean;
13118
+ owner: "user" | "system";
13119
+ } | undefined;
13079
13120
  }, {
13080
13121
  climate_preset_key?: string | undefined;
13081
13122
  can_edit?: boolean | undefined;
@@ -13091,6 +13132,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13091
13132
  cooling_set_point_fahrenheit?: number | undefined;
13092
13133
  heating_set_point_fahrenheit?: number | undefined;
13093
13134
  manual_override_allowed?: boolean | undefined;
13135
+ ecobee_metadata?: {
13136
+ climate_ref: string;
13137
+ is_optimized: boolean;
13138
+ owner: "user" | "system";
13139
+ } | undefined;
13094
13140
  }>>;
13095
13141
  available_climate_presets: z.ZodOptional<z.ZodArray<z.ZodObject<{
13096
13142
  climate_preset_key: z.ZodString;
@@ -13107,6 +13153,19 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13107
13153
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
13108
13154
  heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
13109
13155
  manual_override_allowed: z.ZodBoolean;
13156
+ ecobee_metadata: z.ZodOptional<z.ZodObject<{
13157
+ climate_ref: z.ZodString;
13158
+ is_optimized: z.ZodBoolean;
13159
+ owner: z.ZodEnum<["user", "system"]>;
13160
+ }, "strip", z.ZodTypeAny, {
13161
+ climate_ref: string;
13162
+ is_optimized: boolean;
13163
+ owner: "user" | "system";
13164
+ }, {
13165
+ climate_ref: string;
13166
+ is_optimized: boolean;
13167
+ owner: "user" | "system";
13168
+ }>>;
13110
13169
  }, "strip", z.ZodTypeAny, {
13111
13170
  climate_preset_key: string;
13112
13171
  can_edit: boolean;
@@ -13122,6 +13181,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13122
13181
  heating_set_point_celsius?: number | undefined;
13123
13182
  cooling_set_point_fahrenheit?: number | undefined;
13124
13183
  heating_set_point_fahrenheit?: number | undefined;
13184
+ ecobee_metadata?: {
13185
+ climate_ref: string;
13186
+ is_optimized: boolean;
13187
+ owner: "user" | "system";
13188
+ } | undefined;
13125
13189
  }, {
13126
13190
  climate_preset_key: string;
13127
13191
  can_edit: boolean;
@@ -13137,6 +13201,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13137
13201
  heating_set_point_celsius?: number | undefined;
13138
13202
  cooling_set_point_fahrenheit?: number | undefined;
13139
13203
  heating_set_point_fahrenheit?: number | undefined;
13204
+ ecobee_metadata?: {
13205
+ climate_ref: string;
13206
+ is_optimized: boolean;
13207
+ owner: "user" | "system";
13208
+ } | undefined;
13140
13209
  }>, "many">>;
13141
13210
  fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13142
13211
  active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -13310,6 +13379,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13310
13379
  cooling_set_point_fahrenheit?: number | undefined;
13311
13380
  heating_set_point_fahrenheit?: number | undefined;
13312
13381
  manual_override_allowed?: boolean | undefined;
13382
+ ecobee_metadata?: {
13383
+ climate_ref: string;
13384
+ is_optimized: boolean;
13385
+ owner: "user" | "system";
13386
+ } | undefined;
13313
13387
  } | undefined;
13314
13388
  default_climate_setting?: {
13315
13389
  climate_preset_key?: string | undefined;
@@ -13326,6 +13400,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13326
13400
  cooling_set_point_fahrenheit?: number | undefined;
13327
13401
  heating_set_point_fahrenheit?: number | undefined;
13328
13402
  manual_override_allowed?: boolean | undefined;
13403
+ ecobee_metadata?: {
13404
+ climate_ref: string;
13405
+ is_optimized: boolean;
13406
+ owner: "user" | "system";
13407
+ } | undefined;
13329
13408
  } | undefined;
13330
13409
  available_climate_presets?: {
13331
13410
  climate_preset_key: string;
@@ -13342,6 +13421,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13342
13421
  heating_set_point_celsius?: number | undefined;
13343
13422
  cooling_set_point_fahrenheit?: number | undefined;
13344
13423
  heating_set_point_fahrenheit?: number | undefined;
13424
+ ecobee_metadata?: {
13425
+ climate_ref: string;
13426
+ is_optimized: boolean;
13427
+ owner: "user" | "system";
13428
+ } | undefined;
13345
13429
  }[] | undefined;
13346
13430
  fallback_climate_preset_key?: string | null | undefined;
13347
13431
  active_thermostat_schedule?: {
@@ -13425,6 +13509,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13425
13509
  cooling_set_point_fahrenheit?: number | undefined;
13426
13510
  heating_set_point_fahrenheit?: number | undefined;
13427
13511
  manual_override_allowed?: boolean | undefined;
13512
+ ecobee_metadata?: {
13513
+ climate_ref: string;
13514
+ is_optimized: boolean;
13515
+ owner: "user" | "system";
13516
+ } | undefined;
13428
13517
  } | undefined;
13429
13518
  default_climate_setting?: {
13430
13519
  climate_preset_key?: string | undefined;
@@ -13441,6 +13530,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13441
13530
  cooling_set_point_fahrenheit?: number | undefined;
13442
13531
  heating_set_point_fahrenheit?: number | undefined;
13443
13532
  manual_override_allowed?: boolean | undefined;
13533
+ ecobee_metadata?: {
13534
+ climate_ref: string;
13535
+ is_optimized: boolean;
13536
+ owner: "user" | "system";
13537
+ } | undefined;
13444
13538
  } | undefined;
13445
13539
  available_climate_presets?: {
13446
13540
  climate_preset_key: string;
@@ -13457,6 +13551,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13457
13551
  heating_set_point_celsius?: number | undefined;
13458
13552
  cooling_set_point_fahrenheit?: number | undefined;
13459
13553
  heating_set_point_fahrenheit?: number | undefined;
13554
+ ecobee_metadata?: {
13555
+ climate_ref: string;
13556
+ is_optimized: boolean;
13557
+ owner: "user" | "system";
13558
+ } | undefined;
13460
13559
  }[] | undefined;
13461
13560
  fallback_climate_preset_key?: string | null | undefined;
13462
13561
  active_thermostat_schedule?: {
@@ -14371,6 +14470,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14371
14470
  has_active_phone: boolean;
14372
14471
  } | undefined;
14373
14472
  } & {
14473
+ ecobee_metadata?: {
14474
+ device_name: string;
14475
+ ecobee_device_id: string;
14476
+ } | undefined;
14374
14477
  salto_ks_metadata?: {
14375
14478
  lock_type: string;
14376
14479
  lock_id: string;
@@ -14528,10 +14631,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14528
14631
  device_custom_name: string;
14529
14632
  display_name?: string | undefined;
14530
14633
  } | undefined;
14531
- ecobee_metadata?: {
14532
- device_name: string;
14533
- ecobee_device_id: string;
14534
- } | undefined;
14535
14634
  honeywell_resideo_metadata?: {
14536
14635
  device_name: string;
14537
14636
  honeywell_resideo_device_id: string;
@@ -14647,6 +14746,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14647
14746
  cooling_set_point_fahrenheit?: number | undefined;
14648
14747
  heating_set_point_fahrenheit?: number | undefined;
14649
14748
  manual_override_allowed?: boolean | undefined;
14749
+ ecobee_metadata?: {
14750
+ climate_ref: string;
14751
+ is_optimized: boolean;
14752
+ owner: "user" | "system";
14753
+ } | undefined;
14650
14754
  } | undefined;
14651
14755
  default_climate_setting?: {
14652
14756
  climate_preset_key?: string | undefined;
@@ -14663,6 +14767,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14663
14767
  cooling_set_point_fahrenheit?: number | undefined;
14664
14768
  heating_set_point_fahrenheit?: number | undefined;
14665
14769
  manual_override_allowed?: boolean | undefined;
14770
+ ecobee_metadata?: {
14771
+ climate_ref: string;
14772
+ is_optimized: boolean;
14773
+ owner: "user" | "system";
14774
+ } | undefined;
14666
14775
  } | undefined;
14667
14776
  available_climate_presets?: {
14668
14777
  climate_preset_key: string;
@@ -14679,6 +14788,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14679
14788
  heating_set_point_celsius?: number | undefined;
14680
14789
  cooling_set_point_fahrenheit?: number | undefined;
14681
14790
  heating_set_point_fahrenheit?: number | undefined;
14791
+ ecobee_metadata?: {
14792
+ climate_ref: string;
14793
+ is_optimized: boolean;
14794
+ owner: "user" | "system";
14795
+ } | undefined;
14682
14796
  }[] | undefined;
14683
14797
  fallback_climate_preset_key?: string | null | undefined;
14684
14798
  active_thermostat_schedule?: {
@@ -14990,6 +15104,10 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14990
15104
  has_active_phone: boolean;
14991
15105
  } | undefined;
14992
15106
  } & {
15107
+ ecobee_metadata?: {
15108
+ device_name: string;
15109
+ ecobee_device_id: string;
15110
+ } | undefined;
14993
15111
  salto_ks_metadata?: {
14994
15112
  lock_type: string;
14995
15113
  lock_id: string;
@@ -15147,10 +15265,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
15147
15265
  device_custom_name: string;
15148
15266
  display_name?: string | undefined;
15149
15267
  } | undefined;
15150
- ecobee_metadata?: {
15151
- device_name: string;
15152
- ecobee_device_id: string;
15153
- } | undefined;
15154
15268
  honeywell_resideo_metadata?: {
15155
15269
  device_name: string;
15156
15270
  honeywell_resideo_device_id: string;
@@ -15266,6 +15380,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
15266
15380
  cooling_set_point_fahrenheit?: number | undefined;
15267
15381
  heating_set_point_fahrenheit?: number | undefined;
15268
15382
  manual_override_allowed?: boolean | undefined;
15383
+ ecobee_metadata?: {
15384
+ climate_ref: string;
15385
+ is_optimized: boolean;
15386
+ owner: "user" | "system";
15387
+ } | undefined;
15269
15388
  } | undefined;
15270
15389
  default_climate_setting?: {
15271
15390
  climate_preset_key?: string | undefined;
@@ -15282,6 +15401,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
15282
15401
  cooling_set_point_fahrenheit?: number | undefined;
15283
15402
  heating_set_point_fahrenheit?: number | undefined;
15284
15403
  manual_override_allowed?: boolean | undefined;
15404
+ ecobee_metadata?: {
15405
+ climate_ref: string;
15406
+ is_optimized: boolean;
15407
+ owner: "user" | "system";
15408
+ } | undefined;
15285
15409
  } | undefined;
15286
15410
  available_climate_presets?: {
15287
15411
  climate_preset_key: string;
@@ -15298,6 +15422,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
15298
15422
  heating_set_point_celsius?: number | undefined;
15299
15423
  cooling_set_point_fahrenheit?: number | undefined;
15300
15424
  heating_set_point_fahrenheit?: number | undefined;
15425
+ ecobee_metadata?: {
15426
+ climate_ref: string;
15427
+ is_optimized: boolean;
15428
+ owner: "user" | "system";
15429
+ } | undefined;
15301
15430
  }[] | undefined;
15302
15431
  fallback_climate_preset_key?: string | null | undefined;
15303
15432
  active_thermostat_schedule?: {
@@ -16439,6 +16568,10 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16439
16568
  product_type: string;
16440
16569
  }>>;
16441
16570
  }, "strip", z.ZodTypeAny, {
16571
+ ecobee_metadata?: {
16572
+ device_name: string;
16573
+ ecobee_device_id: string;
16574
+ } | undefined;
16442
16575
  salto_ks_metadata?: {
16443
16576
  lock_type: string;
16444
16577
  lock_id: string;
@@ -16596,10 +16729,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16596
16729
  device_custom_name: string;
16597
16730
  display_name?: string | undefined;
16598
16731
  } | undefined;
16599
- ecobee_metadata?: {
16600
- device_name: string;
16601
- ecobee_device_id: string;
16602
- } | undefined;
16603
16732
  honeywell_resideo_metadata?: {
16604
16733
  device_name: string;
16605
16734
  honeywell_resideo_device_id: string;
@@ -16671,6 +16800,10 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16671
16800
  product_type: string;
16672
16801
  } | undefined;
16673
16802
  }, {
16803
+ ecobee_metadata?: {
16804
+ device_name: string;
16805
+ ecobee_device_id: string;
16806
+ } | undefined;
16674
16807
  salto_ks_metadata?: {
16675
16808
  lock_type: string;
16676
16809
  lock_id: string;
@@ -16828,10 +16961,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16828
16961
  device_custom_name: string;
16829
16962
  display_name?: string | undefined;
16830
16963
  } | undefined;
16831
- ecobee_metadata?: {
16832
- device_name: string;
16833
- ecobee_device_id: string;
16834
- } | undefined;
16835
16964
  honeywell_resideo_metadata?: {
16836
16965
  device_name: string;
16837
16966
  honeywell_resideo_device_id: string;
@@ -17000,6 +17129,19 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17000
17129
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
17001
17130
  heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
17002
17131
  manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
17132
+ ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
17133
+ climate_ref: z.ZodString;
17134
+ is_optimized: z.ZodBoolean;
17135
+ owner: z.ZodEnum<["user", "system"]>;
17136
+ }, "strip", z.ZodTypeAny, {
17137
+ climate_ref: string;
17138
+ is_optimized: boolean;
17139
+ owner: "user" | "system";
17140
+ }, {
17141
+ climate_ref: string;
17142
+ is_optimized: boolean;
17143
+ owner: "user" | "system";
17144
+ }>>>;
17003
17145
  }, "strip", z.ZodTypeAny, {
17004
17146
  climate_preset_key?: string | undefined;
17005
17147
  can_edit?: boolean | undefined;
@@ -17015,6 +17157,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17015
17157
  cooling_set_point_fahrenheit?: number | undefined;
17016
17158
  heating_set_point_fahrenheit?: number | undefined;
17017
17159
  manual_override_allowed?: boolean | undefined;
17160
+ ecobee_metadata?: {
17161
+ climate_ref: string;
17162
+ is_optimized: boolean;
17163
+ owner: "user" | "system";
17164
+ } | undefined;
17018
17165
  }, {
17019
17166
  climate_preset_key?: string | undefined;
17020
17167
  can_edit?: boolean | undefined;
@@ -17030,6 +17177,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17030
17177
  cooling_set_point_fahrenheit?: number | undefined;
17031
17178
  heating_set_point_fahrenheit?: number | undefined;
17032
17179
  manual_override_allowed?: boolean | undefined;
17180
+ ecobee_metadata?: {
17181
+ climate_ref: string;
17182
+ is_optimized: boolean;
17183
+ owner: "user" | "system";
17184
+ } | undefined;
17033
17185
  }>>;
17034
17186
  default_climate_setting: z.ZodOptional<z.ZodObject<{
17035
17187
  climate_preset_key: z.ZodOptional<z.ZodString>;
@@ -17046,6 +17198,19 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17046
17198
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
17047
17199
  heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
17048
17200
  manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
17201
+ ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
17202
+ climate_ref: z.ZodString;
17203
+ is_optimized: z.ZodBoolean;
17204
+ owner: z.ZodEnum<["user", "system"]>;
17205
+ }, "strip", z.ZodTypeAny, {
17206
+ climate_ref: string;
17207
+ is_optimized: boolean;
17208
+ owner: "user" | "system";
17209
+ }, {
17210
+ climate_ref: string;
17211
+ is_optimized: boolean;
17212
+ owner: "user" | "system";
17213
+ }>>>;
17049
17214
  }, "strip", z.ZodTypeAny, {
17050
17215
  climate_preset_key?: string | undefined;
17051
17216
  can_edit?: boolean | undefined;
@@ -17061,6 +17226,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17061
17226
  cooling_set_point_fahrenheit?: number | undefined;
17062
17227
  heating_set_point_fahrenheit?: number | undefined;
17063
17228
  manual_override_allowed?: boolean | undefined;
17229
+ ecobee_metadata?: {
17230
+ climate_ref: string;
17231
+ is_optimized: boolean;
17232
+ owner: "user" | "system";
17233
+ } | undefined;
17064
17234
  }, {
17065
17235
  climate_preset_key?: string | undefined;
17066
17236
  can_edit?: boolean | undefined;
@@ -17076,6 +17246,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17076
17246
  cooling_set_point_fahrenheit?: number | undefined;
17077
17247
  heating_set_point_fahrenheit?: number | undefined;
17078
17248
  manual_override_allowed?: boolean | undefined;
17249
+ ecobee_metadata?: {
17250
+ climate_ref: string;
17251
+ is_optimized: boolean;
17252
+ owner: "user" | "system";
17253
+ } | undefined;
17079
17254
  }>>;
17080
17255
  available_climate_presets: z.ZodOptional<z.ZodArray<z.ZodObject<{
17081
17256
  climate_preset_key: z.ZodString;
@@ -17092,6 +17267,19 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17092
17267
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
17093
17268
  heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
17094
17269
  manual_override_allowed: z.ZodBoolean;
17270
+ ecobee_metadata: z.ZodOptional<z.ZodObject<{
17271
+ climate_ref: z.ZodString;
17272
+ is_optimized: z.ZodBoolean;
17273
+ owner: z.ZodEnum<["user", "system"]>;
17274
+ }, "strip", z.ZodTypeAny, {
17275
+ climate_ref: string;
17276
+ is_optimized: boolean;
17277
+ owner: "user" | "system";
17278
+ }, {
17279
+ climate_ref: string;
17280
+ is_optimized: boolean;
17281
+ owner: "user" | "system";
17282
+ }>>;
17095
17283
  }, "strip", z.ZodTypeAny, {
17096
17284
  climate_preset_key: string;
17097
17285
  can_edit: boolean;
@@ -17107,6 +17295,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17107
17295
  heating_set_point_celsius?: number | undefined;
17108
17296
  cooling_set_point_fahrenheit?: number | undefined;
17109
17297
  heating_set_point_fahrenheit?: number | undefined;
17298
+ ecobee_metadata?: {
17299
+ climate_ref: string;
17300
+ is_optimized: boolean;
17301
+ owner: "user" | "system";
17302
+ } | undefined;
17110
17303
  }, {
17111
17304
  climate_preset_key: string;
17112
17305
  can_edit: boolean;
@@ -17122,6 +17315,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17122
17315
  heating_set_point_celsius?: number | undefined;
17123
17316
  cooling_set_point_fahrenheit?: number | undefined;
17124
17317
  heating_set_point_fahrenheit?: number | undefined;
17318
+ ecobee_metadata?: {
17319
+ climate_ref: string;
17320
+ is_optimized: boolean;
17321
+ owner: "user" | "system";
17322
+ } | undefined;
17125
17323
  }>, "many">>;
17126
17324
  fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17127
17325
  active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -17295,6 +17493,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17295
17493
  cooling_set_point_fahrenheit?: number | undefined;
17296
17494
  heating_set_point_fahrenheit?: number | undefined;
17297
17495
  manual_override_allowed?: boolean | undefined;
17496
+ ecobee_metadata?: {
17497
+ climate_ref: string;
17498
+ is_optimized: boolean;
17499
+ owner: "user" | "system";
17500
+ } | undefined;
17298
17501
  } | undefined;
17299
17502
  default_climate_setting?: {
17300
17503
  climate_preset_key?: string | undefined;
@@ -17311,6 +17514,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17311
17514
  cooling_set_point_fahrenheit?: number | undefined;
17312
17515
  heating_set_point_fahrenheit?: number | undefined;
17313
17516
  manual_override_allowed?: boolean | undefined;
17517
+ ecobee_metadata?: {
17518
+ climate_ref: string;
17519
+ is_optimized: boolean;
17520
+ owner: "user" | "system";
17521
+ } | undefined;
17314
17522
  } | undefined;
17315
17523
  available_climate_presets?: {
17316
17524
  climate_preset_key: string;
@@ -17327,6 +17535,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17327
17535
  heating_set_point_celsius?: number | undefined;
17328
17536
  cooling_set_point_fahrenheit?: number | undefined;
17329
17537
  heating_set_point_fahrenheit?: number | undefined;
17538
+ ecobee_metadata?: {
17539
+ climate_ref: string;
17540
+ is_optimized: boolean;
17541
+ owner: "user" | "system";
17542
+ } | undefined;
17330
17543
  }[] | undefined;
17331
17544
  fallback_climate_preset_key?: string | null | undefined;
17332
17545
  active_thermostat_schedule?: {
@@ -17410,6 +17623,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17410
17623
  cooling_set_point_fahrenheit?: number | undefined;
17411
17624
  heating_set_point_fahrenheit?: number | undefined;
17412
17625
  manual_override_allowed?: boolean | undefined;
17626
+ ecobee_metadata?: {
17627
+ climate_ref: string;
17628
+ is_optimized: boolean;
17629
+ owner: "user" | "system";
17630
+ } | undefined;
17413
17631
  } | undefined;
17414
17632
  default_climate_setting?: {
17415
17633
  climate_preset_key?: string | undefined;
@@ -17426,6 +17644,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17426
17644
  cooling_set_point_fahrenheit?: number | undefined;
17427
17645
  heating_set_point_fahrenheit?: number | undefined;
17428
17646
  manual_override_allowed?: boolean | undefined;
17647
+ ecobee_metadata?: {
17648
+ climate_ref: string;
17649
+ is_optimized: boolean;
17650
+ owner: "user" | "system";
17651
+ } | undefined;
17429
17652
  } | undefined;
17430
17653
  available_climate_presets?: {
17431
17654
  climate_preset_key: string;
@@ -17442,6 +17665,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17442
17665
  heating_set_point_celsius?: number | undefined;
17443
17666
  cooling_set_point_fahrenheit?: number | undefined;
17444
17667
  heating_set_point_fahrenheit?: number | undefined;
17668
+ ecobee_metadata?: {
17669
+ climate_ref: string;
17670
+ is_optimized: boolean;
17671
+ owner: "user" | "system";
17672
+ } | undefined;
17445
17673
  }[] | undefined;
17446
17674
  fallback_climate_preset_key?: string | null | undefined;
17447
17675
  active_thermostat_schedule?: {
@@ -21033,6 +21261,19 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<z.o
21033
21261
  cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
21034
21262
  heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
21035
21263
  manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
21264
+ ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
21265
+ climate_ref: z.ZodString;
21266
+ is_optimized: z.ZodBoolean;
21267
+ owner: z.ZodEnum<["user", "system"]>;
21268
+ }, "strip", z.ZodTypeAny, {
21269
+ climate_ref: string;
21270
+ is_optimized: boolean;
21271
+ owner: "user" | "system";
21272
+ }, {
21273
+ climate_ref: string;
21274
+ is_optimized: boolean;
21275
+ owner: "user" | "system";
21276
+ }>>>;
21036
21277
  }, "fan_mode_setting" | "hvac_mode_setting" | "cooling_set_point_celsius" | "heating_set_point_celsius" | "cooling_set_point_fahrenheit" | "heating_set_point_fahrenheit">>, "strip", z.ZodTypeAny, {
21037
21278
  device_id: string;
21038
21279
  workspace_id: string;
@@ -21578,6 +21819,19 @@ declare const user_identity: z.ZodObject<{
21578
21819
  message: string;
21579
21820
  created_at: string;
21580
21821
  warning_code: "being_deleted";
21822
+ }>, z.ZodObject<z.objectUtil.extendShape<{
21823
+ created_at: z.ZodString;
21824
+ message: z.ZodString;
21825
+ }, {
21826
+ warning_code: z.ZodLiteral<"acs_user_profile_does_not_match_user_identity">;
21827
+ }>, "strip", z.ZodTypeAny, {
21828
+ message: string;
21829
+ created_at: string;
21830
+ warning_code: "acs_user_profile_does_not_match_user_identity";
21831
+ }, {
21832
+ message: string;
21833
+ created_at: string;
21834
+ warning_code: "acs_user_profile_does_not_match_user_identity";
21581
21835
  }>]>, "many">;
21582
21836
  }, "strip", z.ZodTypeAny, {
21583
21837
  display_name: string;
@@ -21590,11 +21844,15 @@ declare const user_identity: z.ZodObject<{
21590
21844
  acs_system_id: string;
21591
21845
  acs_user_id: string;
21592
21846
  }[];
21593
- warnings: {
21847
+ warnings: ({
21594
21848
  message: string;
21595
21849
  created_at: string;
21596
21850
  warning_code: "being_deleted";
21597
- }[];
21851
+ } | {
21852
+ message: string;
21853
+ created_at: string;
21854
+ warning_code: "acs_user_profile_does_not_match_user_identity";
21855
+ })[];
21598
21856
  user_identity_id: string;
21599
21857
  email_address: string | null;
21600
21858
  full_name: string | null;
@@ -21611,11 +21869,15 @@ declare const user_identity: z.ZodObject<{
21611
21869
  acs_system_id: string;
21612
21870
  acs_user_id: string;
21613
21871
  }[];
21614
- warnings: {
21872
+ warnings: ({
21615
21873
  message: string;
21616
21874
  created_at: string;
21617
21875
  warning_code: "being_deleted";
21618
- }[];
21876
+ } | {
21877
+ message: string;
21878
+ created_at: string;
21879
+ warning_code: "acs_user_profile_does_not_match_user_identity";
21880
+ })[];
21619
21881
  user_identity_id: string;
21620
21882
  email_address: string | null;
21621
21883
  full_name: string | null;
@@ -27701,6 +27963,26 @@ declare const _default: {
27701
27963
  description: string;
27702
27964
  type: string;
27703
27965
  };
27966
+ ecobee_metadata: {
27967
+ description: string;
27968
+ properties: {
27969
+ climate_ref: {
27970
+ description: string;
27971
+ type: string;
27972
+ };
27973
+ is_optimized: {
27974
+ description: string;
27975
+ type: string;
27976
+ };
27977
+ owner: {
27978
+ description: string;
27979
+ enum: string[];
27980
+ type: string;
27981
+ };
27982
+ };
27983
+ required: string[];
27984
+ type: string;
27985
+ };
27704
27986
  fan_mode_setting: {
27705
27987
  description: string;
27706
27988
  enum: string[];
@@ -27796,6 +28078,26 @@ declare const _default: {
27796
28078
  description: string;
27797
28079
  type: string;
27798
28080
  };
28081
+ ecobee_metadata: {
28082
+ description: string;
28083
+ properties: {
28084
+ climate_ref: {
28085
+ description: string;
28086
+ type: string;
28087
+ };
28088
+ is_optimized: {
28089
+ description: string;
28090
+ type: string;
28091
+ };
28092
+ owner: {
28093
+ description: string;
28094
+ enum: string[];
28095
+ type: string;
28096
+ };
28097
+ };
28098
+ required: string[];
28099
+ type: string;
28100
+ };
27799
28101
  fan_mode_setting: {
27800
28102
  description: string;
27801
28103
  enum: string[];
@@ -27870,6 +28172,26 @@ declare const _default: {
27870
28172
  description: string;
27871
28173
  type: string;
27872
28174
  };
28175
+ ecobee_metadata: {
28176
+ description: string;
28177
+ properties: {
28178
+ climate_ref: {
28179
+ description: string;
28180
+ type: string;
28181
+ };
28182
+ is_optimized: {
28183
+ description: string;
28184
+ type: string;
28185
+ };
28186
+ owner: {
28187
+ description: string;
28188
+ enum: string[];
28189
+ type: string;
28190
+ };
28191
+ };
28192
+ required: string[];
28193
+ type: string;
28194
+ };
27873
28195
  fan_mode_setting: {
27874
28196
  description: string;
27875
28197
  enum: string[];
@@ -59695,6 +60017,26 @@ declare const _default: {
59695
60017
  format: string;
59696
60018
  type: string;
59697
60019
  };
60020
+ ecobee_metadata: {
60021
+ description: string;
60022
+ properties: {
60023
+ climate_ref: {
60024
+ description: string;
60025
+ type: string;
60026
+ };
60027
+ is_optimized: {
60028
+ description: string;
60029
+ type: string;
60030
+ };
60031
+ owner: {
60032
+ description: string;
60033
+ enum: string[];
60034
+ type: string;
60035
+ };
60036
+ };
60037
+ required: string[];
60038
+ type: string;
60039
+ };
59698
60040
  fan_mode_setting: {
59699
60041
  description: string;
59700
60042
  enum: string[];
@@ -62885,6 +63227,26 @@ declare const _default: {
62885
63227
  format: string;
62886
63228
  type: string;
62887
63229
  };
63230
+ ecobee_metadata: {
63231
+ description: string;
63232
+ properties: {
63233
+ climate_ref: {
63234
+ description: string;
63235
+ type: string;
63236
+ };
63237
+ is_optimized: {
63238
+ description: string;
63239
+ type: string;
63240
+ };
63241
+ owner: {
63242
+ description: string;
63243
+ enum: string[];
63244
+ type: string;
63245
+ };
63246
+ };
63247
+ required: string[];
63248
+ type: string;
63249
+ };
62888
63250
  fan_mode_setting: {
62889
63251
  description: string;
62890
63252
  enum: string[];
@@ -63008,6 +63370,26 @@ declare const _default: {
63008
63370
  format: string;
63009
63371
  type: string;
63010
63372
  };
63373
+ ecobee_metadata: {
63374
+ description: string;
63375
+ properties: {
63376
+ climate_ref: {
63377
+ description: string;
63378
+ type: string;
63379
+ };
63380
+ is_optimized: {
63381
+ description: string;
63382
+ type: string;
63383
+ };
63384
+ owner: {
63385
+ description: string;
63386
+ enum: string[];
63387
+ type: string;
63388
+ };
63389
+ };
63390
+ required: string[];
63391
+ type: string;
63392
+ };
63011
63393
  fan_mode_setting: {
63012
63394
  description: string;
63013
63395
  enum: string[];
@@ -92791,6 +93173,17 @@ interface Routes {
92791
93173
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
92792
93174
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
92793
93175
  manual_override_allowed?: boolean | undefined;
93176
+ /**
93177
+ Metadata specific to the Ecobee climate, if applicable.
93178
+ */
93179
+ ecobee_metadata?: ({
93180
+ /** Reference to the Ecobee climate, if applicable. */
93181
+ climate_ref: string;
93182
+ /** Indicates if the climate preset is optimized by Ecobee. */
93183
+ is_optimized: boolean;
93184
+ /** Indicates whether the climate preset is owned by the user or the system. */
93185
+ owner: 'user' | 'system';
93186
+ } | undefined) | undefined;
92794
93187
  } | undefined;
92795
93188
  /**
92796
93189
  * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
@@ -92826,6 +93219,17 @@ interface Routes {
92826
93219
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
92827
93220
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
92828
93221
  manual_override_allowed?: boolean | undefined;
93222
+ /**
93223
+ Metadata specific to the Ecobee climate, if applicable.
93224
+ */
93225
+ ecobee_metadata?: ({
93226
+ /** Reference to the Ecobee climate, if applicable. */
93227
+ climate_ref: string;
93228
+ /** Indicates if the climate preset is optimized by Ecobee. */
93229
+ is_optimized: boolean;
93230
+ /** Indicates whether the climate preset is owned by the user or the system. */
93231
+ owner: 'user' | 'system';
93232
+ } | undefined) | undefined;
92829
93233
  } | undefined;
92830
93234
  /** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
92831
93235
  available_climate_presets?: Array<{
@@ -92860,6 +93264,17 @@ interface Routes {
92860
93264
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
92861
93265
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
92862
93266
  manual_override_allowed: boolean;
93267
+ /**
93268
+ Metadata specific to the Ecobee climate, if applicable.
93269
+ */
93270
+ ecobee_metadata?: {
93271
+ /** Reference to the Ecobee climate, if applicable. */
93272
+ climate_ref: string;
93273
+ /** Indicates if the climate preset is optimized by Ecobee. */
93274
+ is_optimized: boolean;
93275
+ /** Indicates whether the climate preset is owned by the user or the system. */
93276
+ owner: 'user' | 'system';
93277
+ } | undefined;
92863
93278
  }> | undefined;
92864
93279
  /** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
92865
93280
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -93963,6 +94378,17 @@ interface Routes {
93963
94378
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
93964
94379
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
93965
94380
  manual_override_allowed?: boolean | undefined;
94381
+ /**
94382
+ Metadata specific to the Ecobee climate, if applicable.
94383
+ */
94384
+ ecobee_metadata?: ({
94385
+ /** Reference to the Ecobee climate, if applicable. */
94386
+ climate_ref: string;
94387
+ /** Indicates if the climate preset is optimized by Ecobee. */
94388
+ is_optimized: boolean;
94389
+ /** Indicates whether the climate preset is owned by the user or the system. */
94390
+ owner: 'user' | 'system';
94391
+ } | undefined) | undefined;
93966
94392
  } | undefined;
93967
94393
  /**
93968
94394
  * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
@@ -93998,6 +94424,17 @@ interface Routes {
93998
94424
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
93999
94425
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
94000
94426
  manual_override_allowed?: boolean | undefined;
94427
+ /**
94428
+ Metadata specific to the Ecobee climate, if applicable.
94429
+ */
94430
+ ecobee_metadata?: ({
94431
+ /** Reference to the Ecobee climate, if applicable. */
94432
+ climate_ref: string;
94433
+ /** Indicates if the climate preset is optimized by Ecobee. */
94434
+ is_optimized: boolean;
94435
+ /** Indicates whether the climate preset is owned by the user or the system. */
94436
+ owner: 'user' | 'system';
94437
+ } | undefined) | undefined;
94001
94438
  } | undefined;
94002
94439
  /** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
94003
94440
  available_climate_presets?: Array<{
@@ -94032,6 +94469,17 @@ interface Routes {
94032
94469
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
94033
94470
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
94034
94471
  manual_override_allowed: boolean;
94472
+ /**
94473
+ Metadata specific to the Ecobee climate, if applicable.
94474
+ */
94475
+ ecobee_metadata?: {
94476
+ /** Reference to the Ecobee climate, if applicable. */
94477
+ climate_ref: string;
94478
+ /** Indicates if the climate preset is optimized by Ecobee. */
94479
+ is_optimized: boolean;
94480
+ /** Indicates whether the climate preset is owned by the user or the system. */
94481
+ owner: 'user' | 'system';
94482
+ } | undefined;
94035
94483
  }> | undefined;
94036
94484
  /** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
94037
94485
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -98899,6 +99347,17 @@ interface Routes {
98899
99347
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
98900
99348
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
98901
99349
  manual_override_allowed?: boolean | undefined;
99350
+ /**
99351
+ Metadata specific to the Ecobee climate, if applicable.
99352
+ */
99353
+ ecobee_metadata?: ({
99354
+ /** Reference to the Ecobee climate, if applicable. */
99355
+ climate_ref: string;
99356
+ /** Indicates if the climate preset is optimized by Ecobee. */
99357
+ is_optimized: boolean;
99358
+ /** Indicates whether the climate preset is owned by the user or the system. */
99359
+ owner: 'user' | 'system';
99360
+ } | undefined) | undefined;
98902
99361
  } | undefined;
98903
99362
  /**
98904
99363
  * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
@@ -98934,6 +99393,17 @@ interface Routes {
98934
99393
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
98935
99394
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
98936
99395
  manual_override_allowed?: boolean | undefined;
99396
+ /**
99397
+ Metadata specific to the Ecobee climate, if applicable.
99398
+ */
99399
+ ecobee_metadata?: ({
99400
+ /** Reference to the Ecobee climate, if applicable. */
99401
+ climate_ref: string;
99402
+ /** Indicates if the climate preset is optimized by Ecobee. */
99403
+ is_optimized: boolean;
99404
+ /** Indicates whether the climate preset is owned by the user or the system. */
99405
+ owner: 'user' | 'system';
99406
+ } | undefined) | undefined;
98937
99407
  } | undefined;
98938
99408
  /** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
98939
99409
  available_climate_presets?: Array<{
@@ -98968,6 +99438,17 @@ interface Routes {
98968
99438
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
98969
99439
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
98970
99440
  manual_override_allowed: boolean;
99441
+ /**
99442
+ Metadata specific to the Ecobee climate, if applicable.
99443
+ */
99444
+ ecobee_metadata?: {
99445
+ /** Reference to the Ecobee climate, if applicable. */
99446
+ climate_ref: string;
99447
+ /** Indicates if the climate preset is optimized by Ecobee. */
99448
+ is_optimized: boolean;
99449
+ /** Indicates whether the climate preset is owned by the user or the system. */
99450
+ owner: 'user' | 'system';
99451
+ } | undefined;
98971
99452
  }> | undefined;
98972
99453
  /** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
98973
99454
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -100025,6 +100506,17 @@ interface Routes {
100025
100506
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
100026
100507
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
100027
100508
  manual_override_allowed?: boolean | undefined;
100509
+ /**
100510
+ Metadata specific to the Ecobee climate, if applicable.
100511
+ */
100512
+ ecobee_metadata?: ({
100513
+ /** Reference to the Ecobee climate, if applicable. */
100514
+ climate_ref: string;
100515
+ /** Indicates if the climate preset is optimized by Ecobee. */
100516
+ is_optimized: boolean;
100517
+ /** Indicates whether the climate preset is owned by the user or the system. */
100518
+ owner: 'user' | 'system';
100519
+ } | undefined) | undefined;
100028
100520
  } | undefined;
100029
100521
  /**
100030
100522
  * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
@@ -100060,6 +100552,17 @@ interface Routes {
100060
100552
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
100061
100553
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
100062
100554
  manual_override_allowed?: boolean | undefined;
100555
+ /**
100556
+ Metadata specific to the Ecobee climate, if applicable.
100557
+ */
100558
+ ecobee_metadata?: ({
100559
+ /** Reference to the Ecobee climate, if applicable. */
100560
+ climate_ref: string;
100561
+ /** Indicates if the climate preset is optimized by Ecobee. */
100562
+ is_optimized: boolean;
100563
+ /** Indicates whether the climate preset is owned by the user or the system. */
100564
+ owner: 'user' | 'system';
100565
+ } | undefined) | undefined;
100063
100566
  } | undefined;
100064
100567
  /** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
100065
100568
  available_climate_presets?: Array<{
@@ -100094,6 +100597,17 @@ interface Routes {
100094
100597
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
100095
100598
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
100096
100599
  manual_override_allowed: boolean;
100600
+ /**
100601
+ Metadata specific to the Ecobee climate, if applicable.
100602
+ */
100603
+ ecobee_metadata?: {
100604
+ /** Reference to the Ecobee climate, if applicable. */
100605
+ climate_ref: string;
100606
+ /** Indicates if the climate preset is optimized by Ecobee. */
100607
+ is_optimized: boolean;
100608
+ /** Indicates whether the climate preset is owned by the user or the system. */
100609
+ owner: 'user' | 'system';
100610
+ } | undefined;
100097
100611
  }> | undefined;
100098
100612
  /** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
100099
100613
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -101197,6 +101711,17 @@ interface Routes {
101197
101711
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
101198
101712
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
101199
101713
  manual_override_allowed?: boolean | undefined;
101714
+ /**
101715
+ Metadata specific to the Ecobee climate, if applicable.
101716
+ */
101717
+ ecobee_metadata?: ({
101718
+ /** Reference to the Ecobee climate, if applicable. */
101719
+ climate_ref: string;
101720
+ /** Indicates if the climate preset is optimized by Ecobee. */
101721
+ is_optimized: boolean;
101722
+ /** Indicates whether the climate preset is owned by the user or the system. */
101723
+ owner: 'user' | 'system';
101724
+ } | undefined) | undefined;
101200
101725
  } | undefined;
101201
101726
  /**
101202
101727
  * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
@@ -101232,6 +101757,17 @@ interface Routes {
101232
101757
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
101233
101758
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
101234
101759
  manual_override_allowed?: boolean | undefined;
101760
+ /**
101761
+ Metadata specific to the Ecobee climate, if applicable.
101762
+ */
101763
+ ecobee_metadata?: ({
101764
+ /** Reference to the Ecobee climate, if applicable. */
101765
+ climate_ref: string;
101766
+ /** Indicates if the climate preset is optimized by Ecobee. */
101767
+ is_optimized: boolean;
101768
+ /** Indicates whether the climate preset is owned by the user or the system. */
101769
+ owner: 'user' | 'system';
101770
+ } | undefined) | undefined;
101235
101771
  } | undefined;
101236
101772
  /** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
101237
101773
  available_climate_presets?: Array<{
@@ -101266,6 +101802,17 @@ interface Routes {
101266
101802
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
101267
101803
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
101268
101804
  manual_override_allowed: boolean;
101805
+ /**
101806
+ Metadata specific to the Ecobee climate, if applicable.
101807
+ */
101808
+ ecobee_metadata?: {
101809
+ /** Reference to the Ecobee climate, if applicable. */
101810
+ climate_ref: string;
101811
+ /** Indicates if the climate preset is optimized by Ecobee. */
101812
+ is_optimized: boolean;
101813
+ /** Indicates whether the climate preset is owned by the user or the system. */
101814
+ owner: 'user' | 'system';
101815
+ } | undefined;
101269
101816
  }> | undefined;
101270
101817
  /** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
101271
101818
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -102322,6 +102869,17 @@ interface Routes {
102322
102869
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
102323
102870
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
102324
102871
  manual_override_allowed?: boolean | undefined;
102872
+ /**
102873
+ Metadata specific to the Ecobee climate, if applicable.
102874
+ */
102875
+ ecobee_metadata?: ({
102876
+ /** Reference to the Ecobee climate, if applicable. */
102877
+ climate_ref: string;
102878
+ /** Indicates if the climate preset is optimized by Ecobee. */
102879
+ is_optimized: boolean;
102880
+ /** Indicates whether the climate preset is owned by the user or the system. */
102881
+ owner: 'user' | 'system';
102882
+ } | undefined) | undefined;
102325
102883
  } | undefined;
102326
102884
  /**
102327
102885
  * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
@@ -102357,6 +102915,17 @@ interface Routes {
102357
102915
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
102358
102916
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
102359
102917
  manual_override_allowed?: boolean | undefined;
102918
+ /**
102919
+ Metadata specific to the Ecobee climate, if applicable.
102920
+ */
102921
+ ecobee_metadata?: ({
102922
+ /** Reference to the Ecobee climate, if applicable. */
102923
+ climate_ref: string;
102924
+ /** Indicates if the climate preset is optimized by Ecobee. */
102925
+ is_optimized: boolean;
102926
+ /** Indicates whether the climate preset is owned by the user or the system. */
102927
+ owner: 'user' | 'system';
102928
+ } | undefined) | undefined;
102360
102929
  } | undefined;
102361
102930
  /** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
102362
102931
  available_climate_presets?: Array<{
@@ -102391,6 +102960,17 @@ interface Routes {
102391
102960
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
102392
102961
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
102393
102962
  manual_override_allowed: boolean;
102963
+ /**
102964
+ Metadata specific to the Ecobee climate, if applicable.
102965
+ */
102966
+ ecobee_metadata?: {
102967
+ /** Reference to the Ecobee climate, if applicable. */
102968
+ climate_ref: string;
102969
+ /** Indicates if the climate preset is optimized by Ecobee. */
102970
+ is_optimized: boolean;
102971
+ /** Indicates whether the climate preset is owned by the user or the system. */
102972
+ owner: 'user' | 'system';
102973
+ } | undefined;
102394
102974
  }> | undefined;
102395
102975
  /** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
102396
102976
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -108567,6 +109147,17 @@ interface Routes {
108567
109147
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
108568
109148
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
108569
109149
  manual_override_allowed?: boolean | undefined;
109150
+ /**
109151
+ Metadata specific to the Ecobee climate, if applicable.
109152
+ */
109153
+ ecobee_metadata?: ({
109154
+ /** Reference to the Ecobee climate, if applicable. */
109155
+ climate_ref: string;
109156
+ /** Indicates if the climate preset is optimized by Ecobee. */
109157
+ is_optimized: boolean;
109158
+ /** Indicates whether the climate preset is owned by the user or the system. */
109159
+ owner: 'user' | 'system';
109160
+ } | undefined) | undefined;
108570
109161
  } | undefined;
108571
109162
  /**
108572
109163
  * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
@@ -108602,6 +109193,17 @@ interface Routes {
108602
109193
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
108603
109194
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
108604
109195
  manual_override_allowed?: boolean | undefined;
109196
+ /**
109197
+ Metadata specific to the Ecobee climate, if applicable.
109198
+ */
109199
+ ecobee_metadata?: ({
109200
+ /** Reference to the Ecobee climate, if applicable. */
109201
+ climate_ref: string;
109202
+ /** Indicates if the climate preset is optimized by Ecobee. */
109203
+ is_optimized: boolean;
109204
+ /** Indicates whether the climate preset is owned by the user or the system. */
109205
+ owner: 'user' | 'system';
109206
+ } | undefined) | undefined;
108605
109207
  } | undefined;
108606
109208
  /** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
108607
109209
  available_climate_presets?: Array<{
@@ -108636,6 +109238,17 @@ interface Routes {
108636
109238
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
108637
109239
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
108638
109240
  manual_override_allowed: boolean;
109241
+ /**
109242
+ Metadata specific to the Ecobee climate, if applicable.
109243
+ */
109244
+ ecobee_metadata?: {
109245
+ /** Reference to the Ecobee climate, if applicable. */
109246
+ climate_ref: string;
109247
+ /** Indicates if the climate preset is optimized by Ecobee. */
109248
+ is_optimized: boolean;
109249
+ /** Indicates whether the climate preset is owned by the user or the system. */
109250
+ owner: 'user' | 'system';
109251
+ } | undefined;
108639
109252
  }> | undefined;
108640
109253
  /** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
108641
109254
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -109692,6 +110305,17 @@ interface Routes {
109692
110305
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
109693
110306
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
109694
110307
  manual_override_allowed?: boolean | undefined;
110308
+ /**
110309
+ Metadata specific to the Ecobee climate, if applicable.
110310
+ */
110311
+ ecobee_metadata?: ({
110312
+ /** Reference to the Ecobee climate, if applicable. */
110313
+ climate_ref: string;
110314
+ /** Indicates if the climate preset is optimized by Ecobee. */
110315
+ is_optimized: boolean;
110316
+ /** Indicates whether the climate preset is owned by the user or the system. */
110317
+ owner: 'user' | 'system';
110318
+ } | undefined) | undefined;
109695
110319
  } | undefined;
109696
110320
  /**
109697
110321
  * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
@@ -109727,6 +110351,17 @@ interface Routes {
109727
110351
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
109728
110352
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
109729
110353
  manual_override_allowed?: boolean | undefined;
110354
+ /**
110355
+ Metadata specific to the Ecobee climate, if applicable.
110356
+ */
110357
+ ecobee_metadata?: ({
110358
+ /** Reference to the Ecobee climate, if applicable. */
110359
+ climate_ref: string;
110360
+ /** Indicates if the climate preset is optimized by Ecobee. */
110361
+ is_optimized: boolean;
110362
+ /** Indicates whether the climate preset is owned by the user or the system. */
110363
+ owner: 'user' | 'system';
110364
+ } | undefined) | undefined;
109730
110365
  } | undefined;
109731
110366
  /** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
109732
110367
  available_climate_presets?: Array<{
@@ -109761,6 +110396,17 @@ interface Routes {
109761
110396
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
109762
110397
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
109763
110398
  manual_override_allowed: boolean;
110399
+ /**
110400
+ Metadata specific to the Ecobee climate, if applicable.
110401
+ */
110402
+ ecobee_metadata?: {
110403
+ /** Reference to the Ecobee climate, if applicable. */
110404
+ climate_ref: string;
110405
+ /** Indicates if the climate preset is optimized by Ecobee. */
110406
+ is_optimized: boolean;
110407
+ /** Indicates whether the climate preset is owned by the user or the system. */
110408
+ owner: 'user' | 'system';
110409
+ } | undefined;
109764
110410
  }> | undefined;
109765
110411
  /** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
109766
110412
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -118005,6 +118651,17 @@ interface Routes {
118005
118651
  cooling_set_point_fahrenheit?: number | undefined;
118006
118652
  /** Temperature to which the thermostat should heat (in °F). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
118007
118653
  heating_set_point_fahrenheit?: number | undefined;
118654
+ /**
118655
+ Metadata specific to the Ecobee climate, if applicable.
118656
+ */
118657
+ ecobee_metadata?: {
118658
+ /** Reference to the Ecobee climate, if applicable. */
118659
+ climate_ref: string;
118660
+ /** Indicates if the climate preset is optimized by Ecobee. */
118661
+ is_optimized: boolean;
118662
+ /** Indicates whether the climate preset is owned by the user or the system. */
118663
+ owner: 'user' | 'system';
118664
+ } | undefined;
118008
118665
  };
118009
118666
  commonParams: {};
118010
118667
  formData: {};
@@ -119990,6 +120647,17 @@ interface Routes {
119990
120647
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
119991
120648
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
119992
120649
  manual_override_allowed?: boolean | undefined;
120650
+ /**
120651
+ Metadata specific to the Ecobee climate, if applicable.
120652
+ */
120653
+ ecobee_metadata?: ({
120654
+ /** Reference to the Ecobee climate, if applicable. */
120655
+ climate_ref: string;
120656
+ /** Indicates if the climate preset is optimized by Ecobee. */
120657
+ is_optimized: boolean;
120658
+ /** Indicates whether the climate preset is owned by the user or the system. */
120659
+ owner: 'user' | 'system';
120660
+ } | undefined) | undefined;
119993
120661
  } | undefined;
119994
120662
  /**
119995
120663
  * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
@@ -120025,6 +120693,17 @@ interface Routes {
120025
120693
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
120026
120694
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
120027
120695
  manual_override_allowed?: boolean | undefined;
120696
+ /**
120697
+ Metadata specific to the Ecobee climate, if applicable.
120698
+ */
120699
+ ecobee_metadata?: ({
120700
+ /** Reference to the Ecobee climate, if applicable. */
120701
+ climate_ref: string;
120702
+ /** Indicates if the climate preset is optimized by Ecobee. */
120703
+ is_optimized: boolean;
120704
+ /** Indicates whether the climate preset is owned by the user or the system. */
120705
+ owner: 'user' | 'system';
120706
+ } | undefined) | undefined;
120028
120707
  } | undefined;
120029
120708
  /** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
120030
120709
  available_climate_presets?: Array<{
@@ -120059,6 +120738,17 @@ interface Routes {
120059
120738
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
120060
120739
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
120061
120740
  manual_override_allowed: boolean;
120741
+ /**
120742
+ Metadata specific to the Ecobee climate, if applicable.
120743
+ */
120744
+ ecobee_metadata?: {
120745
+ /** Reference to the Ecobee climate, if applicable. */
120746
+ climate_ref: string;
120747
+ /** Indicates if the climate preset is optimized by Ecobee. */
120748
+ is_optimized: boolean;
120749
+ /** Indicates whether the climate preset is owned by the user or the system. */
120750
+ owner: 'user' | 'system';
120751
+ } | undefined;
120062
120752
  }> | undefined;
120063
120753
  /** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
120064
120754
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -123694,6 +124384,17 @@ interface Routes {
123694
124384
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
123695
124385
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
123696
124386
  manual_override_allowed?: boolean | undefined;
124387
+ /**
124388
+ Metadata specific to the Ecobee climate, if applicable.
124389
+ */
124390
+ ecobee_metadata?: ({
124391
+ /** Reference to the Ecobee climate, if applicable. */
124392
+ climate_ref: string;
124393
+ /** Indicates if the climate preset is optimized by Ecobee. */
124394
+ is_optimized: boolean;
124395
+ /** Indicates whether the climate preset is owned by the user or the system. */
124396
+ owner: 'user' | 'system';
124397
+ } | undefined) | undefined;
123697
124398
  } | undefined;
123698
124399
  /**
123699
124400
  * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
@@ -123729,6 +124430,17 @@ interface Routes {
123729
124430
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
123730
124431
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
123731
124432
  manual_override_allowed?: boolean | undefined;
124433
+ /**
124434
+ Metadata specific to the Ecobee climate, if applicable.
124435
+ */
124436
+ ecobee_metadata?: ({
124437
+ /** Reference to the Ecobee climate, if applicable. */
124438
+ climate_ref: string;
124439
+ /** Indicates if the climate preset is optimized by Ecobee. */
124440
+ is_optimized: boolean;
124441
+ /** Indicates whether the climate preset is owned by the user or the system. */
124442
+ owner: 'user' | 'system';
124443
+ } | undefined) | undefined;
123732
124444
  } | undefined;
123733
124445
  /** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
123734
124446
  available_climate_presets?: Array<{
@@ -123763,6 +124475,17 @@ interface Routes {
123763
124475
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
123764
124476
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
123765
124477
  manual_override_allowed: boolean;
124478
+ /**
124479
+ Metadata specific to the Ecobee climate, if applicable.
124480
+ */
124481
+ ecobee_metadata?: {
124482
+ /** Reference to the Ecobee climate, if applicable. */
124483
+ climate_ref: string;
124484
+ /** Indicates if the climate preset is optimized by Ecobee. */
124485
+ is_optimized: boolean;
124486
+ /** Indicates whether the climate preset is owned by the user or the system. */
124487
+ owner: 'user' | 'system';
124488
+ } | undefined;
123766
124489
  }> | undefined;
123767
124490
  /** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
123768
124491
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -124819,6 +125542,17 @@ interface Routes {
124819
125542
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
124820
125543
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
124821
125544
  manual_override_allowed?: boolean | undefined;
125545
+ /**
125546
+ Metadata specific to the Ecobee climate, if applicable.
125547
+ */
125548
+ ecobee_metadata?: ({
125549
+ /** Reference to the Ecobee climate, if applicable. */
125550
+ climate_ref: string;
125551
+ /** Indicates if the climate preset is optimized by Ecobee. */
125552
+ is_optimized: boolean;
125553
+ /** Indicates whether the climate preset is owned by the user or the system. */
125554
+ owner: 'user' | 'system';
125555
+ } | undefined) | undefined;
124822
125556
  } | undefined;
124823
125557
  /**
124824
125558
  * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
@@ -124854,6 +125588,17 @@ interface Routes {
124854
125588
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
124855
125589
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
124856
125590
  manual_override_allowed?: boolean | undefined;
125591
+ /**
125592
+ Metadata specific to the Ecobee climate, if applicable.
125593
+ */
125594
+ ecobee_metadata?: ({
125595
+ /** Reference to the Ecobee climate, if applicable. */
125596
+ climate_ref: string;
125597
+ /** Indicates if the climate preset is optimized by Ecobee. */
125598
+ is_optimized: boolean;
125599
+ /** Indicates whether the climate preset is owned by the user or the system. */
125600
+ owner: 'user' | 'system';
125601
+ } | undefined) | undefined;
124857
125602
  } | undefined;
124858
125603
  /** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
124859
125604
  available_climate_presets?: Array<{
@@ -124888,6 +125633,17 @@ interface Routes {
124888
125633
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
124889
125634
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
124890
125635
  manual_override_allowed: boolean;
125636
+ /**
125637
+ Metadata specific to the Ecobee climate, if applicable.
125638
+ */
125639
+ ecobee_metadata?: {
125640
+ /** Reference to the Ecobee climate, if applicable. */
125641
+ climate_ref: string;
125642
+ /** Indicates if the climate preset is optimized by Ecobee. */
125643
+ is_optimized: boolean;
125644
+ /** Indicates whether the climate preset is owned by the user or the system. */
125645
+ owner: 'user' | 'system';
125646
+ } | undefined;
124891
125647
  }> | undefined;
124892
125648
  /** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
124893
125649
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -129430,6 +130186,17 @@ interface Routes {
129430
130186
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
129431
130187
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
129432
130188
  manual_override_allowed?: boolean | undefined;
130189
+ /**
130190
+ Metadata specific to the Ecobee climate, if applicable.
130191
+ */
130192
+ ecobee_metadata?: {
130193
+ /** Reference to the Ecobee climate, if applicable. */
130194
+ climate_ref: string;
130195
+ /** Indicates if the climate preset is optimized by Ecobee. */
130196
+ is_optimized: boolean;
130197
+ /** Indicates whether the climate preset is owned by the user or the system. */
130198
+ owner: 'user' | 'system';
130199
+ } | undefined;
129433
130200
  };
129434
130201
  commonParams: {};
129435
130202
  formData: {};
@@ -131420,6 +132187,13 @@ interface Routes {
131420
132187
  message: string;
131421
132188
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
131422
132189
  warning_code: 'being_deleted';
132190
+ } | {
132191
+ /** Date and time at which Seam created the warning. */
132192
+ created_at: string;
132193
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
132194
+ message: string;
132195
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
132196
+ warning_code: 'acs_user_profile_does_not_match_user_identity';
131423
132197
  }>;
131424
132198
  };
131425
132199
  };
@@ -131619,6 +132393,13 @@ interface Routes {
131619
132393
  message: string;
131620
132394
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
131621
132395
  warning_code: 'being_deleted';
132396
+ } | {
132397
+ /** Date and time at which Seam created the warning. */
132398
+ created_at: string;
132399
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
132400
+ message: string;
132401
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
132402
+ warning_code: 'acs_user_profile_does_not_match_user_identity';
131622
132403
  }>;
131623
132404
  };
131624
132405
  };
@@ -131686,6 +132467,13 @@ interface Routes {
131686
132467
  message: string;
131687
132468
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
131688
132469
  warning_code: 'being_deleted';
132470
+ } | {
132471
+ /** Date and time at which Seam created the warning. */
132472
+ created_at: string;
132473
+ /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
132474
+ message: string;
132475
+ /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
132476
+ warning_code: 'acs_user_profile_does_not_match_user_identity';
131689
132477
  }>;
131690
132478
  }>;
131691
132479
  };
@@ -132332,6 +133120,17 @@ interface Routes {
132332
133120
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
132333
133121
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
132334
133122
  manual_override_allowed?: boolean | undefined;
133123
+ /**
133124
+ Metadata specific to the Ecobee climate, if applicable.
133125
+ */
133126
+ ecobee_metadata?: ({
133127
+ /** Reference to the Ecobee climate, if applicable. */
133128
+ climate_ref: string;
133129
+ /** Indicates if the climate preset is optimized by Ecobee. */
133130
+ is_optimized: boolean;
133131
+ /** Indicates whether the climate preset is owned by the user or the system. */
133132
+ owner: 'user' | 'system';
133133
+ } | undefined) | undefined;
132335
133134
  } | undefined;
132336
133135
  /**
132337
133136
  * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
@@ -132367,6 +133166,17 @@ interface Routes {
132367
133166
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
132368
133167
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
132369
133168
  manual_override_allowed?: boolean | undefined;
133169
+ /**
133170
+ Metadata specific to the Ecobee climate, if applicable.
133171
+ */
133172
+ ecobee_metadata?: ({
133173
+ /** Reference to the Ecobee climate, if applicable. */
133174
+ climate_ref: string;
133175
+ /** Indicates if the climate preset is optimized by Ecobee. */
133176
+ is_optimized: boolean;
133177
+ /** Indicates whether the climate preset is owned by the user or the system. */
133178
+ owner: 'user' | 'system';
133179
+ } | undefined) | undefined;
132370
133180
  } | undefined;
132371
133181
  /** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
132372
133182
  available_climate_presets?: Array<{
@@ -132401,6 +133211,17 @@ interface Routes {
132401
133211
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
132402
133212
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
132403
133213
  manual_override_allowed: boolean;
133214
+ /**
133215
+ Metadata specific to the Ecobee climate, if applicable.
133216
+ */
133217
+ ecobee_metadata?: {
133218
+ /** Reference to the Ecobee climate, if applicable. */
133219
+ climate_ref: string;
133220
+ /** Indicates if the climate preset is optimized by Ecobee. */
133221
+ is_optimized: boolean;
133222
+ /** Indicates whether the climate preset is owned by the user or the system. */
133223
+ owner: 'user' | 'system';
133224
+ } | undefined;
132404
133225
  }> | undefined;
132405
133226
  /** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
132406
133227
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -133459,6 +134280,17 @@ interface Routes {
133459
134280
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
133460
134281
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
133461
134282
  manual_override_allowed?: boolean | undefined;
134283
+ /**
134284
+ Metadata specific to the Ecobee climate, if applicable.
134285
+ */
134286
+ ecobee_metadata?: ({
134287
+ /** Reference to the Ecobee climate, if applicable. */
134288
+ climate_ref: string;
134289
+ /** Indicates if the climate preset is optimized by Ecobee. */
134290
+ is_optimized: boolean;
134291
+ /** Indicates whether the climate preset is owned by the user or the system. */
134292
+ owner: 'user' | 'system';
134293
+ } | undefined) | undefined;
133462
134294
  } | undefined;
133463
134295
  /**
133464
134296
  * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
@@ -133494,6 +134326,17 @@ interface Routes {
133494
134326
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
133495
134327
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
133496
134328
  manual_override_allowed?: boolean | undefined;
134329
+ /**
134330
+ Metadata specific to the Ecobee climate, if applicable.
134331
+ */
134332
+ ecobee_metadata?: ({
134333
+ /** Reference to the Ecobee climate, if applicable. */
134334
+ climate_ref: string;
134335
+ /** Indicates if the climate preset is optimized by Ecobee. */
134336
+ is_optimized: boolean;
134337
+ /** Indicates whether the climate preset is owned by the user or the system. */
134338
+ owner: 'user' | 'system';
134339
+ } | undefined) | undefined;
133497
134340
  } | undefined;
133498
134341
  /** Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat. */
133499
134342
  available_climate_presets?: Array<{
@@ -133528,6 +134371,17 @@ interface Routes {
133528
134371
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
133529
134372
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
133530
134373
  manual_override_allowed: boolean;
134374
+ /**
134375
+ Metadata specific to the Ecobee climate, if applicable.
134376
+ */
134377
+ ecobee_metadata?: {
134378
+ /** Reference to the Ecobee climate, if applicable. */
134379
+ climate_ref: string;
134380
+ /** Indicates if the climate preset is optimized by Ecobee. */
134381
+ is_optimized: boolean;
134382
+ /** Indicates whether the climate preset is owned by the user or the system. */
134383
+ owner: 'user' | 'system';
134384
+ } | undefined;
133531
134385
  }> | undefined;
133532
134386
  /** Key of the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
133533
134387
  fallback_climate_preset_key?: (string | null) | undefined;