@bbitgmbh/bbit.banking-utils
Advanced tools
Comparing version 2.0.0 to 2.1.0
@@ -0,1 +1,20 @@ | ||
export interface IBbitQRBillBillingInformation { | ||
documentNumber?: string; | ||
documentDate?: Date; | ||
customerReference?: string; | ||
vatNumber?: string; | ||
vatDate?: Date; | ||
vat?: { | ||
rate: number; | ||
amount?: number; | ||
}[]; | ||
vatImportTax?: { | ||
rate: number; | ||
amount: number; | ||
}[]; | ||
paymentTerms?: { | ||
days: string; | ||
cashDiscount?: number; | ||
}[]; | ||
} | ||
export interface IBbitQRBill { | ||
@@ -11,3 +30,3 @@ format?: BbitQRBillFormat; | ||
unstructuredMessage?: string; | ||
billInformation?: string; | ||
billInformation?: string | IBbitQRBillBillingInformation; | ||
language: BbitQRBillLanguage; | ||
@@ -14,0 +33,0 @@ } |
{ | ||
"name": "@bbitgmbh/bbit.banking-utils", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"license": "SEE LICENSE IN LICENSE.md", | ||
@@ -5,0 +5,0 @@ "types": "dist/index.d.js", |
34590
705