@seamapi/types 1.60.0 → 1.61.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.
@@ -733,7 +733,11 @@ export interface Routes {
733
733
  workspace_id: string
734
734
  created_at: string
735
735
  display_name: string
736
- external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user'
736
+ external_type:
737
+ | 'pti_user'
738
+ | 'brivo_user'
739
+ | 'hid_cm_user'
740
+ | 'salto_site_user'
737
741
  external_type_display_name: string
738
742
  is_suspended: boolean
739
743
  full_name?: string | undefined
@@ -1123,7 +1127,11 @@ export interface Routes {
1123
1127
  workspace_id: string
1124
1128
  created_at: string
1125
1129
  display_name: string
1126
- external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user'
1130
+ external_type:
1131
+ | 'pti_user'
1132
+ | 'brivo_user'
1133
+ | 'hid_cm_user'
1134
+ | 'salto_site_user'
1127
1135
  external_type_display_name: string
1128
1136
  is_suspended: boolean
1129
1137
  full_name?: string | undefined
@@ -1162,7 +1170,11 @@ export interface Routes {
1162
1170
  workspace_id: string
1163
1171
  created_at: string
1164
1172
  display_name: string
1165
- external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user'
1173
+ external_type:
1174
+ | 'pti_user'
1175
+ | 'brivo_user'
1176
+ | 'hid_cm_user'
1177
+ | 'salto_site_user'
1166
1178
  external_type_display_name: string
1167
1179
  is_suspended: boolean
1168
1180
  full_name?: string | undefined
@@ -1190,7 +1202,11 @@ export interface Routes {
1190
1202
  workspace_id: string
1191
1203
  created_at: string
1192
1204
  display_name: string
1193
- external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user'
1205
+ external_type:
1206
+ | 'pti_user'
1207
+ | 'brivo_user'
1208
+ | 'hid_cm_user'
1209
+ | 'salto_site_user'
1194
1210
  external_type_display_name: string
1195
1211
  is_suspended: boolean
1196
1212
  full_name?: string | undefined
@@ -1687,6 +1703,7 @@ export interface Routes {
1687
1703
  custom_metadata?:
1688
1704
  | Record<string, string | number | boolean | null>
1689
1705
  | undefined
1706
+ automatically_manage_new_devices: boolean
1690
1707
  }
1691
1708
  }
1692
1709
  }
@@ -1717,9 +1734,44 @@ export interface Routes {
1717
1734
  custom_metadata?:
1718
1735
  | Record<string, string | number | boolean | null>
1719
1736
  | undefined
1737
+ automatically_manage_new_devices: boolean
1720
1738
  }>
1721
1739
  }
1722
1740
  }
1741
+ '/connected_accounts/update': {
1742
+ route: '/connected_accounts/update'
1743
+ method: 'POST'
1744
+ queryParams: {}
1745
+ jsonBody: {
1746
+ connected_account_id: string
1747
+ automatically_manage_new_devices?: boolean | undefined
1748
+ }
1749
+ commonParams: {}
1750
+ formData: {}
1751
+ jsonResponse: {
1752
+ connected_account: {
1753
+ connected_account_id?: string | undefined
1754
+ created_at?: string | undefined
1755
+ user_identifier?:
1756
+ | {
1757
+ username?: string | undefined
1758
+ api_url?: string | undefined
1759
+ email?: string | undefined
1760
+ phone?: string | undefined
1761
+ exclusive?: boolean | undefined
1762
+ }
1763
+ | undefined
1764
+ account_type?: string | undefined
1765
+ account_type_display_name: string
1766
+ errors?: any
1767
+ warnings?: any
1768
+ custom_metadata?:
1769
+ | Record<string, string | number | boolean | null>
1770
+ | undefined
1771
+ automatically_manage_new_devices: boolean
1772
+ }
1773
+ }
1774
+ }
1723
1775
  '/devices/delete': {
1724
1776
  route: '/devices/delete'
1725
1777
  method: 'DELETE' | 'POST'
@@ -2140,6 +2192,8 @@ export interface Routes {
2140
2192
  schedule_starts_at: string
2141
2193
  schedule_ends_at: string
2142
2194
  created_at: string
2195
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
2196
+ errors?: any
2143
2197
  automatic_heating_enabled?: boolean | undefined
2144
2198
  automatic_cooling_enabled?: boolean | undefined
2145
2199
  hvac_mode_setting?:
@@ -2231,6 +2285,8 @@ export interface Routes {
2231
2285
  schedule_starts_at: string
2232
2286
  schedule_ends_at: string
2233
2287
  created_at: string
2288
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
2289
+ errors?: any
2234
2290
  automatic_heating_enabled?: boolean | undefined
2235
2291
  automatic_cooling_enabled?: boolean | undefined
2236
2292
  hvac_mode_setting?:
@@ -2316,6 +2372,8 @@ export interface Routes {
2316
2372
  schedule_starts_at: string
2317
2373
  schedule_ends_at: string
2318
2374
  created_at: string
2375
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
2376
+ errors?: any
2319
2377
  automatic_heating_enabled?: boolean | undefined
2320
2378
  automatic_cooling_enabled?: boolean | undefined
2321
2379
  hvac_mode_setting?:
@@ -2889,6 +2947,8 @@ export interface Routes {
2889
2947
  schedule_starts_at: string
2890
2948
  schedule_ends_at: string
2891
2949
  created_at: string
2950
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
2951
+ errors?: any
2892
2952
  automatic_heating_enabled?: boolean | undefined
2893
2953
  automatic_cooling_enabled?: boolean | undefined
2894
2954
  hvac_mode_setting?:
@@ -2980,6 +3040,8 @@ export interface Routes {
2980
3040
  schedule_starts_at: string
2981
3041
  schedule_ends_at: string
2982
3042
  created_at: string
3043
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
3044
+ errors?: any
2983
3045
  automatic_heating_enabled?: boolean | undefined
2984
3046
  automatic_cooling_enabled?: boolean | undefined
2985
3047
  hvac_mode_setting?:
@@ -3065,6 +3127,8 @@ export interface Routes {
3065
3127
  schedule_starts_at: string
3066
3128
  schedule_ends_at: string
3067
3129
  created_at: string
3130
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
3131
+ errors?: any
3068
3132
  automatic_heating_enabled?: boolean | undefined
3069
3133
  automatic_cooling_enabled?: boolean | undefined
3070
3134
  hvac_mode_setting?:
@@ -4079,6 +4143,8 @@ export interface Routes {
4079
4143
  schedule_starts_at: string
4080
4144
  schedule_ends_at: string
4081
4145
  created_at: string
4146
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
4147
+ errors?: any
4082
4148
  automatic_heating_enabled?: boolean | undefined
4083
4149
  automatic_cooling_enabled?: boolean | undefined
4084
4150
  hvac_mode_setting?:
@@ -4170,6 +4236,8 @@ export interface Routes {
4170
4236
  schedule_starts_at: string
4171
4237
  schedule_ends_at: string
4172
4238
  created_at: string
4239
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
4240
+ errors?: any
4173
4241
  automatic_heating_enabled?: boolean | undefined
4174
4242
  automatic_cooling_enabled?: boolean | undefined
4175
4243
  hvac_mode_setting?:
@@ -4255,6 +4323,8 @@ export interface Routes {
4255
4323
  schedule_starts_at: string
4256
4324
  schedule_ends_at: string
4257
4325
  created_at: string
4326
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
4327
+ errors?: any
4258
4328
  automatic_heating_enabled?: boolean | undefined
4259
4329
  automatic_cooling_enabled?: boolean | undefined
4260
4330
  hvac_mode_setting?:
@@ -4707,6 +4777,8 @@ export interface Routes {
4707
4777
  schedule_starts_at: string
4708
4778
  schedule_ends_at: string
4709
4779
  created_at: string
4780
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
4781
+ errors?: any
4710
4782
  automatic_heating_enabled?: boolean | undefined
4711
4783
  automatic_cooling_enabled?: boolean | undefined
4712
4784
  hvac_mode_setting?:
@@ -4798,6 +4870,8 @@ export interface Routes {
4798
4870
  schedule_starts_at: string
4799
4871
  schedule_ends_at: string
4800
4872
  created_at: string
4873
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
4874
+ errors?: any
4801
4875
  automatic_heating_enabled?: boolean | undefined
4802
4876
  automatic_cooling_enabled?: boolean | undefined
4803
4877
  hvac_mode_setting?:
@@ -4883,6 +4957,8 @@ export interface Routes {
4883
4957
  schedule_starts_at: string
4884
4958
  schedule_ends_at: string
4885
4959
  created_at: string
4960
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
4961
+ errors?: any
4886
4962
  automatic_heating_enabled?: boolean | undefined
4887
4963
  automatic_cooling_enabled?: boolean | undefined
4888
4964
  hvac_mode_setting?:
@@ -5456,6 +5532,8 @@ export interface Routes {
5456
5532
  schedule_starts_at: string
5457
5533
  schedule_ends_at: string
5458
5534
  created_at: string
5535
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
5536
+ errors?: any
5459
5537
  automatic_heating_enabled?: boolean | undefined
5460
5538
  automatic_cooling_enabled?: boolean | undefined
5461
5539
  hvac_mode_setting?:
@@ -5547,6 +5625,8 @@ export interface Routes {
5547
5625
  schedule_starts_at: string
5548
5626
  schedule_ends_at: string
5549
5627
  created_at: string
5628
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
5629
+ errors?: any
5550
5630
  automatic_heating_enabled?: boolean | undefined
5551
5631
  automatic_cooling_enabled?: boolean | undefined
5552
5632
  hvac_mode_setting?:
@@ -5632,6 +5712,8 @@ export interface Routes {
5632
5712
  schedule_starts_at: string
5633
5713
  schedule_ends_at: string
5634
5714
  created_at: string
5715
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
5716
+ errors?: any
5635
5717
  automatic_heating_enabled?: boolean | undefined
5636
5718
  automatic_cooling_enabled?: boolean | undefined
5637
5719
  hvac_mode_setting?:
@@ -6084,6 +6166,8 @@ export interface Routes {
6084
6166
  schedule_starts_at: string
6085
6167
  schedule_ends_at: string
6086
6168
  created_at: string
6169
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
6170
+ errors?: any
6087
6171
  automatic_heating_enabled?: boolean | undefined
6088
6172
  automatic_cooling_enabled?: boolean | undefined
6089
6173
  hvac_mode_setting?:
@@ -6175,6 +6259,8 @@ export interface Routes {
6175
6259
  schedule_starts_at: string
6176
6260
  schedule_ends_at: string
6177
6261
  created_at: string
6262
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
6263
+ errors?: any
6178
6264
  automatic_heating_enabled?: boolean | undefined
6179
6265
  automatic_cooling_enabled?: boolean | undefined
6180
6266
  hvac_mode_setting?:
@@ -6260,6 +6346,8 @@ export interface Routes {
6260
6346
  schedule_starts_at: string
6261
6347
  schedule_ends_at: string
6262
6348
  created_at: string
6349
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
6350
+ errors?: any
6263
6351
  automatic_heating_enabled?: boolean | undefined
6264
6352
  automatic_cooling_enabled?: boolean | undefined
6265
6353
  hvac_mode_setting?:
@@ -6611,6 +6699,8 @@ export interface Routes {
6611
6699
  schedule_starts_at: string
6612
6700
  schedule_ends_at: string
6613
6701
  created_at: string
6702
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
6703
+ errors?: any
6614
6704
  automatic_heating_enabled?: boolean | undefined
6615
6705
  automatic_cooling_enabled?: boolean | undefined
6616
6706
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
@@ -6652,6 +6742,8 @@ export interface Routes {
6652
6742
  schedule_starts_at: string
6653
6743
  schedule_ends_at: string
6654
6744
  created_at: string
6745
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
6746
+ errors?: any
6655
6747
  automatic_heating_enabled?: boolean | undefined
6656
6748
  automatic_cooling_enabled?: boolean | undefined
6657
6749
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
@@ -6682,6 +6774,8 @@ export interface Routes {
6682
6774
  schedule_starts_at: string
6683
6775
  schedule_ends_at: string
6684
6776
  created_at: string
6777
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
6778
+ errors?: any
6685
6779
  automatic_heating_enabled?: boolean | undefined
6686
6780
  automatic_cooling_enabled?: boolean | undefined
6687
6781
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
@@ -6723,6 +6817,8 @@ export interface Routes {
6723
6817
  schedule_starts_at: string
6724
6818
  schedule_ends_at: string
6725
6819
  created_at: string
6820
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
6821
+ errors?: any
6726
6822
  automatic_heating_enabled?: boolean | undefined
6727
6823
  automatic_cooling_enabled?: boolean | undefined
6728
6824
  hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
@@ -7157,6 +7253,8 @@ export interface Routes {
7157
7253
  schedule_starts_at: string
7158
7254
  schedule_ends_at: string
7159
7255
  created_at: string
7256
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
7257
+ errors?: any
7160
7258
  automatic_heating_enabled?: boolean | undefined
7161
7259
  automatic_cooling_enabled?: boolean | undefined
7162
7260
  hvac_mode_setting?:
@@ -7248,6 +7346,8 @@ export interface Routes {
7248
7346
  schedule_starts_at: string
7249
7347
  schedule_ends_at: string
7250
7348
  created_at: string
7349
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
7350
+ errors?: any
7251
7351
  automatic_heating_enabled?: boolean | undefined
7252
7352
  automatic_cooling_enabled?: boolean | undefined
7253
7353
  hvac_mode_setting?:
@@ -7333,6 +7433,8 @@ export interface Routes {
7333
7433
  schedule_starts_at: string
7334
7434
  schedule_ends_at: string
7335
7435
  created_at: string
7436
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
7437
+ errors?: any
7336
7438
  automatic_heating_enabled?: boolean | undefined
7337
7439
  automatic_cooling_enabled?: boolean | undefined
7338
7440
  hvac_mode_setting?:
@@ -7936,6 +8038,8 @@ export interface Routes {
7936
8038
  schedule_starts_at: string
7937
8039
  schedule_ends_at: string
7938
8040
  created_at: string
8041
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
8042
+ errors?: any
7939
8043
  automatic_heating_enabled?: boolean | undefined
7940
8044
  automatic_cooling_enabled?: boolean | undefined
7941
8045
  hvac_mode_setting?:
@@ -8027,6 +8131,8 @@ export interface Routes {
8027
8131
  schedule_starts_at: string
8028
8132
  schedule_ends_at: string
8029
8133
  created_at: string
8134
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
8135
+ errors?: any
8030
8136
  automatic_heating_enabled?: boolean | undefined
8031
8137
  automatic_cooling_enabled?: boolean | undefined
8032
8138
  hvac_mode_setting?:
@@ -8112,6 +8218,8 @@ export interface Routes {
8112
8218
  schedule_starts_at: string
8113
8219
  schedule_ends_at: string
8114
8220
  created_at: string
8221
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
8222
+ errors?: any
8115
8223
  automatic_heating_enabled?: boolean | undefined
8116
8224
  automatic_cooling_enabled?: boolean | undefined
8117
8225
  hvac_mode_setting?:
@@ -8715,6 +8823,8 @@ export interface Routes {
8715
8823
  schedule_starts_at: string
8716
8824
  schedule_ends_at: string
8717
8825
  created_at: string
8826
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
8827
+ errors?: any
8718
8828
  automatic_heating_enabled?: boolean | undefined
8719
8829
  automatic_cooling_enabled?: boolean | undefined
8720
8830
  hvac_mode_setting?:
@@ -8806,6 +8916,8 @@ export interface Routes {
8806
8916
  schedule_starts_at: string
8807
8917
  schedule_ends_at: string
8808
8918
  created_at: string
8919
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
8920
+ errors?: any
8809
8921
  automatic_heating_enabled?: boolean | undefined
8810
8922
  automatic_cooling_enabled?: boolean | undefined
8811
8923
  hvac_mode_setting?:
@@ -8891,6 +9003,8 @@ export interface Routes {
8891
9003
  schedule_starts_at: string
8892
9004
  schedule_ends_at: string
8893
9005
  created_at: string
9006
+ /** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
9007
+ errors?: any
8894
9008
  automatic_heating_enabled?: boolean | undefined
8895
9009
  automatic_cooling_enabled?: boolean | undefined
8896
9010
  hvac_mode_setting?:
@@ -8964,7 +9078,11 @@ export interface Routes {
8964
9078
  workspace_id: string
8965
9079
  created_at: string
8966
9080
  display_name: string
8967
- external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user'
9081
+ external_type:
9082
+ | 'pti_user'
9083
+ | 'brivo_user'
9084
+ | 'hid_cm_user'
9085
+ | 'salto_site_user'
8968
9086
  external_type_display_name: string
8969
9087
  is_suspended: boolean
8970
9088
  full_name?: string | undefined
@@ -4,6 +4,7 @@ export const acs_user_external_type = z.enum([
4
4
  'pti_user',
5
5
  'brivo_user',
6
6
  'hid_cm_user',
7
+ 'salto_site_user',
7
8
  ])
8
9
 
9
10
  export type AcsUserExternalType = z.infer<typeof acs_user_external_type>
@@ -30,6 +30,11 @@ export const climate_setting_schedule = z
30
30
  schedule_starts_at: z.string(),
31
31
  schedule_ends_at: z.string(),
32
32
  created_at: z.string().datetime(),
33
+ errors: z
34
+ .any()
35
+ .describe(
36
+ 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
37
+ ),
33
38
  })
34
39
  .merge(climate_setting.partial())
35
40