/** * 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"; /** * Retrieve all API keys for the current entity. Keys are masked for security. * @summary List entity API keys */ export declare const ListEntityApiKeysHeader: zod.ZodObject<{ "x-entity-id": zod.ZodOptional; }, zod.z.core.$strip>; export declare const ListEntityApiKeysResponse: zod.ZodObject<{ data: zod.ZodArray; environment: zod.ZodEnum<{ live: "live"; sandbox: "sandbox"; }>; created_at: zod.z.ZodISODateTime; expires_at: zod.ZodNullable; }, zod.z.core.$strip>, zod.ZodObject<{ prefix_hint: zod.ZodString; }, zod.z.core.$strip>>>; }, zod.z.core.$strip>; /** * Create a new entity-scoped API key (ek_* prefix). This key can only access this specific entity. * @summary Create entity API key */ export declare const CreateEntityApiKeyHeader: zod.ZodObject<{ "x-entity-id": zod.ZodOptional; }, zod.z.core.$strip>; export declare const createEntityApiKeyBodyNameMax = 255; export declare const createEntityApiKeyBodyTtlMin = 60; export declare const CreateEntityApiKeyBody: zod.ZodObject<{ name: zod.ZodOptional; ttl: zod.ZodOptional; }, zod.z.core.$strip>; /** * Permanently delete an entity API key. This action cannot be undone. * @summary Delete entity API key */ export declare const deleteEntityApiKeyPathIdRegExp: RegExp; export declare const DeleteEntityApiKeyParams: zod.ZodObject<{ id: zod.ZodString; }, zod.z.core.$strip>; export declare const DeleteEntityApiKeyHeader: zod.ZodObject<{ "x-entity-id": zod.ZodOptional; }, zod.z.core.$strip>; export declare const DeleteEntityApiKeyResponse: zod.ZodObject<{ message: zod.ZodString; }, zod.z.core.$strip>; //# sourceMappingURL=entity-api-keys.d.ts.map