/** * @example * { * pageSize: 1, * page: 1, * search: "search" * } */ export interface AudioIsolationListRequest { /** How many history items to return at maximum. Defaults to 100. */ pageSize?: number; /** Page number for search pagination (1-based). Only used when search is provided. */ page?: number; /** Optional search term used for filtering audio isolation history (title/text). */ search?: string; }