2 Commits

Author SHA1 Message Date
5377a91cfd 1.0.25
Some checks failed
Default (tags) / security (push) Failing after 24s
Default (tags) / test (push) Failing after 18s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2023-11-17 12:31:37 +01:00
71f8dc7685 fix(core): update 2023-11-17 12:31:36 +01:00
3 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@fin.cx/portablefinance", "name": "@fin.cx/portablefinance",
"version": "1.0.24", "version": "1.0.25",
"private": false, "private": false,
"description": "an interface package for the financeplus organization", "description": "an interface package for the financeplus organization",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

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;
} }