@seamapi/types 1.406.0 → 1.406.1

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 (54) hide show
  1. package/dist/connect.cjs +2065 -559
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +7008 -366
  4. package/lib/seam/connect/models/devices/capabilities-supported.js +3 -1
  5. package/lib/seam/connect/models/devices/capabilities-supported.js.map +1 -1
  6. package/lib/seam/connect/models/devices/capability-properties/access-code.js +53 -21
  7. package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
  8. package/lib/seam/connect/models/devices/capability-properties/lock.js +20 -4
  9. package/lib/seam/connect/models/devices/capability-properties/lock.js.map +1 -1
  10. package/lib/seam/connect/models/devices/capability-properties/thermostat.js +175 -31
  11. package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
  12. package/lib/seam/connect/models/devices/device-metadata.js +455 -191
  13. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  14. package/lib/seam/connect/models/devices/device-type.js +8 -6
  15. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  16. package/lib/seam/connect/models/devices/device.js +171 -80
  17. package/lib/seam/connect/models/devices/device.js.map +1 -1
  18. package/lib/seam/connect/models/devices/phone-properties.js +5 -7
  19. package/lib/seam/connect/models/devices/phone-properties.js.map +1 -1
  20. package/lib/seam/connect/models/devices/phone.js +22 -8
  21. package/lib/seam/connect/models/devices/phone.js.map +1 -1
  22. package/lib/seam/connect/models/devices/unmanaged-device.js +35 -1
  23. package/lib/seam/connect/models/devices/unmanaged-device.js.map +1 -1
  24. package/lib/seam/connect/models/events/devices.d.ts +4 -4
  25. package/lib/seam/connect/models/events/seam-event.d.ts +2 -2
  26. package/lib/seam/connect/models/index.d.ts +1 -0
  27. package/lib/seam/connect/models/index.js +1 -0
  28. package/lib/seam/connect/models/index.js.map +1 -1
  29. package/lib/seam/connect/models/partner/index.d.ts +1 -0
  30. package/lib/seam/connect/models/partner/index.js +2 -0
  31. package/lib/seam/connect/models/partner/index.js.map +1 -0
  32. package/lib/seam/connect/models/partner/resources.d.ts +42 -0
  33. package/lib/seam/connect/models/partner/resources.js +19 -0
  34. package/lib/seam/connect/models/partner/resources.js.map +1 -0
  35. package/lib/seam/connect/openapi.d.ts +782 -50
  36. package/lib/seam/connect/openapi.js +1173 -199
  37. package/lib/seam/connect/openapi.js.map +1 -1
  38. package/lib/seam/connect/route-types.d.ts +6228 -318
  39. package/package.json +2 -2
  40. package/src/lib/seam/connect/models/devices/capabilities-supported.ts +3 -1
  41. package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +64 -34
  42. package/src/lib/seam/connect/models/devices/capability-properties/lock.ts +20 -4
  43. package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +175 -31
  44. package/src/lib/seam/connect/models/devices/device-metadata.ts +457 -193
  45. package/src/lib/seam/connect/models/devices/device-type.ts +10 -6
  46. package/src/lib/seam/connect/models/devices/device.ts +173 -96
  47. package/src/lib/seam/connect/models/devices/phone-properties.ts +34 -36
  48. package/src/lib/seam/connect/models/devices/phone.ts +22 -19
  49. package/src/lib/seam/connect/models/devices/unmanaged-device.ts +35 -1
  50. package/src/lib/seam/connect/models/index.ts +1 -0
  51. package/src/lib/seam/connect/models/partner/index.ts +1 -0
  52. package/src/lib/seam/connect/models/partner/resources.ts +24 -0
  53. package/src/lib/seam/connect/openapi.ts +1417 -204
  54. package/src/lib/seam/connect/route-types.ts +6231 -318
@@ -3294,6 +3294,7 @@ declare const _default: {
3294
3294
  capabilities_supported: {
3295
3295
  description: string;
3296
3296
  items: {
3297
+ description: string;
3297
3298
  enum: string[];
3298
3299
  type: string;
3299
3300
  };
@@ -3325,15 +3326,11 @@ declare const _default: {
3325
3326
  };
3326
3327
  device_type: {
3327
3328
  description: string;
3328
- oneOf: ({
3329
- enum: string[];
3330
- type: string;
3331
- description?: never;
3332
- } | {
3329
+ oneOf: {
3333
3330
  description: string;
3334
3331
  enum: string[];
3335
3332
  type: string;
3336
- })[];
3333
+ }[];
3337
3334
  };
3338
3335
  display_name: {
3339
3336
  description: string;
@@ -3454,6 +3451,7 @@ declare const _default: {
3454
3451
  };
3455
3452
  };
3456
3453
  type: string;
3454
+ 'x-property-group-key': string;
3457
3455
  };
3458
3456
  nickname: {
3459
3457
  description: string;
@@ -3487,8 +3485,10 @@ declare const _default: {
3487
3485
  };
3488
3486
  required: string[];
3489
3487
  type: string;
3488
+ 'x-property-group-key': string;
3490
3489
  };
3491
3490
  appearance: {
3491
+ description: string;
3492
3492
  properties: {
3493
3493
  name: {
3494
3494
  description: string;
@@ -3497,23 +3497,27 @@ declare const _default: {
3497
3497
  };
3498
3498
  required: string[];
3499
3499
  type: string;
3500
+ 'x-property-group-key': string;
3500
3501
  };
3501
3502
  battery: {
3502
3503
  description: string;
3503
3504
  properties: {
3504
3505
  level: {
3506
+ description: string;
3505
3507
  format: string;
3506
3508
  maximum: number;
3507
3509
  minimum: number;
3508
3510
  type: string;
3509
3511
  };
3510
3512
  status: {
3513
+ description: string;
3511
3514
  enum: string[];
3512
3515
  type: string;
3513
3516
  };
3514
3517
  };
3515
3518
  required: string[];
3516
3519
  type: string;
3520
+ 'x-property-group-key': string;
3517
3521
  };
3518
3522
  battery_level: {
3519
3523
  description: string;
@@ -3521,6 +3525,7 @@ declare const _default: {
3521
3525
  maximum: number;
3522
3526
  minimum: number;
3523
3527
  type: string;
3528
+ 'x-property-group-key': string;
3524
3529
  };
3525
3530
  currently_triggering_noise_threshold_ids: {
3526
3531
  description: string;
@@ -3528,25 +3533,31 @@ declare const _default: {
3528
3533
  type: string;
3529
3534
  };
3530
3535
  type: string;
3536
+ 'x-property-group-key': string;
3531
3537
  };
3532
3538
  has_direct_power: {
3533
3539
  description: string;
3534
3540
  type: string;
3541
+ 'x-property-group-key': string;
3535
3542
  };
3536
3543
  image_alt_text: {
3537
3544
  description: string;
3538
3545
  type: string;
3546
+ 'x-property-group-key': string;
3539
3547
  };
3540
3548
  image_url: {
3541
3549
  description: string;
3542
3550
  format: string;
3543
3551
  type: string;
3552
+ 'x-property-group-key': string;
3544
3553
  };
3545
3554
  manufacturer: {
3546
3555
  description: string;
3547
3556
  type: string;
3557
+ 'x-property-group-key': string;
3548
3558
  };
3549
3559
  model: {
3560
+ description: string;
3550
3561
  properties: {
3551
3562
  accessory_keypad_supported: {
3552
3563
  deprecated: boolean;
@@ -3570,12 +3581,14 @@ declare const _default: {
3570
3581
  type: string;
3571
3582
  };
3572
3583
  offline_access_codes_supported: {
3573
- description: string;
3584
+ deprecated: boolean;
3574
3585
  type: string;
3586
+ 'x-deprecated': string;
3575
3587
  };
3576
3588
  online_access_codes_supported: {
3577
- description: string;
3589
+ deprecated: boolean;
3578
3590
  type: string;
3591
+ 'x-deprecated': string;
3579
3592
  };
3580
3593
  };
3581
3594
  required: string[];
@@ -3591,10 +3604,12 @@ declare const _default: {
3591
3604
  description: string;
3592
3605
  format: string;
3593
3606
  type: string;
3607
+ 'x-property-group-key': string;
3594
3608
  };
3595
3609
  offline_access_codes_enabled: {
3596
3610
  description: string;
3597
3611
  type: string;
3612
+ 'x-property-group-key': string;
3598
3613
  };
3599
3614
  online: {
3600
3615
  description: string;
@@ -3603,20 +3618,24 @@ declare const _default: {
3603
3618
  online_access_codes_enabled: {
3604
3619
  description: string;
3605
3620
  type: string;
3621
+ 'x-property-group-key': string;
3606
3622
  };
3607
3623
  serial_number: {
3608
3624
  description: string;
3609
3625
  type: string;
3626
+ 'x-property-group-key': string;
3610
3627
  };
3611
3628
  supports_accessory_keypad: {
3612
3629
  deprecated: boolean;
3613
3630
  type: string;
3614
3631
  'x-deprecated': string;
3632
+ 'x-property-group-key': string;
3615
3633
  };
3616
3634
  supports_offline_access_codes: {
3617
3635
  deprecated: boolean;
3618
3636
  type: string;
3619
3637
  'x-deprecated': string;
3638
+ 'x-property-group-key': string;
3620
3639
  };
3621
3640
  assa_abloy_credential_service_metadata?: never;
3622
3641
  salto_space_credential_service_metadata?: never;
@@ -3689,22 +3708,30 @@ declare const _default: {
3689
3708
  type: string;
3690
3709
  required?: never;
3691
3710
  })[];
3711
+ description?: never;
3692
3712
  properties?: never;
3693
3713
  type?: never;
3714
+ 'x-property-group-key'?: never;
3694
3715
  } | {
3716
+ description: string;
3695
3717
  properties: {
3696
3718
  akiles_metadata: {
3719
+ description: string;
3697
3720
  properties: {
3698
3721
  _member_group_id: {
3722
+ description: string;
3699
3723
  type: string;
3700
3724
  };
3701
3725
  gadget_id: {
3726
+ description: string;
3702
3727
  type: string;
3703
3728
  };
3704
3729
  gadget_name: {
3730
+ description: string;
3705
3731
  type: string;
3706
3732
  };
3707
3733
  product_name: {
3734
+ description: string;
3708
3735
  type: string;
3709
3736
  };
3710
3737
  };
@@ -3712,8 +3739,10 @@ declare const _default: {
3712
3739
  type: string;
3713
3740
  };
3714
3741
  assa_abloy_vostio_metadata: {
3742
+ description: string;
3715
3743
  properties: {
3716
3744
  encoder_name: {
3745
+ description: string;
3717
3746
  type: string;
3718
3747
  };
3719
3748
  };
@@ -3721,26 +3750,34 @@ declare const _default: {
3721
3750
  type: string;
3722
3751
  };
3723
3752
  august_metadata: {
3753
+ description: string;
3724
3754
  properties: {
3725
3755
  has_keypad: {
3756
+ description: string;
3726
3757
  type: string;
3727
3758
  };
3728
3759
  house_id: {
3760
+ description: string;
3729
3761
  type: string;
3730
3762
  };
3731
3763
  house_name: {
3764
+ description: string;
3732
3765
  type: string;
3733
3766
  };
3734
3767
  keypad_battery_level: {
3768
+ description: string;
3735
3769
  type: string;
3736
3770
  };
3737
3771
  lock_id: {
3772
+ description: string;
3738
3773
  type: string;
3739
3774
  };
3740
3775
  lock_name: {
3776
+ description: string;
3741
3777
  type: string;
3742
3778
  };
3743
3779
  model: {
3780
+ description: string;
3744
3781
  type: string;
3745
3782
  };
3746
3783
  };
@@ -3748,29 +3785,37 @@ declare const _default: {
3748
3785
  type: string;
3749
3786
  };
3750
3787
  avigilon_alta_metadata: {
3788
+ description: string;
3751
3789
  properties: {
3752
3790
  entry_name: {
3791
+ description: string;
3753
3792
  type: string;
3754
3793
  };
3755
3794
  entry_relays_total_count: {
3795
+ description: string;
3756
3796
  format: string;
3757
3797
  type: string;
3758
3798
  };
3759
3799
  org_name: {
3800
+ description: string;
3760
3801
  type: string;
3761
3802
  };
3762
3803
  site_id: {
3804
+ description: string;
3763
3805
  format: string;
3764
3806
  type: string;
3765
3807
  };
3766
3808
  site_name: {
3809
+ description: string;
3767
3810
  type: string;
3768
3811
  };
3769
3812
  zone_id: {
3813
+ description: string;
3770
3814
  format: string;
3771
3815
  type: string;
3772
3816
  };
3773
3817
  zone_name: {
3818
+ description: string;
3774
3819
  type: string;
3775
3820
  };
3776
3821
  };
@@ -3778,8 +3823,10 @@ declare const _default: {
3778
3823
  type: string;
3779
3824
  };
3780
3825
  brivo_metadata: {
3826
+ description: string;
3781
3827
  properties: {
3782
3828
  device_name: {
3829
+ description: string;
3783
3830
  type: string;
3784
3831
  };
3785
3832
  };
@@ -3787,14 +3834,18 @@ declare const _default: {
3787
3834
  type: string;
3788
3835
  };
3789
3836
  controlbyweb_metadata: {
3837
+ description: string;
3790
3838
  properties: {
3791
3839
  device_id: {
3840
+ description: string;
3792
3841
  type: string;
3793
3842
  };
3794
3843
  device_name: {
3844
+ description: string;
3795
3845
  type: string;
3796
3846
  };
3797
3847
  relay_name: {
3848
+ description: string;
3798
3849
  nullable: boolean;
3799
3850
  type: string;
3800
3851
  };
@@ -3803,8 +3854,10 @@ declare const _default: {
3803
3854
  type: string;
3804
3855
  };
3805
3856
  dormakaba_oracode_metadata: {
3857
+ description: string;
3806
3858
  properties: {
3807
3859
  device_id: {
3860
+ description: string;
3808
3861
  oneOf: ({
3809
3862
  format: string;
3810
3863
  type: string;
@@ -3814,51 +3867,67 @@ declare const _default: {
3814
3867
  })[];
3815
3868
  };
3816
3869
  door_id: {
3870
+ description: string;
3817
3871
  format: string;
3818
3872
  type: string;
3819
3873
  };
3820
3874
  door_is_wireless: {
3875
+ description: string;
3821
3876
  type: string;
3822
3877
  };
3823
3878
  door_name: {
3879
+ description: string;
3824
3880
  type: string;
3825
3881
  };
3826
3882
  iana_timezone: {
3883
+ description: string;
3827
3884
  type: string;
3828
3885
  };
3829
3886
  predefined_time_slots: {
3887
+ description: string;
3830
3888
  items: {
3889
+ description: string;
3831
3890
  properties: {
3832
3891
  check_in_time: {
3892
+ description: string;
3833
3893
  type: string;
3834
3894
  };
3835
3895
  check_out_time: {
3896
+ description: string;
3836
3897
  type: string;
3837
3898
  };
3838
3899
  dormakaba_oracode_user_level_id: {
3900
+ description: string;
3839
3901
  format: string;
3840
3902
  type: string;
3841
3903
  };
3842
3904
  ext_dormakaba_oracode_user_level_prefix: {
3905
+ description: string;
3843
3906
  format: string;
3844
3907
  type: string;
3845
3908
  };
3846
3909
  is_24_hour: {
3910
+ description: string;
3847
3911
  type: string;
3848
3912
  };
3849
3913
  is_biweekly_mode: {
3914
+ description: string;
3850
3915
  type: string;
3851
3916
  };
3852
3917
  is_master: {
3918
+ description: string;
3853
3919
  type: string;
3854
3920
  };
3855
3921
  is_one_shot: {
3922
+ description: string;
3856
3923
  type: string;
3857
3924
  };
3858
3925
  name: {
3926
+ description: string;
3859
3927
  type: string;
3860
3928
  };
3861
3929
  prefix: {
3930
+ description: string;
3862
3931
  format: string;
3863
3932
  type: string;
3864
3933
  };
@@ -3869,12 +3938,15 @@ declare const _default: {
3869
3938
  type: string;
3870
3939
  };
3871
3940
  site_id: {
3941
+ deprecated: boolean;
3872
3942
  description: string;
3873
3943
  format: string;
3874
3944
  nullable: boolean;
3875
3945
  type: string;
3946
+ 'x-deprecated': string;
3876
3947
  };
3877
3948
  site_name: {
3949
+ description: string;
3878
3950
  type: string;
3879
3951
  };
3880
3952
  };
@@ -3882,11 +3954,14 @@ declare const _default: {
3882
3954
  type: string;
3883
3955
  };
3884
3956
  ecobee_metadata: {
3957
+ description: string;
3885
3958
  properties: {
3886
3959
  device_name: {
3960
+ description: string;
3887
3961
  type: string;
3888
3962
  };
3889
3963
  ecobee_device_id: {
3964
+ description: string;
3890
3965
  type: string;
3891
3966
  };
3892
3967
  };
@@ -3894,15 +3969,19 @@ declare const _default: {
3894
3969
  type: string;
3895
3970
  };
3896
3971
  four_suites_metadata: {
3972
+ description: string;
3897
3973
  properties: {
3898
3974
  device_id: {
3975
+ description: string;
3899
3976
  format: string;
3900
3977
  type: string;
3901
3978
  };
3902
3979
  device_name: {
3980
+ description: string;
3903
3981
  type: string;
3904
3982
  };
3905
3983
  reclose_delay_in_seconds: {
3984
+ description: string;
3906
3985
  format: string;
3907
3986
  type: string;
3908
3987
  };
@@ -3911,11 +3990,14 @@ declare const _default: {
3911
3990
  type: string;
3912
3991
  };
3913
3992
  genie_metadata: {
3993
+ description: string;
3914
3994
  properties: {
3915
3995
  device_name: {
3996
+ description: string;
3916
3997
  type: string;
3917
3998
  };
3918
3999
  door_name: {
4000
+ description: string;
3919
4001
  type: string;
3920
4002
  };
3921
4003
  };
@@ -3923,11 +4005,14 @@ declare const _default: {
3923
4005
  type: string;
3924
4006
  };
3925
4007
  honeywell_resideo_metadata: {
4008
+ description: string;
3926
4009
  properties: {
3927
4010
  device_name: {
4011
+ description: string;
3928
4012
  type: string;
3929
4013
  };
3930
4014
  honeywell_resideo_device_id: {
4015
+ description: string;
3931
4016
  type: string;
3932
4017
  };
3933
4018
  };
@@ -3935,14 +4020,18 @@ declare const _default: {
3935
4020
  type: string;
3936
4021
  };
3937
4022
  hubitat_metadata: {
4023
+ description: string;
3938
4024
  properties: {
3939
4025
  device_id: {
4026
+ description: string;
3940
4027
  type: string;
3941
4028
  };
3942
4029
  device_label: {
4030
+ description: string;
3943
4031
  type: string;
3944
4032
  };
3945
4033
  device_name: {
4034
+ description: string;
3946
4035
  type: string;
3947
4036
  };
3948
4037
  };
@@ -3950,14 +4039,18 @@ declare const _default: {
3950
4039
  type: string;
3951
4040
  };
3952
4041
  igloo_metadata: {
4042
+ description: string;
3953
4043
  properties: {
3954
4044
  bridge_id: {
4045
+ description: string;
3955
4046
  type: string;
3956
4047
  };
3957
4048
  device_id: {
4049
+ description: string;
3958
4050
  type: string;
3959
4051
  };
3960
4052
  model: {
4053
+ description: string;
3961
4054
  type: string;
3962
4055
  };
3963
4056
  };
@@ -3965,20 +4058,26 @@ declare const _default: {
3965
4058
  type: string;
3966
4059
  };
3967
4060
  igloohome_metadata: {
4061
+ description: string;
3968
4062
  properties: {
3969
4063
  bridge_id: {
4064
+ description: string;
3970
4065
  type: string;
3971
4066
  };
3972
4067
  bridge_name: {
4068
+ description: string;
3973
4069
  type: string;
3974
4070
  };
3975
4071
  device_id: {
4072
+ description: string;
3976
4073
  type: string;
3977
4074
  };
3978
4075
  device_name: {
4076
+ description: string;
3979
4077
  type: string;
3980
4078
  };
3981
4079
  keypad_id: {
4080
+ description: string;
3982
4081
  type: string;
3983
4082
  };
3984
4083
  };
@@ -3986,14 +4085,18 @@ declare const _default: {
3986
4085
  type: string;
3987
4086
  };
3988
4087
  kwikset_metadata: {
4088
+ description: string;
3989
4089
  properties: {
3990
4090
  device_id: {
4091
+ description: string;
3991
4092
  type: string;
3992
4093
  };
3993
4094
  device_name: {
4095
+ description: string;
3994
4096
  type: string;
3995
4097
  };
3996
4098
  model_number: {
4099
+ description: string;
3997
4100
  type: string;
3998
4101
  };
3999
4102
  };
@@ -4001,14 +4104,18 @@ declare const _default: {
4001
4104
  type: string;
4002
4105
  };
4003
4106
  lockly_metadata: {
4107
+ description: string;
4004
4108
  properties: {
4005
4109
  device_id: {
4110
+ description: string;
4006
4111
  type: string;
4007
4112
  };
4008
4113
  device_name: {
4114
+ description: string;
4009
4115
  type: string;
4010
4116
  };
4011
4117
  model: {
4118
+ description: string;
4012
4119
  type: string;
4013
4120
  };
4014
4121
  };
@@ -4016,21 +4123,28 @@ declare const _default: {
4016
4123
  type: string;
4017
4124
  };
4018
4125
  minut_metadata: {
4126
+ description: string;
4019
4127
  properties: {
4020
4128
  device_id: {
4129
+ description: string;
4021
4130
  type: string;
4022
4131
  };
4023
4132
  device_name: {
4133
+ description: string;
4024
4134
  type: string;
4025
4135
  };
4026
4136
  latest_sensor_values: {
4137
+ description: string;
4027
4138
  properties: {
4028
4139
  accelerometer_z: {
4140
+ description: string;
4029
4141
  properties: {
4030
4142
  time: {
4143
+ description: string;
4031
4144
  type: string;
4032
4145
  };
4033
4146
  value: {
4147
+ description: string;
4034
4148
  format: string;
4035
4149
  type: string;
4036
4150
  };
@@ -4039,11 +4153,14 @@ declare const _default: {
4039
4153
  type: string;
4040
4154
  };
4041
4155
  humidity: {
4156
+ description: string;
4042
4157
  properties: {
4043
4158
  time: {
4159
+ description: string;
4044
4160
  type: string;
4045
4161
  };
4046
4162
  value: {
4163
+ description: string;
4047
4164
  format: string;
4048
4165
  type: string;
4049
4166
  };
@@ -4052,11 +4169,14 @@ declare const _default: {
4052
4169
  type: string;
4053
4170
  };
4054
4171
  pressure: {
4172
+ description: string;
4055
4173
  properties: {
4056
4174
  time: {
4175
+ description: string;
4057
4176
  type: string;
4058
4177
  };
4059
4178
  value: {
4179
+ description: string;
4060
4180
  format: string;
4061
4181
  type: string;
4062
4182
  };
@@ -4065,11 +4185,14 @@ declare const _default: {
4065
4185
  type: string;
4066
4186
  };
4067
4187
  sound: {
4188
+ description: string;
4068
4189
  properties: {
4069
4190
  time: {
4191
+ description: string;
4070
4192
  type: string;
4071
4193
  };
4072
4194
  value: {
4195
+ description: string;
4073
4196
  format: string;
4074
4197
  type: string;
4075
4198
  };
@@ -4078,11 +4201,14 @@ declare const _default: {
4078
4201
  type: string;
4079
4202
  };
4080
4203
  temperature: {
4204
+ description: string;
4081
4205
  properties: {
4082
4206
  time: {
4207
+ description: string;
4083
4208
  type: string;
4084
4209
  };
4085
4210
  value: {
4211
+ description: string;
4086
4212
  format: string;
4087
4213
  type: string;
4088
4214
  };
@@ -4099,17 +4225,22 @@ declare const _default: {
4099
4225
  type: string;
4100
4226
  };
4101
4227
  nest_metadata: {
4228
+ description: string;
4102
4229
  properties: {
4103
4230
  device_custom_name: {
4231
+ description: string;
4104
4232
  type: string;
4105
4233
  };
4106
4234
  device_name: {
4235
+ description: string;
4107
4236
  type: string;
4108
4237
  };
4109
4238
  display_name: {
4239
+ description: string;
4110
4240
  type: string;
4111
4241
  };
4112
4242
  nest_device_id: {
4243
+ description: string;
4113
4244
  type: string;
4114
4245
  };
4115
4246
  };
@@ -4117,22 +4248,28 @@ declare const _default: {
4117
4248
  type: string;
4118
4249
  };
4119
4250
  noiseaware_metadata: {
4251
+ description: string;
4120
4252
  properties: {
4121
4253
  device_id: {
4254
+ description: string;
4122
4255
  type: string;
4123
4256
  };
4124
4257
  device_model: {
4258
+ description: string;
4125
4259
  enum: string[];
4126
4260
  type: string;
4127
4261
  };
4128
4262
  device_name: {
4263
+ description: string;
4129
4264
  type: string;
4130
4265
  };
4131
4266
  noise_level_decibel: {
4267
+ description: string;
4132
4268
  format: string;
4133
4269
  type: string;
4134
4270
  };
4135
4271
  noise_level_nrs: {
4272
+ description: string;
4136
4273
  format: string;
4137
4274
  type: string;
4138
4275
  };
@@ -4141,20 +4278,26 @@ declare const _default: {
4141
4278
  type: string;
4142
4279
  };
4143
4280
  nuki_metadata: {
4281
+ description: string;
4144
4282
  properties: {
4145
4283
  device_id: {
4284
+ description: string;
4146
4285
  type: string;
4147
4286
  };
4148
4287
  device_name: {
4288
+ description: string;
4149
4289
  type: string;
4150
4290
  };
4151
4291
  keypad_2_paired: {
4292
+ description: string;
4152
4293
  type: string;
4153
4294
  };
4154
4295
  keypad_battery_critical: {
4296
+ description: string;
4155
4297
  type: string;
4156
4298
  };
4157
4299
  keypad_paired: {
4300
+ description: string;
4158
4301
  type: string;
4159
4302
  };
4160
4303
  };
@@ -4162,23 +4305,30 @@ declare const _default: {
4162
4305
  type: string;
4163
4306
  };
4164
4307
  salto_ks_metadata: {
4308
+ description: string;
4165
4309
  properties: {
4166
4310
  battery_level: {
4311
+ description: string;
4167
4312
  type: string;
4168
4313
  };
4169
4314
  customer_reference: {
4315
+ description: string;
4170
4316
  type: string;
4171
4317
  };
4172
4318
  lock_id: {
4319
+ description: string;
4173
4320
  type: string;
4174
4321
  };
4175
4322
  lock_type: {
4323
+ description: string;
4176
4324
  type: string;
4177
4325
  };
4178
4326
  locked_state: {
4327
+ description: string;
4179
4328
  type: string;
4180
4329
  };
4181
4330
  model: {
4331
+ description: string;
4182
4332
  type: string;
4183
4333
  };
4184
4334
  };
@@ -4186,39 +4336,51 @@ declare const _default: {
4186
4336
  type: string;
4187
4337
  };
4188
4338
  salto_metadata: {
4339
+ deprecated: boolean;
4189
4340
  description: string;
4190
4341
  properties: {
4191
4342
  battery_level: {
4343
+ description: string;
4192
4344
  type: string;
4193
4345
  };
4194
4346
  customer_reference: {
4347
+ description: string;
4195
4348
  type: string;
4196
4349
  };
4197
4350
  lock_id: {
4351
+ description: string;
4198
4352
  type: string;
4199
4353
  };
4200
4354
  lock_type: {
4355
+ description: string;
4201
4356
  type: string;
4202
4357
  };
4203
4358
  locked_state: {
4359
+ description: string;
4204
4360
  type: string;
4205
4361
  };
4206
4362
  model: {
4363
+ description: string;
4207
4364
  type: string;
4208
4365
  };
4209
4366
  };
4210
4367
  required: string[];
4211
4368
  type: string;
4369
+ 'x-deprecated': string;
4212
4370
  };
4213
4371
  schlage_metadata: {
4372
+ description: string;
4214
4373
  properties: {
4215
4374
  device_id: {
4375
+ description: string;
4216
4376
  type: string;
4217
4377
  };
4218
4378
  device_name: {
4379
+ description: string;
4219
4380
  type: string;
4220
4381
  };
4221
4382
  model: {
4383
+ description: string;
4222
4384
  type: string;
4223
4385
  };
4224
4386
  };
@@ -4226,15 +4388,19 @@ declare const _default: {
4226
4388
  type: string;
4227
4389
  };
4228
4390
  seam_bridge_metadata: {
4391
+ description: string;
4229
4392
  properties: {
4230
4393
  device_num: {
4394
+ description: string;
4231
4395
  format: string;
4232
4396
  type: string;
4233
4397
  };
4234
4398
  name: {
4399
+ description: string;
4235
4400
  type: string;
4236
4401
  };
4237
4402
  unlock_method: {
4403
+ description: string;
4238
4404
  enum: string[];
4239
4405
  type: string;
4240
4406
  };
@@ -4243,14 +4409,18 @@ declare const _default: {
4243
4409
  type: string;
4244
4410
  };
4245
4411
  sensi_metadata: {
4412
+ description: string;
4246
4413
  properties: {
4247
4414
  device_id: {
4415
+ description: string;
4248
4416
  type: string;
4249
4417
  };
4250
4418
  device_name: {
4419
+ description: string;
4251
4420
  type: string;
4252
4421
  };
4253
4422
  product_type: {
4423
+ description: string;
4254
4424
  type: string;
4255
4425
  };
4256
4426
  };
@@ -4258,17 +4428,22 @@ declare const _default: {
4258
4428
  type: string;
4259
4429
  };
4260
4430
  smartthings_metadata: {
4431
+ description: string;
4261
4432
  properties: {
4262
4433
  device_id: {
4434
+ description: string;
4263
4435
  type: string;
4264
4436
  };
4265
4437
  device_name: {
4438
+ description: string;
4266
4439
  type: string;
4267
4440
  };
4268
4441
  location_id: {
4442
+ description: string;
4269
4443
  type: string;
4270
4444
  };
4271
4445
  model: {
4446
+ description: string;
4272
4447
  type: string;
4273
4448
  };
4274
4449
  };
@@ -4276,11 +4451,14 @@ declare const _default: {
4276
4451
  type: string;
4277
4452
  };
4278
4453
  tado_metadata: {
4454
+ description: string;
4279
4455
  properties: {
4280
4456
  device_type: {
4457
+ description: string;
4281
4458
  type: string;
4282
4459
  };
4283
4460
  serial_no: {
4461
+ description: string;
4284
4462
  type: string;
4285
4463
  };
4286
4464
  };
@@ -4288,29 +4466,37 @@ declare const _default: {
4288
4466
  type: string;
4289
4467
  };
4290
4468
  tedee_metadata: {
4469
+ description: string;
4291
4470
  properties: {
4292
4471
  bridge_id: {
4472
+ description: string;
4293
4473
  format: string;
4294
4474
  type: string;
4295
4475
  };
4296
4476
  bridge_name: {
4477
+ description: string;
4297
4478
  type: string;
4298
4479
  };
4299
4480
  device_id: {
4481
+ description: string;
4300
4482
  format: string;
4301
4483
  type: string;
4302
4484
  };
4303
4485
  device_model: {
4486
+ description: string;
4304
4487
  type: string;
4305
4488
  };
4306
4489
  device_name: {
4490
+ description: string;
4307
4491
  type: string;
4308
4492
  };
4309
4493
  keypad_id: {
4494
+ description: string;
4310
4495
  format: string;
4311
4496
  type: string;
4312
4497
  };
4313
4498
  serial_number: {
4499
+ description: string;
4314
4500
  type: string;
4315
4501
  };
4316
4502
  };
@@ -4318,28 +4504,37 @@ declare const _default: {
4318
4504
  type: string;
4319
4505
  };
4320
4506
  ttlock_metadata: {
4507
+ description: string;
4321
4508
  properties: {
4322
4509
  feature_value: {
4510
+ description: string;
4323
4511
  type: string;
4324
4512
  };
4325
4513
  features: {
4514
+ description: string;
4326
4515
  properties: {
4327
4516
  incomplete_keyboard_passcode: {
4517
+ description: string;
4328
4518
  type: string;
4329
4519
  };
4330
4520
  lock_command: {
4521
+ description: string;
4331
4522
  type: string;
4332
4523
  };
4333
4524
  passcode: {
4525
+ description: string;
4334
4526
  type: string;
4335
4527
  };
4336
4528
  passcode_management: {
4529
+ description: string;
4337
4530
  type: string;
4338
4531
  };
4339
4532
  unlock_via_gateway: {
4533
+ description: string;
4340
4534
  type: string;
4341
4535
  };
4342
4536
  wifi: {
4537
+ description: string;
4343
4538
  type: string;
4344
4539
  };
4345
4540
  };
@@ -4347,23 +4542,29 @@ declare const _default: {
4347
4542
  type: string;
4348
4543
  };
4349
4544
  has_gateway: {
4545
+ description: string;
4350
4546
  type: string;
4351
4547
  };
4352
4548
  lock_alias: {
4549
+ description: string;
4353
4550
  type: string;
4354
4551
  };
4355
4552
  lock_id: {
4553
+ description: string;
4356
4554
  format: string;
4357
4555
  type: string;
4358
4556
  };
4359
4557
  wireless_keypads: {
4558
+ description: string;
4360
4559
  items: {
4361
4560
  properties: {
4362
4561
  wireless_keypad_id: {
4562
+ description: string;
4363
4563
  format: string;
4364
4564
  type: string;
4365
4565
  };
4366
4566
  wireless_keypad_name: {
4567
+ description: string;
4367
4568
  type: string;
4368
4569
  };
4369
4570
  };
@@ -4377,12 +4578,15 @@ declare const _default: {
4377
4578
  type: string;
4378
4579
  };
4379
4580
  two_n_metadata: {
4581
+ description: string;
4380
4582
  properties: {
4381
4583
  device_id: {
4584
+ description: string;
4382
4585
  format: string;
4383
4586
  type: string;
4384
4587
  };
4385
4588
  device_name: {
4589
+ description: string;
4386
4590
  type: string;
4387
4591
  };
4388
4592
  };
@@ -4390,8 +4594,10 @@ declare const _default: {
4390
4594
  type: string;
4391
4595
  };
4392
4596
  visionline_metadata: {
4597
+ description: string;
4393
4598
  properties: {
4394
4599
  encoder_id: {
4600
+ description: string;
4395
4601
  type: string;
4396
4602
  };
4397
4603
  };
@@ -4399,30 +4605,39 @@ declare const _default: {
4399
4605
  type: string;
4400
4606
  };
4401
4607
  wyze_metadata: {
4608
+ description: string;
4402
4609
  properties: {
4403
4610
  device_id: {
4611
+ description: string;
4404
4612
  type: string;
4405
4613
  };
4406
4614
  device_info_model: {
4615
+ description: string;
4407
4616
  type: string;
4408
4617
  };
4409
4618
  device_name: {
4619
+ description: string;
4410
4620
  type: string;
4411
4621
  };
4412
4622
  keypad_uuid: {
4623
+ description: string;
4413
4624
  type: string;
4414
4625
  };
4415
4626
  locker_status_hardlock: {
4627
+ description: string;
4416
4628
  format: string;
4417
4629
  type: string;
4418
4630
  };
4419
4631
  product_model: {
4632
+ description: string;
4420
4633
  type: string;
4421
4634
  };
4422
4635
  product_name: {
4636
+ description: string;
4423
4637
  type: string;
4424
4638
  };
4425
4639
  product_type: {
4640
+ description: string;
4426
4641
  type: string;
4427
4642
  };
4428
4643
  };
@@ -4431,6 +4646,7 @@ declare const _default: {
4431
4646
  };
4432
4647
  };
4433
4648
  type: string;
4649
+ 'x-property-group-key': string;
4434
4650
  allOf?: never;
4435
4651
  })[];
4436
4652
  } | {
@@ -4442,13 +4658,17 @@ declare const _default: {
4442
4658
  type: string;
4443
4659
  };
4444
4660
  type: string;
4661
+ 'x-undocumented': string;
4445
4662
  };
4446
4663
  code_constraints: {
4447
4664
  description: string;
4448
4665
  items: {
4666
+ description: string;
4449
4667
  oneOf: ({
4668
+ description: string;
4450
4669
  properties: {
4451
4670
  constraint_type: {
4671
+ description: string;
4452
4672
  enum: string[];
4453
4673
  type: string;
4454
4674
  };
@@ -4458,16 +4678,20 @@ declare const _default: {
4458
4678
  required: string[];
4459
4679
  type: string;
4460
4680
  } | {
4681
+ description: string;
4461
4682
  properties: {
4462
4683
  constraint_type: {
4463
4684
  enum: string[];
4464
4685
  type: string;
4686
+ description?: never;
4465
4687
  };
4466
4688
  max_length: {
4689
+ description: string;
4467
4690
  format: string;
4468
4691
  type: string;
4469
4692
  };
4470
4693
  min_length: {
4694
+ description: string;
4471
4695
  format: string;
4472
4696
  type: string;
4473
4697
  };
@@ -4477,39 +4701,55 @@ declare const _default: {
4477
4701
  })[];
4478
4702
  };
4479
4703
  type: string;
4704
+ 'x-property-group-key': string;
4480
4705
  };
4481
4706
  door_open: {
4707
+ description: string;
4482
4708
  type: string;
4709
+ 'x-property-group-key': string;
4483
4710
  };
4484
4711
  has_native_entry_events: {
4712
+ description: string;
4485
4713
  type: string;
4714
+ 'x-property-group-key': string;
4486
4715
  };
4487
4716
  keypad_battery: {
4717
+ description: string;
4488
4718
  properties: {
4489
4719
  level: {
4720
+ description: string;
4490
4721
  format: string;
4491
4722
  type: string;
4492
4723
  };
4493
4724
  };
4494
4725
  required: string[];
4495
4726
  type: string;
4727
+ 'x-property-group-key': string;
4496
4728
  };
4497
4729
  locked: {
4730
+ description: string;
4498
4731
  type: string;
4732
+ 'x-property-group-key': string;
4499
4733
  };
4500
4734
  max_active_codes_supported: {
4735
+ description: string;
4501
4736
  format: string;
4502
4737
  type: string;
4738
+ 'x-property-group-key': string;
4503
4739
  };
4504
4740
  supported_code_lengths: {
4741
+ description: string;
4505
4742
  items: {
4506
4743
  format: string;
4507
4744
  type: string;
4508
4745
  };
4509
4746
  type: string;
4747
+ 'x-property-group-key': string;
4510
4748
  };
4511
4749
  supports_backup_access_code_pool: {
4750
+ description: string;
4512
4751
  type: string;
4752
+ 'x-property-group-key': string;
4513
4753
  };
4514
4754
  active_thermostat_schedule?: never;
4515
4755
  available_climate_presets?: never;
@@ -4619,9 +4859,11 @@ declare const _default: {
4619
4859
  };
4620
4860
  required: string[];
4621
4861
  type: string;
4862
+ 'x-property-group-key': string;
4622
4863
  'x-route-path': string;
4623
4864
  };
4624
4865
  available_climate_presets: {
4866
+ description: string;
4625
4867
  items: {
4626
4868
  properties: {
4627
4869
  can_delete: {
@@ -4691,22 +4933,28 @@ declare const _default: {
4691
4933
  type: string;
4692
4934
  };
4693
4935
  type: string;
4936
+ 'x-property-group-key': string;
4694
4937
  };
4695
4938
  available_fan_mode_settings: {
4939
+ description: string;
4696
4940
  items: {
4697
4941
  enum: string[];
4698
4942
  type: string;
4699
4943
  };
4700
4944
  type: string;
4945
+ 'x-property-group-key': string;
4701
4946
  };
4702
4947
  available_hvac_mode_settings: {
4948
+ description: string;
4703
4949
  items: {
4704
4950
  enum: string[];
4705
4951
  type: string;
4706
4952
  };
4707
4953
  type: string;
4954
+ 'x-property-group-key': string;
4708
4955
  };
4709
4956
  current_climate_setting: {
4957
+ description: string;
4710
4958
  properties: {
4711
4959
  can_delete: {
4712
4960
  description: string;
@@ -4772,6 +5020,7 @@ declare const _default: {
4772
5020
  };
4773
5021
  };
4774
5022
  type: string;
5023
+ 'x-property-group-key': string;
4775
5024
  };
4776
5025
  default_climate_setting: {
4777
5026
  deprecated: boolean;
@@ -4841,103 +5090,146 @@ declare const _default: {
4841
5090
  };
4842
5091
  type: string;
4843
5092
  'x-deprecated': string;
5093
+ 'x-property-group-key': string;
4844
5094
  };
4845
5095
  fallback_climate_preset_key: {
4846
5096
  default: null;
5097
+ description: string;
4847
5098
  minLength: number;
4848
5099
  nullable: boolean;
4849
5100
  type: string;
5101
+ 'x-property-group-key': string;
4850
5102
  };
4851
5103
  fan_mode_setting: {
4852
5104
  deprecated: boolean;
4853
5105
  enum: string[];
4854
5106
  type: string;
4855
5107
  'x-deprecated': string;
5108
+ 'x-property-group-key': string;
4856
5109
  };
4857
5110
  is_cooling: {
5111
+ description: string;
4858
5112
  type: string;
5113
+ 'x-property-group-key': string;
4859
5114
  };
4860
5115
  is_fan_running: {
5116
+ description: string;
4861
5117
  type: string;
5118
+ 'x-property-group-key': string;
4862
5119
  };
4863
5120
  is_heating: {
5121
+ description: string;
4864
5122
  type: string;
5123
+ 'x-property-group-key': string;
4865
5124
  };
4866
5125
  is_temporary_manual_override_active: {
5126
+ description: string;
4867
5127
  type: string;
5128
+ 'x-property-group-key': string;
4868
5129
  };
4869
5130
  max_cooling_set_point_celsius: {
5131
+ description: string;
4870
5132
  format: string;
4871
5133
  type: string;
5134
+ 'x-property-group-key': string;
4872
5135
  };
4873
5136
  max_cooling_set_point_fahrenheit: {
5137
+ description: string;
4874
5138
  format: string;
4875
5139
  type: string;
5140
+ 'x-property-group-key': string;
4876
5141
  };
4877
5142
  max_heating_set_point_celsius: {
5143
+ description: string;
4878
5144
  format: string;
4879
5145
  type: string;
5146
+ 'x-property-group-key': string;
4880
5147
  };
4881
5148
  max_heating_set_point_fahrenheit: {
5149
+ description: string;
4882
5150
  format: string;
4883
5151
  type: string;
5152
+ 'x-property-group-key': string;
4884
5153
  };
4885
5154
  min_cooling_set_point_celsius: {
5155
+ description: string;
4886
5156
  format: string;
4887
5157
  type: string;
5158
+ 'x-property-group-key': string;
4888
5159
  };
4889
5160
  min_cooling_set_point_fahrenheit: {
5161
+ description: string;
4890
5162
  format: string;
4891
5163
  type: string;
5164
+ 'x-property-group-key': string;
4892
5165
  };
4893
5166
  min_heating_cooling_delta_celsius: {
5167
+ description: string;
4894
5168
  format: string;
4895
5169
  type: string;
5170
+ 'x-property-group-key': string;
4896
5171
  };
4897
5172
  min_heating_cooling_delta_fahrenheit: {
5173
+ description: string;
4898
5174
  format: string;
4899
5175
  type: string;
5176
+ 'x-property-group-key': string;
4900
5177
  };
4901
5178
  min_heating_set_point_celsius: {
5179
+ description: string;
4902
5180
  format: string;
4903
5181
  type: string;
5182
+ 'x-property-group-key': string;
4904
5183
  };
4905
5184
  min_heating_set_point_fahrenheit: {
5185
+ description: string;
4906
5186
  format: string;
4907
5187
  type: string;
5188
+ 'x-property-group-key': string;
4908
5189
  };
4909
5190
  relative_humidity: {
5191
+ description: string;
4910
5192
  format: string;
4911
5193
  maximum: number;
4912
5194
  minimum: number;
4913
5195
  type: string;
5196
+ 'x-property-group-key': string;
4914
5197
  };
4915
5198
  temperature_celsius: {
5199
+ description: string;
4916
5200
  format: string;
4917
5201
  type: string;
5202
+ 'x-property-group-key': string;
4918
5203
  };
4919
5204
  temperature_fahrenheit: {
5205
+ description: string;
4920
5206
  format: string;
4921
5207
  type: string;
5208
+ 'x-property-group-key': string;
4922
5209
  };
4923
5210
  temperature_threshold: {
5211
+ description: string;
4924
5212
  properties: {
4925
5213
  lower_limit_celsius: {
5214
+ description: string;
4926
5215
  format: string;
4927
5216
  nullable: boolean;
4928
5217
  type: string;
4929
5218
  };
4930
5219
  lower_limit_fahrenheit: {
5220
+ description: string;
4931
5221
  format: string;
4932
5222
  nullable: boolean;
4933
5223
  type: string;
4934
5224
  };
4935
5225
  upper_limit_celsius: {
5226
+ description: string;
4936
5227
  format: string;
4937
5228
  nullable: boolean;
4938
5229
  type: string;
4939
5230
  };
4940
5231
  upper_limit_fahrenheit: {
5232
+ description: string;
4941
5233
  format: string;
4942
5234
  nullable: boolean;
4943
5235
  type: string;
@@ -4945,8 +5237,10 @@ declare const _default: {
4945
5237
  };
4946
5238
  required: string[];
4947
5239
  type: string;
5240
+ 'x-property-group-key': string;
4948
5241
  };
4949
5242
  thermostat_daily_programs: {
5243
+ description: string;
4950
5244
  items: {
4951
5245
  description: string;
4952
5246
  properties: {
@@ -5001,8 +5295,10 @@ declare const _default: {
5001
5295
  'x-route-path': string;
5002
5296
  };
5003
5297
  type: string;
5298
+ 'x-property-group-key': string;
5004
5299
  };
5005
5300
  thermostat_weekly_program: {
5301
+ description: string;
5006
5302
  nullable: boolean;
5007
5303
  properties: {
5008
5304
  created_at: {
@@ -5055,6 +5351,7 @@ declare const _default: {
5055
5351
  };
5056
5352
  required: string[];
5057
5353
  type: string;
5354
+ 'x-property-group-key': string;
5058
5355
  };
5059
5356
  _experimental_supported_code_from_access_codes_lengths?: never;
5060
5357
  code_constraints?: never;
@@ -5070,6 +5367,29 @@ declare const _default: {
5070
5367
  })[];
5071
5368
  })[];
5072
5369
  description: string;
5370
+ 'x-property-groups': {
5371
+ access_codes: {
5372
+ name: string;
5373
+ };
5374
+ hardware: {
5375
+ name: string;
5376
+ };
5377
+ locks: {
5378
+ name: string;
5379
+ };
5380
+ noise_sensors: {
5381
+ name: string;
5382
+ };
5383
+ phones: {
5384
+ name: string;
5385
+ };
5386
+ provider_metadata: {
5387
+ name: string;
5388
+ };
5389
+ thermostats: {
5390
+ name: string;
5391
+ };
5392
+ };
5073
5393
  };
5074
5394
  warnings: {
5075
5395
  description: string;
@@ -5107,6 +5427,29 @@ declare const _default: {
5107
5427
  };
5108
5428
  required: string[];
5109
5429
  type: string;
5430
+ 'x-property-groups': {
5431
+ access_codes: {
5432
+ name: string;
5433
+ };
5434
+ hardware: {
5435
+ name: string;
5436
+ };
5437
+ locks: {
5438
+ name: string;
5439
+ };
5440
+ noise_sensors: {
5441
+ name: string;
5442
+ };
5443
+ phones: {
5444
+ name: string;
5445
+ };
5446
+ provider_metadata: {
5447
+ name: string;
5448
+ };
5449
+ thermostats: {
5450
+ name: string;
5451
+ };
5452
+ };
5110
5453
  'x-route-path': string;
5111
5454
  };
5112
5455
  device_provider: {
@@ -8510,6 +8853,11 @@ declare const _default: {
8510
8853
  };
8511
8854
  required: string[];
8512
8855
  type: string;
8856
+ 'x-property-groups': {
8857
+ phones: {
8858
+ name: string;
8859
+ };
8860
+ };
8513
8861
  'x-route-path': string;
8514
8862
  };
8515
8863
  phone_registration: {
@@ -10081,6 +10429,7 @@ declare const _default: {
10081
10429
  capabilities_supported: {
10082
10430
  description: string;
10083
10431
  items: {
10432
+ description: string;
10084
10433
  enum: string[];
10085
10434
  type: string;
10086
10435
  };
@@ -10103,15 +10452,11 @@ declare const _default: {
10103
10452
  };
10104
10453
  device_type: {
10105
10454
  description: string;
10106
- oneOf: ({
10107
- enum: string[];
10108
- type: string;
10109
- description?: never;
10110
- } | {
10455
+ oneOf: {
10111
10456
  description: string;
10112
10457
  enum: string[];
10113
10458
  type: string;
10114
- })[];
10459
+ }[];
10115
10460
  };
10116
10461
  errors: {
10117
10462
  description: string;
@@ -10227,8 +10572,10 @@ declare const _default: {
10227
10572
  };
10228
10573
  };
10229
10574
  type: string;
10575
+ 'x-property-group-key': string;
10230
10576
  };
10231
10577
  properties: {
10578
+ description: string;
10232
10579
  properties: {
10233
10580
  accessory_keypad: {
10234
10581
  description: string;
@@ -10253,23 +10600,27 @@ declare const _default: {
10253
10600
  };
10254
10601
  required: string[];
10255
10602
  type: string;
10603
+ 'x-property-group-key': string;
10256
10604
  };
10257
10605
  battery: {
10258
10606
  description: string;
10259
10607
  properties: {
10260
10608
  level: {
10609
+ description: string;
10261
10610
  format: string;
10262
10611
  maximum: number;
10263
10612
  minimum: number;
10264
10613
  type: string;
10265
10614
  };
10266
10615
  status: {
10616
+ description: string;
10267
10617
  enum: string[];
10268
10618
  type: string;
10269
10619
  };
10270
10620
  };
10271
10621
  required: string[];
10272
10622
  type: string;
10623
+ 'x-property-group-key': string;
10273
10624
  };
10274
10625
  battery_level: {
10275
10626
  description: string;
@@ -10277,21 +10628,26 @@ declare const _default: {
10277
10628
  maximum: number;
10278
10629
  minimum: number;
10279
10630
  type: string;
10631
+ 'x-property-group-key': string;
10280
10632
  };
10281
10633
  image_alt_text: {
10282
10634
  description: string;
10283
10635
  type: string;
10636
+ 'x-property-group-key': string;
10284
10637
  };
10285
10638
  image_url: {
10286
10639
  description: string;
10287
10640
  format: string;
10288
10641
  type: string;
10642
+ 'x-property-group-key': string;
10289
10643
  };
10290
10644
  manufacturer: {
10291
10645
  description: string;
10292
10646
  type: string;
10647
+ 'x-property-group-key': string;
10293
10648
  };
10294
10649
  model: {
10650
+ description: string;
10295
10651
  properties: {
10296
10652
  accessory_keypad_supported: {
10297
10653
  deprecated: boolean;
@@ -10315,12 +10671,14 @@ declare const _default: {
10315
10671
  type: string;
10316
10672
  };
10317
10673
  offline_access_codes_supported: {
10318
- description: string;
10674
+ deprecated: boolean;
10319
10675
  type: string;
10676
+ 'x-deprecated': string;
10320
10677
  };
10321
10678
  online_access_codes_supported: {
10322
- description: string;
10679
+ deprecated: boolean;
10323
10680
  type: string;
10681
+ 'x-deprecated': string;
10324
10682
  };
10325
10683
  };
10326
10684
  required: string[];
@@ -10335,6 +10693,7 @@ declare const _default: {
10335
10693
  offline_access_codes_enabled: {
10336
10694
  description: string;
10337
10695
  type: string;
10696
+ 'x-property-group-key': string;
10338
10697
  };
10339
10698
  online: {
10340
10699
  description: string;
@@ -10343,10 +10702,34 @@ declare const _default: {
10343
10702
  online_access_codes_enabled: {
10344
10703
  description: string;
10345
10704
  type: string;
10705
+ 'x-property-group-key': string;
10346
10706
  };
10347
10707
  };
10348
10708
  required: string[];
10349
10709
  type: string;
10710
+ 'x-property-groups': {
10711
+ access_codes: {
10712
+ name: string;
10713
+ };
10714
+ hardware: {
10715
+ name: string;
10716
+ };
10717
+ locks: {
10718
+ name: string;
10719
+ };
10720
+ noise_sensors: {
10721
+ name: string;
10722
+ };
10723
+ phones: {
10724
+ name: string;
10725
+ };
10726
+ provider_metadata: {
10727
+ name: string;
10728
+ };
10729
+ thermostats: {
10730
+ name: string;
10731
+ };
10732
+ };
10350
10733
  };
10351
10734
  warnings: {
10352
10735
  description: string;
@@ -10384,6 +10767,29 @@ declare const _default: {
10384
10767
  };
10385
10768
  required: string[];
10386
10769
  type: string;
10770
+ 'x-property-groups': {
10771
+ access_codes: {
10772
+ name: string;
10773
+ };
10774
+ hardware: {
10775
+ name: string;
10776
+ };
10777
+ locks: {
10778
+ name: string;
10779
+ };
10780
+ noise_sensors: {
10781
+ name: string;
10782
+ };
10783
+ phones: {
10784
+ name: string;
10785
+ };
10786
+ provider_metadata: {
10787
+ name: string;
10788
+ };
10789
+ thermostats: {
10790
+ name: string;
10791
+ };
10792
+ };
10387
10793
  'x-route-path': string;
10388
10794
  };
10389
10795
  user_identity: {
@@ -10551,6 +10957,11 @@ declare const _default: {
10551
10957
  scheme: string;
10552
10958
  type: string;
10553
10959
  };
10960
+ customer_client_session: {
10961
+ bearerFormat: string;
10962
+ scheme: string;
10963
+ type: string;
10964
+ };
10554
10965
  pat_with_workspace: {
10555
10966
  bearerFormat: string;
10556
10967
  scheme: string;
@@ -18055,6 +18466,12 @@ declare const _default: {
18055
18466
  };
18056
18467
  type: string;
18057
18468
  };
18469
+ customer_id: {
18470
+ type: string;
18471
+ };
18472
+ customer_key: {
18473
+ type: string;
18474
+ };
18058
18475
  expires_at: {
18059
18476
  description: string;
18060
18477
  format: string;
@@ -18156,6 +18573,12 @@ declare const _default: {
18156
18573
  };
18157
18574
  type: string;
18158
18575
  };
18576
+ customer_id: {
18577
+ type: string;
18578
+ };
18579
+ customer_key: {
18580
+ type: string;
18581
+ };
18159
18582
  expires_at: {
18160
18583
  description: string;
18161
18584
  format: string;
@@ -18861,6 +19284,10 @@ declare const _default: {
18861
19284
  description: string;
18862
19285
  type: string;
18863
19286
  };
19287
+ customer_id: {
19288
+ format: string;
19289
+ type: string;
19290
+ };
18864
19291
  device_selection_mode: {
18865
19292
  enum: string[];
18866
19293
  type: string;
@@ -18911,22 +19338,32 @@ declare const _default: {
18911
19338
  };
18912
19339
  security: ({
18913
19340
  client_session: never[];
19341
+ customer_client_session?: never;
19342
+ pat_with_workspace?: never;
19343
+ console_session_with_workspace?: never;
19344
+ api_key?: never;
19345
+ } | {
19346
+ customer_client_session: never[];
19347
+ client_session?: never;
18914
19348
  pat_with_workspace?: never;
18915
19349
  console_session_with_workspace?: never;
18916
19350
  api_key?: never;
18917
19351
  } | {
18918
19352
  pat_with_workspace: never[];
18919
19353
  client_session?: never;
19354
+ customer_client_session?: never;
18920
19355
  console_session_with_workspace?: never;
18921
19356
  api_key?: never;
18922
19357
  } | {
18923
19358
  console_session_with_workspace: never[];
18924
19359
  client_session?: never;
19360
+ customer_client_session?: never;
18925
19361
  pat_with_workspace?: never;
18926
19362
  api_key?: never;
18927
19363
  } | {
18928
19364
  api_key: never[];
18929
19365
  client_session?: never;
19366
+ customer_client_session?: never;
18930
19367
  pat_with_workspace?: never;
18931
19368
  console_session_with_workspace?: never;
18932
19369
  })[];
@@ -19101,6 +19538,9 @@ declare const _default: {
19101
19538
  description: string;
19102
19539
  type: string;
19103
19540
  };
19541
+ customer_id: {
19542
+ type: string;
19543
+ };
19104
19544
  limit: {
19105
19545
  default: number;
19106
19546
  description: string;
@@ -19149,22 +19589,32 @@ declare const _default: {
19149
19589
  };
19150
19590
  security: ({
19151
19591
  client_session: never[];
19592
+ customer_client_session?: never;
19593
+ pat_with_workspace?: never;
19594
+ console_session_with_workspace?: never;
19595
+ api_key?: never;
19596
+ } | {
19597
+ customer_client_session: never[];
19598
+ client_session?: never;
19152
19599
  pat_with_workspace?: never;
19153
19600
  console_session_with_workspace?: never;
19154
19601
  api_key?: never;
19155
19602
  } | {
19156
19603
  pat_with_workspace: never[];
19157
19604
  client_session?: never;
19605
+ customer_client_session?: never;
19158
19606
  console_session_with_workspace?: never;
19159
19607
  api_key?: never;
19160
19608
  } | {
19161
19609
  console_session_with_workspace: never[];
19162
19610
  client_session?: never;
19611
+ customer_client_session?: never;
19163
19612
  pat_with_workspace?: never;
19164
19613
  api_key?: never;
19165
19614
  } | {
19166
19615
  api_key: never[];
19167
19616
  client_session?: never;
19617
+ customer_client_session?: never;
19168
19618
  pat_with_workspace?: never;
19169
19619
  console_session_with_workspace?: never;
19170
19620
  })[];
@@ -19802,28 +20252,20 @@ declare const _default: {
19802
20252
  };
19803
20253
  device_type: {
19804
20254
  description: string;
19805
- oneOf: ({
19806
- enum: string[];
19807
- type: string;
19808
- description?: never;
19809
- } | {
20255
+ oneOf: {
19810
20256
  description: string;
19811
20257
  enum: string[];
19812
20258
  type: string;
19813
- })[];
20259
+ }[];
19814
20260
  };
19815
20261
  device_types: {
19816
20262
  description: string;
19817
20263
  items: {
19818
- oneOf: ({
19819
- enum: string[];
19820
- type: string;
19821
- description?: never;
19822
- } | {
20264
+ oneOf: {
19823
20265
  description: string;
19824
20266
  enum: string[];
19825
20267
  type: string;
19826
- })[];
20268
+ }[];
19827
20269
  };
19828
20270
  type: string;
19829
20271
  };
@@ -20356,28 +20798,20 @@ declare const _default: {
20356
20798
  };
20357
20799
  device_type: {
20358
20800
  description: string;
20359
- oneOf: ({
20360
- enum: string[];
20361
- type: string;
20362
- description?: never;
20363
- } | {
20801
+ oneOf: {
20364
20802
  description: string;
20365
20803
  enum: string[];
20366
20804
  type: string;
20367
- })[];
20805
+ }[];
20368
20806
  };
20369
20807
  device_types: {
20370
20808
  description: string;
20371
20809
  items: {
20372
- oneOf: ({
20373
- enum: string[];
20374
- type: string;
20375
- description?: never;
20376
- } | {
20810
+ oneOf: {
20377
20811
  description: string;
20378
20812
  enum: string[];
20379
20813
  type: string;
20380
- })[];
20814
+ }[];
20381
20815
  };
20382
20816
  type: string;
20383
20817
  };
@@ -21231,6 +21665,7 @@ declare const _default: {
21231
21665
  device_types: {
21232
21666
  description: string;
21233
21667
  items: {
21668
+ description: string;
21234
21669
  enum: string[];
21235
21670
  type: string;
21236
21671
  };
@@ -21845,6 +22280,7 @@ declare const _default: {
21845
22280
  device_types: {
21846
22281
  description: string;
21847
22282
  items: {
22283
+ description: string;
21848
22284
  enum: string[];
21849
22285
  type: string;
21850
22286
  };
@@ -24227,7 +24663,66 @@ declare const _default: {
24227
24663
  type: string;
24228
24664
  };
24229
24665
  };
24230
- required: string[];
24666
+ required: string[];
24667
+ type: string;
24668
+ };
24669
+ };
24670
+ };
24671
+ };
24672
+ responses: {
24673
+ 200: {
24674
+ content: {
24675
+ 'application/json': {
24676
+ schema: {
24677
+ properties: {
24678
+ ok: {
24679
+ type: string;
24680
+ };
24681
+ phone_session: {
24682
+ $ref: string;
24683
+ };
24684
+ };
24685
+ required: string[];
24686
+ type: string;
24687
+ };
24688
+ };
24689
+ };
24690
+ description: string;
24691
+ };
24692
+ 400: {
24693
+ description: string;
24694
+ };
24695
+ 401: {
24696
+ description: string;
24697
+ };
24698
+ };
24699
+ security: {
24700
+ client_session: never[];
24701
+ }[];
24702
+ summary: string;
24703
+ tags: never[];
24704
+ 'x-fern-sdk-group-name': string[];
24705
+ 'x-fern-sdk-method-name': string;
24706
+ 'x-fern-sdk-return-value': string;
24707
+ 'x-response-key': string;
24708
+ 'x-title': string;
24709
+ 'x-undocumented': string;
24710
+ };
24711
+ };
24712
+ '/seam/partner/v1/resources/list': {
24713
+ post: {
24714
+ description: string;
24715
+ operationId: string;
24716
+ requestBody: {
24717
+ content: {
24718
+ 'application/json': {
24719
+ schema: {
24720
+ properties: {
24721
+ resource_type_alias: {
24722
+ description: string;
24723
+ type: string;
24724
+ };
24725
+ };
24231
24726
  type: string;
24232
24727
  };
24233
24728
  };
@@ -24242,8 +24737,56 @@ declare const _default: {
24242
24737
  ok: {
24243
24738
  type: string;
24244
24739
  };
24245
- phone_session: {
24246
- $ref: string;
24740
+ partner_resources: {
24741
+ items: {
24742
+ properties: {
24743
+ custom_metadata: {
24744
+ additionalProperties: {
24745
+ type: string;
24746
+ };
24747
+ type: string;
24748
+ };
24749
+ customer_key: {
24750
+ type: string;
24751
+ };
24752
+ description: {
24753
+ type: string;
24754
+ };
24755
+ email_address: {
24756
+ type: string;
24757
+ };
24758
+ ends_at: {
24759
+ type: string;
24760
+ };
24761
+ location_keys: {
24762
+ items: {
24763
+ type: string;
24764
+ };
24765
+ type: string;
24766
+ };
24767
+ name: {
24768
+ type: string;
24769
+ };
24770
+ partner_resource_key: {
24771
+ type: string;
24772
+ };
24773
+ partner_resource_type: {
24774
+ type: string;
24775
+ };
24776
+ phone_number: {
24777
+ type: string;
24778
+ };
24779
+ starts_at: {
24780
+ type: string;
24781
+ };
24782
+ user_identity_key: {
24783
+ type: string;
24784
+ };
24785
+ };
24786
+ required: string[];
24787
+ type: string;
24788
+ };
24789
+ type: string;
24247
24790
  };
24248
24791
  };
24249
24792
  required: string[];
@@ -24261,7 +24804,7 @@ declare const _default: {
24261
24804
  };
24262
24805
  };
24263
24806
  security: {
24264
- client_session: never[];
24807
+ customer_client_session: never[];
24265
24808
  }[];
24266
24809
  summary: string;
24267
24810
  tags: never[];
@@ -25414,6 +25957,7 @@ declare const _default: {
25414
25957
  device_types: {
25415
25958
  description: string;
25416
25959
  items: {
25960
+ description: string;
25417
25961
  enum: string[];
25418
25962
  type: string;
25419
25963
  };
@@ -29441,6 +29985,200 @@ declare const _default: {
29441
29985
  'x-undocumented': string;
29442
29986
  };
29443
29987
  };
29988
+ '/unstable_partner/building_blocks/generate_link': {
29989
+ post: {
29990
+ description: string;
29991
+ operationId: string;
29992
+ requestBody: {
29993
+ content: {
29994
+ 'application/json': {
29995
+ schema: {
29996
+ properties: {
29997
+ bridge_client_machine_identifier_key: {
29998
+ type: string;
29999
+ };
30000
+ bridge_client_name: {
30001
+ type: string;
30002
+ };
30003
+ bridge_client_time_zone: {
30004
+ type: string;
30005
+ };
30006
+ };
30007
+ required: string[];
30008
+ type: string;
30009
+ };
30010
+ };
30011
+ };
30012
+ };
30013
+ responses: {
30014
+ 200: {
30015
+ content: {
30016
+ 'application/json': {
30017
+ schema: {
30018
+ properties: {
30019
+ bridge_client_session: {
30020
+ properties: {
30021
+ bridge_client_machine_identifier_key: {
30022
+ type: string;
30023
+ };
30024
+ bridge_client_name: {
30025
+ type: string;
30026
+ };
30027
+ bridge_client_session_id: {
30028
+ format: string;
30029
+ type: string;
30030
+ };
30031
+ bridge_client_session_token: {
30032
+ type: string;
30033
+ };
30034
+ bridge_client_time_zone: {
30035
+ type: string;
30036
+ };
30037
+ created_at: {
30038
+ format: string;
30039
+ type: string;
30040
+ };
30041
+ errors: {
30042
+ items: {
30043
+ description: string;
30044
+ discriminator: {
30045
+ propertyName: string;
30046
+ };
30047
+ oneOf: ({
30048
+ description: string;
30049
+ properties: {
30050
+ can_tailscale_proxy_reach_bridge: {
30051
+ description: string;
30052
+ nullable: boolean;
30053
+ type: string;
30054
+ };
30055
+ can_tailscale_proxy_reach_tailscale_network: {
30056
+ description: string;
30057
+ nullable: boolean;
30058
+ type: string;
30059
+ };
30060
+ created_at: {
30061
+ format: string;
30062
+ type: string;
30063
+ };
30064
+ error_code: {
30065
+ description: string;
30066
+ enum: string[];
30067
+ type: string;
30068
+ };
30069
+ is_bridge_socks_server_healthy: {
30070
+ description: string;
30071
+ nullable: boolean;
30072
+ type: string;
30073
+ };
30074
+ is_tailscale_proxy_reachable: {
30075
+ description: string;
30076
+ nullable: boolean;
30077
+ type: string;
30078
+ };
30079
+ is_tailscale_proxy_socks_server_healthy: {
30080
+ description: string;
30081
+ nullable: boolean;
30082
+ type: string;
30083
+ };
30084
+ message: {
30085
+ type: string;
30086
+ };
30087
+ };
30088
+ required: string[];
30089
+ type: string;
30090
+ } | {
30091
+ description: string;
30092
+ properties: {
30093
+ created_at: {
30094
+ format: string;
30095
+ type: string;
30096
+ };
30097
+ error_code: {
30098
+ description: string;
30099
+ enum: string[];
30100
+ type: string;
30101
+ };
30102
+ message: {
30103
+ type: string;
30104
+ };
30105
+ can_tailscale_proxy_reach_bridge?: never;
30106
+ can_tailscale_proxy_reach_tailscale_network?: never;
30107
+ is_bridge_socks_server_healthy?: never;
30108
+ is_tailscale_proxy_reachable?: never;
30109
+ is_tailscale_proxy_socks_server_healthy?: never;
30110
+ };
30111
+ required: string[];
30112
+ type: string;
30113
+ })[];
30114
+ };
30115
+ type: string;
30116
+ };
30117
+ pairing_code: {
30118
+ maxLength: number;
30119
+ minLength: number;
30120
+ type: string;
30121
+ };
30122
+ pairing_code_expires_at: {
30123
+ format: string;
30124
+ type: string;
30125
+ };
30126
+ tailscale_auth_key: {
30127
+ nullable: boolean;
30128
+ type: string;
30129
+ };
30130
+ tailscale_hostname: {
30131
+ type: string;
30132
+ };
30133
+ telemetry_token: {
30134
+ nullable: boolean;
30135
+ type: string;
30136
+ };
30137
+ telemetry_token_expires_at: {
30138
+ format: string;
30139
+ nullable: boolean;
30140
+ type: string;
30141
+ };
30142
+ telemetry_url: {
30143
+ nullable: boolean;
30144
+ type: string;
30145
+ };
30146
+ };
30147
+ required: string[];
30148
+ type: string;
30149
+ 'x-route-path': string;
30150
+ 'x-undocumented': string;
30151
+ };
30152
+ ok: {
30153
+ type: string;
30154
+ };
30155
+ };
30156
+ required: string[];
30157
+ type: string;
30158
+ };
30159
+ };
30160
+ };
30161
+ description: string;
30162
+ };
30163
+ 400: {
30164
+ description: string;
30165
+ };
30166
+ 401: {
30167
+ description: string;
30168
+ };
30169
+ };
30170
+ security: {
30171
+ certified_client: never[];
30172
+ }[];
30173
+ summary: string;
30174
+ tags: never[];
30175
+ 'x-fern-sdk-group-name': string[];
30176
+ 'x-fern-sdk-method-name': string;
30177
+ 'x-fern-sdk-return-value': string;
30178
+ 'x-response-key': string;
30179
+ 'x-title': string;
30180
+ };
30181
+ };
29444
30182
  '/unstable_partner/resources/push': {
29445
30183
  post: {
29446
30184
  description: string;
@@ -29470,9 +30208,6 @@ declare const _default: {
29470
30208
  ends_at: {
29471
30209
  type: string;
29472
30210
  };
29473
- icon_url: {
29474
- type: string;
29475
- };
29476
30211
  location_keys: {
29477
30212
  items: {
29478
30213
  type: string;
@@ -29522,9 +30257,6 @@ declare const _default: {
29522
30257
  ends_at: {
29523
30258
  type: string;
29524
30259
  };
29525
- icon_url: {
29526
- type: string;
29527
- };
29528
30260
  location_keys: {
29529
30261
  items: {
29530
30262
  type: string;