From c453bd51d2c435e51b1f7552d6c1ec03e606c0cc Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Fri, 21 Feb 2025 14:52:50 -0800 Subject: [PATCH] feat: Add search param to /acs/users/list (#1545) --- src/lib/seam/connect/openapi.ts | 5 +++++ src/lib/seam/connect/route-types.ts | 2 ++ 2 files changed, 7 insertions(+) diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index 85824357..3e3cf62f 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -18755,6 +18755,11 @@ export default { nullable: true, type: 'string', }, + search: { + description: + 'String to partial match between full_name, phone_number and email_address.', + type: 'string', + }, user_identity_email_address: { description: 'Email address of the user identity for which you want to retrieve all `acs_user`s.', diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index 5bb8e61c..5796a2ce 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -12496,6 +12496,8 @@ export interface Routes { acs_system_id?: string | undefined /** Maximum number of records to return per page. */ limit?: number + /** String to partial match between full_name, phone_number and email_address. */ + search?: string | undefined created_before?: Date | undefined /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */ page_cursor?: (string | undefined) | null