// GENERATED CODE! DO NOT MODIFY BY HAND! // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. /** * Parameters for searching visible message occurrences within one paginated thread. */ export type ThreadSearchOccurrencesParams = { threadId: string, /** * Case-insensitive literal substring to find in visible user messages and final assistant * messages. */ searchTerm: string, /** * Opaque cursor returned by a previous call for the same thread and search term. */ cursor?: string | null, /** * Optional occurrence page size. */ limit?: number | null, };