/** * 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 type { CompanyBankAccount } from './companyBankAccount'; /** * Company from public registry for autocomplete */ export interface CompanyRegistryResult { id: string; /** * @minLength 2 * @maxLength 2 */ country_code: string; registration_number: string; /** @nullable */ tax_number: string | null; name: string; /** @nullable */ address: string | null; /** @nullable */ post_code: string | null; /** @nullable */ city: string | null; /** @nullable */ legal_form: string | null; bank_accounts: CompanyBankAccount[]; status: string; } //# sourceMappingURL=companyRegistryResult.d.ts.map