4 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
44de2dadab 1.0.24
Some checks failed
Default (tags) / security (push) Failing after 23s
Default (tags) / test (push) Failing after 20s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2023-11-16 18:56:50 +01:00
d848387715 fix(core): update 2023-11-16 18:56:49 +01:00
4 changed files with 4 additions and 2 deletions

View File

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

View File

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

View File

@ -3,6 +3,7 @@ import { type IMonetaryTransaction } from '../interfaces/transaction.js';
export abstract class AcCsvParser<TOriginalTrnasction> {
public abstract paymentProviderName: string;
public abstract description: string;
public abstract addCsvDecriptor(csvDescriptorArg: ICsvDescriptor): void;
public abstract getTransactions(): Promise<IMonetaryTransaction[]>;
}

View File

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