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

View File

@ -1,5 +1,10 @@
# Changelog # 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) ## 2024-07-24 - 4.0.65 - fix(finance)
Added 'type' property to IInvoice interface Added 'type' property to IInvoice interface

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@tsclass/tsclass', 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.' description: 'Provides TypeScript definitions for various business, financial, networking, content, and other common classes.'
} }

View File

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