Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
2bc50c6714 | |||
3f8e2045e5 | |||
da6676fdc1 | |||
96d50962ea | |||
5377a91cfd | |||
71f8dc7685 | |||
44de2dadab | |||
d848387715 | |||
0d9d365673 | |||
e731e017bb | |||
834ba90170 | |||
d78183e596 |
43
changelog.md
Normal file
43
changelog.md
Normal file
@ -0,0 +1,43 @@
|
||||
# Changelog
|
||||
|
||||
## 2024-07-02 - 1.0.27 - fix(core)
|
||||
Fix npm package availability links and status badges in readme.md
|
||||
|
||||
- Updated npm, GitLab, and GitHub links in readme.md.
|
||||
- Enhanced status badges for clearer visibility.
|
||||
|
||||
## 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
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fin.cx/portablefinance",
|
||||
"version": "1.0.21",
|
||||
"version": "1.0.27",
|
||||
"private": false,
|
||||
"description": "an interface package for the financeplus organization",
|
||||
"main": "dist_ts/index.js",
|
||||
|
0
readme.hints.md
Normal file
0
readme.hints.md
Normal 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.27',
|
||||
description: 'an interface package for the financeplus organization'
|
||||
}
|
||||
|
@ -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[]>;
|
||||
}
|
||||
|
4
ts/interfaces/csvdescriptor.ts
Normal file
4
ts/interfaces/csvdescriptor.ts
Normal file
@ -0,0 +1,4 @@
|
||||
export interface ICsvDescriptor {
|
||||
name: string;
|
||||
contentString: string;
|
||||
}
|
@ -1,3 +1,4 @@
|
||||
export * from './csvdescriptor.js';
|
||||
export * from './paymentaccount.js';
|
||||
export * from './transaction.js';
|
||||
export * from './voucher.js';
|
||||
|
@ -2,4 +2,5 @@ export interface IVoucher {
|
||||
voucherDate: Date;
|
||||
voucherId: string;
|
||||
voucherStatus: 'uploaded' | 'transmitted';
|
||||
voucherBinaryString: string;
|
||||
}
|
||||
|
Reference in New Issue
Block a user