@seamapi/types 1.429.1 → 1.431.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 (35) hide show
  1. package/dist/connect.cjs +145 -0
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +573 -0
  4. package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
  5. package/lib/seam/connect/models/acs/acs-credential.js +5 -0
  6. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  7. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
  8. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
  9. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
  10. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +18 -0
  11. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +18 -0
  12. package/lib/seam/connect/models/devices/capability-properties/thermostat.js +8 -1
  13. package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
  14. package/lib/seam/connect/models/devices/device.d.ts +26 -0
  15. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +18 -0
  16. package/lib/seam/connect/models/events/devices.d.ts +2 -0
  17. package/lib/seam/connect/models/events/seam-event.d.ts +1 -0
  18. package/lib/seam/connect/models/phones/phone-session.d.ts +12 -0
  19. package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -0
  20. package/lib/seam/connect/models/thermostats/climate-preset.js +4 -1
  21. package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
  22. package/lib/seam/connect/models/thermostats/modes.d.ts +2 -0
  23. package/lib/seam/connect/models/thermostats/modes.js +8 -0
  24. package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
  25. package/lib/seam/connect/openapi.d.ts +76 -0
  26. package/lib/seam/connect/openapi.js +124 -0
  27. package/lib/seam/connect/openapi.js.map +1 -1
  28. package/lib/seam/connect/route-types.d.ts +422 -0
  29. package/package.json +2 -2
  30. package/src/lib/seam/connect/models/acs/acs-credential.ts +7 -0
  31. package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +8 -0
  32. package/src/lib/seam/connect/models/thermostats/climate-preset.ts +8 -1
  33. package/src/lib/seam/connect/models/thermostats/modes.ts +11 -0
  34. package/src/lib/seam/connect/openapi.ts +138 -0
  35. package/src/lib/seam/connect/route-types.ts +907 -0
@@ -3847,6 +3847,7 @@ type AcsAccessGroup = z.output<typeof acs_access_group>;
3847
3847
  declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
3848
3848
  acs_credential_id: z.ZodString;
3849
3849
  acs_user_id: z.ZodOptional<z.ZodString>;
3850
+ user_identity_id: z.ZodOptional<z.ZodString>;
3850
3851
  connected_account_id: z.ZodString;
3851
3852
  acs_credential_pool_id: z.ZodOptional<z.ZodString>;
3852
3853
  acs_system_id: z.ZodString;
@@ -4068,6 +4069,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4068
4069
  door_names?: string[] | undefined;
4069
4070
  } | undefined;
4070
4071
  is_one_time_use?: boolean | undefined;
4072
+ user_identity_id?: string | undefined;
4071
4073
  issued_at?: string | null | undefined;
4072
4074
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
4073
4075
  external_type_display_name?: string | undefined;
@@ -4139,6 +4141,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4139
4141
  door_names?: string[] | undefined;
4140
4142
  } | undefined;
4141
4143
  is_one_time_use?: boolean | undefined;
4144
+ user_identity_id?: string | undefined;
4142
4145
  issued_at?: string | null | undefined;
4143
4146
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
4144
4147
  external_type_display_name?: string | undefined;
@@ -4154,6 +4157,7 @@ declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4154
4157
  declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4155
4158
  acs_credential_id: z.ZodString;
4156
4159
  acs_user_id: z.ZodOptional<z.ZodString>;
4160
+ user_identity_id: z.ZodOptional<z.ZodString>;
4157
4161
  connected_account_id: z.ZodString;
4158
4162
  acs_credential_pool_id: z.ZodOptional<z.ZodString>;
4159
4163
  acs_system_id: z.ZodString;
@@ -4375,6 +4379,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4375
4379
  door_names?: string[] | undefined;
4376
4380
  } | undefined;
4377
4381
  is_one_time_use?: boolean | undefined;
4382
+ user_identity_id?: string | undefined;
4378
4383
  issued_at?: string | null | undefined;
4379
4384
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
4380
4385
  external_type_display_name?: string | undefined;
@@ -4446,6 +4451,7 @@ declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
4446
4451
  door_names?: string[] | undefined;
4447
4452
  } | undefined;
4448
4453
  is_one_time_use?: boolean | undefined;
4454
+ user_identity_id?: string | undefined;
4449
4455
  issued_at?: string | null | undefined;
4450
4456
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
4451
4457
  external_type_display_name?: string | undefined;
@@ -6565,6 +6571,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6565
6571
  acs_credential_on_seam: z.ZodNullable<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
6566
6572
  acs_credential_id: z.ZodString;
6567
6573
  acs_user_id: z.ZodOptional<z.ZodString>;
6574
+ user_identity_id: z.ZodOptional<z.ZodString>;
6568
6575
  connected_account_id: z.ZodString;
6569
6576
  acs_credential_pool_id: z.ZodOptional<z.ZodString>;
6570
6577
  acs_system_id: z.ZodString;
@@ -6786,6 +6793,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6786
6793
  door_names?: string[] | undefined;
6787
6794
  } | undefined;
6788
6795
  is_one_time_use?: boolean | undefined;
6796
+ user_identity_id?: string | undefined;
6789
6797
  issued_at?: string | null | undefined;
6790
6798
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
6791
6799
  external_type_display_name?: string | undefined;
@@ -6857,6 +6865,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6857
6865
  door_names?: string[] | undefined;
6858
6866
  } | undefined;
6859
6867
  is_one_time_use?: boolean | undefined;
6868
+ user_identity_id?: string | undefined;
6860
6869
  issued_at?: string | null | undefined;
6861
6870
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
6862
6871
  external_type_display_name?: string | undefined;
@@ -6871,6 +6880,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
6871
6880
  }>, z.ZodObject<z.objectUtil.extendShape<{
6872
6881
  acs_credential_id: z.ZodString;
6873
6882
  acs_user_id: z.ZodOptional<z.ZodString>;
6883
+ user_identity_id: z.ZodOptional<z.ZodString>;
6874
6884
  connected_account_id: z.ZodString;
6875
6885
  acs_credential_pool_id: z.ZodOptional<z.ZodString>;
6876
6886
  acs_system_id: z.ZodString;
@@ -7092,6 +7102,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7092
7102
  door_names?: string[] | undefined;
7093
7103
  } | undefined;
7094
7104
  is_one_time_use?: boolean | undefined;
7105
+ user_identity_id?: string | undefined;
7095
7106
  issued_at?: string | null | undefined;
7096
7107
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
7097
7108
  external_type_display_name?: string | undefined;
@@ -7163,6 +7174,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7163
7174
  door_names?: string[] | undefined;
7164
7175
  } | undefined;
7165
7176
  is_one_time_use?: boolean | undefined;
7177
+ user_identity_id?: string | undefined;
7166
7178
  issued_at?: string | null | undefined;
7167
7179
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
7168
7180
  external_type_display_name?: string | undefined;
@@ -7271,6 +7283,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7271
7283
  door_names?: string[] | undefined;
7272
7284
  } | undefined;
7273
7285
  is_one_time_use?: boolean | undefined;
7286
+ user_identity_id?: string | undefined;
7274
7287
  issued_at?: string | null | undefined;
7275
7288
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
7276
7289
  external_type_display_name?: string | undefined;
@@ -7342,6 +7355,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7342
7355
  door_names?: string[] | undefined;
7343
7356
  } | undefined;
7344
7357
  is_one_time_use?: boolean | undefined;
7358
+ user_identity_id?: string | undefined;
7345
7359
  issued_at?: string | null | undefined;
7346
7360
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
7347
7361
  external_type_display_name?: string | undefined;
@@ -7440,6 +7454,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7440
7454
  door_names?: string[] | undefined;
7441
7455
  } | undefined;
7442
7456
  is_one_time_use?: boolean | undefined;
7457
+ user_identity_id?: string | undefined;
7443
7458
  issued_at?: string | null | undefined;
7444
7459
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
7445
7460
  external_type_display_name?: string | undefined;
@@ -7511,6 +7526,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7511
7526
  door_names?: string[] | undefined;
7512
7527
  } | undefined;
7513
7528
  is_one_time_use?: boolean | undefined;
7529
+ user_identity_id?: string | undefined;
7514
7530
  issued_at?: string | null | undefined;
7515
7531
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
7516
7532
  external_type_display_name?: string | undefined;
@@ -7614,6 +7630,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7614
7630
  door_names?: string[] | undefined;
7615
7631
  } | undefined;
7616
7632
  is_one_time_use?: boolean | undefined;
7633
+ user_identity_id?: string | undefined;
7617
7634
  issued_at?: string | null | undefined;
7618
7635
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
7619
7636
  external_type_display_name?: string | undefined;
@@ -7685,6 +7702,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7685
7702
  door_names?: string[] | undefined;
7686
7703
  } | undefined;
7687
7704
  is_one_time_use?: boolean | undefined;
7705
+ user_identity_id?: string | undefined;
7688
7706
  issued_at?: string | null | undefined;
7689
7707
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
7690
7708
  external_type_display_name?: string | undefined;
@@ -7789,6 +7807,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7789
7807
  door_names?: string[] | undefined;
7790
7808
  } | undefined;
7791
7809
  is_one_time_use?: boolean | undefined;
7810
+ user_identity_id?: string | undefined;
7792
7811
  issued_at?: string | null | undefined;
7793
7812
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
7794
7813
  external_type_display_name?: string | undefined;
@@ -7860,6 +7879,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7860
7879
  door_names?: string[] | undefined;
7861
7880
  } | undefined;
7862
7881
  is_one_time_use?: boolean | undefined;
7882
+ user_identity_id?: string | undefined;
7863
7883
  issued_at?: string | null | undefined;
7864
7884
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
7865
7885
  external_type_display_name?: string | undefined;
@@ -7972,6 +7992,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
7972
7992
  result: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
7973
7993
  acs_credential_id: z.ZodString;
7974
7994
  acs_user_id: z.ZodOptional<z.ZodString>;
7995
+ user_identity_id: z.ZodOptional<z.ZodString>;
7975
7996
  connected_account_id: z.ZodString;
7976
7997
  acs_credential_pool_id: z.ZodOptional<z.ZodString>;
7977
7998
  acs_system_id: z.ZodString;
@@ -8193,6 +8214,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8193
8214
  door_names?: string[] | undefined;
8194
8215
  } | undefined;
8195
8216
  is_one_time_use?: boolean | undefined;
8217
+ user_identity_id?: string | undefined;
8196
8218
  issued_at?: string | null | undefined;
8197
8219
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
8198
8220
  external_type_display_name?: string | undefined;
@@ -8264,6 +8286,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8264
8286
  door_names?: string[] | undefined;
8265
8287
  } | undefined;
8266
8288
  is_one_time_use?: boolean | undefined;
8289
+ user_identity_id?: string | undefined;
8267
8290
  issued_at?: string | null | undefined;
8268
8291
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
8269
8292
  external_type_display_name?: string | undefined;
@@ -8278,6 +8301,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8278
8301
  }>, z.ZodObject<z.objectUtil.extendShape<{
8279
8302
  acs_credential_id: z.ZodString;
8280
8303
  acs_user_id: z.ZodOptional<z.ZodString>;
8304
+ user_identity_id: z.ZodOptional<z.ZodString>;
8281
8305
  connected_account_id: z.ZodString;
8282
8306
  acs_credential_pool_id: z.ZodOptional<z.ZodString>;
8283
8307
  acs_system_id: z.ZodString;
@@ -8499,6 +8523,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8499
8523
  door_names?: string[] | undefined;
8500
8524
  } | undefined;
8501
8525
  is_one_time_use?: boolean | undefined;
8526
+ user_identity_id?: string | undefined;
8502
8527
  issued_at?: string | null | undefined;
8503
8528
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
8504
8529
  external_type_display_name?: string | undefined;
@@ -8570,6 +8595,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8570
8595
  door_names?: string[] | undefined;
8571
8596
  } | undefined;
8572
8597
  is_one_time_use?: boolean | undefined;
8598
+ user_identity_id?: string | undefined;
8573
8599
  issued_at?: string | null | undefined;
8574
8600
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
8575
8601
  external_type_display_name?: string | undefined;
@@ -8646,6 +8672,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8646
8672
  door_names?: string[] | undefined;
8647
8673
  } | undefined;
8648
8674
  is_one_time_use?: boolean | undefined;
8675
+ user_identity_id?: string | undefined;
8649
8676
  issued_at?: string | null | undefined;
8650
8677
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
8651
8678
  external_type_display_name?: string | undefined;
@@ -8717,6 +8744,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8717
8744
  door_names?: string[] | undefined;
8718
8745
  } | undefined;
8719
8746
  is_one_time_use?: boolean | undefined;
8747
+ user_identity_id?: string | undefined;
8720
8748
  issued_at?: string | null | undefined;
8721
8749
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
8722
8750
  external_type_display_name?: string | undefined;
@@ -8794,6 +8822,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8794
8822
  door_names?: string[] | undefined;
8795
8823
  } | undefined;
8796
8824
  is_one_time_use?: boolean | undefined;
8825
+ user_identity_id?: string | undefined;
8797
8826
  issued_at?: string | null | undefined;
8798
8827
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
8799
8828
  external_type_display_name?: string | undefined;
@@ -8865,6 +8894,7 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
8865
8894
  door_names?: string[] | undefined;
8866
8895
  } | undefined;
8867
8896
  is_one_time_use?: boolean | undefined;
8897
+ user_identity_id?: string | undefined;
8868
8898
  issued_at?: string | null | undefined;
8869
8899
  external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
8870
8900
  external_type_display_name?: string | undefined;
@@ -12964,6 +12994,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
12964
12994
  relative_humidity: z.ZodOptional<z.ZodNumber>;
12965
12995
  available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
12966
12996
  available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
12997
+ available_climate_preset_modes: z.ZodOptional<z.ZodArray<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>, "many">>;
12967
12998
  is_heating: z.ZodOptional<z.ZodBoolean>;
12968
12999
  is_cooling: z.ZodOptional<z.ZodBoolean>;
12969
13000
  is_fan_running: z.ZodOptional<z.ZodBoolean>;
@@ -12976,6 +13007,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
12976
13007
  can_program: z.ZodOptional<z.ZodBoolean>;
12977
13008
  name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
12978
13009
  display_name: z.ZodOptional<z.ZodString>;
13010
+ climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
12979
13011
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
12980
13012
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
12981
13013
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -12990,6 +13022,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
12990
13022
  can_program?: boolean | undefined;
12991
13023
  name?: string | null | undefined;
12992
13024
  display_name?: string | undefined;
13025
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
12993
13026
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
12994
13027
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
12995
13028
  cooling_set_point_celsius?: number | undefined;
@@ -13004,6 +13037,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13004
13037
  can_program?: boolean | undefined;
13005
13038
  name?: string | null | undefined;
13006
13039
  display_name?: string | undefined;
13040
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13007
13041
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13008
13042
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13009
13043
  cooling_set_point_celsius?: number | undefined;
@@ -13019,6 +13053,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13019
13053
  can_program: z.ZodOptional<z.ZodBoolean>;
13020
13054
  name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
13021
13055
  display_name: z.ZodOptional<z.ZodString>;
13056
+ climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
13022
13057
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
13023
13058
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
13024
13059
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -13033,6 +13068,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13033
13068
  can_program?: boolean | undefined;
13034
13069
  name?: string | null | undefined;
13035
13070
  display_name?: string | undefined;
13071
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13036
13072
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13037
13073
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13038
13074
  cooling_set_point_celsius?: number | undefined;
@@ -13047,6 +13083,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13047
13083
  can_program?: boolean | undefined;
13048
13084
  name?: string | null | undefined;
13049
13085
  display_name?: string | undefined;
13086
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13050
13087
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13051
13088
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13052
13089
  cooling_set_point_celsius?: number | undefined;
@@ -13062,6 +13099,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13062
13099
  can_program: z.ZodBoolean;
13063
13100
  name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
13064
13101
  display_name: z.ZodString;
13102
+ climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
13065
13103
  fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
13066
13104
  hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
13067
13105
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
@@ -13077,6 +13115,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13077
13115
  display_name: string;
13078
13116
  manual_override_allowed: boolean;
13079
13117
  name?: string | null | undefined;
13118
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13080
13119
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13081
13120
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13082
13121
  cooling_set_point_celsius?: number | undefined;
@@ -13091,6 +13130,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13091
13130
  display_name: string;
13092
13131
  manual_override_allowed: boolean;
13093
13132
  name?: string | null | undefined;
13133
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13094
13134
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13095
13135
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13096
13136
  cooling_set_point_celsius?: number | undefined;
@@ -13250,6 +13290,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13250
13290
  relative_humidity?: number | undefined;
13251
13291
  available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
13252
13292
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
13293
+ available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
13253
13294
  is_heating?: boolean | undefined;
13254
13295
  is_cooling?: boolean | undefined;
13255
13296
  is_fan_running?: boolean | undefined;
@@ -13261,6 +13302,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13261
13302
  can_program?: boolean | undefined;
13262
13303
  name?: string | null | undefined;
13263
13304
  display_name?: string | undefined;
13305
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13264
13306
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13265
13307
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13266
13308
  cooling_set_point_celsius?: number | undefined;
@@ -13276,6 +13318,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13276
13318
  can_program?: boolean | undefined;
13277
13319
  name?: string | null | undefined;
13278
13320
  display_name?: string | undefined;
13321
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13279
13322
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13280
13323
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13281
13324
  cooling_set_point_celsius?: number | undefined;
@@ -13292,6 +13335,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13292
13335
  display_name: string;
13293
13336
  manual_override_allowed: boolean;
13294
13337
  name?: string | null | undefined;
13338
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13295
13339
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13296
13340
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13297
13341
  cooling_set_point_celsius?: number | undefined;
@@ -13361,6 +13405,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13361
13405
  relative_humidity?: number | undefined;
13362
13406
  available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
13363
13407
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
13408
+ available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
13364
13409
  is_heating?: boolean | undefined;
13365
13410
  is_cooling?: boolean | undefined;
13366
13411
  is_fan_running?: boolean | undefined;
@@ -13372,6 +13417,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13372
13417
  can_program?: boolean | undefined;
13373
13418
  name?: string | null | undefined;
13374
13419
  display_name?: string | undefined;
13420
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13375
13421
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13376
13422
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13377
13423
  cooling_set_point_celsius?: number | undefined;
@@ -13387,6 +13433,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13387
13433
  can_program?: boolean | undefined;
13388
13434
  name?: string | null | undefined;
13389
13435
  display_name?: string | undefined;
13436
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13390
13437
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13391
13438
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13392
13439
  cooling_set_point_celsius?: number | undefined;
@@ -13403,6 +13450,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
13403
13450
  display_name: string;
13404
13451
  manual_override_allowed: boolean;
13405
13452
  name?: string | null | undefined;
13453
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
13406
13454
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
13407
13455
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
13408
13456
  cooling_set_point_celsius?: number | undefined;
@@ -14579,6 +14627,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14579
14627
  relative_humidity?: number | undefined;
14580
14628
  available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
14581
14629
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
14630
+ available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
14582
14631
  is_heating?: boolean | undefined;
14583
14632
  is_cooling?: boolean | undefined;
14584
14633
  is_fan_running?: boolean | undefined;
@@ -14590,6 +14639,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14590
14639
  can_program?: boolean | undefined;
14591
14640
  name?: string | null | undefined;
14592
14641
  display_name?: string | undefined;
14642
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
14593
14643
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
14594
14644
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
14595
14645
  cooling_set_point_celsius?: number | undefined;
@@ -14605,6 +14655,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14605
14655
  can_program?: boolean | undefined;
14606
14656
  name?: string | null | undefined;
14607
14657
  display_name?: string | undefined;
14658
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
14608
14659
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
14609
14660
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
14610
14661
  cooling_set_point_celsius?: number | undefined;
@@ -14621,6 +14672,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
14621
14672
  display_name: string;
14622
14673
  manual_override_allowed: boolean;
14623
14674
  name?: string | null | undefined;
14675
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
14624
14676
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
14625
14677
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
14626
14678
  cooling_set_point_celsius?: number | undefined;
@@ -15194,6 +15246,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
15194
15246
  relative_humidity?: number | undefined;
15195
15247
  available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
15196
15248
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
15249
+ available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
15197
15250
  is_heating?: boolean | undefined;
15198
15251
  is_cooling?: boolean | undefined;
15199
15252
  is_fan_running?: boolean | undefined;
@@ -15205,6 +15258,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
15205
15258
  can_program?: boolean | undefined;
15206
15259
  name?: string | null | undefined;
15207
15260
  display_name?: string | undefined;
15261
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
15208
15262
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
15209
15263
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
15210
15264
  cooling_set_point_celsius?: number | undefined;
@@ -15220,6 +15274,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
15220
15274
  can_program?: boolean | undefined;
15221
15275
  name?: string | null | undefined;
15222
15276
  display_name?: string | undefined;
15277
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
15223
15278
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
15224
15279
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
15225
15280
  cooling_set_point_celsius?: number | undefined;
@@ -15236,6 +15291,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
15236
15291
  display_name: string;
15237
15292
  manual_override_allowed: boolean;
15238
15293
  name?: string | null | undefined;
15294
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
15239
15295
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
15240
15296
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
15241
15297
  cooling_set_point_celsius?: number | undefined;
@@ -16923,6 +16979,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16923
16979
  relative_humidity: z.ZodOptional<z.ZodNumber>;
16924
16980
  available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
16925
16981
  available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
16982
+ available_climate_preset_modes: z.ZodOptional<z.ZodArray<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>, "many">>;
16926
16983
  is_heating: z.ZodOptional<z.ZodBoolean>;
16927
16984
  is_cooling: z.ZodOptional<z.ZodBoolean>;
16928
16985
  is_fan_running: z.ZodOptional<z.ZodBoolean>;
@@ -16935,6 +16992,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16935
16992
  can_program: z.ZodOptional<z.ZodBoolean>;
16936
16993
  name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
16937
16994
  display_name: z.ZodOptional<z.ZodString>;
16995
+ climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
16938
16996
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
16939
16997
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
16940
16998
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -16949,6 +17007,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16949
17007
  can_program?: boolean | undefined;
16950
17008
  name?: string | null | undefined;
16951
17009
  display_name?: string | undefined;
17010
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
16952
17011
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
16953
17012
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
16954
17013
  cooling_set_point_celsius?: number | undefined;
@@ -16963,6 +17022,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16963
17022
  can_program?: boolean | undefined;
16964
17023
  name?: string | null | undefined;
16965
17024
  display_name?: string | undefined;
17025
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
16966
17026
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
16967
17027
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
16968
17028
  cooling_set_point_celsius?: number | undefined;
@@ -16978,6 +17038,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16978
17038
  can_program: z.ZodOptional<z.ZodBoolean>;
16979
17039
  name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
16980
17040
  display_name: z.ZodOptional<z.ZodString>;
17041
+ climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
16981
17042
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
16982
17043
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
16983
17044
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -16992,6 +17053,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
16992
17053
  can_program?: boolean | undefined;
16993
17054
  name?: string | null | undefined;
16994
17055
  display_name?: string | undefined;
17056
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
16995
17057
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
16996
17058
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
16997
17059
  cooling_set_point_celsius?: number | undefined;
@@ -17006,6 +17068,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17006
17068
  can_program?: boolean | undefined;
17007
17069
  name?: string | null | undefined;
17008
17070
  display_name?: string | undefined;
17071
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17009
17072
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17010
17073
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17011
17074
  cooling_set_point_celsius?: number | undefined;
@@ -17021,6 +17084,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17021
17084
  can_program: z.ZodBoolean;
17022
17085
  name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
17023
17086
  display_name: z.ZodString;
17087
+ climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
17024
17088
  fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
17025
17089
  hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
17026
17090
  cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
@@ -17036,6 +17100,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17036
17100
  display_name: string;
17037
17101
  manual_override_allowed: boolean;
17038
17102
  name?: string | null | undefined;
17103
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17039
17104
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17040
17105
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17041
17106
  cooling_set_point_celsius?: number | undefined;
@@ -17050,6 +17115,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17050
17115
  display_name: string;
17051
17116
  manual_override_allowed: boolean;
17052
17117
  name?: string | null | undefined;
17118
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17053
17119
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17054
17120
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17055
17121
  cooling_set_point_celsius?: number | undefined;
@@ -17209,6 +17275,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17209
17275
  relative_humidity?: number | undefined;
17210
17276
  available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
17211
17277
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
17278
+ available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
17212
17279
  is_heating?: boolean | undefined;
17213
17280
  is_cooling?: boolean | undefined;
17214
17281
  is_fan_running?: boolean | undefined;
@@ -17220,6 +17287,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17220
17287
  can_program?: boolean | undefined;
17221
17288
  name?: string | null | undefined;
17222
17289
  display_name?: string | undefined;
17290
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17223
17291
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17224
17292
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17225
17293
  cooling_set_point_celsius?: number | undefined;
@@ -17235,6 +17303,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17235
17303
  can_program?: boolean | undefined;
17236
17304
  name?: string | null | undefined;
17237
17305
  display_name?: string | undefined;
17306
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17238
17307
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17239
17308
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17240
17309
  cooling_set_point_celsius?: number | undefined;
@@ -17251,6 +17320,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17251
17320
  display_name: string;
17252
17321
  manual_override_allowed: boolean;
17253
17322
  name?: string | null | undefined;
17323
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17254
17324
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17255
17325
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17256
17326
  cooling_set_point_celsius?: number | undefined;
@@ -17320,6 +17390,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17320
17390
  relative_humidity?: number | undefined;
17321
17391
  available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
17322
17392
  available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
17393
+ available_climate_preset_modes?: ("home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied")[] | undefined;
17323
17394
  is_heating?: boolean | undefined;
17324
17395
  is_cooling?: boolean | undefined;
17325
17396
  is_fan_running?: boolean | undefined;
@@ -17331,6 +17402,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17331
17402
  can_program?: boolean | undefined;
17332
17403
  name?: string | null | undefined;
17333
17404
  display_name?: string | undefined;
17405
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17334
17406
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17335
17407
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17336
17408
  cooling_set_point_celsius?: number | undefined;
@@ -17346,6 +17418,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17346
17418
  can_program?: boolean | undefined;
17347
17419
  name?: string | null | undefined;
17348
17420
  display_name?: string | undefined;
17421
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17349
17422
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17350
17423
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17351
17424
  cooling_set_point_celsius?: number | undefined;
@@ -17362,6 +17435,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
17362
17435
  display_name: string;
17363
17436
  manual_override_allowed: boolean;
17364
17437
  name?: string | null | undefined;
17438
+ climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
17365
17439
  fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
17366
17440
  hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
17367
17441
  cooling_set_point_celsius?: number | undefined;
@@ -20951,6 +21025,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<z.o
20951
21025
  can_program: z.ZodOptional<z.ZodBoolean>;
20952
21026
  name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
20953
21027
  display_name: z.ZodOptional<z.ZodString>;
21028
+ climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
20954
21029
  fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
20955
21030
  hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
20956
21031
  cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -22422,6 +22497,11 @@ declare const _default: {
22422
22497
  description: string;
22423
22498
  type: string;
22424
22499
  };
22500
+ user_identity_id: {
22501
+ description: string;
22502
+ format: string;
22503
+ type: string;
22504
+ };
22425
22505
  visionline_metadata: {
22426
22506
  description: string;
22427
22507
  properties: {
@@ -23972,6 +24052,11 @@ declare const _default: {
23972
24052
  description: string;
23973
24053
  type: string;
23974
24054
  };
24055
+ user_identity_id: {
24056
+ description: string;
24057
+ format: string;
24058
+ type: string;
24059
+ };
23975
24060
  visionline_metadata: {
23976
24061
  description: string;
23977
24062
  properties: {
@@ -24224,6 +24309,11 @@ declare const _default: {
24224
24309
  description: string;
24225
24310
  type: string;
24226
24311
  };
24312
+ user_identity_id: {
24313
+ description: string;
24314
+ format: string;
24315
+ type: string;
24316
+ };
24227
24317
  visionline_metadata: {
24228
24318
  description: string;
24229
24319
  properties: {
@@ -24588,6 +24678,11 @@ declare const _default: {
24588
24678
  description: string;
24589
24679
  type: string;
24590
24680
  };
24681
+ user_identity_id: {
24682
+ description: string;
24683
+ format: string;
24684
+ type: string;
24685
+ };
24591
24686
  visionline_metadata: {
24592
24687
  description: string;
24593
24688
  properties: {
@@ -24840,6 +24935,11 @@ declare const _default: {
24840
24935
  description: string;
24841
24936
  type: string;
24842
24937
  };
24938
+ user_identity_id: {
24939
+ description: string;
24940
+ format: string;
24941
+ type: string;
24942
+ };
24843
24943
  visionline_metadata: {
24844
24944
  description: string;
24845
24945
  properties: {
@@ -27417,6 +27517,7 @@ declare const _default: {
27417
27517
  };
27418
27518
  active_thermostat_schedule?: never;
27419
27519
  active_thermostat_schedule_id?: never;
27520
+ available_climate_preset_modes?: never;
27420
27521
  available_climate_presets?: never;
27421
27522
  available_fan_mode_settings?: never;
27422
27523
  available_hvac_mode_settings?: never;
@@ -27535,6 +27636,16 @@ declare const _default: {
27535
27636
  type: string;
27536
27637
  'x-property-group-key': string;
27537
27638
  };
27639
+ available_climate_preset_modes: {
27640
+ description: string;
27641
+ items: {
27642
+ enum: string[];
27643
+ type: string;
27644
+ };
27645
+ type: string;
27646
+ 'x-draft': string;
27647
+ 'x-property-group-key': string;
27648
+ };
27538
27649
  available_climate_presets: {
27539
27650
  description: string;
27540
27651
  items: {
@@ -27555,6 +27666,11 @@ declare const _default: {
27555
27666
  description: string;
27556
27667
  type: string;
27557
27668
  };
27669
+ climate_preset_mode: {
27670
+ description: string;
27671
+ enum: string[];
27672
+ type: string;
27673
+ };
27558
27674
  cooling_set_point_celsius: {
27559
27675
  description: string;
27560
27676
  format: string;
@@ -27645,6 +27761,11 @@ declare const _default: {
27645
27761
  description: string;
27646
27762
  type: string;
27647
27763
  };
27764
+ climate_preset_mode: {
27765
+ description: string;
27766
+ enum: string[];
27767
+ type: string;
27768
+ };
27648
27769
  cooling_set_point_celsius: {
27649
27770
  description: string;
27650
27771
  format: string;
@@ -27714,6 +27835,11 @@ declare const _default: {
27714
27835
  description: string;
27715
27836
  type: string;
27716
27837
  };
27838
+ climate_preset_mode: {
27839
+ description: string;
27840
+ enum: string[];
27841
+ type: string;
27842
+ };
27717
27843
  cooling_set_point_celsius: {
27718
27844
  description: string;
27719
27845
  format: string;
@@ -32082,6 +32208,11 @@ declare const _default: {
32082
32208
  description: string;
32083
32209
  type: string;
32084
32210
  };
32211
+ user_identity_id: {
32212
+ description: string;
32213
+ format: string;
32214
+ type: string;
32215
+ };
32085
32216
  visionline_metadata: {
32086
32217
  description: string;
32087
32218
  properties: {
@@ -32955,6 +33086,11 @@ declare const _default: {
32955
33086
  description: string;
32956
33087
  type: string;
32957
33088
  };
33089
+ user_identity_id: {
33090
+ description: string;
33091
+ format: string;
33092
+ type: string;
33093
+ };
32958
33094
  visionline_metadata: {
32959
33095
  description: string;
32960
33096
  properties: {
@@ -59496,6 +59632,11 @@ declare const _default: {
59496
59632
  description: string;
59497
59633
  type: string;
59498
59634
  };
59635
+ climate_preset_mode: {
59636
+ description: string;
59637
+ enum: string[];
59638
+ type: string;
59639
+ };
59499
59640
  cooling_set_point_celsius: {
59500
59641
  description: string;
59501
59642
  format: string;
@@ -62681,6 +62822,11 @@ declare const _default: {
62681
62822
  description: string;
62682
62823
  type: string;
62683
62824
  };
62825
+ climate_preset_mode: {
62826
+ description: string;
62827
+ enum: string[];
62828
+ type: string;
62829
+ };
62684
62830
  cooling_set_point_celsius: {
62685
62831
  description: string;
62686
62832
  format: string;
@@ -62799,6 +62945,11 @@ declare const _default: {
62799
62945
  description: string;
62800
62946
  type: string;
62801
62947
  };
62948
+ climate_preset_mode: {
62949
+ description: string;
62950
+ enum: string[];
62951
+ type: string;
62952
+ };
62802
62953
  cooling_set_point_celsius: {
62803
62954
  description: string;
62804
62955
  format: string;
@@ -69500,6 +69651,8 @@ interface Routes {
69500
69651
  acs_credential_id: string;
69501
69652
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69502
69653
  acs_user_id?: string | undefined;
69654
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69655
+ user_identity_id?: string | undefined;
69503
69656
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69504
69657
  connected_account_id: string;
69505
69658
  acs_credential_pool_id?: string | undefined;
@@ -69628,6 +69781,8 @@ interface Routes {
69628
69781
  acs_credential_id: string;
69629
69782
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69630
69783
  acs_user_id?: string | undefined;
69784
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69785
+ user_identity_id?: string | undefined;
69631
69786
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69632
69787
  connected_account_id: string;
69633
69788
  acs_credential_pool_id?: string | undefined;
@@ -69808,6 +69963,8 @@ interface Routes {
69808
69963
  acs_credential_id: string;
69809
69964
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69810
69965
  acs_user_id?: string | undefined;
69966
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69967
+ user_identity_id?: string | undefined;
69811
69968
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69812
69969
  connected_account_id: string;
69813
69970
  acs_credential_pool_id?: string | undefined;
@@ -69936,6 +70093,8 @@ interface Routes {
69936
70093
  acs_credential_id: string;
69937
70094
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69938
70095
  acs_user_id?: string | undefined;
70096
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
70097
+ user_identity_id?: string | undefined;
69939
70098
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
69940
70099
  connected_account_id: string;
69941
70100
  acs_credential_pool_id?: string | undefined;
@@ -71820,6 +71979,8 @@ interface Routes {
71820
71979
  acs_credential_id: string;
71821
71980
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71822
71981
  acs_user_id?: string | undefined;
71982
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71983
+ user_identity_id?: string | undefined;
71823
71984
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71824
71985
  connected_account_id: string;
71825
71986
  acs_credential_pool_id?: string | undefined;
@@ -71948,6 +72109,8 @@ interface Routes {
71948
72109
  acs_credential_id: string;
71949
72110
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71950
72111
  acs_user_id?: string | undefined;
72112
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
72113
+ user_identity_id?: string | undefined;
71951
72114
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
71952
72115
  connected_account_id: string;
71953
72116
  acs_credential_pool_id?: string | undefined;
@@ -72128,6 +72291,8 @@ interface Routes {
72128
72291
  acs_credential_id: string;
72129
72292
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
72130
72293
  acs_user_id?: string | undefined;
72294
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
72295
+ user_identity_id?: string | undefined;
72131
72296
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
72132
72297
  connected_account_id: string;
72133
72298
  acs_credential_pool_id?: string | undefined;
@@ -72256,6 +72421,8 @@ interface Routes {
72256
72421
  acs_credential_id: string;
72257
72422
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
72258
72423
  acs_user_id?: string | undefined;
72424
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
72425
+ user_identity_id?: string | undefined;
72259
72426
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
72260
72427
  connected_account_id: string;
72261
72428
  acs_credential_pool_id?: string | undefined;
@@ -75744,6 +75911,8 @@ interface Routes {
75744
75911
  acs_credential_id: string;
75745
75912
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
75746
75913
  acs_user_id?: string | undefined;
75914
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
75915
+ user_identity_id?: string | undefined;
75747
75916
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
75748
75917
  connected_account_id: string;
75749
75918
  acs_credential_pool_id?: string | undefined;
@@ -75872,6 +76041,8 @@ interface Routes {
75872
76041
  acs_credential_id: string;
75873
76042
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
75874
76043
  acs_user_id?: string | undefined;
76044
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
76045
+ user_identity_id?: string | undefined;
75875
76046
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
75876
76047
  connected_account_id: string;
75877
76048
  acs_credential_pool_id?: string | undefined;
@@ -76052,6 +76223,8 @@ interface Routes {
76052
76223
  acs_credential_id: string;
76053
76224
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
76054
76225
  acs_user_id?: string | undefined;
76226
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
76227
+ user_identity_id?: string | undefined;
76055
76228
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
76056
76229
  connected_account_id: string;
76057
76230
  acs_credential_pool_id?: string | undefined;
@@ -76180,6 +76353,8 @@ interface Routes {
76180
76353
  acs_credential_id: string;
76181
76354
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
76182
76355
  acs_user_id?: string | undefined;
76356
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
76357
+ user_identity_id?: string | undefined;
76183
76358
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
76184
76359
  connected_account_id: string;
76185
76360
  acs_credential_pool_id?: string | undefined;
@@ -78072,6 +78247,8 @@ interface Routes {
78072
78247
  acs_credential_id: string;
78073
78248
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78074
78249
  acs_user_id?: string | undefined;
78250
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78251
+ user_identity_id?: string | undefined;
78075
78252
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78076
78253
  connected_account_id: string;
78077
78254
  acs_credential_pool_id?: string | undefined;
@@ -78200,6 +78377,8 @@ interface Routes {
78200
78377
  acs_credential_id: string;
78201
78378
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78202
78379
  acs_user_id?: string | undefined;
78380
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78381
+ user_identity_id?: string | undefined;
78203
78382
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78204
78383
  connected_account_id: string;
78205
78384
  acs_credential_pool_id?: string | undefined;
@@ -78380,6 +78559,8 @@ interface Routes {
78380
78559
  acs_credential_id: string;
78381
78560
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78382
78561
  acs_user_id?: string | undefined;
78562
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78563
+ user_identity_id?: string | undefined;
78383
78564
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78384
78565
  connected_account_id: string;
78385
78566
  acs_credential_pool_id?: string | undefined;
@@ -78508,6 +78689,8 @@ interface Routes {
78508
78689
  acs_credential_id: string;
78509
78690
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78510
78691
  acs_user_id?: string | undefined;
78692
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78693
+ user_identity_id?: string | undefined;
78511
78694
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
78512
78695
  connected_account_id: string;
78513
78696
  acs_credential_pool_id?: string | undefined;
@@ -79584,6 +79767,8 @@ interface Routes {
79584
79767
  acs_credential_id: string;
79585
79768
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79586
79769
  acs_user_id?: string | undefined;
79770
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79771
+ user_identity_id?: string | undefined;
79587
79772
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79588
79773
  connected_account_id: string;
79589
79774
  acs_credential_pool_id?: string | undefined;
@@ -79712,6 +79897,8 @@ interface Routes {
79712
79897
  acs_credential_id: string;
79713
79898
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79714
79899
  acs_user_id?: string | undefined;
79900
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79901
+ user_identity_id?: string | undefined;
79715
79902
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79716
79903
  connected_account_id: string;
79717
79904
  acs_credential_pool_id?: string | undefined;
@@ -79892,6 +80079,8 @@ interface Routes {
79892
80079
  acs_credential_id: string;
79893
80080
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79894
80081
  acs_user_id?: string | undefined;
80082
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80083
+ user_identity_id?: string | undefined;
79895
80084
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
79896
80085
  connected_account_id: string;
79897
80086
  acs_credential_pool_id?: string | undefined;
@@ -80020,6 +80209,8 @@ interface Routes {
80020
80209
  acs_credential_id: string;
80021
80210
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80022
80211
  acs_user_id?: string | undefined;
80212
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80213
+ user_identity_id?: string | undefined;
80023
80214
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
80024
80215
  connected_account_id: string;
80025
80216
  acs_credential_pool_id?: string | undefined;
@@ -81389,6 +81580,8 @@ interface Routes {
81389
81580
  acs_credential_id: string;
81390
81581
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81391
81582
  acs_user_id?: string | undefined;
81583
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81584
+ user_identity_id?: string | undefined;
81392
81585
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81393
81586
  connected_account_id: string;
81394
81587
  acs_credential_pool_id?: string | undefined;
@@ -81582,6 +81775,8 @@ interface Routes {
81582
81775
  acs_credential_id: string;
81583
81776
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81584
81777
  acs_user_id?: string | undefined;
81778
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81779
+ user_identity_id?: string | undefined;
81585
81780
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81586
81781
  connected_account_id: string;
81587
81782
  acs_credential_pool_id?: string | undefined;
@@ -81737,6 +81932,8 @@ interface Routes {
81737
81932
  acs_credential_id: string;
81738
81933
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81739
81934
  acs_user_id?: string | undefined;
81935
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81936
+ user_identity_id?: string | undefined;
81740
81937
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81741
81938
  connected_account_id: string;
81742
81939
  acs_credential_pool_id?: string | undefined;
@@ -81896,6 +82093,8 @@ interface Routes {
81896
82093
  acs_credential_id: string;
81897
82094
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81898
82095
  acs_user_id?: string | undefined;
82096
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82097
+ user_identity_id?: string | undefined;
81899
82098
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
81900
82099
  connected_account_id: string;
81901
82100
  acs_credential_pool_id?: string | undefined;
@@ -82056,6 +82255,8 @@ interface Routes {
82056
82255
  acs_credential_id: string;
82057
82256
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82058
82257
  acs_user_id?: string | undefined;
82258
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82259
+ user_identity_id?: string | undefined;
82059
82260
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82060
82261
  connected_account_id: string;
82061
82262
  acs_credential_pool_id?: string | undefined;
@@ -82316,6 +82517,8 @@ interface Routes {
82316
82517
  acs_credential_id: string;
82317
82518
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82318
82519
  acs_user_id?: string | undefined;
82520
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82521
+ user_identity_id?: string | undefined;
82319
82522
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82320
82523
  connected_account_id: string;
82321
82524
  acs_credential_pool_id?: string | undefined;
@@ -82459,6 +82662,8 @@ interface Routes {
82459
82662
  acs_credential_id: string;
82460
82663
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82461
82664
  acs_user_id?: string | undefined;
82665
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82666
+ user_identity_id?: string | undefined;
82462
82667
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82463
82668
  connected_account_id: string;
82464
82669
  acs_credential_pool_id?: string | undefined;
@@ -82612,6 +82817,8 @@ interface Routes {
82612
82817
  acs_credential_id: string;
82613
82818
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82614
82819
  acs_user_id?: string | undefined;
82820
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82821
+ user_identity_id?: string | undefined;
82615
82822
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82616
82823
  connected_account_id: string;
82617
82824
  acs_credential_pool_id?: string | undefined;
@@ -82763,6 +82970,8 @@ interface Routes {
82763
82970
  acs_credential_id: string;
82764
82971
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82765
82972
  acs_user_id?: string | undefined;
82973
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82974
+ user_identity_id?: string | undefined;
82766
82975
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
82767
82976
  connected_account_id: string;
82768
82977
  acs_credential_pool_id?: string | undefined;
@@ -83044,6 +83253,8 @@ interface Routes {
83044
83253
  acs_credential_id: string;
83045
83254
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83046
83255
  acs_user_id?: string | undefined;
83256
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83257
+ user_identity_id?: string | undefined;
83047
83258
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83048
83259
  connected_account_id: string;
83049
83260
  acs_credential_pool_id?: string | undefined;
@@ -83172,6 +83383,8 @@ interface Routes {
83172
83383
  acs_credential_id: string;
83173
83384
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83174
83385
  acs_user_id?: string | undefined;
83386
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83387
+ user_identity_id?: string | undefined;
83175
83388
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83176
83389
  connected_account_id: string;
83177
83390
  acs_credential_pool_id?: string | undefined;
@@ -83352,6 +83565,8 @@ interface Routes {
83352
83565
  acs_credential_id: string;
83353
83566
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83354
83567
  acs_user_id?: string | undefined;
83568
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83569
+ user_identity_id?: string | undefined;
83355
83570
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83356
83571
  connected_account_id: string;
83357
83572
  acs_credential_pool_id?: string | undefined;
@@ -83480,6 +83695,8 @@ interface Routes {
83480
83695
  acs_credential_id: string;
83481
83696
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83482
83697
  acs_user_id?: string | undefined;
83698
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83699
+ user_identity_id?: string | undefined;
83483
83700
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
83484
83701
  connected_account_id: string;
83485
83702
  acs_credential_pool_id?: string | undefined;
@@ -84392,6 +84609,8 @@ interface Routes {
84392
84609
  acs_credential_id: string;
84393
84610
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84394
84611
  acs_user_id?: string | undefined;
84612
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84613
+ user_identity_id?: string | undefined;
84395
84614
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84396
84615
  connected_account_id: string;
84397
84616
  acs_credential_pool_id?: string | undefined;
@@ -84520,6 +84739,8 @@ interface Routes {
84520
84739
  acs_credential_id: string;
84521
84740
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84522
84741
  acs_user_id?: string | undefined;
84742
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84743
+ user_identity_id?: string | undefined;
84523
84744
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84524
84745
  connected_account_id: string;
84525
84746
  acs_credential_pool_id?: string | undefined;
@@ -84700,6 +84921,8 @@ interface Routes {
84700
84921
  acs_credential_id: string;
84701
84922
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84702
84923
  acs_user_id?: string | undefined;
84924
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84925
+ user_identity_id?: string | undefined;
84703
84926
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84704
84927
  connected_account_id: string;
84705
84928
  acs_credential_pool_id?: string | undefined;
@@ -84828,6 +85051,8 @@ interface Routes {
84828
85051
  acs_credential_id: string;
84829
85052
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84830
85053
  acs_user_id?: string | undefined;
85054
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
85055
+ user_identity_id?: string | undefined;
84831
85056
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
84832
85057
  connected_account_id: string;
84833
85058
  acs_credential_pool_id?: string | undefined;
@@ -85836,6 +86061,8 @@ interface Routes {
85836
86061
  acs_credential_id: string;
85837
86062
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
85838
86063
  acs_user_id?: string | undefined;
86064
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
86065
+ user_identity_id?: string | undefined;
85839
86066
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
85840
86067
  connected_account_id: string;
85841
86068
  acs_credential_pool_id?: string | undefined;
@@ -87922,6 +88149,8 @@ interface Routes {
87922
88149
  acs_credential_id: string;
87923
88150
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
87924
88151
  acs_user_id?: string | undefined;
88152
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88153
+ user_identity_id?: string | undefined;
87925
88154
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
87926
88155
  connected_account_id: string;
87927
88156
  acs_credential_pool_id?: string | undefined;
@@ -88050,6 +88279,8 @@ interface Routes {
88050
88279
  acs_credential_id: string;
88051
88280
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88052
88281
  acs_user_id?: string | undefined;
88282
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88283
+ user_identity_id?: string | undefined;
88053
88284
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88054
88285
  connected_account_id: string;
88055
88286
  acs_credential_pool_id?: string | undefined;
@@ -88230,6 +88461,8 @@ interface Routes {
88230
88461
  acs_credential_id: string;
88231
88462
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88232
88463
  acs_user_id?: string | undefined;
88464
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88465
+ user_identity_id?: string | undefined;
88233
88466
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88234
88467
  connected_account_id: string;
88235
88468
  acs_credential_pool_id?: string | undefined;
@@ -88358,6 +88591,8 @@ interface Routes {
88358
88591
  acs_credential_id: string;
88359
88592
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88360
88593
  acs_user_id?: string | undefined;
88594
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88595
+ user_identity_id?: string | undefined;
88361
88596
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
88362
88597
  connected_account_id: string;
88363
88598
  acs_credential_pool_id?: string | undefined;
@@ -89167,6 +89402,8 @@ interface Routes {
89167
89402
  acs_credential_id: string;
89168
89403
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89169
89404
  acs_user_id?: string | undefined;
89405
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89406
+ user_identity_id?: string | undefined;
89170
89407
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89171
89408
  connected_account_id: string;
89172
89409
  acs_credential_pool_id?: string | undefined;
@@ -89295,6 +89532,8 @@ interface Routes {
89295
89532
  acs_credential_id: string;
89296
89533
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89297
89534
  acs_user_id?: string | undefined;
89535
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89536
+ user_identity_id?: string | undefined;
89298
89537
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89299
89538
  connected_account_id: string;
89300
89539
  acs_credential_pool_id?: string | undefined;
@@ -89475,6 +89714,8 @@ interface Routes {
89475
89714
  acs_credential_id: string;
89476
89715
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89477
89716
  acs_user_id?: string | undefined;
89717
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89718
+ user_identity_id?: string | undefined;
89478
89719
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89479
89720
  connected_account_id: string;
89480
89721
  acs_credential_pool_id?: string | undefined;
@@ -89603,6 +89844,8 @@ interface Routes {
89603
89844
  acs_credential_id: string;
89604
89845
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89605
89846
  acs_user_id?: string | undefined;
89847
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89848
+ user_identity_id?: string | undefined;
89606
89849
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
89607
89850
  connected_account_id: string;
89608
89851
  acs_credential_pool_id?: string | undefined;
@@ -92457,6 +92700,8 @@ interface Routes {
92457
92700
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
92458
92701
  /** Fan mode settings that the thermostat supports. */
92459
92702
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
92703
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
92704
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
92460
92705
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
92461
92706
  is_heating?: boolean | undefined;
92462
92707
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -92482,6 +92727,10 @@ interface Routes {
92482
92727
  name?: ((string | null) | undefined) | undefined;
92483
92728
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
92484
92729
  display_name?: string | undefined;
92730
+ /**
92731
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
92732
+ */
92733
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
92485
92734
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
92486
92735
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
92487
92736
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -92513,6 +92762,10 @@ interface Routes {
92513
92762
  name?: ((string | null) | undefined) | undefined;
92514
92763
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
92515
92764
  display_name?: string | undefined;
92765
+ /**
92766
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
92767
+ */
92768
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
92516
92769
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
92517
92770
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
92518
92771
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -92543,6 +92796,10 @@ interface Routes {
92543
92796
  name?: (string | null) | undefined;
92544
92797
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
92545
92798
  display_name: string;
92799
+ /**
92800
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
92801
+ */
92802
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
92546
92803
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
92547
92804
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
92548
92805
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -93615,6 +93872,8 @@ interface Routes {
93615
93872
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
93616
93873
  /** Fan mode settings that the thermostat supports. */
93617
93874
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
93875
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
93876
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
93618
93877
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
93619
93878
  is_heating?: boolean | undefined;
93620
93879
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -93640,6 +93899,10 @@ interface Routes {
93640
93899
  name?: ((string | null) | undefined) | undefined;
93641
93900
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
93642
93901
  display_name?: string | undefined;
93902
+ /**
93903
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
93904
+ */
93905
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
93643
93906
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
93644
93907
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
93645
93908
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -93671,6 +93934,10 @@ interface Routes {
93671
93934
  name?: ((string | null) | undefined) | undefined;
93672
93935
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
93673
93936
  display_name?: string | undefined;
93937
+ /**
93938
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
93939
+ */
93940
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
93674
93941
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
93675
93942
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
93676
93943
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -93701,6 +93968,10 @@ interface Routes {
93701
93968
  name?: (string | null) | undefined;
93702
93969
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
93703
93970
  display_name: string;
93971
+ /**
93972
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
93973
+ */
93974
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
93704
93975
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
93705
93976
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
93706
93977
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -98537,6 +98808,8 @@ interface Routes {
98537
98808
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
98538
98809
  /** Fan mode settings that the thermostat supports. */
98539
98810
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
98811
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
98812
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
98540
98813
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
98541
98814
  is_heating?: boolean | undefined;
98542
98815
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -98562,6 +98835,10 @@ interface Routes {
98562
98835
  name?: ((string | null) | undefined) | undefined;
98563
98836
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
98564
98837
  display_name?: string | undefined;
98838
+ /**
98839
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
98840
+ */
98841
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
98565
98842
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
98566
98843
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
98567
98844
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -98593,6 +98870,10 @@ interface Routes {
98593
98870
  name?: ((string | null) | undefined) | undefined;
98594
98871
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
98595
98872
  display_name?: string | undefined;
98873
+ /**
98874
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
98875
+ */
98876
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
98596
98877
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
98597
98878
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
98598
98879
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -98623,6 +98904,10 @@ interface Routes {
98623
98904
  name?: (string | null) | undefined;
98624
98905
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
98625
98906
  display_name: string;
98907
+ /**
98908
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
98909
+ */
98910
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
98626
98911
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
98627
98912
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
98628
98913
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -99649,6 +99934,8 @@ interface Routes {
99649
99934
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
99650
99935
  /** Fan mode settings that the thermostat supports. */
99651
99936
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
99937
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
99938
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
99652
99939
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
99653
99940
  is_heating?: boolean | undefined;
99654
99941
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -99674,6 +99961,10 @@ interface Routes {
99674
99961
  name?: ((string | null) | undefined) | undefined;
99675
99962
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
99676
99963
  display_name?: string | undefined;
99964
+ /**
99965
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
99966
+ */
99967
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
99677
99968
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
99678
99969
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
99679
99970
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -99705,6 +99996,10 @@ interface Routes {
99705
99996
  name?: ((string | null) | undefined) | undefined;
99706
99997
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
99707
99998
  display_name?: string | undefined;
99999
+ /**
100000
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
100001
+ */
100002
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
99708
100003
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
99709
100004
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
99710
100005
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -99735,6 +100030,10 @@ interface Routes {
99735
100030
  name?: (string | null) | undefined;
99736
100031
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
99737
100032
  display_name: string;
100033
+ /**
100034
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
100035
+ */
100036
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
99738
100037
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
99739
100038
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
99740
100039
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -100807,6 +101106,8 @@ interface Routes {
100807
101106
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
100808
101107
  /** Fan mode settings that the thermostat supports. */
100809
101108
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
101109
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
101110
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
100810
101111
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
100811
101112
  is_heating?: boolean | undefined;
100812
101113
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -100832,6 +101133,10 @@ interface Routes {
100832
101133
  name?: ((string | null) | undefined) | undefined;
100833
101134
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
100834
101135
  display_name?: string | undefined;
101136
+ /**
101137
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
101138
+ */
101139
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
100835
101140
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
100836
101141
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
100837
101142
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -100863,6 +101168,10 @@ interface Routes {
100863
101168
  name?: ((string | null) | undefined) | undefined;
100864
101169
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
100865
101170
  display_name?: string | undefined;
101171
+ /**
101172
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
101173
+ */
101174
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
100866
101175
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
100867
101176
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
100868
101177
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -100893,6 +101202,10 @@ interface Routes {
100893
101202
  name?: (string | null) | undefined;
100894
101203
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
100895
101204
  display_name: string;
101205
+ /**
101206
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
101207
+ */
101208
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
100896
101209
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
100897
101210
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
100898
101211
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -101918,6 +102231,8 @@ interface Routes {
101918
102231
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
101919
102232
  /** Fan mode settings that the thermostat supports. */
101920
102233
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
102234
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
102235
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
101921
102236
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
101922
102237
  is_heating?: boolean | undefined;
101923
102238
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -101943,6 +102258,10 @@ interface Routes {
101943
102258
  name?: ((string | null) | undefined) | undefined;
101944
102259
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
101945
102260
  display_name?: string | undefined;
102261
+ /**
102262
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
102263
+ */
102264
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
101946
102265
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
101947
102266
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
101948
102267
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -101974,6 +102293,10 @@ interface Routes {
101974
102293
  name?: ((string | null) | undefined) | undefined;
101975
102294
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
101976
102295
  display_name?: string | undefined;
102296
+ /**
102297
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
102298
+ */
102299
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
101977
102300
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
101978
102301
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
101979
102302
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -102004,6 +102327,10 @@ interface Routes {
102004
102327
  name?: (string | null) | undefined;
102005
102328
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
102006
102329
  display_name: string;
102330
+ /**
102331
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
102332
+ */
102333
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
102007
102334
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
102008
102335
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
102009
102336
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -102599,6 +102926,8 @@ interface Routes {
102599
102926
  acs_credential_id: string;
102600
102927
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102601
102928
  acs_user_id?: string | undefined;
102929
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102930
+ user_identity_id?: string | undefined;
102602
102931
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102603
102932
  connected_account_id: string;
102604
102933
  acs_credential_pool_id?: string | undefined;
@@ -102727,6 +103056,8 @@ interface Routes {
102727
103056
  acs_credential_id: string;
102728
103057
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102729
103058
  acs_user_id?: string | undefined;
103059
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103060
+ user_identity_id?: string | undefined;
102730
103061
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102731
103062
  connected_account_id: string;
102732
103063
  acs_credential_pool_id?: string | undefined;
@@ -102907,6 +103238,8 @@ interface Routes {
102907
103238
  acs_credential_id: string;
102908
103239
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102909
103240
  acs_user_id?: string | undefined;
103241
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103242
+ user_identity_id?: string | undefined;
102910
103243
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
102911
103244
  connected_account_id: string;
102912
103245
  acs_credential_pool_id?: string | undefined;
@@ -103035,6 +103368,8 @@ interface Routes {
103035
103368
  acs_credential_id: string;
103036
103369
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103037
103370
  acs_user_id?: string | undefined;
103371
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103372
+ user_identity_id?: string | undefined;
103038
103373
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103039
103374
  connected_account_id: string;
103040
103375
  acs_credential_pool_id?: string | undefined;
@@ -103851,6 +104186,8 @@ interface Routes {
103851
104186
  acs_credential_id: string;
103852
104187
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103853
104188
  acs_user_id?: string | undefined;
104189
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
104190
+ user_identity_id?: string | undefined;
103854
104191
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103855
104192
  connected_account_id: string;
103856
104193
  acs_credential_pool_id?: string | undefined;
@@ -103979,6 +104316,8 @@ interface Routes {
103979
104316
  acs_credential_id: string;
103980
104317
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103981
104318
  acs_user_id?: string | undefined;
104319
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
104320
+ user_identity_id?: string | undefined;
103982
104321
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
103983
104322
  connected_account_id: string;
103984
104323
  acs_credential_pool_id?: string | undefined;
@@ -104159,6 +104498,8 @@ interface Routes {
104159
104498
  acs_credential_id: string;
104160
104499
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
104161
104500
  acs_user_id?: string | undefined;
104501
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
104502
+ user_identity_id?: string | undefined;
104162
104503
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
104163
104504
  connected_account_id: string;
104164
104505
  acs_credential_pool_id?: string | undefined;
@@ -104287,6 +104628,8 @@ interface Routes {
104287
104628
  acs_credential_id: string;
104288
104629
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
104289
104630
  acs_user_id?: string | undefined;
104631
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
104632
+ user_identity_id?: string | undefined;
104290
104633
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
104291
104634
  connected_account_id: string;
104292
104635
  acs_credential_pool_id?: string | undefined;
@@ -105101,6 +105444,8 @@ interface Routes {
105101
105444
  acs_credential_id: string;
105102
105445
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105103
105446
  acs_user_id?: string | undefined;
105447
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105448
+ user_identity_id?: string | undefined;
105104
105449
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105105
105450
  connected_account_id: string;
105106
105451
  acs_credential_pool_id?: string | undefined;
@@ -105229,6 +105574,8 @@ interface Routes {
105229
105574
  acs_credential_id: string;
105230
105575
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105231
105576
  acs_user_id?: string | undefined;
105577
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105578
+ user_identity_id?: string | undefined;
105232
105579
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105233
105580
  connected_account_id: string;
105234
105581
  acs_credential_pool_id?: string | undefined;
@@ -105409,6 +105756,8 @@ interface Routes {
105409
105756
  acs_credential_id: string;
105410
105757
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105411
105758
  acs_user_id?: string | undefined;
105759
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105760
+ user_identity_id?: string | undefined;
105412
105761
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105413
105762
  connected_account_id: string;
105414
105763
  acs_credential_pool_id?: string | undefined;
@@ -105537,6 +105886,8 @@ interface Routes {
105537
105886
  acs_credential_id: string;
105538
105887
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105539
105888
  acs_user_id?: string | undefined;
105889
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105890
+ user_identity_id?: string | undefined;
105540
105891
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
105541
105892
  connected_account_id: string;
105542
105893
  acs_credential_pool_id?: string | undefined;
@@ -106353,6 +106704,8 @@ interface Routes {
106353
106704
  acs_credential_id: string;
106354
106705
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106355
106706
  acs_user_id?: string | undefined;
106707
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106708
+ user_identity_id?: string | undefined;
106356
106709
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106357
106710
  connected_account_id: string;
106358
106711
  acs_credential_pool_id?: string | undefined;
@@ -106481,6 +106834,8 @@ interface Routes {
106481
106834
  acs_credential_id: string;
106482
106835
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106483
106836
  acs_user_id?: string | undefined;
106837
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106838
+ user_identity_id?: string | undefined;
106484
106839
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106485
106840
  connected_account_id: string;
106486
106841
  acs_credential_pool_id?: string | undefined;
@@ -106661,6 +107016,8 @@ interface Routes {
106661
107016
  acs_credential_id: string;
106662
107017
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106663
107018
  acs_user_id?: string | undefined;
107019
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
107020
+ user_identity_id?: string | undefined;
106664
107021
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106665
107022
  connected_account_id: string;
106666
107023
  acs_credential_pool_id?: string | undefined;
@@ -106789,6 +107146,8 @@ interface Routes {
106789
107146
  acs_credential_id: string;
106790
107147
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106791
107148
  acs_user_id?: string | undefined;
107149
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
107150
+ user_identity_id?: string | undefined;
106792
107151
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
106793
107152
  connected_account_id: string;
106794
107153
  acs_credential_pool_id?: string | undefined;
@@ -108117,6 +108476,8 @@ interface Routes {
108117
108476
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
108118
108477
  /** Fan mode settings that the thermostat supports. */
108119
108478
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
108479
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
108480
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
108120
108481
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
108121
108482
  is_heating?: boolean | undefined;
108122
108483
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -108142,6 +108503,10 @@ interface Routes {
108142
108503
  name?: ((string | null) | undefined) | undefined;
108143
108504
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
108144
108505
  display_name?: string | undefined;
108506
+ /**
108507
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
108508
+ */
108509
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
108145
108510
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
108146
108511
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
108147
108512
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -108173,6 +108538,10 @@ interface Routes {
108173
108538
  name?: ((string | null) | undefined) | undefined;
108174
108539
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
108175
108540
  display_name?: string | undefined;
108541
+ /**
108542
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
108543
+ */
108544
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
108176
108545
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
108177
108546
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
108178
108547
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -108203,6 +108572,10 @@ interface Routes {
108203
108572
  name?: (string | null) | undefined;
108204
108573
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
108205
108574
  display_name: string;
108575
+ /**
108576
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
108577
+ */
108578
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
108206
108579
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
108207
108580
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
108208
108581
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -109228,6 +109601,8 @@ interface Routes {
109228
109601
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
109229
109602
  /** Fan mode settings that the thermostat supports. */
109230
109603
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
109604
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
109605
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
109231
109606
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
109232
109607
  is_heating?: boolean | undefined;
109233
109608
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -109253,6 +109628,10 @@ interface Routes {
109253
109628
  name?: ((string | null) | undefined) | undefined;
109254
109629
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
109255
109630
  display_name?: string | undefined;
109631
+ /**
109632
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
109633
+ */
109634
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
109256
109635
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
109257
109636
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
109258
109637
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -109284,6 +109663,10 @@ interface Routes {
109284
109663
  name?: ((string | null) | undefined) | undefined;
109285
109664
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
109286
109665
  display_name?: string | undefined;
109666
+ /**
109667
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
109668
+ */
109669
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
109287
109670
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
109288
109671
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
109289
109672
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -109314,6 +109697,10 @@ interface Routes {
109314
109697
  name?: (string | null) | undefined;
109315
109698
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
109316
109699
  display_name: string;
109700
+ /**
109701
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
109702
+ */
109703
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
109317
109704
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
109318
109705
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
109319
109706
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -109919,6 +110306,8 @@ interface Routes {
109919
110306
  acs_credential_id: string;
109920
110307
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
109921
110308
  acs_user_id?: string | undefined;
110309
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110310
+ user_identity_id?: string | undefined;
109922
110311
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
109923
110312
  connected_account_id: string;
109924
110313
  acs_credential_pool_id?: string | undefined;
@@ -110047,6 +110436,8 @@ interface Routes {
110047
110436
  acs_credential_id: string;
110048
110437
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110049
110438
  acs_user_id?: string | undefined;
110439
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110440
+ user_identity_id?: string | undefined;
110050
110441
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110051
110442
  connected_account_id: string;
110052
110443
  acs_credential_pool_id?: string | undefined;
@@ -110227,6 +110618,8 @@ interface Routes {
110227
110618
  acs_credential_id: string;
110228
110619
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110229
110620
  acs_user_id?: string | undefined;
110621
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110622
+ user_identity_id?: string | undefined;
110230
110623
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110231
110624
  connected_account_id: string;
110232
110625
  acs_credential_pool_id?: string | undefined;
@@ -110355,6 +110748,8 @@ interface Routes {
110355
110748
  acs_credential_id: string;
110356
110749
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110357
110750
  acs_user_id?: string | undefined;
110751
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110752
+ user_identity_id?: string | undefined;
110358
110753
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
110359
110754
  connected_account_id: string;
110360
110755
  acs_credential_pool_id?: string | undefined;
@@ -111190,6 +111585,8 @@ interface Routes {
111190
111585
  acs_credential_id: string;
111191
111586
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111192
111587
  acs_user_id?: string | undefined;
111588
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111589
+ user_identity_id?: string | undefined;
111193
111590
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111194
111591
  connected_account_id: string;
111195
111592
  acs_credential_pool_id?: string | undefined;
@@ -111318,6 +111715,8 @@ interface Routes {
111318
111715
  acs_credential_id: string;
111319
111716
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111320
111717
  acs_user_id?: string | undefined;
111718
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111719
+ user_identity_id?: string | undefined;
111321
111720
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111322
111721
  connected_account_id: string;
111323
111722
  acs_credential_pool_id?: string | undefined;
@@ -111498,6 +111897,8 @@ interface Routes {
111498
111897
  acs_credential_id: string;
111499
111898
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111500
111899
  acs_user_id?: string | undefined;
111900
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111901
+ user_identity_id?: string | undefined;
111501
111902
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111502
111903
  connected_account_id: string;
111503
111904
  acs_credential_pool_id?: string | undefined;
@@ -111626,6 +112027,8 @@ interface Routes {
111626
112027
  acs_credential_id: string;
111627
112028
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111628
112029
  acs_user_id?: string | undefined;
112030
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112031
+ user_identity_id?: string | undefined;
111629
112032
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
111630
112033
  connected_account_id: string;
111631
112034
  acs_credential_pool_id?: string | undefined;
@@ -112515,6 +112918,8 @@ interface Routes {
112515
112918
  acs_credential_id: string;
112516
112919
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112517
112920
  acs_user_id?: string | undefined;
112921
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112922
+ user_identity_id?: string | undefined;
112518
112923
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112519
112924
  connected_account_id: string;
112520
112925
  acs_credential_pool_id?: string | undefined;
@@ -112643,6 +113048,8 @@ interface Routes {
112643
113048
  acs_credential_id: string;
112644
113049
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112645
113050
  acs_user_id?: string | undefined;
113051
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
113052
+ user_identity_id?: string | undefined;
112646
113053
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112647
113054
  connected_account_id: string;
112648
113055
  acs_credential_pool_id?: string | undefined;
@@ -112823,6 +113230,8 @@ interface Routes {
112823
113230
  acs_credential_id: string;
112824
113231
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112825
113232
  acs_user_id?: string | undefined;
113233
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
113234
+ user_identity_id?: string | undefined;
112826
113235
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112827
113236
  connected_account_id: string;
112828
113237
  acs_credential_pool_id?: string | undefined;
@@ -112951,6 +113360,8 @@ interface Routes {
112951
113360
  acs_credential_id: string;
112952
113361
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112953
113362
  acs_user_id?: string | undefined;
113363
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
113364
+ user_identity_id?: string | undefined;
112954
113365
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
112955
113366
  connected_account_id: string;
112956
113367
  acs_credential_pool_id?: string | undefined;
@@ -114401,6 +114812,8 @@ interface Routes {
114401
114812
  acs_credential_id: string;
114402
114813
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
114403
114814
  acs_user_id?: string | undefined;
114815
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
114816
+ user_identity_id?: string | undefined;
114404
114817
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
114405
114818
  connected_account_id: string;
114406
114819
  acs_credential_pool_id?: string | undefined;
@@ -114565,6 +114978,8 @@ interface Routes {
114565
114978
  acs_credentials: Array<{
114566
114979
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
114567
114980
  acs_user_id?: string | undefined;
114981
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
114982
+ user_identity_id?: string | undefined;
114568
114983
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
114569
114984
  connected_account_id: string;
114570
114985
  acs_credential_pool_id?: string | undefined;
@@ -115144,6 +115559,8 @@ interface Routes {
115144
115559
  acs_credential_id: string;
115145
115560
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115146
115561
  acs_user_id?: string | undefined;
115562
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115563
+ user_identity_id?: string | undefined;
115147
115564
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115148
115565
  connected_account_id: string;
115149
115566
  acs_credential_pool_id?: string | undefined;
@@ -115272,6 +115689,8 @@ interface Routes {
115272
115689
  acs_credential_id: string;
115273
115690
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115274
115691
  acs_user_id?: string | undefined;
115692
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115693
+ user_identity_id?: string | undefined;
115275
115694
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115276
115695
  connected_account_id: string;
115277
115696
  acs_credential_pool_id?: string | undefined;
@@ -115452,6 +115871,8 @@ interface Routes {
115452
115871
  acs_credential_id: string;
115453
115872
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115454
115873
  acs_user_id?: string | undefined;
115874
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115875
+ user_identity_id?: string | undefined;
115455
115876
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115456
115877
  connected_account_id: string;
115457
115878
  acs_credential_pool_id?: string | undefined;
@@ -115580,6 +116001,8 @@ interface Routes {
115580
116001
  acs_credential_id: string;
115581
116002
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115582
116003
  acs_user_id?: string | undefined;
116004
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116005
+ user_identity_id?: string | undefined;
115583
116006
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
115584
116007
  connected_account_id: string;
115585
116008
  acs_credential_pool_id?: string | undefined;
@@ -116400,6 +116823,8 @@ interface Routes {
116400
116823
  acs_credential_id: string;
116401
116824
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116402
116825
  acs_user_id?: string | undefined;
116826
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116827
+ user_identity_id?: string | undefined;
116403
116828
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116404
116829
  connected_account_id: string;
116405
116830
  acs_credential_pool_id?: string | undefined;
@@ -116528,6 +116953,8 @@ interface Routes {
116528
116953
  acs_credential_id: string;
116529
116954
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116530
116955
  acs_user_id?: string | undefined;
116956
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116957
+ user_identity_id?: string | undefined;
116531
116958
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116532
116959
  connected_account_id: string;
116533
116960
  acs_credential_pool_id?: string | undefined;
@@ -116708,6 +117135,8 @@ interface Routes {
116708
117135
  acs_credential_id: string;
116709
117136
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116710
117137
  acs_user_id?: string | undefined;
117138
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
117139
+ user_identity_id?: string | undefined;
116711
117140
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116712
117141
  connected_account_id: string;
116713
117142
  acs_credential_pool_id?: string | undefined;
@@ -116836,6 +117265,8 @@ interface Routes {
116836
117265
  acs_credential_id: string;
116837
117266
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116838
117267
  acs_user_id?: string | undefined;
117268
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
117269
+ user_identity_id?: string | undefined;
116839
117270
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
116840
117271
  connected_account_id: string;
116841
117272
  acs_credential_pool_id?: string | undefined;
@@ -117513,6 +117944,10 @@ interface Routes {
117513
117944
  climate_preset_key: string;
117514
117945
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
117515
117946
  name?: (string | null) | undefined;
117947
+ /**
117948
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
117949
+ */
117950
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
117516
117951
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
117517
117952
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
117518
117953
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -117744,6 +118179,8 @@ interface Routes {
117744
118179
  acs_credential_id: string;
117745
118180
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
117746
118181
  acs_user_id?: string | undefined;
118182
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118183
+ user_identity_id?: string | undefined;
117747
118184
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
117748
118185
  connected_account_id: string;
117749
118186
  acs_credential_pool_id?: string | undefined;
@@ -117872,6 +118309,8 @@ interface Routes {
117872
118309
  acs_credential_id: string;
117873
118310
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
117874
118311
  acs_user_id?: string | undefined;
118312
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118313
+ user_identity_id?: string | undefined;
117875
118314
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
117876
118315
  connected_account_id: string;
117877
118316
  acs_credential_pool_id?: string | undefined;
@@ -118052,6 +118491,8 @@ interface Routes {
118052
118491
  acs_credential_id: string;
118053
118492
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118054
118493
  acs_user_id?: string | undefined;
118494
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118495
+ user_identity_id?: string | undefined;
118055
118496
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118056
118497
  connected_account_id: string;
118057
118498
  acs_credential_pool_id?: string | undefined;
@@ -118180,6 +118621,8 @@ interface Routes {
118180
118621
  acs_credential_id: string;
118181
118622
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118182
118623
  acs_user_id?: string | undefined;
118624
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118625
+ user_identity_id?: string | undefined;
118183
118626
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
118184
118627
  connected_account_id: string;
118185
118628
  acs_credential_pool_id?: string | undefined;
@@ -119456,6 +119899,8 @@ interface Routes {
119456
119899
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
119457
119900
  /** Fan mode settings that the thermostat supports. */
119458
119901
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
119902
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
119903
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
119459
119904
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
119460
119905
  is_heating?: boolean | undefined;
119461
119906
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -119481,6 +119926,10 @@ interface Routes {
119481
119926
  name?: ((string | null) | undefined) | undefined;
119482
119927
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
119483
119928
  display_name?: string | undefined;
119929
+ /**
119930
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
119931
+ */
119932
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
119484
119933
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
119485
119934
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
119486
119935
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -119512,6 +119961,10 @@ interface Routes {
119512
119961
  name?: ((string | null) | undefined) | undefined;
119513
119962
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
119514
119963
  display_name?: string | undefined;
119964
+ /**
119965
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
119966
+ */
119967
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
119515
119968
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
119516
119969
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
119517
119970
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -119542,6 +119995,10 @@ interface Routes {
119542
119995
  name?: (string | null) | undefined;
119543
119996
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
119544
119997
  display_name: string;
119998
+ /**
119999
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
120000
+ */
120001
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
119545
120002
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
119546
120003
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
119547
120004
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -120141,6 +120598,8 @@ interface Routes {
120141
120598
  acs_credential_id: string;
120142
120599
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120143
120600
  acs_user_id?: string | undefined;
120601
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120602
+ user_identity_id?: string | undefined;
120144
120603
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120145
120604
  connected_account_id: string;
120146
120605
  acs_credential_pool_id?: string | undefined;
@@ -120269,6 +120728,8 @@ interface Routes {
120269
120728
  acs_credential_id: string;
120270
120729
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120271
120730
  acs_user_id?: string | undefined;
120731
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120732
+ user_identity_id?: string | undefined;
120272
120733
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120273
120734
  connected_account_id: string;
120274
120735
  acs_credential_pool_id?: string | undefined;
@@ -120449,6 +120910,8 @@ interface Routes {
120449
120910
  acs_credential_id: string;
120450
120911
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120451
120912
  acs_user_id?: string | undefined;
120913
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120914
+ user_identity_id?: string | undefined;
120452
120915
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120453
120916
  connected_account_id: string;
120454
120917
  acs_credential_pool_id?: string | undefined;
@@ -120577,6 +121040,8 @@ interface Routes {
120577
121040
  acs_credential_id: string;
120578
121041
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120579
121042
  acs_user_id?: string | undefined;
121043
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121044
+ user_identity_id?: string | undefined;
120580
121045
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
120581
121046
  connected_account_id: string;
120582
121047
  acs_credential_pool_id?: string | undefined;
@@ -121401,6 +121866,8 @@ interface Routes {
121401
121866
  acs_credential_id: string;
121402
121867
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121403
121868
  acs_user_id?: string | undefined;
121869
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121870
+ user_identity_id?: string | undefined;
121404
121871
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121405
121872
  connected_account_id: string;
121406
121873
  acs_credential_pool_id?: string | undefined;
@@ -121529,6 +121996,8 @@ interface Routes {
121529
121996
  acs_credential_id: string;
121530
121997
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121531
121998
  acs_user_id?: string | undefined;
121999
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
122000
+ user_identity_id?: string | undefined;
121532
122001
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121533
122002
  connected_account_id: string;
121534
122003
  acs_credential_pool_id?: string | undefined;
@@ -121709,6 +122178,8 @@ interface Routes {
121709
122178
  acs_credential_id: string;
121710
122179
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121711
122180
  acs_user_id?: string | undefined;
122181
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
122182
+ user_identity_id?: string | undefined;
121712
122183
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121713
122184
  connected_account_id: string;
121714
122185
  acs_credential_pool_id?: string | undefined;
@@ -121837,6 +122308,8 @@ interface Routes {
121837
122308
  acs_credential_id: string;
121838
122309
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121839
122310
  acs_user_id?: string | undefined;
122311
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
122312
+ user_identity_id?: string | undefined;
121840
122313
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
121841
122314
  connected_account_id: string;
121842
122315
  acs_credential_pool_id?: string | undefined;
@@ -123130,6 +123603,8 @@ interface Routes {
123130
123603
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
123131
123604
  /** Fan mode settings that the thermostat supports. */
123132
123605
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
123606
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
123607
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
123133
123608
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
123134
123609
  is_heating?: boolean | undefined;
123135
123610
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -123155,6 +123630,10 @@ interface Routes {
123155
123630
  name?: ((string | null) | undefined) | undefined;
123156
123631
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
123157
123632
  display_name?: string | undefined;
123633
+ /**
123634
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
123635
+ */
123636
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
123158
123637
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
123159
123638
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
123160
123639
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -123186,6 +123665,10 @@ interface Routes {
123186
123665
  name?: ((string | null) | undefined) | undefined;
123187
123666
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
123188
123667
  display_name?: string | undefined;
123668
+ /**
123669
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
123670
+ */
123671
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
123189
123672
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
123190
123673
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
123191
123674
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -123216,6 +123699,10 @@ interface Routes {
123216
123699
  name?: (string | null) | undefined;
123217
123700
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
123218
123701
  display_name: string;
123702
+ /**
123703
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
123704
+ */
123705
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
123219
123706
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
123220
123707
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
123221
123708
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -124241,6 +124728,8 @@ interface Routes {
124241
124728
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
124242
124729
  /** Fan mode settings that the thermostat supports. */
124243
124730
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
124731
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
124732
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
124244
124733
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
124245
124734
  is_heating?: boolean | undefined;
124246
124735
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -124266,6 +124755,10 @@ interface Routes {
124266
124755
  name?: ((string | null) | undefined) | undefined;
124267
124756
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
124268
124757
  display_name?: string | undefined;
124758
+ /**
124759
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
124760
+ */
124761
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
124269
124762
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
124270
124763
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
124271
124764
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -124297,6 +124790,10 @@ interface Routes {
124297
124790
  name?: ((string | null) | undefined) | undefined;
124298
124791
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
124299
124792
  display_name?: string | undefined;
124793
+ /**
124794
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
124795
+ */
124796
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
124300
124797
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
124301
124798
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
124302
124799
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -124327,6 +124824,10 @@ interface Routes {
124327
124824
  name?: (string | null) | undefined;
124328
124825
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
124329
124826
  display_name: string;
124827
+ /**
124828
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
124829
+ */
124830
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
124330
124831
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
124331
124832
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
124332
124833
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -124922,6 +125423,8 @@ interface Routes {
124922
125423
  acs_credential_id: string;
124923
125424
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
124924
125425
  acs_user_id?: string | undefined;
125426
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125427
+ user_identity_id?: string | undefined;
124925
125428
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
124926
125429
  connected_account_id: string;
124927
125430
  acs_credential_pool_id?: string | undefined;
@@ -125050,6 +125553,8 @@ interface Routes {
125050
125553
  acs_credential_id: string;
125051
125554
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125052
125555
  acs_user_id?: string | undefined;
125556
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125557
+ user_identity_id?: string | undefined;
125053
125558
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125054
125559
  connected_account_id: string;
125055
125560
  acs_credential_pool_id?: string | undefined;
@@ -125230,6 +125735,8 @@ interface Routes {
125230
125735
  acs_credential_id: string;
125231
125736
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125232
125737
  acs_user_id?: string | undefined;
125738
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125739
+ user_identity_id?: string | undefined;
125233
125740
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125234
125741
  connected_account_id: string;
125235
125742
  acs_credential_pool_id?: string | undefined;
@@ -125358,6 +125865,8 @@ interface Routes {
125358
125865
  acs_credential_id: string;
125359
125866
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125360
125867
  acs_user_id?: string | undefined;
125868
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125869
+ user_identity_id?: string | undefined;
125361
125870
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
125362
125871
  connected_account_id: string;
125363
125872
  acs_credential_pool_id?: string | undefined;
@@ -126371,6 +126880,8 @@ interface Routes {
126371
126880
  acs_credential_id: string;
126372
126881
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126373
126882
  acs_user_id?: string | undefined;
126883
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126884
+ user_identity_id?: string | undefined;
126374
126885
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126375
126886
  connected_account_id: string;
126376
126887
  acs_credential_pool_id?: string | undefined;
@@ -126499,6 +127010,8 @@ interface Routes {
126499
127010
  acs_credential_id: string;
126500
127011
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126501
127012
  acs_user_id?: string | undefined;
127013
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127014
+ user_identity_id?: string | undefined;
126502
127015
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126503
127016
  connected_account_id: string;
126504
127017
  acs_credential_pool_id?: string | undefined;
@@ -126679,6 +127192,8 @@ interface Routes {
126679
127192
  acs_credential_id: string;
126680
127193
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126681
127194
  acs_user_id?: string | undefined;
127195
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127196
+ user_identity_id?: string | undefined;
126682
127197
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126683
127198
  connected_account_id: string;
126684
127199
  acs_credential_pool_id?: string | undefined;
@@ -126807,6 +127322,8 @@ interface Routes {
126807
127322
  acs_credential_id: string;
126808
127323
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126809
127324
  acs_user_id?: string | undefined;
127325
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127326
+ user_identity_id?: string | undefined;
126810
127327
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
126811
127328
  connected_account_id: string;
126812
127329
  acs_credential_pool_id?: string | undefined;
@@ -127650,6 +128167,8 @@ interface Routes {
127650
128167
  acs_credential_id: string;
127651
128168
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127652
128169
  acs_user_id?: string | undefined;
128170
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
128171
+ user_identity_id?: string | undefined;
127653
128172
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127654
128173
  connected_account_id: string;
127655
128174
  acs_credential_pool_id?: string | undefined;
@@ -127778,6 +128297,8 @@ interface Routes {
127778
128297
  acs_credential_id: string;
127779
128298
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127780
128299
  acs_user_id?: string | undefined;
128300
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
128301
+ user_identity_id?: string | undefined;
127781
128302
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127782
128303
  connected_account_id: string;
127783
128304
  acs_credential_pool_id?: string | undefined;
@@ -127958,6 +128479,8 @@ interface Routes {
127958
128479
  acs_credential_id: string;
127959
128480
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127960
128481
  acs_user_id?: string | undefined;
128482
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
128483
+ user_identity_id?: string | undefined;
127961
128484
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
127962
128485
  connected_account_id: string;
127963
128486
  acs_credential_pool_id?: string | undefined;
@@ -128086,6 +128609,8 @@ interface Routes {
128086
128609
  acs_credential_id: string;
128087
128610
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
128088
128611
  acs_user_id?: string | undefined;
128612
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
128613
+ user_identity_id?: string | undefined;
128089
128614
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
128090
128615
  connected_account_id: string;
128091
128616
  acs_credential_pool_id?: string | undefined;
@@ -128841,6 +129366,10 @@ interface Routes {
128841
129366
  climate_preset_key: string;
128842
129367
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
128843
129368
  name?: (string | null) | undefined;
129369
+ /**
129370
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
129371
+ */
129372
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
128844
129373
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
128845
129374
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
128846
129375
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -129026,6 +129555,8 @@ interface Routes {
129026
129555
  acs_credential_id: string;
129027
129556
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129028
129557
  acs_user_id?: string | undefined;
129558
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129559
+ user_identity_id?: string | undefined;
129029
129560
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129030
129561
  connected_account_id: string;
129031
129562
  acs_credential_pool_id?: string | undefined;
@@ -129154,6 +129685,8 @@ interface Routes {
129154
129685
  acs_credential_id: string;
129155
129686
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129156
129687
  acs_user_id?: string | undefined;
129688
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129689
+ user_identity_id?: string | undefined;
129157
129690
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129158
129691
  connected_account_id: string;
129159
129692
  acs_credential_pool_id?: string | undefined;
@@ -129334,6 +129867,8 @@ interface Routes {
129334
129867
  acs_credential_id: string;
129335
129868
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129336
129869
  acs_user_id?: string | undefined;
129870
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129871
+ user_identity_id?: string | undefined;
129337
129872
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129338
129873
  connected_account_id: string;
129339
129874
  acs_credential_pool_id?: string | undefined;
@@ -129462,6 +129997,8 @@ interface Routes {
129462
129997
  acs_credential_id: string;
129463
129998
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129464
129999
  acs_user_id?: string | undefined;
130000
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
130001
+ user_identity_id?: string | undefined;
129465
130002
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
129466
130003
  connected_account_id: string;
129467
130004
  acs_credential_pool_id?: string | undefined;
@@ -131686,6 +132223,8 @@ interface Routes {
131686
132223
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
131687
132224
  /** Fan mode settings that the thermostat supports. */
131688
132225
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
132226
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
132227
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
131689
132228
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
131690
132229
  is_heating?: boolean | undefined;
131691
132230
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -131711,6 +132250,10 @@ interface Routes {
131711
132250
  name?: ((string | null) | undefined) | undefined;
131712
132251
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
131713
132252
  display_name?: string | undefined;
132253
+ /**
132254
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
132255
+ */
132256
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
131714
132257
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
131715
132258
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
131716
132259
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -131742,6 +132285,10 @@ interface Routes {
131742
132285
  name?: ((string | null) | undefined) | undefined;
131743
132286
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
131744
132287
  display_name?: string | undefined;
132288
+ /**
132289
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
132290
+ */
132291
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
131745
132292
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
131746
132293
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
131747
132294
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -131772,6 +132319,10 @@ interface Routes {
131772
132319
  name?: (string | null) | undefined;
131773
132320
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
131774
132321
  display_name: string;
132322
+ /**
132323
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
132324
+ */
132325
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
131775
132326
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
131776
132327
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
131777
132328
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -132799,6 +133350,8 @@ interface Routes {
132799
133350
  available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
132800
133351
  /** Fan mode settings that the thermostat supports. */
132801
133352
  available_fan_mode_settings?: Array<'auto' | 'on' | 'circulate'> | undefined;
133353
+ /** Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied". */
133354
+ available_climate_preset_modes?: Array<'home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied'> | undefined;
132802
133355
  /** Indicates whether the connected HVAC system is currently heating, as reported by the thermostat. */
132803
133356
  is_heating?: boolean | undefined;
132804
133357
  /** Indicates whether the connected HVAC system is currently cooling, as reported by the thermostat. */
@@ -132824,6 +133377,10 @@ interface Routes {
132824
133377
  name?: ((string | null) | undefined) | undefined;
132825
133378
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
132826
133379
  display_name?: string | undefined;
133380
+ /**
133381
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
133382
+ */
133383
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
132827
133384
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
132828
133385
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
132829
133386
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -132855,6 +133412,10 @@ interface Routes {
132855
133412
  name?: ((string | null) | undefined) | undefined;
132856
133413
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
132857
133414
  display_name?: string | undefined;
133415
+ /**
133416
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
133417
+ */
133418
+ climate_preset_mode?: (('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined) | undefined;
132858
133419
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
132859
133420
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
132860
133421
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -132885,6 +133446,10 @@ interface Routes {
132885
133446
  name?: (string | null) | undefined;
132886
133447
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
132887
133448
  display_name: string;
133449
+ /**
133450
+ The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
133451
+ */
133452
+ climate_preset_mode?: ('home' | 'away' | 'wake' | 'sleep' | 'occupied' | 'unoccupied') | undefined;
132888
133453
  /** Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`. */
132889
133454
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
132890
133455
  /** Desired [HVAC mode](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`. */
@@ -134116,6 +134681,8 @@ interface Routes {
134116
134681
  acs_credential_id: string;
134117
134682
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134118
134683
  acs_user_id?: string | undefined;
134684
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134685
+ user_identity_id?: string | undefined;
134119
134686
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134120
134687
  connected_account_id: string;
134121
134688
  acs_credential_pool_id?: string | undefined;
@@ -134244,6 +134811,8 @@ interface Routes {
134244
134811
  acs_credential_id: string;
134245
134812
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134246
134813
  acs_user_id?: string | undefined;
134814
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134815
+ user_identity_id?: string | undefined;
134247
134816
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134248
134817
  connected_account_id: string;
134249
134818
  acs_credential_pool_id?: string | undefined;
@@ -134424,6 +134993,8 @@ interface Routes {
134424
134993
  acs_credential_id: string;
134425
134994
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134426
134995
  acs_user_id?: string | undefined;
134996
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134997
+ user_identity_id?: string | undefined;
134427
134998
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134428
134999
  connected_account_id: string;
134429
135000
  acs_credential_pool_id?: string | undefined;
@@ -134552,6 +135123,8 @@ interface Routes {
134552
135123
  acs_credential_id: string;
134553
135124
  /** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134554
135125
  acs_user_id?: string | undefined;
135126
+ /** ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
135127
+ user_identity_id?: string | undefined;
134555
135128
  /** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
134556
135129
  connected_account_id: string;
134557
135130
  acs_credential_pool_id?: string | undefined;