export type IkasInvoice = { appId: string; appName: string; createdAt: number | null; id: string; invoiceNumber: string; storeAppId: string; type: IkasInvoiceType; }; export type IkasInvoiceType = "COMPANY" | "INDIVIDUAL" | "OTHER";