/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ export type CatalogGetHistory2Params = { /** * Messages ONLY starting from the specified message ID */ 'offset.id'?: string; /** * Messages ONLY been sent before the specified epochtime(milli). */ 'offset.date'?: string; /** * Number of messages to return. */ limit?: number; /** * Search term: message.text */ q?: string; /** * Fields to return into result. */ fields?: string[]; /** * Unique chat dialog */ chatId?: string; /** * Contact display **name**. */ 'peer.name'?: string; /** * Includes the history of ONLY those dialogs * whose member channel(s) contain * a specified set of variables. */ groupStringString?: string; };