@seamapi/types 1.118.0 → 1.119.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 +22 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3 -3
- package/lib/seam/connect/openapi.js +22 -3
- 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 +22 -3
- package/src/lib/seam/connect/route-types.ts +13 -3
package/dist/connect.d.cts
CHANGED
|
@@ -18726,7 +18726,7 @@ interface Routes {
|
|
|
18726
18726
|
custom_redirect_url?: string | undefined;
|
|
18727
18727
|
custom_redirect_failure_url?: string | undefined;
|
|
18728
18728
|
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;
|
|
18729
|
-
provider_category?: ('stable' | 'consumer_smartlocks' | 'internal_beta') | undefined;
|
|
18729
|
+
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'internal_beta') | undefined;
|
|
18730
18730
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
18731
18731
|
automatically_manage_new_devices?: boolean | undefined;
|
|
18732
18732
|
wait_for_device_creation?: boolean | undefined;
|
|
@@ -19939,7 +19939,7 @@ interface Routes {
|
|
|
19939
19939
|
queryParams: {};
|
|
19940
19940
|
jsonBody: {};
|
|
19941
19941
|
commonParams: {
|
|
19942
|
-
provider_category?: ('stable' | 'consumer_smartlocks') | undefined;
|
|
19942
|
+
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors') | undefined;
|
|
19943
19943
|
};
|
|
19944
19944
|
formData: {};
|
|
19945
19945
|
jsonResponse: {
|
|
@@ -19947,7 +19947,7 @@ interface Routes {
|
|
|
19947
19947
|
device_provider_name: string;
|
|
19948
19948
|
display_name: string;
|
|
19949
19949
|
image_url: string;
|
|
19950
|
-
provider_categories: Array<'stable' | 'consumer_smartlocks'>;
|
|
19950
|
+
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors'>;
|
|
19951
19951
|
}>;
|
|
19952
19952
|
};
|
|
19953
19953
|
};
|
|
@@ -1683,7 +1683,15 @@ export default {
|
|
|
1683
1683
|
display_name: { type: 'string' },
|
|
1684
1684
|
image_url: { type: 'string' },
|
|
1685
1685
|
provider_categories: {
|
|
1686
|
-
items: {
|
|
1686
|
+
items: {
|
|
1687
|
+
enum: [
|
|
1688
|
+
'stable',
|
|
1689
|
+
'consumer_smartlocks',
|
|
1690
|
+
'thermostats',
|
|
1691
|
+
'noise_sensors',
|
|
1692
|
+
],
|
|
1693
|
+
type: 'string',
|
|
1694
|
+
},
|
|
1687
1695
|
type: 'array',
|
|
1688
1696
|
},
|
|
1689
1697
|
},
|
|
@@ -6954,7 +6962,13 @@ export default {
|
|
|
6954
6962
|
type: 'string',
|
|
6955
6963
|
},
|
|
6956
6964
|
provider_category: {
|
|
6957
|
-
enum: [
|
|
6965
|
+
enum: [
|
|
6966
|
+
'stable',
|
|
6967
|
+
'consumer_smartlocks',
|
|
6968
|
+
'thermostats',
|
|
6969
|
+
'noise_sensors',
|
|
6970
|
+
'internal_beta',
|
|
6971
|
+
],
|
|
6958
6972
|
type: 'string',
|
|
6959
6973
|
},
|
|
6960
6974
|
wait_for_device_creation: { type: 'boolean' },
|
|
@@ -7719,7 +7733,12 @@ export default {
|
|
|
7719
7733
|
schema: {
|
|
7720
7734
|
properties: {
|
|
7721
7735
|
provider_category: {
|
|
7722
|
-
enum: [
|
|
7736
|
+
enum: [
|
|
7737
|
+
'stable',
|
|
7738
|
+
'consumer_smartlocks',
|
|
7739
|
+
'thermostats',
|
|
7740
|
+
'noise_sensors',
|
|
7741
|
+
],
|
|
7723
7742
|
type: 'string',
|
|
7724
7743
|
},
|
|
7725
7744
|
},
|