/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { LocateContactMode } from './locateContactMode.zod'; export type LocateContactParams = { /** * Source Fields to return into result. */ fields?: string[]; /** * The requirement of a special access mode to the Source. * * - READ: Can `fetch` record. [GET] * - WRITE: Can `update` record. [PUT|PATCH] * - DELETE: Can `delete` record. [DELETE] */ mode?: LocateContactMode; };