fix(core): update

This commit is contained in:
Philipp Kunz 2023-11-17 12:31:36 +01:00
parent 44de2dadab
commit 71f8dc7685
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@fin.cx/portablefinance', name: '@fin.cx/portablefinance',
version: '1.0.24', version: '1.0.25',
description: 'an interface package for the financeplus organization' description: 'an interface package for the financeplus organization'
} }

View File

@ -2,4 +2,5 @@ export interface IVoucher {
voucherDate: Date; voucherDate: Date;
voucherId: string; voucherId: string;
voucherStatus: 'uploaded' | 'transmitted'; voucherStatus: 'uploaded' | 'transmitted';
voucherBinaryString: string;
} }