Compare commits
18 Commits
Author | SHA1 | Date | |
---|---|---|---|
da6676fdc1 | |||
96d50962ea | |||
5377a91cfd | |||
71f8dc7685 | |||
44de2dadab | |||
d848387715 | |||
0d9d365673 | |||
e731e017bb | |||
834ba90170 | |||
d78183e596 | |||
82d30a93c8 | |||
51d894cba7 | |||
bef9349216 | |||
2017634f87 | |||
56460edeb2 | |||
e2851b36d0 | |||
7f9ef12b61 | |||
d3e39fcdf2 |
37
changelog.md
Normal file
37
changelog.md
Normal 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
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fin.cx/portablefinance",
|
||||
"version": "1.0.17",
|
||||
"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
0
readme.hints.md
Normal file
@ -32,7 +32,5 @@ We are always happy for code contributions. If you are not the code contributing
|
||||
|
||||
For further information read the linked docs at the top of this readme.
|
||||
|
||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||
> MIT licensed | **©** [Task Venture Capital GmbH](https://lossless.gmbh)
|
||||
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||
|
||||
[](https://maintainedby.lossless.com)
|
||||
|
@ -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.17',
|
||||
version: '1.0.26',
|
||||
description: 'an interface package for the financeplus organization'
|
||||
}
|
||||
|
@ -1,5 +1,9 @@
|
||||
export abstract class AcCsvParser<T> {
|
||||
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 transactionArray: T[];
|
||||
public abstract getTransactions(): Promise<T[]>;
|
||||
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