import type { Invoice } from './invoice.entity'; /** * Fields required to create an Invoice. */ export type CreateInvoiceDto = Omit; /** * Fields allowed when updating an Invoice. */ export type UpdateInvoiceDto = Partial; /** * Full Invoice shape returned by the API. */ export type InvoiceResponse = Invoice; //# sourceMappingURL=invoice.dto.d.ts.map