@seamapi/types 1.574.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: {};
@@ -76444,7 +76446,9 @@ export type Routes = {
76444
76446
  jsonBody: {};
76445
76447
  commonParams: {
76446
76448
  /** ID of the user identity to which you want to add an access system user. */
76447
- user_identity_id: string;
76449
+ user_identity_id?: string | undefined;
76450
+ /** Key of the user identity to which you want to add an access system user. */
76451
+ user_identity_key?: string | undefined;
76448
76452
  /** ID of the access system user that you want to add to the user identity. */
76449
76453
  acs_user_id: string;
76450
76454
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.574.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.',
@@ -56509,8 +56515,13 @@ export default {
56509
56515
  format: 'uuid',
56510
56516
  type: 'string',
56511
56517
  },
56518
+ user_identity_key: {
56519
+ description:
56520
+ 'Key of the user identity to which you want to add an access system user.',
56521
+ type: 'string',
56522
+ },
56512
56523
  },
56513
- required: ['user_identity_id', 'acs_user_id'],
56524
+ required: ['acs_user_id'],
56514
56525
  type: 'object',
56515
56526
  },
56516
56527
  },
@@ -56565,8 +56576,13 @@ export default {
56565
56576
  format: 'uuid',
56566
56577
  type: 'string',
56567
56578
  },
56579
+ user_identity_key: {
56580
+ description:
56581
+ 'Key of the user identity to which you want to add an access system user.',
56582
+ type: 'string',
56583
+ },
56568
56584
  },
56569
- required: ['user_identity_id', 'acs_user_id'],
56585
+ required: ['acs_user_id'],
56570
56586
  type: 'object',
56571
56587
  },
56572
56588
  },
@@ -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: {}
@@ -90854,7 +90856,9 @@ export type Routes = {
90854
90856
  jsonBody: {}
90855
90857
  commonParams: {
90856
90858
  /** ID of the user identity to which you want to add an access system user. */
90857
- user_identity_id: string
90859
+ user_identity_id?: string | undefined
90860
+ /** Key of the user identity to which you want to add an access system user. */
90861
+ user_identity_key?: string | undefined
90858
90862
  /** ID of the access system user that you want to add to the user identity. */
90859
90863
  acs_user_id: string
90860
90864
  }