@seamapi/types 1.575.0 → 1.577.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 +7 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -0
- package/dist/index.cjs +7 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +7 -0
- package/lib/seam/connect/openapi.js +7 -2
- 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 +8 -2
- 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.',
|
|
@@ -56490,7 +56496,7 @@ export default {
|
|
|
56490
56496
|
'/user_identities/add_acs_user': {
|
|
56491
56497
|
post: {
|
|
56492
56498
|
description:
|
|
56493
|
-
|
|
56499
|
+
"Adds a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).\n\nYou must specify either `user_identity_id` or `user_identity_key` to identify the user identity.\n\nIf `user_identity_key` is provided, but the user identity doesn't exist, a new user identity will be created automatically using information from the ACS user.",
|
|
56494
56500
|
operationId: 'userIdentitiesAddAcsUserPost',
|
|
56495
56501
|
requestBody: {
|
|
56496
56502
|
content: {
|
|
@@ -56551,7 +56557,7 @@ export default {
|
|
|
56551
56557
|
},
|
|
56552
56558
|
put: {
|
|
56553
56559
|
description:
|
|
56554
|
-
|
|
56560
|
+
"Adds a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).\n\nYou must specify either `user_identity_id` or `user_identity_key` to identify the user identity.\n\nIf `user_identity_key` is provided, but the user identity doesn't exist, a new user identity will be created automatically using information from the ACS user.",
|
|
56555
56561
|
operationId: 'userIdentitiesAddAcsUserPut',
|
|
56556
56562
|
requestBody: {
|
|
56557
56563
|
content: {
|
|
@@ -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: {}
|