/** * Generated by orval v8.5.3 🍺 * Do not edit manually. * Space Invoices API * REST API for invoice management, customer management, and accounting operations. Features include cursor-based pagination for efficient data navigation, flexible JSON querying with MongoDB-style operators, full-text search across multiple fields, and comprehensive metadata support for custom tracking. * OpenAPI spec version: 1.0.0 */ import * as zod from "zod"; /** * Send an email with automatic company logo and optional document attachment. When a document_id is provided, a public shareable link is automatically generated and can be included in the email body using the {invoice_link} variable. If the variable is not used, the link is appended to the body. The PDF attachment is opt-in via attach_pdf flag (default: false). Email body supports markdown formatting and template variables like {document_number}, {customer_name}, {entity_name}, {invoice_link}, etc. * @summary Send email with optional PDF attachment */ export declare const SendEmailHeader: zod.ZodObject<{ "x-entity-id": zod.ZodOptional; }, zod.z.core.$strip>; export declare const sendEmailBodySubjectMax = 255; export declare const sendEmailBodyAttachPdfDefault = false; export declare const sendEmailBodyAttachEslogDefault = false; export declare const sendEmailBodySandboxSkipDeliveryDefault = false; export declare const SendEmailBody: zod.ZodObject<{ to: zod.ZodEmail; subject: zod.ZodOptional; body_text: zod.ZodOptional; document_id: zod.ZodOptional>; attach_pdf: zod.ZodDefault; attach_eslog: zod.ZodDefault; sandbox_skip_delivery: zod.ZodDefault; locale: zod.ZodOptional, zod.ZodLiteral<"de-DE">, zod.ZodLiteral<"it-IT">, zod.ZodLiteral<"fr-FR">, zod.ZodLiteral<"es-ES">, zod.ZodLiteral<"sl-SI">, zod.ZodLiteral<"pt-PT">, zod.ZodLiteral<"nl-NL">, zod.ZodLiteral<"pl-PL">, zod.ZodLiteral<"hr-HR">, zod.ZodLiteral<"sv-SE">, zod.ZodLiteral<"fi-FI">, zod.ZodLiteral<"et-EE">, zod.ZodLiteral<"bg-BG">, zod.ZodLiteral<"cs-CZ">, zod.ZodLiteral<"sk-SK">, zod.ZodLiteral<"nb-NO">, zod.ZodLiteral<"is-IS">, zod.ZodLiteral]>>>; language: zod.ZodOptional, zod.ZodEnum<{ "en-US": "en-US"; "de-DE": "de-DE"; "it-IT": "it-IT"; "fr-FR": "fr-FR"; "es-ES": "es-ES"; "sl-SI": "sl-SI"; "pt-PT": "pt-PT"; "nl-NL": "nl-NL"; "pl-PL": "pl-PL"; "hr-HR": "hr-HR"; "sv-SE": "sv-SE"; "fi-FI": "fi-FI"; "et-EE": "et-EE"; "bg-BG": "bg-BG"; "cs-CZ": "cs-CZ"; "sk-SK": "sk-SK"; "nb-NO": "nb-NO"; "is-IS": "is-IS"; }>, zod.ZodNull]>>; }, zod.z.core.$strip>; export declare const SendEmailResponse: zod.ZodObject<{ message_id: zod.ZodString; status: zod.ZodEnum<{ skipped: "skipped"; sent: "sent"; queued: "queued"; }>; to: zod.ZodEmail; subject: zod.ZodString; shareable_link: zod.ZodOptional; sandbox_skip_delivery: zod.ZodOptional; }, zod.z.core.$strip>; //# sourceMappingURL=email.d.ts.map