Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
5377a91cfd | |||
71f8dc7685 | |||
44de2dadab | |||
d848387715 |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fin.cx/portablefinance",
|
"name": "@fin.cx/portablefinance",
|
||||||
"version": "1.0.23",
|
"version": "1.0.25",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "an interface package for the financeplus organization",
|
"description": "an interface package for the financeplus organization",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@fin.cx/portablefinance',
|
name: '@fin.cx/portablefinance',
|
||||||
version: '1.0.23',
|
version: '1.0.25',
|
||||||
description: 'an interface package for the financeplus organization'
|
description: 'an interface package for the financeplus organization'
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ import { type IMonetaryTransaction } from '../interfaces/transaction.js';
|
|||||||
|
|
||||||
export abstract class AcCsvParser<TOriginalTrnasction> {
|
export abstract class AcCsvParser<TOriginalTrnasction> {
|
||||||
public abstract paymentProviderName: string;
|
public abstract paymentProviderName: string;
|
||||||
|
public abstract description: string;
|
||||||
public abstract addCsvDecriptor(csvDescriptorArg: ICsvDescriptor): void;
|
public abstract addCsvDecriptor(csvDescriptorArg: ICsvDescriptor): void;
|
||||||
public abstract getTransactions(): Promise<IMonetaryTransaction[]>;
|
public abstract getTransactions(): Promise<IMonetaryTransaction[]>;
|
||||||
}
|
}
|
||||||
|
@ -2,4 +2,5 @@ export interface IVoucher {
|
|||||||
voucherDate: Date;
|
voucherDate: Date;
|
||||||
voucherId: string;
|
voucherId: string;
|
||||||
voucherStatus: 'uploaded' | 'transmitted';
|
voucherStatus: 'uploaded' | 'transmitted';
|
||||||
|
voucherBinaryString: string;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user