4 Commits

Author SHA1 Message Date
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
0d9d365673 1.0.23
Some checks failed
Default (tags) / security (push) Failing after 22s
Default (tags) / test (push) Failing after 21s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2023-11-16 18:54:35 +01:00
e731e017bb fix(core): update 2023-11-16 18:54:35 +01:00
5 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@fin.cx/portablefinance",
"version": "1.0.22",
"version": "1.0.24",
"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.22',
version: '1.0.24',
description: 'an interface package for the financeplus organization'
}

View File

@ -1,6 +1,9 @@
import type { ICsvDescriptor } from '../interfaces/csvdescriptor.js';
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

@ -0,0 +1,4 @@
export interface ICsvDescriptor {
name: string;
contentString: string;
}

View File

@ -1,3 +1,4 @@
export * from './csvdescriptor.js';
export * from './paymentaccount.js';
export * from './transaction.js';
export * from './voucher.js';