@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
|
@@ -28237,6 +28237,13 @@ declare const _default: {
|
|
|
28237
28237
|
type: string;
|
|
28238
28238
|
'x-undocumented': string;
|
|
28239
28239
|
};
|
|
28240
|
+
excluded_providers: {
|
|
28241
|
+
description: string;
|
|
28242
|
+
items: {
|
|
28243
|
+
type: string;
|
|
28244
|
+
};
|
|
28245
|
+
type: string;
|
|
28246
|
+
};
|
|
28240
28247
|
provider_category: {
|
|
28241
28248
|
description: string;
|
|
28242
28249
|
enum: string[];
|
|
@@ -34304,6 +34304,11 @@ export default {
|
|
|
34304
34304
|
type: 'string',
|
|
34305
34305
|
'x-undocumented': 'Not supported.',
|
|
34306
34306
|
},
|
|
34307
|
+
excluded_providers: {
|
|
34308
|
+
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.',
|
|
34309
|
+
items: { type: 'string' },
|
|
34310
|
+
type: 'array',
|
|
34311
|
+
},
|
|
34307
34312
|
provider_category: {
|
|
34308
34313
|
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.',
|
|
34309
34314
|
enum: [
|
|
@@ -52243,7 +52248,7 @@ export default {
|
|
|
52243
52248
|
},
|
|
52244
52249
|
'/user_identities/add_acs_user': {
|
|
52245
52250
|
post: {
|
|
52246
|
-
description:
|
|
52251
|
+
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.",
|
|
52247
52252
|
operationId: 'userIdentitiesAddAcsUserPost',
|
|
52248
52253
|
requestBody: {
|
|
52249
52254
|
content: {
|
|
@@ -52300,7 +52305,7 @@ export default {
|
|
|
52300
52305
|
'x-title': 'Add an ACS User to a User Identity',
|
|
52301
52306
|
},
|
|
52302
52307
|
put: {
|
|
52303
|
-
description:
|
|
52308
|
+
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.",
|
|
52304
52309
|
operationId: 'userIdentitiesAddAcsUserPut',
|
|
52305
52310
|
requestBody: {
|
|
52306
52311
|
content: {
|