@seamapi/types 1.125.0 → 1.127.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.
- package/dist/connect.cjs +46 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5 -4
- package/lib/seam/connect/openapi.d.ts +1 -0
- package/lib/seam/connect/openapi.js +44 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +44 -1
- package/src/lib/seam/connect/route-types.ts +50 -3
|
@@ -1685,7 +1685,7 @@ export interface Routes {
|
|
|
1685
1685
|
custom_redirect_url?: string | undefined;
|
|
1686
1686
|
custom_redirect_failure_url?: string | undefined;
|
|
1687
1687
|
accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
1688
|
-
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'internal_beta') | undefined;
|
|
1688
|
+
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
1689
1689
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
1690
1690
|
automatically_manage_new_devices?: boolean | undefined;
|
|
1691
1691
|
wait_for_device_creation?: boolean | undefined;
|
|
@@ -2898,15 +2898,15 @@ export interface Routes {
|
|
|
2898
2898
|
queryParams: {};
|
|
2899
2899
|
jsonBody: {};
|
|
2900
2900
|
commonParams: {
|
|
2901
|
-
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors') | undefined;
|
|
2901
|
+
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems') | undefined;
|
|
2902
2902
|
};
|
|
2903
2903
|
formData: {};
|
|
2904
2904
|
jsonResponse: {
|
|
2905
2905
|
device_providers: Array<{
|
|
2906
|
-
device_provider_name:
|
|
2906
|
+
device_provider_name: 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell';
|
|
2907
2907
|
display_name: string;
|
|
2908
2908
|
image_url: string;
|
|
2909
|
-
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors'>;
|
|
2909
|
+
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
2910
2910
|
}>;
|
|
2911
2911
|
};
|
|
2912
2912
|
};
|
package/package.json
CHANGED
|
@@ -1724,7 +1724,47 @@ export default {
|
|
|
1724
1724
|
},
|
|
1725
1725
|
device_provider: {
|
|
1726
1726
|
properties: {
|
|
1727
|
-
device_provider_name: {
|
|
1727
|
+
device_provider_name: {
|
|
1728
|
+
enum: [
|
|
1729
|
+
'akuvox',
|
|
1730
|
+
'august',
|
|
1731
|
+
'avigilon_alta',
|
|
1732
|
+
'brivo',
|
|
1733
|
+
'butterflymx',
|
|
1734
|
+
'schlage',
|
|
1735
|
+
'smartthings',
|
|
1736
|
+
'yale',
|
|
1737
|
+
'genie',
|
|
1738
|
+
'doorking',
|
|
1739
|
+
'salto',
|
|
1740
|
+
'lockly',
|
|
1741
|
+
'ttlock',
|
|
1742
|
+
'linear',
|
|
1743
|
+
'noiseaware',
|
|
1744
|
+
'nuki',
|
|
1745
|
+
'seam_relay_admin',
|
|
1746
|
+
'igloo',
|
|
1747
|
+
'kwikset',
|
|
1748
|
+
'minut',
|
|
1749
|
+
'my_2n',
|
|
1750
|
+
'controlbyweb',
|
|
1751
|
+
'nest',
|
|
1752
|
+
'igloohome',
|
|
1753
|
+
'ecobee',
|
|
1754
|
+
'hubitat',
|
|
1755
|
+
'four_suites',
|
|
1756
|
+
'dormakaba_oracode',
|
|
1757
|
+
'pti',
|
|
1758
|
+
'wyze',
|
|
1759
|
+
'seam_passport',
|
|
1760
|
+
'visionline',
|
|
1761
|
+
'assa_abloy_credential_service',
|
|
1762
|
+
'seam_bridge',
|
|
1763
|
+
'tedee',
|
|
1764
|
+
'honeywell',
|
|
1765
|
+
],
|
|
1766
|
+
type: 'string',
|
|
1767
|
+
},
|
|
1728
1768
|
display_name: { type: 'string' },
|
|
1729
1769
|
image_url: { type: 'string' },
|
|
1730
1770
|
provider_categories: {
|
|
@@ -1734,6 +1774,7 @@ export default {
|
|
|
1734
1774
|
'consumer_smartlocks',
|
|
1735
1775
|
'thermostats',
|
|
1736
1776
|
'noise_sensors',
|
|
1777
|
+
'access_control_systems',
|
|
1737
1778
|
],
|
|
1738
1779
|
type: 'string',
|
|
1739
1780
|
},
|
|
@@ -7050,6 +7091,7 @@ export default {
|
|
|
7050
7091
|
'consumer_smartlocks',
|
|
7051
7092
|
'thermostats',
|
|
7052
7093
|
'noise_sensors',
|
|
7094
|
+
'access_control_systems',
|
|
7053
7095
|
'internal_beta',
|
|
7054
7096
|
],
|
|
7055
7097
|
type: 'string',
|
|
@@ -7824,6 +7866,7 @@ export default {
|
|
|
7824
7866
|
'consumer_smartlocks',
|
|
7825
7867
|
'thermostats',
|
|
7826
7868
|
'noise_sensors',
|
|
7869
|
+
'access_control_systems',
|
|
7827
7870
|
],
|
|
7828
7871
|
type: 'string',
|
|
7829
7872
|
},
|
|
@@ -1929,6 +1929,7 @@ export interface Routes {
|
|
|
1929
1929
|
| 'consumer_smartlocks'
|
|
1930
1930
|
| 'thermostats'
|
|
1931
1931
|
| 'noise_sensors'
|
|
1932
|
+
| 'access_control_systems'
|
|
1932
1933
|
| 'internal_beta'
|
|
1933
1934
|
)
|
|
1934
1935
|
| undefined
|
|
@@ -3680,17 +3681,63 @@ export interface Routes {
|
|
|
3680
3681
|
jsonBody: {}
|
|
3681
3682
|
commonParams: {
|
|
3682
3683
|
provider_category?:
|
|
3683
|
-
| (
|
|
3684
|
+
| (
|
|
3685
|
+
| 'stable'
|
|
3686
|
+
| 'consumer_smartlocks'
|
|
3687
|
+
| 'thermostats'
|
|
3688
|
+
| 'noise_sensors'
|
|
3689
|
+
| 'access_control_systems'
|
|
3690
|
+
)
|
|
3684
3691
|
| undefined
|
|
3685
3692
|
}
|
|
3686
3693
|
formData: {}
|
|
3687
3694
|
jsonResponse: {
|
|
3688
3695
|
device_providers: Array<{
|
|
3689
|
-
device_provider_name:
|
|
3696
|
+
device_provider_name:
|
|
3697
|
+
| 'akuvox'
|
|
3698
|
+
| 'august'
|
|
3699
|
+
| 'avigilon_alta'
|
|
3700
|
+
| 'brivo'
|
|
3701
|
+
| 'butterflymx'
|
|
3702
|
+
| 'schlage'
|
|
3703
|
+
| 'smartthings'
|
|
3704
|
+
| 'yale'
|
|
3705
|
+
| 'genie'
|
|
3706
|
+
| 'doorking'
|
|
3707
|
+
| 'salto'
|
|
3708
|
+
| 'lockly'
|
|
3709
|
+
| 'ttlock'
|
|
3710
|
+
| 'linear'
|
|
3711
|
+
| 'noiseaware'
|
|
3712
|
+
| 'nuki'
|
|
3713
|
+
| 'seam_relay_admin'
|
|
3714
|
+
| 'igloo'
|
|
3715
|
+
| 'kwikset'
|
|
3716
|
+
| 'minut'
|
|
3717
|
+
| 'my_2n'
|
|
3718
|
+
| 'controlbyweb'
|
|
3719
|
+
| 'nest'
|
|
3720
|
+
| 'igloohome'
|
|
3721
|
+
| 'ecobee'
|
|
3722
|
+
| 'hubitat'
|
|
3723
|
+
| 'four_suites'
|
|
3724
|
+
| 'dormakaba_oracode'
|
|
3725
|
+
| 'pti'
|
|
3726
|
+
| 'wyze'
|
|
3727
|
+
| 'seam_passport'
|
|
3728
|
+
| 'visionline'
|
|
3729
|
+
| 'assa_abloy_credential_service'
|
|
3730
|
+
| 'seam_bridge'
|
|
3731
|
+
| 'tedee'
|
|
3732
|
+
| 'honeywell'
|
|
3690
3733
|
display_name: string
|
|
3691
3734
|
image_url: string
|
|
3692
3735
|
provider_categories: Array<
|
|
3693
|
-
|
|
3736
|
+
| 'stable'
|
|
3737
|
+
| 'consumer_smartlocks'
|
|
3738
|
+
| 'thermostats'
|
|
3739
|
+
| 'noise_sensors'
|
|
3740
|
+
| 'access_control_systems'
|
|
3694
3741
|
>
|
|
3695
3742
|
}>
|
|
3696
3743
|
}
|