@seamapi/types 1.117.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 +23 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +7 -3
- package/lib/seam/connect/openapi.d.ts +3 -0
- package/lib/seam/connect/openapi.js +23 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +23 -3
- package/src/lib/seam/connect/route-types.ts +14 -3
|
@@ -1643,6 +1643,7 @@ export interface Routes {
|
|
|
1643
1643
|
user_identifier_key?: string | undefined;
|
|
1644
1644
|
connect_webview_id?: string | undefined;
|
|
1645
1645
|
without_user_identifier_key?: boolean | undefined;
|
|
1646
|
+
user_identity_id?: string | undefined;
|
|
1646
1647
|
};
|
|
1647
1648
|
formData: {};
|
|
1648
1649
|
jsonResponse: {
|
|
@@ -1678,7 +1679,7 @@ export interface Routes {
|
|
|
1678
1679
|
custom_redirect_url?: string | undefined;
|
|
1679
1680
|
custom_redirect_failure_url?: string | undefined;
|
|
1680
1681
|
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;
|
|
1681
|
-
provider_category?: ('stable' | 'consumer_smartlocks' | 'internal_beta') | undefined;
|
|
1682
|
+
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'internal_beta') | undefined;
|
|
1682
1683
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
1683
1684
|
automatically_manage_new_devices?: boolean | undefined;
|
|
1684
1685
|
wait_for_device_creation?: boolean | undefined;
|
|
@@ -2891,7 +2892,7 @@ export interface Routes {
|
|
|
2891
2892
|
queryParams: {};
|
|
2892
2893
|
jsonBody: {};
|
|
2893
2894
|
commonParams: {
|
|
2894
|
-
provider_category?: ('stable' | 'consumer_smartlocks') | undefined;
|
|
2895
|
+
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors') | undefined;
|
|
2895
2896
|
};
|
|
2896
2897
|
formData: {};
|
|
2897
2898
|
jsonResponse: {
|
|
@@ -2899,7 +2900,7 @@ export interface Routes {
|
|
|
2899
2900
|
device_provider_name: string;
|
|
2900
2901
|
display_name: string;
|
|
2901
2902
|
image_url: string;
|
|
2902
|
-
provider_categories: Array<'stable' | 'consumer_smartlocks'>;
|
|
2903
|
+
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors'>;
|
|
2903
2904
|
}>;
|
|
2904
2905
|
};
|
|
2905
2906
|
};
|
package/package.json
CHANGED
|
@@ -1724,7 +1724,15 @@ export default {
|
|
|
1724
1724
|
display_name: { type: 'string' },
|
|
1725
1725
|
image_url: { type: 'string' },
|
|
1726
1726
|
provider_categories: {
|
|
1727
|
-
items: {
|
|
1727
|
+
items: {
|
|
1728
|
+
enum: [
|
|
1729
|
+
'stable',
|
|
1730
|
+
'consumer_smartlocks',
|
|
1731
|
+
'thermostats',
|
|
1732
|
+
'noise_sensors',
|
|
1733
|
+
],
|
|
1734
|
+
type: 'string',
|
|
1735
|
+
},
|
|
1728
1736
|
type: 'array',
|
|
1729
1737
|
},
|
|
1730
1738
|
},
|
|
@@ -6864,6 +6872,7 @@ export default {
|
|
|
6864
6872
|
client_session_id: { type: 'string' },
|
|
6865
6873
|
connect_webview_id: { type: 'string' },
|
|
6866
6874
|
user_identifier_key: { type: 'string' },
|
|
6875
|
+
user_identity_id: { type: 'string' },
|
|
6867
6876
|
without_user_identifier_key: { type: 'boolean' },
|
|
6868
6877
|
},
|
|
6869
6878
|
type: 'object',
|
|
@@ -7022,7 +7031,13 @@ export default {
|
|
|
7022
7031
|
type: 'string',
|
|
7023
7032
|
},
|
|
7024
7033
|
provider_category: {
|
|
7025
|
-
enum: [
|
|
7034
|
+
enum: [
|
|
7035
|
+
'stable',
|
|
7036
|
+
'consumer_smartlocks',
|
|
7037
|
+
'thermostats',
|
|
7038
|
+
'noise_sensors',
|
|
7039
|
+
'internal_beta',
|
|
7040
|
+
],
|
|
7026
7041
|
type: 'string',
|
|
7027
7042
|
},
|
|
7028
7043
|
wait_for_device_creation: { type: 'boolean' },
|
|
@@ -7790,7 +7805,12 @@ export default {
|
|
|
7790
7805
|
schema: {
|
|
7791
7806
|
properties: {
|
|
7792
7807
|
provider_category: {
|
|
7793
|
-
enum: [
|
|
7808
|
+
enum: [
|
|
7809
|
+
'stable',
|
|
7810
|
+
'consumer_smartlocks',
|
|
7811
|
+
'thermostats',
|
|
7812
|
+
'noise_sensors',
|
|
7813
|
+
],
|
|
7794
7814
|
type: 'string',
|
|
7795
7815
|
},
|
|
7796
7816
|
},
|
|
@@ -1838,6 +1838,7 @@ export interface Routes {
|
|
|
1838
1838
|
user_identifier_key?: string | undefined
|
|
1839
1839
|
connect_webview_id?: string | undefined
|
|
1840
1840
|
without_user_identifier_key?: boolean | undefined
|
|
1841
|
+
user_identity_id?: string | undefined
|
|
1841
1842
|
}
|
|
1842
1843
|
formData: {}
|
|
1843
1844
|
jsonResponse: {
|
|
@@ -1916,7 +1917,13 @@ export interface Routes {
|
|
|
1916
1917
|
>
|
|
1917
1918
|
| undefined
|
|
1918
1919
|
provider_category?:
|
|
1919
|
-
| (
|
|
1920
|
+
| (
|
|
1921
|
+
| 'stable'
|
|
1922
|
+
| 'consumer_smartlocks'
|
|
1923
|
+
| 'thermostats'
|
|
1924
|
+
| 'noise_sensors'
|
|
1925
|
+
| 'internal_beta'
|
|
1926
|
+
)
|
|
1920
1927
|
| undefined
|
|
1921
1928
|
custom_metadata?: Record<string, string | boolean | null> | undefined
|
|
1922
1929
|
automatically_manage_new_devices?: boolean | undefined
|
|
@@ -3665,7 +3672,9 @@ export interface Routes {
|
|
|
3665
3672
|
queryParams: {}
|
|
3666
3673
|
jsonBody: {}
|
|
3667
3674
|
commonParams: {
|
|
3668
|
-
provider_category?:
|
|
3675
|
+
provider_category?:
|
|
3676
|
+
| ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors')
|
|
3677
|
+
| undefined
|
|
3669
3678
|
}
|
|
3670
3679
|
formData: {}
|
|
3671
3680
|
jsonResponse: {
|
|
@@ -3673,7 +3682,9 @@ export interface Routes {
|
|
|
3673
3682
|
device_provider_name: string
|
|
3674
3683
|
display_name: string
|
|
3675
3684
|
image_url: string
|
|
3676
|
-
provider_categories: Array<
|
|
3685
|
+
provider_categories: Array<
|
|
3686
|
+
'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors'
|
|
3687
|
+
>
|
|
3677
3688
|
}>
|
|
3678
3689
|
}
|
|
3679
3690
|
}
|