/** * 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"; /** * Upload a P12/PFX certificate for FURS fiscalization. The certificate will be processed to extract expiry date and stored securely. The passphrase will be encrypted before storage. Certificate is entity-specific and required for fiscalizing invoices. * @summary Upload FURS certificate */ export declare const UploadFursCertificateHeader: zod.ZodObject<{ "x-entity-id": zod.ZodOptional; }, zod.z.core.$strip>; export declare const UploadFursCertificateBody: zod.ZodObject<{ file: zod.ZodOptional>; passphrase: zod.ZodOptional; }, zod.z.core.$strip>; export declare const UploadFursCertificateResponse: zod.ZodObject<{ certificate_expiry: zod.z.ZodISODateTime; message: zod.ZodString; }, zod.z.core.$strip>; /** * Retrieve certificate metadata including expiry date and upload time. Does not return the certificate or private key. * @summary Get certificate metadata */ export declare const GetFursCertificateHeader: zod.ZodObject<{ "x-entity-id": zod.ZodOptional; }, zod.z.core.$strip>; export declare const GetFursCertificateResponse: zod.ZodObject<{ certificate_expiry: zod.ZodString; certificate_cn: zod.ZodNullable; certificate_issuer: zod.ZodNullable; uploaded_at: zod.ZodString; message: zod.ZodString; }, zod.z.core.$strip>; /** * Delete the FURS certificate for the entity. This will remove both the uploaded file reference and the extracted certificate from the database. * @summary Delete FURS certificate */ export declare const DeleteFursCertificateHeader: zod.ZodObject<{ "x-entity-id": zod.ZodOptional; }, zod.z.core.$strip>; //# sourceMappingURL=furs-certificate.d.ts.map