/** * 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 */ /** * @nullable */ export type PlanLimits = { /** * Maximum documents per month (backward compat). Null means unlimited. * @nullable */ documents_per_month: number | null; /** * Maximum invoices per month. Null means unlimited. * @nullable */ invoices_per_month: number | null; /** * Overage price in cents per document. Null means hard block. * @nullable */ overage_price_cents: number | null; /** * Explicit yearly plan price in cents. Null falls back to computed yearly pricing. * @nullable */ annual_price_cents: number | null; /** * Number of connected stores included in the base plan. * @nullable */ included_store_count: number | null; /** * Monthly price in cents for each additional connected store. * @nullable */ extra_store_price_cents: number | null; /** * Yearly price in cents for each additional connected store. * @nullable */ extra_store_annual_price_cents: number | null; /** * Pooled invoice allowance added by each additional store. * @nullable */ extra_store_invoices_per_month: number | null; } | null; //# sourceMappingURL=planLimits.d.ts.map