import type { components } from '#api/legalEntity/legalEntity.contract'; import type { TaxInformation } from '../../components/Shared/fields/TaxInformationField/types'; export type AddressDto = components['schemas']['AddressDto']; export type FinancialReportDto = components['schemas']['FinancialReportDto']; export type CustomerSupportDto = components['schemas']['SupportDto']; export type CompanyType = components['schemas']['CompanyType']; export type OrganizationDto = Omit & { taxInformation?: TaxInformation[]; };