@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.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: {
|