@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
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: [
|
|
@@ -57934,7 +57939,7 @@ var openapi_default = {
|
|
|
57934
57939
|
},
|
|
57935
57940
|
"/user_identities/add_acs_user": {
|
|
57936
57941
|
post: {
|
|
57937
|
-
description: "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).",
|
|
57942
|
+
description: "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.",
|
|
57938
57943
|
operationId: "userIdentitiesAddAcsUserPost",
|
|
57939
57944
|
requestBody: {
|
|
57940
57945
|
content: {
|
|
@@ -57991,7 +57996,7 @@ var openapi_default = {
|
|
|
57991
57996
|
"x-title": "Add an ACS User to a User Identity"
|
|
57992
57997
|
},
|
|
57993
57998
|
put: {
|
|
57994
|
-
description: "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).",
|
|
57999
|
+
description: "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.",
|
|
57995
58000
|
operationId: "userIdentitiesAddAcsUserPut",
|
|
57996
58001
|
requestBody: {
|
|
57997
58002
|
content: {
|