@seamapi/types 1.575.0 → 1.576.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 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -0
- package/dist/index.cjs +5 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +7 -0
- package/lib/seam/connect/openapi.js +5 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +6 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
package/dist/connect.d.cts
CHANGED
|
@@ -79599,6 +79599,13 @@ declare const _default: {
|
|
|
79599
79599
|
type: string;
|
|
79600
79600
|
'x-undocumented': string;
|
|
79601
79601
|
};
|
|
79602
|
+
excluded_providers: {
|
|
79603
|
+
description: string;
|
|
79604
|
+
items: {
|
|
79605
|
+
type: string;
|
|
79606
|
+
};
|
|
79607
|
+
type: string;
|
|
79608
|
+
};
|
|
79602
79609
|
provider_category: {
|
|
79603
79610
|
description: string;
|
|
79604
79611
|
enum: string[];
|
|
@@ -134752,6 +134759,8 @@ type Routes = {
|
|
|
134752
134759
|
wait_for_device_creation?: boolean;
|
|
134753
134760
|
/** List of accepted device capabilities that restrict the types of devices that can be connected through the Connect Webview. If not provided, defaults will be determined based on the accepted providers. */
|
|
134754
134761
|
accepted_capabilities?: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[] | undefined;
|
|
134762
|
+
/** List of provider keys to exclude from the Connect Webview. These providers will not be shown when the user tries to connect an account. */
|
|
134763
|
+
excluded_providers?: string[] | undefined;
|
|
134755
134764
|
};
|
|
134756
134765
|
commonParams: {};
|
|
134757
134766
|
formData: {};
|
package/dist/index.cjs
CHANGED
|
@@ -39995,6 +39995,11 @@ var openapi_default = {
|
|
|
39995
39995
|
type: "string",
|
|
39996
39996
|
"x-undocumented": "Not supported."
|
|
39997
39997
|
},
|
|
39998
|
+
excluded_providers: {
|
|
39999
|
+
description: "List of provider keys to exclude from the Connect Webview. These providers will not be shown when the user tries to connect an account.",
|
|
40000
|
+
items: { type: "string" },
|
|
40001
|
+
type: "array"
|
|
40002
|
+
},
|
|
39998
40003
|
provider_category: {
|
|
39999
40004
|
description: "Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with the desired `provider_category` filter.",
|
|
40000
40005
|
enum: [
|