@seamapi/types 1.125.0 → 1.126.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 +5 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3 -3
- package/lib/seam/connect/openapi.js +3 -0
- 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 +3 -0
- package/src/lib/seam/connect/route-types.ts +13 -2
package/dist/connect.d.cts
CHANGED
|
@@ -18593,7 +18593,7 @@ interface Routes {
|
|
|
18593
18593
|
custom_redirect_url?: string | undefined;
|
|
18594
18594
|
custom_redirect_failure_url?: string | undefined;
|
|
18595
18595
|
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;
|
|
18596
|
+
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
18597
18597
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
18598
18598
|
automatically_manage_new_devices?: boolean | undefined;
|
|
18599
18599
|
wait_for_device_creation?: boolean | undefined;
|
|
@@ -19806,7 +19806,7 @@ interface Routes {
|
|
|
19806
19806
|
queryParams: {};
|
|
19807
19807
|
jsonBody: {};
|
|
19808
19808
|
commonParams: {
|
|
19809
|
-
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors') | undefined;
|
|
19809
|
+
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems') | undefined;
|
|
19810
19810
|
};
|
|
19811
19811
|
formData: {};
|
|
19812
19812
|
jsonResponse: {
|
|
@@ -19814,7 +19814,7 @@ interface Routes {
|
|
|
19814
19814
|
device_provider_name: string;
|
|
19815
19815
|
display_name: string;
|
|
19816
19816
|
image_url: string;
|
|
19817
|
-
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors'>;
|
|
19817
|
+
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
19818
19818
|
}>;
|
|
19819
19819
|
};
|
|
19820
19820
|
};
|
|
@@ -1693,6 +1693,7 @@ export default {
|
|
|
1693
1693
|
'consumer_smartlocks',
|
|
1694
1694
|
'thermostats',
|
|
1695
1695
|
'noise_sensors',
|
|
1696
|
+
'access_control_systems',
|
|
1696
1697
|
],
|
|
1697
1698
|
type: 'string',
|
|
1698
1699
|
},
|
|
@@ -6981,6 +6982,7 @@ export default {
|
|
|
6981
6982
|
'consumer_smartlocks',
|
|
6982
6983
|
'thermostats',
|
|
6983
6984
|
'noise_sensors',
|
|
6985
|
+
'access_control_systems',
|
|
6984
6986
|
'internal_beta',
|
|
6985
6987
|
],
|
|
6986
6988
|
type: 'string',
|
|
@@ -7752,6 +7754,7 @@ export default {
|
|
|
7752
7754
|
'consumer_smartlocks',
|
|
7753
7755
|
'thermostats',
|
|
7754
7756
|
'noise_sensors',
|
|
7757
|
+
'access_control_systems',
|
|
7755
7758
|
],
|
|
7756
7759
|
type: 'string',
|
|
7757
7760
|
},
|