@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
|
@@ -30490,6 +30490,8 @@ export type Routes = {
|
|
|
30490
30490
|
wait_for_device_creation?: boolean;
|
|
30491
30491
|
/** 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. */
|
|
30492
30492
|
accepted_capabilities?: ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[] | undefined;
|
|
30493
|
+
/** List of provider keys to exclude from the Connect Webview. These providers will not be shown when the user tries to connect an account. */
|
|
30494
|
+
excluded_providers?: string[] | undefined;
|
|
30493
30495
|
};
|
|
30494
30496
|
commonParams: {};
|
|
30495
30497
|
formData: {};
|
package/package.json
CHANGED
|
@@ -37653,6 +37653,12 @@ export default {
|
|
|
37653
37653
|
type: 'string',
|
|
37654
37654
|
'x-undocumented': 'Not supported.',
|
|
37655
37655
|
},
|
|
37656
|
+
excluded_providers: {
|
|
37657
|
+
description:
|
|
37658
|
+
'List of provider keys to exclude from the Connect Webview. These providers will not be shown when the user tries to connect an account.',
|
|
37659
|
+
items: { type: 'string' },
|
|
37660
|
+
type: 'array',
|
|
37661
|
+
},
|
|
37656
37662
|
provider_category: {
|
|
37657
37663
|
description:
|
|
37658
37664
|
'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.',
|
|
@@ -35475,6 +35475,8 @@ export type Routes = {
|
|
|
35475
35475
|
accepted_capabilities?:
|
|
35476
35476
|
| ('lock' | 'thermostat' | 'noise_sensor' | 'access_control')[]
|
|
35477
35477
|
| undefined
|
|
35478
|
+
/** List of provider keys to exclude from the Connect Webview. These providers will not be shown when the user tries to connect an account. */
|
|
35479
|
+
excluded_providers?: string[] | undefined
|
|
35478
35480
|
}
|
|
35479
35481
|
commonParams: {}
|
|
35480
35482
|
formData: {}
|