feat(finance): Added notes field to IInvoice interface

This commit is contained in:
Philipp Kunz 2024-07-26 16:51:33 +02:00
parent 6095e0ea5c
commit f9c7f90d73
3 changed files with 7 additions and 1 deletions

@ -1,5 +1,10 @@
# Changelog
## 2024-07-26 - 4.1.0 - feat(finance)
Added notes field to IInvoice interface
- Expanded IInvoice interface to include notes field allowing additional notes for invoices.
## 2024-07-24 - 4.0.65 - fix(finance)
Added 'type' property to IInvoice interface

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@tsclass/tsclass',
version: '4.0.65',
version: '4.1.0',
description: 'Provides TypeScript definitions for various business, financial, networking, content, and other common classes.'
}

@ -35,5 +35,6 @@ export interface IInvoice {
items: IInvoiceItem[];
};
};
notes: string[];
paymentOptions?: finance.IPaymentOptionInfo;
}