@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.575.0",
3
+ "version": "1.576.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -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: {}