/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import * as zod from 'zod'; /** * @summary Lists the history of PDF exports for a specific agent. */ export declare const ListScreenrecordingExportsParams: zod.ZodObject<{ agent_id: zod.ZodString; }, zod.z.core.$strip>; export declare const ListScreenrecordingExportsQueryParams: zod.ZodObject<{ page: zod.ZodOptional; size: zod.ZodOptional; sort: zod.ZodOptional; }, zod.z.core.$strip>; export declare const listScreenrecordingExportsResponseItemsItemStatusDefault = "EXPORT_STATUS_UNSPECIFIED"; export declare const ListScreenrecordingExportsResponse: zod.ZodObject<{ items: zod.ZodOptional; createdBy: zod.ZodOptional; fileId: zod.ZodOptional; id: zod.ZodOptional; mimeType: zod.ZodOptional; name: zod.ZodOptional; status: zod.ZodDefault>; updatedAt: zod.ZodOptional; updatedBy: zod.ZodOptional; }, zod.z.core.$strip>>>; next: zod.ZodOptional; page: zod.ZodOptional; }, zod.z.core.$strip>; /** * @summary Creates a new task to generate a PDF export for an agent's screen recordings. This operation is asynchronous and returns a task metadata. */ export declare const CreateScreenrecordingExportParams: zod.ZodObject<{ agent_id: zod.ZodString; }, zod.z.core.$strip>; export declare const CreateScreenrecordingExportBody: zod.ZodObject<{ fileIds: zod.ZodOptional>; from: zod.ZodOptional; to: zod.ZodOptional; }, zod.z.core.$strip>; export declare const createScreenrecordingExportResponseStatusDefault = "EXPORT_STATUS_UNSPECIFIED"; export declare const CreateScreenrecordingExportResponse: zod.ZodObject<{ fileName: zod.ZodOptional; mimeType: zod.ZodOptional; size: zod.ZodOptional; status: zod.ZodDefault>; taskId: zod.ZodOptional; }, zod.z.core.$strip>; /** * @summary Lists the history of PDF exports for a specific call ID. */ export declare const ListCallExportsParams: zod.ZodObject<{ call_id: zod.ZodString; }, zod.z.core.$strip>; export declare const ListCallExportsQueryParams: zod.ZodObject<{ page: zod.ZodOptional; size: zod.ZodOptional; sort: zod.ZodOptional; }, zod.z.core.$strip>; export declare const listCallExportsResponseItemsItemStatusDefault = "EXPORT_STATUS_UNSPECIFIED"; export declare const ListCallExportsResponse: zod.ZodObject<{ items: zod.ZodOptional; createdBy: zod.ZodOptional; fileId: zod.ZodOptional; id: zod.ZodOptional; mimeType: zod.ZodOptional; name: zod.ZodOptional; status: zod.ZodDefault>; updatedAt: zod.ZodOptional; updatedBy: zod.ZodOptional; }, zod.z.core.$strip>>>; next: zod.ZodOptional; page: zod.ZodOptional; }, zod.z.core.$strip>; /** * @summary Creates a new task to generate a PDF export for a specific call. Useful for documenting call transcripts or associated media. */ export declare const CreateCallExportParams: zod.ZodObject<{ call_id: zod.ZodString; }, zod.z.core.$strip>; export declare const CreateCallExportBody: zod.ZodObject<{ fileIds: zod.ZodOptional>; from: zod.ZodOptional; to: zod.ZodOptional; }, zod.z.core.$strip>; export declare const createCallExportResponseStatusDefault = "EXPORT_STATUS_UNSPECIFIED"; export declare const CreateCallExportResponse: zod.ZodObject<{ fileName: zod.ZodOptional; mimeType: zod.ZodOptional; size: zod.ZodOptional; status: zod.ZodDefault>; taskId: zod.ZodOptional; }, zod.z.core.$strip>; /** * @summary Deletes a specific export record from the history. */ export declare const DeleteExportParams: zod.ZodObject<{ id: zod.ZodString; }, zod.z.core.$strip>; export declare const DeleteExportResponse: zod.ZodObject<{ id: zod.ZodOptional; }, zod.z.core.$strip>;