@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
package/dist/connect.d.cts
CHANGED
|
@@ -2228,6 +2228,7 @@ declare const _default: {
|
|
|
2228
2228
|
device_provider: {
|
|
2229
2229
|
properties: {
|
|
2230
2230
|
device_provider_name: {
|
|
2231
|
+
enum: string[];
|
|
2231
2232
|
type: string;
|
|
2232
2233
|
};
|
|
2233
2234
|
display_name: {
|
|
@@ -18593,7 +18594,7 @@ interface Routes {
|
|
|
18593
18594
|
custom_redirect_url?: string | undefined;
|
|
18594
18595
|
custom_redirect_failure_url?: string | undefined;
|
|
18595
18596
|
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;
|
|
18596
|
-
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'internal_beta') | undefined;
|
|
18597
|
+
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
18597
18598
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
18598
18599
|
automatically_manage_new_devices?: boolean | undefined;
|
|
18599
18600
|
wait_for_device_creation?: boolean | undefined;
|
|
@@ -19806,15 +19807,15 @@ interface Routes {
|
|
|
19806
19807
|
queryParams: {};
|
|
19807
19808
|
jsonBody: {};
|
|
19808
19809
|
commonParams: {
|
|
19809
|
-
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors') | undefined;
|
|
19810
|
+
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems') | undefined;
|
|
19810
19811
|
};
|
|
19811
19812
|
formData: {};
|
|
19812
19813
|
jsonResponse: {
|
|
19813
19814
|
device_providers: Array<{
|
|
19814
|
-
device_provider_name:
|
|
19815
|
+
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';
|
|
19815
19816
|
display_name: string;
|
|
19816
19817
|
image_url: string;
|
|
19817
|
-
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors'>;
|
|
19818
|
+
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
19818
19819
|
}>;
|
|
19819
19820
|
};
|
|
19820
19821
|
};
|
|
@@ -1683,7 +1683,47 @@ export default {
|
|
|
1683
1683
|
},
|
|
1684
1684
|
device_provider: {
|
|
1685
1685
|
properties: {
|
|
1686
|
-
device_provider_name: {
|
|
1686
|
+
device_provider_name: {
|
|
1687
|
+
enum: [
|
|
1688
|
+
'akuvox',
|
|
1689
|
+
'august',
|
|
1690
|
+
'avigilon_alta',
|
|
1691
|
+
'brivo',
|
|
1692
|
+
'butterflymx',
|
|
1693
|
+
'schlage',
|
|
1694
|
+
'smartthings',
|
|
1695
|
+
'yale',
|
|
1696
|
+
'genie',
|
|
1697
|
+
'doorking',
|
|
1698
|
+
'salto',
|
|
1699
|
+
'lockly',
|
|
1700
|
+
'ttlock',
|
|
1701
|
+
'linear',
|
|
1702
|
+
'noiseaware',
|
|
1703
|
+
'nuki',
|
|
1704
|
+
'seam_relay_admin',
|
|
1705
|
+
'igloo',
|
|
1706
|
+
'kwikset',
|
|
1707
|
+
'minut',
|
|
1708
|
+
'my_2n',
|
|
1709
|
+
'controlbyweb',
|
|
1710
|
+
'nest',
|
|
1711
|
+
'igloohome',
|
|
1712
|
+
'ecobee',
|
|
1713
|
+
'hubitat',
|
|
1714
|
+
'four_suites',
|
|
1715
|
+
'dormakaba_oracode',
|
|
1716
|
+
'pti',
|
|
1717
|
+
'wyze',
|
|
1718
|
+
'seam_passport',
|
|
1719
|
+
'visionline',
|
|
1720
|
+
'assa_abloy_credential_service',
|
|
1721
|
+
'seam_bridge',
|
|
1722
|
+
'tedee',
|
|
1723
|
+
'honeywell',
|
|
1724
|
+
],
|
|
1725
|
+
type: 'string',
|
|
1726
|
+
},
|
|
1687
1727
|
display_name: { type: 'string' },
|
|
1688
1728
|
image_url: { type: 'string' },
|
|
1689
1729
|
provider_categories: {
|
|
@@ -1693,6 +1733,7 @@ export default {
|
|
|
1693
1733
|
'consumer_smartlocks',
|
|
1694
1734
|
'thermostats',
|
|
1695
1735
|
'noise_sensors',
|
|
1736
|
+
'access_control_systems',
|
|
1696
1737
|
],
|
|
1697
1738
|
type: 'string',
|
|
1698
1739
|
},
|
|
@@ -6981,6 +7022,7 @@ export default {
|
|
|
6981
7022
|
'consumer_smartlocks',
|
|
6982
7023
|
'thermostats',
|
|
6983
7024
|
'noise_sensors',
|
|
7025
|
+
'access_control_systems',
|
|
6984
7026
|
'internal_beta',
|
|
6985
7027
|
],
|
|
6986
7028
|
type: 'string',
|
|
@@ -7752,6 +7794,7 @@ export default {
|
|
|
7752
7794
|
'consumer_smartlocks',
|
|
7753
7795
|
'thermostats',
|
|
7754
7796
|
'noise_sensors',
|
|
7797
|
+
'access_control_systems',
|
|
7755
7798
|
],
|
|
7756
7799
|
type: 'string',
|
|
7757
7800
|
},
|