@seamapi/types 1.373.2 → 1.373.3
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.
- package/dist/connect.cjs +5 -145
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +7 -21
- package/lib/seam/connect/openapi.d.ts +4 -18
- package/lib/seam/connect/openapi.js +5 -145
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +5 -145
- package/src/lib/seam/connect/route-types.ts +3 -123
|
@@ -24649,11 +24649,11 @@ export interface Routes {
|
|
|
24649
24649
|
/** ID of the Connect Webview by which to filter devices. */
|
|
24650
24650
|
connect_webview_id?: string | undefined;
|
|
24651
24651
|
/** Device type by which to filter devices. */
|
|
24652
|
-
device_type?: (
|
|
24652
|
+
device_type?: ('noiseaware_activity_zone' | 'minut_sensor') | undefined;
|
|
24653
24653
|
/** Array of device types by which to filter devices. */
|
|
24654
|
-
device_types?: Array<
|
|
24654
|
+
device_types?: Array<'noiseaware_activity_zone' | 'minut_sensor'> | undefined;
|
|
24655
24655
|
/** Manufacturer by which to filter devices. */
|
|
24656
|
-
manufacturer?: ('
|
|
24656
|
+
manufacturer?: ('noiseaware' | 'minut') | undefined;
|
|
24657
24657
|
/** Array of device IDs by which to filter devices. */
|
|
24658
24658
|
device_ids?: string[] | undefined;
|
|
24659
24659
|
/** Numerical limit on the number of devices to return. */
|
package/package.json
CHANGED
|
@@ -24588,117 +24588,15 @@ export default {
|
|
|
24588
24588
|
},
|
|
24589
24589
|
device_type: {
|
|
24590
24590
|
description: 'Device type by which to filter devices.',
|
|
24591
|
-
|
|
24592
|
-
|
|
24593
|
-
enum: [
|
|
24594
|
-
'akuvox_lock',
|
|
24595
|
-
'august_lock',
|
|
24596
|
-
'brivo_access_point',
|
|
24597
|
-
'butterflymx_panel',
|
|
24598
|
-
'avigilon_alta_entry',
|
|
24599
|
-
'doorking_lock',
|
|
24600
|
-
'genie_door',
|
|
24601
|
-
'igloo_lock',
|
|
24602
|
-
'linear_lock',
|
|
24603
|
-
'lockly_lock',
|
|
24604
|
-
'kwikset_lock',
|
|
24605
|
-
'nuki_lock',
|
|
24606
|
-
'salto_lock',
|
|
24607
|
-
'schlage_lock',
|
|
24608
|
-
'seam_relay',
|
|
24609
|
-
'smartthings_lock',
|
|
24610
|
-
'wyze_lock',
|
|
24611
|
-
'yale_lock',
|
|
24612
|
-
'two_n_intercom',
|
|
24613
|
-
'controlbyweb_device',
|
|
24614
|
-
'ttlock_lock',
|
|
24615
|
-
'igloohome_lock',
|
|
24616
|
-
'hubitat_lock',
|
|
24617
|
-
'four_suites_door',
|
|
24618
|
-
'dormakaba_oracode_door',
|
|
24619
|
-
'tedee_lock',
|
|
24620
|
-
'akiles_lock',
|
|
24621
|
-
],
|
|
24622
|
-
type: 'string',
|
|
24623
|
-
},
|
|
24624
|
-
{
|
|
24625
|
-
enum: ['noiseaware_activity_zone', 'minut_sensor'],
|
|
24626
|
-
type: 'string',
|
|
24627
|
-
},
|
|
24628
|
-
{
|
|
24629
|
-
enum: [
|
|
24630
|
-
'ecobee_thermostat',
|
|
24631
|
-
'nest_thermostat',
|
|
24632
|
-
'honeywell_resideo_thermostat',
|
|
24633
|
-
'tado_thermostat',
|
|
24634
|
-
'sensi_thermostat',
|
|
24635
|
-
],
|
|
24636
|
-
type: 'string',
|
|
24637
|
-
},
|
|
24638
|
-
{
|
|
24639
|
-
description: 'Type of phone.',
|
|
24640
|
-
enum: ['ios_phone', 'android_phone'],
|
|
24641
|
-
type: 'string',
|
|
24642
|
-
},
|
|
24643
|
-
],
|
|
24591
|
+
enum: ['noiseaware_activity_zone', 'minut_sensor'],
|
|
24592
|
+
type: 'string',
|
|
24644
24593
|
},
|
|
24645
24594
|
device_types: {
|
|
24646
24595
|
description:
|
|
24647
24596
|
'Array of device types by which to filter devices.',
|
|
24648
24597
|
items: {
|
|
24649
|
-
|
|
24650
|
-
|
|
24651
|
-
enum: [
|
|
24652
|
-
'akuvox_lock',
|
|
24653
|
-
'august_lock',
|
|
24654
|
-
'brivo_access_point',
|
|
24655
|
-
'butterflymx_panel',
|
|
24656
|
-
'avigilon_alta_entry',
|
|
24657
|
-
'doorking_lock',
|
|
24658
|
-
'genie_door',
|
|
24659
|
-
'igloo_lock',
|
|
24660
|
-
'linear_lock',
|
|
24661
|
-
'lockly_lock',
|
|
24662
|
-
'kwikset_lock',
|
|
24663
|
-
'nuki_lock',
|
|
24664
|
-
'salto_lock',
|
|
24665
|
-
'schlage_lock',
|
|
24666
|
-
'seam_relay',
|
|
24667
|
-
'smartthings_lock',
|
|
24668
|
-
'wyze_lock',
|
|
24669
|
-
'yale_lock',
|
|
24670
|
-
'two_n_intercom',
|
|
24671
|
-
'controlbyweb_device',
|
|
24672
|
-
'ttlock_lock',
|
|
24673
|
-
'igloohome_lock',
|
|
24674
|
-
'hubitat_lock',
|
|
24675
|
-
'four_suites_door',
|
|
24676
|
-
'dormakaba_oracode_door',
|
|
24677
|
-
'tedee_lock',
|
|
24678
|
-
'akiles_lock',
|
|
24679
|
-
],
|
|
24680
|
-
type: 'string',
|
|
24681
|
-
},
|
|
24682
|
-
{
|
|
24683
|
-
enum: ['noiseaware_activity_zone', 'minut_sensor'],
|
|
24684
|
-
type: 'string',
|
|
24685
|
-
},
|
|
24686
|
-
{
|
|
24687
|
-
enum: [
|
|
24688
|
-
'ecobee_thermostat',
|
|
24689
|
-
'nest_thermostat',
|
|
24690
|
-
'honeywell_resideo_thermostat',
|
|
24691
|
-
'tado_thermostat',
|
|
24692
|
-
'sensi_thermostat',
|
|
24693
|
-
],
|
|
24694
|
-
type: 'string',
|
|
24695
|
-
},
|
|
24696
|
-
{
|
|
24697
|
-
description: 'Type of phone.',
|
|
24698
|
-
enum: ['ios_phone', 'android_phone'],
|
|
24699
|
-
type: 'string',
|
|
24700
|
-
},
|
|
24701
|
-
],
|
|
24598
|
+
enum: ['noiseaware_activity_zone', 'minut_sensor'],
|
|
24599
|
+
type: 'string',
|
|
24702
24600
|
},
|
|
24703
24601
|
type: 'array',
|
|
24704
24602
|
},
|
|
@@ -24751,45 +24649,7 @@ export default {
|
|
|
24751
24649
|
},
|
|
24752
24650
|
manufacturer: {
|
|
24753
24651
|
description: 'Manufacturer by which to filter devices.',
|
|
24754
|
-
enum: [
|
|
24755
|
-
'akuvox',
|
|
24756
|
-
'august',
|
|
24757
|
-
'avigilon_alta',
|
|
24758
|
-
'brivo',
|
|
24759
|
-
'butterflymx',
|
|
24760
|
-
'doorking',
|
|
24761
|
-
'four_suites',
|
|
24762
|
-
'genie',
|
|
24763
|
-
'igloo',
|
|
24764
|
-
'keywe',
|
|
24765
|
-
'kwikset',
|
|
24766
|
-
'linear',
|
|
24767
|
-
'lockly',
|
|
24768
|
-
'nuki',
|
|
24769
|
-
'philia',
|
|
24770
|
-
'salto',
|
|
24771
|
-
'samsung',
|
|
24772
|
-
'schlage',
|
|
24773
|
-
'seam',
|
|
24774
|
-
'unknown',
|
|
24775
|
-
'wyze',
|
|
24776
|
-
'yale',
|
|
24777
|
-
'minut',
|
|
24778
|
-
'two_n',
|
|
24779
|
-
'ttlock',
|
|
24780
|
-
'nest',
|
|
24781
|
-
'igloohome',
|
|
24782
|
-
'ecobee',
|
|
24783
|
-
'hubitat',
|
|
24784
|
-
'controlbyweb',
|
|
24785
|
-
'smartthings',
|
|
24786
|
-
'dormakaba_oracode',
|
|
24787
|
-
'tedee',
|
|
24788
|
-
'honeywell_resideo',
|
|
24789
|
-
'akiles',
|
|
24790
|
-
'tado',
|
|
24791
|
-
'sensi',
|
|
24792
|
-
],
|
|
24652
|
+
enum: ['noiseaware', 'minut'],
|
|
24793
24653
|
type: 'string',
|
|
24794
24654
|
},
|
|
24795
24655
|
unstable_location_id: {
|
|
@@ -30007,133 +30007,13 @@ export interface Routes {
|
|
|
30007
30007
|
/** ID of the Connect Webview by which to filter devices. */
|
|
30008
30008
|
connect_webview_id?: string | undefined
|
|
30009
30009
|
/** Device type by which to filter devices. */
|
|
30010
|
-
device_type?:
|
|
30011
|
-
| (
|
|
30012
|
-
| (
|
|
30013
|
-
| 'akuvox_lock'
|
|
30014
|
-
| 'august_lock'
|
|
30015
|
-
| 'brivo_access_point'
|
|
30016
|
-
| 'butterflymx_panel'
|
|
30017
|
-
| 'avigilon_alta_entry'
|
|
30018
|
-
| 'doorking_lock'
|
|
30019
|
-
| 'genie_door'
|
|
30020
|
-
| 'igloo_lock'
|
|
30021
|
-
| 'linear_lock'
|
|
30022
|
-
| 'lockly_lock'
|
|
30023
|
-
| 'kwikset_lock'
|
|
30024
|
-
| 'nuki_lock'
|
|
30025
|
-
| 'salto_lock'
|
|
30026
|
-
| 'schlage_lock'
|
|
30027
|
-
| 'seam_relay'
|
|
30028
|
-
| 'smartthings_lock'
|
|
30029
|
-
| 'wyze_lock'
|
|
30030
|
-
| 'yale_lock'
|
|
30031
|
-
| 'two_n_intercom'
|
|
30032
|
-
| 'controlbyweb_device'
|
|
30033
|
-
| 'ttlock_lock'
|
|
30034
|
-
| 'igloohome_lock'
|
|
30035
|
-
| 'hubitat_lock'
|
|
30036
|
-
| 'four_suites_door'
|
|
30037
|
-
| 'dormakaba_oracode_door'
|
|
30038
|
-
| 'tedee_lock'
|
|
30039
|
-
| 'akiles_lock'
|
|
30040
|
-
)
|
|
30041
|
-
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
30042
|
-
| (
|
|
30043
|
-
| 'ecobee_thermostat'
|
|
30044
|
-
| 'nest_thermostat'
|
|
30045
|
-
| 'honeywell_resideo_thermostat'
|
|
30046
|
-
| 'tado_thermostat'
|
|
30047
|
-
| 'sensi_thermostat'
|
|
30048
|
-
)
|
|
30049
|
-
| ('ios_phone' | 'android_phone')
|
|
30050
|
-
)
|
|
30051
|
-
| undefined
|
|
30010
|
+
device_type?: ('noiseaware_activity_zone' | 'minut_sensor') | undefined
|
|
30052
30011
|
/** Array of device types by which to filter devices. */
|
|
30053
30012
|
device_types?:
|
|
30054
|
-
| Array<
|
|
30055
|
-
| (
|
|
30056
|
-
| 'akuvox_lock'
|
|
30057
|
-
| 'august_lock'
|
|
30058
|
-
| 'brivo_access_point'
|
|
30059
|
-
| 'butterflymx_panel'
|
|
30060
|
-
| 'avigilon_alta_entry'
|
|
30061
|
-
| 'doorking_lock'
|
|
30062
|
-
| 'genie_door'
|
|
30063
|
-
| 'igloo_lock'
|
|
30064
|
-
| 'linear_lock'
|
|
30065
|
-
| 'lockly_lock'
|
|
30066
|
-
| 'kwikset_lock'
|
|
30067
|
-
| 'nuki_lock'
|
|
30068
|
-
| 'salto_lock'
|
|
30069
|
-
| 'schlage_lock'
|
|
30070
|
-
| 'seam_relay'
|
|
30071
|
-
| 'smartthings_lock'
|
|
30072
|
-
| 'wyze_lock'
|
|
30073
|
-
| 'yale_lock'
|
|
30074
|
-
| 'two_n_intercom'
|
|
30075
|
-
| 'controlbyweb_device'
|
|
30076
|
-
| 'ttlock_lock'
|
|
30077
|
-
| 'igloohome_lock'
|
|
30078
|
-
| 'hubitat_lock'
|
|
30079
|
-
| 'four_suites_door'
|
|
30080
|
-
| 'dormakaba_oracode_door'
|
|
30081
|
-
| 'tedee_lock'
|
|
30082
|
-
| 'akiles_lock'
|
|
30083
|
-
)
|
|
30084
|
-
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
30085
|
-
| (
|
|
30086
|
-
| 'ecobee_thermostat'
|
|
30087
|
-
| 'nest_thermostat'
|
|
30088
|
-
| 'honeywell_resideo_thermostat'
|
|
30089
|
-
| 'tado_thermostat'
|
|
30090
|
-
| 'sensi_thermostat'
|
|
30091
|
-
)
|
|
30092
|
-
| ('ios_phone' | 'android_phone')
|
|
30093
|
-
>
|
|
30013
|
+
| Array<'noiseaware_activity_zone' | 'minut_sensor'>
|
|
30094
30014
|
| undefined
|
|
30095
30015
|
/** Manufacturer by which to filter devices. */
|
|
30096
|
-
manufacturer?:
|
|
30097
|
-
| (
|
|
30098
|
-
| 'akuvox'
|
|
30099
|
-
| 'august'
|
|
30100
|
-
| 'avigilon_alta'
|
|
30101
|
-
| 'brivo'
|
|
30102
|
-
| 'butterflymx'
|
|
30103
|
-
| 'doorking'
|
|
30104
|
-
| 'four_suites'
|
|
30105
|
-
| 'genie'
|
|
30106
|
-
| 'igloo'
|
|
30107
|
-
| 'keywe'
|
|
30108
|
-
| 'kwikset'
|
|
30109
|
-
| 'linear'
|
|
30110
|
-
| 'lockly'
|
|
30111
|
-
| 'nuki'
|
|
30112
|
-
| 'philia'
|
|
30113
|
-
| 'salto'
|
|
30114
|
-
| 'samsung'
|
|
30115
|
-
| 'schlage'
|
|
30116
|
-
| 'seam'
|
|
30117
|
-
| 'unknown'
|
|
30118
|
-
| 'wyze'
|
|
30119
|
-
| 'yale'
|
|
30120
|
-
| 'minut'
|
|
30121
|
-
| 'two_n'
|
|
30122
|
-
| 'ttlock'
|
|
30123
|
-
| 'nest'
|
|
30124
|
-
| 'igloohome'
|
|
30125
|
-
| 'ecobee'
|
|
30126
|
-
| 'hubitat'
|
|
30127
|
-
| 'controlbyweb'
|
|
30128
|
-
| 'smartthings'
|
|
30129
|
-
| 'dormakaba_oracode'
|
|
30130
|
-
| 'tedee'
|
|
30131
|
-
| 'honeywell_resideo'
|
|
30132
|
-
| 'akiles'
|
|
30133
|
-
| 'tado'
|
|
30134
|
-
| 'sensi'
|
|
30135
|
-
)
|
|
30136
|
-
| undefined
|
|
30016
|
+
manufacturer?: ('noiseaware' | 'minut') | undefined
|
|
30137
30017
|
/** Array of device IDs by which to filter devices. */
|
|
30138
30018
|
device_ids?: string[] | undefined
|
|
30139
30019
|
/** Numerical limit on the number of devices to return. */
|