@seamapi/types 1.292.1 → 1.293.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 (34) hide show
  1. package/dist/connect.cjs +148 -24
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +160 -518
  4. package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.js → assa-abloy-vostio.js} +1 -1
  5. package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.js.map → assa-abloy-vostio.js.map} +1 -1
  6. package/lib/seam/connect/models/acs/metadata/{dormakaba_community.js → dormakaba-community.js} +1 -1
  7. package/lib/seam/connect/models/acs/metadata/{dormakaba_community.js.map → dormakaba-community.js.map} +1 -1
  8. package/lib/seam/connect/models/acs/metadata/index.d.ts +2 -2
  9. package/lib/seam/connect/models/acs/metadata/index.js +2 -2
  10. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -0
  11. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +5 -0
  12. package/lib/seam/connect/models/devices/device.d.ts +7 -0
  13. package/lib/seam/connect/models/devices/phone.d.ts +5 -0
  14. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
  15. package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +3 -0
  16. package/lib/seam/connect/models/thermostats/thermostat-schedule.js +8 -0
  17. package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
  18. package/lib/seam/connect/openapi.d.ts +86 -9
  19. package/lib/seam/connect/openapi.js +102 -18
  20. package/lib/seam/connect/openapi.js.map +1 -1
  21. package/lib/seam/connect/route-types.d.ts +268 -719
  22. package/lib/seam/connect/schemas.d.ts +1 -1
  23. package/lib/seam/connect/schemas.js +1 -1
  24. package/lib/seam/connect/schemas.js.map +1 -1
  25. package/package.json +1 -1
  26. package/src/lib/seam/connect/models/acs/metadata/index.ts +2 -2
  27. package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +10 -0
  28. package/src/lib/seam/connect/openapi.ts +114 -18
  29. package/src/lib/seam/connect/route-types.ts +271 -905
  30. package/src/lib/seam/connect/schemas.ts +1 -0
  31. /package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.d.ts → assa-abloy-vostio.d.ts} +0 -0
  32. /package/lib/seam/connect/models/acs/metadata/{dormakaba_community.d.ts → dormakaba-community.d.ts} +0 -0
  33. /package/src/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.ts → assa-abloy-vostio.ts} +0 -0
  34. /package/src/lib/seam/connect/models/acs/metadata/{dormakaba_community.ts → dormakaba-community.ts} +0 -0
@@ -5398,8 +5398,8 @@ export interface Routes {
5398
5398
  queryParams: {}
5399
5399
  jsonBody: {}
5400
5400
  commonParams: {
5401
- /** ID of the encoder to use for the encoding. */
5402
- device_id: string
5401
+ /** ID of the acs_encoder to use for the encoding. */
5402
+ acs_encoder_id: string
5403
5403
  /** ID of the acs_credential to encode on a physical card. */
5404
5404
  acs_credential_id: string
5405
5405
  }
@@ -6056,914 +6056,246 @@ export interface Routes {
6056
6056
  }
6057
6057
  | {
6058
6058
  /** The ID of the action attempt. */
6059
- action_attempt_id: string
6060
- status: 'pending'
6061
- result: null
6062
- error: null
6063
- action_type: 'SYNC_ACCESS_CODES'
6064
- }
6065
- | {
6066
- /** The ID of the action attempt. */
6067
- action_attempt_id: string
6068
- status: 'success'
6069
- error: null
6070
- action_type: 'SYNC_ACCESS_CODES'
6071
- result: {}
6072
- }
6073
- | {
6074
- /** The ID of the action attempt. */
6075
- action_attempt_id: string
6076
- status: 'error'
6077
- result: null
6078
- action_type: 'SYNC_ACCESS_CODES'
6079
- error: {
6080
- type: string
6081
- message: string
6082
- }
6083
- }
6084
- | {
6085
- /** The ID of the action attempt. */
6086
- action_attempt_id: string
6087
- status: 'pending'
6088
- result: null
6089
- error: null
6090
- action_type: 'CREATE_ACCESS_CODE'
6091
- }
6092
- | {
6093
- /** The ID of the action attempt. */
6094
- action_attempt_id: string
6095
- status: 'success'
6096
- error: null
6097
- action_type: 'CREATE_ACCESS_CODE'
6098
- result: {
6099
- access_code?: any
6100
- }
6101
- }
6102
- | {
6103
- /** The ID of the action attempt. */
6104
- action_attempt_id: string
6105
- status: 'error'
6106
- result: null
6107
- action_type: 'CREATE_ACCESS_CODE'
6108
- error: {
6109
- type: string
6110
- message: string
6111
- }
6112
- }
6113
- | {
6114
- /** The ID of the action attempt. */
6115
- action_attempt_id: string
6116
- status: 'pending'
6117
- result: null
6118
- error: null
6119
- action_type: 'DELETE_ACCESS_CODE'
6120
- }
6121
- | {
6122
- /** The ID of the action attempt. */
6123
- action_attempt_id: string
6124
- status: 'success'
6125
- error: null
6126
- action_type: 'DELETE_ACCESS_CODE'
6127
- result: {}
6128
- }
6129
- | {
6130
- /** The ID of the action attempt. */
6131
- action_attempt_id: string
6132
- status: 'error'
6133
- result: null
6134
- action_type: 'DELETE_ACCESS_CODE'
6135
- error: {
6136
- type: string
6137
- message: string
6138
- }
6139
- }
6140
- | {
6141
- /** The ID of the action attempt. */
6142
- action_attempt_id: string
6143
- status: 'pending'
6144
- result: null
6145
- error: null
6146
- action_type: 'UPDATE_ACCESS_CODE'
6147
- }
6148
- | {
6149
- /** The ID of the action attempt. */
6150
- action_attempt_id: string
6151
- status: 'success'
6152
- error: null
6153
- action_type: 'UPDATE_ACCESS_CODE'
6154
- result: {
6155
- access_code?: any
6156
- }
6157
- }
6158
- | {
6159
- /** The ID of the action attempt. */
6160
- action_attempt_id: string
6161
- status: 'error'
6162
- result: null
6163
- action_type: 'UPDATE_ACCESS_CODE'
6164
- error: {
6165
- type: string
6166
- message: string
6167
- }
6168
- }
6169
- | {
6170
- /** The ID of the action attempt. */
6171
- action_attempt_id: string
6172
- status: 'pending'
6173
- result: null
6174
- error: null
6175
- action_type: 'CREATE_NOISE_THRESHOLD'
6176
- }
6177
- | {
6178
- /** The ID of the action attempt. */
6179
- action_attempt_id: string
6180
- status: 'success'
6181
- error: null
6182
- action_type: 'CREATE_NOISE_THRESHOLD'
6183
- result: {
6184
- noise_threshold?: any
6185
- }
6186
- }
6187
- | {
6188
- /** The ID of the action attempt. */
6189
- action_attempt_id: string
6190
- status: 'error'
6191
- result: null
6192
- action_type: 'CREATE_NOISE_THRESHOLD'
6193
- error: {
6194
- type: string
6195
- message: string
6196
- }
6197
- }
6198
- | {
6199
- /** The ID of the action attempt. */
6200
- action_attempt_id: string
6201
- status: 'pending'
6202
- result: null
6203
- error: null
6204
- action_type: 'DELETE_NOISE_THRESHOLD'
6205
- }
6206
- | {
6207
- /** The ID of the action attempt. */
6208
- action_attempt_id: string
6209
- status: 'success'
6210
- error: null
6211
- action_type: 'DELETE_NOISE_THRESHOLD'
6212
- result: {}
6213
- }
6214
- | {
6215
- /** The ID of the action attempt. */
6216
- action_attempt_id: string
6217
- status: 'error'
6218
- result: null
6219
- action_type: 'DELETE_NOISE_THRESHOLD'
6220
- error: {
6221
- type: string
6222
- message: string
6223
- }
6224
- }
6225
- | {
6226
- /** The ID of the action attempt. */
6227
- action_attempt_id: string
6228
- status: 'pending'
6229
- result: null
6230
- error: null
6231
- action_type: 'UPDATE_NOISE_THRESHOLD'
6232
- }
6233
- | {
6234
- /** The ID of the action attempt. */
6235
- action_attempt_id: string
6236
- status: 'success'
6237
- error: null
6238
- action_type: 'UPDATE_NOISE_THRESHOLD'
6239
- result: {
6240
- noise_threshold?: any
6241
- }
6242
- }
6243
- | {
6244
- /** The ID of the action attempt. */
6245
- action_attempt_id: string
6246
- status: 'error'
6247
- result: null
6248
- action_type: 'UPDATE_NOISE_THRESHOLD'
6249
- error: {
6250
- type: string
6251
- message: string
6252
- }
6253
- }
6254
- }
6255
- }
6256
- '/acs/encoders/list': {
6257
- route: '/acs/encoders/list'
6258
- method: 'GET' | 'POST'
6259
- queryParams: {}
6260
- jsonBody: {}
6261
- commonParams:
6262
- | {
6263
- acs_system_ids: string[]
6264
- device_ids: string[]
6265
- limit?: number
6266
- }
6267
- | {
6268
- device_ids: string[]
6269
- limit?: number
6270
- }
6271
- | {
6272
- acs_system_ids: string[]
6273
- limit?: number
6274
- }
6275
- formData: {}
6276
- jsonResponse: {
6277
- devices: Array<{
6278
- /** Unique identifier for the device. */
6279
- device_id: string
6280
- /** Type of the device. */
6281
- device_type:
6282
- | (
6283
- | 'akuvox_lock'
6284
- | 'august_lock'
6285
- | 'brivo_access_point'
6286
- | 'butterflymx_panel'
6287
- | 'avigilon_alta_entry'
6288
- | 'doorking_lock'
6289
- | 'genie_door'
6290
- | 'igloo_lock'
6291
- | 'linear_lock'
6292
- | 'lockly_lock'
6293
- | 'kwikset_lock'
6294
- | 'nuki_lock'
6295
- | 'salto_lock'
6296
- | 'schlage_lock'
6297
- | 'seam_relay'
6298
- | 'smartthings_lock'
6299
- | 'wyze_lock'
6300
- | 'yale_lock'
6301
- | 'two_n_intercom'
6302
- | 'controlbyweb_device'
6303
- | 'ttlock_lock'
6304
- | 'igloohome_lock'
6305
- | 'hubitat_lock'
6306
- | 'four_suites_door'
6307
- | 'dormakaba_oracode_door'
6308
- | 'tedee_lock'
6309
- | 'akiles_lock'
6310
- )
6311
- | ('noiseaware_activity_zone' | 'minut_sensor')
6312
- | (
6313
- | 'ecobee_thermostat'
6314
- | 'nest_thermostat'
6315
- | 'honeywell_resideo_thermostat'
6316
- )
6317
- | ('ios_phone' | 'android_phone')
6318
- | ('visionline_encoder' | 'assa_abloy_vostio_encoder')
6319
- /** Optional nickname to describe the device, settable through Seam */
6320
- nickname?: string | undefined
6321
- /** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
6322
- display_name: string
6323
- /** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
6324
- capabilities_supported: Array<
6325
- | 'access_code'
6326
- | 'lock'
6327
- | 'noise_detection'
6328
- | 'thermostat'
6329
- | 'battery'
6330
- | 'phone'
6331
- >
6332
- /** Properties of the device. */
6333
- properties: (({
6334
- /** Indicates whether the device is online. */
6335
- online: boolean
6336
- /** Name of the device.
6337
- * @deprecated use device.display_name instead */
6338
- name: string
6339
- /** Represents the accessory keypad state. */
6340
- accessory_keypad?:
6341
- | {
6342
- /** Indicates if the accessory_keypad is connected to the device. */
6343
- is_connected: boolean
6344
- /** Indicates if the keypad battery properties. */
6345
- battery?:
6346
- | {
6347
- level: number
6348
- }
6349
- | undefined
6350
- }
6351
- | undefined
6352
- appearance: {
6353
- /** Name of the device as seen from the provider API and application, not settable through Seam. */
6354
- name: string
6355
- }
6356
- model: {
6357
- /** Indicates whether the device can connect a accessory keypad. */
6358
- can_connect_accessory_keypad?: boolean | undefined
6359
- /** Display name of the device model. */
6360
- display_name: string
6361
- /** Display name that corresponds to the manufacturer-specific terminology for the device. */
6362
- manufacturer_display_name: string
6363
- /** Indicates whether the device has a built in accessory keypad. */
6364
- has_built_in_keypad?: boolean | undefined
6365
- /** Indicates whether the device supports offline access codes. */
6366
- offline_access_codes_supported?: boolean | undefined
6367
- /** Indicates whether the device supports online access codes. */
6368
- online_access_codes_supported?: boolean | undefined
6369
- /**
6370
- * @deprecated use device.properties.model.can_connect_accessory_keypad */
6371
- accessory_keypad_supported?: boolean | undefined
6372
- }
6373
- /** Indicates whether the device has direct power. */
6374
- has_direct_power?: boolean | undefined
6375
- /** Indicates the battery level of the device as a decimal value between 0 and 1, inclusive. */
6376
- battery_level?: number | undefined
6377
- /** Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage. */
6378
- battery?:
6379
- | {
6380
- level: number
6381
- status: 'critical' | 'low' | 'good' | 'full'
6382
- }
6383
- | undefined
6384
- /** Manufacturer of the device. */
6385
- manufacturer?: string | undefined
6386
- /** Image URL for the device. */
6387
- image_url?: string | undefined
6388
- /** Alt text for the device image. */
6389
- image_alt_text?: string | undefined
6390
- /** Serial number of the device. */
6391
- serial_number?: string | undefined
6392
- /** Indicates whether it is currently possible to use online access codes for the device. */
6393
- online_access_codes_enabled?: boolean | undefined
6394
- /** Indicates whether it is currently possible to use offline access codes for the device. */
6395
- offline_access_codes_enabled?: boolean | undefined
6396
- /**
6397
- * @deprecated use device.properties.model.can_connect_accessory_keypad */
6398
- supports_accessory_keypad?: boolean | undefined
6399
- /**
6400
- * @deprecated use offline_access_codes_enabled */
6401
- supports_offline_access_codes?: boolean | undefined
6402
- /** Indicates current noise level in decibels, if the device supports noise detection. */
6403
- noise_level_decibels?: number | undefined
6404
- /** Array of noise threshold IDs that are currently triggering. */
6405
- currently_triggering_noise_threshold_ids?: string[] | undefined
6406
- } & {
6407
- assa_abloy_credential_service_metadata?:
6408
- | (
6409
- | {
6410
- has_active_endpoint: boolean
6411
- endpoints: Array<{
6412
- endpoint_id: string
6413
- is_active: boolean
6414
- }>
6415
- }
6416
- | undefined
6417
- )
6418
- | undefined
6419
- }) & {
6420
- august_metadata?:
6421
- | {
6422
- lock_id: string
6423
- lock_name: string
6424
- house_name: string
6425
- has_keypad: boolean
6426
- keypad_battery_level?: string | undefined
6427
- model?: string | undefined
6428
- house_id?: string | undefined
6429
- }
6430
- | undefined
6431
- avigilon_alta_metadata?:
6432
- | {
6433
- entry_name: string
6434
- org_name: string
6435
- zone_id: number
6436
- zone_name: string
6437
- site_id: number
6438
- site_name: string
6439
- entry_relays_total_count: number
6440
- }
6441
- | undefined
6442
- schlage_metadata?:
6443
- | {
6444
- device_id: string
6445
- device_name: string
6446
- access_code_length: number | null
6447
- model?: string | undefined
6448
- }
6449
- | undefined
6450
- smartthings_metadata?:
6451
- | {
6452
- device_id: string
6453
- device_name: string
6454
- model?: string | undefined
6455
- location_id?: string | undefined
6456
- }
6457
- | undefined
6458
- lockly_metadata?:
6459
- | {
6460
- device_id: string
6461
- device_name: string
6462
- model?: string | undefined
6463
- }
6464
- | undefined
6465
- nuki_metadata?:
6466
- | {
6467
- device_id: string
6468
- device_name: string
6469
- keypad_battery_critical?: boolean | undefined
6470
- keypad_paired?: boolean | undefined
6471
- keypad_2_paired?: boolean | undefined
6472
- }
6473
- | undefined
6474
- kwikset_metadata?:
6475
- | {
6476
- device_id: string
6477
- device_name: string
6478
- model_number: string
6479
- }
6480
- | undefined
6481
- /**
6482
- ---
6483
- deprecated: Use `salto_ks_metadata ` instead.
6484
- */
6485
- salto_metadata?:
6486
- | {
6487
- lock_id: string
6488
- customer_reference: string
6489
- lock_type: string
6490
- battery_level: string
6491
- locked_state: string
6492
- model?: string | undefined
6493
- }
6494
- | undefined
6495
- salto_ks_metadata?:
6496
- | {
6497
- lock_id: string
6498
- customer_reference: string
6499
- lock_type: string
6500
- battery_level: string
6501
- locked_state: string
6502
- model?: string | undefined
6503
- }
6504
- | undefined
6505
- genie_metadata?:
6506
- | {
6507
- device_name: string
6508
- door_name: string
6509
- }
6510
- | undefined
6511
- brivo_metadata?:
6512
- | {
6513
- device_name: string
6514
- }
6515
- | undefined
6516
- igloo_metadata?:
6517
- | {
6518
- device_id: string
6519
- bridge_id: string
6520
- model?: string | undefined
6521
- }
6522
- | undefined
6523
- noiseaware_metadata?:
6524
- | {
6525
- device_model: 'indoor' | 'outdoor'
6526
- noise_level_nrs: number
6527
- noise_level_decibel: number
6528
- device_name: string
6529
- device_id: string
6530
- }
6531
- | undefined
6532
- minut_metadata?:
6533
- | {
6534
- device_id: string
6535
- device_name: string
6536
- latest_sensor_values: {
6537
- temperature: {
6538
- time: string
6539
- value: number
6540
- }
6541
- sound: {
6542
- time: string
6543
- value: number
6544
- }
6545
- humidity: {
6546
- time: string
6547
- value: number
6548
- }
6549
- pressure: {
6550
- time: string
6551
- value: number
6552
- }
6553
- accelerometer_z: {
6554
- time: string
6555
- value: number
6556
- }
6557
- }
6558
- }
6559
- | undefined
6560
- four_suites_metadata?:
6561
- | {
6562
- device_id: number
6563
- device_name: string
6564
- reclose_delay_in_seconds: number
6565
- }
6566
- | undefined
6567
- two_n_metadata?:
6568
- | {
6569
- device_id: number
6570
- device_name: string
6571
- }
6572
- | undefined
6573
- controlbyweb_metadata?:
6574
- | {
6575
- device_id: string
6576
- device_name: string
6577
- relay_name: string | null
6578
- }
6579
- | undefined
6580
- ttlock_metadata?:
6581
- | {
6582
- lock_id: number
6583
- lock_alias: string
6584
- feature_value: string
6585
- features: {
6586
- passcode: boolean
6587
- passcode_management: boolean
6588
- unlock_via_gateway: boolean
6589
- lock_command: boolean
6590
- incomplete_keyboard_passcode: boolean
6591
- }
6592
- has_gateway?: boolean | undefined
6593
- wireless_keypads?:
6594
- | Array<{
6595
- wireless_keypad_id: number
6596
- wireless_keypad_name: string
6597
- }>
6598
- | undefined
6599
- }
6600
- | undefined
6601
- seam_bridge_metadata?:
6602
- | {
6603
- unlock_method?: ('bridge' | 'doorking') | undefined
6604
- device_num: number
6605
- name: string
6606
- }
6607
- | undefined
6608
- igloohome_metadata?:
6609
- | {
6610
- device_id: string
6611
- device_name: string
6612
- bridge_id?: string | undefined
6613
- bridge_name?: string | undefined
6614
- keypad_id?: string | undefined
6615
- }
6616
- | undefined
6617
- nest_metadata?:
6618
- | {
6619
- nest_device_id: string
6620
- device_name: string
6621
- custom_name: string
6622
- display_name?: string | undefined
6623
- }
6624
- | undefined
6625
- ecobee_metadata?:
6626
- | {
6627
- ecobee_device_id: string
6628
- device_name: string
6629
- }
6630
- | undefined
6631
- honeywell_resideo_metadata?:
6632
- | {
6633
- honeywell_resideo_device_id: string
6634
- device_name: string
6635
- }
6636
- | undefined
6637
- hubitat_metadata?:
6638
- | {
6639
- device_id: string
6640
- device_name: string
6641
- device_label: string
6642
- }
6643
- | undefined
6644
- dormakaba_oracode_metadata?:
6645
- | {
6646
- door_id?: number | undefined
6647
- door_name: string
6648
- device_id?: (number | string) | undefined
6649
- door_is_wireless: boolean
6650
- /** @DEPRECATED */
6651
- site_id: number | null
6652
- site_name: string
6653
- iana_timezone?: string | undefined
6654
- predefined_time_slots?:
6655
- | Array<{
6656
- name: string
6657
- prefix: number
6658
- check_in_time: string
6659
- check_out_time: string
6660
- is_24_hour: boolean
6661
- is_biweekly_mode: boolean
6662
- is_one_shot: boolean
6663
- is_master: boolean
6664
- ext_dormakaba_oracode_user_level_prefix: number
6665
- dormakaba_oracode_user_level_id: string
6666
- }>
6667
- | undefined
6668
- }
6669
- | undefined
6670
- wyze_metadata?:
6671
- | {
6672
- device_id: string
6673
- device_name: string
6674
- product_name: string
6675
- product_type: string
6676
- product_model: string
6677
- device_info_model: string
6678
- keypad_uuid?: string | undefined
6679
- locker_status_hardlock?: number | undefined
6680
- }
6681
- | undefined
6682
- tedee_metadata?:
6683
- | {
6684
- device_id: number
6685
- serial_number: string
6686
- device_name: string
6687
- device_model: string
6688
- bridge_id: number
6689
- bridge_name: string
6690
- keypad_id?: number | undefined
6691
- }
6692
- | undefined
6693
- visionline_metadata?:
6694
- | {
6695
- encoder_id: string
6696
- }
6697
- | undefined
6698
- akiles_metadata?:
6699
- | {
6700
- gadget_name: string
6701
- gadget_id: string
6702
- product_name: string
6703
- _member_group_id?: string | undefined
6704
- }
6705
- | undefined
6706
- assa_abloy_vostio_metadata?:
6707
- | {
6708
- encoder_name: string
6709
- }
6710
- | undefined
6711
- }) &
6712
- ({
6713
- _experimental_supported_code_from_access_codes_lengths?:
6714
- | (number[] | undefined)
6715
- | undefined
6716
- code_constraints?:
6717
- | (
6718
- | Array<
6719
- | {
6720
- constraint_type:
6721
- | 'no_zeros'
6722
- | 'cannot_start_with_12'
6723
- | 'no_triple_consecutive_ints'
6724
- | 'cannot_specify_pin_code'
6725
- | 'pin_code_matches_existing_set'
6726
- | 'start_date_in_future'
6727
- | 'no_ascending_or_descending_sequence'
6728
- | 'at_least_three_unique_digits'
6729
- | 'cannot_contain_089'
6730
- | 'cannot_contain_0789'
6731
- }
6732
- | {
6733
- constraint_type: 'name_length' | 'name_must_be_unique'
6734
- min_length?: number | undefined
6735
- max_length?: number | undefined
6736
- }
6737
- >
6738
- | undefined
6739
- )
6740
- | undefined
6741
- supported_code_lengths?: (number[] | undefined) | undefined
6742
- max_active_codes_supported?: (number | undefined) | undefined
6743
- supports_backup_access_code_pool?: (boolean | undefined) | undefined
6744
- has_native_entry_events?: (boolean | undefined) | undefined
6745
- locked?: (boolean | undefined) | undefined
6746
- keypad_battery?:
6747
- | (
6748
- | {
6749
- level: number
6750
- }
6751
- | undefined
6752
- )
6753
- | undefined
6754
- door_open?: (boolean | undefined) | undefined
6755
- } & {
6756
- temperature_fahrenheit?: number | undefined
6757
- temperature_celsius?: number | undefined
6758
- relative_humidity?: number | undefined
6759
- available_hvac_mode_settings?:
6760
- | Array<'off' | 'heat' | 'cool' | 'heat_cool'>
6761
- | undefined
6762
- available_fan_mode_settings?:
6763
- | Array<'auto' | 'on' | 'circulate'>
6764
- | undefined
6765
- is_heating?: boolean | undefined
6766
- is_cooling?: boolean | undefined
6767
- is_fan_running?: boolean | undefined
6768
- /**
6769
- * @deprecated use current_climate_setting.fan_mode_setting instead. */
6770
- fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
6771
- is_temporary_manual_override_active?: boolean | undefined
6772
- current_climate_setting?:
6773
- | {
6774
- /** Unique key to identify the climate preset. */
6775
- climate_preset_key?: string | undefined
6776
- /** Indicates whether this climate preset key can be edited. */
6777
- can_edit?: boolean | undefined
6778
- /** Indicates whether this climate preset key can be deleted. */
6779
- can_delete?: boolean | undefined
6780
- /** User-friendly name to identify the climate preset. */
6781
- name?: ((string | null) | undefined) | undefined
6782
- /** Display name for the climate preset. */
6783
- display_name?: string | undefined
6784
- /** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
6785
- fan_mode_setting?:
6786
- | (('auto' | 'on' | 'circulate') | undefined)
6787
- | undefined
6788
- /** 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`. */
6789
- hvac_mode_setting?:
6790
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
6791
- | undefined
6792
- /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
6793
- cooling_set_point_celsius?: (number | undefined) | undefined
6794
- /** Temperature to which the thermostat should heat (in °C). */
6795
- heating_set_point_celsius?: (number | undefined) | undefined
6796
- /** Temperature to which the thermostat should cool (in °F). */
6797
- cooling_set_point_fahrenheit?:
6798
- | (number | undefined)
6799
- | undefined
6800
- /** Temperature to which the thermostat should heat (in °F). */
6801
- heating_set_point_fahrenheit?:
6802
- | (number | undefined)
6803
- | undefined
6804
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
6805
- manual_override_allowed?: boolean | undefined
6806
- }
6807
- | undefined
6808
- /**
6809
- * @deprecated use fallback_climate_preset_key to specify a fallback climate preset instead. */
6810
- default_climate_setting?:
6811
- | {
6812
- /** Unique key to identify the climate preset. */
6813
- climate_preset_key?: string | undefined
6814
- /** Indicates whether this climate preset key can be edited. */
6815
- can_edit?: boolean | undefined
6816
- /** Indicates whether this climate preset key can be deleted. */
6817
- can_delete?: boolean | undefined
6818
- /** User-friendly name to identify the climate preset. */
6819
- name?: ((string | null) | undefined) | undefined
6820
- /** Display name for the climate preset. */
6821
- display_name?: string | undefined
6822
- /** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
6823
- fan_mode_setting?:
6824
- | (('auto' | 'on' | 'circulate') | undefined)
6825
- | undefined
6826
- /** 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`. */
6827
- hvac_mode_setting?:
6828
- | (('off' | 'heat' | 'cool' | 'heat_cool') | undefined)
6829
- | undefined
6830
- /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
6831
- cooling_set_point_celsius?: (number | undefined) | undefined
6832
- /** Temperature to which the thermostat should heat (in °C). */
6833
- heating_set_point_celsius?: (number | undefined) | undefined
6834
- /** Temperature to which the thermostat should cool (in °F). */
6835
- cooling_set_point_fahrenheit?:
6836
- | (number | undefined)
6837
- | undefined
6838
- /** Temperature to which the thermostat should heat (in °F). */
6839
- heating_set_point_fahrenheit?:
6840
- | (number | undefined)
6841
- | undefined
6842
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
6843
- manual_override_allowed?: boolean | undefined
6844
- }
6845
- | undefined
6846
- available_climate_presets?:
6847
- | Array<{
6848
- /** Unique key to identify the climate preset. */
6849
- climate_preset_key: string
6850
- /** Indicates whether this climate preset key can be edited. */
6851
- can_edit: boolean
6852
- /** Indicates whether this climate preset key can be deleted. */
6853
- can_delete: boolean
6854
- /** User-friendly name to identify the climate preset. */
6855
- name?: (string | null) | undefined
6856
- /** Display name for the climate preset. */
6857
- display_name: string
6858
- /** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
6859
- fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
6860
- /** 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`. */
6861
- hvac_mode_setting?:
6862
- | ('off' | 'heat' | 'cool' | 'heat_cool')
6863
- | undefined
6864
- /** Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points). */
6865
- cooling_set_point_celsius?: number | undefined
6866
- /** Temperature to which the thermostat should heat (in °C). */
6867
- heating_set_point_celsius?: number | undefined
6868
- /** Temperature to which the thermostat should cool (in °F). */
6869
- cooling_set_point_fahrenheit?: number | undefined
6870
- /** Temperature to which the thermostat should heat (in °F). */
6871
- heating_set_point_fahrenheit?: number | undefined
6872
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
6873
- manual_override_allowed: boolean
6874
- }>
6875
- | undefined
6876
- fallback_climate_preset_key?: (string | null) | undefined
6877
- /** Represents a [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) that activates a configured [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) on a [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) at a specified starting time and deactivates the climate preset at a specified ending time. */
6878
- active_thermostat_schedule?:
6879
- | ({
6880
- /** ID of the thermostat schedule. */
6881
- thermostat_schedule_id: string
6882
- /** ID of the desired thermostat device. */
6883
- device_id: string
6884
- /** User-friendly name to identify the thermostat schedule. */
6885
- name?: string | undefined
6886
- /** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the thermostat schedule. */
6887
- climate_preset_key: string
6888
- /** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
6889
- max_override_period_minutes: number
6890
- /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
6891
- starts_at: string
6892
- /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
6893
- ends_at: string
6894
- /** Date and time at which the thermostat schedule was created. */
6895
- created_at: string
6896
- /** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
6897
- errors?: any
6898
- } | null)
6899
- | undefined
6900
- min_cooling_set_point_celsius?: number | undefined
6901
- min_cooling_set_point_fahrenheit?: number | undefined
6902
- max_cooling_set_point_celsius?: number | undefined
6903
- max_cooling_set_point_fahrenheit?: number | undefined
6904
- min_heating_set_point_celsius?: number | undefined
6905
- min_heating_set_point_fahrenheit?: number | undefined
6906
- max_heating_set_point_celsius?: number | undefined
6907
- max_heating_set_point_fahrenheit?: number | undefined
6908
- min_heating_cooling_delta_celsius?: number | undefined
6909
- min_heating_cooling_delta_fahrenheit?: number | undefined
6910
- temperature_threshold?:
6911
- | (
6912
- | {
6913
- lower_limit_celsius: number | null
6914
- lower_limit_fahrenheit: number | null
6915
- upper_limit_celsius: number | null
6916
- upper_limit_fahrenheit: number | null
6917
- }
6918
- | undefined
6919
- )
6920
- | undefined
6921
- })
6922
- /** Location information for the device. */
6923
- location: {
6924
- /** Name of the device location. */
6925
- location_name?: string | undefined
6926
- /** Time zone of the device location. */
6927
- timezone?: string | undefined
6928
- } | null
6929
- /** Unique identifier for the account associated with the device. */
6930
- connected_account_id: string
6931
- /** Unique identifier for the Seam workspace associated with the device. */
6932
- workspace_id: string
6933
- /** Array of errors associated with the device. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
6934
- errors: Array<
6935
- | {
6059
+ action_attempt_id: string
6060
+ status: 'pending'
6061
+ result: null
6062
+ error: null
6063
+ action_type: 'SYNC_ACCESS_CODES'
6064
+ }
6065
+ | {
6066
+ /** The ID of the action attempt. */
6067
+ action_attempt_id: string
6068
+ status: 'success'
6069
+ error: null
6070
+ action_type: 'SYNC_ACCESS_CODES'
6071
+ result: {}
6072
+ }
6073
+ | {
6074
+ /** The ID of the action attempt. */
6075
+ action_attempt_id: string
6076
+ status: 'error'
6077
+ result: null
6078
+ action_type: 'SYNC_ACCESS_CODES'
6079
+ error: {
6080
+ type: string
6936
6081
  message: string
6937
- is_device_error: true
6938
- error_code: string
6939
6082
  }
6940
- | {
6083
+ }
6084
+ | {
6085
+ /** The ID of the action attempt. */
6086
+ action_attempt_id: string
6087
+ status: 'pending'
6088
+ result: null
6089
+ error: null
6090
+ action_type: 'CREATE_ACCESS_CODE'
6091
+ }
6092
+ | {
6093
+ /** The ID of the action attempt. */
6094
+ action_attempt_id: string
6095
+ status: 'success'
6096
+ error: null
6097
+ action_type: 'CREATE_ACCESS_CODE'
6098
+ result: {
6099
+ access_code?: any
6100
+ }
6101
+ }
6102
+ | {
6103
+ /** The ID of the action attempt. */
6104
+ action_attempt_id: string
6105
+ status: 'error'
6106
+ result: null
6107
+ action_type: 'CREATE_ACCESS_CODE'
6108
+ error: {
6109
+ type: string
6941
6110
  message: string
6942
- is_connected_account_error: true
6943
- error_code: string
6944
6111
  }
6945
- >
6946
- /** Array of warnings associated with the device. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
6947
- warnings: Array<{
6112
+ }
6113
+ | {
6114
+ /** The ID of the action attempt. */
6115
+ action_attempt_id: string
6116
+ status: 'pending'
6117
+ result: null
6118
+ error: null
6119
+ action_type: 'DELETE_ACCESS_CODE'
6120
+ }
6121
+ | {
6122
+ /** The ID of the action attempt. */
6123
+ action_attempt_id: string
6124
+ status: 'success'
6125
+ error: null
6126
+ action_type: 'DELETE_ACCESS_CODE'
6127
+ result: {}
6128
+ }
6129
+ | {
6130
+ /** The ID of the action attempt. */
6131
+ action_attempt_id: string
6132
+ status: 'error'
6133
+ result: null
6134
+ action_type: 'DELETE_ACCESS_CODE'
6135
+ error: {
6136
+ type: string
6137
+ message: string
6138
+ }
6139
+ }
6140
+ | {
6141
+ /** The ID of the action attempt. */
6142
+ action_attempt_id: string
6143
+ status: 'pending'
6144
+ result: null
6145
+ error: null
6146
+ action_type: 'UPDATE_ACCESS_CODE'
6147
+ }
6148
+ | {
6149
+ /** The ID of the action attempt. */
6150
+ action_attempt_id: string
6151
+ status: 'success'
6152
+ error: null
6153
+ action_type: 'UPDATE_ACCESS_CODE'
6154
+ result: {
6155
+ access_code?: any
6156
+ }
6157
+ }
6158
+ | {
6159
+ /** The ID of the action attempt. */
6160
+ action_attempt_id: string
6161
+ status: 'error'
6162
+ result: null
6163
+ action_type: 'UPDATE_ACCESS_CODE'
6164
+ error: {
6165
+ type: string
6166
+ message: string
6167
+ }
6168
+ }
6169
+ | {
6170
+ /** The ID of the action attempt. */
6171
+ action_attempt_id: string
6172
+ status: 'pending'
6173
+ result: null
6174
+ error: null
6175
+ action_type: 'CREATE_NOISE_THRESHOLD'
6176
+ }
6177
+ | {
6178
+ /** The ID of the action attempt. */
6179
+ action_attempt_id: string
6180
+ status: 'success'
6181
+ error: null
6182
+ action_type: 'CREATE_NOISE_THRESHOLD'
6183
+ result: {
6184
+ noise_threshold?: any
6185
+ }
6186
+ }
6187
+ | {
6188
+ /** The ID of the action attempt. */
6189
+ action_attempt_id: string
6190
+ status: 'error'
6191
+ result: null
6192
+ action_type: 'CREATE_NOISE_THRESHOLD'
6193
+ error: {
6194
+ type: string
6195
+ message: string
6196
+ }
6197
+ }
6198
+ | {
6199
+ /** The ID of the action attempt. */
6200
+ action_attempt_id: string
6201
+ status: 'pending'
6202
+ result: null
6203
+ error: null
6204
+ action_type: 'DELETE_NOISE_THRESHOLD'
6205
+ }
6206
+ | {
6207
+ /** The ID of the action attempt. */
6208
+ action_attempt_id: string
6209
+ status: 'success'
6210
+ error: null
6211
+ action_type: 'DELETE_NOISE_THRESHOLD'
6212
+ result: {}
6213
+ }
6214
+ | {
6215
+ /** The ID of the action attempt. */
6216
+ action_attempt_id: string
6217
+ status: 'error'
6218
+ result: null
6219
+ action_type: 'DELETE_NOISE_THRESHOLD'
6220
+ error: {
6221
+ type: string
6222
+ message: string
6223
+ }
6224
+ }
6225
+ | {
6226
+ /** The ID of the action attempt. */
6227
+ action_attempt_id: string
6228
+ status: 'pending'
6229
+ result: null
6230
+ error: null
6231
+ action_type: 'UPDATE_NOISE_THRESHOLD'
6232
+ }
6233
+ | {
6234
+ /** The ID of the action attempt. */
6235
+ action_attempt_id: string
6236
+ status: 'success'
6237
+ error: null
6238
+ action_type: 'UPDATE_NOISE_THRESHOLD'
6239
+ result: {
6240
+ noise_threshold?: any
6241
+ }
6242
+ }
6243
+ | {
6244
+ /** The ID of the action attempt. */
6245
+ action_attempt_id: string
6246
+ status: 'error'
6247
+ result: null
6248
+ action_type: 'UPDATE_NOISE_THRESHOLD'
6249
+ error: {
6250
+ type: string
6251
+ message: string
6252
+ }
6253
+ }
6254
+ }
6255
+ }
6256
+ '/acs/encoders/list': {
6257
+ route: '/acs/encoders/list'
6258
+ method: 'GET' | 'POST'
6259
+ queryParams: {}
6260
+ jsonBody: {}
6261
+ commonParams:
6262
+ | {
6263
+ acs_system_ids: string[]
6264
+ acs_encoder_ids: string[]
6265
+ limit?: number
6266
+ }
6267
+ | {
6268
+ acs_encoder_ids: string[]
6269
+ limit?: number
6270
+ }
6271
+ | {
6272
+ acs_system_ids: string[]
6273
+ limit?: number
6274
+ }
6275
+ formData: {}
6276
+ jsonResponse: {
6277
+ acs_encoders: Array<{
6278
+ /** ID of the `acs_encoder`. */
6279
+ acs_encoder_id: string
6280
+ /** ID of the access control system that contains the `acs_encoder`. */
6281
+ acs_system_id: string
6282
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`. */
6283
+ workspace_id: string
6284
+ /** Errors associated with the `acs_encoder`. */
6285
+ errors: Array<{
6286
+ /** Date and time at which Seam created the error. */
6287
+ created_at: string
6288
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
6948
6289
  message: string
6949
- warning_code: string
6290
+ /** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
6291
+ error_code: 'acs_encoder_removed'
6292
+ /** ID of the event that was created when the `acs_encoder` was removed. */
6293
+ _event_id: string
6950
6294
  }>
6951
- /** Date and time at which the device object was created. */
6295
+ /** Date and time at which the `acs_encoder` was created. */
6952
6296
  created_at: string
6953
- /** Indicates whether Seam manages the device. */
6954
- is_managed: true
6955
- custom_metadata: Record<string, string | boolean>
6956
- can_remotely_unlock?: boolean | undefined
6957
- can_remotely_lock?: boolean | undefined
6958
- can_program_offline_access_codes?: boolean | undefined
6959
- can_program_online_access_codes?: boolean | undefined
6960
- can_hvac_heat?: boolean | undefined
6961
- can_hvac_cool?: boolean | undefined
6962
- can_hvac_heat_cool?: boolean | undefined
6963
- can_turn_off_hvac?: boolean | undefined
6964
- can_simulate_removal?: boolean | undefined
6965
- can_simulate_connection?: boolean | undefined
6966
- can_simulate_disconnection?: boolean | undefined
6297
+ /** Display name for the `acs_encoder`. */
6298
+ display_name: string
6967
6299
  }>
6968
6300
  }
6969
6301
  }
@@ -6975,8 +6307,8 @@ export interface Routes {
6975
6307
  commonParams: {
6976
6308
  /** ID of the acs_system the encoder belongs to. */
6977
6309
  acs_system_id: string
6978
- /** ID of the encoder to use for the scan. */
6979
- device_id: string
6310
+ /** ID of the acs_encoder to use for the scan. */
6311
+ acs_encoder_id: string
6980
6312
  }
6981
6313
  formData: {}
6982
6314
  jsonResponse: {
@@ -12192,6 +11524,8 @@ export interface Routes {
12192
11524
  max_override_period_minutes: number
12193
11525
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
12194
11526
  starts_at: string
11527
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
11528
+ unstable_is_override_allowed?: boolean | undefined
12195
11529
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
12196
11530
  ends_at: string
12197
11531
  /** Date and time at which the thermostat schedule was created. */
@@ -13066,6 +12400,8 @@ export interface Routes {
13066
12400
  max_override_period_minutes: number
13067
12401
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
13068
12402
  starts_at: string
12403
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
12404
+ unstable_is_override_allowed?: boolean | undefined
13069
12405
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
13070
12406
  ends_at: string
13071
12407
  /** Date and time at which the thermostat schedule was created. */
@@ -14655,6 +13991,8 @@ export interface Routes {
14655
13991
  max_override_period_minutes: number
14656
13992
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
14657
13993
  starts_at: string
13994
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
13995
+ unstable_is_override_allowed?: boolean | undefined
14658
13996
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
14659
13997
  ends_at: string
14660
13998
  /** Date and time at which the thermostat schedule was created. */
@@ -15346,6 +14684,8 @@ export interface Routes {
15346
14684
  max_override_period_minutes: number
15347
14685
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
15348
14686
  starts_at: string
14687
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
14688
+ unstable_is_override_allowed?: boolean | undefined
15349
14689
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
15350
14690
  ends_at: string
15351
14691
  /** Date and time at which the thermostat schedule was created. */
@@ -16220,6 +15560,8 @@ export interface Routes {
16220
15560
  max_override_period_minutes: number
16221
15561
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
16222
15562
  starts_at: string
15563
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
15564
+ unstable_is_override_allowed?: boolean | undefined
16223
15565
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
16224
15566
  ends_at: string
16225
15567
  /** Date and time at which the thermostat schedule was created. */
@@ -16911,6 +16253,8 @@ export interface Routes {
16911
16253
  max_override_period_minutes: number
16912
16254
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
16913
16255
  starts_at: string
16256
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
16257
+ unstable_is_override_allowed?: boolean | undefined
16914
16258
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
16915
16259
  ends_at: string
16916
16260
  /** Date and time at which the thermostat schedule was created. */
@@ -19537,6 +18881,8 @@ export interface Routes {
19537
18881
  max_override_period_minutes: number
19538
18882
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
19539
18883
  starts_at: string
18884
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
18885
+ unstable_is_override_allowed?: boolean | undefined
19540
18886
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
19541
18887
  ends_at: string
19542
18888
  /** Date and time at which the thermostat schedule was created. */
@@ -20228,6 +19574,8 @@ export interface Routes {
20228
19574
  max_override_period_minutes: number
20229
19575
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
20230
19576
  starts_at: string
19577
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
19578
+ unstable_is_override_allowed?: boolean | undefined
20231
19579
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
20232
19580
  ends_at: string
20233
19581
  /** Date and time at which the thermostat schedule was created. */
@@ -25551,6 +24899,8 @@ export interface Routes {
25551
24899
  max_override_period_minutes: number
25552
24900
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
25553
24901
  starts_at: string
24902
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
24903
+ unstable_is_override_allowed?: boolean | undefined
25554
24904
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
25555
24905
  ends_at: string
25556
24906
  /** Date and time at which the thermostat schedule was created. */
@@ -28159,6 +27509,8 @@ export interface Routes {
28159
27509
  max_override_period_minutes: number
28160
27510
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
28161
27511
  starts_at: string
27512
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
27513
+ unstable_is_override_allowed?: boolean | undefined
28162
27514
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
28163
27515
  ends_at: string
28164
27516
  /** Date and time at which the thermostat schedule was created. */
@@ -28850,6 +28202,8 @@ export interface Routes {
28850
28202
  max_override_period_minutes: number
28851
28203
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
28852
28204
  starts_at: string
28205
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
28206
+ unstable_is_override_allowed?: boolean | undefined
28853
28207
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
28854
28208
  ends_at: string
28855
28209
  /** Date and time at which the thermostat schedule was created. */
@@ -29806,6 +29160,7 @@ export interface Routes {
29806
29160
  starts_at: string
29807
29161
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
29808
29162
  ends_at: string
29163
+ is_override_allowed?: boolean | undefined
29809
29164
  }
29810
29165
  commonParams: {}
29811
29166
  formData: {}
@@ -29824,6 +29179,8 @@ export interface Routes {
29824
29179
  max_override_period_minutes: number
29825
29180
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
29826
29181
  starts_at: string
29182
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
29183
+ unstable_is_override_allowed?: boolean | undefined
29827
29184
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
29828
29185
  ends_at: string
29829
29186
  /** Date and time at which the thermostat schedule was created. */
@@ -29870,6 +29227,8 @@ export interface Routes {
29870
29227
  max_override_period_minutes: number
29871
29228
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
29872
29229
  starts_at: string
29230
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
29231
+ unstable_is_override_allowed?: boolean | undefined
29873
29232
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
29874
29233
  ends_at: string
29875
29234
  /** Date and time at which the thermostat schedule was created. */
@@ -29905,6 +29264,8 @@ export interface Routes {
29905
29264
  max_override_period_minutes: number
29906
29265
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
29907
29266
  starts_at: string
29267
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
29268
+ unstable_is_override_allowed?: boolean | undefined
29908
29269
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
29909
29270
  ends_at: string
29910
29271
  /** Date and time at which the thermostat schedule was created. */
@@ -29931,6 +29292,7 @@ export interface Routes {
29931
29292
  starts_at?: string | undefined
29932
29293
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
29933
29294
  ends_at?: string | undefined
29295
+ is_override_allowed?: boolean | undefined
29934
29296
  }
29935
29297
  commonParams: {}
29936
29298
  formData: {}
@@ -31671,6 +31033,8 @@ export interface Routes {
31671
31033
  max_override_period_minutes: number
31672
31034
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
31673
31035
  starts_at: string
31036
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
31037
+ unstable_is_override_allowed?: boolean | undefined
31674
31038
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
31675
31039
  ends_at: string
31676
31040
  /** Date and time at which the thermostat schedule was created. */
@@ -32364,6 +31728,8 @@ export interface Routes {
32364
31728
  max_override_period_minutes: number
32365
31729
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
32366
31730
  starts_at: string
31731
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
31732
+ unstable_is_override_allowed?: boolean | undefined
32367
31733
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
32368
31734
  ends_at: string
32369
31735
  /** Date and time at which the thermostat schedule was created. */