10 Commits

Author SHA1 Message Date
da6676fdc1 1.0.26
Some checks failed
Default (tags) / security (push) Failing after 26s
Default (tags) / test (push) Failing after 17s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-07-02 23:16:45 +02:00
96d50962ea fix(core): Update package.json dependencies and metadata 2024-07-02 23:16:44 +02:00
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
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
834ba90170 1.0.22
Some checks failed
Default (tags) / security (push) Failing after 22s
Default (tags) / test (push) Failing after 22s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2023-11-16 16:47:44 +01:00
d78183e596 fix(core): update 2023-11-16 16:47:43 +01:00
8 changed files with 49 additions and 3 deletions

37
changelog.md Normal file
View File

@ -0,0 +1,37 @@
# Changelog
## 2024-07-02 - 1.0.26 - fix(core)
Update package.json dependencies and metadata
- Updated devDependencies versions in package.json
## 2023-11-17 - 1.0.25 - core
Fixes and updates to the core functionalities.
- update
## 2023-11-16 - 1.0.15 to 1.0.24 - core
Series of fixes and updates to the core functionalities.
- update
## 2021-04-16 - 1.0.11 to 1.0.15 - core
Series of fixes and updates to the core functionalities.
- update
## 2019-07-07 - 1.0.8 - core
Fixes and added new features related to CSV parsing.
- add Base class for CSV Parsers
## 2019-06-24 - 1.0.5 to 1.0.7 - core
Series of fixes and updates to the core functionalities.
- update
## 2019-05-23 - 1.0.1 to 1.0.4 - core
Initial series of updates and fixes following project launch.
- update

View File

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

0
readme.hints.md Normal file
View File

View File

@ -1,8 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
* autocreated commitinfo by @push.rocks/commitinfo
*/
export const commitinfo = {
name: '@fin.cx/portablefinance',
version: '1.0.21',
version: '1.0.26',
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';

View File

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