From 2d328a7a498151ab7ddccb6fc28ff9587069f97d Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Wed, 19 Aug 2026 01:14:15 +0000 Subject: [PATCH] feat: Update to @seamapi/types@1.1022.0 --- package-lock.json | 8 ++++---- package.json | 2 +- src/lib/routes/acs/users/users.ts | 8 ++++---- src/lib/routes/client-sessions/client-sessions.ts | 8 ++++---- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/package-lock.json b/package-lock.json index a03835da..5ef7eefd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "@seamapi/blueprint": "^1.7.0", "@seamapi/fake-seam-connect": "^2.0.4", "@seamapi/smith": "^1.1.0", - "@seamapi/types": "1.1019.0", + "@seamapi/types": "1.1022.0", "@types/jsonwebtoken": "^9.0.6", "@types/node": "^24.10.9", "ava": "^8.0.1", @@ -1091,9 +1091,9 @@ } }, "node_modules/@seamapi/types": { - "version": "1.1019.0", - "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.1019.0.tgz", - "integrity": "sha512-81DIC0NY6ofXnwq8wQsDz4Q3WcIrDSEbHNzhTKruEtrX+Mq0zHyrM4FqhW+VGooxOHGe6yU4Lx2lRfLREq6gTw==", + "version": "1.1022.0", + "resolved": "https://registry.npmjs.org/@seamapi/types/-/types-1.1022.0.tgz", + "integrity": "sha512-qMbiL92K1ZIf/IzEQrI9txfn0PfBGo8oD+KAoCeyZ+m/TpxrcXheOmj4AmfG/q933/LqcXO35GbB2MWRJ5Odjw==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index c7b5a39c..a6f9ae08 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "@seamapi/blueprint": "^1.7.0", "@seamapi/fake-seam-connect": "^2.0.4", "@seamapi/smith": "^1.1.0", - "@seamapi/types": "1.1019.0", + "@seamapi/types": "1.1022.0", "@types/jsonwebtoken": "^9.0.6", "@types/node": "^24.10.9", "ava": "^8.0.1", diff --git a/src/lib/routes/acs/users/users.ts b/src/lib/routes/acs/users/users.ts index 6218f4c9..69d2913f 100644 --- a/src/lib/routes/acs/users/users.ts +++ b/src/lib/routes/acs/users/users.ts @@ -524,17 +524,17 @@ export type AcsUsersListParameters = { */ search?: string | undefined /** - * Email address of the user identity for which you want to retrieve all access system users. + * Email address of the user identity for which you want to retrieve all access system users. Specify `null` to retrieve access system users whose user identity has no email address. */ - user_identity_email_address?: string | undefined + user_identity_email_address?: string | null | undefined /** * ID of the user identity for which you want to retrieve all access system users. */ user_identity_id?: string | undefined /** - * Phone number of the user identity for which you want to retrieve all access system users, in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, `+15555550100`). + * Phone number of the user identity for which you want to retrieve all access system users, in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, `+15555550100`). Specify `null` to retrieve access system users whose user identity has no phone number. */ - user_identity_phone_number?: string | undefined + user_identity_phone_number?: string | null | undefined } /** diff --git a/src/lib/routes/client-sessions/client-sessions.ts b/src/lib/routes/client-sessions/client-sessions.ts index 055e3df0..dc6ad406 100644 --- a/src/lib/routes/client-sessions/client-sessions.ts +++ b/src/lib/routes/client-sessions/client-sessions.ts @@ -466,17 +466,17 @@ export type ClientSessionsListParameters = { */ client_session_id?: string | undefined /** - * ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions. + * ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions. Specify `null` to retrieve client sessions that are not associated with a Connect Webview. */ - connect_webview_id?: string | undefined + connect_webview_id?: string | null | undefined /** * Your user ID for the user by which you want to filter client sessions. */ user_identifier_key?: string | undefined /** - * ID of the [user identity](https://docs.seam.co/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to retrieve client sessions. + * ID of the [user identity](https://docs.seam.co/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to retrieve client sessions. Specify `null` to retrieve client sessions that are not associated with a user identity. */ - user_identity_id?: string | undefined + user_identity_id?: string | null | undefined /** * Indicates whether to retrieve only client sessions without associated user identifier keys. */